From e789f6e601db01e3637f6ed4534311eb8802db8c Mon Sep 17 00:00:00 2001 From: deepeshgarg007 Date: Fri, 28 Jun 2019 22:23:06 +0530 Subject: [PATCH 01/73] fix: List context fixes in web form --- .../js/frappe/web_form/web_form_list.js | 1 + frappe/website/doctype/web_form/web_form.py | 53 +++---------------- frappe/www/list.py | 38 ++++++------- 3 files changed, 25 insertions(+), 67 deletions(-) diff --git a/frappe/public/js/frappe/web_form/web_form_list.js b/frappe/public/js/frappe/web_form/web_form_list.js index 3110856e0d..e28497b493 100644 --- a/frappe/public/js/frappe/web_form/web_form_list.js +++ b/frappe/public/js/frappe/web_form/web_form_list.js @@ -91,6 +91,7 @@ export default class WebFormList { doctype: this.doctype, fields: this.fields_list.map(df => df.fieldname), limit_start: this.web_list_start, + web_form_name: this.web_form_name, ...this.filters } }); diff --git a/frappe/website/doctype/web_form/web_form.py b/frappe/website/doctype/web_form/web_form.py index 9b670c6d50..26c4169012 100644 --- a/frappe/website/doctype/web_form/web_form.py +++ b/frappe/website/doctype/web_form/web_form.py @@ -141,7 +141,9 @@ def get_context(context): if self.allow_edit: if self.allow_multiple: if not frappe.form_dict.name and not frappe.form_dict.new: - self.build_as_list(context) + pass + # list data is queried via JS + context.is_list = True else: if frappe.session.user != 'Guest' and not frappe.form_dict.name: frappe.form_dict.name = frappe.db.get_value(self.doc_type, {"owner": frappe.session.user}, "name") @@ -195,38 +197,6 @@ def get_context(context): context.comment_list = get_comment_list(context.doc.doctype, context.doc.name) - def build_as_list(self, context): - '''Web form is a list, show render as list.html''' - from frappe.www.list import get_context as get_list_context - - # set some flags to make list.py/list.html happy - frappe.form_dict.web_form_name = self.name - frappe.form_dict.doctype = self.doc_type - frappe.flags.web_form = self - - self.update_params_from_form_dict(context) - self.update_list_context(context) - get_list_context(context) - context.is_list = True - - def update_params_from_form_dict(self, context): - '''Copy params from list view to new view''' - context.params_from_form_dict = '' - - params = {} - for key, value in iteritems(frappe.form_dict): - if frappe.get_meta(self.doc_type).get_field(key): - params[key] = value - - if params: - context.params_from_form_dict = '&' + urlencode(params) - - - def update_list_context(self, context): - '''update list context for stanard modules''' - if hasattr(self, 'web_form_module') and hasattr(self.web_form_module, 'get_list_context'): - self.web_form_module.get_list_context(context) - def get_payment_gateway_url(self, doc): if self.accept_payment: controller = get_payment_gateway_controller(self.payment_gateway) @@ -334,10 +304,11 @@ def get_context(context): def set_web_form_module(self): '''Get custom web form module if exists''' + self.web_form_module = self.get_web_form_module() + + def get_web_form_module(self): if self.is_standard: - self.web_form_module = get_doc_module(self.module, self.doctype, self.name) - else: - self.web_form_module = None + return get_doc_module(self.module, self.doctype, self.name) def validate_mandatory(self, doc): '''Validate mandatory web form fields''' @@ -514,16 +485,6 @@ def get_web_form_filters(web_form_name): web_form = frappe.get_doc("Web Form", web_form_name) return [field for field in web_form.web_form_fields if field.show_in_filter] -def get_web_form_list(doctype, txt, filters, limit_start, limit_page_length=20, order_by=None): - from frappe.www.list import get_list - if not filters: - filters = {} - - filters["owner"] = frappe.session.user - - return get_list(doctype, txt, filters, limit_start, limit_page_length, order_by=order_by, - ignore_permissions=True) - def make_route_string(parameters): route_string = "" delimeter = '?' diff --git a/frappe/www/list.py b/frappe/www/list.py index 0023b5a8d5..4362b5648c 100644 --- a/frappe/www/list.py +++ b/frappe/www/list.py @@ -70,7 +70,7 @@ def get(doctype, txt=None, limit_start=0, limit=20, pathname=None, **kwargs): } @frappe.whitelist(allow_guest=True) -def get_list_data(doctype, txt=None, limit_start=0, fields=None, cmd=None, limit=20, **kwargs): +def get_list_data(doctype, txt=None, limit_start=0, fields=None, cmd=None, limit=20, web_form_name=None, **kwargs): """Returns processed HTML page for a standard listing.""" limit_start = cint(limit_start) @@ -82,7 +82,7 @@ def get_list_data(doctype, txt=None, limit_start=0, fields=None, cmd=None, limit meta = frappe.get_meta(doctype) filters = prepare_filters(doctype, controller, kwargs) - list_context = get_list_context(frappe._dict(), doctype) + list_context = get_list_context(frappe._dict(), doctype, web_form_name) list_context.title_field = getattr(controller, 'website', {}).get('page_title_field', meta.title_field or 'name') @@ -142,39 +142,35 @@ def prepare_filters(doctype, controller, kwargs): return filters -def get_list_context(context, doctype): +def get_list_context(context, doctype, web_form_name): from frappe.modules import load_doctype_module - from frappe.website.doctype.web_form.web_form import get_web_form_list list_context = context or frappe._dict() meta = frappe.get_meta(doctype) - if not meta.custom: - # custom doctypes don't have modules - module = load_doctype_module(doctype) + def update_context_from_module(module, list_context): + # call the user defined method `get_list_context` + # from the python module if hasattr(module, "get_list_context"): out = frappe._dict(module.get_list_context(list_context) or {}) if out: list_context = out + # get context from the doctype module + if not meta.custom: + # custom doctypes don't have modules + module = load_doctype_module(doctype) + update_context_from_module(module, list_context) + + # get context from web form module + if web_form_name: + web_form = frappe.get_doc('Web Form', web_form_name) + update_context_from_module(web_form.get_web_form_module(), list_context) + # get path from '/templates/' folder of the doctype if not list_context.row_template: list_context.row_template = meta.get_row_template() - # is web form, show the default web form filters - # which is only the owner - if frappe.form_dict.web_form_name: - list_context.web_form_name = frappe.form_dict.web_form_name - if not list_context.get("get_list"): - list_context.get_list = get_web_form_list - - if not frappe.flags.web_form: - # update list context from web_form - frappe.flags.web_form = frappe.get_doc('Web Form', frappe.form_dict.web_form_name) - - if frappe.flags.web_form.is_standard: - frappe.flags.web_form.update_list_context(list_context) - return list_context def get_list(doctype, txt, filters, limit_start, limit_page_length=20, ignore_permissions=False, From 3d864f2151880d81106091b39b4759f98220e8f5 Mon Sep 17 00:00:00 2001 From: deepeshgarg007 Date: Fri, 28 Jun 2019 22:37:35 +0530 Subject: [PATCH 02/73] fix: Removed unnecesary pass statement --- frappe/website/doctype/web_form/web_form.py | 1 - 1 file changed, 1 deletion(-) diff --git a/frappe/website/doctype/web_form/web_form.py b/frappe/website/doctype/web_form/web_form.py index 26c4169012..7249fe13e6 100644 --- a/frappe/website/doctype/web_form/web_form.py +++ b/frappe/website/doctype/web_form/web_form.py @@ -141,7 +141,6 @@ def get_context(context): if self.allow_edit: if self.allow_multiple: if not frappe.form_dict.name and not frappe.form_dict.new: - pass # list data is queried via JS context.is_list = True else: From 3de50e26194e1cfb9a37a04116eb6a6e43c56ab0 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Sun, 30 Jun 2019 13:25:48 +0530 Subject: [PATCH 03/73] fix: permissons for domain --- frappe/core/doctype/domain/domain.json | 131 +++++++++---------------- 1 file changed, 45 insertions(+), 86 deletions(-) diff --git a/frappe/core/doctype/domain/domain.json b/frappe/core/doctype/domain/domain.json index 3ba8acdc0e..c235596884 100644 --- a/frappe/core/doctype/domain/domain.json +++ b/frappe/core/doctype/domain/domain.json @@ -1,95 +1,54 @@ { - "allow_copy": 0, - "allow_guest_to_view": 0, - "allow_import": 0, - "allow_rename": 0, - "autoname": "field:domain", - "beta": 0, - "creation": "2017-05-03 15:07:39.752820", - "custom": 0, - "docstatus": 0, - "doctype": "DocType", - "document_type": "", - "editable_grid": 1, - "engine": "InnoDB", + "autoname": "field:domain", + "creation": "2017-05-03 15:07:39.752820", + "doctype": "DocType", + "editable_grid": 1, + "engine": "InnoDB", + "field_order": [ + "domain" + ], "fields": [ { - "allow_bulk_edit": 0, - "allow_on_submit": 0, - "bold": 0, - "collapsible": 0, - "columns": 0, - "fieldname": "domain", - "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": "Domain", - "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": 1, - "search_index": 0, - "set_only_once": 0, - "unique": 0 + "fieldname": "domain", + "fieldtype": "Data", + "in_list_view": 1, + "label": "Domain", + "reqd": 1, + "unique": 1 } - ], - "has_web_view": 0, - "hide_heading": 0, - "hide_toolbar": 0, - "idx": 0, - "image_view": 0, - "in_create": 0, - "is_submittable": 0, - "issingle": 0, - "istable": 0, - "max_attachments": 0, - "modified": "2017-09-15 12:26:21.827149", - "modified_by": "Administrator", - "module": "Core", - "name": "Domain", - "name_case": "", - "owner": "makarand@erpnext.com", + ], + "modified": "2019-06-30 13:24:13.732202", + "modified_by": "Administrator", + "module": "Core", + "name": "Domain", + "owner": "makarand@erpnext.com", "permissions": [ { - "amend": 0, - "apply_user_permissions": 0, - "cancel": 0, - "create": 1, - "delete": 0, - "email": 1, - "export": 1, - "if_owner": 0, - "import": 0, - "permlevel": 0, - "print": 1, - "read": 1, - "report": 1, - "role": "Administrator", - "set_user_permissions": 0, - "share": 1, - "submit": 0, + "create": 1, + "email": 1, + "export": 1, + "print": 1, + "read": 1, + "report": 1, + "role": "Administrator", + "share": 1, + "write": 1 + }, + { + "create": 1, + "email": 1, + "export": 1, + "print": 1, + "read": 1, + "report": 1, + "role": "System Manager", + "share": 1, "write": 1 } - ], - "quick_entry": 1, - "read_only": 0, - "read_only_onload": 0, - "search_fields": "domain", - "show_name_in_global_search": 0, - "sort_field": "modified", - "sort_order": "DESC", - "title_field": "domain", - "track_changes": 0, - "track_seen": 0 + ], + "quick_entry": 1, + "search_fields": "domain", + "sort_field": "modified", + "sort_order": "DESC", + "title_field": "domain" } \ No newline at end of file From 617e621fcc702c10213bfc07f68fb4acaac798fc Mon Sep 17 00:00:00 2001 From: frappe Date: Mon, 1 Jul 2019 12:19:36 +0000 Subject: [PATCH 04/73] feat: Updated translation --- frappe/translations/af.csv | 124 ++++++++++++++++++++++---------- frappe/translations/am.csv | 124 ++++++++++++++++++++++---------- frappe/translations/ar.csv | 124 ++++++++++++++++++++++---------- frappe/translations/bg.csv | 124 ++++++++++++++++++++++---------- frappe/translations/bn.csv | 124 ++++++++++++++++++++++---------- frappe/translations/bs.csv | 124 ++++++++++++++++++++++---------- frappe/translations/ca.csv | 124 ++++++++++++++++++++++---------- frappe/translations/cs.csv | 124 ++++++++++++++++++++++---------- frappe/translations/da.csv | 124 ++++++++++++++++++++++---------- frappe/translations/de.csv | 124 ++++++++++++++++++++++---------- frappe/translations/el.csv | 124 ++++++++++++++++++++++---------- frappe/translations/es.csv | 124 ++++++++++++++++++++++---------- frappe/translations/et.csv | 124 ++++++++++++++++++++++---------- frappe/translations/fa.csv | 124 ++++++++++++++++++++++---------- frappe/translations/fi.csv | 124 ++++++++++++++++++++++---------- frappe/translations/fr.csv | 124 ++++++++++++++++++++++---------- frappe/translations/gu.csv | 124 ++++++++++++++++++++++---------- frappe/translations/hi.csv | 124 ++++++++++++++++++++++---------- frappe/translations/hr.csv | 124 ++++++++++++++++++++++---------- frappe/translations/hu.csv | 124 ++++++++++++++++++++++---------- frappe/translations/id.csv | 124 ++++++++++++++++++++++---------- frappe/translations/is.csv | 124 ++++++++++++++++++++++---------- frappe/translations/it.csv | 124 ++++++++++++++++++++++---------- frappe/translations/ja.csv | 124 ++++++++++++++++++++++---------- frappe/translations/km.csv | 124 ++++++++++++++++++++++---------- frappe/translations/kn.csv | 125 ++++++++++++++++++++++---------- frappe/translations/ko.csv | 124 ++++++++++++++++++++++---------- frappe/translations/ku.csv | 123 +++++++++++++++++++++---------- frappe/translations/lo.csv | 124 ++++++++++++++++++++++---------- frappe/translations/lt.csv | 124 ++++++++++++++++++++++---------- frappe/translations/lv.csv | 122 +++++++++++++++++++++---------- frappe/translations/mk.csv | 124 ++++++++++++++++++++++---------- frappe/translations/ml.csv | 131 ++++++++++++++++++++++++---------- frappe/translations/mr.csv | 124 ++++++++++++++++++++++---------- frappe/translations/ms.csv | 124 ++++++++++++++++++++++---------- frappe/translations/my.csv | 124 ++++++++++++++++++++++---------- frappe/translations/nl.csv | 124 ++++++++++++++++++++++---------- frappe/translations/no.csv | 124 ++++++++++++++++++++++---------- frappe/translations/pl.csv | 124 ++++++++++++++++++++++---------- frappe/translations/ps.csv | 120 +++++++++++++++++++++---------- frappe/translations/pt.csv | 124 ++++++++++++++++++++++---------- frappe/translations/ro.csv | 124 ++++++++++++++++++++++---------- frappe/translations/ru.csv | 124 ++++++++++++++++++++++---------- frappe/translations/si.csv | 122 +++++++++++++++++++++---------- frappe/translations/sk.csv | 124 ++++++++++++++++++++++---------- frappe/translations/sl.csv | 124 ++++++++++++++++++++++---------- frappe/translations/sq.csv | 124 ++++++++++++++++++++++---------- frappe/translations/sr.csv | 124 ++++++++++++++++++++++---------- frappe/translations/sv.csv | 124 ++++++++++++++++++++++---------- frappe/translations/sw.csv | 124 ++++++++++++++++++++++---------- frappe/translations/ta.csv | 128 +++++++++++++++++++++++---------- frappe/translations/te.csv | 123 +++++++++++++++++++++---------- frappe/translations/th.csv | 124 ++++++++++++++++++++++---------- frappe/translations/tr.csv | 124 ++++++++++++++++++++++---------- frappe/translations/uk.csv | 124 ++++++++++++++++++++++---------- frappe/translations/ur.csv | 124 ++++++++++++++++++++++---------- frappe/translations/uz.csv | 124 ++++++++++++++++++++++---------- frappe/translations/vi.csv | 124 ++++++++++++++++++++++---------- frappe/translations/zh.csv | 124 ++++++++++++++++++++++---------- frappe/translations/zh_tw.csv | 106 +++++++++++++++++++-------- 60 files changed, 5216 insertions(+), 2208 deletions(-) diff --git a/frappe/translations/af.csv b/frappe/translations/af.csv index ee6fb0e152..8e73cc5c06 100644 --- a/frappe/translations/af.csv +++ b/frappe/translations/af.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Aktiveer gradiënte DocType: DocType,Default Sort Order,Verstek Rangorde apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Wys slegs Numeriese velde uit Verslag +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Druk Alt-sleutel om bykomende kortpaaie in die kieslys en sybalk te aktiveer DocType: Workflow State,folder-open,gids oop DocType: Customize Form,Is Table,Is Tabel apps/frappe/frappe/utils/csvutils.py,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,No Copy,Geen kopie DocType: Custom Field,Default Value,Standaard waarde apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Byvoeging is verpligtend vir inkomende posse +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Sinkroniseer kontakte DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Data Migrasie Mapping Detail apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Unfollow apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",PDF-druk via "Raw Print" word nog nie ondersteun nie. Verwyder asseblief die drukkaart in Drukkerinstellings en probeer weer. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} en {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Daar was 'n fout met die stoor van filters apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Sleutel jou wagwoord in apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Kan nie Huis- en Bylae-dopgehou verwyder nie +DocType: Email Account,Enable Automatic Linking in Documents,Aktiveer outomatiese skakeling in dokumente DocType: Contact Us Settings,Settings for Contact Us Page,Stellings vir Kontak Ons Page DocType: Social Login Key,Social Login Provider,Sosiale aanmeldverskaffer +DocType: Email Account,"For more information, click here.","Vir meer inligting, kliek hier ." DocType: Transaction Log,Previous Hash,Vorige Hash DocType: Notification,Value Changed,Waarde verander DocType: Report,Report Type,Verslagtipe @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Energiepuntreël apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,Voer asseblief die kliënt ID in voordat sosiale aanmelding aangeskakel is DocType: Communication,Has Attachment,Het aanhangsel DocType: User,Email Signature,E-pos Handtekening -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} jaar gelede ,Addresses And Contacts,Adresse en kontakte apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Hierdie Kanbanraad sal privaat wees DocType: Data Migration Run,Current Mapping,Huidige kaarte @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Jy selekteer Sync Opsie as ALLE, Dit sal resync alle \ lees sowel as ongelees boodskap van die bediener. Dit kan ook die duplisering van kommunikasie (e-posse) veroorsaak." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Laaste gesynchroniseerde {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Kan nie koptekst inhoud verander nie +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Geen resultate gevind vir '

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Nie toegelaat om {0} na inhandiging te verander nie apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Die aansoek is opgedateer na 'n nuwe weergawe, verfris asseblief hierdie bladsy" DocType: User,User Image,Gebruikersbeeld @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Merk apps/frappe/frappe/public/js/frappe/chat.js,Discard,Gooi 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/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,terugval +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} waardes gekies DocType: Blog Post,Email Sent,E-pos is gestuur DocType: Communication,Read by Recipient On,Lees deur Ontvanger aan 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) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Module vir Uitvoer DocType: DocType,Fields,Velde -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,U mag nie hierdie dokument druk nie +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,U mag nie hierdie dokument druk nie apps/frappe/frappe/public/js/frappe/model/model.js,Parent,ouer apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Jou sessie het verval, teken asseblief weer aan om voort te gaan." DocType: Assignment Rule,Priority,prioriteit @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Herstel OTP-geheim DocType: DocType,UPPER CASE,HOOFLETTERS apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,Stel asseblief e-pos adres in DocType: Communication,Marked As Spam,Gemerk as spam +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,E-pos adres wie se Google-kontakte gesinkroniseer moet word. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Voer inskrywers in apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Stoor filter DocType: Address,Preferred Shipping Address,Gewenste Posadres DocType: GCalendar Account,The name that will appear in Google Calendar,Die naam wat in Google Kalender sal verskyn +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Klik op {0} om Refresh Token te genereer. DocType: Email Account,Disable SMTP server authentication,Skakel SMTP-bediener-verifikasie uit DocType: Email Account,Total number of emails to sync in initial sync process ,Totale aantal e-posse om te sinkroniseer in aanvanklike sinkronisasieproses DocType: System Settings,Enable Password Policy,Aktiveer wagwoordbeleid @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Sleutel die kode in apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Nie in nie DocType: Auto Repeat,Start Date,Begindatum apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Stel grafiek +DocType: Website Theme,Theme JSON,Tema JSON apps/frappe/frappe/www/list.py,My Account,My rekening DocType: DocType,Is Published Field,Is gepubliseerde veld DocType: DocField,Set non-standard precision for a Float or Currency field,Stel nie-standaard presisie vir 'n Vlot- of Geldveld @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts 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: LDAP Settings,LDAP First Name Field,LDAP Voornaam Veld apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Verstek stuur en inkassie -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Aanpas vorm apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",Vir opdatering kan u slegs selektiewe kolomme bywerk. apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',Standaard vir 'Check' tipe veld moet óf '0' óf '1' wees. apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Deel hierdie dokument met @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Domains HTML DocType: Blog Settings,Blog Settings,Blog instellings apps/frappe/frappe/core/doctype/doctype/doctype.py,"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 letter en dit kan slegs bestaan uit letters, syfers, spasies en onderstrepe" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup> Gebruiker Toestemmings DocType: Communication,Integrations can use this field to set email delivery status,Integrasies kan hierdie veld gebruik om e-pos afleweringstatus te stel apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Strook betaling gateway instellings DocType: Print Settings,Fonts,fonts DocType: Notification,Channel,kanaal DocType: Communication,Opened,geopen DocType: Workflow Transition,Conditions,voorwaardes +apps/frappe/frappe/config/website.py,A user who posts blogs.,'N Gebruiker wat blogs plaas. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Het jy nie 'n rekening? Teken aan apps/frappe/frappe/utils/file_manager.py,Added {0},Bygevoeg {0} DocType: Newsletter,Create and Send Newsletters,Skep en stuur nuusbriewe DocType: Website Settings,Footer Items,Footer Items +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Stel asseblief die standaard e-pos rekening op van Setup> Email> Email Account DocType: Website Slideshow Item,Website Slideshow Item,Webwerf skyfie-item apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registreer OAuth Client App DocType: Error Snapshot,Frames,rame @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Vlak 0 is vir dokumentvlak toestemmings, \ hoër vlakke vir veldvlak toestemmings." DocType: Address,City/Town,Dorp stad DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Dit sal jou huidige tema herstel, is jy seker jy wil voortgaan?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Verpligte velde vereis in {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Fout tydens verbinding met e-pos rekening {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,'N Fout het voorgekom tydens die skep van herhalende @@ -528,7 +537,7 @@ DocType: Event,Event Category,Gebeurtenis Kategorie apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Kolomme gebaseer op apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Wysig opskrif DocType: Communication,Received,ontvang -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,U mag nie toegang tot hierdie bladsy kry nie. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,U mag nie toegang tot hierdie bladsy kry nie. DocType: User Social Login,User Social Login,Gebruikers Sosiale aanmelding apps/frappe/frappe/core/doctype/report/report.js,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. DocType: Contact,Purchase Manager,Aankoopbestuurder @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Stel apps/frappe/frappe/utils/data.py,Operator must be one of {0},Operateur moet een van {0} wees. apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,As Eienaar DocType: Data Migration Run,Trigger Name,Trigger Naam -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Skryf titels en inleidings op jou blog. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Verwyder veld apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Ineenstort alles apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Agtergrondkleur @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,bar DocType: SMS Settings,Enter url parameter for message,Voer die URL-parameter vir die boodskap in apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nuwe persoonlike drukformaat apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} bestaan reeds +DocType: Workflow Document State,Is Optional State,Is opsionele staat DocType: Address,Purchase User,Aankoopgebruiker DocType: Data Migration Run,Insert,insetsel DocType: Web Form,Route to Success Link,Roete na sukses skakel @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Gebruik DocType: File,Is Home Folder,Is Tuisblad apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,tipe: DocType: Post,Is Pinned,Is vasgespyker -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Geen toestemming vir '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Geen toestemming vir '{0}' {1} DocType: Patch Log,Patch Log,Patch Log DocType: Print Format,Print Format Builder,Drukformaat Bouwer 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" apps/frappe/frappe/utils/data.py,only.,enigste. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,Die kondisie '{0}' is ongeldig DocType: Auto Email Report,Day of Week,Dag van die week +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Aktiveer Google API in Google Instellings. DocType: DocField,Text Editor,Teks editor apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,sny apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Soek of tik 'n opdrag @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,Aantal DB-rugsteun kan nie minder as 1 wees nie DocType: Workflow State,ban-circle,verbod-sirkel DocType: Data Export,Excel,Excel +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Opskrif, Broodkrummels en Metatags" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Ondersteuning E-posadres nie gespesifiseer nie DocType: Comment,Published,gepubliseer DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.",Nota: vir die beste resultate moet die beelde van dieselfde grootte wees en die breedte moet groter wees as die hoogte. @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Skeduler Laaste Event apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Verslag van alle dokument aandele DocType: Website Sidebar Item,Website Sidebar Item,Webwerf Zijbalk Item apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Om te doen +DocType: Google Settings,Google Settings,Google instellings apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Kies jou land, tydsone en geldeenheid" 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/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Geen e-pos rekening @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token ,Setup Wizard,Opstelassistent apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Wissel grafiek +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,sinchroniseer DocType: Data Migration Run,Current Mapping Action,Huidige kaarte-aksie DocType: Email Account,Initial Sync Count,Aanvanklike sintetelling apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Stellings vir Kontak Ons Page. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Drukformaat Tipe apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Geen toestemmings vir hierdie kriteria gestel nie. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Brei alles uit +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Geen standaard adres sjabloon gevind nie. Maak asseblief 'n nuwe een van Setup> Printing and Branding> Adres Sjabloon. DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategorie DocType: Data Import,Generated File,Gegenereerde lêer apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,notas @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Tydlyn veld moet 'n skakel of dinamiese skakel wees DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Kennisgewings en grootmaat-posse sal van hierdie uitgaande bediener gestuur word. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Dit is 'n algemene 100 wagwoord. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Permanent Dien {0} in? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Permanent Dien {0} in? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} bestaan nie, kies 'n nuwe teiken om saam te voeg" DocType: Energy Point Rule,Multiplier Field,Vermenigvuldiger veld DocType: Workflow,Workflow State Field,Workflow State Field @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} waardeer jou werk op {1} met {2} punte DocType: Auto Email Report,Zero means send records updated at anytime,Nul beteken stuur rekords op enige tyd bygewerk apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Waarde kan nie verander word vir {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API-instellings. DocType: System Settings,Force User to Reset Password,Force gebruiker om wagwoord te herstel apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Rapport Bouer verslae word direk deur die verslag bouer bestuur. Niks om te doen. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Wysig filter @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,vir d DocType: S3 Backup Settings,eu-north-1,EU-noord-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{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/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,U mag nie hierdie webvorm dokument opdateer nie -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Maksimum aanhangsel limiet vir hierdie rekord bereik. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Maksimum aanhangsel limiet vir hierdie rekord bereik. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,Maak asseblief seker dat die verwysingskommunikasie-dokumente nie omsendbrief gekoppel is nie. DocType: DocField,Allow in Quick Entry,Laat toe in vinnige toegang DocType: Error Snapshot,Locals,locals @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Uitsondering Tipe apps/frappe/frappe/model/delete_doc.py,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/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTP-geheime kan slegs deur die Administrateur herstel word. -DocType: Web Form Field,Page Break,Blad breek DocType: Website Script,Website Script,Webwerf skrif DocType: Integration Request,Subscription Notification,Inskrywing kennisgewing DocType: DocType,Quick Entry,Vinnige toegang @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,Stel Eiendom Na Alert apps/frappe/frappe/__init__.py,Thank you,Dankie apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks vir interne integrasie apps/frappe/frappe/config/settings.py,Import Data,Invoer data +DocType: Translation,Contributed Translation Doctype Name,Bydrae vertaal Doctype Naam DocType: Social Login Key,Office 365,Kantoor 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID DocType: Review Level,Review Level,Oorsigvlak @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Suksesvol gedoen apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Lys apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,waardeer -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Nuut {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Is primêre kontak DocType: Print Format,Raw Commands,Rou opdragte apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Stylvelle vir drukformate @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Foute in agtergron apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Vind {0} in {1} DocType: Email Account,Use SSL,Gebruik SSL DocType: DocField,In Standard Filter,In Standaard Filter +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Geen Google Kontakte teenwoordig om te sinkroniseer nie. DocType: Data Migration Run,Total Pages,Totale bladsye apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: Veld '{1}' kan nie as Uniek gestel word nie omdat dit nie-unieke waardes het 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." @@ -1061,7 +1076,7 @@ DocType: Assignment Rule,Automation,Automation apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Onttrek lêers ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Soek vir '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Iets het verkeerd geloop -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Stoor asseblief voor die aanhegsel. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,Stoor asseblief voor die aanhegsel. DocType: Version,Table HTML,Tabel HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,middelpunt DocType: Page,Standard,Standard @@ -1139,12 +1154,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Geen result apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} rekords geskrap apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,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. Gaan asseblief die foutlogboek vir meer besonderhede. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Afstammelinge van -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Geen standaard adres sjabloon gevind nie. Maak asseblief 'n nuwe een van Setup> Printing and Branding> Adres Sjabloon. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Kontakte is opgestel. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Versteek besonderhede apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Font Styles apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Jou intekening sal verval op {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,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/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Statistieke gebaseer op prestasie van verlede week (van {0} tot {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,Outomatiese skakeling kan slegs geaktiveer word as Inkomende geaktiveer is. DocType: Website Settings,Title Prefix,Titelvoorvoegsel apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,"Verifikasieprogramme wat jy kan gebruik, is:" DocType: Bulk Update,Max 500 records at a time,Maks 500 rekords op 'n slag @@ -1177,7 +1193,7 @@ DocType: Auto Email Report,Report Filters,Rapporteer filters apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Kies Kolomme DocType: Event,Participants,deelnemers DocType: Auto Repeat,Amended From,Gewysig Van -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,U inligting is ingedien +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,U inligting is ingedien DocType: Help Category,Help Category,Hulpkategorie apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 maand apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Kies 'n bestaande formaat om 'n nuwe formaat te wysig of te begin. @@ -1224,7 +1240,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Veld om te spoor DocType: User,Generate Keys,Genereer sleutels DocType: Comment,Unshared,ongedeelde -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,gered +DocType: Translation,Saved,gered DocType: OAuth Client,OAuth Client,OAuth-kliënt DocType: System Settings,Disable Standard Email Footer,Deaktiveer Standaard E-posvoet apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Drukformaat {0} is gedeaktiveer @@ -1255,6 +1271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Laaste opgeda DocType: Data Import,Action,aksie apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Kliënt sleutel is nodig DocType: Chat Profile,Notifications,Kennisgewings +DocType: Translation,Contributed,bygedra DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy DocType: Report,Custom Report,Aangepaste verslag DocType: Workflow State,info-sign,Info-teken @@ -1271,6 +1288,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Kontak DocType: LDAP Settings,LDAP Username Field,LDAP gebruikersnaam apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} veld kan nie as uniek in {1} gestel word nie, aangesien daar nie-unieke bestaande waardes is" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Aanpas vorm DocType: User,Social Logins,Sosiale logins DocType: Workflow State,Trash,asblik DocType: Stripe Settings,Secret Key,Geheime Sleutel @@ -1327,6 +1345,7 @@ DocType: DocType,Title Field,Titelveld apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Kon nie aan uitgaande e-pos bediener koppel nie DocType: File,File URL,Lêer URL DocType: Help Article,Likes,Hou +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google Kontakte Integrasie is gedeaktiveer. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Jy moet ingeteken wees en die stelselbestuurderrol hê om back-ups te kan verkry. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Eerste Vlak DocType: Blogger,Short Name,Kort naam @@ -1344,13 +1363,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Invoer zip DocType: Contact,Gender,geslag DocType: Workflow State,thumbs-down,duime af -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Waglys moet een van {0} wees apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Kan nie kennisgewing op dokumenttipe stel nie {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Om stelselbestuurder by hierdie gebruiker te voeg, moet daar ten minste een stelselbestuurder wees" apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Welkom e-pos gestuur DocType: Transaction Log,Chaining Hash,Chaining Hash DocType: Contact,Maintenance Manager,Onderhouds bestuurder +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Ter vergelyking, gebruik> 5, <10 of = 324. Vir reekse, gebruik 5:10 (vir waardes tussen 5 en 10)." apps/frappe/frappe/utils/bot.py,show,Wys apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Deel URL apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Nie-ondersteunde lêerformaat @@ -1372,7 +1391,7 @@ DocType: Communication,Notification,kennisgewing DocType: Data Import,Show only errors,Wys slegs foute DocType: Energy Point Log,Review,Resensie apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Rye verwyder -DocType: GSuite Settings,Google Credentials,Google-geloofsbriewe +DocType: Google Settings,Google Credentials,Google-geloofsbriewe apps/frappe/frappe/www/login.html,Or login with,Of log in met apps/frappe/frappe/model/document.py,Record does not exist,Rekord bestaan nie apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Nuwe verslag naam @@ -1397,6 +1416,7 @@ DocType: Desktop Icon,List,lys DocType: Workflow State,th-large,ste-groot apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Kan nie Stel indien indien nie Submittable wees nie apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Nie gekoppel aan enige rekord nie +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Kon nie aanskakel met QZ-bakprogram nie ...

U moet QZ Tray-program geïnstalleer en hardloop om die Raw Print-funksie te gebruik.

Klik hier om QZ Tray te laai en installeer .
Klik hier om meer te wete te kom oor Roudrukker ." DocType: Chat Message,Content,inhoud DocType: Workflow Transition,Allow Self Approval,Laat selfgoedkeuring toe apps/frappe/frappe/www/qrcode.py,Page has expired!,Bladsy het verval! @@ -1413,6 +1433,7 @@ DocType: Workflow State,hand-right,hand-reg DocType: Website Settings,Banner is above the Top Menu Bar.,Banner is bokant die boonste spyskaart. apps/frappe/frappe/www/update-password.html,Invalid Password,Ongeldige Wagwoord apps/frappe/frappe/utils/data.py,1 month ago,1 maand gelede +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Laat Google-kontakte toegang toe DocType: OAuth Client,App Client ID,App Client ID DocType: DocField,Currency,geldeenheid DocType: Website Settings,Banner,Banner @@ -1424,7 +1445,7 @@ apps/frappe/frappe/utils/goal.py,Goal,doel DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","As 'n rol nie toegang tot vlak 0 het nie, is hoër vlakke betekenisloos." DocType: ToDo,Reference Type,Verwysingstipe -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Toestaan van DocType, DocType. Wees versigtig!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Toestaan van DocType, DocType. Wees versigtig!" DocType: Domain Settings,Domain Settings,Domein instellings DocType: Auto Email Report,Dynamic Report Filters,Dinamiese verslagfilters DocType: Energy Point Log,Appreciation,waardering @@ -1466,6 +1487,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,ons-wes-2 DocType: DocType,Is Single,Is enkel apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Skep 'n nuwe formaat +DocType: Google Contacts,Authorize Google Contacts Access,Magtig Google-toegang tot toegang DocType: S3 Backup Settings,Endpoint URL,Eindpunt-URL DocType: Social Login Key,Google,Google DocType: Contact,Department,Departement @@ -1480,7 +1502,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Toeskryf aan DocType: List Filter,List Filter,Lys filter DocType: Dashboard Chart Link,Chart,grafiek apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Kan nie verwyder nie -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Dien hierdie dokument in om te bevestig +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Dien hierdie dokument in om te bevestig apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} bestaan reeds. Kies 'n ander naam apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,U het ongestoorde veranderinge in hierdie vorm. Stoor asseblief voor jy voortgaan. apps/frappe/frappe/model/document.py,Action Failed,Aksie het misluk @@ -1560,6 +1582,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were error DocType: DocField,Display,vertoning apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Antwoord almal DocType: Calendar View,Subject Field,Vakgebied +apps/frappe/frappe/model/workflow.py,Applying: {0},Aansoek: {0} DocType: Workflow State,zoom-in,zoom-in apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Kon nie aan bediener koppel apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Datum {0} moet in formaat wees: {1} @@ -1571,8 +1594,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Ikoon sal op die knoppie verskyn DocType: Role Permission for Page and Report,Set Role For,Stel Rol Vir +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Outomatiese skakeling kan slegs vir een e-pos rekening geaktiveer word. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Geen e-pos rekeninge toegeken nie +apps/frappe/frappe/email/smtp.py,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 Setup> Email> Email Account apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,opdrag +DocType: Google Contacts,Last Sync On,Laaste sinchroniseer op apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},verkry deur {0} via outomatiese reël {1} apps/frappe/frappe/config/website.py,Portal,portaal apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Dankie vir jou e-pos @@ -1593,7 +1619,6 @@ DocType: GSuite Settings,GSuite Settings,GSuite instellings DocType: Integration Request,Remote,Afgeleë DocType: File,Thumbnail URL,Duimnaelskets-URL apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Laai verslag af -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup> Gebruiker apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Aanpassings vir {0} uitgevoer na:
{1} DocType: GCalendar Account,Calendar Name,Kalender Naam apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Jou inlog id is @@ -1643,6 +1668,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Gaan apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Beeldveld moet 'n geldige veldnaam wees apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,Jy moet ingeteken wees om toegang tot hierdie bladsy te kry DocType: Assignment Rule,Example: {{ subject }},Voorbeeld: {{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Veldnaam {0} is beperk apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},U kan nie 'Slegs lees' vir veld {0} DocType: Social Login Key,Enable Social Login,Aktiveer sosiale aanmelding DocType: Workflow,Rules defining transition of state in the workflow.,Reëls wat die oorgang van die staat in die werkstroom bepaal. @@ -1663,10 +1689,10 @@ DocType: Website Settings,Route Redirects,Roete Aansture apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,E-pos Inbox apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},herstel {0} as {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Dokumente outomaties aan gebruikers toeken +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Open Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,E-pos Templates vir algemene navrae. DocType: Letter Head,Letter Head Based On,Briefhoof gebaseer op apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Maak asseblief hierdie venster toe -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Betaling voltooi DocType: Contact,Designation,aanwysing DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Metatags @@ -1704,6 +1730,7 @@ DocType: System Settings,Choose authentication method to be used by all users,Ki DocType: Error Snapshot,Parent Error Snapshot,Ouerfout momentopname DocType: GCalendar Account,GCalendar Account,GCalendar-rekening DocType: Language,Language Name,Taal Naam +DocType: Workflow Document State,Workflow Action is not created for optional states,Workflow Aksie is nie geskep vir opsionele state nie DocType: Customize Form,Customize Form,Pas vorm aan DocType: DocType,Image Field,Beeldveld apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Bygevoeg {0} ({1}) @@ -1745,6 +1772,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,Pas hierdie reël toe as die Gebruiker die Eienaar is DocType: About Us Settings,Org History Heading,Org Geskiedenis Opskrif apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Bedienerprobleem +DocType: Contact,Google Contacts Description,Google Kontakbesonderhede Beskrywing apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Standaard rolle kan nie hernoem word nie DocType: Review Level,Review Points,Hersien Punte apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Ontbrekende parameter Kanban Board Name @@ -1761,7 +1789,6 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} does apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run.js,Currently updating {0},Opdateer tans {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,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: Web Form,Success Message,Suksesboodskap -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Ter vergelyking, gebruik> 5, <10 of = 324. Vir reekse, gebruik 5:10 (vir waardes tussen 5 en 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Beskrywing vir aanbieding bladsy, in gewone teks, slegs 'n paar lyne. (maksimum 140 karakters)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Wys toestemmings DocType: DocType,Restrict To Domain,Beperk om te Domein @@ -1782,6 +1809,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Nie Vo apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Stel Hoeveelheid DocType: Auto Repeat,End Date,Einddatum DocType: Workflow Transition,Next State,Volgende Staat +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Google Kontakte gesinkroniseer. DocType: System Settings,Is First Startup,Is eerste opstart apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},opgedateer na {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Trek na @@ -1831,6 +1859,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Kalender apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Data Invoer Sjabloon DocType: Workflow State,hand-left,-Hand verlaat +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Kies veelvoudige lysitems apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Rugsteun Grootte: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Gekoppel met {0} DocType: Braintree Settings,Private Key,Privaat Sleutel @@ -1873,13 +1902,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,belangstelling DocType: Bulk Update,Limit,limiet DocType: Print Settings,Print taxes with zero amount,Druk belasting met nul bedrag -apps/frappe/frappe/email/smtp.py,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 Setup> Email> Email Account DocType: Workflow State,Book,Boek DocType: S3 Backup Settings,Access Key ID,Toegang sleutel ID DocType: Chat Message,URLs,URLs apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Name en vanne op hulself is maklik om te raai. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Verslag {0} DocType: About Us Settings,Team Members Heading,Span Lede Opskrif +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Kies lysitem apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Dokument {0} is ingestel om te sê {1} deur {2} DocType: Address Template,Address Template,Adres Sjabloon DocType: Workflow State,step-backward,stap-agtertoe @@ -1903,6 +1932,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Voer persoonlike toestemmings uit apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Geen: Einde van Workflow DocType: Version,Version,weergawe +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Maak lysitem oop apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 maande DocType: Chat Message,Group,groep apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Daar is 'n probleem met die lêer url: {0} @@ -1958,6 +1988,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 jaar apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} het jou punte teruggehou op {1} DocType: Workflow State,arrow-down,pyl-down DocType: Data Import,Ignore encoding errors,Ignoreer kodering foute +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,landskap DocType: Letter Head,Letter Head Name,Letter Hoof Naam DocType: Web Form,Client Script,Klient Script DocType: Assignment Rule,Higher priority rule will be applied first,Hoër prioriteit reël sal eers toegepas word @@ -2002,6 +2033,7 @@ DocType: Kanban Board Column,Green,groen apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Slegs verpligte velde is nodig vir nuwe rekords. U kan nie-verpligte kolomme uitvee indien u dit wil. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} moet begin en eindig met 'n brief en kan slegs letters, koppelvlak of onderstreep bevat." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Trigger Primêre Aksie apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Skep gebruikers e-pos apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Sorteer veld {0} moet 'n geldige veldnaam wees DocType: Auto Email Report,Filter Meta,Filter Meta @@ -2031,6 +2063,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Tydlyn Veld apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Laai ... DocType: Auto Email Report,Half Yearly,Half jaarliks +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,My profiel apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Laaste gewysigde datum DocType: Contact,First Name,Eerste naam DocType: Post,Comments,kommentaar @@ -2053,6 +2086,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Inhoud Hash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Boodskappe van {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} toegeken {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Geen nuwe Google Kontakte gesinkroniseer nie. DocType: Workflow State,globe,wêreld apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Gemiddeld van {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Vee foutlêers uit @@ -2079,6 +2113,8 @@ DocType: Workflow State,Inverse,Omgekeerde DocType: Activity Log,Closed,gesluit DocType: Report,Query,navraag DocType: Notification,Days After,Dae Na +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Bladsy kortpaaie +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portret apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Versoek uitgestel DocType: System Settings,Email Footer Address,E-pos voet adres apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energie punt update @@ -2106,6 +2142,7 @@ For Select, enter list of Options, each on a new line.","Vir Skakels, tik die Do apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 minuut gelede apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Geen aktiewe sessies apps/frappe/frappe/model/base_document.py,Row,ry +DocType: Contact,Middle Name,Middelnaam apps/frappe/frappe/public/js/frappe/request.js,Please try again,Probeer asseblief weer DocType: Dashboard Chart,Chart Options,Kaartopsies DocType: Data Migration Run,Push Failed,Druk misluk @@ -2134,6 +2171,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,grootte-klein DocType: Comment,Relinked,weer geskakel DocType: Role Permission for Page and Report,Roles HTML,Rolle HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Gaan apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Werkstroom sal begin nadat jy gestoor is. 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/password_strength.py,Dates are often easy to guess.,Data is dikwels maklik om te raai. @@ -2162,7 +2200,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Desktop-ikoon apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,hierdie dokument gekanselleer apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Datum reeks -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup> Gebruiker Toestemmings apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} waardeer {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Waardes verander apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Fout in kennisgewing @@ -2224,6 +2261,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Grootmaat verwyder DocType: DocShare,Document Name,Dokument Naam apps/frappe/frappe/config/customization.py,Add your own translations,Voeg jou eie vertalings by +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Navigeer lys af DocType: S3 Backup Settings,eu-central-1,EU-sentrale-1 DocType: Auto Repeat,Yearly,jaarlikse apps/frappe/frappe/public/js/frappe/model/model.js,Rename,hernoem @@ -2274,6 +2312,7 @@ DocType: Workflow State,plane,vliegtuig apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Nested stel fout. Kontak asseblief die Administrateur. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Wys verslag DocType: Auto Repeat,Auto Repeat Schedule,Outo Herhaal Skedule +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Kyk Ref DocType: Address,Office,kantoor DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} dae gelede @@ -2307,7 +2346,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,On apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,My instellings apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Groepnaam kan nie leeg wees nie. DocType: Workflow State,road,pad -DocType: Website Route Redirect,Source,Bron +DocType: Contact,Source,Bron apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Aktiewe sessies apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Daar kan net een vou in 'n vorm wees apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Nuwe klets @@ -2329,6 +2368,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Voer asseblief die magtigings-URL in DocType: Email Account,Send Notification to,Stuur kennisgewing aan apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox Friends instellings +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,Iets het verkeerd gegaan tydens die tekengenerasie. Klik op {0} om 'n nuwe een te genereer. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Verwyder alle aanpassings? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Net administrateur kan wysig DocType: Auto Repeat,Reference Document,Verwysingsdokument @@ -2353,6 +2393,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Rolle kan vir gebruikers van hul gebruikersblad gestel word. DocType: Website Settings,Include Search in Top Bar,Sluit Soek in die boonste balk in apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Dringend] Fout tydens die skep van herhalende% s vir% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globale kortpaaie DocType: Help Article,Author,skrywer DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Geen dokument vir gegewe filters gevind nie @@ -2388,10 +2429,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, ry {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","As u nuwe rekords oplaai, word "Naming Series" verplig, indien dit teenwoordig is." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Wysig eienskappe -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Kan nie instansie oopmaak as sy {0} oop is nie +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,Kan nie instansie oopmaak as sy {0} oop is nie DocType: Activity Log,Timeline Name,Tydlyn Naam DocType: Comment,Workflow,Workflow apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Stel asseblief basiese URL in die sosiale aanmeld sleutel vir Frappe +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Sleutelbord kortpaaie DocType: Portal Settings,Custom Menu Items,Aangepaste menu-items apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,Lengte van {0} moet tussen 1 en 1000 wees apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Konneksie verlore. Sommige funksies kan dalk nie werk nie. @@ -2453,6 +2495,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Rye bygevoe DocType: DocType,Setup,Stel op apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} suksesvol geskep apps/frappe/frappe/www/update-password.html,New Password,Nuwe Wagwoord +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Kies Veld apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Los hierdie gesprek DocType: About Us Settings,Team Members,Spanlede DocType: Blog Settings,Writers Introduction,Skrywers Inleiding @@ -2522,13 +2565,12 @@ DocType: Chat Room,Name,naam DocType: Communication,Email Template,E-pos sjabloon DocType: Energy Point Settings,Review Levels,Hersien vlakke DocType: Print Format,Raw Printing,Rou drukwerk -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Kan nie oopmaak as {0} oop is nie +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,Kan nie oopmaak as {0} oop is nie DocType: DocType,"Make ""name"" searchable in Global Search",Maak "naam" soekbaar in Global Search DocType: Data Migration Mapping,Data Migration Mapping,Data Migrasie Mapping DocType: Data Import,Partially Successful,Gedeeltelik Suksesvol DocType: Communication,Error,fout apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Veldtipe kan nie verander word van {0} na {1} in ry {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Kon nie aanskakel met QZ-bakprogram nie ...

U moet QZ Tray-program geïnstalleer en hardloop om die Raw Print-funksie te gebruik.

Klik hier om QZ Tray te laai en installeer .
Klik hier om meer te wete te kom oor Roudrukker ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Neem 'n foto apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,Vermy jare wat met jou geassosieer word. DocType: Web Form,Allow Incomplete Forms,Laat onvolledige vorms toe @@ -2624,7 +2666,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Kies teiken = "_blank" om oop te maak op 'n nuwe bladsy. DocType: Portal Settings,Portal Menu,Portaal Menu DocType: Website Settings,Landing Page,Landing Page -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,Meld asseblief aan of login om te begin 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/twofactor.py,Verfication Code,Verfication Code apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} reeds uitgeteken @@ -2710,6 +2751,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Data Migrasie P DocType: Address,Sales User,Verkope gebruiker apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Verander veld eienskappe (versteek, lees, toestemming ens)" DocType: Property Setter,Field Name,Veld naam +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,kliënt DocType: Print Settings,Font Size,Skrifgrootte DocType: User,Last Password Reset Date,Laaste wagwoord Herstel Datum DocType: System Settings,Date and Number Format,Datum en nommerformaat @@ -2775,6 +2817,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Groepknooppunt apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Voeg saam met bestaande DocType: Blog Post,Blog Intro,Blog Intro apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nuwe Noem +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Spring na die veld DocType: Prepared Report,Report Name,Rapporteer Naam apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Verfris asseblief om die nuutste dokument te kry. apps/frappe/frappe/core/doctype/communication/communication.js,Close,Naby @@ -2784,10 +2827,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,gebeurtenis DocType: Social Login Key,Access Token URL,Toegangspunt URL apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Stel asseblief die Dropbox-toegangsleutels in u webtuiste konfigureer +DocType: Google Contacts,Google Contacts,Google Kontakte DocType: User,Reset Password Key,Herstel wagwoord sleutel apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Gewysig deur DocType: User,Bio,bio apps/frappe/frappe/limits.py,"To renew, {0}.","Om te vernuwe, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Suksesvol gestoor +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Stuur 'n e-pos na {0} om dit hier te koppel. DocType: File,Folder,gids DocType: DocField,Perm Level,Permvlak DocType: Print Settings,Page Settings,Bladsy instellings @@ -2817,6 +2863,7 @@ DocType: Workflow State,remove-sign,verwyder-teken DocType: Dashboard Chart,Full,volle DocType: DocType,User Cannot Create,Gebruiker kan nie skep nie apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Jy het {0} punt behaal +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup> Gebruiker 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 afrol onder die geselekteerde ouer kom." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Geen e-posse apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Die volgende velde word ontbreek: @@ -2830,13 +2877,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Wys DocType: Web Form,Web Form Fields,Web vorm velde DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Gebruiker redigeerbare vorm op die webwerf. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Permanent Kanselleer {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Permanent Kanselleer {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Opsie 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,totale apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Dit is 'n baie algemene wagwoord. DocType: Personal Data Deletion Request,Pending Approval,Hangende goedkeuring apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Die dokument kon nie korrek toegeken word nie apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Nie toegelaat vir {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Geen waardes om te wys nie DocType: Personal Data Download Request,Personal Data Download Request,Persoonlike data aflaai versoek apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} het hierdie dokument met {1} gedeel apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Kies {0} @@ -2852,7 +2900,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Hierdie e-pos is gestuur na {0} en gekopieer na {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,Ongeldige aanmelding of wagwoord DocType: Social Login Key,Social Login Key,Sosiale aanmeld sleutel -apps/frappe/frappe/email/smtp.py,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/views/kanban/kanban_view.js,Filters saved,Filters gestoor 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 verstek gebruik word" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} is ingestel om te sê {2} @@ -2977,6 +3024,7 @@ DocType: User,Location,plek apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Geen data DocType: Website Meta Tag,Website Meta Tag,Webwerf Metatag DocType: Workflow State,film,film +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Kopieer na knipbord. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Stellings nie gevind nie apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Etiket is verpligtend DocType: Webhook,Webhook Headers,Webhook Headers @@ -3185,7 +3233,7 @@ DocType: Address,Address Line 1,Adres Lyn 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Vir dokumenttipe apps/frappe/frappe/model/base_document.py,Data missing in table,Data ontbreek in tabel apps/frappe/frappe/utils/bot.py,Could not identify {0},Kon nie {0} identifiseer nie -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Hierdie vorm is verander nadat jy dit gelaai het +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Hierdie vorm is verander nadat jy dit gelaai het apps/frappe/frappe/www/login.html,Back to Login,Terug na Inloggen apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Nie gestel nie DocType: Data Migration Mapping,Pull,trek @@ -3252,6 +3300,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Kindertafel kartering apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,E-pos rekening instellings vul asb jou wagwoord in vir: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Te veel skryf in een versoek. Stuur asseblief kleiner versoeke DocType: Social Login Key,Salesforce,Verkoopspan +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Voer {0} van {1} in DocType: User,Tile,Tile apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} kamer moet ten minste een gebruiker hê. DocType: Email Rule,Is Spam,Is Spam @@ -3289,7 +3338,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,gids-close DocType: Data Migration Run,Pull Update,Pull Update apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},het {0} saamgevoeg in {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Geen resultate gevind vir '

DocType: SMS Settings,Enter url parameter for receiver nos,Gee url parameter vir ontvanger nos apps/frappe/frappe/utils/jinja.py,Syntax error in template,Sintaksfout in sjabloon apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Stel asseblief die waarde van die filters in die verslag filter tabel. @@ -3302,6 +3350,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Jammer, jy DocType: System Settings,In Days,In Dae DocType: Report,Add Total Row,Voeg totale ry by apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Sessie begin misluk +DocType: Translation,Verified,geverifieer DocType: Print Format,Custom HTML Help,Gepasmaakte HTML-hulp DocType: Address,Preferred Billing Address,Gewenste faktuur adres apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Toevertrou aan @@ -3316,7 +3365,6 @@ DocType: Help Article,Intermediate,Intermediêre DocType: Module Def,Module Name,Module Naam DocType: OAuth Authorization Code,Expiration time,Vervaldatum apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Stel standaard formaat, bladsy grootte, druk styl ens." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,"Jy kan nie van iets wat jy geskep het, hou nie" DocType: System Settings,Session Expiry,Sessie Vervaldatum DocType: DocType,Auto Name,Outomatiese naam apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Kies aanhangsels @@ -3344,6 +3392,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Stelsel Bladsy DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Nota: as standaard word e-posse vir mislukte back-ups gestuur. DocType: Custom DocPerm,Custom DocPerm,Aangepaste DocPerm +DocType: Translation,PR sent,PR gestuur DocType: Tag Doc Category,Doctype to Assign Tags,Doctype to Assign Tags DocType: Address,Warehouse,Warehouse apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Dropbox Setup @@ -3411,7 +3460,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Enter om kommentaar by te voeg apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Veld {0} kan nie gekies word nie. DocType: User,Birth Date,Geboortedatum -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Met groepspresentasie DocType: List View Setting,Disable Count,Deaktiveer telling DocType: Contact Us Settings,Email ID,E-pos identiteit apps/frappe/frappe/utils/password.py,Incorrect User or Password,Verkeerde gebruiker of wagwoord @@ -3446,6 +3494,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Hierdie rol werk gebruikers toestemmings op vir 'n gebruiker DocType: Website Theme,Theme,tema DocType: Web Form,Show Sidebar,Wys Zijbalk +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google Kontakte Integrasie. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Verstek inkassie apps/frappe/frappe/www/login.py,Invalid Login Token,Ongeldige aanmeldingstoken apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Stel eers die naam en stoor die rekord. @@ -3473,7 +3522,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Korrigeer asseblief die DocType: Top Bar Item,Top Bar Item,Top Bar Item ,Role Permissions Manager,Rol Toestemmings Bestuurder -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,Daar was foute. Rapporteer asb. Asseblief. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} jaar gelede apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,vroulike DocType: System Settings,OTP Issuer Name,OTP Uitreiker Naam apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Voeg by om te doen @@ -3573,6 +3622,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Taal, apps/frappe/frappe/model/document.py,none of,geeneen van DocType: Desktop Icon,Page,Page DocType: Workflow State,plus-sign,plus-teken +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Maak kas skoon en herlaai apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Kan nie opdateer nie: Verkeerde / Verlopen Link. DocType: Kanban Board Column,Yellow,geel 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) @@ -3587,6 +3637,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Nuwe DocType: Activity Log,Date,datum DocType: Communication,Communication Type,Kommunikasietipe apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Ouer Tabel +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Navigeer lys op DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Wys volle fout en laat verslaggewing van probleme aan die ontwikkelaar toe DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3608,7 +3659,6 @@ DocType: Notification Recipient,Email By Role,E-pos per rol apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,Opgradeer asseblief om meer as {0} intekenare by te voeg apps/frappe/frappe/email/queue.py,This email was sent to {0},Hierdie e-pos is gestuur na {0} DocType: User,Represents a User in the system.,Verteenwoordig 'n gebruiker in die stelsel. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Bladsy {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Begin nuwe formaat apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Lewer kommentaar apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} van {1} diff --git a/frappe/translations/am.csv b/frappe/translations/am.csv index 8edaf0d620..f25175e6fb 100644 --- a/frappe/translations/am.csv +++ b/frappe/translations/am.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,ቀስቀዮችን አንቃ DocType: DocType,Default Sort Order,ነባሪ ትዕዛዝ አደራደር apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,ከሪፖርት ብቻ የቁጥር መስኮችን ብቻ በማሳየት ላይ +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,ምናሌ እና የጎን አሞሌ ውስጥ ተጨማሪ አቋራጮችን ለማስነሳት Alt ቁልፍን ይጫኑ DocType: Workflow State,folder-open,አቃፊ-ክፍት DocType: Customize Form,Is Table,ሰንጠረዥ ነው apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,የተያያዘውን ፋይል መክፈት አልተቻለም. እንደ CSV ወደውከው ነው? DocType: DocField,No Copy,ምንም ቅጂ የለም DocType: Custom Field,Default Value,ነባሪ እሴት apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,ለገቢ መልእክቶች ተገዢ መሆን ግዴታ ነው +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,እውቂያዎችን አመሳስል DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,የውሂብ ጎዳና ማዛመጃ ዝርዝር apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,አለመከተል apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",በ "ቀጥታ እትም" በኩል የፒ.ዲ. ማተም ገና አይደገፍም. እባክዎ በአታሚ ቅንብሮች ውስጥ የአታሚውን ማዘጋጃ ያስወግዱ እና እንደገና ይሞክሩ. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} እና {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,ማጣሪያዎችን በማስቀመጥ ላይ ስህተት ነበር apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,የይለፍ ቃልዎን ያስገቡ apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,የቤት እና የአባሪ ሰነዶች አቃፊን መሰረዝ አልተቻለም +DocType: Email Account,Enable Automatic Linking in Documents,በሰነዶች ውስጥ በራስ-ሰር ማገናኘት ያንቁ DocType: Contact Us Settings,Settings for Contact Us Page,እኛን ለማነጋገር ገጽ ቅንጅቶች DocType: Social Login Key,Social Login Provider,የማኅበራዊ ድጋፍ አቅራቢ +DocType: Email Account,"For more information, click here.","ለተጨማሪ መረጃ, እዚህ ይጫኑ ." DocType: Transaction Log,Previous Hash,ቀዳሚ እሽግ DocType: Notification,Value Changed,እሴት ተለውጧል DocType: Report,Report Type,የሪፖርት ዓይነት @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,የኃይል ገደብ መመሪያ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,ማህበራዊ መግቢያ ከመንቃቱ በፊት እባክዎ የደንበኛ መታወቂያ ያስገቡ DocType: Communication,Has Attachment,ዓባሪ አለው DocType: User,Email Signature,የኢሜል ፊርማ -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ዓመቱ (ዓመታት) በፊት ,Addresses And Contacts,አድራሻዎች እና አድራሻዎች apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,ይህ የካንካን ቦርድ የግል ይሆናል DocType: Data Migration Run,Current Mapping,የአሁኑ ካርታ @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","የማመሳሰል አማራጭን እንደ ሁሉም እየመረጡ ነው, ሁሉንም \ ያነበውን እንዲሁም ያልተነበበ መልዕክት ከአገልጋይ ይቀይራል. ይህ የኮሙኒኬሽን (ኢሜል) ብዜት ሊፈጥር ይችላል." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},ለመጨረሻ ጊዜ የተመሳሰለው {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,የአርዕስት ይዘት መለወጥ አይቻልም +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

ምንም ውጤቶች ለ '

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,ካስረከቡ በኋላ {0} እንዲቀይሩ አይፈቀድም apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","መተግበሪያው ወደ አዲስ ስሪት ተዘምኗል, እባክዎ ይህንን ገጽ ያድሱ" DocType: User,User Image,የተጠቃሚ ምስል @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},እ apps/frappe/frappe/public/js/frappe/chat.js,Discard,አስወግድ DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,ለተሻሉ ውጤቶች የበስተጀርባ ስፋት 150 ፒክሰል የሆነ ምስላዊ ምስል ይምረጡ. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,ዘጋግቷል +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} ዋጋዎች ተመርጠዋል DocType: Blog Post,Email Sent,ኢሜይል ተልኳል DocType: Communication,Read by Recipient On,በ ተቀባይ ላይ ያንብቡ DocType: User,Allow user to login only after this hour (0-24),ከዚህ ሰዓት በኋላ ከዚህ በኋላ ብቻ እንድሚጠቀም ይፍቀዱ (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,አዛውንት_ወላጅ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,ወደ ውጪ የሚልከው ሞዱል DocType: DocType,Fields,መስኮች -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,ይህን ሰነድ ለማተም አልተፈቀደልዎትም +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,ይህን ሰነድ ለማተም አልተፈቀደልዎትም apps/frappe/frappe/public/js/frappe/model/model.js,Parent,ወላጅ apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","ክፍለ-ጊዜዎ ጊዜው አልፎበታል, ለመቀጠል እባክዎ በድጋሚ ይግቡ." DocType: Assignment Rule,Priority,ቅድሚያ @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,የ OTP ሚስጥ DocType: DocType,UPPER CASE,ዋናው ጉዳይ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,እባክዎ የኢሜይል አድራሻውን ያዘጋጁ DocType: Communication,Marked As Spam,እንደ አይፈለጌ መልእክት ምልክት ተደርጎበታል +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,የ Google እውቂያዎችዎ እንዲመሳሰሉ የኢሜይል አድራሻ. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,ተመዝጋቢዎችን አስመጣ apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,ማጣሪያን አስቀምጥ DocType: Address,Preferred Shipping Address,የተመረጠው መላኪያ አድራሻ DocType: GCalendar Account,The name that will appear in Google Calendar,በ Google ቀን መቁጠሪያ ውስጥ የሚታይ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,አድስ ቶክን ለማመንጨት {0} ላይ ጠቅ ያድርጉ. DocType: Email Account,Disable SMTP server authentication,የ SMTP አገልጋይ ማረጋገጫ አሰናክል DocType: Email Account,Total number of emails to sync in initial sync process ,በመጀመሪያው የማመሳሰል ሂደት ውስጥ ለማመሳሰል ጠቅላላ የኢሜይሎች ቁጥር DocType: System Settings,Enable Password Policy,የይለፍ ቃል መመሪያን ያንቁ @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,ኮድ አስገባ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,አይደለም DocType: Auto Repeat,Start Date,የመጀመሪያ ቀን apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,ገበታ አዘጋጅ +DocType: Website Theme,Theme JSON,ገጽታ JSON apps/frappe/frappe/www/list.py,My Account,አካውንቴ DocType: DocType,Is Published Field,የታተመ መስክ ነው DocType: DocField,Set non-standard precision for a Float or Currency field,ለሐወታ ወይም ለምርጫ መስክ መደበኛ ያልሆነ ደረጃን ያዘጋጁ @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Reference: {{ reference_doctype }} {{ reference_name }} ማከል Reference: {{ reference_doctype }} {{ reference_name }} የሰነድ ማጣቀሻ ለመላክ DocType: LDAP Settings,LDAP First Name Field,LDAP የመጀመሪያ ስም መስክ apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,ነባሪ መላክ እና የገቢ መልዕክት ሳጥን -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,ማዋቀር> ፎርሙን ያበጁ apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.","ለማዘመን, የተመረጡ ዓምዶችን ብቻ ማዘመን ይችላሉ." apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',ለ 'Check' የሚባሉት መስመሮች በ <0 'ወይም' 1 'መሆን አለባቸው apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,ይህን ሰነድ አጋራ በ @@ -440,16 +447,19 @@ apps/frappe/frappe/model/document.py,One of,አንድ DocType: Domain Settings,Domains HTML,ጎራዎች ኤች ቲ ኤም ኤል DocType: Blog Settings,Blog Settings,የብሎግ ቅንብሮች apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","የዶክመንቱ ስም በደብዳቤ መጀመር አለበት እና ቁጥሮች, ቁጥሮች, ክፍተቶች እና ሰረዘዘብጦች ብቻ ሊኖረው ይችላል" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ማዋቀር> የተጠቃሚ ፈቃዶች DocType: Communication,Integrations can use this field to set email delivery status,ውህደቶች የኢሜል ማቅረቢያ ሁኔታን ለማዘጋጀት በዚህ መስክ ሊጠቀሙበት ይችላሉ apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,የጭብጥ ክፍያ ጉብኝት ቅንብሮች DocType: Print Settings,Fonts,ቅርጸ ቁምፊዎች DocType: Notification,Channel,ሰርጥ DocType: Communication,Opened,ተከፍቷል DocType: Workflow Transition,Conditions,ሁኔታዎች +apps/frappe/frappe/config/website.py,A user who posts blogs.,ጦማሮችን የሚለጥፍ ተጠቃሚ. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,መለያ የለህም? ክፈት apps/frappe/frappe/utils/file_manager.py,Added {0},ታክሏል {0} DocType: Newsletter,Create and Send Newsletters,ጋዜጣዎችን ይፍጠሩ እና ይላኩ DocType: Website Settings,Footer Items,የግርጌ ጽሁፎች +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,እባክዎ ከቅንብር> ኢሜይል> ኢሜይል መለያ ነባሪ የኢሜይል መለያ ያቀናብሩ DocType: Website Slideshow Item,Website Slideshow Item,የድርጣቢያ የስላይድ ትዕይንት ንጥል apps/frappe/frappe/config/integrations.py,Register OAuth Client App,የ OAuth ደንበኛ መተግበሪያን ያስመዝግቡት DocType: Error Snapshot,Frames,ክፈፎች @@ -490,7 +500,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","ደረጃ 0 ለሰነዱ ደረጃ ፍቃዶች, የመስክ የፍቃድ ፍቃዶች ከፍ ያለ ደረጃዎች ነው." DocType: Address,City/Town,ከተማ / ከተማ DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","ይህ የአሁኑን ገጽታዎን ዳግም ያስጀምረዋል, እርግጠኛ ነዎት መቀጠል ይፈልጋሉ?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},የግማሽ መስኮች በ {0} ውስጥ ያስፈልጋል apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},ወደ ኢሜይል መለያ እየተገናኘ ሳለ ስህተት ተፈጥሯል {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,ተደጋጋሚነትን በመፍጠር ላይ ስህተት አጋጥሟል @@ -526,7 +535,7 @@ DocType: Event,Event Category,የክስተት ምድብ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,በ ላይ የተመረኮዘ ዓምዶች apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,ርእስ ማስተካከል DocType: Communication,Received,ደርሷል -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,ይህን ገጽ ለመድረስ አልተፈቀደልዎትም. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,ይህን ገጽ ለመድረስ አልተፈቀደልዎትም. DocType: User Social Login,User Social Login,የተጠቃሚ ማህበራዊ መግቢያ apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,በተመሳሳዩ ተመሳሳይ አቃፊ ውስጥ የ Python ፋይል ፃፍ እና ዓምድ እና ውጤትን በመመለስ. DocType: Contact,Purchase Manager,የግዢ አደራጅ @@ -579,7 +588,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,ገ apps/frappe/frappe/utils/data.py,Operator must be one of {0},ኦፕሬተር ከ {0} ውስጥ መሆን አለበት. apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,ባለቤት DocType: Data Migration Run,Trigger Name,የጉዞ ስም -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,ወደ ጦማርዎ ርዕሶችን እና መግቢያዎችን ይጻፉ. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,መስክ አስወግድ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,ሁሉንም ሰብስብ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,ጀርባ ቀለም @@ -629,6 +637,7 @@ DocType: Dashboard Chart,Bar,ባር DocType: SMS Settings,Enter url parameter for message,ለመልዕክት የዩ አር ኤል ግቤት ያስገቡ apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,አዲስ ብጁ ማተም ቅርጸት apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} አስቀድሞም ይገኛል +DocType: Workflow Document State,Is Optional State,አማራጭ ሁኔታ ነው DocType: Address,Purchase User,የግዢ ተጠቃሚ DocType: Data Migration Run,Insert,አስገባ DocType: Web Form,Route to Success Link,ለስኬት አገናኝ መንገድ @@ -636,13 +645,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,የተ DocType: File,Is Home Folder,የቤት አቃፊ ነው apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,ተይብ DocType: Post,Is Pinned,ተሰክቷል -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},ወደ «{0}» ፍቃድ አይሰጥም {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},ወደ «{0}» ፍቃድ አይሰጥም {1} DocType: Patch Log,Patch Log,የፓኬት ማስታወሻ DocType: Print Format,Print Format Builder,የህትመት ቅርጸት ገንቢ 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 አድራሻ መግባት ይችላሉ. ይሄ በተጠቃሚ ገጽ ውስጥ ለተወሰኑ ለተጠቃሚዎች (ዎች) ሊዋቀር ይችላል apps/frappe/frappe/utils/data.py,only.,ብቻ. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,የ "{0}" ሁኔታ ልክ አይደለም DocType: Auto Email Report,Day of Week,የሳምንቱ ቀን +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Google ኤፒአይ በ Google ቅንብሮች ውስጥ አንቃ. DocType: DocField,Text Editor,የጽሑፍ አርታኢ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,ቁረጥ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,ትእዛዝ ይፈልጉ ወይም ይተይቡ @@ -650,6 +660,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,የ DB መጠባበቂያዎች ቁጥር ከ 1 ያነሰ መሆን አይችልም DocType: Workflow State,ban-circle,አግድ-ክበብ DocType: Data Export,Excel,Excel +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","ራስጌ, Breadcrumbs እና Meta መለያዎች" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,የድጋፍ ኢሜይል አድራሻ አልተገለጸም DocType: Comment,Published,ታትሟል DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","ማሳሰቢያ: ለምርጥ ውጤቶች, ምስሎቹ ተመሳሳይ መጠን እና ስፋት ከ ቁመት በላይ መሆን አለባቸው." @@ -740,6 +751,7 @@ DocType: System Settings,Scheduler Last Event,መርሐግብር የመጨረሻ apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,የሁሉም ዶክሜንት ማጋራቶች ሪፖርት DocType: Website Sidebar Item,Website Sidebar Item,የድርጣቢያ የጎን አሞሌ ንጥል apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,ለመስራት +DocType: Google Settings,Google Settings,የ Google ቅንብሮች apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","የእርስዎን አገር, የሰዓት ሰቅ እና ምንዛሬ ይምረጡ" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","የተጣራ ዩአርኤል መመጠኛዎችን እዚህ ያስገቡ (ለምሳሌ, ላኪ = ERPNext, የተጠቃሚ ስም = ERPNext, ይለፍ ቃል = 1234 ወዘተ)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,ምንም የኢሜይል መለያ የለም @@ -792,6 +804,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth ቤዢን ተለዋጭ ስም ,Setup Wizard,የማዋቀር አዋቂ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,ገበታን ቀያይር +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,ማመሳሰል DocType: Data Migration Run,Current Mapping Action,የአሁኑ የካርታ ስራ እርምጃ DocType: Email Account,Initial Sync Count,የመጀመሪያው ማመሳሰል ቆጠራ apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,እኛን ለማነጋገር ገጽ ቅንጅቶች. @@ -831,6 +844,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,የህትመት ዓይነት apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,ለዚህ መስፈርት ምንም ፍቃዶች አልተሰጡም. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,ሁሉንም ዘርጋ +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ምንም ነባሪ የአድራሻ አብነት አልተገኘም. እባክዎ ከአዋፕ> ማተም እና ብራንድ> የአድራሻ አብነት አዲስ አንድ ያድርጉ. DocType: Tag Doc Category,Tag Doc Category,የመታወቂያ ሰነድ ምድብ DocType: Data Import,Generated File,የተፈጠረ ፋይል apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,ማስታወሻዎች @@ -838,7 +852,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,የጊዜ መስመር መስክ አገናኝ ወይም ተለዋዋጭ አገናኝ መሆን አለበት DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,ማሳወቂያዎች እና የጅምላ መልዕክቶች ከዚህ ወጪ አገልጋይ ይላካሉ. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,ይህ እጅግ በጣም-100 የተለመደ ይለፍ ቃል ነው. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,በቋሚነት {0} ይላኩ? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,በቋሚነት {0} ይላኩ? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} አይገኝም, ለማዋሃድ አዲስ ዒላማ ይምረጡ" DocType: Energy Point Rule,Multiplier Field,የብዜት መስክ DocType: Workflow,Workflow State Field,የስራ ፍሰት ሁኔታ መስክ @@ -878,6 +892,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} ስራዎን በ {1} ከ {2} ነጥቦች ጋር በአድናቆትታል DocType: Auto Email Report,Zero means send records updated at anytime,ዜሮ ማለት በማንኛውም ሰዓት የተዘመኑ ሰነዶችን ይላኩ apps/frappe/frappe/model/document.py,Value cannot be changed for {0},እሴት ለ {0} ሊቀየር አይችልም. +apps/frappe/frappe/config/integrations.py,Google API Settings.,የ Google ኤፒአይ ቅንብሮች. DocType: System Settings,Force User to Reset Password,የይለፍ ቃል ዳግም ለማስጀመር ተጠቃሚ አስገድድ apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,የሪፖርትን ሪፖርቶች በቀጥታ በሪፖርቱ ገንቢ ነው የሚተዳደረው. ምንም የማደርገው የለም. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,ማጣሪያን ያርትዑ @@ -931,7 +946,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,ለ DocType: S3 Backup Settings,eu-north-1,ኢ-ሰሜን-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: በተመሳሳዩ ሚና, ደረጃ እና {1} ውስጥ አንድ ህግ ብቻ ነው የተፈቀደው." apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,ይህን የድር ቅጽ ሰነድ ለማዘመን አይችሉም -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,የዚህ መዝገብ ከፍተኛው ገደብ ገደብ ላይ ተደርሷል. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,የዚህ መዝገብ ከፍተኛው ገደብ ገደብ ላይ ተደርሷል. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,እባክዎ የማጣቀሻ ግንኙነቶች ሰነዶች አማካይነት አልተገናኙም. DocType: DocField,Allow in Quick Entry,በፈጣን መግቢያ ውስጥ ፍቀድ DocType: Error Snapshot,Locals,የአካባቢዎች @@ -962,7 +977,6 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Default theme apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be exported,ወደ ውጪ መላክ ምንም ውሂብ የለም DocType: Error Snapshot,Exception Type,የተለየ አይነት apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTP ሚስጥር በአስተዳዳሪው ብቻ ነው ሊጀምር የሚችለው. -DocType: Web Form Field,Page Break,ገጽ ዕረፍት DocType: Website Script,Website Script,የድር ጣቢያ ስክሪፕት DocType: Integration Request,Subscription Notification,የደንበኝነት ምዝገባ ማሳወቂያ DocType: DocType,Quick Entry,ፈጣን መግቢያ @@ -979,6 +993,7 @@ DocType: Notification,Set Property After Alert,ከማንቂያ በኋላ ንብ apps/frappe/frappe/__init__.py,Thank you,አመሰግናለሁ apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,ለውስጣዊ ውህደት የተራገፉ የድር ማንበቦች apps/frappe/frappe/config/settings.py,Import Data,ውሂብ አስመጣ +DocType: Translation,Contributed Translation Doctype Name,የተበረከተ የትርጉም ሥራ ስም DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,መታወቂያ DocType: Review Level,Review Level,የክለሳ ደረጃ @@ -997,7 +1012,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,በተሳካ ሁኔታ ተከናውኗል apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} ዝርዝር apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,አድናቆት -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),አዲስ {0} (Ctrl + B) DocType: Contact,Is Primary Contact,ዋና እውቅተኛ ነው DocType: Print Format,Raw Commands,ጥሬ እቃዎች apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,የፎክስ አቀማመጦች ለህትመት ቅርጸቶች @@ -1038,6 +1052,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,በበስተጀር apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},{0} በ {1} ውስጥ ያግኙ DocType: Email Account,Use SSL,ኤስኤስኤል ተጠቀም DocType: DocField,In Standard Filter,በመደበኛ ማጣሪያ ውስጥ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,ምንም የ Google እውቂያዎች ለማመሳሰል አይገኙም. DocType: Data Migration Run,Total Pages,ጠቅላላ ገጾች apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: መስክ <{1}> ልዩ ያልሆኑ እሴቶች አሉት እንደ ልዩ ማድረግ አይቻልም DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.",ከነቃ ተጠቃሚዎች በመለያ በሚገቡበት ጊዜ ሁሉ እንዲያውቁ ይደረጋል. ካልነቁ ተጠቃሚዎች አንድ ጊዜ ብቻ ማሳወቂያ ይደርሳቸዋል. @@ -1058,7 +1073,7 @@ DocType: Assignment Rule,Automation,አውቶማቲክ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,ፋይሎችን በመገልበጥ ላይ ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',ስለ «{0}» ይፈልጉ apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,የሆነ ስህተት ተከስቷል -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,እባክዎ ከማያያዝዎ በፊት ያስቀምጡ. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,እባክዎ ከማያያዝዎ በፊት ያስቀምጡ. DocType: Version,Table HTML,ሰንጠረዥ ኤች.ቲ. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,hub DocType: Page,Standard,መደበኛ @@ -1136,12 +1151,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,ምንም apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} መዝገቦች ተሰርዘዋል apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,የ dropbox መዳረሻ ማስመሰያ በማመንጨት ላይ የሆነ ስህተት ተከስቷል. እባክዎ ለተጨማሪ ዝርዝሮች ስህተትን ይመልከቱ. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,የዝርያዎች -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ምንም ነባሪ የአድራሻ አብነት አልተገኘም. እባክዎ ከአዋፕ> ማተም እና ብራንድ> የአድራሻ አብነት አዲስ አንድ ያድርጉ. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,የ Google እውቂያዎች ተዋቅረዋል. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,ዝርዝሮችን ደብቅ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,ቅርጸ ቁምፊዎች apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,የደንበኝነት ምዝገባዎ በ {0} ላይ ጊዜው ያልፍበታል. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},ከኢሜይል መለያ {0} ኢሜይሎች ሲደርሱ ማረጋገጥ አልተሳካም. ከአገልጋዩ መልዕክት: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),ባለፈው ሳምንት አፈጻጸም (ከ {0} እስከ {1}) ላይ የተመሠረቱ ስታቲስቲክስ +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,በራስ ሰር ማገናኘት ገቢን የነቃ ከሆነ ብቻ ገቢር ማድረግ ይቻላል. DocType: Website Settings,Title Prefix,የርዕስ ቅድመ ቅጥያ apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,የማረጋገጫ መተግበሪያዎች እነዚህን መጠቀም ይችላሉ: DocType: Bulk Update,Max 500 records at a time,በአንድ ጊዜ ከፍተኛ 500 ሪኮርድ @@ -1174,7 +1190,7 @@ DocType: Auto Email Report,Report Filters,ማጣሪያዎችን ሪፖርት አ apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,አምዶች ይምረጡ DocType: Event,Participants,ተሳታፊዎች DocType: Auto Repeat,Amended From,የተሻሻለው ከ -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,የእርስዎ መረጃ ገቢ ተደርጓል +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,የእርስዎ መረጃ ገቢ ተደርጓል DocType: Help Category,Help Category,የእገዛ ምድብ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 ወር apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,አዲስ ቅርጸት ለማርትዕ ወይም ለመጀመር አሁን ያለ ቅርጸት ይምረጡ. @@ -1221,7 +1237,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,ለመከታተል መስክ DocType: User,Generate Keys,ቁልፎችን ያፈጥሩ DocType: Comment,Unshared,አልተጋራም -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,ተቀምጧል +DocType: Translation,Saved,ተቀምጧል DocType: OAuth Client,OAuth Client,OAuth ደንበኛ DocType: System Settings,Disable Standard Email Footer,መደበኛ ኢሜይል እግርን ያሰናክሉ apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,የህትመት ቅርጸት {0} ተሰናክሏል @@ -1252,6 +1268,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,በመጨረ DocType: Data Import,Action,ድርጊት apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,የደንበኛ ቁልፍ ያስፈልጋል DocType: Chat Profile,Notifications,ማሳወቂያዎች +DocType: Translation,Contributed,የተበረከተ DocType: System Settings,mm/dd/yyyy,ወር / ቀን / ዓመት DocType: Report,Custom Report,ብጁ ሪፖርት DocType: Workflow State,info-sign,መረጃ-ምልክት @@ -1268,6 +1285,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,እውቅያ DocType: LDAP Settings,LDAP Username Field,የ LDAP Username መስክ apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} መስክ በ {1} ልዩ መሆን አይቻልም, ልዩ ያልሆኑ ነባር እሴቶች አሉ" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,ማዋቀር> ፎርሙን ያበጁ DocType: User,Social Logins,ማህበራዊ ምግቦች DocType: Workflow State,Trash,መጣያ DocType: Stripe Settings,Secret Key,የምሥጢር ቁልፍ @@ -1325,6 +1343,7 @@ DocType: DocType,Title Field,የርእስ መስክ apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,ከወጪ የኢሜይል አገልጋይ ጋር መገናኘት አልተቻለም DocType: File,File URL,ፋይል URL DocType: Help Article,Likes,መውደዶች +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,የ Google እውቂያዎች ውህደት ተሰናክሏል. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,ምትኬዎችን ለመድረስ መግባት እና የስርዓት አቀናባሪ ሚና አለዎት. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,የመጀመሪያ ደረጃ DocType: Blogger,Short Name,አጭር ስም @@ -1342,12 +1361,12 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,ዚፕ ያስመጡ DocType: Contact,Gender,ፆታ DocType: Workflow State,thumbs-down,ደባሪ -DocType: Web Page,SEO,መ apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},ወረፋ ከ {0} ውስጥ መሆን አለበት apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,የስርዓት አስተዳዳሪ መሆን አለበት ምክንያቱም በዚህ ስርዓት ላይ የስርዓት አስተዳዳሪን ማከል apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,የእንኳን ደህና መጡ ኢሜይል ተልኳል DocType: Transaction Log,Chaining Hash,አጫፍ DocType: Contact,Maintenance Manager,የጥገና አስተዳዳሪ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","ለማነጻጸር, <5, <10 ወይም = 324> ይጠቀሙ. ለክፍሎች, 5:10 ይጠቀሙ (በ 5 እና 10 መካከል ያሉ እሴቶች ላለው)." apps/frappe/frappe/utils/bot.py,show,አሳይ apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URL አጋራ apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,የማይደገፍ የፋይል ቅርጸት @@ -1369,7 +1388,7 @@ DocType: Communication,Notification,ማሳወቂያ DocType: Data Import,Show only errors,ስህተቶች ብቻ አሳይ DocType: Energy Point Log,Review,ግምገማ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,ረድፎች ተወግደዋል -DocType: GSuite Settings,Google Credentials,የ Google ምስክርነቶች +DocType: Google Settings,Google Credentials,የ Google ምስክርነቶች apps/frappe/frappe/www/login.html,Or login with,ወይም በመለያ ይግቡ apps/frappe/frappe/model/document.py,Record does not exist,መዝገብ አይገኝም apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,አዲስ የሪፖርት ስም @@ -1394,6 +1413,7 @@ DocType: Desktop Icon,List,ዝርዝር DocType: Workflow State,th-large,ታል apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: የማይታዘዝ ከሆነ ምደባን ማቀናበር አይቻልም apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,ለማንኛውም መዝገብ አልተገናኘም +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","ከ QZ ትሪ ትግበራ ጋር መገናኘት ላይ ስህተት ...

የ Raw Print ባህሪን ለመጠቀም የ QZ Tray ትግበራ መጫንና ማሄድ ያስፈልግዎታል.

QZ Tray ን ያውርዱና ይጫኑ .
ስለ ጥሬ ማተሚያ ተጨማሪ ለማወቅ እዚህ ጠቅ ያድርጉ ." DocType: Chat Message,Content,ይዘት DocType: Workflow Transition,Allow Self Approval,ራስን ማጽደቅ ፍቀድ apps/frappe/frappe/www/qrcode.py,Page has expired!,ገፁ ጊዜው አልፎበታል! @@ -1410,6 +1430,7 @@ DocType: Workflow State,hand-right,በቀኝ-ቀኝ DocType: Website Settings,Banner is above the Top Menu Bar.,ሰንደቅ ከከፍተኛ Menu አሞሌ በላይ ነው. apps/frappe/frappe/www/update-password.html,Invalid Password,የተሳሳተ የሚስጥርቃል apps/frappe/frappe/utils/data.py,1 month ago,ከ 1 ወር በፊት +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,የ Google እውቂያዎች ይድረሱ DocType: OAuth Client,App Client ID,የመተግበሪያ ደንበኛ መታወቂያ DocType: DocField,Currency,ምንዛሬ DocType: Website Settings,Banner,ሰንደቅ @@ -1421,7 +1442,7 @@ apps/frappe/frappe/utils/goal.py,Goal,ግብ DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","ሚና በደረጃ 0 ላይ ከሌለ, ከፍ ያለ ደረጃዎች ትርጉም አይሰጡም." DocType: ToDo,Reference Type,የማጣቀሻ አይነት -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DocType, Doc Type. ተጥንቀቅ!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","DocType, Doc Type. ተጥንቀቅ!" DocType: Domain Settings,Domain Settings,የጎራ ቅንጅቶች DocType: Auto Email Report,Dynamic Report Filters,ተለዋዋጭ ሪፖርት ማጣሪያዎች DocType: Energy Point Log,Appreciation,አድናቂ @@ -1463,6 +1484,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,እኛ-ምዕራብ-2 DocType: DocType,Is Single,ነጠላ ነው apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,አዲስ ቅርጸት ይፍጠሩ +DocType: Google Contacts,Authorize Google Contacts Access,የ Google እውቂያዎች መዳረሻ ይፍቀዱ DocType: S3 Backup Settings,Endpoint URL,የመጨረሻ ነጥብ ዩአርኤል DocType: Social Login Key,Google,ጉግል DocType: Contact,Department,መምሪያ @@ -1477,7 +1499,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,መድብ ለ DocType: List Filter,List Filter,ዝርዝር ማጣሪያ DocType: Dashboard Chart Link,Chart,ሰንጠረዥ apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,ማስወገድ አይቻልም -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,ለማረጋገጥ ይህን ሰነድ ያስገቡ +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,ለማረጋገጥ ይህን ሰነድ ያስገቡ apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} አስቀድሞም ይገኛል. ሌላ ስም ይምረጡ apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,በዚህ ቅጽ ውስጥ ያልተቀመጡ ለውጦች አሉዎት. እባክዎ ከመቀጠልዎ በፊት ያስቀምጡ. apps/frappe/frappe/model/document.py,Action Failed,እርምጃ አልተሳካም @@ -1559,6 +1581,7 @@ DocType: DocField,Display,ማሳያ apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,ለሁሉም መልስ DocType: Calendar View,Subject Field,የትምህርት መስክ apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},የጊዜ ማብቂያ በ ቅርጸት {0} መሆን አለበት +apps/frappe/frappe/model/workflow.py,Applying: {0},በማመልከት ላይ: {0} DocType: Workflow State,zoom-in,አቅርብ apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,ከአገልጋይ ጋር መገናኘት አልተሳካም apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},ቀን {0} በ ቅርፀት መሆን አለበት {1} @@ -1570,8 +1593,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,አዶው አዝራሩ ላይ ይታያል DocType: Role Permission for Page and Report,Set Role For,ሚና ለ +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,ራስ-ሰር ማገናኘት በአንድ የኢሜል አካውንት ብቻ ሊነቃ ይችላል. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,ምንም የኢሜይል መለያዎች አልተመደቡም +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,የኢሜይል መለያ ማዋቀር አይደለም. እባክዎ ከቅንብር> ኢሜይል> ኢሜይል መለያ አዲስ የኢሜይል አድራሻ ይፍጠሩ apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,ምደባ +DocType: Google Contacts,Last Sync On,የመጨረሻው አስምር በርቷል apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},በ {0} በራስ-ሰር መመሪያ በኩል ተገኝቷል {1} apps/frappe/frappe/config/website.py,Portal,መግቢያ apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,ኢሜል ስላደረግክልኝ አመሰግናለሁ @@ -1592,7 +1618,6 @@ DocType: GSuite Settings,GSuite Settings,የጂኤስኪዎች ቅንጅቶች DocType: Integration Request,Remote,ሩቅ DocType: File,Thumbnail URL,ድንክዬ ዩአርኤል apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,ሪፖርት አውርድ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,አዘጋጅ> ተጠቃሚ apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},ወደ {5} የታከሉ ብጁነቶች ወደ:
{1} DocType: GCalendar Account,Calendar Name,የቀን መቁጠሪያ ስም apps/frappe/frappe/templates/emails/new_user.html,Your login id is,የመግቢያ መታወቂያዎ @@ -1642,6 +1667,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},ወ apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,የምስል መስኩ ትክክለኛ የመስክ ስም መሆን አለበት apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,ይህን ገጽ ለመድረስ መግባት አለብህ DocType: Assignment Rule,Example: {{ subject }},ለምሳሌ: {{ትምህርት}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,የመስክ ስም {0} የተገደበ ነው apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},ለመስክ {0} ለ 'ተነባቢ ብቻ' ማስተካከል አይችሉም DocType: Social Login Key,Enable Social Login,ማህበራዊ መግቢያን አንቃ DocType: Workflow,Rules defining transition of state in the workflow.,በስራው ፍሰት ውስጥ የስቴት ሽግግርን የሚገልጹ ደንቦች. @@ -1662,10 +1688,10 @@ DocType: Website Settings,Route Redirects,የመሄጃ አቅጣጫዎች apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,የኢሜይል ገቢ መልዕክት ሳጥን apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},{0} እንደ {1} ወደነበረበት ተመልሷል DocType: Assignment Rule,Automatically Assign Documents to Users,ሰነዶችን ለተጠቃሚዎች በራስ-ሰር መድብ +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,አሪፍ አሞሌ ክፈት apps/frappe/frappe/config/settings.py,Email Templates for common queries.,የተለመዱ መጠይቆችን የኢሜል አብነቶች. DocType: Letter Head,Letter Head Based On,በመነሻ ላይ የተጻፈ ደብዳቤ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,እባክዎ ይህን መስኮት ይዝጉ -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,ክፍያ ተጠናቋል DocType: Contact,Designation,ዝርዝር DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Meta መለያዎች @@ -1704,6 +1730,7 @@ DocType: System Settings,Choose authentication method to be used by all users, DocType: Error Snapshot,Parent Error Snapshot,የወላጅ ስህተት ቅጽበተ-ፎቶ DocType: GCalendar Account,GCalendar Account,የ GCalendar መለያ DocType: Language,Language Name,የቋንቋ ስም +DocType: Workflow Document State,Workflow Action is not created for optional states,የስራ ፍሰት እርምጃ ለተለዋጭ ደረጃዎች አልተፈጠረም DocType: Customize Form,Customize Form,ቅጹን አብጅ DocType: DocType,Image Field,የምስል መስክ apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),የታከለው {0} ({1}) @@ -1745,6 +1772,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,ተጠቃሚው ባለቤት ከሆነ ይህን ህግ ይጠቀሙ DocType: About Us Settings,Org History Heading,የኦርግ ታሪክ ራስጌ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,የአገልጋይ ስህተት +DocType: Contact,Google Contacts Description,የ Google እውቂያዎች ዝርዝር apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,መደበኛ ሚናዎች ዳግም መሰየም አይቻልም DocType: Review Level,Review Points,የክለሳ ነጥቦችን apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,የጎደለ መለኪያ የካንቦን ቦርድ ስም @@ -1762,7 +1790,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,በገንቢ ሁነታ ውስጥ አይደለም! በ site_config.json ውስጥ አዘጋጅ ወይም 'ብጁ አድርግ' Doc Type. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,{0} ነጥቦች አግኝቷል DocType: Web Form,Success Message,የስኬት መልዕክት -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","ለማነጻጸር, <5, <10 ወይም = 324> ይጠቀሙ. ለክፍሎች, 5:10 ይጠቀሙ (በ 5 እና 10 መካከል ያሉ እሴቶች ላለው)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","ለዝርዝር ገጽ ገለፃ, በግልጽ ጽሑፍ, የተወሰኑ መስመሮች ብቻ. (ቢበዛ 140 ቁምፊዎች)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,ፍቃዶችን አሳይ DocType: DocType,Restrict To Domain,ወደ ጎራ ገድብ @@ -1784,6 +1811,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,የቀ apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,እሴት ያዘጋጁ DocType: Auto Repeat,End Date,የማብቂያ ቀን DocType: Workflow Transition,Next State,ቀጣይ ሁኔታ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} የ Google እውቂያዎች ተመሳስሏል. DocType: System Settings,Is First Startup,የመጀመሪያው ጅምር ነው apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},ወደ {0} ዘምኗል apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,አንቀሳቅስ ወደ @@ -1833,6 +1861,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} የቀን መቁጠሪያ apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,የውሂብ አስመጪ አብነት DocType: Workflow State,hand-left,በእጅ-ግራ +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,በርካታ የዝርዝር ንጥሎችን ይምረጡ apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,የምትኬ መጠን: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},ከ {0} ጋር የተገናኘ DocType: Braintree Settings,Private Key,የግል ቁልፍ @@ -1875,13 +1904,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,ፍላጎት DocType: Bulk Update,Limit,ገደብ DocType: Print Settings,Print taxes with zero amount,በዜሮ መጠን ግብር ያትሙ -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,የኢሜይል መለያ ማዋቀር አይደለም. እባክዎ ከቅንብር> ኢሜይል> ኢሜይል መለያ አዲስ የኢሜይል አድራሻ ይፍጠሩ DocType: Workflow State,Book,መጽሐፍ DocType: S3 Backup Settings,Access Key ID,የመዳረሻ መታወቂያ ይድረሱ DocType: Chat Message,URLs,URLs apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,ስሞች እና የአብ ርዝሞች በራሳቸው ለመገመት ቀላል ናቸው. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},ሪፖርት {0} DocType: About Us Settings,Team Members Heading,የቡድን አባላት ጭምር +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,የዝርዝር ንጥል ይምረጡ apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},ሰነድ {0} {1} በ {2} ውስጥ እንዲገለጽ ተዘጋጅቷል DocType: Address Template,Address Template,የአድራሻ ደብተር DocType: Workflow State,step-backward,ወደ ኋላ @@ -1905,6 +1934,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,ብጁ ፍቃዶችን ወደ ውጪ ላክ apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,ምንም: የስራ ፍሰት መጨረሻ DocType: Version,Version,ስሪት +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,የዝርዝር ንጥል ክፈት apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 ወራት DocType: Chat Message,Group,ቡድን apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},በፋይሉ url ላይ ችግር አለ: {0} @@ -1960,6 +1990,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 ዓመት apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} ነጥቦችዎን በ {1} ላይ አድሽረዋል DocType: Workflow State,arrow-down,ቀስት-ታች DocType: Data Import,Ignore encoding errors,የኮድ የማስገር ስህተቶችን ችላ በል +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,ውበት DocType: Letter Head,Letter Head Name,የመለያ ፊደላት ስም DocType: Web Form,Client Script,የደንበኛ ስክሪፕት DocType: Assignment Rule,Higher priority rule will be applied first,ከፍ ያለ ቅድሚያ የሚሰጠው መመሪያ በመጀመሪያ ይተገበራል @@ -2004,6 +2035,7 @@ DocType: Kanban Board Column,Green,አረንጓዴ apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,ለአዲስ መዛግብት አስገዳጅ መስኮቶች ብቻ አስፈላጊ ናቸው. አስፈላጊ ከሆነ የማያቆሙ ዓምዶችን መሰረዝ ይችላሉ. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} በደብዳቤ መጀመር እና ማጠናቀቅ አለበት እና ፊደሎችን, አቆራኝ ወይም ሰረዘዘብጥ ብቻ መያዝ ይችላል." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,ተቀዳሚ እርምጃ ይፍጠሩ apps/frappe/frappe/core/doctype/user/user.js,Create User Email,የተጠቃሚ ኢሜይል ይፍጠሩ apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,መስክ ደርድር {0} ትክክለኛ የመስክ ስም መሆን አለበት DocType: Auto Email Report,Filter Meta,Meta ማጣሪያ @@ -2033,6 +2065,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,የጊዜ መስመር መስክ apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,በመጫን ላይ ... DocType: Auto Email Report,Half Yearly,ግማሽ ዓመት +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,የግል ማህደሬ apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,መጨረሻ የተሻሻለው ቀን DocType: Contact,First Name,የመጀመሪያ ስም DocType: Post,Comments,አስተያየቶች @@ -2055,6 +2088,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,ይዘት ሃሽ apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},ልጥፎች በ {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} የተመደበው {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,ምንም አዲስ የ Google እውቂያዎች አልተሰመሩም. DocType: Workflow State,globe,ሉል apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},አማካኝ የ {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,የጥያቄ ስህተት ማስታወሻዎች @@ -2080,6 +2114,8 @@ DocType: Workflow State,Inverse,በተቃራኒ DocType: Activity Log,Closed,ዝግ DocType: Report,Query,ጥያቄ DocType: Notification,Days After,ቀኖች በኋላ +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,የገፅ አቋራጭ +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,ፎቶግራፍ apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,ጥያቄው ጊዜው አልፏል DocType: System Settings,Email Footer Address,የኢሜይል ፊደል አድራሻ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,የኃይል ማመንጫ አዘምን @@ -2107,6 +2143,7 @@ For Select, enter list of Options, each on a new line.","ለጎራዎቹ, DocTyp apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,ከ 1 ደቂቃ በፊት apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,ምንም ንቁ ክፍለ ጊዜዎች የሉም apps/frappe/frappe/model/base_document.py,Row,ረድፍ +DocType: Contact,Middle Name,የአባት ስም apps/frappe/frappe/public/js/frappe/request.js,Please try again,እባክዎ ዳግም ይሞክሩ DocType: Dashboard Chart,Chart Options,የገበታ አማራጮች DocType: Data Migration Run,Push Failed,ግፋ አልተሳካም @@ -2135,6 +2172,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,መጠን ይቀንሱ DocType: Comment,Relinked,ዳግም ተገናኝቷል DocType: Role Permission for Page and Report,Roles HTML,ሚናዎች HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,ሂድ apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,የስራ ፍሰቱ ከተቀመጠ በኋላ ይጀምራል. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.",የእርስዎ ውሂብ በኤችቲኤምኤል ከሆነ እባክዎን ትክክለኛውን የኤች.ቲ.ኤም.ኤል ኮድ በመለያዎቹ ላይ ይለጥፉ. apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,ቀናቶች ለመገመት ብዙ ጊዜ ቀላል ናቸው. @@ -2163,7 +2201,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,ዴስክቶፕ አዶ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,ይህን ሰነድ ሰርዘዋል apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,የቀን ክልል -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ማዋቀር> የተጠቃሚ ፈቃዶች apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} በደንብ የተደገፈ {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,እሴቶች ተለውጠዋል apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,በማሳወቂያ ውስጥ ስህተት @@ -2228,6 +2265,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,በጅምላ ሰርዝ DocType: DocShare,Document Name,ሰነድ ስም apps/frappe/frappe/config/customization.py,Add your own translations,የራስዎን ትርጉሞች ያክሉ +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,ዝርዝር ወደታች አስስ DocType: S3 Backup Settings,eu-central-1,ኢ-ማእከላዊ-1 DocType: Auto Repeat,Yearly,ዓመታዊ apps/frappe/frappe/public/js/frappe/model/model.js,Rename,እንደገና ይሰይሙ @@ -2278,6 +2316,7 @@ DocType: Workflow State,plane,አውሮፕላን apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,የተሰመረ የመነሻ ስህተት. እባክዎ አስተዳዳሪውን ያነጋግሩ. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,ሪፖርት ያሳዩ DocType: Auto Repeat,Auto Repeat Schedule,ራስ-ሰር ረገም መርሐግብር +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,ማጣቀሻውን ይመልከቱ DocType: Address,Office,ጽ / ቤት DocType: LDAP Settings,StartTLS,TLS ን ይጀምሩ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,ከ {0} ቀናት በፊት @@ -2311,7 +2350,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required, apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,የእኔ ቅንብሮች apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,የቡድን ስም ባዶ ሊሆን አይችልም. DocType: Workflow State,road,መንገድ -DocType: Website Route Redirect,Source,ምንጭ +DocType: Contact,Source,ምንጭ apps/frappe/frappe/www/third_party_apps.html,Active Sessions,ንቁ ክፍለ ጊዜዎች apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,በቅጽበት አንድ ብቻ የታጠፈ ሊኖር ይችላል apps/frappe/frappe/public/js/frappe/chat.js,New Chat,አዲስ ውይይት @@ -2333,6 +2372,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,እባክዎ ዩ አር ኤል ፍቃድ ያስገቡ DocType: Email Account,Send Notification to,ማሳወቂያ ላክ apps/frappe/frappe/config/integrations.py,Dropbox backup settings,የ Dropbox ምትኬ ቅንብሮች +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,በማስመሰያው ትውልድ ውስጥ የሆነ ችግር ተፈጥሯል. አዲስ ለመፍጠር በ {0} ላይ ጠቅ ያድርጉ. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,ሁሉም ብጁነቶች ይወገዱ? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,አስተዳዳሪ ብቻ ማስተካከል ይችላል DocType: Auto Repeat,Reference Document,የማጣቀሻ ሰነድ @@ -2357,6 +2397,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,ከ ተጠቃሚው ገፅ ለተጠቃሚዎች ሊሰሩ ይችላሉ. DocType: Website Settings,Include Search in Top Bar,በከፍተኛ አሞሌ ውስጥ ፍለጋን ያካትቱ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[አስቸኳይ] ለ% s ተደጋጋሚ% s በመፍጠር ላይ ሳለ ስህተት +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,አለም አቀፍ አቋራጮች DocType: Help Article,Author,ደራሲ DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,ለተሰጣቸው ማጣሪያዎች ምንም ሰነድ አልተገኘም @@ -2392,10 +2433,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, ረድፍ {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","አዳዲስ መዝገቦችን እየሰቀሉ ከሆነ, "የስምሪት ስሞች" መገደብ ግዴታ ነው." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,ባህሪያትን ያርትዑ -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,{0} ክፍት በሚሆንበት ጊዜ ገላጭ መክፈት አይቻልም +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,{0} ክፍት በሚሆንበት ጊዜ ገላጭ መክፈት አይቻልም DocType: Activity Log,Timeline Name,የጊዜ መስመር ስም DocType: Comment,Workflow,የስራ ፍሰት apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,እባክዎን ቤይ ዩአርኤስን ለማሸጋገር ማህበራዊ ቁልፍ ቁልፍ ያዘጋጁ +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,የቁልፍ ሰሌዳ አቋራጮች DocType: Portal Settings,Custom Menu Items,ብጁ ምናሌ ንጥሎች apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,ግንኙነት ጠፍቷል. አንዳንድ ባህሪያት ላይሰሩ ይችላሉ. apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,LDAP is not enabled.,LDAP አልነቃም. @@ -2457,6 +2499,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,ረድፎ DocType: DocType,Setup,አዘገጃጀት apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} በተሳካ ሁኔታ ተፈጥሯል apps/frappe/frappe/www/update-password.html,New Password,አዲስ የይለፍ ቃል +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,መስክ ይምረጡ apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,ይህን ውይይት ተወው DocType: About Us Settings,Team Members,የቡድን አባላት DocType: Blog Settings,Writers Introduction,ፀሐፊዎች መግቢያ @@ -2526,13 +2569,12 @@ DocType: Chat Room,Name,ስም DocType: Communication,Email Template,የኢሜይል አብነት DocType: Energy Point Settings,Review Levels,የክለሳ ደረጃዎች DocType: Print Format,Raw Printing,ጥሬ ማተሚያ -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,አካሄዶ በሚከፈትበት ጊዜ {0} መክፈት አይቻልም +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,አካሄዶ በሚከፈትበት ጊዜ {0} መክፈት አይቻልም DocType: DocType,"Make ""name"" searchable in Global Search",«ስም» በ Global Search ውስጥ ሊፈለግ የሚችል DocType: Data Migration Mapping,Data Migration Mapping,የውሂብ ጎዳና ማዛመጃ DocType: Data Import,Partially Successful,በከፊል ስኬታማ DocType: Communication,Error,ስህተት apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},የመስክ አይነት በ {0} ውስጥ {0} በረድፍ {2} ውስጥ ሊለወጥ አይችልም. -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","ከ QZ ትሪ ትግበራ ጋር መገናኘት ላይ ስህተት ...

የ Raw Print ባህሪን ለመጠቀም የ QZ Tray ትግበራ መጫንና ማሄድ ያስፈልግዎታል.

QZ Tray ን ያውርዱና ይጫኑ .
ስለ ጥሬ ማተሚያ ተጨማሪ ለማወቅ እዚህ ጠቅ ያድርጉ ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,ፎቶ አንሳ apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,ከእርስዎ ጋር የተቆራኙ ብዙ አመታትን ያስወግዱ. DocType: Web Form,Allow Incomplete Forms,ያልተሟሉ ቅጾችን ፍቀድ @@ -2628,7 +2670,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",በአዲስ ገጽ ለመክፈት target = "_blank" ይምረጡ. DocType: Portal Settings,Portal Menu,የመግቢያ ምናሌ DocType: Website Settings,Landing Page,የማረፊያ ገጽ -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,እባክዎ ለመመዝገብ ይመዝገቡ ወይም ለመጀመር ይግቡ DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","እንደ "ሽያጭ መጠይቅ, የድጋፍ ጥያቄ" ወዘተ የመሳሰሉ የእውቅያ አማራጮች በእያንዳንዱ መስመር ላይ ወይም በነጠላ ሰረዝ በመለየት." apps/frappe/frappe/twofactor.py,Verfication Code,የማረጋገጫ ኮድ apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} አስቀድሞ ከደንበኝነት ምዝገባ ወጥቷል @@ -2714,6 +2755,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,የውሂብ DocType: Address,Sales User,የሽያጭ ተጠቃሚ apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","የመስክ ባህሪያትን ለውጥ (ተደብቆ, ንባብ, ፍቃድ, ወዘተ)" DocType: Property Setter,Field Name,የመስክ ስም +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,ደንበኛ DocType: Print Settings,Font Size,የቅርጸ ቁምፊ መጠን DocType: User,Last Password Reset Date,የመጨረሻው የይለፍ ቃል ዳግም ያስጀምሩ DocType: System Settings,Date and Number Format,የቀን እና የቁጥር ቅርጸት @@ -2779,6 +2821,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,የቡድን apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,አሁን ካለው ጋር አዋህድ DocType: Blog Post,Blog Intro,የጦማር መግቢያ apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,አዲስ ጭብጥ +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,ወደ መስኩ ይዝለሉ DocType: Prepared Report,Report Name,ስም ሪፖርት አድርግ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,የቅርብ ጊዜውን ሰነድ ለማግኘት እባክህ አድስ. apps/frappe/frappe/core/doctype/communication/communication.js,Close,ገጠመ @@ -2788,10 +2831,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,ክስተት DocType: Social Login Key,Access Token URL,የመድረሻ ተለዋጭ ስም apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,እባክዎን የ Dropbox መዳረሻ ቁልፎችዎን በጣቢያዎ ውቅር ያዘጋጁ +DocType: Google Contacts,Google Contacts,የ Google እውቂያዎች DocType: User,Reset Password Key,የይለፍ ቃል ቁልፍ ዳግም አስጀምር apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,የተሻሻለው በ DocType: User,Bio,የህይወት ታሪክ apps/frappe/frappe/limits.py,"To renew, {0}.","ለማደስ, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,በተሳካ ሁኔታ ተቀምጧል +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,እዚህ ጋር ለማገናኘት ኢሜል ወደ {0} ይላኩ. DocType: File,Folder,አቃፊ DocType: DocField,Perm Level,Perm Level DocType: Print Settings,Page Settings,የገፅ ቅንብሮች @@ -2821,6 +2867,7 @@ DocType: Workflow State,remove-sign,አስወግድ DocType: Dashboard Chart,Full,ሙሉ DocType: DocType,User Cannot Create,ተጠቃሚ መፍጠር አልተቻለም apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,{0} ነጥብ አግኝተዋል +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,አዘጋጅ> ተጠቃሚ DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.",ይህንን ካቀናበሩ ይህ ንጥል በተመረጠው ወላጅ ውስጥ በተቆልቋይ ውስጥ ይወጣል. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,ምንም ኢሜይሎች የሉም apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,የሚከተሉ መስኮች ጠፍተዋል: @@ -2834,13 +2881,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,የ DocType: Web Form,Web Form Fields,የድር ቅጽ መስኮች DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,የተጠቃሚ አርትዕ በድረገፅ ላይ. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,እስከመጨረሻው {0} ይጥፋ? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,እስከመጨረሻው {0} ይጥፋ? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,አማራጭ 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,ድምሮች apps/frappe/frappe/utils/password_strength.py,This is a very common password.,ይህ በጣም የተለመደ የይለፍ ቃል ነው. DocType: Personal Data Deletion Request,Pending Approval,በመጠባበቅ ላይ ያለ ማጽደቅ apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,ሰነዱ በትክክል አልተመደበም apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},ለ {0} አይፈቀድም: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,ምንም የሚታዩ ዋጋዎች የሉም DocType: Personal Data Download Request,Personal Data Download Request,የግል ውሂብ አውርድ ጥያቄ apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} ይህንን ሰነድ ከ {1} ጋር አጋርቷል apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},ይምረጡ {0} @@ -2855,7 +2903,6 @@ DocType: Custom DocPerm,Delete,ሰርዝ apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},ይህ ኢሜይል ወደ {0} ተልኳል እና ወደ {1} ተቀድቷል apps/frappe/frappe/email/smtp.py,Invalid login or password,ልክ ያልሆነ መግቢያ ወይም የይለፍ ቃል DocType: Social Login Key,Social Login Key,የማኅበራዊ ቁልፍ ቁልፍ -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,እባክዎ ከቅንብር> ኢሜይል> ኢሜይል መለያ ነባሪ የኢሜይል መለያ ያቀናብሩ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,ማጣሪያዎች ተቀምጠዋል DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",ይህ ምንዛሬ እንዴት ይዘጋጅ? ካልተዋቀረ የስርዓት ነባሮችን ይጠቀማል apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} ለመግለጽ ተዋቅሯል {2} @@ -2981,6 +3028,7 @@ DocType: User,Location,አካባቢ apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,ምንም ውሂብ የለም DocType: Website Meta Tag,Website Meta Tag,የድር ጣቢያ ዲበባ DocType: Workflow State,film,ፊልም +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,ወደ ቅንጥብ ሰሌዳ ተቀድቷል. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} ቅንጅቶች አልተገኙም apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,መሰየሚያ የግዴታ ነው DocType: Webhook,Webhook Headers,Webhook ራስጌዎች @@ -3187,7 +3235,7 @@ DocType: Address,Address Line 1,አድራሻ መስመር 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,ለፋይሉ ዓይነት apps/frappe/frappe/model/base_document.py,Data missing in table,በሰንጠረዥ ውስጥ ውሂብ ይጎድላል apps/frappe/frappe/utils/bot.py,Could not identify {0},{0} ን መለየት አልተቻለም -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,ይህ ቅጽ ከጫኑት በኋላ ተለውጧል +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,ይህ ቅጽ ከጫኑት በኋላ ተለውጧል apps/frappe/frappe/www/login.html,Back to Login,ወደ መግቢያ ተመለስ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,አልተዘጋጀም DocType: Data Migration Mapping,Pull,ይጎትቱ @@ -3254,6 +3302,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,የህፃን ገበ apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,የኢሜይል መለያ ማዋቀር እባክዎ ለእዚህ ይለፍ ቃል ያስገቡ: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,በአንድ ጥያቄ ውስጥ በጣም ብዙ ፅሁፎች. እባክዎ ትናንሽ ጥያቄዎችን ይላኩ DocType: Social Login Key,Salesforce,የሽያጭ ኃይል +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{0} የ {1} አስመጪ DocType: User,Tile,ሰቅል apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} ክፍሉ አንድ ተጠቃሚ ሊኖረው ይገባል. DocType: Email Rule,Is Spam,አይፈለጌ መልዕክት ነው @@ -3290,7 +3339,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,አቃፊ-በቅርብ DocType: Data Migration Run,Pull Update,ዝማኔን ጎትት apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},{0} ወደ {1} ተዋህዷል -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

ምንም ውጤቶች ለ '

DocType: SMS Settings,Enter url parameter for receiver nos,ለዩቲዩብ የዩ.አር.ኤል. ግቤ ያስገቡ apps/frappe/frappe/utils/jinja.py,Syntax error in template,በአብነት ውስጥ የአገባብ ስህተት apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,እባክዎ በ ሪፖርት ማጣሪያ ሰንጠረዥ ውስጥ የማጣሪያ እሴት ያዋቅሩ. @@ -3303,6 +3351,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","ይቅር DocType: System Settings,In Days,በቆየ ቀን DocType: Report,Add Total Row,ጠቅላላ ረድፍ አክል apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,የክፍለ ጊዜ ጀምር አልተሳካም +DocType: Translation,Verified,የተረጋገጠ DocType: Print Format,Custom HTML Help,ብጁ የኤች ቲ ኤም ኤል እገዛ DocType: Address,Preferred Billing Address,የተመረጠ የክፍያ መጠየቂያ አድራሻ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,የተመደበለት ለ @@ -3317,7 +3366,6 @@ DocType: Help Article,Intermediate,መካከለኛ DocType: Module Def,Module Name,የሞዱል ስም DocType: OAuth Authorization Code,Expiration time,ጊዜ የሚያልፍበት ጊዜ apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","ነባሪ ቅርጸት, የገፅ መጠን, የህትመት አይነት ወዘተ." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,የፈጠርካቸውን አንድ ነገር አልወደዱትም DocType: System Settings,Session Expiry,የጊዜ ማብቂያ DocType: DocType,Auto Name,የመኪና ስም apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,አባሪዎችን ይምረጡ @@ -3345,6 +3393,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,የስርዓት ገጽ DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,ማሳሰቢያ: በነባሪ ኢሜሎች ለተሳኩ ምትኬዎች ተልከዋል. DocType: Custom DocPerm,Custom DocPerm,ብጁ DocPerm +DocType: Translation,PR sent,PR ተልኳል DocType: Tag Doc Category,Doctype to Assign Tags,መለያዎችን ለመመደብ አስረግሚ DocType: Address,Warehouse,የመጋዘን apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,የጃኮፕ ሳጥን ማዋቀር @@ -3412,7 +3461,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,አስተያየት ለማከል Ctrl + Enter ይጫኑ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,መስክ {0} ሊመረጥ አይችልም. DocType: User,Birth Date,የልደት ቀን -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,በቡድን ማጣበቂያ DocType: List View Setting,Disable Count,ቆጠራ ያሰናክሉ DocType: Contact Us Settings,Email ID,የኢሜይል መታወቂያ apps/frappe/frappe/utils/password.py,Incorrect User or Password,የተሳሳተ ተጠቃሚ ወይም የይለፍ ቃል @@ -3447,6 +3495,7 @@ DocType: Website Settings,<head> HTML,<ራስ> HTML DocType: Custom DocPerm,This role update User Permissions for a user,ይህ ለተጠቃሚዎች የተጠቃሚ ፍቃዶችን ይግዙ DocType: Website Theme,Theme,ገጽታ DocType: Web Form,Show Sidebar,የጎን አሞሌን አሳይ +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,የ Google እውቂያዎች ውህደት. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,ነባሪ የገቢ መልዕክት ሳጥን apps/frappe/frappe/www/login.py,Invalid Login Token,ልክ ያልሆነ የመግቢያ አስመስሎ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,በመጀመሪያ ስም አስቀምጠው መዝገቡን ያስቀምጡ. @@ -3474,7 +3523,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,እባክዎ ያስተካክሉ DocType: Top Bar Item,Top Bar Item,የላይኛው የቤል አይነት ,Role Permissions Manager,የባለቤት ፍቃዶች አስተዳዳሪ -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,ስህተቶች ነበሩ. እባክዎ ይህን ሪፖርት ያድርጉ. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ዓመቱ (ዓመታት) በፊት apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,ሴት DocType: System Settings,OTP Issuer Name,ኦቲፒ ስም አጻጻፍ ስም apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,To Do To Add @@ -3574,6 +3623,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","ቋን apps/frappe/frappe/model/document.py,none of,ምንም DocType: Desktop Icon,Page,ገጽ DocType: Workflow State,plus-sign,ተጨማሪ-ምልክት +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,መሸጎጫ እና ድጋሚ አስቀምጥ apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,ማዘመን አይችልም: ትክክል ያልሆነ / ጊዜው ያለፈበት አገናኝ. DocType: Kanban Board Column,Yellow,ቢጫ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),በፍርግርግ ውስጥ ለመስክ ለምደባ መስመሮች ብዛት (በጠቅላላው ዓምድ ውስጥ ያሉት ጠቅላላ አምዶች ከ 11 ያነሱ መሆን አለባቸው) @@ -3588,6 +3638,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,ኒ DocType: Activity Log,Date,ቀን DocType: Communication,Communication Type,የግንኙነት አይነት apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,ወላጅ ሰንጠረዥ +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,ዝርዝር ወደላይ አስስ DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,ሙሉ ስህተቶችን አሳይ እና ችግሮችን ለገንቢ ሪፖርት ይፍቀዱ DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3609,7 +3660,6 @@ DocType: Notification Recipient,Email By Role,በኢሜይል በኢሜይል apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,ከ {0} ተመዝጋቢዎች በላይ ለማከል እባክዎ ያሻሽሉ apps/frappe/frappe/email/queue.py,This email was sent to {0},ይህ ኢሜይል ወደ {0} ተልኳል DocType: User,Represents a User in the system.,በስርዓቱ ውስጥ ተጠቃሚን ይወክላል. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},ገጽ {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,አዲስ ቅርጸት ይጀምሩ apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,አስተያየት አክል apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} of {1} diff --git a/frappe/translations/ar.csv b/frappe/translations/ar.csv index 523bf174d4..b52edd6f9b 100644 --- a/frappe/translations/ar.csv +++ b/frappe/translations/ar.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,تمكين التدرجات DocType: DocType,Default Sort Order,ترتيب الافتراضي apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,إظهار الحقول الرقمية فقط من التقرير +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,اضغط على مفتاح Alt لتشغيل اختصارات إضافية في القائمة والشريط الجانبي DocType: Workflow State,folder-open,المجلد المفتوح DocType: Customize Form,Is Table,هو الجدول apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,غير قادر على فتح الملف المرفق. هل قمت بتصديره كملف CSV؟ DocType: DocField,No Copy,لا توجد نسخة DocType: Custom Field,Default Value,القيمة الافتراضية apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,إلحاق بـ إلزامي للبريد الوارد +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,مزامنة جهات الاتصال DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,تفاصيل ترحيل البيانات apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,الغاء المتابعة apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",طباعة PDF عبر "طباعة خام" غير مدعومة بعد. يرجى إزالة تعيين الطابعة في إعدادات الطابعة والمحاولة مرة أخرى. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} و {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,كان هناك خطأ في حفظ المرشحات apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,ادخل رقمك السري apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,لا يمكن حذف المجلدات الرئيسية والمرفقات +DocType: Email Account,Enable Automatic Linking in Documents,تمكين الربط التلقائي في المستندات DocType: Contact Us Settings,Settings for Contact Us Page,إعدادات الاتصال بنا الصفحة DocType: Social Login Key,Social Login Provider,مزود تسجيل الدخول الاجتماعي +DocType: Email Account,"For more information, click here.","لمزيد من المعلومات ، انقر هنا ." DocType: Transaction Log,Previous Hash,السابق هاش DocType: Notification,Value Changed,القيمة المتغيرة DocType: Report,Report Type,نوع التقرير @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,قاعدة نقطة الطاقة apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,الرجاء إدخال معرف العميل قبل تمكين تسجيل الدخول الاجتماعي DocType: Communication,Has Attachment,لديها مرفق DocType: User,Email Signature,توقيع البريد الإلكتروني -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} سنة مضت ,Addresses And Contacts,عناوين وجهات الاتصال apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,ستكون لوحة Kanban هذه خاصة DocType: Data Migration Run,Current Mapping,رسم الخرائط الحالي @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).",أنت تقوم بتحديد خيار المزامنة كـ ALL ، وسوف تقوم بإعادة مزامنة الكل \ قراءة وكذلك رسالة غير مقروءة من الخادم. قد يتسبب هذا أيضًا في ازدواجية الاتصالات (رسائل البريد الإلكتروني). apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},آخر مزامنة {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,لا يمكن تغيير محتوى الرأس +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,"

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

" apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,غير مسموح بالتغيير {0} بعد التقديم apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page",تم تحديث التطبيق إلى إصدار جديد ، يرجى تحديث هذه الصفحة DocType: User,User Image,صورة المستخدم @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},وض apps/frappe/frappe/public/js/frappe/chat.js,Discard,تجاهل DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,حدد صورة بعرض تقريبي 150 بكسل مع خلفية شفافة للحصول على أفضل النتائج. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,انتكس +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} القيم المحددة DocType: Blog Post,Email Sent,أرسل البريد الإلكتروني DocType: Communication,Read by Recipient On,قراءة بواسطة مستلم على DocType: User,Allow user to login only after this hour (0-24),السماح للمستخدم بتسجيل الدخول فقط بعد هذه الساعة (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,وحدة للتصدير DocType: DocType,Fields,مجالات -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,غير مسموح لك بطباعة هذا المستند +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,غير مسموح لك بطباعة هذا المستند apps/frappe/frappe/public/js/frappe/model/model.js,Parent,الأبوين apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.",انتهت جلستك ، يرجى تسجيل الدخول مرة أخرى للمتابعة. DocType: Assignment Rule,Priority,أفضلية @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,إعادة تعي DocType: DocType,UPPER CASE,الأحرف الكبيرة apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,يرجى ضبط عنوان البريد الإلكتروني DocType: Communication,Marked As Spam,تم وضع علامة عليها كغير مرغوب فيها +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,عنوان البريد الإلكتروني الذي سيتم مزامنة جهات اتصال Google الخاصة به. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,استيراد المشتركين apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,حفظ فلتر DocType: Address,Preferred Shipping Address,عنوان الشحن المفضل DocType: GCalendar Account,The name that will appear in Google Calendar,الاسم الذي سيظهر في تقويم Google +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,انقر فوق {0} لإنشاء تحديث الرمز المميز. DocType: Email Account,Disable SMTP server authentication,تعطيل مصادقة خادم SMTP DocType: Email Account,Total number of emails to sync in initial sync process ,إجمالي عدد رسائل البريد الإلكتروني المطلوب مزامنتها في عملية المزامنة الأولية DocType: System Settings,Enable Password Policy,تمكين سياسة كلمة المرور @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,أدخل الرمز apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,ليس في DocType: Auto Repeat,Start Date,تاريخ البدء apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,تعيين الرسم البياني +DocType: Website Theme,Theme JSON,موضوع JSON apps/frappe/frappe/www/list.py,My Account,حسابي DocType: DocType,Is Published Field,يتم نشر الحقل DocType: DocField,Set non-standard precision for a Float or Currency field,قم بتعيين الدقة غير القياسية لحقل العملة أو العملة @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: إضافة Reference: {{ reference_doctype }} {{ reference_name }} لإرسال مرجع المستند DocType: LDAP Settings,LDAP First Name Field,حقل الاسم الأول LDAP apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,إرسال و بريد افتراضي -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,الإعداد> تخصيص النموذج apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",للتحديث ، يمكنك تحديث الأعمدة الانتقائية فقط. apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',يجب أن يكون نوع الحقل "التحقق" الافتراضي إما "0" أو "1" apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,مشاركة هذا المستند مع @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,المجالات HTML DocType: Blog Settings,Blog Settings,إعدادات بلوق apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores",يجب أن يبدأ اسم DocType بحرف ويمكن أن يتكون فقط من أحرف وأرقام ومسافات وشرطات سفلية +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,الإعداد> أذونات المستخدم DocType: Communication,Integrations can use this field to set email delivery status,يمكن للتكامل استخدام هذا الحقل لتعيين حالة تسليم البريد الإلكتروني apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,إعدادات بوابة الدفع الشريطية DocType: Print Settings,Fonts,الخطوط DocType: Notification,Channel,قناة DocType: Communication,Opened,افتتح DocType: Workflow Transition,Conditions,الظروف +apps/frappe/frappe/config/website.py,A user who posts blogs.,مستخدم ينشر المدونات. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,ليس لديك حساب؟ سجل apps/frappe/frappe/utils/file_manager.py,Added {0},تمت الإضافة {0} DocType: Newsletter,Create and Send Newsletters,إنشاء وإرسال النشرات الإخبارية DocType: Website Settings,Footer Items,عناصر تذييل الصفحة +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,يرجى إعداد حساب البريد الإلكتروني الافتراضي من الإعداد> البريد الإلكتروني> حساب البريد الإلكتروني DocType: Website Slideshow Item,Website Slideshow Item,البند عرض الشرائح الموقع apps/frappe/frappe/config/integrations.py,Register OAuth Client App,تسجيل تطبيق عميل OAuth DocType: Error Snapshot,Frames,إطارات @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.",المستوى 0 مخصص لأذونات مستوى المستند ، \ مستويات أعلى لأذونات مستوى الحقل. DocType: Address,City/Town,المدينة / البلدة DocType: Email Account,GMail,بريد جوجل -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?",سيؤدي هذا إلى إعادة تعيين المظهر الحالي ، هل تريد بالتأكيد المتابعة؟ apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},الحقول الإلزامية مطلوبة في {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},خطأ أثناء الاتصال بحساب البريد الإلكتروني {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,حدث خطأ أثناء تكوين متكرر @@ -528,7 +537,7 @@ DocType: Event,Event Category,فئة الحدث apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,الأعمدة على أساس apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,تحرير العنوان DocType: Communication,Received,تم الاستلام -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,غير مسموح لك بالوصول إلى هذه الصفحة. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,غير مسموح لك بالوصول إلى هذه الصفحة. DocType: User Social Login,User Social Login,تسجيل دخول المستخدم الاجتماعي apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,اكتب ملف Python في نفس المجلد حيث يتم حفظه وأرجع العمود والنتيجة. DocType: Contact,Purchase Manager,مدير مشتريات @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,تك apps/frappe/frappe/utils/data.py,Operator must be one of {0},يجب أن يكون المشغل واحدًا من {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,إذا المالك DocType: Data Migration Run,Trigger Name,اسم الزناد -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,اكتب العناوين والمقدمات في مدونتك. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,إزالة الحقل apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,انهيار جميع apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,لون الخلفية @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,شريط DocType: SMS Settings,Enter url parameter for message,أدخل معلمة عنوان url للرسالة apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,تنسيق طباعة مخصص جديد apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} موجود بالفعل +DocType: Workflow Document State,Is Optional State,هو الدولة اختياري DocType: Address,Purchase User,شراء المستخدم DocType: Data Migration Run,Insert,إدراج DocType: Web Form,Route to Success Link,الطريق إلى رابط النجاح @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,اسم DocType: File,Is Home Folder,هو مجلد المنزل apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,نوع: DocType: Post,Is Pinned,مثبت -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},ليس هناك إذن لـ '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},ليس هناك إذن لـ '{0}' {1} DocType: Patch Log,Patch Log,سجل التصحيح DocType: Print Format,Print Format Builder,منشئ تنسيق الطباعة 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 باستخدام المصادقة الثنائية. يمكن أيضًا تعيين هذا فقط لمستخدم (مستخدمين) معينين في صفحة المستخدم apps/frappe/frappe/utils/data.py,only.,فقط. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,الشرط '{0}' غير صالح DocType: Auto Email Report,Day of Week,يوم من الأسبوع +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,تمكين Google API في إعدادات Google. DocType: DocField,Text Editor,محرر النص apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,يقطع apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,بحث أو اكتب أمر @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,لا يمكن أن يكون عدد النسخ الاحتياطية DB أقل من 1 DocType: Workflow State,ban-circle,حظر دائرة DocType: Data Export,Excel,تفوق +DocType: Web Page,"Header, Breadcrumbs and Meta Tags",رأس ، فتات الخبز والميتا العلامات apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,دعم عنوان البريد الإلكتروني غير محدد DocType: Comment,Published,نشرت DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.",ملاحظة: للحصول على أفضل النتائج ، يجب أن تكون الصور بنفس الحجم والعرض يجب أن يكون أكبر من الارتفاع. @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,جدولة الحدث الأخير apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,تقرير بجميع مشاركات المستند DocType: Website Sidebar Item,Website Sidebar Item,موقع الشريط الجانبي البند apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,لكى يفعل +DocType: Google Settings,Google Settings,إعدادات جوجل apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency",حدد بلدك والمنطقة الزمنية والعملة DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)",أدخل معلمات عنوان url الثابت هنا (على سبيل المثال ، المرسل = ERPNext ، اسم المستخدم = ERPNext ، كلمة المرور = 1234 وما إلى ذلك) apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,لا يوجد حساب بريد الكتروني @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,رمز حامل OAuth ,Setup Wizard,معالج الاعداد apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,تبديل الرسم البياني +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,المزامنة DocType: Data Migration Run,Current Mapping Action,عمل رسم الخرائط الحالي DocType: Email Account,Initial Sync Count,عدد المزامنة الأولية apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,إعدادات الاتصال بنا الصفحة. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,نوع تنسيق الطباعة apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,لم يتم تعيين أذونات لهذه المعايير. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,توسيع الكل +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,لم يتم العثور على قالب عنوان افتراضي. يرجى إنشاء واحدة جديدة من الإعداد> الطباعة والعلامة التجارية> قالب العنوان. DocType: Tag Doc Category,Tag Doc Category,علامة الوثيقة الفئة DocType: Data Import,Generated File,ملف تم إنشاؤه apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,ملاحظات @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,يجب أن يكون حقل الخط الزمني رابطًا أو ارتباطًا ديناميكيًا DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,سيتم إرسال الإشعارات والرسائل الجماعية من هذا الخادم الصادر. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,هذه كلمة مرور مشتركة من أفضل 100 كلمة. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,تقديم دائم {0}؟ +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,تقديم دائم {0}؟ apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge",{0} {1} غير موجود ، حدد هدفًا جديدًا لدمجه DocType: Energy Point Rule,Multiplier Field,حقل المضاعف DocType: Workflow,Workflow State Field,مجال العمل سير العمل @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} قدر عملك على {1} بنقاط {2} DocType: Auto Email Report,Zero means send records updated at anytime,الصفر يعني إرسال السجلات المحدثة في أي وقت apps/frappe/frappe/model/document.py,Value cannot be changed for {0},لا يمكن تغيير القيمة لـ {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,إعدادات واجهة برمجة تطبيقات Google. DocType: System Settings,Force User to Reset Password,إجبار المستخدم على إعادة تعيين كلمة المرور apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,تتم إدارة تقارير منشئ التقارير مباشرة بواسطة منشئ التقارير. لا شيء لأفعله. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,تحرير مرشح @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,ل DocType: S3 Backup Settings,eu-north-1,الاتحاد الأوروبي الشمالي-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}",{0}: قاعدة واحدة فقط مسموح بها بنفس الدور والمستوى و {1} apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,غير مسموح لك بتحديث وثيقة نموذج الويب هذه -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,تم الوصول إلى الحد الأقصى للمرفق لهذا السجل. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,تم الوصول إلى الحد الأقصى للمرفق لهذا السجل. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,يرجى التأكد من أن مستندات الاتصالات المرجعية ليست مرتبطة بشكل دائري. DocType: DocField,Allow in Quick Entry,السماح في الدخول السريع DocType: Error Snapshot,Locals,السكان المحليين @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,نوع الاستثناء apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},لا يمكن الحذف أو الإلغاء لأن {0} {1} مرتبط بـ {2} {3} {4} apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,لا يمكن إعادة تعيين سر OTP إلا بواسطة المسؤول. -DocType: Web Form Field,Page Break,فاصل صفحة DocType: Website Script,Website Script,سيناريو الموقع DocType: Integration Request,Subscription Notification,إشعار الاشتراك DocType: DocType,Quick Entry,دخول سريع @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,تعيين خاصية بعد ال apps/frappe/frappe/__init__.py,Thank you,شكرا لكم apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,سلاك Webhooks للتكامل الداخلي apps/frappe/frappe/config/settings.py,Import Data,بيانات الاستيراد +DocType: Translation,Contributed Translation Doctype Name,ساهم في الترجمة الترجمة DocType: Social Login Key,Office 365,مكتب 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,هوية شخصية DocType: Review Level,Review Level,مراجعة المستوى @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,فعلت بنجاح apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} قائمة apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,يستفسر -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),جديد {0} (Ctrl + B) DocType: Contact,Is Primary Contact,هو الاتصال الأساسي DocType: Print Format,Raw Commands,أوامر الخام apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,أوراق أنماط لتنسيقات الطباعة @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,أخطاء في أ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},البحث عن {0} في {1} DocType: Email Account,Use SSL,استخدام SSL DocType: DocField,In Standard Filter,في تصفية قياسي +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,لا جهات اتصال Google موجودة للمزامنة. DocType: Data Migration Run,Total Pages,إجمالي الصفحات apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: لا يمكن تعيين الحقل '{1}' على أنه فريد لأنه يحتوي على قيم غير فريدة DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.",في حالة التمكين ، سيتم إعلام المستخدمين في كل مرة يقومون فيها بتسجيل الدخول. في حالة عدم التمكين ، سيتم إعلام المستخدمين مرة واحدة فقط. @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,التشغيل الآلي apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,فك ضغط الملفات ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',ابحث عن '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,هناك خطأ ما -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,يرجى حفظ قبل إرفاق. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,يرجى حفظ قبل إرفاق. DocType: Version,Table HTML,جدول HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,المركز رئيسي DocType: Page,Standard,اساسي @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,لا نتا apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} تم حذف السجلات apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,حدث خطأ ما أثناء إنشاء رمز وصول إلى المربع المنسدل. يرجى التحقق من سجل الأخطاء لمزيد من التفاصيل. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,أحفاد -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,لم يتم العثور على قالب عنوان افتراضي. يرجى إنشاء واحدة جديدة من الإعداد> الطباعة والعلامة التجارية> قالب العنوان. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,تم تكوين جهات اتصال Google. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,أخف التفاصيل apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,أنماط الخط apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,سوف ينتهي اشتراكك في {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},أخفقت المصادقة أثناء تلقي رسائل البريد الإلكتروني من حساب البريد الإلكتروني {0}. رسالة من الخادم: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),الإحصائيات بناءً على أداء الأسبوع الماضي (من {0} إلى {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,لا يمكن تنشيط الربط التلقائي إلا إذا تم تمكين الوارد. DocType: Website Settings,Title Prefix,بادئة العنوان apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,تطبيقات المصادقة التي يمكنك استخدامها هي: DocType: Bulk Update,Max 500 records at a time,ماكس 500 السجلات في وقت واحد @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,تقرير المرشحات apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,حدد الأعمدة DocType: Event,Participants,المشاركين DocType: Auto Repeat,Amended From,معدلة من -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,تم تقديم المعلومات الخاصة بك +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,تم تقديم المعلومات الخاصة بك DocType: Help Category,Help Category,فئة المساعدة apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,شهر واحد apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,حدد تنسيق موجود لتحرير أو بدء تنسيق جديد. @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,حقل لتعقب DocType: User,Generate Keys,توليد المفاتيح DocType: Comment,Unshared,غير مشترك -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,تم الحفظ +DocType: Translation,Saved,تم الحفظ DocType: OAuth Client,OAuth Client,عميل OAuth DocType: System Settings,Disable Standard Email Footer,تعطيل تذييل البريد الإلكتروني القياسي apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,تم تعطيل تنسيق الطباعة {0} @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,آخر تحد DocType: Data Import,Action,عمل apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,مفتاح العميل مطلوب DocType: Chat Profile,Notifications,إخطارات +DocType: Translation,Contributed,ساهم DocType: System Settings,mm/dd/yyyy,مم / يوم / سنة DocType: Report,Custom Report,تقرير مخصص DocType: Workflow State,info-sign,معلومات تسجيل الدخول @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,اتصل DocType: LDAP Settings,LDAP Username Field,حقل اسم المستخدم LDAP apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",لا يمكن تعيين الحقل {0} على أنه فريد في {1} ، حيث توجد قيم غير فريدة موجودة +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,الإعداد> تخصيص النموذج DocType: User,Social Logins,تسجيلات الدخول الاجتماعية DocType: Workflow State,Trash,قمامة، يدمر، يهدم DocType: Stripe Settings,Secret Key,المفتاح السري @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,حقل العنوان apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,لا يمكن الاتصال بخادم البريد الإلكتروني الصادر DocType: File,File URL,ملف URL DocType: Help Article,Likes,الإعجابات +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,تم تعطيل تكامل جهات اتصال Google. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,يجب أن تكون مسجلاً وأن يكون لديك دور System Manager ليكون قادرًا على الوصول إلى النسخ الاحتياطية. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,مستوى اول DocType: Blogger,Short Name,اسم قصير @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,استيراد الرمز البريدي DocType: Contact,Gender,جنس DocType: Workflow State,thumbs-down,استهجن -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},يجب أن تكون قائمة الانتظار واحدة من {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},لا يمكن تعيين إعلام على نوع المستند {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,إضافة إدارة النظام إلى هذا المستخدم لأنه يجب أن يكون هناك على الأقل مدير نظام واحد apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,نرحب البريد الإلكتروني المرسلة DocType: Transaction Log,Chaining Hash,تسلسل تجزئة DocType: Contact,Maintenance Manager,مدير الصيانة +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",للمقارنة ، استخدم> 5 ، <10 أو = 324. للنطاقات ، استخدم 5:10 (للقيم بين 5 و 10). apps/frappe/frappe/utils/bot.py,show,تبين apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,مشاركة URL apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,تنسيق ملف غير معتمد @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,إعلام DocType: Data Import,Show only errors,إظهار الأخطاء فقط DocType: Energy Point Log,Review,إعادة النظر apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,الصفوف إزالتها -DocType: GSuite Settings,Google Credentials,جوجل بيانات الاعتماد +DocType: Google Settings,Google Credentials,جوجل بيانات الاعتماد apps/frappe/frappe/www/login.html,Or login with,أو تسجيل الدخول مع apps/frappe/frappe/model/document.py,Record does not exist,السجل غير موجود apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,اسم تقرير جديد @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,قائمة DocType: Workflow State,th-large,TH-كبير apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: لا يمكن تعيين تعيين إرسال إذا لم يكن مقدمًا apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,غير مرتبط بأي سجل +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","خطأ في الاتصال بـ QZ Tray Application ...

تحتاج إلى تثبيت تطبيق QZ Tray وتشغيله لاستخدام ميزة Raw Print.

انقر هنا لتنزيل وتثبيت QZ Tray .
انقر هنا لمعرفة المزيد عن الطباعة الخام ." DocType: Chat Message,Content,يحتوى DocType: Workflow Transition,Allow Self Approval,السماح بالموافقة الذاتية apps/frappe/frappe/www/qrcode.py,Page has expired!,انتهت صلاحية الصفحة! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,ناحية اليمين DocType: Website Settings,Banner is above the Top Menu Bar.,بانر أعلى شريط القائمة العلوي. apps/frappe/frappe/www/update-password.html,Invalid Password,رمز مرور خاطئ apps/frappe/frappe/utils/data.py,1 month ago,1 قبل شهر +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,السماح بوصول جهات اتصال Google DocType: OAuth Client,App Client ID,معرف عميل التطبيق DocType: DocField,Currency,دقة DocType: Website Settings,Banner,راية @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,هدف DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.",إذا لم يكن لدور إمكانية الوصول في المستوى 0 ، فإن المستويات الأعلى لا معنى لها. DocType: ToDo,Reference Type,نوع مرجع -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!",السماح DocType ، DocType. كن حذرا! +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!",السماح DocType ، DocType. كن حذرا! DocType: Domain Settings,Domain Settings,إعدادات المجال DocType: Auto Email Report,Dynamic Report Filters,مرشحات تقرير ديناميكي DocType: Energy Point Log,Appreciation,تقدير @@ -1468,6 +1489,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,لنا غرب-2 DocType: DocType,Is Single,هو وحيد apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,إنشاء تنسيق جديد +DocType: Google Contacts,Authorize Google Contacts Access,السماح بوصول جهات اتصال Google DocType: S3 Backup Settings,Endpoint URL,عنوان URL لنقطة النهاية DocType: Social Login Key,Google,جوجل DocType: Contact,Department, قسم، أقسام @@ -1482,7 +1504,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,يسند إلى DocType: List Filter,List Filter,قائمة تصفية DocType: Dashboard Chart Link,Chart,خريطة apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,لا يمكن الإزالة -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,إرسال هذا المستند للتأكيد +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,إرسال هذا المستند للتأكيد apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} موجود بالفعل. اختر اسم آخر apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,لديك تغييرات لم يتم حفظها في هذا النموذج. يرجى حفظ قبل المتابعة. apps/frappe/frappe/model/document.py,Action Failed,العمل: فشل @@ -1564,6 +1586,7 @@ DocType: DocField,Display,عرض apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,الرد على الجميع DocType: Calendar View,Subject Field,حقل الموضوع apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},يجب أن يكون انتهاء الجلسة بالتنسيق {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},التطبيق: {0} DocType: Workflow State,zoom-in,التكبير في apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,فشل الاتصال بالخادم apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},يجب أن يكون التاريخ {0} بالتنسيق: {1} @@ -1575,8 +1598,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,سوف تظهر أيقونة على الزر DocType: Role Permission for Page and Report,Set Role For,تعيين دور ل +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,يمكن تنشيط الربط التلقائي فقط لحساب بريد إلكتروني واحد. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,لم يتم تعيين حسابات بريد إلكتروني +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,حساب البريد الإلكتروني لا الإعداد. يرجى إنشاء حساب بريد إلكتروني جديد من الإعداد> البريد الإلكتروني> حساب البريد الإلكتروني apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,مهمة +DocType: Google Contacts,Last Sync On,آخر مزامنة في apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},حصلت عليه {0} عبر القاعدة التلقائية {1} apps/frappe/frappe/config/website.py,Portal,بوابة apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,شكرا لك على بريدك الإلكترونى @@ -1597,7 +1623,6 @@ DocType: GSuite Settings,GSuite Settings,إعدادات GSuite DocType: Integration Request,Remote,التحكم عن بعد DocType: File,Thumbnail URL,عنوان URL المصغر apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,تحميل التقرير -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,الإعداد> المستخدم apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},تم تخصيص التخصيصات {0} إلى:
{1} DocType: GCalendar Account,Calendar Name,اسم التقويم apps/frappe/frappe/templates/emails/new_user.html,Your login id is,معرف تسجيل الدخول الخاص بك هو @@ -1647,6 +1672,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},اذ apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,يجب أن يكون حقل الصورة اسمًا صالحًا للحقل apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,يجب أن تكون مسجلا للدخول إلى هذه الصفحة DocType: Assignment Rule,Example: {{ subject }},مثال: {{topic}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,اسم الحقل {0} مقيد apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},لا يمكنك إلغاء تعيين "للقراءة فقط" للحقل {0} DocType: Social Login Key,Enable Social Login,تمكين تسجيل الدخول الاجتماعي DocType: Workflow,Rules defining transition of state in the workflow.,القواعد التي تحدد انتقال الحالة في سير العمل. @@ -1667,10 +1693,10 @@ DocType: Website Settings,Route Redirects,إعادة توجيه الطريق apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,البريد الوارد apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},تمت استعادة {0} كـ {1} DocType: Assignment Rule,Automatically Assign Documents to Users,تخصيص المستندات تلقائيًا للمستخدمين +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,افتح شريط ممتاز apps/frappe/frappe/config/settings.py,Email Templates for common queries.,قوالب البريد الإلكتروني للاستعلامات الشائعة. DocType: Letter Head,Letter Head Based On,رسالة رئيس بناء على apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,يرجى إغلاق هذه النافذة -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,الدفع تم DocType: Contact,Designation,تعيين DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,العلامات الفوقية @@ -1709,6 +1735,7 @@ DocType: System Settings,Choose authentication method to be used by all users,ا DocType: Error Snapshot,Parent Error Snapshot,خطأ الوالدين لقطة DocType: GCalendar Account,GCalendar Account,حساب GCalendar DocType: Language,Language Name,اسم اللغة +DocType: Workflow Document State,Workflow Action is not created for optional states,لم يتم إنشاء إجراء سير العمل للحالات الاختيارية DocType: Customize Form,Customize Form,تخصيص النموذج DocType: DocType,Image Field,حقل الصورة apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),تمت الإضافة {0} ({1}) @@ -1750,6 +1777,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,طبق هذه القاعدة إذا كان المستخدم هو المالك DocType: About Us Settings,Org History Heading,ORG التاريخ العنوان apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,خطأ في الخادم +DocType: Contact,Google Contacts Description,وصف جهات اتصال Google apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,لا يمكن إعادة تسمية الأدوار القياسية DocType: Review Level,Review Points,مراجعة النقاط apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,المعلمة المفقودة Kanban Board Name @@ -1767,7 +1795,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,ليس في وضع المطور! قم بتعيين في site_config.json أو قم بإنشاء DocType "مخصص". apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,حصل على {0} نقطة DocType: Web Form,Success Message,نجاح رسالة -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",للمقارنة ، استخدم> 5 ، <10 أو = 324. للنطاقات ، استخدم 5:10 (للقيم بين 5 و 10). DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",وصف صفحة القائمة ، بنص عادي ، فقط بضعة أسطر. (140 حرفًا بحد أقصى) apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,إظهار الأذونات DocType: DocType,Restrict To Domain,تقييد على المجال @@ -1789,6 +1816,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,ليس apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,ضبط الكمية DocType: Auto Repeat,End Date,تاريخ الانتهاء DocType: Workflow Transition,Next State,الدولة القادمة +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} مزامنة جهات اتصال Google. DocType: System Settings,Is First Startup,هو بدء التشغيل الأول apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},تم التحديث إلى {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,الانتقال إلى @@ -1838,6 +1866,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} التقويم apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,قالب استيراد البيانات DocType: Workflow State,hand-left,اليسار اليد +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,حدد عناصر قائمة متعددة apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,حجم النسخ الاحتياطي: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},مرتبط بـ {0} DocType: Braintree Settings,Private Key,مفتاح سري @@ -1880,13 +1909,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,فائدة DocType: Bulk Update,Limit,حد DocType: Print Settings,Print taxes with zero amount,اطبع الضرائب بمبلغ صفر -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,حساب البريد الإلكتروني لا الإعداد. يرجى إنشاء حساب بريد إلكتروني جديد من الإعداد> البريد الإلكتروني> حساب البريد الإلكتروني DocType: Workflow State,Book,كتاب DocType: S3 Backup Settings,Access Key ID,معرف مفتاح الوصول DocType: Chat Message,URLs,عناوين apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,من السهل تخمين الأسماء والألقاب. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},تقرير {0} DocType: About Us Settings,Team Members Heading,عنوان أعضاء الفريق +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,حدد عنصر القائمة apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},تم تعيين المستند {0} على الحالة {1} بواسطة {2} DocType: Address Template,Address Template,قالب العنوان DocType: Workflow State,step-backward,خطوة إلى الوراء @@ -1910,6 +1939,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,تصدير أذونات مخصصة apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,بلا: نهاية سير العمل DocType: Version,Version,الإصدار +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,فتح عنصر القائمة apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 اشهر DocType: Chat Message,Group,مجموعة apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},هناك بعض المشكلات في عنوان URL للملف: {0} @@ -1965,6 +1995,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 سنة apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} التراجع عن نقاطك في {1} DocType: Workflow State,arrow-down,السهم للاسفل DocType: Data Import,Ignore encoding errors,تجاهل أخطاء الترميز +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,المناظر الطبيعيه DocType: Letter Head,Letter Head Name,اسم رئيس الرسالة DocType: Web Form,Client Script,النصي العميل DocType: Assignment Rule,Higher priority rule will be applied first,سيتم تطبيق قاعدة الأولوية الأعلى أولاً @@ -2009,6 +2040,7 @@ DocType: Kanban Board Column,Green,أخضر apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,الحقول الإلزامية فقط ضرورية للسجلات الجديدة. يمكنك حذف الأعمدة غير الإلزامية إذا كنت ترغب في ذلك. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.",{0} يجب أن يبدأ وينتهي بحرف ويمكن أن يحتوي فقط على أحرف أو واصلة أو شرطة سفلية. +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,الزناد العمل الأساسي apps/frappe/frappe/core/doctype/user/user.js,Create User Email,إنشاء مستخدم البريد الإلكتروني apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,يجب أن يكون حقل التصنيف {0} اسم مجال صالحًا DocType: Auto Email Report,Filter Meta,تصفية ميتا @@ -2038,6 +2070,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,الجدول الزمني الميداني apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,جار التحميل... DocType: Auto Email Report,Half Yearly,نصف سنوي +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,ملفي apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,وزاهال DocType: Contact,First Name,الاسم الاول DocType: Post,Comments,تعليقات @@ -2060,6 +2093,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,تجزئة المحتوى apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},مشاركات {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} معين {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,لم تتم مزامنة جهات اتصال Google الجديدة. DocType: Workflow State,globe,كره ارضيه apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},متوسط {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,مسح سجلات الأخطاء @@ -2086,6 +2120,8 @@ DocType: Workflow State,Inverse,معكوس DocType: Activity Log,Closed,مغلق DocType: Report,Query,سؤال DocType: Notification,Days After,بعد أيام +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,اختصارات الصفحة +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,صورة apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,الطلب منتهي المدة DocType: System Settings,Email Footer Address,عنوان تذييل البريد الإلكتروني apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,تحديث نقطة الطاقة @@ -2113,6 +2149,7 @@ For Select, enter list of Options, each on a new line.",للارتباطات ، apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,منذ 1 دقيقة apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,لا جلسات نشطة apps/frappe/frappe/model/base_document.py,Row,صف +DocType: Contact,Middle Name,الاسم الوسطى apps/frappe/frappe/public/js/frappe/request.js,Please try again,حاول مرة اخرى DocType: Dashboard Chart,Chart Options,خيارات الرسم البياني DocType: Data Migration Run,Push Failed,فشل الدفع @@ -2141,6 +2178,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,تغيير حجم-صغيرة DocType: Comment,Relinked,إعادة ربط DocType: Role Permission for Page and Report,Roles HTML,أدوار HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,اذهب apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,سير العمل سيبدأ بعد الحفظ. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.",إذا كانت بياناتك بصيغة HTML ، فيرجى نسخ لصق رمز HTML الدقيق مع العلامات. apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,التواريخ غالبا ما تكون سهلة التخمين. @@ -2169,7 +2207,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,أيقونة سطح المكتب apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,ألغيت هذه الوثيقة apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,نطاق الموعد -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,الإعداد> أذونات المستخدم apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} موضع تقدير {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,تغير القيم apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,خطأ في الإخطار @@ -2233,6 +2270,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,حذف بالجملة DocType: DocShare,Document Name,اسم الملف apps/frappe/frappe/config/customization.py,Add your own translations,أضف ترجماتك الخاصة +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,انتقل القائمة لأسفل DocType: S3 Backup Settings,eu-central-1,الاتحاد الأوروبي مركزي-1 DocType: Auto Repeat,Yearly,سنوي apps/frappe/frappe/public/js/frappe/model/model.js,Rename,إعادة تسمية @@ -2283,6 +2321,7 @@ DocType: Workflow State,plane,طائرة apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,خطأ مجموعة متداخلة. يرجى الاتصال بالمسؤول. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,عرض تقرير DocType: Auto Repeat,Auto Repeat Schedule,جدول تكرار السيارات +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,عرض المرجع DocType: Address,Office,مكتب. مقر. مركز DocType: LDAP Settings,StartTLS,STARTTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} أيام @@ -2316,7 +2355,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,ا apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,اعداداتي apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,اسم المجموعة لا يمكن أن يكون فارغا. DocType: Workflow State,road,طريق -DocType: Website Route Redirect,Source,مصدر +DocType: Contact,Source,مصدر apps/frappe/frappe/www/third_party_apps.html,Active Sessions,جلسات نشطة apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,يمكن أن يكون هناك طية واحدة فقط في النموذج apps/frappe/frappe/public/js/frappe/chat.js,New Chat,دردشة جديدة @@ -2338,6 +2377,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,الرجاء إدخال عنوان URL للتفويض DocType: Email Account,Send Notification to,إرسال إشعار إلى apps/frappe/frappe/config/integrations.py,Dropbox backup settings,دروببوإكس إعدادات النسخ الاحتياطي +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,حدث خطأ ما أثناء الجيل المميز. انقر على {0} لإنشاء واحدة جديدة. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,إزالة جميع التخصيصات؟ apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,المسؤول الوحيد يمكنه التعديل DocType: Auto Repeat,Reference Document,وثيقة مرجعية @@ -2362,6 +2402,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,يمكن تعيين الأدوار للمستخدمين من صفحة المستخدم الخاصة بهم. DocType: Website Settings,Include Search in Top Bar,تضمين البحث في Top Bar apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[عاجل] خطأ أثناء إنشاء٪ s متكرر لـ٪ s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,اختصارات العالمية DocType: Help Article,Author,مؤلف DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,لم يتم العثور على وثيقة لمرشحات معينة @@ -2397,10 +2438,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}",{0} ، الصف {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.",إذا كنت تحمّل سجلات جديدة ، تصبح "سلسلة التسمية" إلزامية ، إن وجدت. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,تحرير الخصائص -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,لا يمكن فتح المثيل عندما يكون {0} مفتوحًا +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,لا يمكن فتح المثيل عندما يكون {0} مفتوحًا DocType: Activity Log,Timeline Name,اسم الجدول الزمني DocType: Comment,Workflow,سير العمل apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,يرجى تعيين عنوان URL الأساسي في مفتاح تسجيل الدخول الاجتماعي لـ Frappe +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,اختصارات لوحة المفاتيح DocType: Portal Settings,Custom Menu Items,عناصر القائمة المخصصة apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,يجب أن يتراوح طول {0} بين 1 و 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,فقدت الاتصال. بعض الميزات قد لا تعمل. @@ -2463,6 +2505,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,تمت إض DocType: DocType,Setup,اقامة apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,تم إنشاء {0} بنجاح apps/frappe/frappe/www/update-password.html,New Password,كلمة السر الجديدة +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,اختر المجال apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,اترك هذه المحادثة DocType: About Us Settings,Team Members,أعضاء الفريق DocType: Blog Settings,Writers Introduction,مقدمة الكتاب @@ -2532,13 +2575,12 @@ DocType: Chat Room,Name,اسم DocType: Communication,Email Template,قالب البريد الإلكتروني DocType: Energy Point Settings,Review Levels,مراجعة المستويات DocType: Print Format,Raw Printing,الطباعة الخام -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,لا يمكن فتح {0} عندما يكون مثيله مفتوحًا +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,لا يمكن فتح {0} عندما يكون مثيله مفتوحًا DocType: DocType,"Make ""name"" searchable in Global Search",اجعل "الاسم" قابلاً للبحث في البحث العالمي DocType: Data Migration Mapping,Data Migration Mapping,تعيين ترحيل البيانات DocType: Data Import,Partially Successful,ناجحة جزئيا DocType: Communication,Error,خطأ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},لا يمكن تغيير نوع الحقل من {0} إلى {1} في الصف {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","خطأ في الاتصال بـ QZ Tray Application ...

تحتاج إلى تثبيت تطبيق QZ Tray وتشغيله لاستخدام ميزة Raw Print.

انقر هنا لتنزيل وتثبيت QZ Tray .
انقر هنا لمعرفة المزيد عن الطباعة الخام ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,تصوير apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,تجنب السنوات المرتبطة بك. DocType: Web Form,Allow Incomplete Forms,السماح باستكمال النماذج @@ -2634,7 +2676,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",حدد الهدف = "_blank" لفتحه في صفحة جديدة. DocType: Portal Settings,Portal Menu,قائمة البوابة DocType: Website Settings,Landing Page,الصفحة المقصودة -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,يرجى الاشتراك أو تسجيل الدخول للبدء DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",خيارات الاتصال ، مثل "استعلام المبيعات ، استعلام الدعم" ، إلخ ، في كل سطر جديد أو مفصولة بفواصل. apps/frappe/frappe/twofactor.py,Verfication Code,كود التحقق apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} تم إلغاء اشتراكه بالفعل @@ -2720,6 +2761,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,تعيين خط DocType: Address,Sales User,مبيعات المستخدم apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)",تغيير خصائص الحقل (إخفاء ، للقراءة فقط ، إذن وما إلى ذلك) DocType: Property Setter,Field Name,اسم الحقل +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,زبون DocType: Print Settings,Font Size,حجم الخط DocType: User,Last Password Reset Date,تاريخ إعادة تعيين كلمة المرور الأخيرة DocType: System Settings,Date and Number Format,تنسيق التاريخ والعدد @@ -2785,6 +2827,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,عقدة الم apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,دمج مع القائمة DocType: Blog Post,Blog Intro,مقدمة المدونة apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,ذكر جديد +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,القفز الى الميدان DocType: Prepared Report,Report Name,تقرير اسم apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,يرجى التحديث للحصول على أحدث وثيقة. apps/frappe/frappe/core/doctype/communication/communication.js,Close,قريب @@ -2794,10 +2837,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,هدف DocType: Social Login Key,Access Token URL,الوصول إلى رمز URL apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,يرجى ضبط مفاتيح الوصول إلى Dropbox في تهيئة موقعك +DocType: Google Contacts,Google Contacts,اتصالات جوجل DocType: User,Reset Password Key,إعادة تعيين كلمة المرور الرئيسية apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,تم التعديل بواسطة DocType: User,Bio,السيرة الذاتية apps/frappe/frappe/limits.py,"To renew, {0}.",للتجديد ، {0}. +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,حفظ بنجاح +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,أرسل بريدًا إلكترونيًا إلى {0} لربطه هنا. DocType: File,Folder,مجلد DocType: DocField,Perm Level,بيرم المستوى DocType: Print Settings,Page Settings,إعدادات الصفحة @@ -2827,6 +2873,7 @@ DocType: Workflow State,remove-sign,إزالة تسجيل الدخول DocType: Dashboard Chart,Full,ممتلئ DocType: DocType,User Cannot Create,لا يمكن للمستخدم إنشاء apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,لقد ربحت {0} نقطة +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,الإعداد> المستخدم DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.",إذا قمت بتعيين هذا ، فسيظهر هذا العنصر في قائمة منسدلة أسفل الوالد المحدد. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,لا رسائل البريد الإلكتروني apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,الحقول التالية مفقودة: @@ -2840,13 +2887,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,ع DocType: Web Form,Web Form Fields,حقول نموذج الويب DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,نموذج المستخدم للتحرير على الموقع. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,إلغاء دائم {0}؟ +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,إلغاء دائم {0}؟ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,الخيار 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,المجاميع apps/frappe/frappe/utils/password_strength.py,This is a very common password.,هذه كلمة مرور شائعة جدًا. DocType: Personal Data Deletion Request,Pending Approval,ما زال يحتاج بتصدير apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,تعذر تعيين المستند بشكل صحيح apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},غير مسموح لـ {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,لا توجد قيم لإظهارها DocType: Personal Data Download Request,Personal Data Download Request,طلب تنزيل البيانات الشخصية apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} شارك هذا المستند مع {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},اختر {0} @@ -2862,7 +2910,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},تم إرسال هذا البريد الإلكتروني إلى {0} ونسخه إلى {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,معلومات الدخول خاطئة او كلمة المرور خاطئة DocType: Social Login Key,Social Login Key,مفتاح تسجيل الدخول الاجتماعي -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,يرجى إعداد حساب البريد الإلكتروني الافتراضي من الإعداد> البريد الإلكتروني> حساب البريد الإلكتروني apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,تم حفظ الفلاتر DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",كيف ينبغي تنسيق هذه العملة؟ إذا لم يتم تعيين ، سوف تستخدم افتراضيات النظام apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: تم ضبط {1} على الحالة {2} @@ -2988,6 +3035,7 @@ DocType: User,Location,موقعك apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,لايوجد بيانات DocType: Website Meta Tag,Website Meta Tag,موقع العلامة الوصفية DocType: Workflow State,film,فيلم +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,نسخ إلى الحافظة. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} لم يتم العثور على الإعدادات apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,التسمية إلزامية DocType: Webhook,Webhook Headers,Webhook الرؤوس @@ -3196,7 +3244,7 @@ DocType: Address,Address Line 1,العنوان السطر 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,لنوع المستند apps/frappe/frappe/model/base_document.py,Data missing in table,البيانات مفقودة في الجدول apps/frappe/frappe/utils/bot.py,Could not identify {0},لا يمكن تحديد {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,تم تعديل هذا النموذج بعد تحميله +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,تم تعديل هذا النموذج بعد تحميله apps/frappe/frappe/www/login.html,Back to Login,العودة إلى تسجيل الدخول apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,غير مضبوط DocType: Data Migration Mapping,Pull,سحب. شد @@ -3264,6 +3312,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,الطفل الجدو apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,إعداد حساب البريد الإلكتروني ، الرجاء إدخال كلمة المرور لـ: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,يكتب الكثير في طلب واحد. الرجاء ارسال طلبات أصغر DocType: Social Login Key,Salesforce,قوة المبيعات +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},استيراد {0} من {1} DocType: User,Tile,قرميدة apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} يجب أن تحتوي الغرفة على مستخدم واحد على الأقل. DocType: Email Rule,Is Spam,هو البريد المزعج @@ -3301,7 +3350,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,مجلد عن قرب DocType: Data Migration Run,Pull Update,سحب التحديث apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},مدمج {0} في {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,"

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

" DocType: SMS Settings,Enter url parameter for receiver nos,أدخل معلمة عنوان url الخاصة برقم الاستقبال apps/frappe/frappe/utils/jinja.py,Syntax error in template,خطأ في بناء الجملة في القالب apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,يرجى تعيين قيمة عوامل التصفية في جدول Report Filter. @@ -3314,6 +3362,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.",آسف ، أ DocType: System Settings,In Days,في الايام DocType: Report,Add Total Row,إضافة صف كامل apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,فشل بدء الجلسة +DocType: Translation,Verified,التحقق DocType: Print Format,Custom HTML Help,تعليمات HTML مخصصة DocType: Address,Preferred Billing Address,عنوان الفواتير المفضل apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,مخصص ل @@ -3328,7 +3377,6 @@ DocType: Help Article,Intermediate,متوسط DocType: Module Def,Module Name,اسم وحدة DocType: OAuth Authorization Code,Expiration time,تاريخ انتهاء الصلاحية apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.",ضبط التنسيق الافتراضي ، حجم الصفحة ، نمط الطباعة ، إلخ. -apps/frappe/frappe/desk/like.py,You cannot like something that you created,لا يمكنك أن تحب شيئًا قمت بإنشائه DocType: System Settings,Session Expiry,انتهاء الجلسة DocType: DocType,Auto Name,اسم السيارات apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,حدد المرفقات @@ -3356,6 +3404,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,صفحة النظام DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,ملاحظة: يتم إرسال رسائل البريد الإلكتروني الافتراضية لعمليات النسخ الاحتياطي الفاشلة افتراضيًا. DocType: Custom DocPerm,Custom DocPerm,عرف DocPerm +DocType: Translation,PR sent,أرسلت العلاقات العامة DocType: Tag Doc Category,Doctype to Assign Tags,Doctype لتعيين العلامات DocType: Address,Warehouse,مستودع apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,إعداد Dropbox @@ -3423,7 +3472,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Enter لإضافة تعليق apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,الحقل {0} غير قابل للتحديد. DocType: User,Birth Date,تاريخ الولادة -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,مع المسافة البادئة المجموعة DocType: List View Setting,Disable Count,تعطيل العد DocType: Contact Us Settings,Email ID,عنوان الايميل apps/frappe/frappe/utils/password.py,Incorrect User or Password,مستخدم غير صحيح أو كلمة المرور @@ -3458,6 +3506,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,يقوم هذا الدور بتحديث أذونات المستخدم للمستخدم DocType: Website Theme,Theme,موضوع DocType: Web Form,Show Sidebar,إظهار الشريط الجانبي +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,اتصالات جوجل التكامل. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,البريد الوارد الافتراضي apps/frappe/frappe/www/login.py,Invalid Login Token,رمز تسجيل الدخول غير صالح apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,قم أولاً بتعيين الاسم وحفظ السجل. @@ -3485,7 +3534,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,يرجى تصحيح DocType: Top Bar Item,Top Bar Item,أعلى شريط البند ,Role Permissions Manager,مدير أذونات الدور -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,كانت هناك أخطاء. يرجى الإبلاغ عن هذا. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} سنة مضت apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,إناثا DocType: System Settings,OTP Issuer Name,اسم مصدر OTP apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,أضف إلى القيام به @@ -3585,6 +3634,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings",إعد apps/frappe/frappe/model/document.py,none of,لا شيء من DocType: Desktop Icon,Page,صفحة DocType: Workflow State,plus-sign,علامة زائد +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,مسح ذاكرة التخزين المؤقت وتحديث apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,لا يمكن التحديث: رابط غير صحيح / منتهي الصلاحية. DocType: Kanban Board Column,Yellow,الأصفر DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),عدد أعمدة حقل في الشبكة (يجب أن يكون إجمالي الأعمدة في الشبكة أقل من 11) @@ -3599,6 +3649,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,مج DocType: Activity Log,Date,تاريخ DocType: Communication,Communication Type,نوع الاتصال apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,الجدول الرئيسي +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,انتقل القائمة لأعلى DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,إظهار الخطأ الكامل والسماح بالإبلاغ عن المشكلات للمطور DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3620,7 +3671,6 @@ DocType: Notification Recipient,Email By Role,البريد الإلكتروني apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,الرجاء الترقية لإضافة أكثر من {0} مشترك apps/frappe/frappe/email/queue.py,This email was sent to {0},تم إرسال هذا البريد الإلكتروني إلى {0} DocType: User,Represents a User in the system.,يمثل المستخدم في النظام. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},الصفحة {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,بدء تنسيق جديد apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,اضف تعليق apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} من {1} diff --git a/frappe/translations/bg.csv b/frappe/translations/bg.csv index df1d56d770..2bcaa08b12 100644 --- a/frappe/translations/bg.csv +++ b/frappe/translations/bg.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Активиране на градиентите DocType: DocType,Default Sort Order,По подразбиране сортиране apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Показани са само числови полета от Отчета +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,"Натиснете клавиша Alt, за да активирате допълнителни преки пътища в менюто и страничната лента" DocType: Workflow State,folder-open,папка-отворен DocType: Customize Form,Is Table,Е таблица apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Прикаченият файл не може да се отвори. Изнесете ли го като CSV? DocType: DocField,No Copy,Няма копие DocType: Custom Field,Default Value,Стойност по подразбиране apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Append To е задължително за входящи писма +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Синхронизиране на контактите DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Подробности за картографиране на миграцията на данни apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Не следвай apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.","Печатането на PDF чрез „Raw Print“ все още не се поддържа. Моля, премахнете картографирането на принтера в Настройки на принтера и опитайте отново." @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} и {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,При запазването на филтрите възникна грешка apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Въведете паролата си apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Папките за начало и прикачени файлове не могат да бъдат изтрити +DocType: Email Account,Enable Automatic Linking in Documents,Активиране на автоматичното свързване в документи DocType: Contact Us Settings,Settings for Contact Us Page,Настройки за страницата за връзка с нас DocType: Social Login Key,Social Login Provider,Доставчик на социални услуги +DocType: Email Account,"For more information, click here.","За повече информация кликнете тук ." DocType: Transaction Log,Previous Hash,Предишен хеш DocType: Notification,Value Changed,Променена стойност DocType: Report,Report Type,Тип отчет @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Правило за енергий apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,"Моля, въведете Идентификационния номер на клиента преди активирането на социалното влизане" DocType: Communication,Has Attachment,Има прикачен файл DocType: User,Email Signature,Подпис по имейл -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} преди година / и ,Addresses And Contacts,Адреси и контакти apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Този съвет на Канбан ще бъде частен DocType: Data Migration Run,Current Mapping,Текущо картографиране @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Избирате Опция за синхронизация като ВСИЧКИ, той ще ресинхронизира всички четене, както и непрочетено съобщение от сървъра. Това може да доведе и до дублиране на съобщения (имейли)." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Последна синхронизация {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Не може да се промени съдържанието на заглавието +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Не е разрешено да се промени {0} след подаването apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Приложението бе актуализирано до нова версия. Моля, опреснете тази страница" DocType: User,User Image,Изображение на потребителя @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Ма apps/frappe/frappe/public/js/frappe/chat.js,Discard,Изхвърлете DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,За най-добри резултати изберете изображение с ширина около 150 пиксела с прозрачен фон. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,рецидивирал +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Избрани са {0} стойности DocType: Blog Post,Email Sent,Имейлът е изпратен DocType: Communication,Read by Recipient On,Четене от получателя Вкл DocType: User,Allow user to login only after this hour (0-24),Да се разреши на потребителя да влезе само след този час (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Модул за експортиране DocType: DocType,Fields,Полетата -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Нямате право да отпечатвате този документ +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Нямате право да отпечатвате този документ apps/frappe/frappe/public/js/frappe/model/model.js,Parent,родител apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Сесията ви е изтекла, моля, влезте отново, за да продължите." DocType: Assignment Rule,Priority,приоритет @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Нулирайте DocType: DocType,UPPER CASE,ГЛАВНА БУКВА apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,"Моля, задайте имейл адрес" DocType: Communication,Marked As Spam,Маркирана като спам +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"Адрес на електронна поща, чиито Google Контакти да се синхронизират." apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Импортиране на абонати apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Запазване на филтъра DocType: Address,Preferred Shipping Address,Предпочитан адрес за доставка DocType: GCalendar Account,The name that will appear in Google Calendar,"Името, което ще се показва в Google Календар" +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Кликнете върху {0} за генериране на Refresh Token. DocType: Email Account,Disable SMTP server authentication,Деактивирайте удостоверяването на SMTP сървъра DocType: Email Account,Total number of emails to sync in initial sync process ,Общ брой имейли за синхронизиране при първоначалния процес на синхронизиране DocType: System Settings,Enable Password Policy,Активиране на правилата за паролите @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Вмъкване на код apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Не в DocType: Auto Repeat,Start Date,Начална дата apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Задаване на диаграма +DocType: Website Theme,Theme JSON,Тема JSON apps/frappe/frappe/www/list.py,My Account,Моята сметка DocType: DocType,Is Published Field,Публикувано е поле DocType: DocField,Set non-standard precision for a Float or Currency field,Задайте нестандартна точност за поле Float или Currency @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Добавете Reference: {{ reference_doctype }} {{ reference_name }} да изпратите препратка към документ DocType: LDAP Settings,LDAP First Name Field,Поле за име на LDAP apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Стандартно изпращане и входяща поща -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Настройка> Персонализиране на формуляр apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",За актуализиране можете да актуализирате само селективни колони. apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',По подразбиране за полето „Проверка“ трябва да има „0“ или „1“ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Споделете този документ с @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Домейни HTML DocType: Blog Settings,Blog Settings,Настройки на блога apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Името на DocType трябва да започва с буква и може да се състои само от букви, цифри, интервали и долни черти" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Настройка> Потребителски разрешения DocType: Communication,Integrations can use this field to set email delivery status,"Интеграциите могат да използват това поле, за да зададат статус за доставка на имейл" apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Настройки за платен шлюз за лента DocType: Print Settings,Fonts,Fonts DocType: Notification,Channel,канал DocType: Communication,Opened,Отворен DocType: Workflow Transition,Conditions,условия +apps/frappe/frappe/config/website.py,A user who posts blogs.,"Потребител, който публикува блогове." apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Нямате профил? Регистрирай се apps/frappe/frappe/utils/file_manager.py,Added {0},Добавено {0} DocType: Newsletter,Create and Send Newsletters,Създаване и изпращане на бюлетини DocType: Website Settings,Footer Items,Елементи от долния колонтитул +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,"Моля, настройте имейл акаунта по подразбиране от Настройка> Имейл> Имейл акаунт" DocType: Website Slideshow Item,Website Slideshow Item,Уебсайт Slideshow елемент apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Регистрирайте приложението OAuth за клиенти DocType: Error Snapshot,Frames,Рамки @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Ниво 0 е за разрешения на ниво документ, по-високи нива за разрешения на ниво област." DocType: Address,City/Town,Град / Село DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Това ще възстанови текущата ви тема, сигурни ли сте, че искате да продължите?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},"Задължителните полета, изисквани в {0}" apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Грешка при свързване с имейл акаунт {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Възникна грешка при създаването на повтарящи се @@ -528,7 +537,7 @@ DocType: Event,Event Category,Категория на събитието apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Колони въз основа на apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Редактиране на заглавието DocType: Communication,Received,приет -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Нямате достъп до тази страница. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Нямате достъп до тази страница. DocType: User Social Login,User Social Login,Социална регистрация на потребителя apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,"Напишете Python файл в същата папка, където се записва и се връща колона и резултат." DocType: Contact,Purchase Manager,Мениджър за покупка @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Ко apps/frappe/frappe/utils/data.py,Operator must be one of {0},Операторът трябва да е от {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Ако е собственик DocType: Data Migration Run,Trigger Name,Име на задействане -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Напишете заглавия и въведения в блога си. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Премахване на полето apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Свиване на всички apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Цвят на фона @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,бар DocType: SMS Settings,Enter url parameter for message,Въведете URL адреса за съобщение apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Нов персонализиран формат за печат apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} вече съществува +DocType: Workflow Document State,Is Optional State,Е избираема държава DocType: Address,Purchase User,Покупка на потребител DocType: Data Migration Run,Insert,Insert DocType: Web Form,Route to Success Link,Връзка за път към успеха @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Пот DocType: File,Is Home Folder,Е начална папка apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Тип: DocType: Post,Is Pinned,Прикрепен е -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Няма разрешение за „{0}“ {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Няма разрешение за „{0}“ {1} DocType: Patch Log,Patch Log,Патч дневник DocType: Print Format,Print Format Builder,Създател на формат за печат 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 адрес, използвайки Autof. Това може да бъде зададено само за конкретни потребители в Потребителска страница" apps/frappe/frappe/utils/data.py,only.,само. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,Условието „{0}“ е невалидно DocType: Auto Email Report,Day of Week,Ден на седмицата +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Активирайте Google API в настройките на Google. DocType: DocField,Text Editor,Редактор на текст apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Разрез apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Търсете или въведете команда @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,Броят на резервните копия на БД не може да бъде по-малък от 1 DocType: Workflow State,ban-circle,забрана-кръг DocType: Data Export,Excel,Excel +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Header, Breadcrumbs и мета тагове" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Поддържащ имейл адрес не е посочен DocType: Comment,Published,Публикуван DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.",Забележка: За най-добри резултати изображенията трябва да са с еднакъв размер и ширина трябва да са по-големи от височината. @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Последно събитие н apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Докладване на всички акции DocType: Website Sidebar Item,Website Sidebar Item,Позиция на страничната лента на уебсайта apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Да направя +DocType: Google Settings,Google Settings,Настройки на Google apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Изберете вашата страна, часова зона и валута" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Въведете статични параметри на URL адреса тук (напр. Sender = ERPNext, потребителско име = ERPNext, парола = 1234 и т.н.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Без имейл акаунт @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,Знак за приносител ,Setup Wizard,Съветник за настройка apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Превключване на диаграма +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,Синхронизирането DocType: Data Migration Run,Current Mapping Action,Текущо действие за свързване DocType: Email Account,Initial Sync Count,Първоначален брой на синхронизиране apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Настройки за страницата за връзка с нас. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Тип на печатния формат apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,За тези критерии не са зададени разрешения. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Разширяване на всички +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Не е намерен стандартния шаблон за адрес. Моля, създайте нова от Настройка> Печат и брандинг> Шаблон за адрес." DocType: Tag Doc Category,Tag Doc Category,Категория Doc на етикет DocType: Data Import,Generated File,Генериран файл apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,бележки @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Полето Timeline трябва да бъде връзка или динамична връзка DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Известията и общите писма ще бъдат изпратени от този изходящ сървър. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Това е най-популярната обща парола. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Постоянно изпращане {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Постоянно изпращане {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} не съществува, изберете нова цел за обединяване" DocType: Energy Point Rule,Multiplier Field,Поле за множител DocType: Workflow,Workflow State Field,Поле за състояние на работния процес @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} оценява работата ви в {1} с {2} точки DocType: Auto Email Report,Zero means send records updated at anytime,"Нула означава изпращане на записи, актуализирани по всяко време" apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Стойността не може да бъде променена за {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Настройки на Google API. DocType: System Settings,Force User to Reset Password,Принуждавайте потребителя да възстанови паролата apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Отчетите на Builder на отчети се управляват директно от съставителя на отчети. Нищо за правене. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Редактиране на филтъра @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,за DocType: S3 Backup Settings,eu-north-1,ес-север-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Само едно правило е разрешено с една и съща роля, ниво и {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Нямате право да актуализирате този документ на уеб формуляр -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Достигнат е максималният лимит на прикачен файл за този запис. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Достигнат е максималният лимит на прикачен файл за този запис. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,"Моля, уверете се, че Документите за справочни съобщения не са кръгообразно свързани." DocType: DocField,Allow in Quick Entry,Разрешаване в бързо влизане DocType: Error Snapshot,Locals,Местните жители @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Тип изключение apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},"Не може да се изтрие или анулира, защото {0} {1} е свързан с {2} {3} {4}" apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTP секрет може да бъде нулиран само от администратора. -DocType: Web Form Field,Page Break,Разделител на страница DocType: Website Script,Website Script,Скрипт на уебсайта DocType: Integration Request,Subscription Notification,Уведомление за абонамент DocType: DocType,Quick Entry,Бързо въвеждане @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,Задайте свойство apps/frappe/frappe/__init__.py,Thank you,Благодаря ти apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Слаби Webhooks за вътрешна интеграция apps/frappe/frappe/config/settings.py,Import Data,Импортиране на данни +DocType: Translation,Contributed Translation Doctype Name,Преведено име на Doctype за превод DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,документ за самоличност DocType: Review Level,Review Level,Ниво на преглед @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Успешно завършено apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Списък apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,ценя -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Ново {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Основен контакт DocType: Print Format,Raw Commands,Сурови команди apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Стилове за формати за печат @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Грешки въ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Намерете {0} в {1} DocType: Email Account,Use SSL,Използвайте SSL DocType: DocField,In Standard Filter,В стандартен филтър +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Няма синхронизирани Google Контакти. DocType: Data Migration Run,Total Pages,Общо страници apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,"{0}: Полето „{1}“ не може да бъде зададено като уникално, тъй като има неединни стойности" DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Ако е активирано, потребителите ще бъдат уведомявани всеки път, когато се регистрират. Ако не е активирано, потребителите ще бъдат уведомени само веднъж." @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,Автоматизация apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Разкопчаване на файлове ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Търсете '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Нещо се обърка -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,"Моля, запазете, преди да прикачите." +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,"Моля, запазете, преди да прикачите." DocType: Version,Table HTML,HTML таблица apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,главина DocType: Page,Standard,стандарт @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Няма р apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} записа са изтрити apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,"Нещо се обърка при генерирането на маркера за достъп до Dropbox. Моля, проверете журнала за грешки за повече подробности." apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Потомци на -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Не е намерен стандартния шаблон за адрес. Моля, създайте нова от Настройка> Печат и брандинг> Шаблон за адрес." +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Контакти са конфигурирани. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Скриване на подробности apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Стилове на шрифтове apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Вашият абонамент ще изтече на {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Неуспешно удостоверяване при получаване на имейли от имейл акаунт {0}. Съобщение от сървъра: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Статистика въз основа на ефективността от миналата седмица (от {0} до {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,Автоматичното свързване може да се активира само ако е разрешен Входящ. DocType: Website Settings,Title Prefix,Префикс на заглавието apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,"Приложения за удостоверяване, които можете да използвате, са:" DocType: Bulk Update,Max 500 records at a time,Максимум 500 записа наведнъж @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,Филтри за отчети apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Изберете Колони DocType: Event,Participants,Участниците DocType: Auto Repeat,Amended From,Изменено от -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Вашата информация е изпратена +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Вашата информация е изпратена DocType: Help Category,Help Category,Категория за помощ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 месец apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,"Изберете съществуващ формат, за да редактирате или започнете нов формат." @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Поле за проследяване DocType: User,Generate Keys,Генериране на ключове DocType: Comment,Unshared,неразделен -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Спасен +DocType: Translation,Saved,Спасен DocType: OAuth Client,OAuth Client,OAuth клиент DocType: System Settings,Disable Standard Email Footer,Деактивиране на стандартния долен колонтитул apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Форматът за печат {0} е деактивиран @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Послед DocType: Data Import,Action,действие apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Изисква се клиентски ключ DocType: Chat Profile,Notifications,Известия +DocType: Translation,Contributed,Предоставено DocType: System Settings,mm/dd/yyyy,мм / дд / гггг DocType: Report,Custom Report,Персонализиран отчет DocType: Workflow State,info-sign,инфо-знак @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,контакт DocType: LDAP Settings,LDAP Username Field,Поле за потребителско име LDAP apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Полето {0} не може да бъде зададено като уникално в {1}, тъй като съществуват не-уникални съществуващи стойности" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Настройка> Персонализиране на формуляр DocType: User,Social Logins,Социални логини DocType: Workflow State,Trash,боклук DocType: Stripe Settings,Secret Key,Тайният ключ @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,Поле за заглавие apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Не може да се свърже със сървъра за изходящи имейли DocType: File,File URL,URL адрес на файл DocType: Help Article,Likes,Обича +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Интеграцията на Google Контакти е деактивирана. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,"Трябва да сте влезли в системата и да имате ролята на System Manager, за да имате достъп до архиви." apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Първо ниво DocType: Blogger,Short Name,Кратко име @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Импортиране на Zip DocType: Contact,Gender,пол DocType: Workflow State,thumbs-down,палци долу -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Опашката трябва да е една от {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Не може да се зададе известие за тип документ {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Добавяне на System Manager към този потребител, тъй като трябва да има поне един системен мениджър" apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Изпратен е имейл с добре дошли DocType: Transaction Log,Chaining Hash,Верижно хеш DocType: Contact,Maintenance Manager,Мениджър по поддръжката +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","За сравнение, използвайте> 5, <10 или = 324. За диапазони използвайте 5:10 (за стойности между 5 и 10)." apps/frappe/frappe/utils/bot.py,show,шоу apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URL адрес за споделяне apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Неподдържан файлов формат @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,уведомление DocType: Data Import,Show only errors,Показване само на грешки DocType: Energy Point Log,Review,преглед apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Редове са премахнати -DocType: GSuite Settings,Google Credentials,Удостоверения за Google +DocType: Google Settings,Google Credentials,Удостоверения за Google apps/frappe/frappe/www/login.html,Or login with,Или влезте с apps/frappe/frappe/model/document.py,Record does not exist,Записът не съществува apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Ново име на отчета @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,списък DocType: Workflow State,th-large,-ти-голям apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,"{0}: Не може да се зададе Присвояване на изпращане, ако не е подадено" apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Не е свързан с никакъв запис +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Грешка при свързването с приложението за тава за QZ ...

За да използвате функцията Raw Print, трябва да имате инсталирано и стартирано приложение QZ Tray.

Щракнете тук, за да изтеглите и инсталирате QZ Tray .
Кликнете тук, за да научите повече за Raw Printing ." DocType: Chat Message,Content,съдържание DocType: Workflow Transition,Allow Self Approval,Разрешете самоодобрение apps/frappe/frappe/www/qrcode.py,Page has expired!,Страницата е изтекла! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,ръка десен DocType: Website Settings,Banner is above the Top Menu Bar.,Банерът е над горната лента с менюта. apps/frappe/frappe/www/update-password.html,Invalid Password,Невалидна парола apps/frappe/frappe/utils/data.py,1 month ago,преди 1 месец +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Разрешаване на достъпа до Google Контакти DocType: OAuth Client,App Client ID,Идент. № на клиента на App DocType: DocField,Currency,Валута DocType: Website Settings,Banner,знаме @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Цел DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Ако ролята няма достъп до ниво 0, тогава по-високите нива са безсмислени." DocType: ToDo,Reference Type,Референтен тип -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Разрешаване на DocType, DocType. Бъди внимателен!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Разрешаване на DocType, DocType. Бъди внимателен!" DocType: Domain Settings,Domain Settings,Настройки на домейна DocType: Auto Email Report,Dynamic Report Filters,Динамични филтри за отчети DocType: Energy Point Log,Appreciation,признателност @@ -1466,6 +1487,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,ни-запад-2 DocType: DocType,Is Single,Свободен е apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Създайте нов формат +DocType: Google Contacts,Authorize Google Contacts Access,Упълномощавайте Google Access Access DocType: S3 Backup Settings,Endpoint URL,URL адрес на крайната точка DocType: Social Login Key,Google,Google DocType: Contact,Department,отдел @@ -1480,7 +1502,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Възлага DocType: List Filter,List Filter,Филтър за списък DocType: Dashboard Chart Link,Chart,диаграма apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Не може да се премахне -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,"Изпратете този документ, за да потвърдите" +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,"Изпратете този документ, за да потвърдите" apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} вече съществува. Изберете друго име apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,"Имате незапазени промени в този формуляр. Моля, запазете, преди да продължите." apps/frappe/frappe/model/document.py,Action Failed,Действието не бе успешно @@ -1562,6 +1584,7 @@ DocType: DocField,Display,показ apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Отговори на всички DocType: Calendar View,Subject Field,Поле за предмет apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Изтичането на сесията трябва да е във формат {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},Прилагане: {0} DocType: Workflow State,zoom-in,увеличавам apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Не може да се свърже със сървъра apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Датата {0} трябва да е във формат: {1} @@ -1573,8 +1596,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Иконата ще се появи на бутона DocType: Role Permission for Page and Report,Set Role For,Задайте роля за +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Автоматичното свързване може да се активира само за един имейл акаунт. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Няма присвоени имейл акаунти +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Профилът за имейл не е настроен. Моля, създайте нов имейл акаунт от Настройка> Имейл> Имейл акаунт" apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,назначение +DocType: Google Contacts,Last Sync On,Последно синхронизиране е включено apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},спечелено от {0} чрез автоматично правило {1} apps/frappe/frappe/config/website.py,Portal,портал apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Благодаря ви за вашия имейл @@ -1595,7 +1621,6 @@ DocType: GSuite Settings,GSuite Settings,Настройки на GSuite DocType: Integration Request,Remote,отдалечен DocType: File,Thumbnail URL,URL адрес на миниизображение apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Изтегляне на доклада -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Настройка> Потребител apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},"Персонализации за {0}, експортирани в:
{1}" DocType: GCalendar Account,Calendar Name,Име на календара apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Идентификационният ви номер за вход е @@ -1645,6 +1670,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Къ apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Полето за изображение трябва да е валидно име на поле apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,"Трябва да сте влезли, за да имате достъп до тази страница" DocType: Assignment Rule,Example: {{ subject }},Пример: {{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Името на поле {0} е ограничено apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Не можете да изключите „Само за четене“ за поле {0} DocType: Social Login Key,Enable Social Login,Активиране на социалната регистрация DocType: Workflow,Rules defining transition of state in the workflow.,"Правила, определящи прехода на състоянието в работния процес." @@ -1665,10 +1691,10 @@ DocType: Website Settings,Route Redirects,Пренасочване на марш apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Вх. Поща за имейли apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},възстанови {0} като {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Автоматично присвояване на документи на потребителите +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Отворете Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Шаблони за имейли за общи заявки. DocType: Letter Head,Letter Head Based On,Главата на писмото се основава на apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,"Моля, затворете този прозорец" -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Плащането е завършено DocType: Contact,Designation,Обозначаване DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Мета тагове @@ -1707,6 +1733,7 @@ DocType: System Settings,Choose authentication method to be used by all users," DocType: Error Snapshot,Parent Error Snapshot,Снимка на родителските грешки DocType: GCalendar Account,GCalendar Account,GCalendar Сметка DocType: Language,Language Name,Име на езика +DocType: Workflow Document State,Workflow Action is not created for optional states,Действието на работния процес не е създадено за незадължителните държави DocType: Customize Form,Customize Form,Персонализиране на формуляр DocType: DocType,Image Field,Поле за изображение apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Добавено {0} ({1}) @@ -1748,6 +1775,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Прилагайте това правило, ако Потребителят е Собственикът" DocType: About Us Settings,Org History Heading,Заглавие на историята на Org apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,грешка в сървъра +DocType: Contact,Google Contacts Description,Описание на Google Контакти apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Стандартните роли не могат да бъдат преименувани DocType: Review Level,Review Points,Точки за преглед apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Липсва параметър Kanban Board Name @@ -1765,7 +1793,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Не е в режим за разработчици! Задайте в site_config.json или направете 'Custom' DocType. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,спечели {0} точки DocType: Web Form,Success Message,Съобщение за успех -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","За сравнение, използвайте> 5, <10 или = 324. За диапазони използвайте 5:10 (за стойности между 5 и 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Описание на страницата за включване в обикновен текст, само няколко реда. (макс. 140 знака)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Показване на разрешения DocType: DocType,Restrict To Domain,Ограничаване до домейн @@ -1787,6 +1814,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Не apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Задайте количество DocType: Auto Repeat,End Date,Крайна дата DocType: Workflow Transition,Next State,Следваща държава +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Google Контакти са синхронизирани. DocType: System Settings,Is First Startup,Първо стартиране apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},актуализирано до {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Преместване в @@ -1836,6 +1864,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Календар apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Шаблон за импортиране на данни DocType: Workflow State,hand-left,ръчно наляво +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Изберете няколко елемента от списъка apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Размер на архива: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Свързано с {0} DocType: Braintree Settings,Private Key,Личен ключ @@ -1878,13 +1907,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,интерес DocType: Bulk Update,Limit,лимит DocType: Print Settings,Print taxes with zero amount,Печат на данъци с нулева сума -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Профилът за имейл не е настроен. Моля, създайте нов имейл акаунт от Настройка> Имейл> Имейл акаунт" DocType: Workflow State,Book,Книга DocType: S3 Backup Settings,Access Key ID,Достъп до ID на ключ DocType: Chat Message,URLs,URL адреси apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Имената и фамилиите сами по себе си са лесни за отгатване. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Отчет {0} DocType: About Us Settings,Team Members Heading,Заглавие на членовете на екипа +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Изберете елемент от списъка apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Документът {0} е настроен на състояние {1} от {2} DocType: Address Template,Address Template,Шаблон за адрес DocType: Workflow State,step-backward,стъпка назад @@ -1908,6 +1937,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Експортиране на персонализирани разрешения apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Няма: Край на работния процес DocType: Version,Version,версия +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Отворете елемента от списъка apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 месеца DocType: Chat Message,Group,група apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Има проблем с URL адреса на файла: {0} @@ -1963,6 +1993,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,Една год apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} върна точките ви на {1} DocType: Workflow State,arrow-down,стрелка надолу DocType: Data Import,Ignore encoding errors,Игнорирайте грешките при кодирането +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,пейзаж DocType: Letter Head,Letter Head Name,Име на главата на писмото DocType: Web Form,Client Script,Клиентски скрипт DocType: Assignment Rule,Higher priority rule will be applied first,Първо ще се прилага правило за по-висок приоритет @@ -2007,6 +2038,7 @@ DocType: Kanban Board Column,Green,зелен apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"За новите записи са необходими само задължителни полета. Можете да изтриете незадължителни колони, ако желаете." apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} трябва да започва и завършва с буква и може да съдържа само букви, тире или долна черта." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Задейства основното действие apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Създайте имейл на потребителя apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Полето за сортиране {0} трябва да е валидно име на поле DocType: Auto Email Report,Filter Meta,Филтър Meta @@ -2036,6 +2068,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Поле за времева линия apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Зареждане... DocType: Auto Email Report,Half Yearly,Половин годишно +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Моят профил apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Последна променена дата DocType: Contact,First Name,Първо име DocType: Post,Comments,Коментари @@ -2058,6 +2091,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Съдържание Hash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Публикации от {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} е назначен {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Няма синхронизирани нови Google Контакти. DocType: Workflow State,globe,земно кълбо apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Средно от {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Изчистване на регистрите за грешки @@ -2084,6 +2118,8 @@ DocType: Workflow State,Inverse,обратен DocType: Activity Log,Closed,затворен DocType: Report,Query,Запитване DocType: Notification,Days After,Дни след +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Преки пътища на страницата +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Портрет apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Времето за заявка е изтекло DocType: System Settings,Email Footer Address,Адрес на долния колонтитул на имейла apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Актуализация на енергийната точка @@ -2111,6 +2147,7 @@ For Select, enter list of Options, each on a new line.","За връзки въ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,Преди 1 минута apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Няма активни сесии apps/frappe/frappe/model/base_document.py,Row,ред +DocType: Contact,Middle Name,Презиме apps/frappe/frappe/public/js/frappe/request.js,Please try again,"Моля, опитайте отново" DocType: Dashboard Chart,Chart Options,Опции на диаграмата DocType: Data Migration Run,Push Failed,Push Failed @@ -2139,6 +2176,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,преоразмеряване-малък DocType: Comment,Relinked,свързва отново DocType: Role Permission for Page and Report,Roles HTML,Ролите на HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Отивам apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Работният процес ще започне след запазването. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Ако данните ви са в HTML формат, моля, копирайте поставения HTML код с етикетите." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Датите често са лесно да се отгатне. @@ -2167,7 +2205,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Икона на работния плот apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,анулира този документ apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Период от време -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Настройка> Потребителски разрешения apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} оценява {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Променени стойности apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Грешка в известието @@ -2232,6 +2269,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Масово изтриване DocType: DocShare,Document Name,Име на документа apps/frappe/frappe/config/customization.py,Add your own translations,Добавете свои преводи +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Придвижете се надолу в списъка DocType: S3 Backup Settings,eu-central-1,ЕС-Централна-1 DocType: Auto Repeat,Yearly,годишно apps/frappe/frappe/public/js/frappe/model/model.js,Rename,преименувам @@ -2282,6 +2320,7 @@ DocType: Workflow State,plane,самолет apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,"Въведена грешка. Моля, свържете се с администратора." apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Показване на отчета DocType: Auto Repeat,Auto Repeat Schedule,График за автоматично повторение +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Изглед Реф DocType: Address,Office,офис DocType: LDAP Settings,StartTLS,STARTTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,Преди {0} дни @@ -2315,7 +2354,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Н apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Моите настройки apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Името на групата не може да бъде празно. DocType: Workflow State,road,път -DocType: Website Route Redirect,Source,източник +DocType: Contact,Source,източник apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Активни сесии apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Може да има само една Сгъвка във форма apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Нов чат @@ -2337,6 +2376,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,"Моля, въведете URL адрес за оторизиране" DocType: Email Account,Send Notification to,Изпращане на известие до apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Настройки за архивиране на Dropbox +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,"Нещо се обърка по време на генерирането на символи. Кликнете върху {0}, за да генерирате нов." apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Да се премахнат ли всички персонализации? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Само администратор може да редактира DocType: Auto Repeat,Reference Document,Референтен документ @@ -2361,6 +2401,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Ролите могат да се задават за потребителите от тяхната страница на потребителя. DocType: Website Settings,Include Search in Top Bar,Включете Търсене в горната лента apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Спешно] Грешка при създаване на повтарящи се% s за% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Глобални преки пътища DocType: Help Article,Author,автор DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Няма намерен документ за дадени филтри @@ -2396,10 +2437,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, ред {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Ако качвате нови записи, "Наименуване на серии" става задължително, ако е налице." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Редактиране на свойства -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,"Екземпляр не може да се отвори, когато {0} е отворен" +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,"Екземпляр не може да се отвори, когато {0} е отворен" DocType: Activity Log,Timeline Name,Име на времевата скала DocType: Comment,Workflow,Работния процес apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,"Моля, задайте Base URL в социалния ключ за влизане в Frappe" +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Комбинация от клавиши DocType: Portal Settings,Custom Menu Items,Потребителски елементи от менюто apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,Дължината на {0} трябва да бъде между 1 и 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Връзката е загубена. Някои функции може да не работят. @@ -2462,6 +2504,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Добав DocType: DocType,Setup,Настройвам apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} е създадено успешно apps/frappe/frappe/www/update-password.html,New Password,нова парола +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Изберете Поле apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Напуснете този разговор DocType: About Us Settings,Team Members,Членове на отбора DocType: Blog Settings,Writers Introduction,Писатели Въведение @@ -2531,13 +2574,12 @@ DocType: Chat Room,Name,име DocType: Communication,Email Template,Шаблон за имейл DocType: Energy Point Settings,Review Levels,Нива на преглед DocType: Print Format,Raw Printing,Необработен печат -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,"Не може да се отвори {0}, когато инстанцията е отворена" +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,"Не може да се отвори {0}, когато инстанцията е отворена" DocType: DocType,"Make ""name"" searchable in Global Search",Направете „име“ за търсене в Глобално търсене DocType: Data Migration Mapping,Data Migration Mapping,Картографиране на миграцията на данни DocType: Data Import,Partially Successful,Частично успешно DocType: Communication,Error,грешка apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Тип на полето не може да се променя от {0} на {1} в ред {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Грешка при свързването с приложението за тава за QZ ...

За да използвате функцията Raw Print, трябва да имате инсталирано и стартирано приложение QZ Tray.

Щракнете тук, за да изтеглите и инсталирате QZ Tray .
Кликнете тук, за да научите повече за Raw Printing ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Правя снимка apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,"Избягвайте години, свързани с вас." DocType: Web Form,Allow Incomplete Forms,Разрешаване на непълни формуляри @@ -2633,7 +2675,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Изберете target = "_blank", за да отворите нова страница." DocType: Portal Settings,Portal Menu,Меню на портала DocType: Website Settings,Landing Page,Целева страница -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,"Моля, регистрирайте се или влезте, за да започнете" DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Опции за контакт, като „Заявка за продажби, заявка за поддръжка“ и т.н., всеки в нов ред или разделени със запетая." apps/frappe/frappe/twofactor.py,Verfication Code,Кодекс за проверка apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} вече е отписан @@ -2719,6 +2760,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Картогр DocType: Address,Sales User,Потребител за продажби apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Промяна на свойствата на полето (скрий, само за четене, разрешение и др.)" DocType: Property Setter,Field Name,Име на полето +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,клиент DocType: Print Settings,Font Size,Размер на шрифта DocType: User,Last Password Reset Date,Дата на възстановяване на последната парола DocType: System Settings,Date and Number Format,Формат за дата и номер @@ -2784,6 +2826,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Групов в apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Обединяване със съществуващи DocType: Blog Post,Blog Intro,Въведение в блога apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Ново споменаване +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Направо към полето DocType: Prepared Report,Report Name,Име на отчета apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Моля, опреснете, за да получите най-новия документ." apps/frappe/frappe/core/doctype/communication/communication.js,Close,Близо @@ -2793,10 +2836,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,събитие DocType: Social Login Key,Access Token URL,URL адрес на маркера за достъп apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,"Моля, задайте ключовете за достъп на Dropbox в конфигурацията на сайта си" +DocType: Google Contacts,Google Contacts,Google Контакти DocType: User,Reset Password Key,Нулиране на ключ за парола apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Променено от DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.","За да подновите, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Запазено успешно +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,"Изпратете имейл до {0}, за да го свържете тук." DocType: File,Folder,папка DocType: DocField,Perm Level,Пермско ниво DocType: Print Settings,Page Settings,Настройки на страницата @@ -2826,6 +2872,7 @@ DocType: Workflow State,remove-sign,извадете-знак DocType: Dashboard Chart,Full,пълен DocType: DocType,User Cannot Create,Потребителят не може да създаде apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Получихте точка {0} +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Настройка> Потребител DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Ако зададете това, този елемент ще се появи в падащото меню под избрания родител." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Няма имейли apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Липсват следните полета: @@ -2839,13 +2886,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,П DocType: Web Form,Web Form Fields,Полета за уеб формуляри DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Потребителски редактируема форма на уебсайта. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Постоянно отменяте {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Постоянно отменяте {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Вариант 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,Общо apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Това е много обща парола. DocType: Personal Data Deletion Request,Pending Approval,Изчакване на потвърждение apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Документът не може да бъде зададен правилно apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Не е разрешено за {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Няма стойности за показване DocType: Personal Data Download Request,Personal Data Download Request,Заявка за изтегляне на лични данни apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} сподели този документ с {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Изберете {0} @@ -2861,7 +2909,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Този имейл бе изпратен на {0} и копиран в {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,Невалидно потребителско име или парола DocType: Social Login Key,Social Login Key,Ключ за социална регистрация -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,"Моля, настройте имейл акаунта по подразбиране от Настройка> Имейл> Имейл акаунт" apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Филтрите са запазени DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Как трябва да се форматира тази валута? Ако не е зададен, ще използва системните настройки по подразбиране" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} е настроен на състояние {2} @@ -2987,6 +3034,7 @@ DocType: User,Location,местоположение apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Няма данни DocType: Website Meta Tag,Website Meta Tag,Уебсайт мета тагове DocType: Workflow State,film,филм +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Копирано в клипборда. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Настройките не са намерени apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Етикетът е задължителен DocType: Webhook,Webhook Headers,Заглавия на Webhook @@ -3195,7 +3243,7 @@ DocType: Address,Address Line 1,Адресна линия 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,За тип документ apps/frappe/frappe/model/base_document.py,Data missing in table,Данните липсват в таблицата apps/frappe/frappe/utils/bot.py,Could not identify {0},Не можа да се идентифицира {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Този формуляр е променен след като сте го заредили +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Този формуляр е променен след като сте го заредили apps/frappe/frappe/www/login.html,Back to Login,Назад към Вход apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Не е зададено DocType: Data Migration Mapping,Pull,дърпам @@ -3263,6 +3311,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Картиране н apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,"Настройка на имейл акаунт, моля, въведете паролата си за:" apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,"Твърде много пише в една заявка. Моля, изпращайте по-малки заявки" DocType: Social Login Key,Salesforce,Salesforce +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Импортиране на {0} от {1} DocType: User,Tile,плочка apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,Стаята за {0} трябва да има най-много един потребител. DocType: Email Rule,Is Spam,Е спам @@ -3300,7 +3349,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,папка-близо DocType: Data Migration Run,Pull Update,Издърпайте актуализация apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},обединени {0} в {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

DocType: SMS Settings,Enter url parameter for receiver nos,Въведете URL параметър за приемници apps/frappe/frappe/utils/jinja.py,Syntax error in template,Синтактична грешка в шаблона apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,"Моля, задайте стойността на филтрите в таблицата с филтри за отчети." @@ -3313,6 +3361,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.",За съж DocType: System Settings,In Days,В дни DocType: Report,Add Total Row,Добави Общ ред apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Стартирането на сесията не бе успешно +DocType: Translation,Verified,Потвърден DocType: Print Format,Custom HTML Help,Персонализирана HTML помощ DocType: Address,Preferred Billing Address,Предпочитан адрес за фактуриране apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Зададен за @@ -3327,7 +3376,6 @@ DocType: Help Article,Intermediate,Междинен DocType: Module Def,Module Name,Име на модула DocType: OAuth Authorization Code,Expiration time,Срок на годност apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Задаване на формат по подразбиране, размер на страницата, стил на печат и др." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,"Не можете да харесвате нещо, което сте създали" DocType: System Settings,Session Expiry,Изтичане на сесията DocType: DocType,Auto Name,Автоматично име apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Изберете Прикачени файлове @@ -3355,6 +3403,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Страница на системата DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Забележка: По подразбиране се изпращат имейли за неуспешни архиви. DocType: Custom DocPerm,Custom DocPerm,Персонализиран DocPerm +DocType: Translation,PR sent,PR изпратено DocType: Tag Doc Category,Doctype to Assign Tags,Doctype за задаване на маркери DocType: Address,Warehouse,Склад apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Настройка на Dropbox @@ -3422,7 +3471,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Enter за добавяне на коментар apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Поле {0} не може да се избира. DocType: User,Birth Date,Рождена дата -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,С групово отстъпление DocType: List View Setting,Disable Count,Деактивиране на броенето DocType: Contact Us Settings,Email ID,Имейл ID apps/frappe/frappe/utils/password.py,Incorrect User or Password,Неправилен потребител или парола @@ -3457,6 +3505,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Тази роля актуализира потребителските разрешения за потребител DocType: Website Theme,Theme,тема DocType: Web Form,Show Sidebar,Показване на страничната лента +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Интеграция с Google Контакти. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Стандартна входяща поща apps/frappe/frappe/www/login.py,Invalid Login Token,Невалиден знак за влизане apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Първо задайте името и запишете записа. @@ -3484,7 +3533,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,"Моля, коригирайте" DocType: Top Bar Item,Top Bar Item,Най-горната позиция на лентата ,Role Permissions Manager,Мениджър за разрешения за роли -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,"Имаше грешки. Моля, докладвайте за това." +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} преди година / и apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Женски пол DocType: System Settings,OTP Issuer Name,Име на издателя на OTP apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Добавяне към „Задачи“ @@ -3584,6 +3633,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Нас apps/frappe/frappe/model/document.py,none of,никой от DocType: Desktop Icon,Page,страница DocType: Workflow State,plus-sign,плюс-знак +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Изчистване на кеша и презареждане apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Не може да се актуализира: неправилна / изтекла връзка. DocType: Kanban Board Column,Yellow,жълт DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Брой колони за поле в мрежа (Общите колони в мрежа трябва да са по-малки от 11) @@ -3598,6 +3648,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Но DocType: Activity Log,Date,Дата DocType: Communication,Communication Type,Тип комуникация apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Родителска таблица +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Придвижете се по списъка нагоре DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Показване на пълната грешка и разрешаване на отчитането на проблеми на разработчика DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3619,7 +3670,6 @@ DocType: Notification Recipient,Email By Role,Имейл по роля apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,"Моля, надстройте, за да добавите повече от {0} абонати" apps/frappe/frappe/email/queue.py,This email was sent to {0},Този имейл бе изпратен на {0} DocType: User,Represents a User in the system.,Представлява Потребител в системата. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Страница {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Стартирайте нов формат apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Добави коментар apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} от {1} diff --git a/frappe/translations/bn.csv b/frappe/translations/bn.csv index 001e4bad7d..731457393f 100644 --- a/frappe/translations/bn.csv +++ b/frappe/translations/bn.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,গ্রেডেন্ট সক্রিয় করুন DocType: DocType,Default Sort Order,ডিফল্ট সাজানোর আদেশ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,প্রতিবেদন থেকে শুধুমাত্র সংখ্যাসূচক ক্ষেত্র দেখানো হচ্ছে +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,মেনু এবং সাইডবারে অতিরিক্ত শর্টকাট ট্রিগার করতে Alt কী টিপুন DocType: Workflow State,folder-open,ফোল্ডারের খুলুন DocType: Customize Form,Is Table,টেবিল apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,সংযুক্ত ফাইল খুলতে অক্ষম। আপনি CSV হিসাবে এটি রপ্তানি করেছেন? DocType: DocField,No Copy,কোন কপি DocType: Custom Field,Default Value,ডিফল্ট মান apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,আগত মেইল জন্য বাধ্যতামূলক করা +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,সিঙ্ক যোগাযোগ DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,ডেটা মাইগ্রেশন ম্যাপিং বিস্তারিত apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,অনুসরণ apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.","র মুদ্রণ" এর মাধ্যমে পিডিএফ মুদ্রণ এখনো সমর্থিত নয়। মুদ্রক সেটিংস মধ্যে প্রিন্টার ম্যাপিং অপসারণ করুন এবং আবার চেষ্টা করুন। @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} এবং {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,ফিল্টার সংরক্ষণে একটি ত্রুটি ছিল apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,আপনার পাসওয়ার্ড লিখুন apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,হোম এবং সংযুক্তি ফোল্ডার মুছে ফেলা যাবে না +DocType: Email Account,Enable Automatic Linking in Documents,নথিতে স্বয়ংক্রিয় লিঙ্কিং সক্ষম করুন DocType: Contact Us Settings,Settings for Contact Us Page,যোগাযোগ পাতা আমাদের জন্য সেটিংস DocType: Social Login Key,Social Login Provider,সামাজিক লগইন প্রদানকারী +DocType: Email Account,"For more information, click here.","আরো তথ্যের জন্য, এখানে ক্লিক করুন ।" DocType: Transaction Log,Previous Hash,পূর্ববর্তী হ্যাশ DocType: Notification,Value Changed,মান পরিবর্তিত DocType: Report,Report Type,প্রতিবেদনের প্রকার @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,শক্তি পয়েন্ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,সামাজিক লগইন সক্ষম করার আগে ক্লায়েন্ট আইডি লিখুন দয়া করে DocType: Communication,Has Attachment,সংযুক্তি আছে DocType: User,Email Signature,ইমেইল স্বাক্ষর -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} বছর (গুলি) আগে ,Addresses And Contacts,ঠিকানা এবং পরিচিতি apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,এই কানবান বোর্ড ব্যক্তিগত হবে DocType: Data Migration Run,Current Mapping,বর্তমান ম্যাপিং @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","আপনি সমস্ত হিসাবে সিঙ্ক বিকল্পটি নির্বাচন করছেন, এটি সার্ভার থেকে সমস্ত \ পড়া পাশাপাশি অপঠিত বার্তা পুনর্নবীকরণ করবে। এটি সদৃশ \ যোগাযোগের (ইমেল )ও হতে পারে।" apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},সর্বশেষ সিঙ্ক {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,হেডার কন্টেন্ট পরিবর্তন করতে পারবেন না +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,জমা দেওয়ার পরে {0} পরিবর্তন করার অনুমতি নেই apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","অ্যাপ্লিকেশনটি একটি নতুন সংস্করণে আপডেট করা হয়েছে, দয়া করে এই পৃষ্ঠাটি রিফ্রেশ করুন" DocType: User,User Image,ব্যবহারকারী চিত্র @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},{0} apps/frappe/frappe/public/js/frappe/chat.js,Discard,বাতিল করতে চান DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,সর্বোত্তম ফলাফলের জন্য স্বচ্ছ ব্যাকগ্রাউন্ড সহ প্রায় 150px এর দৈর্ঘ্যের একটি চিত্র নির্বাচন করুন। apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,Relapsed +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} মান নির্বাচিত DocType: Blog Post,Email Sent,ইমেইল পাঠানো DocType: Communication,Read by Recipient On,প্রাপক উপর পড়ুন DocType: User,Allow user to login only after this hour (0-24),এই ঘন্টা পরে শুধুমাত্র লগইন করার অনুমতি দিন (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,রপ্তানি মডিউল DocType: DocType,Fields,ক্ষেত্রসমূহ -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,আপনি এই নথি মুদ্রণ করার অনুমতি দেওয়া হয় না +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,আপনি এই নথি মুদ্রণ করার অনুমতি দেওয়া হয় না apps/frappe/frappe/public/js/frappe/model/model.js,Parent,মাতা apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","আপনার অধিবেশন মেয়াদ শেষ হয়ে গেছে, অবিরত করতে আবার লগইন করুন।" DocType: Assignment Rule,Priority,অগ্রাধিকার @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,ওটিপি DocType: DocType,UPPER CASE,আপপার কেস apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,ইমেইল ঠিকানা সেট করুন DocType: Communication,Marked As Spam,স্প্যাম হিসাবে চিহ্নিত +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,ইমেল ঠিকানা যার গুগল পরিচিতি সিঙ্ক করা হয়। apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,সাবস্ক্রাইব করুন apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,ফিল্টার সংরক্ষণ করুন DocType: Address,Preferred Shipping Address,পছন্দের গ্রেপ্তার ঠিকানা DocType: GCalendar Account,The name that will appear in Google Calendar,যে নামটি Google ক্যালেন্ডারে উপস্থিত হবে +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,রিফ্রেশ টোকেন জেনারেট করতে {0} ক্লিক করুন। DocType: Email Account,Disable SMTP server authentication,SMTP সার্ভার প্রমাণীকরণ নিষ্ক্রিয় করুন DocType: Email Account,Total number of emails to sync in initial sync process ,প্রাথমিক সিঙ্ক প্রক্রিয়াতে সিঙ্ক করার জন্য ইমেলের মোট সংখ্যা DocType: System Settings,Enable Password Policy,পাসওয়ার্ড নীতি সক্রিয় করুন @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,কোড প্রবেশ করান apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,না DocType: Auto Repeat,Start Date,শুরুর তারিখ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,চার্ট সেট করুন +DocType: Website Theme,Theme JSON,থিম JSON apps/frappe/frappe/www/list.py,My Account,আমার অ্যাকাউন্ট DocType: DocType,Is Published Field,প্রকাশিত ক্ষেত্র DocType: DocField,Set non-standard precision for a Float or Currency field,ফ্লোট বা মুদ্রা ক্ষেত্রের জন্য অ-স্ট্যান্ডার্ড নির্ভুলতা সেট করুন @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Reference: {{ reference_doctype }} {{ reference_name }} যোগ করুন Reference: {{ reference_doctype }} {{ reference_name }} নথির রেফারেন্স পাঠাতে DocType: LDAP Settings,LDAP First Name Field,এলডিএপি প্রথম নাম ক্ষেত্র apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,ডিফল্ট পাঠানো এবং ইনবক্স -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,সেটআপ> ফর্ম কাস্টমাইজ করুন apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.","আপডেট করার জন্য, আপনি শুধুমাত্র নির্বাচনী কলাম আপডেট করতে পারেন।" apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',ক্ষেত্রের 'চেক' টাইপের জন্য ডিফল্টটি অবশ্যই '0' বা '1' হতে হবে। apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,সঙ্গে এই নথি শেয়ার করুন @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,ডোমেইন এইচটিএমএল DocType: Blog Settings,Blog Settings,ব্লগ সেটিংস apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","ডক টাইপের নামটি একটি অক্ষরের সাথে শুরু হওয়া উচিত এবং এতে শুধুমাত্র অক্ষর, সংখ্যা, স্থান এবং আন্ডারস্কোর থাকতে পারে" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,সেটআপ> ব্যবহারকারী অনুমতি DocType: Communication,Integrations can use this field to set email delivery status,ইন্টিগ্রেশন ইমেল বিতরণ অবস্থা সেট করতে এই ক্ষেত্র ব্যবহার করতে পারেন apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,জালিয়াতি পেমেন্ট গেটওয়ে সেটিংস DocType: Print Settings,Fonts,ফন্ট DocType: Notification,Channel,চ্যানেল DocType: Communication,Opened,খোলা হয়েছে DocType: Workflow Transition,Conditions,পরিবেশ +apps/frappe/frappe/config/website.py,A user who posts blogs.,একটি ব্লগ যারা ব্লগ পোস্ট। apps/frappe/frappe/www/login.html,Don't have an account? Sign up,একটি অ্যাকাউন্ট আছে না? নিবন্ধন করুন apps/frappe/frappe/utils/file_manager.py,Added {0},যোগ করা হয়েছে {0} DocType: Newsletter,Create and Send Newsletters,তৈরি করুন এবং নিউজলেটার পাঠান DocType: Website Settings,Footer Items,পাদচরণ আইটেম +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,সেটআপ থেকে ডিফল্ট ইমেইল অ্যাকাউন্ট সেটআপ করুন> ইমেইল> ইমেইল একাউন্ট DocType: Website Slideshow Item,Website Slideshow Item,ওয়েবসাইট স্লাইডশো আইটেম apps/frappe/frappe/config/integrations.py,Register OAuth Client App,OAuth ক্লায়েন্ট অ্যাপ্লিকেশন নিবন্ধন করুন DocType: Error Snapshot,Frames,ফ্রেম @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","লেভেল 0 নথির স্তরের অনুমতিগুলির জন্য, ক্ষেত্র স্তরের অনুমতিগুলির জন্য \ উচ্চ মাত্রা।" DocType: Address,City/Town,মহানগর / ছোট শহর DocType: Email Account,GMail,জিমেইল -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","এটি আপনার বর্তমান থিমটি পুনরায় সেট করবে, আপনি কি নিশ্চিত হতে চান?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},বাধ্যতামূলক ক্ষেত্র প্রয়োজন {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},ইমেল অ্যাকাউন্টে সংযোগ করার সময় ত্রুটি {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,পুনরাবৃত্তি তৈরি করার সময় একটি ত্রুটি ঘটেছে @@ -528,7 +537,7 @@ DocType: Event,Event Category,ইভেন্ট বিভাগ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,উপর ভিত্তি করে কলাম apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,শিরোনাম সম্পাদনা করুন DocType: Communication,Received,গৃহীত -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,আপনি এই পৃষ্ঠা অ্যাক্সেস করার অনুমতি দেওয়া হয় না। +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,আপনি এই পৃষ্ঠা অ্যাক্সেস করার অনুমতি দেওয়া হয় না। DocType: User Social Login,User Social Login,ব্যবহারকারী সামাজিক লগইন apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,একই ফোল্ডারে একটি পাইথন ফাইল লিখুন যেখানে এটি সংরক্ষিত হয় এবং কলাম এবং ফলাফল ফিরে আসে। DocType: Contact,Purchase Manager,ক্রয় ম্যানেজার @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,চ apps/frappe/frappe/utils/data.py,Operator must be one of {0},অপারেটর এক হতে হবে {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,মালিক যদি DocType: Data Migration Run,Trigger Name,ট্রিগার নাম -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,শিরোনাম এবং আপনার ব্লগে ভূমিকা লিখুন। apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,ক্ষেত্র সরান apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,সব ভেঙ্গে apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,পেছনের রং @@ -630,6 +638,7 @@ DocType: Dashboard Chart,Bar,বার DocType: SMS Settings,Enter url parameter for message,বার্তা জন্য ইউআরএল পরামিতি লিখুন apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,নতুন কাস্টম মুদ্রণ বিন্যাস apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} ইতিমধ্যে বিদ্যমান +DocType: Workflow Document State,Is Optional State,ঐচ্ছিক রাষ্ট্র DocType: Address,Purchase User,ব্যবহারকারী ক্রয় করুন DocType: Data Migration Run,Insert,সন্নিবেশ DocType: Web Form,Route to Success Link,সফল সংযোগ পথ @@ -637,13 +646,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,ব্ DocType: File,Is Home Folder,হোম ফোল্ডার apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,ধরন: DocType: Post,Is Pinned,পিন করা হয় -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},'{0}' {1} এর অনুমতি নেই +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},'{0}' {1} এর অনুমতি নেই DocType: Patch Log,Patch Log,প্যাচ লগ DocType: Print Format,Print Format Builder,মুদ্রণ বিন্যাস নির্মাতা 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 ব্যবহার করে যেকোন আইপি ঠিকানা থেকে লগইন করতে পারবেন। এটি শুধুমাত্র ব্যবহারকারীর পৃষ্ঠায় নির্দিষ্ট ব্যবহারকারীর জন্য সেট করা যেতে পারে" apps/frappe/frappe/utils/data.py,only.,কেবল. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,শর্ত '{0}' অবৈধ DocType: Auto Email Report,Day of Week,সপ্তাহের দিনসপ্তাহের দিন +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Google সেটিংসে গুগল এপিআই সক্ষম করুন। DocType: DocField,Text Editor,টেক্সট সম্পাদক apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,কাটা apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,অনুসন্ধান বা একটি কমান্ড লিখুন @@ -651,6 +661,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,ডিবি ব্যাকআপ সংখ্যা 1 এর কম হতে পারে না DocType: Workflow State,ban-circle,নিষেধাজ্ঞা-বৃত্ত DocType: Data Export,Excel,সীমা অতিক্রম করা +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","হেডার, ব্রেডক্রামবস এবং মেটা ট্যাগ" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,সাপোর্ট ইমেইল ঠিকানা নির্দিষ্ট করা হয় না DocType: Comment,Published,প্রকাশিত DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","দ্রষ্টব্য: সেরা ফলাফলের জন্য, চিত্রগুলি একই আকারের এবং অবশ্যই প্রস্থের উচ্চতা থেকে বড় হওয়া আবশ্যক।" @@ -741,6 +752,7 @@ DocType: System Settings,Scheduler Last Event,সময়সূচী শেষ apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,সব নথি শেয়ার রিপোর্ট DocType: Website Sidebar Item,Website Sidebar Item,ওয়েবসাইট সাইডবার আইটেম apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,করতে +DocType: Google Settings,Google Settings,গুগল সেটিংস apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","আপনার দেশ, সময় অঞ্চল এবং মুদ্রা নির্বাচন করুন" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","এখানে স্ট্যাটিক url পরামিতিগুলি লিখুন (যেমন প্রেরক = ERPNext, ব্যবহারকারীর নাম = ERPNext, পাসওয়ার্ড = 1234 ইত্যাদি)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,কোন ইমেইল একাউন্ট নেই @@ -794,6 +806,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,Outh Bearer টোকেন ,Setup Wizard,ঐন্দ্রজালি সংযুক্ত করা apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,চার্ট টগল করুন +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,সিঙ্ক করা হচ্ছে DocType: Data Migration Run,Current Mapping Action,বর্তমান ম্যাপিং অ্যাকশন DocType: Email Account,Initial Sync Count,প্রাথমিক সিঙ্ক গণনা apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,যোগাযোগ পাতা আমাদের জন্য সেটিংস। @@ -833,6 +846,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,মুদ্রণ বিন্যাস প্রকার apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,কোন অনুমতি এই মানদণ্ডের জন্য সেট। apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,সব কিছু বিশদভাবে ব্যক্ত করা +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,কোন ডিফল্ট ঠিকানা টেমপ্লেট পাওয়া যায় নি। সেটআপ> মুদ্রণ এবং ব্র্যান্ডিং> ঠিকানা টেমপ্লেট থেকে একটি নতুন তৈরি করুন। DocType: Tag Doc Category,Tag Doc Category,ট্যাগ ডক বিভাগ DocType: Data Import,Generated File,জেনারেটেড ফাইল apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,নোট @@ -840,7 +854,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,সময়রেখা ক্ষেত্র একটি লিঙ্ক বা গতিশীল লিঙ্ক হতে হবে DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,বিজ্ঞপ্তি এবং বাল্ক মেইল এই বহির্গামী সার্ভার থেকে পাঠানো হবে। apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,এটি একটি শীর্ষ 100 সাধারণ পাসওয়ার্ড। -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,স্থায়ীভাবে জমা দিন {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,স্থায়ীভাবে জমা দিন {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} বিদ্যমান নেই, মার্জ করার জন্য একটি নতুন লক্ষ্য নির্বাচন করুন" DocType: Energy Point Rule,Multiplier Field,গুণক ক্ষেত্র DocType: Workflow,Workflow State Field,কর্মপ্রবাহ রাজ্য ক্ষেত্র @@ -880,6 +894,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} {2} পয়েন্টে {1} আপনার কাজকে প্রশংসা করেছেন DocType: Auto Email Report,Zero means send records updated at anytime,জিরো মানে যে কোনো সময় আপডেট রেকর্ড পাঠান apps/frappe/frappe/model/document.py,Value cannot be changed for {0},মান {0} এর জন্য পরিবর্তন করা যাবে না +apps/frappe/frappe/config/integrations.py,Google API Settings.,গুগল এপিআই সেটিংস। DocType: System Settings,Force User to Reset Password,পাসওয়ার্ড রিসেট ব্যবহারকারী জোর apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,প্রতিবেদন নির্মাতা রিপোর্ট সরাসরি রিপোর্ট রিপোর্টার দ্বারা পরিচালিত হয়। কিছুই করার নাই. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,ফিল্টার সম্পাদনা করুন @@ -933,7 +948,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,জ DocType: S3 Backup Settings,eu-north-1,ইইউ-উত্তর-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: একই রোল, লেভেল এবং {1} এর সাথে একমাত্র নিয়ম অনুমোদিত" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,আপনি এই ওয়েব ফর্ম ডকুমেন্ট আপডেট করার অনুমতি দেওয়া হয় না -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,এই রেকর্ডের জন্য সর্বাধিক সংযুক্তি সীমা পৌঁছেছেন। +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,এই রেকর্ডের জন্য সর্বাধিক সংযুক্তি সীমা পৌঁছেছেন। apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,রেফারেন্স যোগাযোগ ডক্স বৃত্তাকারভাবে লিঙ্ক করা হয় না দয়া করে নিশ্চিত করুন। DocType: DocField,Allow in Quick Entry,দ্রুত এন্ট্রি অনুমতি দিন DocType: Error Snapshot,Locals,অঁচলবাসী @@ -965,7 +980,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,ব্যতিক্রম প্রকার apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},মুছে ফেলা বা বাতিল করা যাবে না কারণ {0} {1} {2} {3} {4} apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTP গোপন শুধুমাত্র প্রশাসক দ্বারা রিসেট করা যাবে। -DocType: Web Form Field,Page Break,পৃষ্ঠা বিরতি DocType: Website Script,Website Script,ওয়েবসাইট স্ক্রিপ্ট DocType: Integration Request,Subscription Notification,সাবস্ক্রিপশন বিজ্ঞপ্তি DocType: DocType,Quick Entry,দ্রুত প্রবেশ @@ -982,6 +996,7 @@ DocType: Notification,Set Property After Alert,সতর্কতা পরে apps/frappe/frappe/__init__.py,Thank you,ধন্যবাদ apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,অভ্যন্তরীণ ইন্টিগ্রেশন জন্য Slack Webhooks apps/frappe/frappe/config/settings.py,Import Data,তথ্য আমদানি +DocType: Translation,Contributed Translation Doctype Name,অবদান অনুবাদ Doctype নাম DocType: Social Login Key,Office 365,অফিস 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,আইডি DocType: Review Level,Review Level,পর্যালোচনার স্তর @@ -1000,7 +1015,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,সফলভাবে সম্পন্ন apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} তালিকা apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,তারিফ করা -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),নতুন {0} (Ctrl + B) DocType: Contact,Is Primary Contact,প্রাথমিক যোগাযোগ DocType: Print Format,Raw Commands,কাঁচা কমান্ড apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,মুদ্রণ বিন্যাস জন্য স্টাইল শীট @@ -1041,6 +1055,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,পটভূমি apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},{0} এ {0} খুঁজুন DocType: Email Account,Use SSL,SSL ব্যবহার করুন DocType: DocField,In Standard Filter,স্ট্যান্ডার্ড ফিল্টার +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,সিঙ্ক করতে কোনও Google পরিচিতি নেই। DocType: Data Migration Run,Total Pages,মোট পৃষ্ঠা apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: ক্ষেত্র '{1}' অনন্য হিসাবে সেট করা যাবে না কারণ এতে অ-অনন্য মান রয়েছে DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","যদি সক্ষম থাকে, ব্যবহারকারী লগইন করার সময় প্রতিবার বিজ্ঞাপিত হবে। যদি সক্ষম না হয়, ব্যবহারকারীদের শুধুমাত্র একবার বিজ্ঞাপিত করা হবে।" @@ -1061,7 +1076,7 @@ DocType: Assignment Rule,Automation,স্বয়ংক্রিয়তা apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,ফাইল আনজিপ করা হচ্ছে ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}','{0}' এর জন্য অনুসন্ধান করুন apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,কিছু ভুল হয়েছে -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,সংযুক্ত করার আগে সংরক্ষণ করুন। +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,সংযুক্ত করার আগে সংরক্ষণ করুন। DocType: Version,Table HTML,টেবিল এইচটিএমএল apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,চক্রকেন্দ্র DocType: Page,Standard,মান @@ -1139,12 +1154,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,কোন apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} রেকর্ড মুছে ফেলা হয়েছে apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,ড্রপবক্স অ্যাক্সেস টোকেন জেনারেট করার সময় কিছু ভুল হয়েছে। আরো বিস্তারিত জানার জন্য ত্রুটি লগ চেক করুন। apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Descendants এর -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,কোন ডিফল্ট ঠিকানা টেমপ্লেট পাওয়া যায় নি। সেটআপ> মুদ্রণ এবং ব্র্যান্ডিং> ঠিকানা টেমপ্লেট থেকে একটি নতুন তৈরি করুন। +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,গুগল পরিচিতি কনফিগার করা হয়েছে। apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,আড়াল বিস্তারিত apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,ফন্ট শৈলী apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,আপনার সাবস্ক্রিপশন মেয়াদ শেষ হবে {0}। apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},ইমেল অ্যাকাউন্ট থেকে ইমেল প্রাপ্ত করার সময় প্রমাণীকরণ ব্যর্থ হয়েছে {0}। সার্ভার থেকে বার্তা: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),গত সপ্তাহের কর্মক্ষমতা ({0} থেকে {1} পর্যন্ত ভিত্তি করে পরিসংখ্যান +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,ইনকামিং সক্ষম থাকলে স্বয়ংক্রিয় লিঙ্কিং শুধুমাত্র সক্রিয় করা যেতে পারে। DocType: Website Settings,Title Prefix,শিরোনাম উপসর্গ apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,আপনি ব্যবহার করতে পারেন প্রমাণীকরণ অ্যাপ্লিকেশন: DocType: Bulk Update,Max 500 records at a time,একটি সময়ে সর্বোচ্চ 500 রেকর্ড @@ -1177,7 +1193,7 @@ DocType: Auto Email Report,Report Filters,ফিল্টার রিপোর apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,কলাম নির্বাচন করুন DocType: Event,Participants,অংশগ্রহণকারীরা DocType: Auto Repeat,Amended From,থেকে সংশোধিত -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,আপনার তথ্য জমা দেওয়া হয়েছে +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,আপনার তথ্য জমা দেওয়া হয়েছে DocType: Help Category,Help Category,সাহায্য বিভাগ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 মাস apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,একটি নতুন বিন্যাস সম্পাদনা বা শুরু করতে একটি বিদ্যমান বিন্যাস নির্বাচন করুন। @@ -1224,7 +1240,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,ট্র্যাক ফিল্ড DocType: User,Generate Keys,কী জেনারেট করুন DocType: Comment,Unshared,ভাগমুক্ত -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,সংরক্ষিত +DocType: Translation,Saved,সংরক্ষিত DocType: OAuth Client,OAuth Client,OAuth ক্লায়েন্ট DocType: System Settings,Disable Standard Email Footer,স্ট্যান্ডার্ড ইমেইল পাদচরণ নিষ্ক্রিয় করুন apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,মুদ্রণ বিন্যাস {0} নিষ্ক্রিয় করা হয়েছে @@ -1255,6 +1271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,সর্ব DocType: Data Import,Action,কর্ম apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,ক্লায়েন্ট কী প্রয়োজন DocType: Chat Profile,Notifications,বিজ্ঞপ্তিগুলি +DocType: Translation,Contributed,অবদান DocType: System Settings,mm/dd/yyyy,MM / DD / YYYY DocType: Report,Custom Report,কাস্টম রিপোর্ট DocType: Workflow State,info-sign,তথ্য সাইন @@ -1271,6 +1288,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,যোগাযোগ DocType: LDAP Settings,LDAP Username Field,এলডিএপি ইউজারনেম ক্ষেত্র apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} ক্ষেত্র {1} ক্ষেত্রে অনন্য হিসাবে সেট করা যাবে না, কারণ সেখানে অ-অনন্য বিদ্যমান মান রয়েছে" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,সেটআপ> ফর্ম কাস্টমাইজ করুন DocType: User,Social Logins,সামাজিক লগইন DocType: Workflow State,Trash,আবর্জনা DocType: Stripe Settings,Secret Key,গোপন চাবি @@ -1328,6 +1346,7 @@ DocType: DocType,Title Field,শিরোনাম ক্ষেত্র apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,বহির্গামী ইমেইল সার্ভারে সংযোগ করতে পারে না DocType: File,File URL,ফাইল ইউআরএল DocType: Help Article,Likes,পছন্দ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,গুগল পরিচিতি ইন্টিগ্রেশন নিষ্ক্রিয় করা হয়। apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,ব্যাকআপগুলি অ্যাক্সেস করতে আপনাকে লগ ইন করতে হবে এবং সিস্টেম ম্যানেজারের ভূমিকা থাকতে হবে। apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,প্রথম ধাপ DocType: Blogger,Short Name,সংক্ষিপ্ত নাম @@ -1345,13 +1364,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,জিপ আমদানি করুন DocType: Contact,Gender,লিঙ্গ DocType: Workflow State,thumbs-down,হতাশা -DocType: Web Page,SEO,এসইও apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},সারি {0} হতে হবে apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},নথি প্রকারের {0} উপর বিজ্ঞপ্তি সেট করা যাবে না apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,এই ব্যবহারকারীতে সিস্টেম ম্যানেজার যুক্ত করার কারণে অন্তত একটি সিস্টেম ম্যানেজার থাকা আবশ্যক apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,স্বাগতম ইমেল পাঠানো DocType: Transaction Log,Chaining Hash,চেইনের হ্যাশ DocType: Contact,Maintenance Manager,রক্ষণাবেক্ষণ ব্যাবস্থাপক +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","তুলনা করার জন্য> 5, <10 বা = 324 ব্যবহার করুন। রেঞ্জের জন্য, 5:10 ব্যবহার করুন (5 এবং 10 এর মধ্যে মানগুলির জন্য)।" apps/frappe/frappe/utils/bot.py,show,প্রদর্শনী apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,ইউআরএল শেয়ার করুন apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,অসমর্থিত ফাইল বিন্যাস @@ -1373,7 +1392,7 @@ DocType: Communication,Notification,প্রজ্ঞাপন DocType: Data Import,Show only errors,শুধুমাত্র ত্রুটি প্রদর্শন করুন DocType: Energy Point Log,Review,পর্যালোচনা apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,সারি মুছে ফেলা হয়েছে -DocType: GSuite Settings,Google Credentials,গুগল প্রমাণপত্রাদি +DocType: Google Settings,Google Credentials,গুগল প্রমাণপত্রাদি apps/frappe/frappe/www/login.html,Or login with,অথবা সাথে লগইন করুন apps/frappe/frappe/model/document.py,Record does not exist,রেকর্ড বিদ্যমান নেই apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,নতুন রিপোর্ট নাম @@ -1398,6 +1417,7 @@ DocType: Desktop Icon,List,তালিকা DocType: Workflow State,th-large,ম-লার্জ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: জমা দেওয়ার সময় সেট জমা দিতে পারবেন না apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,কোন রেকর্ড লিঙ্ক করা হয় না +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZ ট্রে অ্যাপ্লিকেশন সংযোগ করার সময় ত্রুটি ...

Raw মুদ্রণ বৈশিষ্ট্যটি ব্যবহার করার জন্য আপনার QZ ট্রে অ্যাপ্লিকেশনটি ইনস্টল এবং চলতে হবে।

QZ ট্রে ডাউনলোড এবং ইনস্টল করতে এখানে ক্লিক করুন
কাঁচা মুদ্রণ সম্পর্কে আরো জানতে এখানে ক্লিক করুন ।" DocType: Chat Message,Content,সন্তুষ্ট DocType: Workflow Transition,Allow Self Approval,স্ব অনুমোদন অনুমতি দিন apps/frappe/frappe/www/qrcode.py,Page has expired!,পৃষ্ঠা মেয়াদ শেষ হয়ে গেছে! @@ -1414,6 +1434,7 @@ DocType: Workflow State,hand-right,হাত-ডান DocType: Website Settings,Banner is above the Top Menu Bar.,ব্যানার উপরের মেনু বারের উপরে। apps/frappe/frappe/www/update-password.html,Invalid Password,অবৈধ পাসওয়ার্ড apps/frappe/frappe/utils/data.py,1 month ago,1 মাস আগে +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,গুগল যোগাযোগ অ্যাক্সেস অনুমতি দিন DocType: OAuth Client,App Client ID,অ্যাপ ক্লায়েন্ট আইডি DocType: DocField,Currency,মুদ্রা DocType: Website Settings,Banner,পতাকা @@ -1425,7 +1446,7 @@ apps/frappe/frappe/utils/goal.py,Goal,লক্ষ্য DocType: Print Style,CSS,সিএসএস apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.",যদি একটি ভূমিকা লেভেল 0 এ অ্যাক্সেস না থাকে তবে উচ্চতর স্তরের অর্থহীন। DocType: ToDo,Reference Type,রেফারেন্স প্রকার -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DocType, DocType অনুমোদিত। সাবধান হও!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","DocType, DocType অনুমোদিত। সাবধান হও!" DocType: Domain Settings,Domain Settings,ডোমেইন সেটিংস DocType: Auto Email Report,Dynamic Report Filters,গতিশীল রিপোর্ট ফিল্টার DocType: Energy Point Log,Appreciation,রসাস্বাদন @@ -1467,6 +1488,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,উস-পশ্চিমে-2 DocType: DocType,Is Single,একা apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,একটি নতুন বিন্যাস তৈরি করুন +DocType: Google Contacts,Authorize Google Contacts Access,অনুমোদিত গুগল পরিচিতি অ্যাক্সেস DocType: S3 Backup Settings,Endpoint URL,Endpoint URL DocType: Social Login Key,Google,গুগল DocType: Contact,Department,বিভাগ @@ -1481,7 +1503,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,ধার্য DocType: List Filter,List Filter,তালিকা ফিল্টার DocType: Dashboard Chart Link,Chart,তালিকা apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,সরানো যাবে না -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,নিশ্চিত করার জন্য এই নথি জমা দিন +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,নিশ্চিত করার জন্য এই নথি জমা দিন apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} ইতিমধ্যে বিদ্যমান। অন্য নাম নির্বাচন করুন apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,আপনি এই ফর্মের মধ্যে অসংরক্ষিত পরিবর্তন আছে। আপনি অবিরত আগে সংরক্ষণ করুন। apps/frappe/frappe/model/document.py,Action Failed,কর্ম ব্যর্থ হয়েছে @@ -1563,6 +1585,7 @@ DocType: DocField,Display,প্রদর্শন apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,সবগুলোর উত্তর দাও DocType: Calendar View,Subject Field,বিষয় ক্ষেত্র apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},সেশন মেয়াদ শেষ হওয়া উচিত {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},আবেদন করা হচ্ছে: {0} DocType: Workflow State,zoom-in,প্রসারিত করো apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,সার্ভারের সাথে সংযোগ করতে ব্যর্থ apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},তারিখ {0} বিন্যাসে থাকা আবশ্যক: {1} @@ -1574,8 +1597,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,আইকন বাটন প্রদর্শিত হবে DocType: Role Permission for Page and Report,Set Role For,জন্য ভূমিকা নির্ধারণ করুন +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,স্বয়ংক্রিয় লিঙ্কিং শুধুমাত্র একটি ইমেইল অ্যাকাউন্টের জন্য সক্রিয় করা যেতে পারে। apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,কোন ইমেইল অ্যাকাউন্ট বরাদ্দ +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ইমেল অ্যাকাউন্ট সেটআপ না। সেটআপ থেকে একটি নতুন ইমেইল একাউন্ট তৈরি করুন> ইমেইল> ইমেইল একাউন্ট apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,নিয়োগ +DocType: Google Contacts,Last Sync On,শেষ সিঙ্ক অন apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},স্বয়ংক্রিয় নিয়ম দ্বারা {0} দ্বারা অর্জন {1} apps/frappe/frappe/config/website.py,Portal,পোর্টাল apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,আপনার ইমেইল করার জন্য আপনাকে ধন্যবাদ @@ -1596,7 +1622,6 @@ DocType: GSuite Settings,GSuite Settings,GSuite সেটিংস DocType: Integration Request,Remote,দূরবর্তী DocType: File,Thumbnail URL,থাম্বনেল ইউআরএল apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,রিপোর্ট ডাউনলোড করুন -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,সেটআপ> ব্যবহারকারী apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},{0} এর জন্য কাস্টমাইজেশন রপ্তানি:
{1} DocType: GCalendar Account,Calendar Name,ক্যালেন্ডার নাম apps/frappe/frappe/templates/emails/new_user.html,Your login id is,আপনার লগইন আইডি হয় @@ -1646,6 +1671,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},{0} apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,চিত্র ক্ষেত্র একটি বৈধ ক্ষেত্রের নাম হতে হবে apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,আপনি এই পৃষ্ঠায় প্রবেশ করতে লগ ইন করতে হবে DocType: Assignment Rule,Example: {{ subject }},উদাহরণ: {{বিষয়}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,ক্ষেত্রের নাম {0} সীমাবদ্ধ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},আপনি {0} ক্ষেত্রের জন্য 'কেবল পাঠযোগ্য' সেট আপ করতে পারবেন না DocType: Social Login Key,Enable Social Login,সামাজিক লগইন সক্ষম করুন DocType: Workflow,Rules defining transition of state in the workflow.,কার্যপ্রবাহ মধ্যে রাষ্ট্র রূপান্তর সংজ্ঞায়িত বিধি। @@ -1666,10 +1692,10 @@ DocType: Website Settings,Route Redirects,রুট পুনঃনির্দ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ইমেইল ইনবক্স apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},{0} হিসাবে পুনরুদ্ধার {1} DocType: Assignment Rule,Automatically Assign Documents to Users,স্বয়ংক্রিয়ভাবে ব্যবহারকারীদের নথিপত্র বরাদ্দ করুন +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,খোলা Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,সাধারণ প্রশ্নের জন্য ইমেইল টেমপ্লেট। DocType: Letter Head,Letter Head Based On,লেটার হেড উপর ভিত্তি করে apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,এই উইন্ডো বন্ধ করুন -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,পেমেন্ট সম্পূর্ণ DocType: Contact,Designation,উপাধি DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,মেটা ট্যাগ @@ -1706,6 +1732,7 @@ DocType: System Settings,Choose authentication method to be used by all users, DocType: Error Snapshot,Parent Error Snapshot,মূল ত্রুটি স্ন্যাপশট DocType: GCalendar Account,GCalendar Account,জি ক্যালেন্ডার অ্যাকাউন্ট DocType: Language,Language Name,ভাষার নাম +DocType: Workflow Document State,Workflow Action is not created for optional states,ওয়ার্কফ্লো অ্যাকশনটি ঐচ্ছিক অবস্থার জন্য তৈরি করা হয় না DocType: Customize Form,Customize Form,কাস্টমাইজ ফর্ম DocType: DocType,Image Field,চিত্র ক্ষেত্র apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),যোগ করা হয়েছে {0} ({1}) @@ -1747,6 +1774,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,ব্যবহারকারীর মালিক যদি এই নিয়ম প্রয়োগ করুন DocType: About Us Settings,Org History Heading,Org ইতিহাস শিরোনাম apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,সার্ভার সমস্যা +DocType: Contact,Google Contacts Description,গুগল পরিচিতি বিবরণ apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,স্ট্যান্ডার্ড ভূমিকা নামকরণ করা যাবে না DocType: Review Level,Review Points,পর্যালোচনা পয়েন্ট apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,অনুপস্থিত পরামিতি Kanban বোর্ড নাম @@ -1764,7 +1792,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,বিকাশকারী মোডে না! Site_config.json এ সেট করুন অথবা 'কাস্টম' ডক টাইপ করুন। apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,অর্জন {0} পয়েন্ট DocType: Web Form,Success Message,সফল বার্তা -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","তুলনা করার জন্য> 5, <10 বা = 324 ব্যবহার করুন। রেঞ্জের জন্য, 5:10 ব্যবহার করুন (5 এবং 10 এর মধ্যে মানগুলির জন্য)।" DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","পৃষ্ঠা তালিকা জন্য বর্ণনা, প্লেইন টেক্সট, শুধুমাত্র লাইন কয়েক। (সর্বোচ্চ 140 টি অক্ষর)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,অনুমতি দেখান DocType: DocType,Restrict To Domain,ডোমেইন সীমাবদ্ধ করুন @@ -1786,6 +1813,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,না apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,পরিমাণ সেট করুন DocType: Auto Repeat,End Date,শেষ তারিখ DocType: Workflow Transition,Next State,পরবর্তী রাষ্ট্র +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} গুগল পরিচিতি সিঙ্ক করা হয়েছে। DocType: System Settings,Is First Startup,প্রথম স্টার্টআপ apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},আপডেট করা হয়েছে {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,চলো @@ -1835,6 +1863,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} ক্যালেন্ডার apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,ডেটা আমদানি টেম্পলেট DocType: Workflow State,hand-left,হাত-বাম +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,একাধিক তালিকা আইটেম নির্বাচন করুন apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,ব্যাকআপ আকার: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},{0} এর সাথে সংযুক্ত DocType: Braintree Settings,Private Key,ব্যক্তিগত কী @@ -1876,13 +1905,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,স্বার্থ DocType: Bulk Update,Limit,সীমা DocType: Print Settings,Print taxes with zero amount,শূন্য পরিমাণ সঙ্গে কর মুদ্রণ -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ইমেল অ্যাকাউন্ট সেটআপ না। সেটআপ থেকে একটি নতুন ইমেইল একাউন্ট তৈরি করুন> ইমেইল> ইমেইল একাউন্ট DocType: Workflow State,Book,বই DocType: S3 Backup Settings,Access Key ID,অ্যাক্সেস কী আইডি DocType: Chat Message,URLs,URL গুলি apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,নিজেদের দ্বারা নাম এবং উপাধি অনুমান করা সহজ। apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},রিপোর্ট {0} DocType: About Us Settings,Team Members Heading,দলের সদস্য শিরোনাম +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,তালিকা আইটেম নির্বাচন করুন apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},{0} দ্বারা {1} ডকুমেন্ট {0} নির্ধারণ করা হয়েছে DocType: Address Template,Address Template,ঠিকানা টেমপ্লেট DocType: Workflow State,step-backward,পিছু হঠা @@ -1906,6 +1935,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,এক্সপোর্ট কাস্টম অনুমতি apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,কেউ না: ওয়ার্কফ্লো শেষ DocType: Version,Version,সংস্করণ +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,তালিকা আইটেম খুলুন apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 মাস DocType: Chat Message,Group,গ্রুপ apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},ফাইল ইউআরএল কিছু সমস্যা আছে: {0} @@ -1959,6 +1989,7 @@ DocType: User,Third Party Authentication,তৃতীয় পক্ষের apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 বছর DocType: Workflow State,arrow-down,তীর-ডাউন DocType: Data Import,Ignore encoding errors,এনকোডিং ত্রুটি উপেক্ষা করুন +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,ভূদৃশ্য DocType: Letter Head,Letter Head Name,পত্র হেড নাম DocType: Web Form,Client Script,ক্লায়েন্ট স্ক্রিপ্ট DocType: Assignment Rule,Higher priority rule will be applied first,উচ্চ অগ্রাধিকার নিয়ম প্রথম প্রয়োগ করা হবে @@ -2003,6 +2034,7 @@ DocType: Kanban Board Column,Green,সবুজ apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,শুধুমাত্র বাধ্যতামূলক ক্ষেত্র নতুন রেকর্ডের জন্য প্রয়োজনীয়। আপনি যদি চান তবে অ-বাধ্যতামূলক কলাম মুছে ফেলতে পারেন। apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} একটি অক্ষর দিয়ে শুরু এবং শেষ হওয়া আবশ্যক এবং শুধুমাত্র অক্ষর, হাইফেন বা আন্ডারস্কোর থাকতে পারে।" +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,ট্রিগার প্রাথমিক অ্যাকশন apps/frappe/frappe/core/doctype/user/user.js,Create User Email,ব্যবহারকারী ইমেইল তৈরি করুন apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,সাজানো ক্ষেত্র {0} একটি বৈধ ক্ষেত্রের নাম হতে হবে DocType: Auto Email Report,Filter Meta,ফিল্টার মেটা @@ -2031,6 +2063,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,টাইমলাইন ক্ষেত্র apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,লোড হচ্ছে ... DocType: Auto Email Report,Half Yearly,অর্ধ বার্ষিক +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,আমার প্রোফাইল apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,সর্বশেষ সংশোধিত তারিখ DocType: Contact,First Name,নামের প্রথম অংশ DocType: Post,Comments,মন্তব্য @@ -2053,6 +2086,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,কন্টেন্ট হ্যাশ apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},পোস্ট দ্বারা {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} বরাদ্দ {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,কোনও নতুন Google পরিচিতি সিঙ্ক করা হয়নি। DocType: Workflow State,globe,পৃথিবী apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},{0} এর গড় apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,পরিষ্কার ত্রুটি লগ @@ -2079,6 +2113,8 @@ DocType: Workflow State,Inverse,বিপরীত DocType: Activity Log,Closed,বন্ধ DocType: Report,Query,প্রশ্ন DocType: Notification,Days After,দিন পরে +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,পাতা শর্টকাট +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,প্রতিকৃতি apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,অনুরোধ সময় শেষ হয়েছে DocType: System Settings,Email Footer Address,ইমেইল পাদচরণ ঠিকানা apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,শক্তি পয়েন্ট আপডেট @@ -2106,6 +2142,7 @@ For Select, enter list of Options, each on a new line.","লিংকগুল apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 মিনিট আগে apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,কোন সক্রিয় সেশন নেই apps/frappe/frappe/model/base_document.py,Row,সারি +DocType: Contact,Middle Name,মধ্য নাম apps/frappe/frappe/public/js/frappe/request.js,Please try again,অনুগ্রহপূর্বক আবার চেষ্টা করুন DocType: Dashboard Chart,Chart Options,চার্ট অপশন DocType: Data Migration Run,Push Failed,পুশ ব্যর্থ @@ -2134,6 +2171,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,মাপ পরিবর্তন-ছোট DocType: Comment,Relinked,পুনঃলিঙ্ক DocType: Role Permission for Page and Report,Roles HTML,ভূমিকা এইচটিএমএল +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,যাওয়া apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,ওয়ার্কফ্লো সংরক্ষণের পরে শুরু হবে। DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","আপনার তথ্য এইচটিএমএল হয়, তাহলে ট্যাগ সঙ্গে সঠিক HTML কোড পেস্ট করুন।" apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,তারিখ অনুমান করা প্রায়ই সহজ হয়। @@ -2162,7 +2200,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,ডেস্কটপ আইকন apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,এই নথি বাতিল apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,তারিখের পরিসীমা -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,সেটআপ> ব্যবহারকারী অনুমতি apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} প্রশংসা করেছেন {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,মান পরিবর্তিত apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,বিজ্ঞপ্তি ত্রুটি @@ -2227,6 +2264,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,বাল্ক মুছুন DocType: DocShare,Document Name,নথি নাম apps/frappe/frappe/config/customization.py,Add your own translations,আপনার নিজস্ব অনুবাদ যোগ করুন +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,নীচের তালিকা নেভিগেট করুন DocType: S3 Backup Settings,eu-central-1,ইইউ-কেন্দ্রীয় -1 DocType: Auto Repeat,Yearly,বাত্সরিক apps/frappe/frappe/public/js/frappe/model/model.js,Rename,পুনঃনামকরণ @@ -2277,6 +2315,7 @@ DocType: Workflow State,plane,সমতল apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,নেস্টেড সেট ত্রুটি। প্রশাসক যোগাযোগ করুন। apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,রিপোর্ট দেখান DocType: Auto Repeat,Auto Repeat Schedule,অটো পুনরাবৃত্তি সময়সূচী +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,রেফারেন্স দেখুন DocType: Address,Office,দপ্তর DocType: LDAP Settings,StartTLS,STARTTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} দিন আগে @@ -2310,7 +2349,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required, apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,আমার সেটিংস apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,গ্রুপ নাম খালি হতে পারে না। DocType: Workflow State,road,রাস্তা -DocType: Website Route Redirect,Source,সূত্র +DocType: Contact,Source,সূত্র apps/frappe/frappe/www/third_party_apps.html,Active Sessions,সক্রিয় সেশন apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,একটি ফর্ম শুধুমাত্র এক ফালা হতে পারে apps/frappe/frappe/public/js/frappe/chat.js,New Chat,নতুন চ্যাট @@ -2332,6 +2371,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,অনুমোদন URL প্রবেশ করুন DocType: Email Account,Send Notification to,বিজ্ঞপ্তি পাঠান apps/frappe/frappe/config/integrations.py,Dropbox backup settings,ড্রপবক্স ব্যাকআপ সেটিংস +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,টোকেন প্রজন্মের সময় কিছু ভুল হয়েছে। নতুন এক তৈরি করতে {0} ক্লিক করুন। apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,সব কাস্টমাইজেশন মুছে ফেলুন? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,শুধুমাত্র প্রশাসক সম্পাদনা করতে পারেন DocType: Auto Repeat,Reference Document,রেফারেন্স নথি @@ -2356,6 +2396,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,ভূমিকা তাদের ব্যবহারকারী পাতা থেকে ব্যবহারকারীদের জন্য সেট করা যেতে পারে। DocType: Website Settings,Include Search in Top Bar,শীর্ষ বার অনুসন্ধান অন্তর্ভুক্ত করুন apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[জরুরি]% s এর জন্য পুনরাবৃত্ত% s তৈরি করার সময় ত্রুটি +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,গ্লোবাল শর্টকাট DocType: Help Article,Author,লেখক DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,প্রদত্ত ফিল্টার জন্য কোন নথি পাওয়া যায় নি @@ -2391,10 +2432,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, সারি {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","যদি আপনি নতুন রেকর্ড আপলোড করছেন, তবে "নামকরণ সিরিজ" বাধ্যতামূলক হয়ে থাকে, যদি উপস্থিত থাকে।" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,বৈশিষ্ট্য সম্পাদনা করুন -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,যখন {0} খোলা থাকে তখন ইনস্ট্যান্স খুলতে পারে না +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,যখন {0} খোলা থাকে তখন ইনস্ট্যান্স খুলতে পারে না DocType: Activity Log,Timeline Name,টাইমলাইন নাম DocType: Comment,Workflow,কর্মপ্রবাহ apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,ফাঁপা জন্য সামাজিক লগইন কী মধ্যে বেস URL সেট করুন +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,কীবোর্ড শর্টকাট DocType: Portal Settings,Custom Menu Items,কাস্টম মেনু আইটেম apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,{0} এর দৈর্ঘ্য 1 থেকে 1000 এর মধ্যে হওয়া উচিত apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,সংযোগ বিচ্ছিন্ন. কিছু বৈশিষ্ট্য কাজ নাও হতে পারে। @@ -2457,6 +2499,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,সার DocType: DocType,Setup,সেটআপ apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} সফলভাবে তৈরি করা হয়েছে apps/frappe/frappe/www/update-password.html,New Password,নতুন পাসওয়ার্ড +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,ক্ষেত্র নির্বাচন করুন apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,এই কথোপকথন ছেড়ে দিন DocType: About Us Settings,Team Members,দলের সদস্যরা DocType: Blog Settings,Writers Introduction,লেখক ভূমিকা @@ -2526,13 +2569,12 @@ DocType: Chat Room,Name,নাম DocType: Communication,Email Template,ইমেইল টেমপ্লেট DocType: Energy Point Settings,Review Levels,পর্যালোচনার স্তর DocType: Print Format,Raw Printing,কাঁচা মুদ্রণ -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,যখন এটির উদাহরণটি খোলা থাকে তখন {0} খোলা যাবে না +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,যখন এটির উদাহরণটি খোলা থাকে তখন {0} খোলা যাবে না DocType: DocType,"Make ""name"" searchable in Global Search",গ্লোবাল অনুসন্ধানে "নাম" সন্ধানযোগ্য করুন DocType: Data Migration Mapping,Data Migration Mapping,ডেটা মাইগ্রেশন ম্যাপিং DocType: Data Import,Partially Successful,আংশিকভাবে সফল DocType: Communication,Error,এরর apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},ক্ষেত্রের ধরন {0} থেকে {1} সারিতে {2} পরিবর্তন করা যাবে না -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZ ট্রে অ্যাপ্লিকেশন সংযোগ করার সময় ত্রুটি ...

Raw মুদ্রণ বৈশিষ্ট্যটি ব্যবহার করার জন্য আপনার QZ ট্রে অ্যাপ্লিকেশনটি ইনস্টল এবং চলতে হবে।

QZ ট্রে ডাউনলোড এবং ইনস্টল করতে এখানে ক্লিক করুন
কাঁচা মুদ্রণ সম্পর্কে আরো জানতে এখানে ক্লিক করুন ।" apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,ছবি তোল apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,আপনার সাথে যুক্ত যে বছর এড়িয়ে চলুন। DocType: Web Form,Allow Incomplete Forms,অসম্পূর্ণ ফর্ম অনুমতি দিন @@ -2628,7 +2670,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",একটি নতুন পৃষ্ঠায় খুলতে টার্গেট = "_blank" নির্বাচন করুন। DocType: Portal Settings,Portal Menu,পোর্টাল মেনু DocType: Website Settings,Landing Page,অবতরণ পাতা -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,সাইন আপ করুন অথবা শুরু করতে লগইন করুন DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","যোগাযোগ অপশন, যেমন "সেলস কোয়েরি, সাপোর্ট কোয়েরি" ইত্যাদি নতুন লাইনে বা কমা দ্বারা আলাদা।" apps/frappe/frappe/twofactor.py,Verfication Code,যাচাই কোড apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} ইতিমধ্যে সদস্যতামুক্ত @@ -2714,6 +2755,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,ডেটা DocType: Address,Sales User,বিক্রয় ব্যবহারকারী apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","ক্ষেত্র বৈশিষ্ট্য পরিবর্তন করুন (লুকান, পাঠযোগ্য, অনুমতি ইত্যাদি)" DocType: Property Setter,Field Name,ক্ষেত্র নাম +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,ক্রেতা DocType: Print Settings,Font Size,অক্ষরের আকার DocType: User,Last Password Reset Date,শেষ পাসওয়ার্ড রিসেট তারিখ DocType: System Settings,Date and Number Format,তারিখ এবং সংখ্যা বিন্যাস @@ -2779,6 +2821,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,গ্রুপ apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,বিদ্যমান সঙ্গে মার্জ করুন DocType: Blog Post,Blog Intro,ব্লগ প্রবন্ধ apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,নতুন উল্লেখ +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,ক্ষেত্রের উপর ঝাঁপ দাও DocType: Prepared Report,Report Name,নাম নাম apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,সর্বশেষ নথি পেতে রিফ্রেশ করুন। apps/frappe/frappe/core/doctype/communication/communication.js,Close,ঘনিষ্ঠ @@ -2788,10 +2831,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,ঘটনা DocType: Social Login Key,Access Token URL,অ্যাক্সেস টোকেন URL apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,আপনার সাইটের কনফিগারেশন ড্রপবক্স অ্যাক্সেস কী সেট করুন +DocType: Google Contacts,Google Contacts,গুগল পরিচিতি DocType: User,Reset Password Key,পাসওয়ার্ড কী পুনরায় সেট করুন apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,দ্বারা সংশোধন করা হয়েছে DocType: User,Bio,বায়ো apps/frappe/frappe/limits.py,"To renew, {0}.","পুনর্নবীকরণ, {0}।" +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,সফলভাবে সংরক্ষিত +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,এখানে লিঙ্ক করতে {0} এ একটি ইমেল পাঠান। DocType: File,Folder,ফোল্ডার DocType: DocField,Perm Level,পারম স্তর DocType: Print Settings,Page Settings,পৃষ্ঠা সেটিংস @@ -2820,6 +2866,7 @@ DocType: Workflow State,remove-sign,অপসারণ সাইন ইন DocType: Dashboard Chart,Full,সম্পূর্ণ DocType: DocType,User Cannot Create,ব্যবহারকারী তৈরি করতে পারবেন না apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,আপনি {0} পয়েন্ট অর্জন করেছেন +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,সেটআপ> ব্যবহারকারী DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","যদি আপনি এটি সেট করেন, তবে এই আইটেমটি নির্বাচিত পিতা-মাতার অধীনে ড্রপ ডাউন আসবে।" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,কোন ইমেইল নেই apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,নিম্নলিখিত ক্ষেত্র অনুপস্থিত: @@ -2833,13 +2880,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,ক DocType: Web Form,Web Form Fields,ওয়েব ফরম ক্ষেত্র DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,ওয়েবসাইটে ব্যবহারকারী সম্পাদনাযোগ্য ফর্ম। -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,স্থায়ীভাবে বাতিল {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,স্থায়ীভাবে বাতিল {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,বিকল্প 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,মোট apps/frappe/frappe/utils/password_strength.py,This is a very common password.,এটি একটি খুব সাধারণ পাসওয়ার্ড। DocType: Personal Data Deletion Request,Pending Approval,অনুমোদন অপেক্ষারত apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,নথি সঠিকভাবে বরাদ্দ করা যাবে না apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{0}: {1} এর জন্য অনুমতি নেই +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,কোন মান দেখানোর জন্য DocType: Personal Data Download Request,Personal Data Download Request,ব্যক্তিগত তথ্য ডাউনলোড অনুরোধ apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} এই দস্তাবেজটিকে {1} সাথে ভাগ করেছেন apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},{0} নির্বাচন করুন @@ -2855,7 +2903,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},এই ইমেলটি {0} এ পাঠানো হয়েছে এবং {1} তে অনুলিপি করা হয়েছে apps/frappe/frappe/email/smtp.py,Invalid login or password,অবৈধ লগইন বা পাসওয়ার্ড DocType: Social Login Key,Social Login Key,সামাজিক লগইন কী -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,সেটআপ থেকে ডিফল্ট ইমেইল অ্যাকাউন্ট সেটআপ করুন> ইমেইল> ইমেইল একাউন্ট apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,ফিল্টার সংরক্ষিত DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",কিভাবে এই মুদ্রা বিন্যাস করা উচিত? সেট না থাকলে সিস্টেম ডিফল্ট ব্যবহার করবে apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} সেট করা হয় {2} @@ -2981,6 +3028,7 @@ DocType: User,Location,অবস্থান apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,কোন তথ্য নেই DocType: Website Meta Tag,Website Meta Tag,ওয়েবসাইট মেটা ট্যাগ DocType: Workflow State,film,চলচ্চিত্র +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,ক্লিপবোর্ডে অনুলিপি করা হয়েছে। apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} সেটিং পাওয়া যায় নি apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,লেবেল বাধ্যতামূলক DocType: Webhook,Webhook Headers,ওয়েবহুক হেডার @@ -3187,7 +3235,7 @@ DocType: Address,Address Line 1,ঠিকানা লাইন 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,নথি প্রকার জন্য apps/frappe/frappe/model/base_document.py,Data missing in table,টেবিলের মধ্যে তথ্য অনুপস্থিত apps/frappe/frappe/utils/bot.py,Could not identify {0},সনাক্ত করা যায়নি {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,এই ফর্মটি লোড করার পরে এটি সংশোধন করা হয়েছে +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,এই ফর্মটি লোড করার পরে এটি সংশোধন করা হয়েছে apps/frappe/frappe/www/login.html,Back to Login,প্রবেশ করতে পেছান apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,সেট না DocType: Data Migration Mapping,Pull,টান @@ -3255,6 +3303,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,শিশু টে apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,ইমেইল একাউন্ট সেটআপের জন্য আপনার পাসওয়ার্ড লিখুন: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,অনেক অনুরোধ এক অনুরোধে। ছোট অনুরোধ পাঠান দয়া করে DocType: Social Login Key,Salesforce,বিক্রয় বল +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{1} এর {0} আমদানি হচ্ছে DocType: User,Tile,টালি apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} রুমটিতে অন্তত এক ব্যবহারকারী থাকা আবশ্যক। DocType: Email Rule,Is Spam,স্প্যাম @@ -3292,7 +3341,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,ফোল্ডারের-ঘনিষ্ঠ DocType: Data Migration Run,Pull Update,টান আপডেট করুন apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},একত্রিত {0} {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

DocType: SMS Settings,Enter url parameter for receiver nos,রিসিভার নং জন্য ইউআরএল পরামিতি লিখুন apps/frappe/frappe/utils/jinja.py,Syntax error in template,টেমপ্লেটে সিনট্যাক্স ত্রুটি apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,ফিল্টার টেবিল রিপোর্ট ফিল্টার মান সেট করুন। @@ -3305,6 +3353,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","দুঃ DocType: System Settings,In Days,দিনের মধ্যে DocType: Report,Add Total Row,মোট সারি যোগ করুন apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,সেশন শুরু ব্যর্থ হয়েছে +DocType: Translation,Verified,যাচাই DocType: Print Format,Custom HTML Help,কাস্টম এইচটিএমএল সাহায্য DocType: Address,Preferred Billing Address,পছন্দের বিলিং ঠিকানা apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,নির্ধারিত @@ -3319,7 +3368,6 @@ DocType: Help Article,Intermediate,অন্তর্বর্তী DocType: Module Def,Module Name,মডিউল নাম DocType: OAuth Authorization Code,Expiration time,মেয়াদ শেষ হওয়ার সময় apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","ডিফল্ট বিন্যাস, পৃষ্ঠা আকার, মুদ্রণ শৈলী ইত্যাদি সেট করুন।" -apps/frappe/frappe/desk/like.py,You cannot like something that you created,আপনি তৈরি করা কিছু পছন্দ করতে পারবেন না DocType: System Settings,Session Expiry,সেশন মেয়াদ শেষ DocType: DocType,Auto Name,অটো নাম apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,সংযুক্তি নির্বাচন করুন @@ -3347,6 +3395,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,সিস্টেম পৃষ্ঠা DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,নোট: ব্যর্থ ব্যাকআপগুলির জন্য ডিফল্ট ইমেল পাঠানো হয়। DocType: Custom DocPerm,Custom DocPerm,কাস্টম DocPerm +DocType: Translation,PR sent,পিআর পাঠানো হয়েছে DocType: Tag Doc Category,Doctype to Assign Tags,ট্যাগ assigns toctype DocType: Address,Warehouse,গুদাম apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,ড্রপবক্স সেটআপ @@ -3414,7 +3463,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + মন্তব্য যোগ করার জন্য লিখুন apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,ক্ষেত্র {0} নির্বাচনযোগ্য নয়। DocType: User,Birth Date,জন্ম তারিখ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,গ্রুপ ইন্ডেন্টেশন সঙ্গে DocType: List View Setting,Disable Count,সংখ্যা নিষ্ক্রিয় করুন DocType: Contact Us Settings,Email ID,ইমেইল আইডি apps/frappe/frappe/utils/password.py,Incorrect User or Password,ভুল ব্যবহারকারী বা পাসওয়ার্ড @@ -3447,6 +3495,7 @@ DocType: Website Settings,<head> HTML,<হেড> এইচটিএ DocType: Custom DocPerm,This role update User Permissions for a user,এই ভূমিকা ব্যবহারকারীর জন্য ব্যবহারকারীর অনুমতি আপডেট DocType: Website Theme,Theme,বিষয় DocType: Web Form,Show Sidebar,সাইডবার দেখান +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,গুগল যোগাযোগ ইন্টিগ্রেশন। apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,ডিফল্ট ইনবক্স apps/frappe/frappe/www/login.py,Invalid Login Token,অবৈধ লগইন টোকেন apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,প্রথমে নাম সেট করুন এবং রেকর্ড সংরক্ষণ করুন। @@ -3474,7 +3523,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,দয়া করে সঠিক করুন DocType: Top Bar Item,Top Bar Item,শীর্ষ বার আইটেম ,Role Permissions Manager,ভূমিকা অনুমতি ম্যানেজার -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,ত্রুটি ছিল। এই রিপোর্ট করুন। +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} বছর (গুলি) আগে apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,মহিলা DocType: System Settings,OTP Issuer Name,OTP ইস্যুকারী নাম apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,করতে যোগ করুন @@ -3574,6 +3623,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","ভা apps/frappe/frappe/model/document.py,none of,কেউ না DocType: Desktop Icon,Page,পৃষ্ঠা DocType: Workflow State,plus-sign,প্লাস সাইন ইন +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,পরিষ্কার ক্যাশে এবং পুনরায় লোড করুন apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,আপডেট করা যাবে না: ভুল / মেয়াদ শেষ লিঙ্ক। DocType: Kanban Board Column,Yellow,হলুদ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),একটি গ্রিডের ক্ষেত্রের জন্য কলামের সংখ্যা (গ্রিডের মোট কলাম 11 এর কম হওয়া উচিত) @@ -3588,6 +3638,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,ন DocType: Activity Log,Date,তারিখ DocType: Communication,Communication Type,যোগাযোগের ধরন apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,মূল টেবিল +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,তালিকা নেভিগেট করুন DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,সম্পূর্ণ ত্রুটি প্রদর্শন করুন এবং বিকাশকারীর সমস্যাগুলির প্রতিবেদন করার অনুমতি দিন DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3609,7 +3660,6 @@ DocType: Notification Recipient,Email By Role,ভূমিকা দ্বার apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,{0} এর বেশি গ্রাহক যোগ করার জন্য আপগ্রেড করুন apps/frappe/frappe/email/queue.py,This email was sent to {0},এই ইমেলটি {0} এ পাঠানো হয়েছিল DocType: User,Represents a User in the system.,সিস্টেমে একটি ব্যবহারকারী প্রতিনিধিত্ব করে। -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},পৃষ্ঠা {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,নতুন বিন্যাস শুরু করুন apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,একটা মন্তব্য যোগ করুন apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} এর {0} diff --git a/frappe/translations/bs.csv b/frappe/translations/bs.csv index 699e5c2c8c..4bc4f7b971 100644 --- a/frappe/translations/bs.csv +++ b/frappe/translations/bs.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Omogući gradijente DocType: DocType,Default Sort Order,Određen forumom Sort Order apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Prikazivanje samo numeričkih polja iz Izvještaja +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Pritisnite taster Alt da biste aktivirali dodatne prečice u meniju i bočnoj traci DocType: Workflow State,folder-open,folder-open DocType: Customize Form,Is Table,Is Table apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Nije moguće otvoriti pridruženu datoteku. Da li ste ga izvezli kao CSV? DocType: DocField,No Copy,No Copy DocType: Custom Field,Default Value,Zadana vrijednost apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Append To je obavezno za dolazne poruke +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Sinhronizacija kontakata DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Detalj preslikavanja podataka apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Unfollow apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",PDF ispis preko "Raw Print" još nije podržan. Uklonite mapiranje štampača u Printer Settings i pokušajte ponovo. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} i {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Došlo je do greške pri spremanju filtera apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Unesite svoju lozinku apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Nije moguće izbrisati mape Home i Attachments +DocType: Email Account,Enable Automatic Linking in Documents,Omogućite automatsko povezivanje u dokumentima DocType: Contact Us Settings,Settings for Contact Us Page,Podešavanja za kontakt stranicu DocType: Social Login Key,Social Login Provider,Social Login Provider +DocType: Email Account,"For more information, click here.","Za više informacija, kliknite ovdje ." DocType: Transaction Log,Previous Hash,Previous Hash DocType: Notification,Value Changed,Promenjena vrednost DocType: Report,Report Type,Type Report @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Pravilo energetske tačke apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,Molimo unesite ID klijenta prije uključivanja društvenog prijavljivanja DocType: Communication,Has Attachment,Has Attachment DocType: User,Email Signature,Potpis e-pošte -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} godina (a) ,Addresses And Contacts,Adrese i kontakti apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Ovaj Kanban odbor će biti privatan DocType: Data Migration Run,Current Mapping,Current Mapping @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Odabirete opciju Sync Option kao ALL, ona će ponovo sinhronizovati sve pročitane i nepročitane poruke sa servera. Ovo takođe može uzrokovati dupliciranje komunikacije (e-poruke)." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Poslednje sinhronizovano {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Nije moguće promijeniti sadržaj zaglavlja +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Nisu pronađeni rezultati za '

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Nije dozvoljeno promijeniti {0} nakon slanja apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Aplikacija je ažurirana na novu verziju, osvežite ovu stranicu" DocType: User,User Image,User Image @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Ozna apps/frappe/frappe/public/js/frappe/chat.js,Discard,Odbaci DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Izaberite sliku širine približno 150 piksela sa transparentnom pozadinom za najbolje rezultate. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,Ponovno +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Odabrano je {0} vrijednosti DocType: Blog Post,Email Sent,Email poslan DocType: Communication,Read by Recipient On,Čitanje od strane primaoca Uključeno DocType: User,Allow user to login only after this hour (0-24),Dozvolite korisniku da se prijavi samo nakon ovog sata (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Modul za izvoz DocType: DocType,Fields,Polja -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Nije vam dozvoljeno da štampate ovaj dokument +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Nije vam dozvoljeno da štampate ovaj dokument apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Roditelj apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Vaša sesija je istekla, prijavite se ponovo da biste nastavili." DocType: Assignment Rule,Priority,Prioritet @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Reset OTP Secret DocType: DocType,UPPER CASE,UPPER CASE apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,Postavite adresu e-pošte DocType: Communication,Marked As Spam,Označeno kao Spam +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Adresa e-pošte čije Google kontakte treba sinkronizirati. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Uvoz pretplatnika apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Save Filter DocType: Address,Preferred Shipping Address,Preferred Shipping Address DocType: GCalendar Account,The name that will appear in Google Calendar,Ime koje će se pojaviti u Google kalendaru +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Kliknite na {0} da generirate Refresh Token. DocType: Email Account,Disable SMTP server authentication,Onemogućite provjeru autentičnosti SMTP poslužitelja DocType: Email Account,Total number of emails to sync in initial sync process ,Ukupan broj e-poruka za sinhronizaciju u početnom procesu sinkronizacije DocType: System Settings,Enable Password Policy,Omogući pravilo lozinke @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Insert Code apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Not In DocType: Auto Repeat,Start Date,Datum početka apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Set Chart +DocType: Website Theme,Theme JSON,Tema JSON apps/frappe/frappe/www/list.py,My Account,Moj račun DocType: DocType,Is Published Field,Is Published Field DocType: DocField,Set non-standard precision for a Float or Currency field,Postavite nestandardnu preciznost za polje Float ili Currency @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Dodaj Reference: {{ reference_doctype }} {{ reference_name }} za slanje reference dokumenta DocType: LDAP Settings,LDAP First Name Field,Polje LDAP imena apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Default Sending i Inbox -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Podešavanje> Prilagodi obrazac apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",Za ažuriranje možete ažurirati samo selektivne stupce. apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',Podrazumevano za polje 'Proveri' mora biti '0' ili '1' apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Podijelite ovaj dokument sa @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Domene HTML DocType: Blog Settings,Blog Settings,Postavke bloga apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Ime DocType treba početi slovom i može se sastojati samo od slova, brojeva, razmaka i podvlake" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Podešavanje> Korisničke dozvole DocType: Communication,Integrations can use this field to set email delivery status,Integracije mogu koristiti ovo polje za postavljanje statusa slanja e-pošte apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Podešavanja mrežnog prolaza za plaćanje DocType: Print Settings,Fonts,Fontovi DocType: Notification,Channel,Kanal DocType: Communication,Opened,Opened DocType: Workflow Transition,Conditions,Uslovi +apps/frappe/frappe/config/website.py,A user who posts blogs.,Korisnik koji postavlja blogove. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Nemate nalog? Prijaviti se apps/frappe/frappe/utils/file_manager.py,Added {0},Dodano {0} DocType: Newsletter,Create and Send Newsletters,Kreirajte i pošaljite biltene DocType: Website Settings,Footer Items,Stavke podnožja +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Podesite podrazumevani nalog e-pošte iz Podešavanje> E-pošta> E-mail nalog DocType: Website Slideshow Item,Website Slideshow Item,Website Slideshow Item apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registrirajte aplikaciju OAuth Client DocType: Error Snapshot,Frames,Okviri @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Nivo 0 je za dozvole na nivou dokumenta, više nivoe za dozvole na nivou polja." DocType: Address,City/Town,Grad / mjesto DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Ovo će poništiti vašu trenutnu temu, jeste li sigurni da želite nastaviti?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Obavezna polja potrebna u {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Greška prilikom povezivanja na račun e-pošte {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Došlo je do pogreške prilikom kreiranja ponavljanja @@ -528,7 +537,7 @@ DocType: Event,Event Category,Kategorija događaja apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Kolone zasnovane na apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Edit Heading DocType: Communication,Received,Primljeno -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Nije vam dozvoljeno pristupiti ovoj stranici. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Nije vam dozvoljeno pristupiti ovoj stranici. DocType: User Social Login,User Social Login,User Social Login apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,Napišite Python datoteku u istu mapu u kojoj je to spremljeno i vratite stupac i rezultat. DocType: Contact,Purchase Manager,Purchase Manager @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Conf apps/frappe/frappe/utils/data.py,Operator must be one of {0},Operator mora biti jedan od {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,If Owner DocType: Data Migration Run,Trigger Name,Trigger Name -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Pišite naslove i uvod u svoj blog. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Ukloni polje apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Skupi sve apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Boja pozadine @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,Bar DocType: SMS Settings,Enter url parameter for message,Unesite parametar URL-a za poruku apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Novi prilagođeni format ispisa apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} već postoji +DocType: Workflow Document State,Is Optional State,Je Opciona Država DocType: Address,Purchase User,Kupac korisnika DocType: Data Migration Run,Insert,Umetni DocType: Web Form,Route to Success Link,Put do uspjeha Link @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Korisni DocType: File,Is Home Folder,Je početna mapa apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Tip: DocType: Post,Is Pinned,Is Pinned -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Nema dozvole za '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Nema dozvole za '{0}' {1} DocType: Patch Log,Patch Log,Dnevnik zakrpe DocType: Print Format,Print Format Builder,Print Format Builder 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 se mogu prijaviti s bilo koje IP adrese koristeći Autof. Ovo se takođe može postaviti samo za određene korisnike u Korisničkoj stranici" apps/frappe/frappe/utils/data.py,only.,samo. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,Uslov '{0}' je nevažeći DocType: Auto Email Report,Day of Week,Dan sedmice +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Omogućite Google API u Google postavkama. DocType: DocField,Text Editor,Uređivač teksta apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Cut apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Pretražite ili upišite naredbu @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,Broj sigurnosnih kopija DB-a ne može biti manji od 1 DocType: Workflow State,ban-circle,ban-krug DocType: Data Export,Excel,Excel +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Zaglavlje, mrvice i meta oznake" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Adresa e-pošte za podršku nije navedena DocType: Comment,Published,Objavljeno DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","Napomena: Za najbolje rezultate, slike moraju biti iste veličine i širine moraju biti veće od visine." @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Scheduler Last Event apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Izvještaj o svim dionicama dokumenta DocType: Website Sidebar Item,Website Sidebar Item,Stranica Sidebar Item apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Uraditi +DocType: Google Settings,Google Settings,Google postavke apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Izaberite svoju zemlju, vremensku zonu i valutu" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Ovdje unesite statične url parametre (npr. Sender = ERPNext, username = ERPNext, password = 1234 itd.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Nema e-mail naloga @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token ,Setup Wizard,Setup Wizard apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Toggle Chart +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,Sinhronizacija DocType: Data Migration Run,Current Mapping Action,Trenutna akcija mapiranja DocType: Email Account,Initial Sync Count,Initial Sync Count apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Podešavanja za kontakt stranicu. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Print Format Type apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Nema dozvola za ovaj kriterij. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Expand All +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nije pronađen zadani predložak adrese. Kreirajte novi iz Podešavanja> Štampanje i brendiranje> Predložak adrese. DocType: Tag Doc Category,Tag Doc Category,Tag Doc Category DocType: Data Import,Generated File,Generated File apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Notes @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Polje Timeline mora biti Link ili Dynamic Link DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Obavijesti i masovne poruke će biti poslate sa ovog odlaznog servera. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Ovo je top-100 zajednička lozinka. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Trajno slanje {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Trajno slanje {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} ne postoji, izaberite novi cilj za spajanje" DocType: Energy Point Rule,Multiplier Field,Multiplier Field DocType: Workflow,Workflow State Field,Polje stanja stanja posla @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} je cenio vaš rad na {1} sa {2} tačkama DocType: Auto Email Report,Zero means send records updated at anytime,Nula znači poslati zapise ažurirane u bilo koje vrijeme apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Vrijednost se ne može promijeniti za {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API postavke. DocType: System Settings,Force User to Reset Password,Prisili korisnika da resetuje lozinku apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Izvješćima graditelja izvješća upravlja izravno graditelj izvješća. Ništa za raditi. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Uredi filtar @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,za DocType: S3 Backup Settings,eu-north-1,eu-north-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: dozvoljeno je samo jedno pravilo s istom ulogom, razinom i {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Nije vam dozvoljeno da ažurirate ovaj dokument Web obrasca -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Dostignuto je maksimalno ograničenje privitka za ovaj zapis. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Dostignuto je maksimalno ograničenje privitka za ovaj zapis. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,Provjerite jesu li dokumenti za referentnu komunikaciju kružno povezani. DocType: DocField,Allow in Quick Entry,Dozvolite u brzom unosu DocType: Error Snapshot,Locals,Lokalno stanovništvo @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Exception Type apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},Nije moguće izbrisati ili otkazati jer je {0} {1} povezan s {2} {3} {4} apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTP tajnu može poništiti samo administrator. -DocType: Web Form Field,Page Break,Page Break DocType: Website Script,Website Script,Website Script DocType: Integration Request,Subscription Notification,Obavijest o pretplati DocType: DocType,Quick Entry,Brzi unos @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,Postavite svojstvo Nakon upozoren apps/frappe/frappe/__init__.py,Thank you,Hvala ti apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slabo kvačilo za internu integraciju apps/frappe/frappe/config/settings.py,Import Data,Uvoz podataka +DocType: Translation,Contributed Translation Doctype Name,Doprinos prevođenja Doctype Name DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID DocType: Review Level,Review Level,Nivo pregleda @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Uspešno obavljeno apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Lista apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Cenim -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Novo {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Is Primary Contact DocType: Print Format,Raw Commands,Raw Commands apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Stilski listovi za formate za ispis @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Greške u događaj apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Pronađite {0} u {1} DocType: Email Account,Use SSL,Koristite SSL DocType: DocField,In Standard Filter,U standardnom filteru +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Nema Google kontakata za sinhronizaciju. DocType: Data Migration Run,Total Pages,Ukupno stranica apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: Polje '{1}' ne može se postaviti kao jedinstveno jer ima ne-jedinstvene vrijednosti 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 prijave. Ako nije omogućeno, korisnici će biti obaviješteni samo jednom." @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,Automation apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Unzipping datoteke ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Potražite '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Nešto je pošlo po zlu -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Molimo vas da sačuvate pre dodavanja. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,Molimo vas da sačuvate pre dodavanja. DocType: Version,Table HTML,Table HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,hub DocType: Page,Standard,Standard @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Nema rezult apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} zapisa izbrisano apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,Nešto je krenulo naopako prilikom generisanja tokena za pristup dropboxu. Za više detalja provjerite dnevnik grešaka. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Descendants Of -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nije pronađen zadani predložak adrese. Kreirajte novi iz Podešavanja> Štampanje i brendiranje> Predložak adrese. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google kontakti su konfigurirani. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Sakrij detalje apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Stilovi fontova apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Vaša pretplata će isteći {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Provjera autentičnosti nije uspjela prilikom primanja poruka e-pošte s računa e-pošte {0}. Poruka sa servera: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Statistika zasnovana na prošlotjednoj izvedbi (od {0} do {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,Automatsko povezivanje može se aktivirati samo ako je Incoming omogućen. DocType: Website Settings,Title Prefix,Naslov Prefix apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Aplikacije za autentifikaciju koje možete koristiti su: DocType: Bulk Update,Max 500 records at a time,Maksimalno 500 zapisa odjednom @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,Filteri izvještaja apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Izaberite Kolone DocType: Event,Participants,Učesnici DocType: Auto Repeat,Amended From,Amended From -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Vaše informacije su poslane +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Vaše informacije su poslane DocType: Help Category,Help Category,Kategorija pomoći apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 mjesec apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Izaberite postojeći format da biste uredili ili pokrenuli novi format. @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Polje za praćenje DocType: User,Generate Keys,Generate Keys DocType: Comment,Unshared,Unshared -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Sačuvano +DocType: Translation,Saved,Sačuvano DocType: OAuth Client,OAuth Client,OAuth Client DocType: System Settings,Disable Standard Email Footer,Onemogući Standardnu podnožje e-pošte apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Print Format {0} je onemogućen @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Poslednji put DocType: Data Import,Action,Akcija apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Potreban je ključ klijenta DocType: Chat Profile,Notifications,Obaveštenja +DocType: Translation,Contributed,Doprinos DocType: System Settings,mm/dd/yyyy,mm / dd / gggg DocType: Report,Custom Report,Custom Report DocType: Workflow State,info-sign,info-znak @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Kontakt DocType: LDAP Settings,LDAP Username Field,Polje LDAP korisničkog imena apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Polje {0} ne može se postaviti kao jedinstveno u {1}, jer postoje ne-jedinstvene postojeće vrijednosti" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Podešavanje> Prilagodi obrazac DocType: User,Social Logins,Social Logins DocType: Workflow State,Trash,Trash DocType: Stripe Settings,Secret Key,Tajni ključ @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,Title Field apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Nije moguće povezati se na odlazni poslužitelj e-pošte DocType: File,File URL,URL datoteke DocType: Help Article,Likes,Likes +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Integracija Google kontakata je onemogućena. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Morate biti prijavljeni i imati ulogu upravitelja sistema da biste mogli pristupiti sigurnosnim kopijama. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,First Level DocType: Blogger,Short Name,Kratko ime @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Import Zip DocType: Contact,Gender,Rod DocType: Workflow State,thumbs-down,palci dole -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Red treba da bude jedan od {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Nije moguće postaviti obavijest o vrsti dokumenta {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Dodavanje System Manager-a ovom korisniku jer mora postojati najmanje jedan System Manager apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Poslata e-pošta dobrodošlice DocType: Transaction Log,Chaining Hash,Chaining Hash DocType: Contact,Maintenance Manager,Menadžer održavanja +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Za poređenje, koristite> 5, <10 ili = 324. Za opsege, koristite 5:10 (za vrijednosti između 5 i 10)." apps/frappe/frappe/utils/bot.py,show,show apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URL za dijeljenje apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Nepodržani format datoteke @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,Obaveštenje DocType: Data Import,Show only errors,Prikaži samo greške DocType: Energy Point Log,Review,Pregled apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Rows Removed -DocType: GSuite Settings,Google Credentials,Google akreditivi +DocType: Google Settings,Google Credentials,Google akreditivi apps/frappe/frappe/www/login.html,Or login with,Ili se prijavite sa apps/frappe/frappe/model/document.py,Record does not exist,Zapis ne postoji apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Novo ime izveštaja @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,List DocType: Workflow State,th-large,th-large apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Nije moguće postaviti Dodjeljivanje slanja ako nije dostupno apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Nije povezan ni sa jednim zapisom +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Greška pri povezivanju sa aplikacijom QZ Tray ...

Da biste koristili značajku Raw Print, morate instalirati i pokrenuti aplikaciju QZ Tray.

Kliknite ovde da biste preuzeli i instalirali QZ Tray .
Kliknite ovde da biste saznali više o Raw Printing-u ." DocType: Chat Message,Content,Sadržaj DocType: Workflow Transition,Allow Self Approval,Dozvolite samopotvrđivanje apps/frappe/frappe/www/qrcode.py,Page has expired!,Stranica je istekla! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,rukom desno DocType: Website Settings,Banner is above the Top Menu Bar.,Banner je iznad gornje trake izbornika. apps/frappe/frappe/www/update-password.html,Invalid Password,Neispravna lozinka apps/frappe/frappe/utils/data.py,1 month ago,Pre 1 mesec +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Dozvoli pristup Google kontaktima DocType: OAuth Client,App Client ID,ID klijenta aplikacije DocType: DocField,Currency,Valuta DocType: Website Settings,Banner,Banner @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Gol DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Ako uloga nema pristup na nivou 0, onda su viši nivoi besmisleni." DocType: ToDo,Reference Type,Reference Type -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Dozvoljava DocType, DocType. Budi pazljiv!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Dozvoljava DocType, DocType. Budi pazljiv!" DocType: Domain Settings,Domain Settings,Podešavanja domena DocType: Auto Email Report,Dynamic Report Filters,Dynamic Report Filters DocType: Energy Point Log,Appreciation,Uvažavanje @@ -1466,6 +1487,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,us-zapad-2 DocType: DocType,Is Single,Is Single apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Kreirajte novi format +DocType: Google Contacts,Authorize Google Contacts Access,Autorizirajte Google Contacts Access DocType: S3 Backup Settings,Endpoint URL,URL krajnje točke DocType: Social Login Key,Google,Google DocType: Contact,Department,Department @@ -1480,7 +1502,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Assign To DocType: List Filter,List Filter,List Filter DocType: Dashboard Chart Link,Chart,Chart apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Nije moguće ukloniti -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Pošaljite ovaj dokument radi potvrde +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Pošaljite ovaj dokument radi potvrde apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} već postoji. Izaberite drugo ime apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,U ovom obrascu imate nespremljene promjene. Sačuvajte pre nego što nastavite. apps/frappe/frappe/model/document.py,Action Failed,Action Failed @@ -1562,6 +1584,7 @@ DocType: DocField,Display,Display apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Odgovori svima DocType: Calendar View,Subject Field,Subject Field apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Istek sesije mora biti u formatu {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},Primjena: {0} DocType: Workflow State,zoom-in,priblizi apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Neuspjelo povezivanje na server apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Datum {0} mora biti u formatu: {1} @@ -1573,8 +1596,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Ikona će se pojaviti na dugmetu DocType: Role Permission for Page and Report,Set Role For,Postavi ulogu za +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Automatsko povezivanje može se aktivirati samo za jedan račun e-pošte. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Nema dodeljenih naloga za e-poštu +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Račun e-pošte nije postavljen. Kreirajte novi e-mail nalog iz Podešavanje> E-mail> E-mail nalog apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Assignment +DocType: Google Contacts,Last Sync On,Poslednja sinhronizacija uključena apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},dobila je {0} automatskim pravilom {1} apps/frappe/frappe/config/website.py,Portal,Portal apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Hvala vam na e-mail @@ -1595,7 +1621,6 @@ DocType: GSuite Settings,GSuite Settings,GSuite Settings DocType: Integration Request,Remote,Remote DocType: File,Thumbnail URL,URL Thumbnail apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Download Report -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Podešavanje> Korisnik apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Prilagodbe za {0} izvezene u:
{1} DocType: GCalendar Account,Calendar Name,Naziv kalendara apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Vaš ID za prijavu je @@ -1645,6 +1670,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Idite apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Polje slike mora biti važeće ime polja apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,Morate biti prijavljeni da biste pristupili ovoj stranici DocType: Assignment Rule,Example: {{ subject }},Primjer: {{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Ime polja {0} je ograničeno apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Ne možete isključiti 'Samo za čitanje' za polje {0} DocType: Social Login Key,Enable Social Login,Omogući društvenu prijavu DocType: Workflow,Rules defining transition of state in the workflow.,Pravila koja definiraju tranziciju stanja u tijeku rada. @@ -1665,10 +1691,10 @@ DocType: Website Settings,Route Redirects,Preusmjeravanja rute apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Email Inbox apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},obnovio {0} kao {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Automatski dodelite dokumente korisnicima +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Open Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Šabloni e-pošte za uobičajene upite. DocType: Letter Head,Letter Head Based On,Letter Head Based On apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Zatvorite ovaj prozor -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Plaćanje završeno DocType: Contact,Designation,Oznaka DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Meta tagovi @@ -1707,6 +1733,7 @@ DocType: System Settings,Choose authentication method to be used by all users,Od DocType: Error Snapshot,Parent Error Snapshot,Snimak roditeljske greške DocType: GCalendar Account,GCalendar Account,GCalendar Account DocType: Language,Language Name,Ime jezika +DocType: Workflow Document State,Workflow Action is not created for optional states,Akcija toka posla nije kreirana za opcionalna stanja DocType: Customize Form,Customize Form,Prilagodi obrazac DocType: DocType,Image Field,Polje slike apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Dodano {0} ({1}) @@ -1748,6 +1775,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,Primijenite ovo pravilo ako je korisnik vlasnik DocType: About Us Settings,Org History Heading,Org History Heading apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,greska servera +DocType: Contact,Google Contacts Description,Opis Google kontakata apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Standardne uloge se ne mogu preimenovati DocType: Review Level,Review Points,Bodovi pregleda apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Nedostaje parametar Kanban Board Name @@ -1765,7 +1793,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Nije u Developer modu! Postavite u site_config.json ili napravite 'Custom' DocType. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,stekao {0} bodova DocType: Web Form,Success Message,Message Message -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Za poređenje, koristite> 5, <10 ili = 324. Za opsege, koristite 5:10 (za vrijednosti između 5 i 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Opis za unos stranice, u običnom tekstu, samo nekoliko redaka. (najviše 140 znakova)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Prikaži dozvole DocType: DocType,Restrict To Domain,Ograniči na domenu @@ -1787,6 +1814,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Ne pre apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Set Quantity DocType: Auto Repeat,End Date,Datum završetka DocType: Workflow Transition,Next State,Next State +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Google kontakti su sinkronizirani. DocType: System Settings,Is First Startup,Prvi je start apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},ažurirano na {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Premesti u @@ -1836,6 +1864,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Kalendar apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Data Import Template DocType: Workflow State,hand-left,levo +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Izaberite više stavki liste apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Veličina sigurnosne kopije: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Povezano sa {0} DocType: Braintree Settings,Private Key,Privatni ključ @@ -1878,13 +1907,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Interes DocType: Bulk Update,Limit,Limit DocType: Print Settings,Print taxes with zero amount,Štampajte poreze sa nultim iznosom -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Račun e-pošte nije postavljen. Kreirajte novi e-mail nalog iz Podešavanje> E-pošta> E-mail nalog DocType: Workflow State,Book,Book DocType: S3 Backup Settings,Access Key ID,Pristup ID-u ključa DocType: Chat Message,URLs,URL-ovi apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Imena i prezimena sami su lako pogoditi. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Prijavi {0} DocType: About Us Settings,Team Members Heading,Naslov članova tima +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Izaberite stavku liste apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Dokument {0} je postavljen na stanje {1} do {2} DocType: Address Template,Address Template,Predložak adrese DocType: Workflow State,step-backward,korak-nazad @@ -1908,6 +1937,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Izvoz prilagođenih dozvola apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Nema: Kraj radnog toka DocType: Version,Version,Verzija +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Otvorite stavku liste apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 mjeseci DocType: Chat Message,Group,Grupa apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Postoji neki problem sa URL-om datoteke: {0} @@ -1963,6 +1993,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 godina apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} je vratio vaše tačke na {1} DocType: Workflow State,arrow-down,strelica-dole DocType: Data Import,Ignore encoding errors,Zanemari greške kodiranja +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Pejzaž DocType: Letter Head,Letter Head Name,Ime glave pisma DocType: Web Form,Client Script,Client Script DocType: Assignment Rule,Higher priority rule will be applied first,Prvo će se primijeniti pravilo višeg prioriteta @@ -2007,6 +2038,7 @@ DocType: Kanban Board Column,Green,Zelena apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Za nove zapise neophodna su samo obavezna polja. Ako želite, možete obrisati neobavezne kolone." apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} mora početi i završiti slovom i može sadržavati samo slova, crticu ili donju crtu." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Trigger Primary Action apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Kreirajte e-poštu korisnika apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Polje sortiranja {0} mora biti važeće ime polja DocType: Auto Email Report,Filter Meta,Filtrirajte Meta @@ -2036,6 +2068,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Timeline Field apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Učitavanje... DocType: Auto Email Report,Half Yearly,Pola godine +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Moj profil apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Datum zadnje izmjene DocType: Contact,First Name,Ime DocType: Post,Comments,Komentari @@ -2058,6 +2091,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Content Hash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Postovi od {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} dodijeljeno {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Nema novih sinhronizovanih Google kontakata. DocType: Workflow State,globe,globe apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Prosjek od {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Obrišite dnevnike grešaka @@ -2084,6 +2118,8 @@ DocType: Workflow State,Inverse,Inverse DocType: Activity Log,Closed,Zatvoreno DocType: Report,Query,Upit DocType: Notification,Days After,Days After +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Prečice stranice +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portret apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Zahtev je istekao DocType: System Settings,Email Footer Address,Adresa podnožja e-pošte apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Ažuriranje energetske tačke @@ -2111,6 +2147,7 @@ For Select, enter list of Options, each on a new line.","Za veze, unesite DocTyp apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,Pre 1 minut apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Nema aktivnih sesija apps/frappe/frappe/model/base_document.py,Row,Row +DocType: Contact,Middle Name,Srednje ime apps/frappe/frappe/public/js/frappe/request.js,Please try again,Molimo pokušajte ponovo DocType: Dashboard Chart,Chart Options,Opcije grafikona DocType: Data Migration Run,Push Failed,Push Failed @@ -2139,6 +2176,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,resize-small DocType: Comment,Relinked,Relinked DocType: Role Permission for Page and Report,Roles HTML,Uloga HTML-a +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Idi apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Workflow će početi nakon spremanja. 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-u, kopirajte sa HTML oznakama." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Datumi su često lako pogoditi. @@ -2167,7 +2205,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Desktop Icon apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,otkazao ovaj dokument apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Period -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Podešavanje> Korisničke dozvole apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} cijeni {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Promijenjene vrijednosti apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Greška u obaveštenju @@ -2232,6 +2269,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Bulk Delete DocType: DocShare,Document Name,Naziv dokumenta apps/frappe/frappe/config/customization.py,Add your own translations,Dodajte sopstvene prevode +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Navigacija liste dole DocType: S3 Backup Settings,eu-central-1,eu-central-1 DocType: Auto Repeat,Yearly,Godišnje apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Preimenuj @@ -2282,6 +2320,7 @@ DocType: Workflow State,plane,avionom apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Nested set error. Molimo kontaktirajte administratora. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Prikaži izvještaj DocType: Auto Repeat,Auto Repeat Schedule,Raspored automatskog ponavljanja +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,View Ref DocType: Address,Office,Office DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} dana @@ -2315,7 +2354,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Po apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Moje postavke apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Naziv grupe ne može biti prazan. DocType: Workflow State,road,cesta -DocType: Website Route Redirect,Source,Izvor +DocType: Contact,Source,Izvor apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Aktivne sesije apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Može biti samo jedan Fold u formi apps/frappe/frappe/public/js/frappe/chat.js,New Chat,New Chat @@ -2337,6 +2376,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Unesite URL za autorizaciju DocType: Email Account,Send Notification to,Pošalji obaveštenje apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Postavke sigurnosne kopije spremnika +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,Nešto je krenulo naopako tokom generacije simbola. Kliknite na {0} da biste generirali novu. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Ukloniti sve prilagodbe? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Samo administrator može uređivati DocType: Auto Repeat,Reference Document,Referentni dokument @@ -2361,6 +2401,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Uloge se mogu postaviti za korisnike sa njihove korisničke stranice. DocType: Website Settings,Include Search in Top Bar,Uključi pretraživanje u Top Bar apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Hitno] Greška prilikom kreiranja ponavljajućeg% s za% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globalni prečaci DocType: Help Article,Author,Author DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Nije pronađen nijedan dokument za date filtre @@ -2396,10 +2437,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, Red {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Ako prenosite nove zapise, "Naming Series" postaje obavezan, ako je prisutan." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Edit Properties -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Ne može se otvoriti instanca kada je njen {0} otvoren +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,Ne može se otvoriti instanca kada je njen {0} otvoren DocType: Activity Log,Timeline Name,Timeline Name DocType: Comment,Workflow,Workflow apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Molimo postavite Osnovni URL u Social Login Key za Frappe +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Prečice na tastaturi DocType: Portal Settings,Custom Menu Items,Custom Menu items apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,Dužina od {0} treba biti između 1 i 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Izgubljena konekcija. Neke funkcije možda neće raditi. @@ -2462,6 +2504,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Dodani redo DocType: DocType,Setup,Postaviti apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} je uspješno kreirano apps/frappe/frappe/www/update-password.html,New Password,Nova šifra +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Izaberite polje apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Ostavite ovaj razgovor DocType: About Us Settings,Team Members,Članovi tima DocType: Blog Settings,Writers Introduction,Writers Introduction @@ -2531,13 +2574,12 @@ DocType: Chat Room,Name,Ime DocType: Communication,Email Template,Email Template DocType: Energy Point Settings,Review Levels,Pregledni nivoi DocType: Print Format,Raw Printing,Raw Printing -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Nije moguće otvoriti {0} kada je njegova instanca otvorena +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,Nije moguće otvoriti {0} kada je njegova instanca otvorena DocType: DocType,"Make ""name"" searchable in Global Search",Napravite "ime" za pretraživanje u globalnoj pretrazi DocType: Data Migration Mapping,Data Migration Mapping,Mapiranje migracije podataka DocType: Data Import,Partially Successful,Delimično uspešno DocType: Communication,Error,Greška apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Tip polja se ne može promijeniti od {0} do {1} u redu {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Greška pri povezivanju sa aplikacijom QZ Tray ...

Da biste koristili značajku Raw Print, morate instalirati i pokrenuti aplikaciju QZ Tray.

Kliknite ovde da biste preuzeli i instalirali QZ Tray .
Kliknite ovde da biste saznali više o Raw Printing-u ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Uslikaj apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,Izbegavajte godine koje su povezane s vama. DocType: Web Form,Allow Incomplete Forms,Dozvoli nepotpune obrasce @@ -2633,7 +2675,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Izaberite target = "_blank" da biste otvorili novu stranicu. DocType: Portal Settings,Portal Menu,Izbornik portala DocType: Website Settings,Landing Page,Landing Page -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,Prijavite se ili se prijavite da biste započeli DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opcije kontakta, kao što su "Prodajni upit, upit za podršku" itd. Svaka na novoj liniji ili odvojene zarezima." apps/frappe/frappe/twofactor.py,Verfication Code,Verification Code apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} je već otkazano @@ -2719,6 +2760,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Mapiranje plana DocType: Address,Sales User,Prodajni korisnik apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Promjena svojstava polja (sakrij, samo za čitanje, dozvolu itd.)" DocType: Property Setter,Field Name,Ime polja +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Kupac DocType: Print Settings,Font Size,Veličina slova DocType: User,Last Password Reset Date,Datum zadnje resetiranja lozinke DocType: System Settings,Date and Number Format,Format datuma i broja @@ -2784,6 +2826,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Grupni čvor apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Spoji se sa postojećim DocType: Blog Post,Blog Intro,Blog Intro apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,New Mention +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Skoči na polje DocType: Prepared Report,Report Name,Naziv izveštaja apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Osvežite da biste dobili najnoviji dokument. apps/frappe/frappe/core/doctype/communication/communication.js,Close,Zatvori @@ -2793,10 +2836,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Događaj DocType: Social Login Key,Access Token URL,Pristupite Token URL-u apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Molimo vas da postavite Dropbox pristupne ključeve u konfiguraciju vašeg sajta +DocType: Google Contacts,Google Contacts,Google kontakti DocType: User,Reset Password Key,Resetiraj lozinku apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Modified By DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.","Za obnovu, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Uspešno sačuvano +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Pošaljite e-poruku na {0} da biste je povezali ovdje. DocType: File,Folder,Folder DocType: DocField,Perm Level,Perm Level DocType: Print Settings,Page Settings,Page Settings @@ -2826,6 +2872,7 @@ DocType: Workflow State,remove-sign,remove-sign DocType: Dashboard Chart,Full,Pun DocType: DocType,User Cannot Create,Korisnik ne može kreirati apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Dobili ste {0} tačku +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Podešavanje> Korisnik 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 se pojaviti u padajućem izborniku pod odabranim roditeljem." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,No Emails apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Nedostaju sljedeća polja: @@ -2839,13 +2886,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Pri DocType: Web Form,Web Form Fields,Polja web obrasca DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Obrazac za uređivanje korisnika na web stranici. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Trajno Otkaži {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Trajno Otkaži {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Opcija 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,Ukupno apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Ovo je vrlo uobičajena lozinka. DocType: Personal Data Deletion Request,Pending Approval,Očekuje se odobrenje apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Dokument nije mogao biti pravilno dodeljen apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Nije dopušteno za {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Nema vrijednosti za prikazivanje DocType: Personal Data Download Request,Personal Data Download Request,Zahtev za preuzimanje ličnih podataka apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} deli ovaj dokument sa {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Izaberite {0} @@ -2861,7 +2909,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Ova poruka e-pošte poslana je na {0} i kopirana u {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,Nevažeća prijava ili lozinka DocType: Social Login Key,Social Login Key,Social Login Key -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Podesite podrazumevani nalog e-pošte iz Podešavanje> E-pošta> E-mail nalog apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filtri su spremljeni DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Kako bi se ta valuta trebala formatirati? Ako nije postavljeno, koristit će se zadane postavke sustava" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} je postavljen na stanje {2} @@ -2987,6 +3034,7 @@ DocType: User,Location,Lokacija apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Nema podataka DocType: Website Meta Tag,Website Meta Tag,Meta Tag DocType: Workflow State,film,film +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Kopirano u međuspremnik. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Postavke nisu pronađene apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Oznaka je obavezna DocType: Webhook,Webhook Headers,Webhook Headers @@ -3195,7 +3243,7 @@ DocType: Address,Address Line 1,Adresa Line 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Za vrstu dokumenta apps/frappe/frappe/model/base_document.py,Data missing in table,Nedostaju podaci u tabeli apps/frappe/frappe/utils/bot.py,Could not identify {0},Nije moguće prepoznati {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Ovaj obrazac je izmijenjen nakon što ste ga učitali +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Ovaj obrazac je izmijenjen nakon što ste ga učitali apps/frappe/frappe/www/login.html,Back to Login,Nazad na prijavu apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Not Set DocType: Data Migration Mapping,Pull,Povuci @@ -3263,6 +3311,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Mapiranje dječje tab apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Podešavanje računa e-pošte unesite svoju lozinku za: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Previše piše u jednom zahtjevu. Pošaljite manje zahtjeve DocType: Social Login Key,Salesforce,Salesforce +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Uvoz {0} od {1} DocType: User,Tile,Tile apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,Soba {0} mora imati najviše jednog korisnika. DocType: Email Rule,Is Spam,Is Spam @@ -3300,7 +3349,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,folder-close DocType: Data Migration Run,Pull Update,Pull Update apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},spojeno {0} u {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Nisu pronađeni rezultati za '

DocType: SMS Settings,Enter url parameter for receiver nos,Unesite URL parametar za prijemnike br apps/frappe/frappe/utils/jinja.py,Syntax error in template,Greška sintakse u predlošku apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Postavite vrijednost filtera u tablici filtra izvješća. @@ -3313,6 +3361,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Izvinite, n DocType: System Settings,In Days,In Days DocType: Report,Add Total Row,Dodaj ukupan red apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Početak sesije nije uspio +DocType: Translation,Verified,Verified DocType: Print Format,Custom HTML Help,Prilagođena HTML pomoć DocType: Address,Preferred Billing Address,Preferirana adresa za naplatu apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Dodijeljen @@ -3327,7 +3376,6 @@ DocType: Help Article,Intermediate,Intermediate DocType: Module Def,Module Name,Naziv modula DocType: OAuth Authorization Code,Expiration time,Vreme isteka apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Postavite zadani format, veličinu stranice, stil ispisa itd." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,Ne možete da volite nešto što ste kreirali DocType: System Settings,Session Expiry,Istek sesije DocType: DocType,Auto Name,Auto Name apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Izaberite Prilozi @@ -3355,6 +3403,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,System Page DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Napomena: Po defaultu se šalju poruke e-pošte za neuspele sigurnosne kopije. DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm +DocType: Translation,PR sent,PR poslan DocType: Tag Doc Category,Doctype to Assign Tags,Doctype za dodeljivanje oznaka DocType: Address,Warehouse,Skladište apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Dropbox Setup @@ -3422,7 +3471,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Enter za dodavanje komentara apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Polje {0} nije moguće odabrati. DocType: User,Birth Date,Datum rođenja -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Sa uvlačenjem grupe DocType: List View Setting,Disable Count,Onemogući Count DocType: Contact Us Settings,Email ID,Email ID apps/frappe/frappe/utils/password.py,Incorrect User or Password,Neispravan korisnik ili lozinka @@ -3457,6 +3505,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Ova uloga ažurira korisničke dozvole za korisnika DocType: Website Theme,Theme,Tema DocType: Web Form,Show Sidebar,Show Sidebar +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Integracija Google kontakata. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Default Inbox apps/frappe/frappe/www/login.py,Invalid Login Token,Nevažeći token za prijavu apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Prvo postavite ime i snimite zapis. @@ -3484,7 +3533,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Ispravite DocType: Top Bar Item,Top Bar Item,Top Bar Item ,Role Permissions Manager,Upravitelj dozvola uloga -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,Bilo je grešaka. Molimo prijavite ovo. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} godina (a) apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Žensko DocType: System Settings,OTP Issuer Name,Ime izdavaoca OTP-a apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Add to To Do @@ -3584,6 +3633,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Postav apps/frappe/frappe/model/document.py,none of,nijedna DocType: Desktop Icon,Page,Page DocType: Workflow State,plus-sign,plus-znak +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Obrišite Cache i Reload apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Ne može se ažurirati: Neispravna / istekla veza. DocType: Kanban Board Column,Yellow,Žuta DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Broj stupaca za polje u mreži (Ukupni stupci u mreži trebaju biti manji od 11) @@ -3598,6 +3648,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Novi DocType: Activity Log,Date,Datum DocType: Communication,Communication Type,Tip komunikacije apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Parent Table +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Idite listom gore DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Pokaži punu grešku i dozvoli izveštavanje o problemima programeru DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3619,7 +3670,6 @@ DocType: Notification Recipient,Email By Role,Email By Role apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,Nadogradite da biste dodali više od {0} pretplatnika apps/frappe/frappe/email/queue.py,This email was sent to {0},Ova poruka je poslana na {0} DocType: User,Represents a User in the system.,Predstavlja Korisnika u sistemu. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Stranica {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Započnite novi format apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Dodajte komentar apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} od {1} diff --git a/frappe/translations/ca.csv b/frappe/translations/ca.csv index 9c632af1e1..d673036ef5 100644 --- a/frappe/translations/ca.csv +++ b/frappe/translations/ca.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Activa degradats DocType: DocType,Default Sort Order,Ordre predeterminat de classificació apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Només es mostren els camps numèrics de l’informe +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Premeu la tecla Alt per activar dreceres addicionals al menú i la barra lateral DocType: Workflow State,folder-open,carpeta oberta DocType: Customize Form,Is Table,És la taula apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,No es pot obrir el fitxer adjunt. L'has exportat com a CSV? DocType: DocField,No Copy,Sense còpia DocType: Custom Field,Default Value,Valor per defecte apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Afegeix A és obligatori per als correus entrants +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Sincronitza els contactes DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Detall de cartografia de migració de dades apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Deixa de seguir apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",La impressió PDF a través de "Impressió en brut" encara no és compatible. Traieu el mapatge de la impressora a Configuració de la impressora i torneu-ho a provar. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} i {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,S'ha produït un error en desar filtres apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Fica la teva contrasenya apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,No es poden suprimir les carpetes de casa i de fitxers adjunts +DocType: Email Account,Enable Automatic Linking in Documents,Activa l'enllaç automàtic als documents DocType: Contact Us Settings,Settings for Contact Us Page,Configuració per contactar amb nosaltres DocType: Social Login Key,Social Login Provider,Proveïdor d'inici de sessió social +DocType: Email Account,"For more information, click here.","Per obtenir més informació, feu clic aquí ." DocType: Transaction Log,Previous Hash,Hash anterior DocType: Notification,Value Changed,Valor canviat DocType: Report,Report Type,Tipus d'informe @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Regla del punt d’energia apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,Introduïu l’identificador de client abans d’iniciar la connexió social DocType: Communication,Has Attachment,Té adjunt DocType: User,Email Signature,Signatura de correu electrònic -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} any (s) enrere ,Addresses And Contacts,Adreces i contactes apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Aquesta Junta Kanban serà privada DocType: Data Migration Run,Current Mapping,Mapatge actual @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Esteu seleccionant l’opció de sincronització com a Tota, torna a sincronitzar tot el missatge i no Això també pot provocar la duplicació de comunicacions (correus electrònics)." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Última sincronització {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,No es pot canviar el contingut de la capçalera +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

No s’han trobat resultats per a "

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,No es pot canviar {0} després de la presentació apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","L’aplicació s’ha actualitzat a una versió nova, actualitzeu aquesta pàgina" DocType: User,User Image,Imatge d'usuari @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Marca apps/frappe/frappe/public/js/frappe/chat.js,Discard,Descartar DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Seleccioneu una imatge d’amplada aproximada de 150 píxels amb un fons transparent per obtenir els millors resultats. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,Recaiguda +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} valors seleccionats DocType: Blog Post,Email Sent,Email enviat DocType: Communication,Read by Recipient On,Llegit per destinatari activat DocType: User,Allow user to login only after this hour (0-24),Permetre a l'usuari iniciar sessió només després d'aquesta hora (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Mòdul per exportar DocType: DocType,Fields,Camps -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,No teniu permís per imprimir aquest document +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,No teniu permís per imprimir aquest document apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Pares apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","La vostra sessió ha caducat, torneu a iniciar la sessió per continuar." DocType: Assignment Rule,Priority,Prioritat @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Restableix el secr DocType: DocType,UPPER CASE,CASA SUPERIOR apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,Configureu l’adreça de correu electrònic DocType: Communication,Marked As Spam,Marcat com a correu brossa +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Adreça de correu electrònic la sincronització dels contactes de Google. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Importar subscriptors apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Desa el filtre DocType: Address,Preferred Shipping Address,Adreça d'enviament preferida DocType: GCalendar Account,The name that will appear in Google Calendar,El nom que apareixerà a Google Calendar +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Feu clic a {0} per generar token d'actualització. DocType: Email Account,Disable SMTP server authentication,Inhabiliteu l’autenticació del servidor SMTP DocType: Email Account,Total number of emails to sync in initial sync process ,Nombre total de correus electrònics a sincronitzar en el procés de sincronització inicial DocType: System Settings,Enable Password Policy,Activa la política de contrasenyes @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Introduïu el codi apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,No en DocType: Auto Repeat,Start Date,Data d'inici apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Estableix el gràfic +DocType: Website Theme,Theme JSON,Tema JSON apps/frappe/frappe/www/list.py,My Account,El meu compte DocType: DocType,Is Published Field,Camp publicat DocType: DocField,Set non-standard precision for a Float or Currency field,Definiu una precisió no estàndard per a un camp de flotació o moneda @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Afegeix Reference: {{ reference_doctype }} {{ reference_name }} per enviar la referència del document DocType: LDAP Settings,LDAP First Name Field,Camp de nom LDAP apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Enviament i safata d'entrada predeterminats -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuració> Personalitza el formulari apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.","Per actualitzar, només podeu actualitzar columnes selectives." apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',"Per omissió, el tipus de camp "Comproveu" ha de ser "0" o "1"" apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Comparteix aquest document amb @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Dominis HTML DocType: Blog Settings,Blog Settings,Configuració del bloc apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","El nom de DocType hauria de començar amb una lletra i només pot consistir en lletres, números, espais i guions baixos" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuració> Permisos d'usuari DocType: Communication,Integrations can use this field to set email delivery status,Les integracions poden utilitzar aquest camp per establir l’estat de lliurament de correu electrònic apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Configuració de la passarel·la de pagament de banda DocType: Print Settings,Fonts,Tipus de lletra DocType: Notification,Channel,Canal DocType: Communication,Opened,Obert DocType: Workflow Transition,Conditions,Condicions +apps/frappe/frappe/config/website.py,A user who posts blogs.,Un usuari que publica blogs. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,No teniu un compte? Registra't apps/frappe/frappe/utils/file_manager.py,Added {0},Afegit {0} DocType: Newsletter,Create and Send Newsletters,Creeu i envieu butlletins de notícies DocType: Website Settings,Footer Items,Articles de peu de pàgina +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Configureu el compte de correu electrònic per defecte des de Configuració> Correu electrònic> Compte de correu electrònic DocType: Website Slideshow Item,Website Slideshow Item,Article de presentació de pàgines web apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registreu l’aplicació OAuth Client DocType: Error Snapshot,Frames,Marcs @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","El nivell 0 és per a permisos de nivell de documents, nivells superiors per als permisos de nivell de camp." DocType: Address,City/Town,Ciutat / ciutat DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Això restablirà el tema actual, segur que voleu continuar?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Camps obligatoris obligatoris a {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Error en connectar amb el compte de correu electrònic {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,S'ha produït un error mentre es creava de manera recurrent @@ -528,7 +537,7 @@ DocType: Event,Event Category,Categoria d'esdeveniments apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Columnes basades en apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Edita el títol DocType: Communication,Received,Rebut -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,No tens permís per accedir a aquesta pàgina. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,No tens permís per accedir a aquesta pàgina. DocType: User Social Login,User Social Login,Accés social de l'usuari apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,Escriviu un fitxer Python a la mateixa carpeta on s’ha desat i torneu la columna i el resultat. DocType: Contact,Purchase Manager,Gestor de compres @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Conf apps/frappe/frappe/utils/data.py,Operator must be one of {0},L’operador ha de ser un de {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Si és propietari DocType: Data Migration Run,Trigger Name,Nom de disparador -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Escriu títols i presentacions al teu bloc. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Elimina el camp apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Col · lapsar tot apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Color de fons @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,Bar DocType: SMS Settings,Enter url parameter for message,Introduïu el paràmetre url per al missatge apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nou format d'impressió personalitzada apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} ja existeix +DocType: Workflow Document State,Is Optional State,És un estat opcional DocType: Address,Purchase User,Compra l’usuari DocType: Data Migration Run,Insert,Insereix DocType: Web Form,Route to Success Link,Ruta cap a l’enllaç d’èxit @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,El nom DocType: File,Is Home Folder,És la carpeta d’origen apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Tipus: DocType: Post,Is Pinned,Es fixa -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},No hi ha permís a '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},No hi ha permís a '{0}' {1} DocType: Patch Log,Patch Log,Patch Log DocType: Print Format,Print Format Builder,Generador de format d'impressió 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à activat, tots els usuaris poden iniciar sessió des de qualsevol adreça IP mitjançant Autenticació de dos factors. Això també es pot configurar només per a usuaris específics a la pàgina d’usuari" apps/frappe/frappe/utils/data.py,only.,només. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,La Condició '{0}' no és vàlida DocType: Auto Email Report,Day of Week,Dia de la setmana +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Habiliteu l'API de Google a Google Settings. DocType: DocField,Text Editor,Editor de text apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Tallar apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Cerqueu o escriviu una ordre @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,El nombre de còpies de seguretat de DB no pot ser inferior a 1 DocType: Workflow State,ban-circle,ban-circle DocType: Data Export,Excel,sobresortir +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Header, Breadcrumbs i Meta Tags" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Adreça de correu electrònic de suport no especificada DocType: Comment,Published,Publicat DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","Nota: per obtenir millors resultats, les imatges han de tenir la mateixa mida i amplada que han de ser majors que l'alçada." @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Programador del darrer esdevenimen apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Informe de totes les accions de documents DocType: Website Sidebar Item,Website Sidebar Item,Element de la barra lateral del lloc web apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Fer +DocType: Google Settings,Google Settings,Configuració de Google apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Seleccioneu el vostre país, zona horària i moneda" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Introduïu aquí els paràmetres d'URL estàtics (p. Ex. Remitent = ERPNext, nom d'usuari = ERPNext, contrasenya = 1234 etc.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Sense compte de correu electrònic @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,Token de portador de OAuth ,Setup Wizard,Assistent de configuració apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Taula de canvis +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,Sincronització DocType: Data Migration Run,Current Mapping Action,Acció de mapatge actual DocType: Email Account,Initial Sync Count,Comptat de sincronització inicial apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Configuració per contactar amb nosaltres. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Tipus de format d'impressió apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,No s’ha establert cap permís per a aquest criteri. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Expand tot +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,No s’ha trobat cap plantilla d’adreça per defecte. Creeu-ne un de nou des de Configuració> Impressió i Marca> Plantilla d’adreça. DocType: Tag Doc Category,Tag Doc Category,Categoria de etiquetes de documents DocType: Data Import,Generated File,Fitxer generat apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Notes @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,El camp de la línia de temps ha de ser un enllaç o un enllaç dinàmic DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Les notificacions i missatges a granel s'enviaran des d’aquest servidor de sortida. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Aquesta és una contrasenya comuna de primer nivell. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Envia permanentment {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Envia permanentment {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} no existeix, seleccioneu un nou objectiu per combinar-lo" DocType: Energy Point Rule,Multiplier Field,Camp multiplicador DocType: Workflow,Workflow State Field,Camp d'estat del flux de treball @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} va agrair el treball a {1} amb {2} punts DocType: Auto Email Report,Zero means send records updated at anytime,Zero significa enviar registres actualitzats en qualsevol moment apps/frappe/frappe/model/document.py,Value cannot be changed for {0},El valor no es pot canviar per a {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Configuració de l'API de Google. DocType: System Settings,Force User to Reset Password,Força l'usuari per restablir la contrasenya apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Els informes del generador d'informes es gestionen directament pel generador d'informes. Res a fer. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Edita el filtre @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,per a DocType: S3 Backup Settings,eu-north-1,eu-north-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: només es permet una regla amb el mateix paper, nivell i {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,No teniu permís per actualitzar aquest document de formulari web -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,S'ha arribat al límit màxim d’adhesió d’aquest registre. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,S'ha arribat al límit màxim d’adhesió d’aquest registre. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,Assegureu-vos que els documents de comunicació de referència no estiguin vinculats circularment. DocType: DocField,Allow in Quick Entry,Permet l'entrada ràpida DocType: Error Snapshot,Locals,Locals @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Tipus d'excepció apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},No es pot eliminar o cancel·lar perquè {0} {1} està enllaçat amb {2} {3} {4} apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,L’administrador només pot restablir el secret OTP. -DocType: Web Form Field,Page Break,Salt de pàgina DocType: Website Script,Website Script,Script de llocs web DocType: Integration Request,Subscription Notification,Notificació de subscripció DocType: DocType,Quick Entry,Entrada ràpida @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,Definiu la propietat després d apps/frappe/frappe/__init__.py,Thank you,Gràcies apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Panys per a la integració interna apps/frappe/frappe/config/settings.py,Import Data,Importa dades +DocType: Translation,Contributed Translation Doctype Name,Nom de tipus de document de traducció contribuïda DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID DocType: Review Level,Review Level,Nivell de revisió @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Fet amb èxit apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Llista apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Apreciar -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Nou {0} (Ctrl + B) DocType: Contact,Is Primary Contact,És el contacte principal DocType: Print Format,Raw Commands,Ordres brutes apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Fulls d’estil per a formats de impressió @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Errors en esdeveni apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Cerca {0} a {1} DocType: Email Account,Use SSL,Utilitzeu SSL DocType: DocField,In Standard Filter,Al filtre estàndard +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,No hi ha cap contacte de Google present per sincronitzar. DocType: Data Migration Run,Total Pages,Total de pàgines apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,"{0}: El camp '{1}' no es pot establir com a Únic, ja que té valors no únics" DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Si està activat, els usuaris seran notificats cada vegada que inicieu la sessió. Si no està activat, els usuaris només es notificaran una vegada." @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,Automatització apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Descomprimir fitxers ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Cerqueu '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Alguna cosa ha anat malament -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Deseu abans d’enllaçar. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,Deseu abans d’enllaçar. DocType: Version,Table HTML,Taula HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,hub DocType: Page,Standard,Estàndard @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Sense resul apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,S'han suprimit {0} registres apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,S'ha produït un error en generar el testimoni d’accés al dropbox. Consulteu el registre d’errors per obtenir més detalls. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Descendents de -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,No s’ha trobat cap plantilla d’adreça per defecte. Creeu-ne un de nou des de Configuració> Impressió i Marca> Plantilla d’adreça. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Contacts s'ha configurat. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Amaga els detalls apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Estils de tipus de lletra apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,La vostra subscripció caducarà el dia {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Ha fallat l’autenticació en rebre els correus electrònics del compte de correu electrònic {0}. Missatge del servidor: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Estadístiques basades en el rendiment de la setmana passada (de {0} a {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,L’enllaç automàtic només es pot activar si està activat Incoming. DocType: Website Settings,Title Prefix,Prefix de títol apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Les aplicacions d’autenticació que podeu utilitzar són: DocType: Bulk Update,Max 500 records at a time,Màxim 500 registres alhora @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,Filtres d'informe apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Seleccioneu Columnes DocType: Event,Participants,Participants DocType: Auto Repeat,Amended From,Modificat de -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,S'ha enviat la vostra informació +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,S'ha enviat la vostra informació DocType: Help Category,Help Category,Categoria d'ajuda apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 mes apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Seleccioneu un format existent per editar o iniciar un format nou. @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Camp a pista DocType: User,Generate Keys,Generar claus DocType: Comment,Unshared,No compartit -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Desat +DocType: Translation,Saved,Desat DocType: OAuth Client,OAuth Client,Client OAuth DocType: System Settings,Disable Standard Email Footer,Desactiva el peu de correu estàndard apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,El format d’impressió {0} està desactivat @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Última actua DocType: Data Import,Action,Acció apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Es necessita la clau del client DocType: Chat Profile,Notifications,Notificacions +DocType: Translation,Contributed,Contribució DocType: System Settings,mm/dd/yyyy,dd / mm / aaaa DocType: Report,Custom Report,Informe personalitzat DocType: Workflow State,info-sign,info-signe @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Contacte DocType: LDAP Settings,LDAP Username Field,Camp de nom d’usuari de LDAP apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","El camp {0} no es pot establir com a únic a {1}, ja que hi ha valors existents no únics" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuració> Personalitza el formulari DocType: User,Social Logins,Entrades socials DocType: Workflow State,Trash,Paperera DocType: Stripe Settings,Secret Key,Clau secreta @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,Camp de títol apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,No s’ha pogut connectar al servidor de correu electrònic de sortida DocType: File,File URL,URL del fitxer DocType: Help Article,Likes,M'agrada +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,La integració de contactes de Google està desactivada. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Heu d’iniciar la sessió i tenir el rol de System Manager per poder accedir a còpies de seguretat. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Primer nivell DocType: Blogger,Short Name,Nom curt @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Importa el codi postal DocType: Contact,Gender,Gènere DocType: Workflow State,thumbs-down,thumbs-down -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},La cua hauria de ser de {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},No es pot establir la notificació al tipus de document {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Afegint el gestor del sistema a aquest usuari, ha d'haver-hi almenys un gestor del sistema" apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,S'ha enviat un correu electrònic de benvinguda DocType: Transaction Log,Chaining Hash,Encadenar Hash DocType: Contact,Maintenance Manager,Gerent de manteniment +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Per comparació, utilitzeu> 5, <10 o = 324. Per a intervals, utilitzeu 5:10 (per a valors entre 5 i 10)." apps/frappe/frappe/utils/bot.py,show,espectacle apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Comparteix l’URL apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Format de fitxer no admès @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,Notificació DocType: Data Import,Show only errors,Mostra només els errors DocType: Energy Point Log,Review,Revisió apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Eliminades les files -DocType: GSuite Settings,Google Credentials,Credencials de Google +DocType: Google Settings,Google Credentials,Credencials de Google apps/frappe/frappe/www/login.html,Or login with,O inicieu sessió amb apps/frappe/frappe/model/document.py,Record does not exist,El registre no existeix apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Nou nom de l’informe @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,Llista DocType: Workflow State,th-large,gran apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: No es pot establir Assigna l'enviament si no es pot enviar apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,No està vinculat a cap registre +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","S'ha produït un error en connectar a l'aplicació de safates QZ ...

Haureu d’instal·lar i executar l’aplicació QZ Tray per utilitzar la funció d’impressió en brut.

Feu clic aquí per descarregar i instal·lar la safata QZ .
Feu clic aquí per obtenir més informació sobre Raw Printing ." DocType: Chat Message,Content,Contingut DocType: Workflow Transition,Allow Self Approval,Permetre l'aprovació pròpia apps/frappe/frappe/www/qrcode.py,Page has expired!,La pàgina ha caducat! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,a mà dreta DocType: Website Settings,Banner is above the Top Menu Bar.,Banner està a sobre de la barra de menú superior. apps/frappe/frappe/www/update-password.html,Invalid Password,contrasenya invàlida apps/frappe/frappe/utils/data.py,1 month ago,fa 1 mes +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Permet l'accés de contactes de Google DocType: OAuth Client,App Client ID,ID del client de l’aplicació DocType: DocField,Currency,Moneda DocType: Website Settings,Banner,Bàner @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Objectiu DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Si un rol no té accés al nivell 0, els nivells superiors no tenen sentit." DocType: ToDo,Reference Type,Tipus de referència -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Permetent a DocType, DocType. Ves amb compte!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Permetent a DocType, DocType. Ves amb compte!" DocType: Domain Settings,Domain Settings,Configuració del domini DocType: Auto Email Report,Dynamic Report Filters,Filtres d'informe dinàmic DocType: Energy Point Log,Appreciation,Apreciació @@ -1468,6 +1489,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,us-west-2 DocType: DocType,Is Single,És individual apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Creeu un format nou +DocType: Google Contacts,Authorize Google Contacts Access,Autoritzeu l'accés de contactes de Google DocType: S3 Backup Settings,Endpoint URL,URL del punt final DocType: Social Login Key,Google,Google DocType: Contact,Department,Departament @@ -1482,7 +1504,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Assigna a DocType: List Filter,List Filter,Filtre de llista DocType: Dashboard Chart Link,Chart,Gràfic apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,No es pot eliminar -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Envieu aquest document per confirmar-lo +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Envieu aquest document per confirmar-lo apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} ja existeix. Seleccioneu un altre nom apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Teniu canvis sense desar en aquest formulari. Deseu abans de continuar. apps/frappe/frappe/model/document.py,Action Failed,Acció fallida @@ -1564,6 +1586,7 @@ DocType: DocField,Display,Mostra apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Respondre a tots DocType: Calendar View,Subject Field,Camp temàtic apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Caducitat de la sessió ha de ser en format {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},Sol·licitud: {0} DocType: Workflow State,zoom-in,apropar apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Ha fallat la connexió amb el servidor apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},La data {0} ha de tenir el format: {1} @@ -1575,8 +1598,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Cartera de prova DocType: Workflow State,Icon will appear on the button,La icona apareixerà al botó DocType: Role Permission for Page and Report,Set Role For,Defineix el rol per +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,L’enllaç automàtic només es pot activar per a un compte de correu electrònic. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Sense comptes de correu electrònic assignats +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,El compte de correu electrònic no s’ha configurat. Creeu un compte de correu electrònic nou des de Configuració> Correu electrònic> Compte de correu electrònic apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Assignació +DocType: Google Contacts,Last Sync On,Última sincronització activada apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},obtingut per {0} mitjançant la regla automàtica {1} apps/frappe/frappe/config/website.py,Portal,Portal apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Gràcies per el teu email @@ -1597,7 +1623,6 @@ DocType: GSuite Settings,GSuite Settings,Configuració de GSuite DocType: Integration Request,Remote,Remot DocType: File,Thumbnail URL,URL de la miniatura apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Baixa l’informe -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configuració> Usuari apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Personalitzacions de {0} exportades a:
{1} DocType: GCalendar Account,Calendar Name,Nom del calendari apps/frappe/frappe/templates/emails/new_user.html,Your login id is,El vostre identificador d’accés és @@ -1647,6 +1672,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Vés apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,El camp d'imatge ha de ser un nom de camp vàlid apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,Heu d’iniciar la sessió per accedir a aquesta pàgina DocType: Assignment Rule,Example: {{ subject }},Exemple: {{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,El nom de camp {0} està restringit apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},No podeu desxifrar "Només de lectura" per al camp {0} DocType: Social Login Key,Enable Social Login,Activa la connexió social DocType: Workflow,Rules defining transition of state in the workflow.,Regles que defineixen la transició d'estat al flux de treball. @@ -1667,10 +1693,10 @@ DocType: Website Settings,Route Redirects,Redireccions de rutes apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Bústia de correu electrònic apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},restaurat {0} com {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Assigna documents automàticament als usuaris +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Obriu Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Plantilles de correu electrònic per a consultes habituals. DocType: Letter Head,Letter Head Based On,Capçalera de lletra basada en apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Tanqueu aquesta finestra -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Pagament complet DocType: Contact,Designation,Designació DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Meta Tags @@ -1709,6 +1735,7 @@ DocType: System Settings,Choose authentication method to be used by all users,Tr DocType: Error Snapshot,Parent Error Snapshot,Instantània d’error dels pares DocType: GCalendar Account,GCalendar Account,Compte GCalendar DocType: Language,Language Name,Nom de l’idioma +DocType: Workflow Document State,Workflow Action is not created for optional states,El flux de treball no es crea per a estats opcionals DocType: Customize Form,Customize Form,Personalitza el formulari DocType: DocType,Image Field,Camp d'imatge apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),S'ha afegit {0} ({1}) @@ -1750,6 +1777,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,Aplica aquesta regla si l'usuari és el propietari DocType: About Us Settings,Org History Heading,Encapçalament de l’història de l’organització apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Error del servidor +DocType: Contact,Google Contacts Description,Descripció de contactes de Google apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Els rols estàndard no es poden canviar de nom DocType: Review Level,Review Points,Punts de revisió apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Falta el paràmetre Nom de la taula Kanban @@ -1767,7 +1795,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,No està en mode de desenvolupador. Establiu en site_config.json o feu el tipus de document "Personalitzat". apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,guanyat {0} punts DocType: Web Form,Success Message,Missatge d'èxit -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Per comparació, utilitzeu> 5, <10 o = 324. Per a intervals, utilitzeu 5:10 (per a valors entre 5 i 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Descripció per a la pàgina de llistat, en text pla, només un parell de línies. (màxim 140 caràcters)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Mostra permisos DocType: DocType,Restrict To Domain,Restringir al domini @@ -1789,6 +1816,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,No anc apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Estableix la quantitat DocType: Auto Repeat,End Date,Data de finalització DocType: Workflow Transition,Next State,Estat següent +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} S’han sincronitzat els contactes de Google. DocType: System Settings,Is First Startup,És la primera posada en marxa apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},actualitzat a {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Moure's cap a @@ -1838,6 +1866,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Calendari apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Plantilla d'importació de dades DocType: Workflow State,hand-left,mà esquerra +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Seleccioneu diversos elements de la llista apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Mida de còpia de seguretat: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Enllaçat amb {0} DocType: Braintree Settings,Private Key,Clau privada @@ -1880,13 +1909,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Interès DocType: Bulk Update,Limit,Límit DocType: Print Settings,Print taxes with zero amount,Imprimiu impostos amb import zero -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,El compte de correu electrònic no s’ha configurat. Creeu un compte de correu electrònic nou des de Configuració> Correu electrònic> Compte de correu electrònic DocType: Workflow State,Book,Llibre DocType: S3 Backup Settings,Access Key ID,Identificador de la clau d'accés DocType: Chat Message,URLs,URL apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Els noms i cognoms per si mateixos són fàcils d'endevinar. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Informe {0} DocType: About Us Settings,Team Members Heading,Direcció d’equips +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Seleccioneu l'element de la llista apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},El document {0} s'ha definit com a estat {1} per {2} DocType: Address Template,Address Template,Plantilla d’adreça DocType: Workflow State,step-backward,pas enrere @@ -1910,6 +1939,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Exporta permisos personalitzats apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Cap: final de flux de treball DocType: Version,Version,Versió +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Obre l'element de la llista apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 mesos DocType: Chat Message,Group,Grup apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Hi ha algun problema amb l’URL del fitxer: {0} @@ -1965,6 +1995,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 any apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} ha tornat els punts a {1} DocType: Workflow State,arrow-down,fletxa cap avall DocType: Data Import,Ignore encoding errors,Ignora els errors de codificació +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Paisatge DocType: Letter Head,Letter Head Name,Nom del capçalera de la carta DocType: Web Form,Client Script,Script de clients DocType: Assignment Rule,Higher priority rule will be applied first,La regla de prioritat més gran s’aplicarà primer @@ -2009,6 +2040,7 @@ DocType: Kanban Board Column,Green,Verd apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Només són obligatoris els camps obligatoris per als nous registres. Podeu suprimir les columnes no obligatòries si ho voleu. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} ha de començar i acabar amb una lletra i només pot contenir lletres, guions o subratllat." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Accionament Acció primària apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Crear correu electrònic d'usuari apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,El camp de classificació {0} ha de ser un nom de camp vàlid DocType: Auto Email Report,Filter Meta,Filtre Meta @@ -2038,6 +2070,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Línia de temps del camp apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Carregant ... DocType: Auto Email Report,Half Yearly,Mitjà anual +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,El meu perfil apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Darrera data modificada DocType: Contact,First Name,Nom DocType: Post,Comments,Comentaris @@ -2060,6 +2093,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Contingut Hash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Publicacions de {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} assignat {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,No s’ha sincronitzat cap contacte de Google nou. DocType: Workflow State,globe,globus apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Mitjana de {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Esborreu els registres d'errors @@ -2086,6 +2120,8 @@ DocType: Workflow State,Inverse,Invers DocType: Activity Log,Closed,Tancat DocType: Report,Query,Consulta DocType: Notification,Days After,Dies després +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Dreceres de pàgina +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Retrat apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Sol·licitud de sortida fora de temps DocType: System Settings,Email Footer Address,Adreça de peu de correu electrònic apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Actualització del punt d'energia @@ -2113,6 +2149,7 @@ For Select, enter list of Options, each on a new line.","Per als enllaços, intr apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,Fa 1 minut apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Sense sessions actives apps/frappe/frappe/model/base_document.py,Row,Fila +DocType: Contact,Middle Name,Segon nom apps/frappe/frappe/public/js/frappe/request.js,Please try again,Siusplau torna-ho a provar DocType: Dashboard Chart,Chart Options,Opcions de diagrama DocType: Data Migration Run,Push Failed,Push Error @@ -2141,6 +2178,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,redimensionar-petit DocType: Comment,Relinked,Relinked DocType: Role Permission for Page and Report,Roles HTML,Funcions HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Vés apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,El flux de treball començarà després de desar. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Si les vostres dades estan en HTML, copieu el codi HTML exacte amb les etiquetes." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Les dates són sovint fàcils d'endevinar. @@ -2169,7 +2207,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Icona d’escriptori apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,cancel·lat aquest document apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Interval de dates -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuració> Permisos d'usuari apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} apreciat {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Valors canviats apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Error en la notificació @@ -2234,6 +2271,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Suprimeix a granel DocType: DocShare,Document Name,Nom del document apps/frappe/frappe/config/customization.py,Add your own translations,Afegiu les vostres traduccions +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Navegueu per la llista DocType: S3 Backup Settings,eu-central-1,eu-central-1 DocType: Auto Repeat,Yearly,Anual apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Canvia el nom @@ -2284,6 +2322,7 @@ DocType: Workflow State,plane,avió apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Error de conjunt imbricat. Poseu-vos en contacte amb l’administrador. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Mostra informe DocType: Auto Repeat,Auto Repeat Schedule,Programació automàtica de repetició +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Veure Ref DocType: Address,Office,Oficina DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} dies enrere @@ -2317,7 +2356,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Va apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Els meus paràmetres apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,El nom del grup no pot estar buit. DocType: Workflow State,road,carretera -DocType: Website Route Redirect,Source,Font +DocType: Contact,Source,Font apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Sessions actives apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Només hi pot haver un plec en un formulari apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Nou xat @@ -2339,6 +2378,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Introduïu l’URL d’autorització DocType: Email Account,Send Notification to,Envia la notificació a apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Configuració de còpia de seguretat de Dropbox +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,Alguna cosa va passar malament durant la generació de testimonis. Feu clic a {0} per generar-ne un de nou. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Voleu eliminar totes les personalitzacions? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Només l’administrador pot editar DocType: Auto Repeat,Reference Document,Document de referència @@ -2363,6 +2403,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Els rols es poden establir per als usuaris des de la seva pàgina d’usuari. DocType: Website Settings,Include Search in Top Bar,Inclou la cerca a la barra superior apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Urgent] Error en crear% s recurrents per a% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Dreceres globals DocType: Help Article,Author,Autor DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,No s’ha trobat cap document per a determinats filtres @@ -2398,10 +2439,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, fila {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Si esteu penjant nous registres, "Sèries de noms" es torna obligatòria, si n'hi ha." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Edita les propietats -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,No es pot obrir la instància quan el seu {0} està obert +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,No es pot obrir la instància quan el seu {0} està obert DocType: Activity Log,Timeline Name,Nom de la línia de temps DocType: Comment,Workflow,Flux de treball apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Establiu l’URL base a la clau d’inici de sessió social de Frappe +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Dreceres de teclat DocType: Portal Settings,Custom Menu Items,Elements de menú personalitzats apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,La longitud de {0} hauria de ser d'entre 1 i 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Connexió perduda. Pot ser que algunes funcions no funcionin. @@ -2464,6 +2506,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Afegit de f DocType: DocType,Setup,Configuració apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} creat correctament apps/frappe/frappe/www/update-password.html,New Password,nova contrasenya +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Seleccioneu Camp apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Deixa aquesta conversa DocType: About Us Settings,Team Members,Membres de l'equip DocType: Blog Settings,Writers Introduction,Introducció als escriptors @@ -2533,13 +2576,12 @@ DocType: Chat Room,Name,Nom DocType: Communication,Email Template,Plantilla de correu electrònic DocType: Energy Point Settings,Review Levels,Reviseu els nivells DocType: Print Format,Raw Printing,Impressió en brut -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,No es pot obrir {0} quan la seva instància està oberta +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,No es pot obrir {0} quan la seva instància està oberta DocType: DocType,"Make ""name"" searchable in Global Search",Feu que es pugui cercar "nom" a la Cerca global DocType: Data Migration Mapping,Data Migration Mapping,Cartografia de la migració de dades DocType: Data Import,Partially Successful,Èxit parcial DocType: Communication,Error,Error apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},El tipus de camp no es pot canviar de {0} a {1} de la fila {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","S'ha produït un error en connectar a l'aplicació de safates QZ ...

Haureu d’instal·lar i executar l’aplicació QZ Tray per utilitzar la funció d’impressió en brut.

Feu clic aquí per descarregar i instal·lar la safata QZ .
Feu clic aquí per obtenir més informació sobre Raw Printing ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Fer una foto apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,Eviteu anys relacionats amb vosaltres. DocType: Web Form,Allow Incomplete Forms,Permet formularis incomplets @@ -2635,7 +2677,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Seleccioneu target = "_blank" per obrir en una pàgina nova. DocType: Portal Settings,Portal Menu,Menú del portal DocType: Website Settings,Landing Page,Pàgina de destinació -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,Registreu-vos o inicieu sessió per començar 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 ara "Consulta de vendes, consulta de suport", etc, en una línia nova o separades per comes." apps/frappe/frappe/twofactor.py,Verfication Code,Codi de verificació apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} ja no subscrit @@ -2721,6 +2762,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Cartografia del DocType: Address,Sales User,Usuari comercial apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Canvieu les propietats del camp (amagar, llegir només, permís, etc.)" DocType: Property Setter,Field Name,Nom del camp +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Client DocType: Print Settings,Font Size,Mida de la font DocType: User,Last Password Reset Date,Darrera data de restabliment de la contrasenya DocType: System Settings,Date and Number Format,Format de data i número @@ -2786,6 +2828,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Node de grup apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Fusiona-ho amb els fitxers existents DocType: Blog Post,Blog Intro,Introducció al bloc apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nova menció +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Salta al camp DocType: Prepared Report,Report Name,Nom de l'informe apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Actualitzeu per obtenir el document més recent. apps/frappe/frappe/core/doctype/communication/communication.js,Close,Tanca @@ -2795,10 +2838,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Esdeveniment DocType: Social Login Key,Access Token URL,Accediu a l’URL del testimoni apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Establiu les claus d’accés de Dropbox a la configuració del vostre lloc +DocType: Google Contacts,Google Contacts,Contactes de Google DocType: User,Reset Password Key,Restablir la clau de contrasenya apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Modificat per DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.","Per renovar, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,S’ha desat amb èxit +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Envia un correu electrònic a {0} per enllaçar-lo aquí. DocType: File,Folder,Carpeta DocType: DocField,Perm Level,Nivell de perm DocType: Print Settings,Page Settings,Configuració de la pàgina @@ -2828,6 +2874,7 @@ DocType: Workflow State,remove-sign,eliminar-signar DocType: Dashboard Chart,Full,Complet DocType: DocType,User Cannot Create,No es pot crear l'usuari apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Heu guanyat {0} punt +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configuració> Usuari DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Si definiu això, aquest article apareixerà en un menú desplegable sota el pare seleccionat." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Sense missatges de correu electrònic apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Falta els camps següents: @@ -2841,13 +2888,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Mos DocType: Web Form,Web Form Fields,Camps de formularis web DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Formulari editable per a usuaris al lloc web. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Cancel·la permanentment {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Cancel·la permanentment {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Opció 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,Total apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Aquesta és una contrasenya molt comuna. DocType: Personal Data Deletion Request,Pending Approval,Pendent d'aprovació apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,No s’ha pogut assignar correctament el document apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},No està permès per a {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,No hi ha valors per mostrar DocType: Personal Data Download Request,Personal Data Download Request,Sol·licitud de descàrrega de dades personals apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} ha compartit aquest document amb {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Seleccioneu {0} @@ -2863,7 +2911,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Aquest correu electrònic es va enviar a {0} i es va copiar a {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,Entrada o contrasenya no vàlida DocType: Social Login Key,Social Login Key,Clau d'inici de sessió social -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Configureu el compte de correu electrònic per defecte des de Configuració> Correu electrònic> Compte de correu electrònic apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filtres desats 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’ha establert, utilitzarà els valors predeterminats del sistema" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} està configurat com a estat {2} @@ -2989,6 +3036,7 @@ DocType: User,Location,Ubicació apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,No hi ha informació DocType: Website Meta Tag,Website Meta Tag,Etiqueta de lloc web DocType: Workflow State,film,pel·lícula +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,S'ha copiat al porta-retalls. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} No s’ha trobat la configuració apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,L'etiqueta és obligatòria DocType: Webhook,Webhook Headers,Capçaleres de Webhook @@ -3197,7 +3245,7 @@ DocType: Address,Address Line 1,Adreça Línia 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Per al tipus de document apps/frappe/frappe/model/base_document.py,Data missing in table,Falta les dades a la taula apps/frappe/frappe/utils/bot.py,Could not identify {0},No s’ha pogut identificar {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Aquest formulari ha estat modificat després de carregar-lo +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Aquest formulari ha estat modificat després de carregar-lo apps/frappe/frappe/www/login.html,Back to Login,Torna a Iniciar sessió apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,No establert DocType: Data Migration Mapping,Pull,Tirar @@ -3265,6 +3313,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Cartografia de taules apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,"Configuració del compte de correu electrònic si us plau, introduïu la vostra contrasenya per:" apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Hi ha massa escrits en una sol·licitud. Envieu peticions més petites DocType: Social Login Key,Salesforce,Força de vendes +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importació de {0} de {1} DocType: User,Tile,Rajola apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,La sala {0} ha de tenir més d'un usuari. DocType: Email Rule,Is Spam,És spam @@ -3302,7 +3351,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,carpeta-tancar DocType: Data Migration Run,Pull Update,Pull Update apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},fusionat {0} a {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

No s’han trobat resultats per a "

DocType: SMS Settings,Enter url parameter for receiver nos,Introduïu el paràmetre url per als nostres receptors apps/frappe/frappe/utils/jinja.py,Syntax error in template,Error de sintaxi a la plantilla apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Configureu els valors dels filtres a la taula Filtre d’informe. @@ -3315,6 +3363,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Ho sentim, DocType: System Settings,In Days,En dies DocType: Report,Add Total Row,Afegeix una fila total apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,S'ha produït un error en iniciar la sessió +DocType: Translation,Verified,Verificat DocType: Print Format,Custom HTML Help,Ajuda HTML personalitzada DocType: Address,Preferred Billing Address,Adreça de facturació preferida apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Assignat a @@ -3329,7 +3378,6 @@ DocType: Help Article,Intermediate,Intermedi DocType: Module Def,Module Name,Nom del mòdul DocType: OAuth Authorization Code,Expiration time,Temps de caducitat apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Establiu el format per defecte, la mida de la pàgina, l'estil d'impressió, etc." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,No us agrada alguna cosa que hàgiu creat DocType: System Settings,Session Expiry,Caducitat de la sessió DocType: DocType,Auto Name,Nom automàtic apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Seleccioneu Adjunts @@ -3357,6 +3405,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Pàgina del sistema DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Nota: per defecte s'envien correus electrònics per a còpies de seguretat fallides. DocType: Custom DocPerm,Custom DocPerm,DocPerm personalitzat +DocType: Translation,PR sent,PR enviat DocType: Tag Doc Category,Doctype to Assign Tags,Tipus de document per assignar etiquetes DocType: Address,Warehouse,Magatzem apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Configuració de Dropbox @@ -3424,7 +3473,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Enter per afegir comentaris apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,El camp {0} no es pot seleccionar. DocType: User,Birth Date,Data de naixement -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Amb sagnat de grups DocType: List View Setting,Disable Count,Desactiva el recompte DocType: Contact Us Settings,Email ID,Identificació de correu electrònic apps/frappe/frappe/utils/password.py,Incorrect User or Password,Usuari o contrasenya incorrectes @@ -3459,6 +3507,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Aquest rol actualitza els permisos d’usuari per a un usuari DocType: Website Theme,Theme,Tema DocType: Web Form,Show Sidebar,Mostra la barra lateral +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Integració de contactes de Google. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Safata d'entrada predeterminada apps/frappe/frappe/www/login.py,Invalid Login Token,Token d’inici de sessió no vàlid apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Primer establiu el nom i deseu el registre. @@ -3486,7 +3535,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Corregiu el document DocType: Top Bar Item,Top Bar Item,Element de barra superior ,Role Permissions Manager,Gestor de permisos de rol -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,"Hi va haver errors. Si us plau, informa d’aquest." +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} any (s) enrere apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Dona DocType: System Settings,OTP Issuer Name,Nom de l'emissor OTP apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Afegir a fer @@ -3586,6 +3635,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Config apps/frappe/frappe/model/document.py,none of,cap de DocType: Desktop Icon,Page,Pàgina DocType: Workflow State,plus-sign,signe més +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Esborrar la memòria cau i tornar a carregar apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,No es pot actualitzar: un enllaç incorrecte / caducat. DocType: Kanban Board Column,Yellow,Groc 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 graella (les columnes totals d'una graella han de ser inferiors a 11) @@ -3600,6 +3650,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Nova DocType: Activity Log,Date,Data DocType: Communication,Communication Type,Tipus de comunicació apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Taula de pares +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Navegueu per la llista DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Mostra un error complet i permet informar de problemes al desenvolupador DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3621,7 +3672,6 @@ DocType: Notification Recipient,Email By Role,Correu electrònic per funció apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,Actualitzeu per afegir més de {0} subscriptors apps/frappe/frappe/email/queue.py,This email was sent to {0},Aquest correu electrònic es va enviar a {0} DocType: User,Represents a User in the system.,Representa un usuari al sistema. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Pàgina {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Inicia el nou format apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Afegiu un comentari apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} de {1} diff --git a/frappe/translations/cs.csv b/frappe/translations/cs.csv index 8773a6ce12..05616808cc 100644 --- a/frappe/translations/cs.csv +++ b/frappe/translations/cs.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Povolit přechody DocType: DocType,Default Sort Order,Výchozí pořadí řazení apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Zobrazení pouze číselných polí ze sestavy +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Stiskněte klávesu Alt pro spuštění dalších klávesových zkratek v nabídce a postranním panelu DocType: Workflow State,folder-open,otevřená složka DocType: Customize Form,Is Table,Je tabulka apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Nelze otevřít připojený soubor. Exportovali jste ji jako CSV? DocType: DocField,No Copy,Žádná kopie DocType: Custom Field,Default Value,Výchozí hodnota apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Pro příchozí poštu je povinné připojení +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Synchronizace kontaktů DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Podrobnosti mapování migrace dat apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Nesledovat apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",Tisk PDF přes "Raw Print" není dosud podporován. Odstraňte mapování tiskárny v Nastavení tiskárny a zkuste to znovu. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} a {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Došlo k chybě při ukládání filtrů apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Zadejte heslo apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Složky Doma a přílohy nelze odstranit +DocType: Email Account,Enable Automatic Linking in Documents,Povolit automatické propojení v dokumentech DocType: Contact Us Settings,Settings for Contact Us Page,Nastavení pro Kontaktujte nás DocType: Social Login Key,Social Login Provider,Poskytovatel sociálního přihlášení +DocType: Email Account,"For more information, click here.","Pro více informací klikněte zde ." DocType: Transaction Log,Previous Hash,Předchozí Hash DocType: Notification,Value Changed,Hodnota byla změněna DocType: Report,Report Type,Typ přehledu @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Pravidlo Energy Point apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,Před aktivací sociálního přihlášení zadejte prosím ID klienta DocType: Communication,Has Attachment,Má přílohu DocType: User,Email Signature,Podpis e-mailu -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} rok (y) ,Addresses And Contacts,Adresy a kontakty apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Tato rada Kanban bude soukromá DocType: Data Migration Run,Current Mapping,Aktuální mapování @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Vyberete možnost Sync Option jako ALL, bude znovu synchronizovat všechny přečtené i nepřečtené zprávy ze serveru. To může také způsobit duplikaci komunikace (e-maily)." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Poslední synchronizace {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Nelze změnit obsah záhlaví +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Nebyly nalezeny žádné výsledky pro výraz „

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Po odeslání není dovoleno měnit {0} apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Aplikace byla aktualizována na novou verzi, obnovte prosím tuto stránku" DocType: User,User Image,Uživatelský obrázek @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Ozna apps/frappe/frappe/public/js/frappe/chat.js,Discard,Zlikvidujte DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Pro dosažení nejlepších výsledků vyberte obrázek o šířce 150px s průhledným pozadím. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,Relapsed +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Vybrané hodnoty {0} DocType: Blog Post,Email Sent,Email odeslán DocType: Communication,Read by Recipient On,Přečtěte si Příjemce Zapnuto DocType: User,Allow user to login only after this hour (0-24),Povolit uživateli přihlášení pouze po této hodině (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Modul pro export DocType: DocType,Fields,Pole -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Není dovoleno tisknout tento dokument +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Není dovoleno tisknout tento dokument apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Rodič apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Vaše relace vypršela. Chcete-li pokračovat, přihlaste se prosím znovu." DocType: Assignment Rule,Priority,Přednost @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Resetovat OTP Secr DocType: DocType,UPPER CASE,VELKÁ PÍSMENA apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,Nastavte prosím e-mailovou adresu DocType: Communication,Marked As Spam,Označeno jako spam +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"E-mailová adresa, jejíž kontakty Google mají být synchronizovány." apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Importovat odběratele apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Uložit filtr DocType: Address,Preferred Shipping Address,Preferovaná poštovní adresa DocType: GCalendar Account,The name that will appear in Google Calendar,"Jméno, které se zobrazí v Kalendáři Google" +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Klikněte na {0} a vygenerujte Refresh Token. DocType: Email Account,Disable SMTP server authentication,Zakázat ověřování serveru SMTP 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 procesu synchronizace DocType: System Settings,Enable Password Policy,Povolit zásady hesel @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Vložte kód apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Ne v DocType: Auto Repeat,Start Date,Počáteční datum apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Nastavte graf +DocType: Website Theme,Theme JSON,Téma JSON apps/frappe/frappe/www/list.py,My Account,Můj účet DocType: DocType,Is Published Field,Je publikováno pole DocType: DocField,Set non-standard precision for a Float or Currency field,Nastavte nestandardní přesnost pro pole Float nebo Currency @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Přidat Reference: {{ reference_doctype }} {{ reference_name }} pro odeslání reference dokumentu DocType: LDAP Settings,LDAP First Name Field,Pole Jméno LDAP apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Výchozí odesílání a doručená pošta -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Nastavení> Přizpůsobení formuláře apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",Pro aktualizaci můžete aktualizovat pouze selektivní sloupce. apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',Výchozí nastavení pro pole „Kontrola“ musí být „0“ nebo „1“ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Sdílet tento dokument s @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Domény HTML DocType: Blog Settings,Blog Settings,Nastavení blogu apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Jméno DocType by mělo začínat písmenem a může se skládat pouze z písmen, čísel, mezer a podtržítek" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Nastavení> Oprávnění uživatele DocType: Communication,Integrations can use this field to set email delivery status,Integrace mohou pomocí tohoto pole nastavit stav doručení e-mailu apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Nastavení Stripe platební brány DocType: Print Settings,Fonts,Písma DocType: Notification,Channel,Kanál DocType: Communication,Opened,Otevřel DocType: Workflow Transition,Conditions,Podmínky +apps/frappe/frappe/config/website.py,A user who posts blogs.,"Uživatel, který odesílá blogy." apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Nemáte účet? Přihlásit se apps/frappe/frappe/utils/file_manager.py,Added {0},Přidáno {0} DocType: Newsletter,Create and Send Newsletters,Vytvoření a odeslání bulletinů DocType: Website Settings,Footer Items,Položky zápatí +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Nastavte výchozí e-mailový účet z nabídky Nastavení> E-mail> E-mailový účet DocType: Website Slideshow Item,Website Slideshow Item,Webová stránka Slideshow Item apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Zaregistrovat aplikaci OAuth Client App DocType: Error Snapshot,Frames,Rámy @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Úroveň 0 je pro oprávnění na úrovni dokumentu, vyšší úrovně pro oprávnění na úrovni pole." DocType: Address,City/Town,Město DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Tím obnovíte aktuální motiv, jste si jisti, že chcete pokračovat?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Povinná povinná pole v {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Chyba při připojování k e-mailovému účtu {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Při vytváření opakování došlo k chybě @@ -528,7 +537,7 @@ DocType: Event,Event Category,Kategorie události apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Sloupce založené na apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Upravit nadpis DocType: Communication,Received,Přijato -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Na tuto stránku nemáte přístup. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Na tuto stránku nemáte přístup. DocType: User Social Login,User Social Login,Uživatelské sociální přihlášení apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,"Napište soubor Python do stejné složky, kde je uložen a vrátí sloupec a výsledek." DocType: Contact,Purchase Manager,Správce nákupu @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konf apps/frappe/frappe/utils/data.py,Operator must be one of {0},Operátor musí být jeden z {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Pokud vlastník DocType: Data Migration Run,Trigger Name,Jméno spouštěče -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Napište tituly a úvody do svého blogu. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Odebrat pole apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Sbalit vše apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Barva pozadí @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,Bar DocType: SMS Settings,Enter url parameter for message,Zadejte parametr url pro zprávu apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nový formát vlastního tisku apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} již existuje +DocType: Workflow Document State,Is Optional State,Je nepovinný stát DocType: Address,Purchase User,Nákup uživatele DocType: Data Migration Run,Insert,Vložit DocType: Web Form,Route to Success Link,Trasa k úspěchu @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Uživat DocType: File,Is Home Folder,Je domovská složka apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Typ: DocType: Post,Is Pinned,Je připnutý -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Žádné oprávnění k '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Žádné oprávnění k '{0}' {1} DocType: Patch Log,Patch Log,Oprava záznamu DocType: Print Format,Print Format Builder,Tvůrce tisku 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","Pokud je povoleno, mohou se všichni uživatelé přihlásit z libovolné IP adresy pomocí dvoufaktorového ověření. To lze také nastavit pouze pro konkrétní uživatele v Uživatelské stránce" apps/frappe/frappe/utils/data.py,only.,pouze. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,Podmínka '{0}' je neplatná DocType: Auto Email Report,Day of Week,Den v týdnu +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Aktivujte Google API v Nastavení Google. DocType: DocField,Text Editor,Textový editor apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Střih apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Vyhledejte nebo zadejte příkaz @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,Počet záloh DB nesmí být menší než 1 DocType: Workflow State,ban-circle,ban-circle DocType: Data Export,Excel,Vynikat +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Záhlaví, Drobeček a Meta tagy" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,E-mailová adresa podpory není specifikována DocType: Comment,Published,Publikováno DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.",Poznámka: Pro dosažení nejlepších výsledků musí mít obrázky stejnou velikost a šířku než výška. @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Poslední událost plánovače apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Zpráva o všech podílech dokumentů DocType: Website Sidebar Item,Website Sidebar Item,Položka postranního panelu apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Dělat +DocType: Google Settings,Google Settings,Nastavení Google apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Vyberte svou zemi, časové pásmo a měnu" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Zde zadejte statické parametry url (např. Sender = ERPNext, uživatelské jméno = ERPNext, heslo = 1234 atd.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Žádný e-mailový účet @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token ,Setup Wizard,Průvodce nastavením apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Přepnout graf +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,Synchronizace DocType: Data Migration Run,Current Mapping Action,Aktuální mapování DocType: Email Account,Initial Sync Count,Počáteční počet synchronizací apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Nastavení pro Kontaktujte nás. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Typ formátu tisku apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Pro tato kritéria nejsou nastavena žádná oprávnění. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Rozšířit vše +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nebyla nalezena žádná výchozí šablona šablony. Vytvořte nový z nabídky Nastavení> Tisk a značky> Šablona adresy. DocType: Tag Doc Category,Tag Doc Category,Kategorie dokumentu Doc DocType: Data Import,Generated File,Generovaný soubor apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Poznámky @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Pole Časová osa musí být Link nebo Dynamic Link DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Oznámení a hromadné pošty budou odesílány z tohoto odchozího serveru. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Jedná se o společné heslo top-100. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Trvale odeslat {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Trvale odeslat {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} neexistuje, vyberte nový cíl, který chcete sloučit" DocType: Energy Point Rule,Multiplier Field,Pole multiplikátoru DocType: Workflow,Workflow State Field,Pole stavu pracovního postupu @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} ocenilo vaši práci na {1} s {2} body DocType: Auto Email Report,Zero means send records updated at anytime,Zero znamená kdykoliv odeslat aktualizované záznamy apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Hodnotu nelze změnit pro {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Nastavení rozhraní Google API. DocType: System Settings,Force User to Reset Password,Vynucení hesla uživatelem apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Sestavy Tvůrce sestav jsou spravovány přímo tvůrcem sestav. Není co dělat. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Upravit filtr @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,pro DocType: S3 Backup Settings,eu-north-1,eu-sever-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Pouze jedno pravidlo je povoleno se stejnou rolí, úrovní a {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Není dovoleno aktualizovat tento dokument webového formuláře -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Bylo dosaženo maximálního limitu příloh pro tento záznam. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Bylo dosaženo maximálního limitu příloh pro tento záznam. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,"Ujistěte se, že referenční komunikační dokumenty nejsou kruhově propojeny." DocType: DocField,Allow in Quick Entry,Povolit v rychlém vstupu DocType: Error Snapshot,Locals,Místní obyvatelé @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Typ výjimky apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},"Nelze odstranit nebo zrušit, protože {0} {1} je spojeno s {2} {3} {4}" apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,Tajemství OTP může resetovat pouze administrátor. -DocType: Web Form Field,Page Break,Přerušení stránky DocType: Website Script,Website Script,Webové stránky Script DocType: Integration Request,Subscription Notification,Oznámení o předplatném DocType: DocType,Quick Entry,Rychlý vstup @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,Nastavit vlastnost po upozorněn apps/frappe/frappe/__init__.py,Thank you,Děkuji apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks pro vnitřní integraci apps/frappe/frappe/config/settings.py,Import Data,Import dat +DocType: Translation,Contributed Translation Doctype Name,Přispěl název překladového doctypu DocType: Social Login Key,Office 365,Kancelář 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID DocType: Review Level,Review Level,Úroveň kontroly @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Úspěšně Hotovo apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Seznam apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Vážit si -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Nové {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Je primární kontakt DocType: Print Format,Raw Commands,Surové příkazy apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Styly pro formáty tisku @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Chyby v událostec apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Najít {0} v {1} DocType: Email Account,Use SSL,Použijte SSL DocType: DocField,In Standard Filter,Ve standardním filtru +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,K synchronizaci nejsou přítomny žádné kontakty Google. DocType: Data Migration Run,Total Pages,Celkový počet stránek apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,"{0}: Pole '{1}' nelze nastavit jako jedinečné, protože má ne jedinečné hodnoty" DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Pokud je tato možnost povolena, uživatelé budou upozorněni při každém přihlášení. Pokud to není povoleno, uživatelé budou upozorněni pouze jednou." @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,Automatizace apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Rozbalení souborů ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Hledat '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Něco se pokazilo -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Uložte prosím před připojením. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,Uložte prosím před připojením. DocType: Version,Table HTML,Tabulka HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,rozbočovač DocType: Page,Standard,Standard @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Žádné v apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,Záznamy {0} byly smazány apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,Při generování tokenů přístupu do schránky došlo k chybě. Další podrobnosti naleznete v protokolu chyb. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Potomci Of -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nebyla nalezena žádná výchozí šablona šablony. Vytvořte nový z nabídky Nastavení> Tisk a značky> Šablona adresy. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Kontakty Google byly nakonfigurovány. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Skrýt detaily apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Styly písma apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Platnost vašeho předplatného vyprší dne {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Ověřování selhalo při přijímání e-mailů z e-mailového účtu {0}. Zpráva od serveru: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Statistiky založené na výkonnosti minulého týdne (od {0} do {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,"Automatické spojení lze aktivovat pouze v případě, že je povoleno Příchozí." DocType: Website Settings,Title Prefix,Předpona názvu apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,"Ověřovací aplikace, které můžete použít, jsou:" DocType: Bulk Update,Max 500 records at a time,Max 500 záznamů najednou @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,Filtry přehledů apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Vyberte sloupce DocType: Event,Participants,Účastníci DocType: Auto Repeat,Amended From,Pozměněno z -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Vaše informace byly odeslány +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Vaše informace byly odeslány DocType: Help Category,Help Category,Kategorie nápovědy apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 měsíc apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Vyberte existující formát pro úpravu nebo spuštění nového formátu. @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Pole do stopy DocType: User,Generate Keys,Generovat klíče DocType: Comment,Unshared,Unshared -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Uložené +DocType: Translation,Saved,Uložené DocType: OAuth Client,OAuth Client,OAuth Client DocType: System Settings,Disable Standard Email Footer,Zakázat standardní zápatí e-mailu apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Formát tisku {0} je zakázán @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Poslední akt DocType: Data Import,Action,Akce apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Vyžaduje se klientský klíč DocType: Chat Profile,Notifications,Oznámení +DocType: Translation,Contributed,Přispěno DocType: System Settings,mm/dd/yyyy,mm / dd / rrrr DocType: Report,Custom Report,Vlastní přehled DocType: Workflow State,info-sign,info-znamení @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Kontakt DocType: LDAP Settings,LDAP Username Field,Pole Jméno uživatele LDAP apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} pole nemůže být nastaveno jako jedinečné v {1}, protože neexistují jedinečné existující hodnoty" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Nastavení> Přizpůsobení formuláře DocType: User,Social Logins,Sociální přihlášení DocType: Workflow State,Trash,Odpadky DocType: Stripe Settings,Secret Key,Tajný klíč @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,Název Pole apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Nelze se připojit k odchozímu e-mailovému serveru DocType: File,File URL,Adresa URL souboru DocType: Help Article,Likes,Líbí se +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Integrace kontaktů Google je zakázána. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,"Abyste mohli přistupovat k zálohám, musíte být přihlášeni a mít roli správce systému." apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,První úroveň DocType: Blogger,Short Name,Krátké jméno @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Importovat zip DocType: Contact,Gender,Rod DocType: Workflow State,thumbs-down,palec dolů -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Fronta by měla být jedna z {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Nelze nastavit upozornění na typ dokumentu {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Přidání správce systému k tomuto uživateli, protože musí být alespoň jeden správce systému" apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Byl odeslán uvítací e-mail DocType: Transaction Log,Chaining Hash,Řetězení Hash DocType: Contact,Maintenance Manager,Správce údržby +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Pro srovnání použijte> 5, <10 nebo = 324. Pro rozsahy použijte 5:10 (pro hodnoty mezi 5 a 10)." apps/frappe/frappe/utils/bot.py,show,show apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Sdílet adresu URL apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Nepodporovaný formát souboru @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,Oznámení DocType: Data Import,Show only errors,Zobrazit pouze chyby DocType: Energy Point Log,Review,Posouzení apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Řádky byly odstraněny -DocType: GSuite Settings,Google Credentials,Pověření Google +DocType: Google Settings,Google Credentials,Pověření Google apps/frappe/frappe/www/login.html,Or login with,Nebo se přihlaste apps/frappe/frappe/model/document.py,Record does not exist,Záznam neexistuje apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Nový název přehledu @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,Seznam DocType: Workflow State,th-large,th-velký apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,"{0}: Nelze nastavit přiřazení, pokud není odesláno" apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Není propojen s žádným záznamem +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Chyba při připojování k aplikaci QZ Tray ...

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

Klikněte zde pro stažení a instalaci QZ Tray .
Další informace o Raw Printing naleznete zde ." DocType: Chat Message,Content,Obsah DocType: Workflow Transition,Allow Self Approval,Povolit vlastní schválení apps/frappe/frappe/www/qrcode.py,Page has expired!,Platnost stránky vypršela! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,ruka-doprava DocType: Website Settings,Banner is above the Top Menu Bar.,Banner je nad horní nabídkou. apps/frappe/frappe/www/update-password.html,Invalid Password,Neplatné heslo apps/frappe/frappe/utils/data.py,1 month ago,Před 1 měsícem +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Povolit Přístup ke kontaktům Google DocType: OAuth Client,App Client ID,ID klienta aplikace DocType: DocField,Currency,Měna DocType: Website Settings,Banner,Prapor @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Fotbalová branka DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Pokud role nemá přístup na úrovni 0, pak jsou vyšší úrovně bezvýznamné." DocType: ToDo,Reference Type,Referenční typ -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Povolení DocType, DocType. Buď opatrný!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Povolení DocType, DocType. Buď opatrný!" DocType: Domain Settings,Domain Settings,Nastavení domény DocType: Auto Email Report,Dynamic Report Filters,Dynamické filtry přehledů DocType: Energy Point Log,Appreciation,Uznání @@ -1466,6 +1487,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,us-západ-2 DocType: DocType,Is Single,Je svobodný apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Vytvořit nový formát +DocType: Google Contacts,Authorize Google Contacts Access,Autorizujte Přístup ke kontaktům Google DocType: S3 Backup Settings,Endpoint URL,URL koncového bodu DocType: Social Login Key,Google,Google DocType: Contact,Department,oddělení @@ -1480,7 +1502,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Přiřadit DocType: List Filter,List Filter,Filtr seznamu DocType: Dashboard Chart Link,Chart,Zmapovat apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Nelze odebrat -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Potvrďte tento dokument +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Potvrďte tento dokument apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} již existuje. Vyberte jiný název apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,"V tomto formuláři máte neuložené změny. Než budete pokračovat, uložte prosím." apps/frappe/frappe/model/document.py,Action Failed,Akce se nezdařila @@ -1562,6 +1584,7 @@ DocType: DocField,Display,Zobrazit apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Odpovědět všem DocType: Calendar View,Subject Field,Předmětové pole apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Zánik relace musí být ve formátu {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},Použití: {0} DocType: Workflow State,zoom-in,přiblížit apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Nepodařilo se připojit k serveru apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Datum {0} musí být ve formátu: {1} @@ -1573,8 +1596,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Na tlačítku se zobrazí ikona DocType: Role Permission for Page and Report,Set Role For,Nastavte Role For +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Automatické propojení lze aktivovat pouze pro jeden e-mailový účet. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Žádné e-mailové účty nejsou přiřazeny +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mailový účet není nastaven. Vytvořte nový e-mailový účet z nabídky Nastavení> E-mail> E-mailový účet apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Úkol +DocType: Google Contacts,Last Sync On,Poslední synchronizace zapnuta apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},získané {0} prostřednictvím automatického pravidla {1} apps/frappe/frappe/config/website.py,Portal,Portál apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Děkuji za Váš e-mail @@ -1595,7 +1621,6 @@ DocType: GSuite Settings,GSuite Settings,Nastavení GSuite DocType: Integration Request,Remote,Dálkový DocType: File,Thumbnail URL,Adresa URL miniatury apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Stáhnout zprávu -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Nastavení> Uživatel apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Přizpůsobení pro {0} byla exportována do:
{1} DocType: GCalendar Account,Calendar Name,Název kalendáře apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Vaše přihlašovací jméno je @@ -1645,6 +1670,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Přej apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Pole obrázku musí být platné apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,Pro přístup na tuto stránku musíte být přihlášeni DocType: Assignment Rule,Example: {{ subject }},Příklad: {{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Pole {0} je omezeno apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Pro pole {0} nelze zrušit nastavení „Jen pro čtení“ DocType: Social Login Key,Enable Social Login,Povolit sociální přihlášení DocType: Workflow,Rules defining transition of state in the workflow.,Pravidla definující přechod stavu v pracovním postupu. @@ -1665,10 +1691,10 @@ DocType: Website Settings,Route Redirects,Přesměrování trasy apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,E-mailová schránka apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},obnoveno {0} jako {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Automaticky přiřadit dokumenty uživatelům +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Otevřete aplikaci Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,E-mailové šablony pro běžné dotazy. DocType: Letter Head,Letter Head Based On,Letter Head Based On apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Zavřete toto okno -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Platba byla dokončena DocType: Contact,Designation,Označení DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Meta tagy @@ -1707,6 +1733,7 @@ DocType: System Settings,Choose authentication method to be used by all users,"Z DocType: Error Snapshot,Parent Error Snapshot,Snímek rodičovské chyby DocType: GCalendar Account,GCalendar Account,Účet GCalendar DocType: Language,Language Name,Název jazyka +DocType: Workflow Document State,Workflow Action is not created for optional states,Akce akce není vytvořena pro volitelné stavy DocType: Customize Form,Customize Form,Přizpůsobení formuláře DocType: DocType,Image Field,Obrázek pole apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Přidáno {0} ({1}) @@ -1748,6 +1775,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Použijte toto pravidlo, pokud je Uživatel vlastníkem" DocType: About Us Settings,Org History Heading,Org Historie nadpis apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Chyba serveru +DocType: Contact,Google Contacts Description,Popis kontaktů Google apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Standardní role nelze přejmenovat DocType: Review Level,Review Points,Kontrolní body apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Chybí parametr Kanban Board Name @@ -1765,7 +1793,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Není ve vývojovém režimu! Nastavte v site_config.json nebo proveďte 'Vlastní' DocType. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,získal {0} bodů DocType: Web Form,Success Message,Zpráva o úspěchu -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Pro srovnání použijte> 5, <10 nebo = 324. Pro rozsahy použijte 5:10 (pro hodnoty mezi 5 a 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Popis pro výpis stránky, v prostém textu, jen pár řádků. (max. 140 znaků)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Zobrazit oprávnění DocType: DocType,Restrict To Domain,Omezit na doménu @@ -1787,6 +1814,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Ne př apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Nastavte Množství DocType: Auto Repeat,End Date,Datum ukončení DocType: Workflow Transition,Next State,Další stát +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Kontakty Google byly synchronizovány. DocType: System Settings,Is First Startup,Je první spuštění apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},aktualizováno na {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Stěhovat se do @@ -1836,6 +1864,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Kalendář apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Šablona pro import dat DocType: Workflow State,hand-left,ruka-vlevo +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Vyberte více položek seznamu apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Velikost zálohy: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Propojeno s {0} DocType: Braintree Settings,Private Key,Soukromý klíč @@ -1878,13 +1907,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Zájem DocType: Bulk Update,Limit,Omezit DocType: Print Settings,Print taxes with zero amount,Tisk daní s nulovou částkou -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mailový účet není nastaven. Vytvořte nový e-mailový účet z nabídky Nastavení> E-mail> E-mailový účet DocType: Workflow State,Book,Rezervovat DocType: S3 Backup Settings,Access Key ID,ID přístupového klíče DocType: Chat Message,URLs,Adresy URL apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Jména a příjmení mohou být snadno odhadnuta. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Zpráva {0} DocType: About Us Settings,Team Members Heading,Nadpis členů týmu +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Vyberte položku seznamu DocType: Address Template,Address Template,Šablona adresy DocType: Workflow State,step-backward,krok zpět apps/frappe/frappe/public/js/frappe/request.js,Not Found,Nenalezeno @@ -1907,6 +1936,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Exportovat vlastní oprávnění apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Žádný: Konec pracovního postupu DocType: Version,Version,Verze +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Otevřít položku seznamu apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 měsíců DocType: Chat Message,Group,Skupina apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Vyskytl se problém s url souboru: {0} @@ -1962,6 +1992,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 rok apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} vrátilo vaše body {1} DocType: Workflow State,arrow-down,šipka dolů DocType: Data Import,Ignore encoding errors,Ignorovat chyby kódování +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Krajina DocType: Letter Head,Letter Head Name,Název hlavy dopisu DocType: Web Form,Client Script,Klientský skript DocType: Assignment Rule,Higher priority rule will be applied first,Nejprve bude použito pravidlo vyšší priority @@ -2006,6 +2037,7 @@ DocType: Kanban Board Column,Green,Zelená apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Pro nové záznamy jsou nutná pouze povinná pole. Pokud chcete, můžete nepovinné sloupce odstranit." apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} musí začínat a končit písmenem a může obsahovat pouze písmena, pomlčku nebo podtržítko." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Spusťte primární akci apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Vytvořit e-mail uživatele apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Pole řazení {0} musí být platným názvem pole DocType: Auto Email Report,Filter Meta,Filtr Meta @@ -2035,6 +2067,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Pole časové osy apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Načítání... DocType: Auto Email Report,Half Yearly,Pololetní +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Můj profil apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Datum poslední změny DocType: Contact,First Name,Jméno DocType: Post,Comments,Poznámky @@ -2057,6 +2090,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Obsah Hash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Příspěvky od uživatele {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} přidělené {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Žádné nové kontakty Google nejsou synchronizovány. DocType: Workflow State,globe,zeměkoule apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Průměr z {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Vymazat protokoly chyb @@ -2083,6 +2117,8 @@ DocType: Workflow State,Inverse,Inverzní DocType: Activity Log,Closed,Zavřeno DocType: Report,Query,Dotaz DocType: Notification,Days After,Dny po +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Klávesové zkratky stránky +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portrét apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Vypršel časový limit žádosti DocType: System Settings,Email Footer Address,Adresa zápatí e-mailu apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Aktualizace energetického bodu @@ -2110,6 +2146,7 @@ For Select, enter list of Options, each on a new line.","Pro odkazy zadejte rozs apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,Před 1 minutou apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Žádné aktivní relace apps/frappe/frappe/model/base_document.py,Row,Řádek +DocType: Contact,Middle Name,Prostřední jméno apps/frappe/frappe/public/js/frappe/request.js,Please try again,Prosím zkuste to znovu DocType: Dashboard Chart,Chart Options,Možnosti grafu DocType: Data Migration Run,Push Failed,Push Failed @@ -2138,6 +2175,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,velikost-malá DocType: Comment,Relinked,Uvolněný DocType: Role Permission for Page and Report,Roles HTML,Roly HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Jít apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Po uložení se spustí pracovní postup. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Pokud jsou vaše data ve formátu HTML, zkopírujte prosím přesný kód HTML se značkami." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Data jsou často snadno odhadnutelná. @@ -2166,7 +2204,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Ikona plochy apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,Tento dokument byl zrušen apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Časové období -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Nastavení> Oprávnění uživatele apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} ocenil {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Hodnoty byly změněny apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Chyba v oznámení @@ -2231,6 +2268,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Hromadné odstranění DocType: DocShare,Document Name,Název dokumentu apps/frappe/frappe/config/customization.py,Add your own translations,Přidejte své vlastní překlady +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Navigace v seznamu dolů DocType: S3 Backup Settings,eu-central-1,eu-central-1 DocType: Auto Repeat,Yearly,Roční apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Přejmenovat @@ -2281,6 +2319,7 @@ DocType: Workflow State,plane,letadlo apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Vnořená nastavená chyba. Obraťte se na správce. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Zobrazit zprávu DocType: Auto Repeat,Auto Repeat Schedule,Automatické opakování plánu +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Zobrazit Ref DocType: Address,Office,Kancelář DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} dny @@ -2314,7 +2353,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Po apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Moje nastavení apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Název skupiny nesmí být prázdný. DocType: Workflow State,road,silnice -DocType: Website Route Redirect,Source,Zdroj +DocType: Contact,Source,Zdroj apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Aktivní relace apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Ve formuláři může být pouze jedna složka apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Nový chat @@ -2336,6 +2375,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Zadejte autorizační adresu URL DocType: Email Account,Send Notification to,Odeslat oznámení apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Nastavení zálohování schránky +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,Během generování tokenů se něco pokazilo. Klikněte na {0} a vytvořte nový. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Odebrat všechny úpravy? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Editovat může pouze správce DocType: Auto Repeat,Reference Document,Referenční dokument @@ -2360,6 +2400,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Role mohou být nastaveny pro uživatele z jejich stránky uživatele. DocType: Website Settings,Include Search in Top Bar,Zahrnout vyhledávání do horního pruhu apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Urgent] Chyba při vytváření opakujících se% s pro% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globální zkratky DocType: Help Article,Author,Autor DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Nebyl nalezen žádný dokument pro dané filtry @@ -2395,10 +2436,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, řádek {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Pokud nahráváte nové záznamy, "Naming Series" se stane povinným, pokud existuje." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Upravit vlastnosti -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,"Nelze otevřít instanci, když je otevřen {0}" +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,"Nelze otevřít instanci, když je otevřen {0}" DocType: Activity Log,Timeline Name,Název časové osy DocType: Comment,Workflow,Pracovní postup apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Nastavte prosím základní URL adresu pro sociální přihlášení pro Frappe +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Klávesové zkratky DocType: Portal Settings,Custom Menu Items,Položky uživatelské nabídky apps/frappe/frappe/database/schema.py,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/dom.js,Connection lost. Some features might not work.,Spojení ztraceno. Některé funkce nemusí fungovat. @@ -2461,6 +2503,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Řádky př DocType: DocType,Setup,Založit apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} úspěšně vytvořeno apps/frappe/frappe/www/update-password.html,New Password,nové heslo +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Vyberte pole apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Nechte tuto konverzaci DocType: About Us Settings,Team Members,Členové týmu DocType: Blog Settings,Writers Introduction,Úvod spisovatelů @@ -2530,13 +2573,12 @@ DocType: Chat Room,Name,název DocType: Communication,Email Template,Šablona e-mailu DocType: Energy Point Settings,Review Levels,Přehled úrovní DocType: Print Format,Raw Printing,Surový tisk -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,"{0} nelze otevřít, je-li otevřena jeho instance" +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,"{0} nelze otevřít, je-li otevřena jeho instance" DocType: DocType,"Make ""name"" searchable in Global Search",Prohledávejte "jméno" v globálním vyhledávání DocType: Data Migration Mapping,Data Migration Mapping,Mapování migrace dat DocType: Data Import,Partially Successful,Částečně úspěšný DocType: Communication,Error,Chyba apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype nelze změnit z {0} na {1} v řádku {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Chyba při připojování k aplikaci QZ Tray ...

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

Klikněte zde pro stažení a instalaci QZ Tray .
Další informace o Raw Printing naleznete zde ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Vyfotit apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,"Vyhněte se letům, které jsou s vámi spojeny." DocType: Web Form,Allow Incomplete Forms,Povolit nedokončené formuláře @@ -2632,7 +2674,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Vyberte target = "_blank" pro otevření na nové stránce. DocType: Portal Settings,Portal Menu,Nabídka Portál DocType: Website Settings,Landing Page,Vstupní stránka -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,"Chcete-li začít, zaregistrujte se nebo se přihlaste" DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontaktní možnosti, jako například „Prodejní dotaz, Dotaz na podporu“ atd., Každý na novém řádku nebo oddělený čárkami." apps/frappe/frappe/twofactor.py,Verfication Code,Kód pro ověřování apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} již odhlášeno @@ -2718,6 +2759,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Mapování plá DocType: Address,Sales User,Prodejní uživatel apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Změnit vlastnosti pole (skrýt, pouze pro čtení, oprávnění atd.)" DocType: Property Setter,Field Name,Název pole +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Zákazník DocType: Print Settings,Font Size,Velikost písma DocType: User,Last Password Reset Date,Datum posledního obnovení hesla DocType: System Settings,Date and Number Format,Formát data a čísla @@ -2783,6 +2825,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Uzel skupiny apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Sloučit s existujícími DocType: Blog Post,Blog Intro,Blog Intro apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nové zmínky +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Přejít na pole DocType: Prepared Report,Report Name,Název sestavy apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Chcete-li získat nejnovější dokument, aktualizujte jej." apps/frappe/frappe/core/doctype/communication/communication.js,Close,Zavřít @@ -2792,10 +2835,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,událost DocType: Social Login Key,Access Token URL,Přístup k adrese URL tokenu apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Nastavte prosím přístupové klíče Dropbox ve vašem konfiguračním serveru +DocType: Google Contacts,Google Contacts,Kontakty Google DocType: User,Reset Password Key,Tlačítko Reset hesla apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Upravený DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.","Chcete-li obnovit, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Úspěšně uloženo +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,"Odeslat e-mail na adresu {0}, abyste ji zde mohli propojit." DocType: File,Folder,Složka DocType: DocField,Perm Level,Perm Level DocType: Print Settings,Page Settings,Nastavení stránky @@ -2825,6 +2871,7 @@ DocType: Workflow State,remove-sign,odstranit-znamení DocType: Dashboard Chart,Full,Plný DocType: DocType,User Cannot Create,Uživatel nemůže vytvořit apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Získali jste bod {0} +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Nastavení> Uživatel DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Pokud toto nastavíte, tato položka se zobrazí v rozevíracím seznamu pod vybraným nadřazeným objektem." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Žádné e-maily apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Chybí následující pole: @@ -2838,13 +2885,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Zob DocType: Web Form,Web Form Fields,Pole webového formuláře DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Uživatelsky upravitelný formulář na webových stránkách. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Trvale zrušit {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Trvale zrušit {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Možnost 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,Celkový počet apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Toto je velmi běžné heslo. DocType: Personal Data Deletion Request,Pending Approval,Čeká na schválení apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Dokument nelze správně přiřadit apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Není povoleno pro {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Žádné hodnoty k zobrazení DocType: Personal Data Download Request,Personal Data Download Request,Požadavek na stažení osobních údajů apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} sdílelo tento dokument s {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Vyberte {0} @@ -2860,7 +2908,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Tento e-mail byl odeslán na {0} a zkopírován do {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,Neplatné přihlašovací jméno nebo heslo DocType: Social Login Key,Social Login Key,Sociální přihlašovací klíč -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Nastavte výchozí e-mailový účet z nabídky Nastavení> E-mail> E-mailový účet apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filtry byly uloženy DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Jak by měla být tato měna formátována? Pokud není nastaveno, použije výchozí nastavení systému" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} je nastaveno na stav {2} @@ -2986,6 +3033,7 @@ DocType: User,Location,Umístění apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Žádná data DocType: Website Meta Tag,Website Meta Tag,Webová stránka Meta Tag DocType: Workflow State,film,film +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Zkopírováno do schránky. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Nastavení nebylo nalezeno apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Štítek je povinný DocType: Webhook,Webhook Headers,Webhook záhlaví @@ -3194,7 +3242,7 @@ DocType: Address,Address Line 1,1. řádek adresy apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Typ dokumentu apps/frappe/frappe/model/base_document.py,Data missing in table,Data chybí v tabulce apps/frappe/frappe/utils/bot.py,Could not identify {0},Nelze identifikovat {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Tento formulář byl změněn po načtení +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Tento formulář byl změněn po načtení apps/frappe/frappe/www/login.html,Back to Login,Zpět k přihlášení apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Nenastaveno DocType: Data Migration Mapping,Pull,Sem @@ -3262,6 +3310,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Mapování dětské t apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Nastavení e-mailového účtu Zadejte heslo pro: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Příliš mnoho píše v jednom požadavku. Prosím pošlete menší požadavky DocType: Social Login Key,Salesforce,Salesforce +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Import {0} z {1} DocType: User,Tile,Dlaždice apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} místnost musí mít jednoho uživatele. DocType: Email Rule,Is Spam,Je spam @@ -3299,7 +3348,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,zavřít složku DocType: Data Migration Run,Pull Update,Vytáhnout aktualizaci apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},sloučil {0} do {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Nebyly nalezeny žádné výsledky pro výraz „

DocType: SMS Settings,Enter url parameter for receiver nos,Zadejte parametr url pro příjemce č apps/frappe/frappe/utils/jinja.py,Syntax error in template,Chyba syntaxe v šabloně apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Nastavte hodnotu filtrů v tabulce Filtr přehledů. @@ -3312,6 +3360,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Je nám lí DocType: System Settings,In Days,Ve dnech DocType: Report,Add Total Row,Přidat celkový řádek apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Selhalo spuštění relace +DocType: Translation,Verified,Ověřeno DocType: Print Format,Custom HTML Help,Vlastní nápověda HTML DocType: Address,Preferred Billing Address,Preferovaná fakturační adresa apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Přiřazen @@ -3326,7 +3375,6 @@ DocType: Help Article,Intermediate,středně pokročilí DocType: Module Def,Module Name,Název modulu DocType: OAuth Authorization Code,Expiration time,Doba expirace apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Nastavit výchozí formát, velikost stránky, styl tisku atd." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,"Nemůžete mít rád něco, co jste vytvořili" DocType: System Settings,Session Expiry,Vypršení relace DocType: DocType,Auto Name,Automatický název apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Zvolte Přílohy @@ -3354,6 +3402,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Systémová stránka 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. DocType: Custom DocPerm,Custom DocPerm,Vlastní DocPerm +DocType: Translation,PR sent,PR odesláno DocType: Tag Doc Category,Doctype to Assign Tags,Doctype pro přiřazení tagů DocType: Address,Warehouse,Sklad apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Nastavení Dropbox @@ -3421,7 +3470,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Enter pro přidání komentáře apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Pole {0} nelze vybrat. DocType: User,Birth Date,Datum narození -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Se skupinovým odsazením DocType: List View Setting,Disable Count,Zakázat počet DocType: Contact Us Settings,Email ID,ID e-mailu apps/frappe/frappe/utils/password.py,Incorrect User or Password,Nesprávný uživatel nebo heslo @@ -3456,6 +3504,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Tato role aktualizuje oprávnění uživatele pro uživatele DocType: Website Theme,Theme,Téma DocType: Web Form,Show Sidebar,Zobrazit postranní panel +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Integrace kontaktů Google. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Výchozí doručená pošta apps/frappe/frappe/www/login.py,Invalid Login Token,Neplatný token přihlášení apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Nejprve nastavte název a uložte záznam. @@ -3483,7 +3532,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Opravte prosím DocType: Top Bar Item,Top Bar Item,Položka horní lišty ,Role Permissions Manager,Správce oprávnění k rolím -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,Došlo k chybám. Nahlaste to prosím. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} rok (y) apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,ženský DocType: System Settings,OTP Issuer Name,Jméno emitenta OTP apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Přidat do úkolu @@ -3583,6 +3632,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Nastav apps/frappe/frappe/model/document.py,none of,žádný z DocType: Desktop Icon,Page,Stránka DocType: Workflow State,plus-sign,znaménko plus +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Vymazat mezipaměť a znovu načíst apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Nelze aktualizovat: Nesprávné / vypršení propojení. DocType: Kanban Board Column,Yellow,Žlutá 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ěl být menší než 11) @@ -3597,6 +3647,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Nov DocType: Activity Log,Date,datum DocType: Communication,Communication Type,Typ komunikace apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Tabulka rodičů +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Navigace v seznamu nahoru DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Zobrazit úplnou chybu a povolit ohlašování problémů vývojáři DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3618,7 +3669,6 @@ DocType: Notification Recipient,Email By Role,E-mail podle role apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,"Chcete-li přidat více než {0} odběratelů, upgradujte" apps/frappe/frappe/email/queue.py,This email was sent to {0},Tento e-mail byl odeslán na adresu {0} DocType: User,Represents a User in the system.,Představuje uživatele v systému. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Stránka {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Spusťte nový formát apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Přidat komentář apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} z {1} diff --git a/frappe/translations/da.csv b/frappe/translations/da.csv index 70a9877834..722d158538 100644 --- a/frappe/translations/da.csv +++ b/frappe/translations/da.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Aktivér gradienter DocType: DocType,Default Sort Order,Standard sorteringsordre apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Viser kun Numeriske felter fra Rapport +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Tryk på Alt-tasten for at udløse yderligere genveje i menu og sidebjælke DocType: Workflow State,folder-open,mappe-åben DocType: Customize Form,Is Table,Er tabel apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Kan ikke åbne vedhæftet fil. Eksporterede du det som CSV? DocType: DocField,No Copy,Ingen kopi DocType: Custom Field,Default Value,Standard værdi apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Tilføj til er obligatorisk for indgående mails +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Synkroniser kontakter DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Data Migration Mapping Detail apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Følg ikke længere apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.","PDF-udskrivning via "Raw Print" understøttes endnu ikke. Fjern printerkortlægningen i Printerindstillinger, og prøv igen." @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} og {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Der opstod en fejl ved at gemme filtre apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Skriv dit kodeord apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Kan ikke slette mapper til hjemmet og vedhæftede filer +DocType: Email Account,Enable Automatic Linking in Documents,Aktivér Automatisk Linking i Dokumenter DocType: Contact Us Settings,Settings for Contact Us Page,Indstillinger for Kontakt os side DocType: Social Login Key,Social Login Provider,Social Login Provider +DocType: Email Account,"For more information, click here.","For mere information, klik her ." DocType: Transaction Log,Previous Hash,Forrige Hash DocType: Notification,Value Changed,Værdi ændret DocType: Report,Report Type,Rapport Type @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Energy Point Rule apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,"Indtast venligst Client ID, før social login er aktiveret" DocType: Communication,Has Attachment,Har vedhæftet fil DocType: User,Email Signature,Email Signatur -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} år siden ,Addresses And Contacts,Adresser og kontakter apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Dette Kanban Board vil være privat DocType: Data Migration Run,Current Mapping,Aktuel kortlægning @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Du vælger Sync Option som ALLE, Det vil genindlæse alle \ læs samt ulæst besked fra server. Dette kan også medføre duplikering \ af kommunikation (e-mails)." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Senest synkroniseret {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Kan ikke ændre header indhold +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Ingen resultater fundet for '

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Ikke tilladt at ændre {0} efter indsendelse apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Ansøgningen er blevet opdateret til en ny version, opdater venligst denne side" DocType: User,User Image,Brugerbillede @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Mark apps/frappe/frappe/public/js/frappe/chat.js,Discard,Kassér DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Vælg et billede med en bredde på 150 px med en gennemsigtig baggrund for at opnå de bedste resultater. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,recidiverende +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} værdier valgt DocType: Blog Post,Email Sent,Email sendt DocType: Communication,Read by Recipient On,Læs ved modtager DocType: User,Allow user to login only after this hour (0-24),Tillad brugeren kun at logge ind efter denne time (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Modul til eksport DocType: DocType,Fields,Felter -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Det er ikke tilladt at udskrive dette dokument +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Det er ikke tilladt at udskrive dette dokument apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Forældre apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Din session er udløbet, skal du logge ind igen for at fortsætte." DocType: Assignment Rule,Priority,Prioritet @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Nulstil OTP Secret DocType: DocType,UPPER CASE,STORE BOGSTAVER apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,Venligst indstil e-mail-adresse DocType: Communication,Marked As Spam,Markeret som spam +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"E-mailadresse, hvis Google Kontakter skal synkroniseres." apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Importer abonnenter apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Gem filter DocType: Address,Preferred Shipping Address,Foretrukken forsendelsesadresse DocType: GCalendar Account,The name that will appear in Google Calendar,Navnet der vises i Google Kalender +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Klik på {0} for at generere Refresh Token. DocType: Email Account,Disable SMTP server authentication,Deaktiver SMTP-serverautentificering DocType: Email Account,Total number of emails to sync in initial sync process ,"Samlet antal e-mails, der skal synkroniseres i første synkroniseringsproces" DocType: System Settings,Enable Password Policy,Aktivér adgangskodepolitik @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Indsæt kode apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Ikke i DocType: Auto Repeat,Start Date,Start dato apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Indstil diagram +DocType: Website Theme,Theme JSON,Tema JSON apps/frappe/frappe/www/list.py,My Account,Min konto DocType: DocType,Is Published Field,Er udgivet felt DocType: DocField,Set non-standard precision for a Float or Currency field,Indstil ikke-standard præcision for et Float eller Currency-felt @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Tilføj Reference: {{ reference_doctype }} {{ reference_name }} at sende dokumentreference DocType: LDAP Settings,LDAP First Name Field,LDAP fornavn felt apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Standard afsendelse og indbakke -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Opsætning> Tilpas formular apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",For opdatering kan du kun opdatere selektive kolonner. apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',Standard for 'Check' typen af felt skal enten være '0' eller '1' apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Del dette dokument med @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Domæner HTML DocType: Blog Settings,Blog Settings,Blogindstillinger apps/frappe/frappe/core/doctype/doctype/doctype.py,"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/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Opsætning> Brugerautorisationer DocType: Communication,Integrations can use this field to set email delivery status,Integrationer kan bruge dette felt til at angive leveringsstatus for e-mail apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Stripe betalings gateway indstillinger DocType: Print Settings,Fonts,Skrifttyper DocType: Notification,Channel,Kanal DocType: Communication,Opened,åbnede DocType: Workflow Transition,Conditions,Betingelser +apps/frappe/frappe/config/website.py,A user who posts blogs.,"En bruger, der indsender blogs." apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Har du ikke en konto? Tilmelde apps/frappe/frappe/utils/file_manager.py,Added {0},Tilføjet {0} DocType: Newsletter,Create and Send Newsletters,Opret og send nyhedsbreve DocType: Website Settings,Footer Items,Footer elementer +apps/frappe/frappe/email/smtp.py,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: Website Slideshow Item,Website Slideshow Item,Website Slideshow Item apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registrer OAuth Client App DocType: Error Snapshot,Frames,Rammer @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Niveau 0 er til dokumentniveau tilladelser, \ højere niveauer for tilladelser på feltniveau." DocType: Address,City/Town,By / By DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Dette vil nulstille dit aktuelle tema, er du sikker på, at du vil fortsætte?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Obligatoriske felter kræves i {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Fejl under forbindelse til e-mail-konto {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Der opstod en fejl under oprettelse af tilbagevendende @@ -528,7 +537,7 @@ DocType: Event,Event Category,Hændelseskategori apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Kolonner baseret på apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Rediger overskrift DocType: Communication,Received,Modtaget -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Du har ikke adgang til denne side. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Du har ikke adgang til denne side. DocType: User Social Login,User Social Login,Bruger Social Login apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,"Skriv en Python-fil i samme mappe, hvor dette er gemt, og returner kolonne og resultat." DocType: Contact,Purchase Manager,Købschef @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konf apps/frappe/frappe/utils/data.py,Operator must be one of {0},Operatøren skal være en af {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Hvis ejer DocType: Data Migration Run,Trigger Name,Udløsernavn -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Skriv titler og introduktioner til din blog. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Fjern felt apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Skjul alle apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Baggrundsfarve @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,Bar DocType: SMS Settings,Enter url parameter for message,Indtast url-parameter for besked apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nyt tilpasset udskriftsformat apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} eksisterer allerede +DocType: Workflow Document State,Is Optional State,Er valgfri stat DocType: Address,Purchase User,Køb bruger DocType: Data Migration Run,Insert,Indsæt DocType: Web Form,Route to Success Link,Rute til succes link @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Brugern DocType: File,Is Home Folder,Er hjemmemappe apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Type: DocType: Post,Is Pinned,Er fastgjort -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Ingen tilladelse til '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Ingen tilladelse til '{0}' {1} DocType: Patch Log,Patch Log,Patch Log DocType: Print Format,Print Format Builder,Print Format Builder 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å kun indstilles til specifikke brugere i bruger side" apps/frappe/frappe/utils/data.py,only.,kun. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,Tilstanden '{0}' er ugyldig DocType: Auto Email Report,Day of Week,Ugedag +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Aktivér Google API i Google Indstillinger. DocType: DocField,Text Editor,Tekst editor apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Skære apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Søg eller skriv en kommando @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,Antal DB-sikkerhedskopier kan ikke være mindre end 1 DocType: Workflow State,ban-circle,ban-cirkel DocType: Data Export,Excel,Excel +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Header, Breadcrumbs og Meta Tags" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Support Email Address Ikke angivet DocType: Comment,Published,Udgivet DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","Bemærk: For de bedste resultater skal billederne være af samme størrelse, og bredden skal være større end højden." @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Planlægger sidste begivenhed apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Rapport af alle dokument aktier DocType: Website Sidebar Item,Website Sidebar Item,Website Sidebar Item apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,At gøre +DocType: Google Settings,Google Settings,Google Indstillinger apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Vælg dit land, tidszone og valuta" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Indtast statiske url-parametre her (fx afsender = ERPNæst, brugernavn = ERPNæst, kodeord = 1234 osv.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Ingen e-mail-konto @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token ,Setup Wizard,Opsætningsguide apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Skift diagram +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,Synkronisering DocType: Data Migration Run,Current Mapping Action,Aktuel kortlægning DocType: Email Account,Initial Sync Count,Initial Sync Count apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Indstillinger for Kontakt os side. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Print Format Type apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Ingen tilladelser er fastsat for dette kriterium. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Udvid alle +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ingen standard adresse skabelon fundet. Opret venligst en ny fra Opsætning> Udskrivning og branding> Adresseskabelon. DocType: Tag Doc Category,Tag Doc Category,Tag Dok kategori DocType: Data Import,Generated File,Genereret fil apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Noter @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Tidslinjefelt skal være en Link eller Dynamisk Link DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Meddelelser og bulkmails vil blive sendt fra denne udgående server. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Dette er et top-100 fælles kodeord. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Indsend {0} permanent? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Indsend {0} permanent? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} eksisterer ikke, vælg et nyt mål at slå sammen" DocType: Energy Point Rule,Multiplier Field,Multiplikationsfelt DocType: Workflow,Workflow State Field,Workflow State Field @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} værdsat dit arbejde på {1} med {2} point DocType: Auto Email Report,Zero means send records updated at anytime,"Nul betyder, at send records opdateres når som helst" apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Værdien kan ikke ændres for {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API-indstillinger. DocType: System Settings,Force User to Reset Password,Tving brugeren til at nulstille adgangskode apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Rapport Builder rapporter styres direkte af rapportbyggeren. Ingenting at lave. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Rediger filter @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,for DocType: S3 Backup Settings,eu-north-1,eu-nord-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{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/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Du har ikke lov til at opdatere dette webformulardokument -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Maksimum vedhæftningsgrænse for denne rekord er nået. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Maksimum vedhæftningsgrænse for denne rekord er nået. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,"Sørg for, at referencekommunikationsdokumenterne ikke er cirkulært forbundet." DocType: DocField,Allow in Quick Entry,Tillad i hurtig indtastning DocType: Error Snapshot,Locals,lokale @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Undtagelsestype apps/frappe/frappe/model/delete_doc.py,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/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTP-hemmeligheden kan kun nulstilles af administratoren. -DocType: Web Form Field,Page Break,Sideskift DocType: Website Script,Website Script,Website Script DocType: Integration Request,Subscription Notification,Abonnementsmeddelelse DocType: DocType,Quick Entry,Hurtig indtastning @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,Indstil ejendom efter advarsel apps/frappe/frappe/__init__.py,Thank you,tak skal du have apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks til intern integration apps/frappe/frappe/config/settings.py,Import Data,Importer data +DocType: Translation,Contributed Translation Doctype Name,Bidragende Oversættelse Doctype Navn DocType: Social Login Key,Office 365,Kontor 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID DocType: Review Level,Review Level,Review Level @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Udført succesfuldt apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Liste apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Sætter pris på -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Ny {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Er primær kontakt DocType: Print Format,Raw Commands,Råkommandoer apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Stylesheets til udskriftsformater @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Fejl i baggrundsar apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Find {0} i {1} DocType: Email Account,Use SSL,Brug SSL DocType: DocField,In Standard Filter,I standardfilter +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Ingen Google Kontakter til stede for at synkronisere. DocType: Data Migration Run,Total Pages,Samlede sider apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,"{0}: Felt '{1}' kan ikke indstilles som Unikt, da det har ikke-unikke værdier" 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." @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,Automatisering apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Unzipping filer ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Søg efter '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Noget gik galt -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Gem venligst før vedhæftning. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,Gem venligst før vedhæftning. DocType: Version,Table HTML,Tabel HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,hub DocType: Page,Standard,Standard @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Ingen resul apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} poster slettet apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,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/public/js/frappe/ui/filters/filter.js,Descendants Of,Efterkommere af -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ingen standard adresse skabelon fundet. Opret venligst en ny fra Opsætning> Udskrivning og branding> Adresseskabelon. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Kontakter er blevet konfigureret. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Gem detaljer apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Skrifttyper apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Dit abonnement udløber på {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},"Autentificering mislykkedes, mens du modtog e-mails fra e-mail-konto {0}. Meddelelse fra server: {1}" apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Statistikker baseret på sidste uges præstationer (fra {0} til {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,"Automatisk Linking kan kun aktiveres, hvis Indkommende er aktiveret." DocType: Website Settings,Title Prefix,Titel præfiks apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,"Autentificeringsprogrammer, du kan bruge, er:" DocType: Bulk Update,Max 500 records at a time,Max 500 optagelser ad gangen @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,Rapportér filtre apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Vælg kolonner DocType: Event,Participants,Deltagere DocType: Auto Repeat,Amended From,Ændret fra -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Dine oplysninger er blevet indsendt +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Dine oplysninger er blevet indsendt DocType: Help Category,Help Category,Hjælp kategori apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 måned apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Vælg et eksisterende format for at redigere eller starte et nyt format. @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Felt at spore DocType: User,Generate Keys,Generer nøgler DocType: Comment,Unshared,udelt -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Gemt +DocType: Translation,Saved,Gemt DocType: OAuth Client,OAuth Client,OAuth Client DocType: System Settings,Disable Standard Email Footer,Deaktiver Standard Email Footer apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Printformat {0} er deaktiveret @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Sidst opdater DocType: Data Import,Action,Handling apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Klientnøgle er påkrævet DocType: Chat Profile,Notifications,underretninger +DocType: Translation,Contributed,bidraget DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy DocType: Report,Custom Report,Brugerdefineret rapport DocType: Workflow State,info-sign,info-skilt @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Kontakt DocType: LDAP Settings,LDAP Username Field,LDAP brugernavn felt apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Feltet {0} kan ikke angives som unikt i {1}, da der findes ikke-unikke eksisterende værdier" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Opsætning> Tilpas formular DocType: User,Social Logins,Sociale logins DocType: Workflow State,Trash,Affald DocType: Stripe Settings,Secret Key,Secret Key @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,Titel Field apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Kunne ikke oprette forbindelse til udgående e-mail-server DocType: File,File URL,Filadresse DocType: Help Article,Likes,Kan lide +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google Kontakter Integration er deaktiveret. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Du skal være logget ind og have System Manager Role for at kunne få adgang til sikkerhedskopier. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Første niveau DocType: Blogger,Short Name,Kort navn @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Import Zip DocType: Contact,Gender,Køn DocType: Workflow State,thumbs-down,tommelfingeren nedad -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Kø skal være en af {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Kan ikke indstille Notification on Document Type {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Tilføjelse af systemadministrator til denne bruger, da der skal være mindst en systemadministrator" apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Velkommen email sendt DocType: Transaction Log,Chaining Hash,Chaining Hash DocType: Contact,Maintenance Manager,Maintenance Manager +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Til sammenligning skal du bruge> 5, <10 eller = 324. For intervaller skal du bruge 5:10 (for værdier mellem 5 og 10)." apps/frappe/frappe/utils/bot.py,show,at vise apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Del webadresse apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Ikke-understøttet filformat @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,Notifikation DocType: Data Import,Show only errors,Vis kun fejl DocType: Energy Point Log,Review,Anmeldelse apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Rækker fjernet -DocType: GSuite Settings,Google Credentials,Google-legitimationsoplysninger +DocType: Google Settings,Google Credentials,Google-legitimationsoplysninger apps/frappe/frappe/www/login.html,Or login with,Eller log ind med apps/frappe/frappe/model/document.py,Record does not exist,Optag findes ikke apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Nyt rapportnavn @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,Liste DocType: Workflow State,th-large,th-large apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Kan ikke indstille Tilknyt Indsend hvis ikke Submitterbar apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Ikke knyttet til nogen post +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Fejl ved tilslutning til QZ Tray Application ...

Du skal have QZ Tray-programmet installeret og kører, for at bruge funktionen Raw Print.

Klik her for at hente og installere QZ Tray .
Klik her for at lære mere om Raw Printing ." DocType: Chat Message,Content,Indhold DocType: Workflow Transition,Allow Self Approval,Tillad selv godkendelse apps/frappe/frappe/www/qrcode.py,Page has expired!,Siden er udløbet! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,hånd-højre DocType: Website Settings,Banner is above the Top Menu Bar.,Banner er over øverste menulinje. apps/frappe/frappe/www/update-password.html,Invalid Password,forkert kodeord apps/frappe/frappe/utils/data.py,1 month ago,1 måned siden +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Tillad adgang til Google Kontakter DocType: OAuth Client,App Client ID,App Client ID DocType: DocField,Currency,betalingsmiddel DocType: Website Settings,Banner,Banner @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Mål DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Hvis en rolle ikke har adgang til niveau 0, er højere niveauer meningsløse." DocType: ToDo,Reference Type,Reference Type -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Tillader DocType, DocType. Vær forsigtig!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Tillader DocType, DocType. Vær forsigtig!" DocType: Domain Settings,Domain Settings,Domain Settings DocType: Auto Email Report,Dynamic Report Filters,Dynamiske rapportfiltre DocType: Energy Point Log,Appreciation,Påskønnelse @@ -1468,6 +1489,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,os-vest-2 DocType: DocType,Is Single,Er Single apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Opret et nyt format +DocType: Google Contacts,Authorize Google Contacts Access,Godkendelse af adgang til Google Kontakter DocType: S3 Backup Settings,Endpoint URL,Endpoint URL DocType: Social Login Key,Google,Google DocType: Contact,Department,Afdeling @@ -1482,7 +1504,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Tildel til DocType: List Filter,List Filter,List Filter DocType: Dashboard Chart Link,Chart,Diagram apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Kan ikke fjerne -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Indsend dette dokument for at bekræfte +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Indsend dette dokument for at bekræfte apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} eksisterer allerede. Vælg et andet navn apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Du har ikke-gemte ændringer i denne formular. Gem venligst før du fortsætter. apps/frappe/frappe/model/document.py,Action Failed,Handling mislykkedes @@ -1564,6 +1586,7 @@ DocType: DocField,Display,Skærm apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Svar alle DocType: Calendar View,Subject Field,Emnefelt apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Sessionens udløb skal være i format {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},Anvendelse: {0} DocType: Workflow State,zoom-in,Zoom ind apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Det lykkedes ikke at oprette forbindelse til serveren apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Dato {0} skal være i format: {1} @@ -1575,8 +1598,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Ikonet vises på knappen DocType: Role Permission for Page and Report,Set Role For,Sæt rolle for +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Automatisk Linking kan kun aktiveres for en e-mail-konto. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Ingen e-mail-konti tildelt +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mail-konto er ikke konfigureret. Opret en ny e-mail-konto fra Opsætning> Email> E-mail-konto apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Opgave +DocType: Google Contacts,Last Sync On,Sidste synkronisering apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},opnået ved {0} via automatisk regel {1} apps/frappe/frappe/config/website.py,Portal,Portal apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Tak for din e-mail @@ -1597,7 +1623,6 @@ DocType: GSuite Settings,GSuite Settings,GSuite Indstillinger DocType: Integration Request,Remote,Fjern DocType: File,Thumbnail URL,Thumbnail URL apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Download rapport -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Opsætning> Bruger apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Tilpasninger til {0} eksporteret til:
{1} DocType: GCalendar Account,Calendar Name,Kalendernavn apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Dit login id er @@ -1647,6 +1672,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Gå t apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Billedfelt skal være et gyldigt feltnavn apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,Du skal være logget ind for at få adgang til denne side DocType: Assignment Rule,Example: {{ subject }},Eksempel: {{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Feltnavn {0} er begrænset apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Du kan ikke deaktivere 'Read Only' for feltet {0} DocType: Social Login Key,Enable Social Login,Aktivér social login DocType: Workflow,Rules defining transition of state in the workflow.,Regler der definerer overgang af stat i arbejdsgangen. @@ -1667,10 +1693,10 @@ DocType: Website Settings,Route Redirects,Rute omdirigeringer apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Email Indbakke apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},gendannet {0} som {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Tildel automatisk dokumenter til brugere +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Åbn Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,E-mail-skabeloner til almindelige forespørgsler. DocType: Letter Head,Letter Head Based On,Brevhoved Baseret På apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Luk venligst dette vindue -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Betaling Komplet DocType: Contact,Designation,Betegnelse DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Meta Tags @@ -1709,6 +1735,7 @@ DocType: System Settings,Choose authentication method to be used by all users,"V DocType: Error Snapshot,Parent Error Snapshot,Forældre Fejl-billede DocType: GCalendar Account,GCalendar Account,GCalendar-konto DocType: Language,Language Name,Sprognavn +DocType: Workflow Document State,Workflow Action is not created for optional states,Workflow Action er ikke oprettet til valgfrie stater DocType: Customize Form,Customize Form,Tilpas Formular DocType: DocType,Image Field,Billedfelt apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Tilføjet {0} ({1}) @@ -1750,6 +1777,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Anvend denne regel, hvis brugeren er ejeren" DocType: About Us Settings,Org History Heading,Org History Overskrift apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Server Fejl +DocType: Contact,Google Contacts Description,Google Kontakter Beskrivelse apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Standardroller kan ikke omdøbes DocType: Review Level,Review Points,Gennemgangspunkter apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Manglende parameter Kanban Board Name @@ -1767,7 +1795,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Ikke i udviklertilstand! Indstil i site_config.json eller lav 'Custom' DocType. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,opnåede {0} point DocType: Web Form,Success Message,Succesmeddelelse -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Til sammenligning skal du bruge> 5, <10 eller = 324. For intervaller skal du bruge 5:10 (for værdier mellem 5 og 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Beskrivelse til noteringsside, i almindelig tekst, kun et par linjer. (maks 140 tegn)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Vis tilladelser DocType: DocType,Restrict To Domain,Begræns til domæne @@ -1789,6 +1816,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Ikke f apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Indstil mængde DocType: Auto Repeat,End Date,Slutdato DocType: Workflow Transition,Next State,Næste stat +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Google Kontakter synkroniseret. DocType: System Settings,Is First Startup,Er første opstart apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},opdateret til {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Flytte til @@ -1838,6 +1866,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Kalender apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Data Import Template DocType: Workflow State,hand-left,hånd-venstre +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Vælg flere listeposter apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Backup størrelse: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Forbundet med {0} DocType: Braintree Settings,Private Key,Privat nøgle @@ -1880,13 +1909,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Interesse DocType: Bulk Update,Limit,Begrænse DocType: Print Settings,Print taxes with zero amount,Udskriv skat med nul beløb -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mail-konto er ikke konfigureret. Opret en ny e-mail-konto fra Opsætning> Email> E-mail-konto DocType: Workflow State,Book,Bestil DocType: S3 Backup Settings,Access Key ID,Adgangskode ID DocType: Chat Message,URLs,URL'er apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Navne og efternavne i sig selv er nemme at gætte. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Rapport {0} DocType: About Us Settings,Team Members Heading,Team medlemmer overskrift +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Vælg listen element apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Dokumentet {0} er sat til at angive {1} ved {2} DocType: Address Template,Address Template,Adresseskabelon DocType: Workflow State,step-backward,trin-baglæns @@ -1910,6 +1939,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Udfør brugerdefinerede tilladelser apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Ingen: Afslutning af Workflow DocType: Version,Version,Version +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Åbn listen element apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 måneder DocType: Chat Message,Group,Gruppe apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Der er noget problem med filadressen: {0} @@ -1965,6 +1995,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 år apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} vendte dine point tilbage på {1} DocType: Workflow State,arrow-down,pil-ned DocType: Data Import,Ignore encoding errors,Ignorer kodningsfejl +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Landskab DocType: Letter Head,Letter Head Name,Bogstavsnavn DocType: Web Form,Client Script,Client Script DocType: Assignment Rule,Higher priority rule will be applied first,Højere prioritetsregel anvendes først @@ -2009,6 +2040,7 @@ DocType: Kanban Board Column,Green,Grøn apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Kun obligatoriske felter er nødvendige for nye optegnelser. Du kan slette ikke-obligatoriske kolonner, hvis du ønsker det." apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} skal begynde og slutte med et bogstav og kan kun indeholde bogstaver, bindestreg eller understregning." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Trigger Primary Action apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Opret bruger e-mail apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Sorter felt {0} skal være et gyldigt feltnavn DocType: Auto Email Report,Filter Meta,Filter Meta @@ -2038,6 +2070,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Tidslinjefelt apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Indlæser... DocType: Auto Email Report,Half Yearly,Halvårlig +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Min profil apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Senest ændret dato DocType: Contact,First Name,Fornavn DocType: Post,Comments,Kommentarer @@ -2060,6 +2093,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Content Hash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Indlæg af {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} tildelt {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Ingen nye Google-kontakter blev synkroniseret. DocType: Workflow State,globe,globus apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Gennemsnit på {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Ryd fejllogger @@ -2086,6 +2120,8 @@ DocType: Workflow State,Inverse,Inverse DocType: Activity Log,Closed,Lukket DocType: Report,Query,Forespørgsel DocType: Notification,Days After,Dage efter +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Sideredskaber +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portræt apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Anmodning Timed Out DocType: System Settings,Email Footer Address,E-mail-fodboldadresse apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energipunkt opdatering @@ -2113,6 +2149,7 @@ For Select, enter list of Options, each on a new line.","For Links skal du indta apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,For 1 minut siden apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Ingen aktive sessioner apps/frappe/frappe/model/base_document.py,Row,Række +DocType: Contact,Middle Name,Mellemnavn apps/frappe/frappe/public/js/frappe/request.js,Please try again,Prøv igen DocType: Dashboard Chart,Chart Options,Diagramindstillinger DocType: Data Migration Run,Push Failed,Push mislykkedes @@ -2141,6 +2178,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,resize-small DocType: Comment,Relinked,Relinked DocType: Role Permission for Page and Report,Roles HTML,Roller HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Gå apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Workflow starter efter opbevaring. 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 indsæt den nøjagtige HTML-kode med tags." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Datoer er ofte nemme at gætte. @@ -2169,7 +2207,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Desktop ikon apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,annulleret dette dokument apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Datointerval -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Opsætning> Brugerautorisationer apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} værdsat {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Værdier ændret apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Fejl i meddelelse @@ -2234,6 +2271,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Bulk Slet DocType: DocShare,Document Name,Dokumentnavn apps/frappe/frappe/config/customization.py,Add your own translations,Tilføj dine egne oversættelser +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Naviger listen ned DocType: S3 Backup Settings,eu-central-1,eu-central-1 DocType: Auto Repeat,Yearly,årlig apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Omdøb @@ -2284,6 +2322,7 @@ DocType: Workflow State,plane,fly apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Nested set error. Kontakt venligst administratoren. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Vis rapport DocType: Auto Repeat,Auto Repeat Schedule,Automatisk gentagelsesplan +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Se Ref DocType: Address,Office,Kontor DocType: LDAP Settings,StartTLS,STARTTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} dage siden @@ -2317,7 +2356,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Ma apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Mine indstillinger apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Gruppens navn kan ikke være tomt. DocType: Workflow State,road,vej -DocType: Website Route Redirect,Source,Kilde +DocType: Contact,Source,Kilde apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Aktive sessioner apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Der kan kun være en fold i en formular apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Ny chat @@ -2339,6 +2378,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Indtast venligst godkend webadresse DocType: Email Account,Send Notification to,Send meddelelse til apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox-sikkerhedskopieringsindstillinger +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,Noget gik galt under token generation. Klik på {0} for at generere en ny. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Fjern alle tilpasninger? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Kun administrator kan redigere DocType: Auto Repeat,Reference Document,Referencedokument @@ -2363,6 +2403,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Roller kan indstilles til brugere fra deres brugerside. DocType: Website Settings,Include Search in Top Bar,Inkluder søgning i øverste linje apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Haster] Fejl under oprettelse af tilbagevendende% s for% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globale genveje DocType: Help Article,Author,Forfatter DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Intet dokument fundet for givne filtre @@ -2398,10 +2439,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, række {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Hvis du uploader nye poster, bliver "Naming Series" obligatorisk, hvis den er til stede." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Rediger egenskaber -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,"Kan ikke åbne forekomst, når dens {0} er åben" +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,"Kan ikke åbne forekomst, når dens {0} er åben" DocType: Activity Log,Timeline Name,Tidslinjenavn DocType: Comment,Workflow,Workflow apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Angiv basiswebadresse i Social Login-nøgle til Frappe +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Tastaturgenveje DocType: Portal Settings,Custom Menu Items,Brugerdefinerede menupunkter apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,Længden på {0} skal være mellem 1 og 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Forbindelse afbrudt. Nogle funktioner fungerer muligvis ikke. @@ -2464,6 +2506,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Rækker til DocType: DocType,Setup,Opsætning apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} oprettet med succes apps/frappe/frappe/www/update-password.html,New Password,nyt kodeord +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Vælg felt apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Forlad denne samtale DocType: About Us Settings,Team Members,Holdkammerater DocType: Blog Settings,Writers Introduction,Forfattere Introduktion @@ -2533,13 +2576,12 @@ DocType: Chat Room,Name,Navn DocType: Communication,Email Template,E-mail-skabelon DocType: Energy Point Settings,Review Levels,Gennemgå niveauer DocType: Print Format,Raw Printing,Råudskrivning -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,"Kan ikke åbne {0}, når dens forekomst er åben" +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,"Kan ikke åbne {0}, når dens forekomst er åben" DocType: DocType,"Make ""name"" searchable in Global Search",Gør "navn" søgbart i Global Search DocType: Data Migration Mapping,Data Migration Mapping,Data Migration Kortlægning DocType: Data Import,Partially Successful,Delvis vellykket DocType: Communication,Error,Fejl apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Felttype kan ikke ændres fra {0} til {1} i række {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Fejl ved tilslutning til QZ Tray Application ...

Du skal have QZ Tray-programmet installeret og kører, for at bruge funktionen Raw Print.

Klik her for at hente og installere QZ Tray .
Klik her for at lære mere om Raw Printing ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Tag et billede apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,"Undgå år, der er forbundet med dig." DocType: Web Form,Allow Incomplete Forms,Tillad ufuldstændige formularer @@ -2635,7 +2677,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Vælg mål = "_blank" for at åbne på en ny side. DocType: Portal Settings,Portal Menu,Portal Menu DocType: Website Settings,Landing Page,Destinationsside -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,Venligst tilmeld dig eller log ind for at begynde DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontakt muligheder, som "Salgs forespørgsel, Support Query" osv. Hver på en ny linje eller adskilt af kommaer." apps/frappe/frappe/twofactor.py,Verfication Code,Verfication Code apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} allerede afmeldt @@ -2721,6 +2762,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Data Migration DocType: Address,Sales User,Salgsbruger apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Skift feltegenskaber (skjul, læs, tilladelse osv.)" DocType: Property Setter,Field Name,Feltnavn +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Kunde DocType: Print Settings,Font Size,Skriftstørrelse DocType: User,Last Password Reset Date,Sidste adgangskode Nulstil dato DocType: System Settings,Date and Number Format,Dato og nummerformat @@ -2786,6 +2828,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Gruppe Node apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Flet sammen med eksisterende DocType: Blog Post,Blog Intro,Blog Intro apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nyt omtale +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Gå til felt DocType: Prepared Report,Report Name,Rapportnavn apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Opdater venligst for at få det seneste dokument. apps/frappe/frappe/core/doctype/communication/communication.js,Close,Tæt @@ -2795,10 +2838,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Begivenhed DocType: Social Login Key,Access Token URL,Adgangstoken URL apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Angiv venligst Dropbox-adgangstaster i dit websted config +DocType: Google Contacts,Google Contacts,Google Kontakter DocType: User,Reset Password Key,Nulstil adgangskode nøgle apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Ændret af DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.","For at forny, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Gemt succesfuldt +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Send en email til {0} for at linke den her. DocType: File,Folder,Folder DocType: DocField,Perm Level,Perm niveau DocType: Print Settings,Page Settings,Sideindstillinger @@ -2828,6 +2874,7 @@ DocType: Workflow State,remove-sign,fjern-skilt DocType: Dashboard Chart,Full,Fuld DocType: DocType,User Cannot Create,Bruger kan ikke oprette apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Du har fået {0} point +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Opsætning> Bruger DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Hvis du indstiller dette, kommer denne vare i en rullemenu under den valgte forælder." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Ingen emails apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Følgende felter mangler: @@ -2841,13 +2888,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Vis DocType: Web Form,Web Form Fields,Webformularfelter DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Brugerredigerbar formular på hjemmesiden. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Permanent Annuller {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Permanent Annuller {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Mulighed 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,totaler apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Dette er et meget almindeligt kodeord. DocType: Personal Data Deletion Request,Pending Approval,Afventer godkendelse apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Dokumentet kunne ikke tildeles korrekt apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Ikke tilladt for {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Ingen værdier at vise DocType: Personal Data Download Request,Personal Data Download Request,Personoplysninger download anmodning apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} delte dette dokument med {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Vælg {0} @@ -2863,7 +2911,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Denne email blev sendt til {0} og kopieret til {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,forkert brugernavn eller kodeord DocType: Social Login Key,Social Login Key,Social Login Key -apps/frappe/frappe/email/smtp.py,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/views/kanban/kanban_view.js,Filters saved,Filtre gemt DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Hvordan skal denne valuta formateres? Hvis den ikke er indstillet, bruger systemet standardindstillinger" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} er angivet til tilstand {2} @@ -2989,6 +3036,7 @@ DocType: User,Location,Beliggenhed apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Ingen data DocType: Website Meta Tag,Website Meta Tag,Website Meta Tag DocType: Workflow State,film,film +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Kopieret til udklipsholder. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Indstillinger ikke fundet apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Etiket er obligatorisk DocType: Webhook,Webhook Headers,Webhook Headers @@ -3197,7 +3245,7 @@ DocType: Address,Address Line 1,Adresse linie 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,For dokumenttype apps/frappe/frappe/model/base_document.py,Data missing in table,Data mangler i tabel apps/frappe/frappe/utils/bot.py,Could not identify {0},Kunne ikke identificere {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,"Denne formular er blevet ændret, efter at du har indlæst den" +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,"Denne formular er blevet ændret, efter at du har indlæst den" apps/frappe/frappe/www/login.html,Back to Login,Tilbage til login apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Ikke indstillet DocType: Data Migration Mapping,Pull,Trække @@ -3265,6 +3313,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Børnebordskortlægni apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Opsætning af e-mail-konto skal du indtaste dit kodeord for: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,For mange skriver i en anmodning. Venligst send mindre anmodninger DocType: Social Login Key,Salesforce,Salgsstyrke +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importerer {0} af {1} DocType: User,Tile,Flise apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} Værelset skal have mindst én bruger. DocType: Email Rule,Is Spam,Er spam @@ -3302,7 +3351,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,mappe-close DocType: Data Migration Run,Pull Update,Træk opdatering apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},fusionerede {0} til {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Ingen resultater fundet for '

DocType: SMS Settings,Enter url parameter for receiver nos,Indtast url-parameter for modtager nr apps/frappe/frappe/utils/jinja.py,Syntax error in template,Syntaksfejl i skabelon apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Angiv filtre værdi i Rapport Filter tabel. @@ -3315,6 +3363,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Beklager, d DocType: System Settings,In Days,I Dage DocType: Report,Add Total Row,Tilføj Total Række apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Session Start mislykkedes +DocType: Translation,Verified,Verified DocType: Print Format,Custom HTML Help,Brugerdefineret HTML Hjælp DocType: Address,Preferred Billing Address,Foretrukket faktureringsadresse apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Tildelt @@ -3329,7 +3378,6 @@ DocType: Help Article,Intermediate,Intermediate DocType: Module Def,Module Name,Modulnavn DocType: OAuth Authorization Code,Expiration time,Udløbstid apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Indstil standardformat, sidestørrelse, udskriftsform osv." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,"Du kan ikke lide noget, du skabte" DocType: System Settings,Session Expiry,Sessionens udløb DocType: DocType,Auto Name,Automatisk navn apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Vælg Vedhæftede filer @@ -3357,6 +3405,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,System side DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Bemærk: Som standard sendes e-mails for mislykkede sikkerhedskopier. DocType: Custom DocPerm,Custom DocPerm,Brugerdefineret DocPerm +DocType: Translation,PR sent,PR sendt DocType: Tag Doc Category,Doctype to Assign Tags,Doctype til tildele tags DocType: Address,Warehouse,Lager apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Dropbox Setup @@ -3424,7 +3473,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Enter for at tilføje kommentar apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Felt {0} kan ikke vælges. DocType: User,Birth Date,Fødselsdato -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Med gruppeindrykning DocType: List View Setting,Disable Count,Deaktiver tæller DocType: Contact Us Settings,Email ID,E-mail-id apps/frappe/frappe/utils/password.py,Incorrect User or Password,Forkert bruger eller kodeord @@ -3459,6 +3507,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Denne rolle opdaterer brugerrettigheder til en bruger DocType: Website Theme,Theme,Tema DocType: Web Form,Show Sidebar,Vis sidebjælke +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google Kontakter Integration. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Standardindbakke apps/frappe/frappe/www/login.py,Invalid Login Token,Ugyldig logintoken apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Indstil først navnet og gem posten. @@ -3486,7 +3535,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Ret venligst DocType: Top Bar Item,Top Bar Item,Top Bar Item ,Role Permissions Manager,Role Permissions Manager -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,Der var fejl. Rapporter venligst dette. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} år siden apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Kvinde DocType: System Settings,OTP Issuer Name,OTP Udsteder Navn apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Tilføj til for at gøre @@ -3586,6 +3635,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Indsti apps/frappe/frappe/model/document.py,none of,ingen af DocType: Desktop Icon,Page,Side DocType: Workflow State,plus-sign,plus-tegn +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Ryd cache og genindlæs apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Kan ikke opdatere: Forkert / Udgået Link. DocType: Kanban Board Column,Yellow,Gul 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 et gitter (Total kolonner i et gitter skal være mindre end 11) @@ -3600,6 +3650,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,New DocType: Activity Log,Date,Dato DocType: Communication,Communication Type,Kommunikationstype apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Forældre tabel +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Naviger listen op DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Vis fuld fejl og tillade rapportering af problemer til udvikleren DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3621,7 +3672,6 @@ DocType: Notification Recipient,Email By Role,Email til rolle apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,Opgrader venligst for at tilføje mere end {0} abonnenter apps/frappe/frappe/email/queue.py,This email was sent to {0},Denne email blev sendt til {0} DocType: User,Represents a User in the system.,Representerer en bruger i systemet. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Side {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Start nyt format apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Tilføj en kommentar apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} af {1} diff --git a/frappe/translations/de.csv b/frappe/translations/de.csv index 73b2066a1b..32680ef51c 100644 --- a/frappe/translations/de.csv +++ b/frappe/translations/de.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Farbverläufe aktivieren DocType: DocType,Default Sort Order,Standard-Sortierreihenfolge apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Zeigt nur numerische Felder aus dem Bericht an +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,"Drücken Sie die Alt-Taste, um zusätzliche Verknüpfungen in Menü und Seitenleiste zu aktivieren" DocType: Workflow State,folder-open,Ordner öffnen DocType: Customize Form,Is Table,Ist Tabelle apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Angehängte Datei kann nicht geöffnet werden. Hast du es als CSV exportiert? DocType: DocField,No Copy,Keine Kopie DocType: Custom Field,Default Value,Standardwert apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Anhängen an ist für eingehende Mails obligatorisch +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Kontakte synchronisieren DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Detail der Datenmigrationszuordnung apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Nicht mehr folgen apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",PDF-Druck über "Raw Print" wird noch nicht unterstützt. Bitte entfernen Sie die Druckerzuordnung in den Druckereinstellungen und versuchen Sie es erneut. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} und {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Beim Speichern der Filter ist ein Fehler aufgetreten apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Geben Sie Ihr Passwort ein apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Ordner Home und Anhänge können nicht gelöscht werden +DocType: Email Account,Enable Automatic Linking in Documents,Aktivieren Sie die automatische Verknüpfung in Dokumenten DocType: Contact Us Settings,Settings for Contact Us Page,Einstellungen für Kontaktseite DocType: Social Login Key,Social Login Provider,Social Login-Anbieter +DocType: Email Account,"For more information, click here.","Weitere Informationen finden Sie hier ." DocType: Transaction Log,Previous Hash,Vorheriger Hash DocType: Notification,Value Changed,Wert geändert DocType: Report,Report Type,Berichtstyp @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Energiepunkt-Regel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,"Bitte geben Sie Ihre Kundennummer ein, bevor Sie sich sozial einloggen" DocType: Communication,Has Attachment,Hat Anhang DocType: User,Email Signature,E-Mail Signatur -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,Vor> {0} Jahr (en) ,Addresses And Contacts,Adressen und Kontakte apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Dieses Kanban Board wird privat sein DocType: Data Migration Run,Current Mapping,Aktuelle Zuordnung @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Wenn Sie die Synchronisierungsoption als ALLE auswählen, werden alle gelesenen und ungelesenen Nachrichten vom Server erneut synchronisiert. Dies kann auch zu einer Duplizierung der Kommunikation (E-Mails) führen." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Zuletzt synchronisiert {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Header-Inhalt kann nicht geändert werden +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Keine Ergebnisse gefunden für '

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Nach Übermittlung darf {0} nicht geändert werden apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page",Die Anwendung wurde auf eine neue Version aktualisiert. Bitte aktualisieren Sie diese Seite DocType: User,User Image,Benutzerbild @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Als { apps/frappe/frappe/public/js/frappe/chat.js,Discard,Verwerfen DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,"Wählen Sie ein Bild mit einer Breite von ca. 150 Pixel und einem transparenten Hintergrund, um die besten Ergebnisse zu erzielen." apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,Rückfall +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} Werte ausgewählt DocType: Blog Post,Email Sent,E-Mail gesendet DocType: Communication,Read by Recipient On,Gelesen vom Empfänger Ein DocType: User,Allow user to login only after this hour (0-24),Benutzer darf sich erst nach dieser Stunde anmelden (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Modul zum Exportieren DocType: DocType,Fields,Felder -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Sie dürfen dieses Dokument nicht ausdrucken +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Sie dürfen dieses Dokument nicht ausdrucken apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Elternteil apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Ihre Sitzung ist abgelaufen. Bitte melden Sie sich erneut an, um fortzufahren." DocType: Assignment Rule,Priority,Priorität @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,OTP-Geheimnis zur DocType: DocType,UPPER CASE,OBERER FALL apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,Bitte geben Sie Ihre E-Mail-Adresse an DocType: Communication,Marked As Spam,Als Spam markiert +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"E-Mail-Adresse, deren Google-Kontakte synchronisiert werden sollen." apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Abonnenten importieren apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Filter speichern DocType: Address,Preferred Shipping Address,Bevorzugte Lieferadresse DocType: GCalendar Account,The name that will appear in Google Calendar,"Der Name, der in Google Kalender angezeigt wird" +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,"Klicken Sie auf {0}, um das Refresh Token zu generieren." DocType: Email Account,Disable SMTP server authentication,Deaktivieren Sie die SMTP-Serverauthentifizierung DocType: Email Account,Total number of emails to sync in initial sync process ,"Gesamtzahl der E-Mails, die bei der ersten Synchronisierung synchronisiert werden sollen" DocType: System Settings,Enable Password Policy,Aktivieren Sie die Kennwortrichtlinie @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Code eingeben apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Nicht in DocType: Auto Repeat,Start Date,Anfangsdatum apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Diagramm festlegen +DocType: Website Theme,Theme JSON,Theme JSON apps/frappe/frappe/www/list.py,My Account,Mein Konto DocType: DocType,Is Published Field,Ist veröffentlichtes Feld DocType: DocField,Set non-standard precision for a Float or Currency field,Festlegen einer nicht standardmäßigen Genauigkeit für ein Feld "Float" oder "Currency" @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,"ProTip: Reference: {{ reference_doctype }} {{ reference_name }} hinzufügen: Reference: {{ reference_doctype }} {{ reference_name }} , um die Dokumentreferenz zu senden" DocType: LDAP Settings,LDAP First Name Field,LDAP-Vorname-Feld apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Standardversand und Posteingang -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Formular anpassen apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",Zum Aktualisieren können Sie nur ausgewählte Spalten aktualisieren. apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',Die Standardeinstellung für den Feldtyp "Prüfen" muss entweder "0" oder "1" sein. apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Teilen Sie dieses Dokument mit @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Domains HTML DocType: Blog Settings,Blog Settings,Blog Einstellungen apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Der Name von DocType sollte mit einem Buchstaben beginnen und darf nur aus Buchstaben, Zahlen, Leerzeichen und Unterstrichen bestehen" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup> Benutzerberechtigungen DocType: Communication,Integrations can use this field to set email delivery status,"Integrationen können dieses Feld verwenden, um den Status der E-Mail-Zustellung festzulegen" apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Stripe Payment Gateway-Einstellungen DocType: Print Settings,Fonts,Schriften DocType: Notification,Channel,Kanal DocType: Communication,Opened,Geöffnet DocType: Workflow Transition,Conditions,Bedingungen +apps/frappe/frappe/config/website.py,A user who posts blogs.,"Ein Benutzer, der Blogs veröffentlicht." apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Sie haben noch keinen Account? Anmelden apps/frappe/frappe/utils/file_manager.py,Added {0},{0} hinzugefügt DocType: Newsletter,Create and Send Newsletters,Newsletter erstellen und versenden DocType: Website Settings,Footer Items,Fußzeilenelemente +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Richten Sie das Standard-E-Mail-Konto über Setup> E-Mail> E-Mail-Konto ein DocType: Website Slideshow Item,Website Slideshow Item,Website Slideshow Item apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registrieren Sie die OAuth Client App DocType: Error Snapshot,Frames,Rahmen @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Stufe 0 steht für Berechtigungen auf Dokumentebene, \ höhere Stufen für Berechtigungen auf Feldebene." DocType: Address,City/Town,Stadt DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?",Dadurch wird Ihr aktuelles Thema zurückgesetzt. Möchten Sie wirklich fortfahren? apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Pflichtfelder in {0} erforderlich apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Fehler beim Herstellen einer Verbindung zum E-Mail-Konto {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Beim Erstellen einer wiederkehrenden Nachricht ist ein Fehler aufgetreten @@ -528,7 +537,7 @@ DocType: Event,Event Category,Ereigniskategorie apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Spalten basierend auf apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Überschrift bearbeiten DocType: Communication,Received,Empfangen -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Sie dürfen nicht auf diese Seite zugreifen. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Sie dürfen nicht auf diese Seite zugreifen. DocType: User Social Login,User Social Login,Benutzer Social Login apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,"Schreiben Sie eine Python-Datei in denselben Ordner, in dem diese gespeichert ist, und geben Sie Spalte und Ergebnis zurück." DocType: Contact,Purchase Manager,Einkaufsleiter @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Diag apps/frappe/frappe/utils/data.py,Operator must be one of {0},Operator muss einer von {0} sein apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Wenn Besitzer DocType: Data Migration Run,Trigger Name,Triggername -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Schreibe Titel und Einführungen in dein Blog. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Feld entfernen apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Alles schließen apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Hintergrundfarbe @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,Bar DocType: SMS Settings,Enter url parameter for message,Geben Sie den URL-Parameter für die Nachricht ein apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Neues benutzerdefiniertes Druckformat apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} existiert bereits +DocType: Workflow Document State,Is Optional State,Ist optionaler Status DocType: Address,Purchase User,Benutzer kaufen DocType: Data Migration Run,Insert,Einfügen DocType: Web Form,Route to Success Link,Route zum Erfolgslink @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Der Nut DocType: File,Is Home Folder,Ist Hauptordner apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Art: DocType: Post,Is Pinned,Ist gepinnt -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Keine Berechtigung für '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Keine Berechtigung für '{0}' {1} DocType: Patch Log,Patch Log,Patch-Protokoll DocType: Print Format,Print Format Builder,Print Format Builder 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 einer beliebigen IP-Adresse aus mit Two Factor Auth anmelden. Dies kann auch nur für bestimmte Benutzer auf der Benutzerseite festgelegt werden" apps/frappe/frappe/utils/data.py,only.,nur. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,Die Bedingung '{0}' ist ungültig DocType: Auto Email Report,Day of Week,Wochentag +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Aktivieren Sie die Google-API in den Google-Einstellungen. DocType: DocField,Text Editor,Texteditor apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Schnitt apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Suchen oder geben Sie einen Befehl ein @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,Die Anzahl der DB-Sicherungen darf 1 nicht unterschreiten DocType: Workflow State,ban-circle,Verbot-Kreis DocType: Data Export,Excel,Excel +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Header, Breadcrumbs und Meta-Tags" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Support-E-Mail-Adresse nicht angegeben DocType: Comment,Published,Veröffentlicht DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","Hinweis: Um optimale Ergebnisse zu erzielen, müssen die Bilder dieselbe Größe und Breite haben und größer als die Höhe sein." @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Scheduler Last Event apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Bericht aller Dokumentenfreigaben DocType: Website Sidebar Item,Website Sidebar Item,Element der Seitenleiste der Website apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Machen +DocType: Google Settings,Google Settings,Google-Einstellungen apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Wählen Sie Ihr Land, Ihre Zeitzone und Ihre Währung aus" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Geben Sie hier statische URL-Parameter ein (z. B. Absender = ERPNext, Benutzername = ERPNext, Passwort = 1234 usw.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Kein E-Mail-Konto @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth-Träger-Token ,Setup Wizard,Setup-Assistent apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Diagramm umschalten +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,Synchronisierung DocType: Data Migration Run,Current Mapping Action,Aktuelle Zuordnungsaktion DocType: Email Account,Initial Sync Count,Initial Sync Count apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Einstellungen für Kontaktseite. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Druckformattyp apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Für dieses Kriterium wurden keine Berechtigungen festgelegt. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Alle erweitern +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Keine Standardadressvorlage gefunden. Erstellen Sie unter Setup> Drucken und Markieren> Adressvorlage eine neue. DocType: Tag Doc Category,Tag Doc Category,Tag Doc Category DocType: Data Import,Generated File,Generierte Datei apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Anmerkungen @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Das Zeitleistenfeld muss ein Link oder ein dynamischer Link sein DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Benachrichtigungen und Massenmails werden von diesem ausgehenden Server gesendet. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Dies ist ein Top-100-Kennwort. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,{0} dauerhaft senden? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,{0} dauerhaft senden? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge",{0} {1} ist nicht vorhanden. Wählen Sie ein neues Ziel zum Zusammenführen aus DocType: Energy Point Rule,Multiplier Field,Multiplikatorfeld DocType: Workflow,Workflow State Field,Workflow-Statusfeld @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} hat Ihre Arbeit an {1} mit {2} Punkten gewürdigt DocType: Auto Email Report,Zero means send records updated at anytime,"Null bedeutet, dass Datensätze jederzeit aktualisiert werden" apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Wert kann für {0} nicht geändert werden +apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API-Einstellungen. DocType: System Settings,Force User to Reset Password,Benutzer zum Zurücksetzen des Kennworts zwingen apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Report Builder-Berichte werden direkt vom Report Builder verwaltet. Nichts zu tun. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Filter bearbeiten @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,für DocType: S3 Backup Settings,eu-north-1,EU-Nord-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Nur eine Regel mit derselben Rolle, Stufe und {1} zulässig" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Sie dürfen dieses Web Form-Dokument nicht aktualisieren -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Maximales Anhangslimit für diesen Datensatz erreicht. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Maximales Anhangslimit für diesen Datensatz erreicht. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,"Bitte stellen Sie sicher, dass die Referenzdokumente zur Kommunikation nicht zirkulär verlinkt sind." DocType: DocField,Allow in Quick Entry,Schnelleingabe zulassen DocType: Error Snapshot,Locals,Einheimische @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Ausnahmetyp apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},"Löschen oder Abbrechen nicht möglich, da {0} {1} mit {2} {3} {4} verknüpft ist" apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,Das OTP-Geheimnis kann nur vom Administrator zurückgesetzt werden. -DocType: Web Form Field,Page Break,Seitenumbruch DocType: Website Script,Website Script,Website-Skript DocType: Integration Request,Subscription Notification,Abonnementbenachrichtigung DocType: DocType,Quick Entry,Schnelleinstieg @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,Eigenschaft nach Warnung festlege apps/frappe/frappe/__init__.py,Thank you,Vielen Dank apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks für die interne Integration apps/frappe/frappe/config/settings.py,Import Data,Daten importieren +DocType: Translation,Contributed Translation Doctype Name,Beigetragener Doctype-Name der Übersetzung DocType: Social Login Key,Office 365,Büro 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ICH WÜRDE DocType: Review Level,Review Level,Überprüfungsstufe @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Erfolgreich gemacht apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Liste apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Schätzen -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Neu {0} (Strg + B) DocType: Contact,Is Primary Contact,Ist primärer Kontakt DocType: Print Format,Raw Commands,Raw-Befehle apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Stylesheets für Druckformate @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Fehler in Hintergr apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},{0} in {1} suchen DocType: Email Account,Use SSL,Verwenden Sie SSL DocType: DocField,In Standard Filter,Im Standardfilter +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Für die Synchronisierung sind keine Google-Kontakte vorhanden. DocType: Data Migration Run,Total Pages,Alle Seiten apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,"{0}: Feld '{1}' kann nicht als eindeutig festgelegt werden, da es nicht eindeutige Werte enthält" DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Wenn diese Option aktiviert ist, werden Benutzer bei jeder Anmeldung benachrichtigt. Wenn nicht aktiviert, werden Benutzer nur einmal benachrichtigt." @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,Automatisierung apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Dateien werden entpackt ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Suche nach '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Etwas ist schief gelaufen -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Bitte speichern Sie vor dem Anhängen. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,Bitte speichern Sie vor dem Anhängen. DocType: Version,Table HTML,Tabellen-HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,Nabe DocType: Page,Standard,Standard @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Keine Ergeb apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} Datensätze gelöscht apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,Beim Generieren des Dropbox-Zugriffstokens ist ein Fehler aufgetreten. Bitte überprüfen Sie das Fehlerprotokoll auf weitere Details. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Nachkommen von -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Keine Standardadressvorlage gefunden. Erstellen Sie unter Setup> Drucken und Markieren> Adressvorlage eine neue. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Kontakte wurde konfiguriert. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Details ausblenden apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Schriftstile apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Ihr Abonnement läuft am {0} ab. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Authentifizierung beim Empfang von E-Mails vom E-Mail-Konto {0} fehlgeschlagen. Nachricht vom Server: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Statistiken basieren auf der Leistung der letzten Woche (von {0} bis {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,"Die automatische Verknüpfung kann nur aktiviert werden, wenn Eingehend aktiviert ist." DocType: Website Settings,Title Prefix,Titelpräfix apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Folgende Authentifizierungs-Apps können Sie verwenden: DocType: Bulk Update,Max 500 records at a time,Maximal 500 Datensätze gleichzeitig @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,Berichtsfilter apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Spalten auswählen DocType: Event,Participants,Teilnehmer DocType: Auto Repeat,Amended From,Geändert von -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Ihre Information wurde eingereicht +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Ihre Information wurde eingereicht DocType: Help Category,Help Category,Hilfekategorie apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 Monat apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Wählen Sie ein vorhandenes Format zum Bearbeiten oder starten Sie ein neues Format. @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Zu verfolgendes Feld DocType: User,Generate Keys,Schlüssel generieren DocType: Comment,Unshared,Ungeteilt -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Gerettet +DocType: Translation,Saved,Gerettet DocType: OAuth Client,OAuth Client,OAuth-Client DocType: System Settings,Disable Standard Email Footer,Deaktivieren Sie die Standard-E-Mail-Fußzeile apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Druckformat {0} ist deaktiviert @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Zuletzt aktua DocType: Data Import,Action,Aktion apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Client-Schlüssel ist erforderlich DocType: Chat Profile,Notifications,Benachrichtigungen +DocType: Translation,Contributed,Beigetragen DocType: System Settings,mm/dd/yyyy,MM / TT / JJJJ DocType: Report,Custom Report,Benutzerdefinierter Bericht DocType: Workflow State,info-sign,Info-Zeichen @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Kontakt DocType: LDAP Settings,LDAP Username Field,LDAP-Benutzername apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Das Feld {0} kann in {1} nicht als eindeutig festgelegt werden, da es nicht eindeutige vorhandene Werte gibt" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Formular anpassen DocType: User,Social Logins,Soziale Logins DocType: Workflow State,Trash,Müll DocType: Stripe Settings,Secret Key,Geheimer Schlüssel @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,Titelfeld apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Verbindung zum Server für ausgehende E-Mails konnte nicht hergestellt werden DocType: File,File URL,Datei-URL DocType: Help Article,Likes,Likes +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Die Integration von Google-Kontakten ist deaktiviert. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,"Sie müssen angemeldet sein und über die System-Manager-Rolle verfügen, um auf Sicherungen zugreifen zu können." apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Erste Ebene DocType: Blogger,Short Name,Kurzer Name @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Zip importieren DocType: Contact,Gender,Geschlecht DocType: Workflow State,thumbs-down,Daumen runter -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Warteschlange sollte eine von {0} sein apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Benachrichtigung für Dokumenttyp {0} kann nicht festgelegt werden apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Hinzufügen des System Managers zu diesem Benutzer, da mindestens ein System Manager vorhanden sein muss" apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Begrüßungs-E-Mail gesendet DocType: Transaction Log,Chaining Hash,Verkettung von Hash DocType: Contact,Maintenance Manager,Wartungsmanager +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Verwenden Sie zum Vergleich> 5, <10 oder = 324. Verwenden Sie für Bereiche 5:10 (für Werte zwischen 5 und 10)." apps/frappe/frappe/utils/bot.py,show,Show apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URL freigeben apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Nicht unterstütztes Dateiformat @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,Benachrichtigung DocType: Data Import,Show only errors,Zeige nur Fehler DocType: Energy Point Log,Review,Rezension apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Zeilen entfernt -DocType: GSuite Settings,Google Credentials,Google-Anmeldeinformationen +DocType: Google Settings,Google Credentials,Google-Anmeldeinformationen apps/frappe/frappe/www/login.html,Or login with,Oder melde dich mit an apps/frappe/frappe/model/document.py,Record does not exist,Datensatz existiert nicht apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Neuer Berichtsname @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,Liste DocType: Workflow State,th-large,th-groß apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,"{0}: Assign Submit kann nicht festgelegt werden, wenn Submitable nicht möglich ist" apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Mit keinem Datensatz verknüpft +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Fehler beim Verbinden mit der QZ-Tray-Anwendung ...

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

Klicken Sie hier, um QZ Tray herunterzuladen und zu installieren .
Klicken Sie hier, um mehr über Raw Printing zu erfahren ." DocType: Chat Message,Content,Inhalt DocType: Workflow Transition,Allow Self Approval,Selbstgenehmigung zulassen apps/frappe/frappe/www/qrcode.py,Page has expired!,Seite ist abgelaufen! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,Hand rechts DocType: Website Settings,Banner is above the Top Menu Bar.,Das Banner befindet sich über der oberen Menüleiste. apps/frappe/frappe/www/update-password.html,Invalid Password,Ungültiges Passwort apps/frappe/frappe/utils/data.py,1 month ago,Vor 1 Monat +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Zugriff auf Google-Kontakte zulassen DocType: OAuth Client,App Client ID,App-Client-ID DocType: DocField,Currency,Währung DocType: Website Settings,Banner,Banner @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Tor DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Wenn eine Rolle auf Ebene 0 keinen Zugriff hat, sind höhere Ebenen bedeutungslos." DocType: ToDo,Reference Type,Referenztyp -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Zulassen von DocType, DocType. Achtung!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Zulassen von DocType, DocType. Achtung!" DocType: Domain Settings,Domain Settings,Domain-Einstellungen DocType: Auto Email Report,Dynamic Report Filters,Dynamische Berichtsfilter DocType: Energy Point Log,Appreciation,Anerkennung @@ -1468,6 +1489,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,US-West-2 DocType: DocType,Is Single,Ist Single apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Erstellen Sie ein neues Format +DocType: Google Contacts,Authorize Google Contacts Access,Autorisieren Sie den Zugriff auf Google Kontakte DocType: S3 Backup Settings,Endpoint URL,Endpunkt-URL DocType: Social Login Key,Google,Google DocType: Contact,Department,Abteilung @@ -1482,7 +1504,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Zuweisen DocType: List Filter,List Filter,Listenfilter DocType: Dashboard Chart Link,Chart,Diagramm apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Kann nicht entfernen -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Senden Sie dieses Dokument zur Bestätigung +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Senden Sie dieses Dokument zur Bestätigung apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} existiert bereits. Wählen Sie einen anderen Namen apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,"Sie haben Änderungen in diesem Formular nicht gespeichert. Bitte speichern Sie, bevor Sie fortfahren." apps/frappe/frappe/model/document.py,Action Failed,Aktion: fehlgeschlagen @@ -1564,6 +1586,7 @@ DocType: DocField,Display,Anzeige apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Allen antworten DocType: Calendar View,Subject Field,Betreff Feld apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Sitzungsablauf muss im Format {0} vorliegen +apps/frappe/frappe/model/workflow.py,Applying: {0},Bewerbung: {0} DocType: Workflow State,zoom-in,hineinzoomen apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Verbindung zum Server fehlgeschlagen apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Datum {0} muss im Format {1} vorliegen @@ -1575,8 +1598,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Das Symbol wird auf der Schaltfläche angezeigt DocType: Role Permission for Page and Report,Set Role For,Rolle festlegen für +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Die automatische Verknüpfung kann nur für ein E-Mail-Konto aktiviert werden. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Es wurden keine E-Mail-Konten zugewiesen +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-Mail-Konto nicht eingerichtet. Bitte erstellen Sie ein neues E-Mail-Konto über Setup> E-Mail> E-Mail-Konto apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Zuordnung +DocType: Google Contacts,Last Sync On,Letzte Synchronisierung Ein apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},erhalten von {0} über die automatische Regel {1} apps/frappe/frappe/config/website.py,Portal,Portal apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Danke für Ihre E-Mail @@ -1597,7 +1623,6 @@ DocType: GSuite Settings,GSuite Settings,GSuite-Einstellungen DocType: Integration Request,Remote,Fernbedienung DocType: File,Thumbnail URL,Thumbnail-URL apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Bericht herunterladen -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup> Benutzer apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Anpassungen für {0} exportiert nach:
{1} DocType: GCalendar Account,Calendar Name,Kalendername apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Ihre Login-ID lautet @@ -1647,6 +1672,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Gehe apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Das Bildfeld muss ein gültiger Feldname sein apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,"Sie müssen angemeldet sein, um auf diese Seite zugreifen zu können" DocType: Assignment Rule,Example: {{ subject }},Beispiel: {{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Der Feldname {0} ist eingeschränkt apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Sie können "Schreibgeschützt" für Feld {0} nicht deaktivieren. DocType: Social Login Key,Enable Social Login,Social Login aktivieren DocType: Workflow,Rules defining transition of state in the workflow.,"Regeln, die den Statusübergang im Workflow definieren." @@ -1667,10 +1693,10 @@ DocType: Website Settings,Route Redirects,Routenumleitungen apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,E-Mail-Posteingang apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},{0} als {1} wiederhergestellt DocType: Assignment Rule,Automatically Assign Documents to Users,Dokumente automatisch Benutzern zuweisen +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Öffnen Sie die Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,E-Mail-Vorlagen für häufig gestellte Fragen. DocType: Letter Head,Letter Head Based On,Briefkopf basierend auf apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Bitte schließen Sie dieses Fenster -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Zahlung abgeschlossen DocType: Contact,Designation,Bezeichnung DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Meta-Tags @@ -1709,6 +1735,7 @@ DocType: System Settings,Choose authentication method to be used by all users,"W DocType: Error Snapshot,Parent Error Snapshot,Übergeordneter Fehler-Snapshot DocType: GCalendar Account,GCalendar Account,GCalendar-Konto DocType: Language,Language Name,Sprache Name +DocType: Workflow Document State,Workflow Action is not created for optional states,Für optionale Status wird keine Workflow-Aktion erstellt DocType: Customize Form,Customize Form,Formular anpassen DocType: DocType,Image Field,Bildfeld apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),{0} ({1}) hinzugefügt @@ -1750,6 +1777,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Wenden Sie diese Regel an, wenn der Benutzer der Eigentümer ist" DocType: About Us Settings,Org History Heading,Org History Überschrift apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Serverfehler +DocType: Contact,Google Contacts Description,Beschreibung der Google-Kontakte apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Standardrollen können nicht umbenannt werden DocType: Review Level,Review Points,Punkte überprüfen apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Fehlender Parameter Kanban Board Name @@ -1767,7 +1795,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Nicht im Entwicklermodus! In site_config.json einstellen oder 'Custom' DocType erstellen. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,erhielt {0} Punkte DocType: Web Form,Success Message,Erfolgsmeldung -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Verwenden Sie zum Vergleich> 5, <10 oder = 324. Verwenden Sie für Bereiche 5:10 (für Werte zwischen 5 und 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Beschreibung für Listingseite, im Klartext, nur ein paar Zeilen. (maximal 140 Zeichen)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Berechtigungen anzeigen DocType: DocType,Restrict To Domain,Auf Domain beschränken @@ -1789,6 +1816,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Nicht apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Menge einstellen DocType: Auto Repeat,End Date,Endtermin DocType: Workflow Transition,Next State,Nächster Staat +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Google-Kontakte synchronisiert DocType: System Settings,Is First Startup,Ist der erste Start apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},aktualisiert auf {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Ziehen nach @@ -1838,6 +1866,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Kalender apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Datenimportvorlage DocType: Workflow State,hand-left,Hand nach links +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Wählen Sie mehrere Listenelemente aus apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Sicherungsgröße: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Verknüpft mit {0} DocType: Braintree Settings,Private Key,Privat Schlüssel @@ -1880,13 +1909,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Interesse DocType: Bulk Update,Limit,Grenze DocType: Print Settings,Print taxes with zero amount,Steuern ohne Betrag drucken -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-Mail-Konto nicht eingerichtet. Bitte erstellen Sie ein neues E-Mail-Konto über Setup> E-Mail> E-Mail-Konto DocType: Workflow State,Book,Buch DocType: S3 Backup Settings,Access Key ID,Zugangsschlüssel-ID DocType: Chat Message,URLs,URLs apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Vor- und Nachnamen sind für sich leicht zu erraten. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},{0} melden DocType: About Us Settings,Team Members Heading,Teammitglieder Überschrift +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Listenelement auswählen apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Dokument {0} wurde von {2} in den Status {1} versetzt DocType: Address Template,Address Template,Adressvorlage DocType: Workflow State,step-backward,Schritt zurück @@ -1910,6 +1939,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Benutzerdefinierte Berechtigungen exportieren apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Keine: Ende des Workflows DocType: Version,Version,Ausführung +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Listenelement öffnen apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 Monate DocType: Chat Message,Group,Gruppe apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Es gibt ein Problem mit der Datei-URL: {0} @@ -1965,6 +1995,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 Jahr apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} hat Ihre Punkte auf {1} zurückgesetzt. DocType: Workflow State,arrow-down,Pfeil nach unten DocType: Data Import,Ignore encoding errors,Codierungsfehler ignorieren +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Landschaft DocType: Letter Head,Letter Head Name,Briefkopfname DocType: Web Form,Client Script,Client-Skript DocType: Assignment Rule,Higher priority rule will be applied first,Die Regel mit der höheren Priorität wird zuerst angewendet @@ -2009,6 +2040,7 @@ DocType: Kanban Board Column,Green,Grün apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Für neue Datensätze sind nur Pflichtfelder erforderlich. Sie können nicht obligatorische Spalten löschen, wenn Sie möchten." apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} muss mit einem Buchstaben beginnen und enden und darf nur Buchstaben, Bindestriche oder Unterstriche enthalten." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Primäre Aktion auslösen apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Erstellen Sie eine Benutzer-E-Mail apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Das Sortierfeld {0} muss ein gültiger Feldname sein DocType: Auto Email Report,Filter Meta,Filter Meta @@ -2038,6 +2070,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Zeitleistenfeld apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Wird geladen... DocType: Auto Email Report,Half Yearly,Halbjährlich +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Mein Profil apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Zuletzt geändertes Datum DocType: Contact,First Name,Vorname DocType: Post,Comments,Bemerkungen @@ -2060,6 +2093,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Inhalts-Hash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Beiträge von {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} zugewiesen {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Keine neuen Google-Kontakte synchronisiert DocType: Workflow State,globe,Globus apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Durchschnitt von {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Fehlerprotokolle löschen @@ -2086,6 +2120,8 @@ DocType: Workflow State,Inverse,Inverse DocType: Activity Log,Closed,Geschlossen DocType: Report,Query,Abfrage DocType: Notification,Days After,Tage später +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Seitenkürzel +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Porträt apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Zeitüberschreitung der Anforderung DocType: System Settings,Email Footer Address,E-Mail-Adresse der Fußzeile apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energiepunktaktualisierung @@ -2113,6 +2149,7 @@ For Select, enter list of Options, each on a new line.",Geben Sie für Links den apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,Vor 1 Minute apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Keine aktiven Sitzungen apps/frappe/frappe/model/base_document.py,Row,Reihe +DocType: Contact,Middle Name,Zweiter Vorname apps/frappe/frappe/public/js/frappe/request.js,Please try again,Bitte versuche es erneut DocType: Dashboard Chart,Chart Options,Diagrammoptionen DocType: Data Migration Run,Push Failed,Push fehlgeschlagen @@ -2141,6 +2178,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,Größe ändern - klein DocType: Comment,Relinked,Relinked DocType: Role Permission for Page and Report,Roles HTML,Rollen HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Gehen apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Der Workflow startet nach dem Speichern. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Wenn Ihre Daten in HTML sind, kopieren Sie bitte den genauen HTML-Code mit den Tags." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Termine sind oft leicht zu erraten. @@ -2169,7 +2207,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Schreibtischsymbol apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,hat dieses Dokument storniert apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Datumsbereich -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup> Benutzerberechtigungen apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} geschätzt {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Werte geändert apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Fehler in der Benachrichtigung @@ -2233,6 +2270,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Massenlöschung DocType: DocShare,Document Name,Dokumentname apps/frappe/frappe/config/customization.py,Add your own translations,Fügen Sie Ihre eigenen Übersetzungen hinzu +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Liste nach unten navigieren DocType: S3 Backup Settings,eu-central-1,eu-central-1 DocType: Auto Repeat,Yearly,Jährlich apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Umbenennen @@ -2283,6 +2321,7 @@ DocType: Workflow State,plane,Ebene apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Verschachtelter Satzfehler. Bitte wenden Sie sich an den Administrator. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Bericht zeigen DocType: Auto Repeat,Auto Repeat Schedule,Zeitplan für automatische Wiederholung +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Ansicht Ref DocType: Address,Office,Büro DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,Vor {0} Tagen @@ -2316,7 +2355,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Fe apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Meine Einstellungen apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Der Gruppenname darf nicht leer sein. DocType: Workflow State,road,Straße -DocType: Website Route Redirect,Source,Quelle +DocType: Contact,Source,Quelle apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Aktive Sitzungen apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Es kann nur eine Falte in einem Formular geben apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Neuer Chat @@ -2338,6 +2377,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Bitte geben Sie die Autorisierungs-URL ein DocType: Email Account,Send Notification to,Benachrichtigung senden an apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox-Backup-Einstellungen +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,"Während der Token-Generierung ist ein Fehler aufgetreten. Klicken Sie auf {0}, um eine neue zu erstellen." apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Alle Anpassungen entfernen? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Nur der Administrator kann bearbeiten DocType: Auto Repeat,Reference Document,Referenzdokument @@ -2362,6 +2402,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Rollen können für Benutzer auf ihrer Benutzerseite festgelegt werden. DocType: Website Settings,Include Search in Top Bar,Suche in oberste Leiste einschließen apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Dringend] Fehler beim Erstellen von% s für% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globale Verknüpfungen DocType: Help Article,Author,Autor DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Für die angegebenen Filter wurde kein Dokument gefunden @@ -2397,10 +2438,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, Zeile {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Wenn Sie neue Datensätze hochladen, ist "Namensreihe" obligatorisch, sofern vorhanden." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Eigenschaften bearbeiten -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,"Instanz kann nicht geöffnet werden, wenn ihre {0} geöffnet ist" +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,"Instanz kann nicht geöffnet werden, wenn ihre {0} geöffnet ist" DocType: Activity Log,Timeline Name,Timeline-Name DocType: Comment,Workflow,Arbeitsablauf apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Bitte legen Sie die Basis-URL in Social Login Key für Frappe fest +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Tastatürkürzel DocType: Portal Settings,Custom Menu Items,Benutzerdefinierte Menüelemente apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,Die Länge von {0} sollte zwischen 1 und 1000 liegen apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Verbindung unterbrochen. Einige Funktionen funktionieren möglicherweise nicht. @@ -2463,6 +2505,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Zeilen hinz DocType: DocType,Setup,Konfiguration apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} wurde erfolgreich erstellt apps/frappe/frappe/www/update-password.html,New Password,Neues Kennwort +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Feld auswählen apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Verlasse dieses Gespräch DocType: About Us Settings,Team Members,Teammitglieder DocType: Blog Settings,Writers Introduction,Autoren Einführung @@ -2532,13 +2575,12 @@ DocType: Chat Room,Name,Name DocType: Communication,Email Template,E-Mail-Vorlage DocType: Energy Point Settings,Review Levels,Ebenen überprüfen DocType: Print Format,Raw Printing,Rohdruck -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,"{0} kann nicht geöffnet werden, wenn seine Instanz geöffnet ist" +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,"{0} kann nicht geöffnet werden, wenn seine Instanz geöffnet ist" DocType: DocType,"Make ""name"" searchable in Global Search",Machen Sie "Name" in der globalen Suche durchsuchbar DocType: Data Migration Mapping,Data Migration Mapping,Datenmigrationszuordnung DocType: Data Import,Partially Successful,Teilweise erfolgreich DocType: Communication,Error,Error apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Der Feldtyp kann in Zeile {2} nicht von {0} in {1} geändert werden. -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Fehler beim Verbinden mit der QZ-Tray-Anwendung ...

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

Klicken Sie hier, um QZ Tray herunterzuladen und zu installieren .
Klicken Sie hier, um mehr über Raw Printing zu erfahren ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Foto machen apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,"Vermeiden Sie Jahre, die mit Ihnen verbunden sind." DocType: Web Form,Allow Incomplete Forms,Unvollständige Formulare zulassen @@ -2634,7 +2676,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Wählen Sie target = "_blank", um eine neue Seite zu öffnen." DocType: Portal Settings,Portal Menu,Portal-Menü DocType: Website Settings,Landing Page,Zielseite -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,"Bitte melden Sie sich an oder melden Sie sich an, um zu beginnen" DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontaktoptionen wie "Sales Query", "Support Query" usw. jeweils in einer neuen Zeile oder durch Komma getrennt." apps/frappe/frappe/twofactor.py,Verfication Code,Bestätigungscode apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} ist bereits abgemeldet @@ -2720,6 +2761,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Zuordnung von D DocType: Address,Sales User,Verkaufsbenutzer apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Feldeigenschaften ändern (verstecken, schreibgeschützt, Erlaubnis etc.)" DocType: Property Setter,Field Name,Feldname +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Kunde DocType: Print Settings,Font Size,Schriftgröße DocType: User,Last Password Reset Date,Datum der letzten Kennwortrücksetzung DocType: System Settings,Date and Number Format,Datums- und Zahlenformat @@ -2785,6 +2827,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Gruppenknoten apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Mit vorhandenem zusammenführen DocType: Blog Post,Blog Intro,Blog Intro apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Neue Erwähnung +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Zum Feld springen DocType: Prepared Report,Report Name,Berichtsname apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Bitte aktualisieren Sie, um das neueste Dokument zu erhalten." apps/frappe/frappe/core/doctype/communication/communication.js,Close,Schließen @@ -2794,10 +2837,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Veranstaltung DocType: Social Login Key,Access Token URL,Zugriffs-Token-URL apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Bitte legen Sie die Dropbox-Zugriffsschlüssel in Ihrer Site-Konfiguration fest +DocType: Google Contacts,Google Contacts,Google Kontakte DocType: User,Reset Password Key,Kennwortschlüssel zurücksetzen apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Verändert von DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.",Zum Erneuern {0}. +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Erfolgreich gespeichert +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,"Senden Sie eine E-Mail an {0}, um sie hier zu verlinken." DocType: File,Folder,Mappe DocType: DocField,Perm Level,Dauerwelle DocType: Print Settings,Page Settings,Seiteneinstellungen @@ -2827,6 +2873,7 @@ DocType: Workflow State,remove-sign,Entfernen-Zeichen DocType: Dashboard Chart,Full,Voll DocType: DocType,User Cannot Create,Benutzer kann nicht erstellen apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Du hast {0} Punkte gewonnen +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup> Benutzer DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Wenn Sie dies einstellen, wird dieses Element in einem Dropdown-Menü unter dem ausgewählten übergeordneten Element angezeigt." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Keine Emails apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Folgende Felder fehlen: @@ -2840,13 +2887,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Kal DocType: Web Form,Web Form Fields,Webformularfelder DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Vom Benutzer bearbeitbares Formular auf der Website. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,{0} dauerhaft abbrechen? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,{0} dauerhaft abbrechen? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Option 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,Summen apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Dies ist ein sehr verbreitetes Passwort. DocType: Personal Data Deletion Request,Pending Approval,Genehmigung ausstehend apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Das Dokument konnte nicht korrekt zugeordnet werden apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Nicht zulässig für {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Keine anzuzeigenden Werte DocType: Personal Data Download Request,Personal Data Download Request,Download-Anfrage für personenbezogene Daten apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} hat dieses Dokument für {1} freigegeben. apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},{0} auswählen @@ -2862,7 +2910,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Diese E-Mail wurde an {0} gesendet und an {1} kopiert. apps/frappe/frappe/email/smtp.py,Invalid login or password,Ungültiger Anmeldename oder Passwort DocType: Social Login Key,Social Login Key,Social Login Key -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Richten Sie das Standard-E-Mail-Konto über Setup> E-Mail> E-Mail-Konto ein apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filter gespeichert DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Wie soll diese Währung formatiert werden? Wenn nicht festgelegt, werden die Systemstandards verwendet" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} hat den Status {2}. @@ -2988,6 +3035,7 @@ DocType: User,Location,Ort apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Keine Daten DocType: Website Meta Tag,Website Meta Tag,Website-Meta-Tag DocType: Workflow State,film,Film +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,In die Zwischenablage kopiert. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Einstellungen nicht gefunden apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Label ist obligatorisch DocType: Webhook,Webhook Headers,Webhook-Header @@ -3196,7 +3244,7 @@ DocType: Address,Address Line 1,Anschrift Zeile 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Für Dokumenttyp apps/frappe/frappe/model/base_document.py,Data missing in table,Daten fehlen in der Tabelle apps/frappe/frappe/utils/bot.py,Could not identify {0},{0} konnte nicht identifiziert werden -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Dieses Formular wurde nach dem Laden geändert +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Dieses Formular wurde nach dem Laden geändert apps/frappe/frappe/www/login.html,Back to Login,Zurück zur Anmeldung apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Nicht eingestellt DocType: Data Migration Mapping,Pull,ziehen @@ -3264,6 +3312,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Untergeordnete Tabell apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,E-Mail-Konto einrichten Bitte geben Sie Ihr Passwort ein für: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Zu viele Schreibvorgänge in einer Anfrage. Bitte senden Sie kleinere Anfragen DocType: Social Login Key,Salesforce,Zwangsversteigerung +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{0} von {1} wird importiert DocType: User,Tile,Fliese apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} Raum muss mindestens einen Benutzer haben. DocType: Email Rule,Is Spam,Ist Spam @@ -3301,7 +3350,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,Ordner schließen DocType: Data Migration Run,Pull Update,Update ziehen apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},{0} in {1} zusammengeführt -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Keine Ergebnisse gefunden für '

DocType: SMS Settings,Enter url parameter for receiver nos,Geben Sie den URL-Parameter für die Empfängernummern ein apps/frappe/frappe/utils/jinja.py,Syntax error in template,Syntaxfehler in der Vorlage apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Bitte legen Sie den Filterwert in der Berichtsfiltertabelle fest. @@ -3314,6 +3362,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Entschuldig DocType: System Settings,In Days,In Tagen DocType: Report,Add Total Row,Gesamte Zeile hinzufügen apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Sitzungsstart fehlgeschlagen +DocType: Translation,Verified,Verifiziert DocType: Print Format,Custom HTML Help,Benutzerdefinierte HTML-Hilfe DocType: Address,Preferred Billing Address,Bevorzugte Rechnungsadresse apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Zugewiesen an @@ -3328,7 +3377,6 @@ DocType: Help Article,Intermediate,Mittlere DocType: Module Def,Module Name,Modulname DocType: OAuth Authorization Code,Expiration time,Ablaufzeit apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Festlegen des Standardformats, der Seitengröße, des Druckstils usw." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,"Sie können etwas, das Sie erstellt haben, nicht mögen" DocType: System Settings,Session Expiry,Sitzungsablauf DocType: DocType,Auto Name,Auto Name apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Wählen Sie Anhänge @@ -3356,6 +3404,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,System Seite DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Hinweis: Standardmäßig werden E-Mails für fehlgeschlagene Sicherungen gesendet. DocType: Custom DocPerm,Custom DocPerm,Benutzerdefiniertes DocPerm +DocType: Translation,PR sent,PR gesendet DocType: Tag Doc Category,Doctype to Assign Tags,Doctype zum Zuweisen von Tags DocType: Address,Warehouse,Warenhaus apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Dropbox-Setup @@ -3423,7 +3472,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,"Strg + Eingabetaste, um einen Kommentar hinzuzufügen" apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Das Feld {0} kann nicht ausgewählt werden. DocType: User,Birth Date,Geburtstag -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Mit Gruppeneinzug DocType: List View Setting,Disable Count,Zählung deaktivieren DocType: Contact Us Settings,Email ID,E-Mail-ID apps/frappe/frappe/utils/password.py,Incorrect User or Password,Falscher Benutzer oder falsches Passwort @@ -3458,6 +3506,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Diese Rolle aktualisiert die Benutzerberechtigungen für einen Benutzer DocType: Website Theme,Theme,Thema DocType: Web Form,Show Sidebar,Seitenleiste anzeigen +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Integration von Google-Kontakten. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Standardeingang apps/frappe/frappe/www/login.py,Invalid Login Token,Ungültiges Login-Token apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Stellen Sie zuerst den Namen ein und speichern Sie den Datensatz. @@ -3485,7 +3534,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Bitte korrigieren Sie die DocType: Top Bar Item,Top Bar Item,Oberes Leistenelement ,Role Permissions Manager,Rollenberechtigungs-Manager -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,Es gab Fehler. Bitte melden Sie dies. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,Vor> {0} Jahr (en) apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Weiblich DocType: System Settings,OTP Issuer Name,Name des OTP-Ausstellers apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Zu Aufgaben hinzufügen @@ -3585,6 +3634,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Einste apps/frappe/frappe/model/document.py,none of,keiner von DocType: Desktop Icon,Page,Seite DocType: Workflow State,plus-sign,Pluszeichen +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Cache leeren und neu laden apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Kann nicht aktualisieren: Falscher / abgelaufener Link. DocType: Kanban Board Column,Yellow,Gelb 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 (Gesamtspalten in einem Raster sollten kleiner als 11 sein) @@ -3599,6 +3649,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Neue DocType: Activity Log,Date,Datum DocType: Communication,Communication Type,Kommunikationsart apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Übergeordnete Tabelle +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Liste nach oben navigieren DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Vollständigen Fehler anzeigen und Meldung von Problemen an den Entwickler zulassen DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3620,7 +3671,6 @@ DocType: Notification Recipient,Email By Role,E-Mail nach Rolle apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,"Bitte aktualisieren Sie, um mehr als {0} Abonnenten hinzuzufügen" apps/frappe/frappe/email/queue.py,This email was sent to {0},Diese E-Mail wurde an {0} gesendet. DocType: User,Represents a User in the system.,Repräsentiert einen Benutzer im System. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Seite {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Neues Format starten apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Einen Kommentar hinzufügen apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} von {1} diff --git a/frappe/translations/el.csv b/frappe/translations/el.csv index da9f96626d..5fcdf930d6 100644 --- a/frappe/translations/el.csv +++ b/frappe/translations/el.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Ενεργοποίηση κλίσεων DocType: DocType,Default Sort Order,Προεπιλεγμένη σειρά ταξινόμησης apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Εμφάνιση μόνο αριθμητικών πεδίων από την αναφορά +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Πατήστε το πλήκτρο Alt για να ενεργοποιήσετε πρόσθετες συντομεύσεις στο μενού και στην πλευρική γραμμή DocType: Workflow State,folder-open,άνοιγμα φακέλου DocType: Customize Form,Is Table,Είναι Πίνακας apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Δεν είναι δυνατό να ανοίξει το συνημμένο αρχείο. Εξήγατε το ως CSV; DocType: DocField,No Copy,Δεν υπάρχει αντίγραφο DocType: Custom Field,Default Value,Προεπιλεγμένη τιμή apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Το Append to είναι υποχρεωτικό για εισερχόμενα μηνύματα +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Συγχρονισμός επαφών DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Λεπτομέρειες χαρτογράφησης μετανάστευσης δεδομένων apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Απαγορεύεται η παρακολούθηση apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",Η εκτύπωση PDF μέσω του "Raw Print" δεν υποστηρίζεται ακόμα. Καταργήστε τη χαρτογράφηση του εκτυπωτή στις Ρυθμίσεις εκτυπωτή και δοκιμάστε ξανά. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} και {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Υπήρξε σφάλμα κατά την αποθήκευση φίλτρων apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Εισάγετε τον κωδικό σας apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Δεν είναι δυνατή η διαγραφή φακέλων "Αρχική σελίδα και συνημμένα" +DocType: Email Account,Enable Automatic Linking in Documents,Ενεργοποιήστε την Αυτόματη σύνδεση σε Έγγραφα DocType: Contact Us Settings,Settings for Contact Us Page,Ρυθμίσεις για τη σελίδα επαφών DocType: Social Login Key,Social Login Provider,Παροχέας κοινωνικής σύνδεσης +DocType: Email Account,"For more information, click here.","Για περισσότερες πληροφορίες, κάντε κλικ εδώ ." DocType: Transaction Log,Previous Hash,Προηγούμενο εμπόδιο DocType: Notification,Value Changed,Η τιμή άλλαξε DocType: Report,Report Type,Τύπος αναφοράς @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Κανόνας ενεργειακο apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,Εισαγάγετε το αναγνωριστικό πελάτη πριν ενεργοποιηθεί η σύνδεση κοινωνικού δικτύου DocType: Communication,Has Attachment,Έχει συνημμένο DocType: User,Email Signature,Υπογραφή ηλεκτρονικού ταχυδρομείου -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} χρόνια πριν ,Addresses And Contacts,Διευθύνσεις και επαφές apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Αυτό το συμβούλιο του Kanban θα είναι ιδιωτικό DocType: Data Migration Run,Current Mapping,Τρέχουσα χαρτογράφηση @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Επιλέγετε την επιλογή "Συγχρονισμός" ως "ΟΛΑ", θα ξανασυνδέσει όλες τις \ read καθώς και το μη αναγνωσμένο μήνυμα από το διακομιστή. Αυτό μπορεί επίσης να προκαλέσει την επικάλυψη της επικοινωνίας (emails)." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Τελευταία συγχρονισμένη {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Δεν είναι δυνατή η αλλαγή του περιεχομένου της κεφαλίδας +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Δεν επιτρέπεται η αλλαγή {0} μετά την υποβολή apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Η εφαρμογή έχει ενημερωθεί σε μια νέα έκδοση, ανανεώστε αυτή τη σελίδα" DocType: User,User Image,Εικόνα χρήστη @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Μα apps/frappe/frappe/public/js/frappe/chat.js,Discard,Απορρίπτω DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Επιλέξτε μια εικόνα μεγέθους περίπου 150px με διαφανές φόντο για καλύτερα αποτελέσματα. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,Υποτροπή +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Επιλεγμένες τιμές {0} DocType: Blog Post,Email Sent,Το μήνυμα ηλεκτρονικού ταχυδρομείου εστάλη DocType: Communication,Read by Recipient On,Διαβάστε από τον παραλήπτη ενεργοποιημένο DocType: User,Allow user to login only after this hour (0-24),Να επιτρέπεται στο χρήστη να συνδεθεί μόνο μετά από αυτήν την ώρα (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Ενότητα προς εξαγωγή DocType: DocType,Fields,Πεδία -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Δεν επιτρέπεται η εκτύπωση αυτού του εγγράφου +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Δεν επιτρέπεται η εκτύπωση αυτού του εγγράφου apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Μητρική εταιρεία apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Η συνεδρία σας έχει λήξει, παρακαλούμε συνδεθείτε ξανά για να συνεχίσετε." DocType: Assignment Rule,Priority,Προτεραιότητα @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Επαναφορά DocType: DocType,UPPER CASE,ΥΨΗΛΗ ΠΕΡΙΠΤΩΣΗ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,Ρυθμίστε τη διεύθυνση ηλεκτρονικού ταχυδρομείου DocType: Communication,Marked As Spam,Σημειώνεται ως ανεπιθύμητο +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"Διεύθυνση ηλεκτρονικού ταχυδρομείου, των οποίων οι επαφές Google πρόκειται να συγχρονιστούν." apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Εισαγωγή συνδρομητών apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Αποθήκευση φίλτρου DocType: Address,Preferred Shipping Address,Προτιμώμενη διεύθυνση αποστολής DocType: GCalendar Account,The name that will appear in Google Calendar,Το όνομα που θα εμφανιστεί στο Ημερολόγιο Google +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Κάντε κλικ στο {0} για να δημιουργήσετε το Refresh Token. DocType: Email Account,Disable SMTP server authentication,Απενεργοποιήστε τον έλεγχο ταυτότητας διακομιστή SMTP DocType: Email Account,Total number of emails to sync in initial sync process ,Συνολικός αριθμός μηνυμάτων ηλεκτρονικού ταχυδρομείου προς συγχρονισμό κατά την αρχική διαδικασία συγχρονισμού DocType: System Settings,Enable Password Policy,Ενεργοποίηση της πολιτικής κωδικών πρόσβασης @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Εισάγετε κωδικό apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Δεν είναι σε DocType: Auto Repeat,Start Date,Ημερομηνία έναρξης apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Ορίστε το διάγραμμα +DocType: Website Theme,Theme JSON,Θέμα JSON apps/frappe/frappe/www/list.py,My Account,Ο λογαριασμός μου DocType: DocType,Is Published Field,Δημοσιεύεται πεδίο DocType: DocField,Set non-standard precision for a Float or Currency field,Ορίστε μη τυπική ακρίβεια για ένα πεδίο Float ή Currency @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Προσθήκη Reference: {{ reference_doctype }} {{ reference_name }} για την αποστολή αναφοράς εγγράφου DocType: LDAP Settings,LDAP First Name Field,Πεδίο ονόματος LDAP apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Προεπιλεγμένη αποστολή και εισερχόμενα -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Ρυθμίσεις> Προσαρμογή φόρμας apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.","Για ενημέρωση, μπορείτε να ενημερώσετε μόνο επιλεκτικές στήλες." apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',Ο προεπιλεγμένος τύπος πεδίου "Έλεγχος" πρέπει να είναι είτε "0" είτε "1" apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Μοιραστείτε αυτό το έγγραφο με @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Τομείς HTML DocType: Blog Settings,Blog Settings,Ρυθμίσεις Blog apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Το όνομα του DocType πρέπει να ξεκινά με ένα γράμμα και μπορεί να αποτελείται μόνο από γράμματα, αριθμούς, κενά και υπογράμμιση" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Ρύθμιση> Δικαιώματα χρήστη DocType: Communication,Integrations can use this field to set email delivery status,Οι ενοποιήσεις μπορούν να χρησιμοποιήσουν αυτό το πεδίο για να ορίσουν την κατάσταση παράδοσης ηλεκτρονικού ταχυδρομείου apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Ρυθμίσεις για την πύλη πληρωμής DocType: Print Settings,Fonts,Γραμματοσειρές DocType: Notification,Channel,Κανάλι DocType: Communication,Opened,Άνοιξε DocType: Workflow Transition,Conditions,Συνθήκες +apps/frappe/frappe/config/website.py,A user who posts blogs.,Ένας χρήστης που δημοσιεύει ιστολόγια. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Δεν έχετε λογαριασμό; Εγγραφείτε apps/frappe/frappe/utils/file_manager.py,Added {0},Προστέθηκε {0} DocType: Newsletter,Create and Send Newsletters,Δημιουργία και αποστολή ενημερωτικών δελτίων DocType: Website Settings,Footer Items,Υποσέλιδο στοιχεία +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Ρυθμίστε τον προεπιλεγμένο λογαριασμό ηλεκτρονικού ταχυδρομείου από το Setup> Email> Email Account DocType: Website Slideshow Item,Website Slideshow Item,Στοιχείο Παρουσιάσεων Ιστοτόπου apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Εγγραφή εφαρμογής OAuth Client DocType: Error Snapshot,Frames,Κορνίζες @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Το επίπεδο 0 είναι για δικαιώματα επιπέδου εγγράφου, \ υψηλότερα επίπεδα για δικαιώματα πεδίου." DocType: Address,City/Town,Πόλη / πόλη DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Αυτό θα επαναφέρει το τρέχον θέμα σας, είστε βέβαιοι ότι θέλετε να συνεχίσετε;" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Υποχρεωτικά πεδία που απαιτούνται στο {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Σφάλμα κατά τη σύνδεση με λογαριασμό ηλεκτρονικού ταχυδρομείου {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Παρουσιάστηκε σφάλμα κατά τη δημιουργία επαναλαμβανόμενων @@ -528,7 +537,7 @@ DocType: Event,Event Category,Κατηγορία εκδηλώσεων apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Στήλες βασισμένες σε apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Επεξεργασία τίτλου DocType: Communication,Received,Λήψη -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Δεν επιτρέπεται η πρόσβαση σε αυτήν τη σελίδα. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Δεν επιτρέπεται η πρόσβαση σε αυτήν τη σελίδα. DocType: User Social Login,User Social Login,Κοινωνική σύνδεση χρήστη apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,Γράψτε ένα αρχείο Python στον ίδιο φάκελο όπου αυτό αποθηκεύεται και επιστρέφει τη στήλη και το αποτέλεσμα. DocType: Contact,Purchase Manager,Υπεύθυνος αγορών @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Ρύ apps/frappe/frappe/utils/data.py,Operator must be one of {0},Ο χειριστής πρέπει να είναι ένας από τους {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Αν Ιδιοκτήτης DocType: Data Migration Run,Trigger Name,Όνομα ενεργοποίησης -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Γράψτε τους τίτλους και τις εισαγωγές στο ιστολόγιό σας. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Κατάργηση πεδίου apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Σύμπτυξη όλων apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Χρώμα του φόντου @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,Μπαρ DocType: SMS Settings,Enter url parameter for message,Εισαγάγετε την παράμετρο url για το μήνυμα apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Νέα προσαρμοσμένη μορφή εκτύπωσης apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} υπάρχει ήδη +DocType: Workflow Document State,Is Optional State,Είναι προαιρετική κατάσταση DocType: Address,Purchase User,Αγορά χρήστη DocType: Data Migration Run,Insert,Εισάγετε DocType: Web Form,Route to Success Link,Σύνδεσμος διαδρομής προς επιτυχία @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Το ό DocType: File,Is Home Folder,Είναι ο αρχικός φάκελος apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Τύπος: DocType: Post,Is Pinned,Είναι συνδεδεμένο -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Δεν υπάρχει άδεια για να {{0} '{1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Δεν υπάρχει άδεια για να {{0} '{1} DocType: Patch Log,Patch Log,Ενημερωτικό αρχείο ενημερώσεων DocType: Print Format,Print Format Builder,Print Builder Format 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. Αυτό μπορεί επίσης να οριστεί μόνο για συγκεκριμένους χρήστες στη σελίδα χρήστη" apps/frappe/frappe/utils/data.py,only.,μόνο. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,Η συνθήκη '{0}' δεν είναι έγκυρη DocType: Auto Email Report,Day of Week,Μερα της ΕΒΔΟΜΑΔΑΣ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Ενεργοποιήστε το API Google στις Ρυθμίσεις Google. DocType: DocField,Text Editor,Επεξεργαστής κειμένου apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Τομή apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Αναζητήστε ή πληκτρολογήστε μια εντολή @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,Ο αριθμός των αντιγράφων ασφαλείας DB δεν μπορεί να είναι μικρότερος από 1 DocType: Workflow State,ban-circle,απαγόρευση-κύκλο DocType: Data Export,Excel,Προέχω +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Header, Breadcrumbs και Meta Tags" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Μη υποστηριζόμενη διεύθυνση ηλεκτρονικού ταχυδρομείου υποστήριξης DocType: Comment,Published,Που δημοσιεύθηκε DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","Σημείωση: Για καλύτερα αποτελέσματα, οι εικόνες πρέπει να έχουν το ίδιο μέγεθος και το πλάτος πρέπει να είναι μεγαλύτερο από το ύψος." @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Χρονοδιάγραμμα τε apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Αναφορά όλων των μετοχών εγγράφων DocType: Website Sidebar Item,Website Sidebar Item,Στοιχείο Sidebar της ιστοσελίδας apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Να κάνω +DocType: Google Settings,Google Settings,Ρυθμίσεις Google apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Επιλέξτε τη χώρα, τη ζώνη ώρας και το νόμισμά σας" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Εισαγάγετε εδώ τις παραμέτρους του static url (π.χ. αποστολέας = ERPNext, username = ERPNext, password = 1234 κ.λπ.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Δεν υπάρχει λογαριασμός ηλεκτρονικού ταχυδρομείου @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,Ονόμαμο φορέα OAuth ,Setup Wizard,Οδηγός εγκατάστασης apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Εναλλαγή χάρτη +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,Συγχρονισμός DocType: Data Migration Run,Current Mapping Action,Τρέχουσα ενέργεια χαρτογράφησης DocType: Email Account,Initial Sync Count,Αρχική μέτρηση συγχρονισμού apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Ρυθμίσεις για τη σελίδα επαφών. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Τύπος μορφής εκτύπωσης apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Δεν έχουν οριστεί δικαιώματα για αυτά τα κριτήρια. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Επεκτείνετε όλα +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Δεν βρέθηκε προεπιλεγμένο πρότυπο διεύθυνσης. Δημιουργήστε ένα νέο από το Setup> Printing and Branding> Template Address. DocType: Tag Doc Category,Tag Doc Category,Tag Doc Doc DocType: Data Import,Generated File,Δημιουργία αρχείου apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Σημειώσεις @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Το πεδίο χρονικού πλαισίου πρέπει να είναι μια σύνδεση ή μια δυναμική σύνδεση DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Οι ειδοποιήσεις και τα μαζικά μηνύματα θα αποστέλλονται από αυτόν τον εξερχόμενο διακομιστή. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Αυτός είναι ένας από τους 100 πιο συνηθισμένους κωδικούς πρόσβασης. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Υποβολή μόνιμα {0}; +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Υποβολή μόνιμα {0}; apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} δεν υπάρχει, επιλέξτε έναν νέο στόχο για συγχώνευση" DocType: Energy Point Rule,Multiplier Field,Πολλαπλασιαστικό πεδίο DocType: Workflow,Workflow State Field,Πεδίο κατάστασης ροής εργασίας @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} εκτιμούσε την εργασία σας με {1} με {2} βαθμούς DocType: Auto Email Report,Zero means send records updated at anytime,Το μηδέν σημαίνει αποστολή ενημερωμένων εκδόσεων ανά πάσα στιγμή apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Η τιμή δεν μπορεί να αλλάξει για {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Ρυθμίσεις API Google. DocType: System Settings,Force User to Reset Password,Αναγκάστε τον χρήστη να επαναφέρει τον κωδικό πρόσβασης apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Οι αναφορές "Builder Report" διαχειρίζονται απευθείας ο οικοδόμος αναφοράς. Τίποτα να κάνω. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Επεξεργασία φίλτρου @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,γι DocType: S3 Backup Settings,eu-north-1,eu-βορρά-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Επιτρέπεται ένας μόνο κανόνας με τον ίδιο Ρόλο, Επίπεδο και {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Δεν επιτρέπεται να ενημερώσετε αυτό το έγγραφο φόρμας ιστού -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Μέγιστο όριο συνημμένου για την επίτευξη αυτής της εγγραφής. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Μέγιστο όριο συνημμένου για την επίτευξη αυτής της εγγραφής. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,Βεβαιωθείτε ότι τα Έγγραφα Αναφοράς Αναφοράς δεν είναι κυκλικά συνδεδεμένα. DocType: DocField,Allow in Quick Entry,Επιτρέψτε στη Γρήγορη Καταχώρηση DocType: Error Snapshot,Locals,Οι ντόπιοι @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Τύπος εξαίρεσης apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},Δεν μπορεί να διαγραφεί ή να ακυρωθεί επειδή {0} {1} συνδέεται με {2} {3} {4} apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,Το μυστικό OTP μπορεί να επαναφερθεί μόνο από το διαχειριστή. -DocType: Web Form Field,Page Break,Διάλειμμα σελίδας DocType: Website Script,Website Script,Ιστοσελίδα Script DocType: Integration Request,Subscription Notification,Ειδοποίηση συνδρομής DocType: DocType,Quick Entry,Γρήγορη είσοδος @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,Ορισμός ιδιότητας apps/frappe/frappe/__init__.py,Thank you,Ευχαριστώ apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks για εσωτερική ολοκλήρωση apps/frappe/frappe/config/settings.py,Import Data,Εισαγωγή δεδομένων +DocType: Translation,Contributed Translation Doctype Name,Εισαγόμενο όνομα μετάφρασης Doctype DocType: Social Login Key,Office 365,Γραφείο 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ταυτότητα DocType: Review Level,Review Level,Επίπεδο αναθεώρησης @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Ολοκληρώθηκε με επιτυχία apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Λίστα apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Εκτιμώ -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Νέο {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Είναι η κύρια επαφή DocType: Print Format,Raw Commands,Αρχικές εντολές apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Φύλλα ειδώλων για μορφές εκτύπωσης @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Σφάλματα apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Βρείτε {0} στο {1} DocType: Email Account,Use SSL,Χρησιμοποιήστε το SSL DocType: DocField,In Standard Filter,Στο τυπικό φίλτρο +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Δεν υπάρχουν παρόντες Επαφές Google για συγχρονισμό. DocType: Data Migration Run,Total Pages,Συνολικές Σελίδες apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: Το πεδίο '{1}' δεν μπορεί να οριστεί ως Μοναδικό καθώς έχει μη μοναδικές τιμές DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Εάν είναι ενεργοποιημένη, οι χρήστες θα ενημερώνονται κάθε φορά που θα συνδεθούν. Εάν δεν είναι ενεργοποιημένη, οι χρήστες θα ειδοποιηθούν μόνο μία φορά." @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,Αυτοματοποίηση apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Αποσυμπιέστε αρχεία ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Αναζήτηση για '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Κάτι πήγε στραβά -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Φυλάξτε πριν από την τοποθέτηση. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,Φυλάξτε πριν από την τοποθέτηση. DocType: Version,Table HTML,Πίνακας HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,κεντρικό σημείο DocType: Page,Standard,Πρότυπο @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Χωρίς apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,Οι εγγραφές {0} διαγράφηκαν apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,Κάτι πήγε στραβά κατά τη δημιουργία του διακριτικού πρόσβασης στο dropbox. Ελέγξτε το αρχείο καταγραφής σφαλμάτων για περισσότερες λεπτομέρειες. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Απόγονοι του -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Δεν βρέθηκε προεπιλεγμένο πρότυπο διεύθυνσης. Δημιουργήστε ένα νέο από το Setup> Printing and Branding> Template Address. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Οι Επαφές Google έχουν ρυθμιστεί. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Κρύψε τις λεπτομέρειες apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Στυλ γραμματοσειράς apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Η συνδρομή σας θα λήξει στις {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Ο έλεγχος ταυτότητας απέτυχε κατά τη λήψη μηνυμάτων ηλεκτρονικού ταχυδρομείου από το λογαριασμό ηλεκτρονικού ταχυδρομείου {0}. Μήνυμα από διακομιστή: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Στατιστικά με βάση την απόδοση της περασμένης εβδομάδας (από {0} έως {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,Η αυτόματη σύνδεση μπορεί να ενεργοποιηθεί μόνο εάν είναι ενεργοποιημένη η επιλογή Εισερχόμενα. DocType: Website Settings,Title Prefix,Πρόθεμα τίτλου apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Οι εφαρμογές ελέγχου ταυτότητας που μπορείτε να χρησιμοποιήσετε είναι: DocType: Bulk Update,Max 500 records at a time,Μέγιστες 500 εγγραφές κάθε φορά @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,Αναφορά φίλτρων apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Επιλέξτε Στήλες DocType: Event,Participants,Συμμετέχοντες DocType: Auto Repeat,Amended From,Τροποποιήθηκε από -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Τα στοιχεία σας έχουν υποβληθεί +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Τα στοιχεία σας έχουν υποβληθεί DocType: Help Category,Help Category,Βοήθεια κατηγορίας apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 μήνα apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Επιλέξτε μια υπάρχουσα μορφή για να επεξεργαστείτε ή να ξεκινήσετε μια νέα μορφή. @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Πεδίο για παρακολούθηση DocType: User,Generate Keys,Δημιουργία κλειδιών DocType: Comment,Unshared,Ανεχωρίσθη -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Αποθηκεύτηκε +DocType: Translation,Saved,Αποθηκεύτηκε DocType: OAuth Client,OAuth Client,Πελάτη OAuth DocType: System Settings,Disable Standard Email Footer,Απενεργοποιήστε το τυπικό υποσέλιδο ηλεκτρονικού ταχυδρομείου apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Η μορφή εκτύπωσης {0} είναι απενεργοποιημένη @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Τελευτ DocType: Data Import,Action,Δράση apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Απαιτείται το κλειδί πελάτη DocType: Chat Profile,Notifications,Ειδοποιήσεις +DocType: Translation,Contributed,Συνεισφορά DocType: System Settings,mm/dd/yyyy,mm / ηη / εεεε DocType: Report,Custom Report,Προσαρμοσμένη αναφορά DocType: Workflow State,info-sign,info-sign @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Επικοινωνία DocType: LDAP Settings,LDAP Username Field,Πεδίο ονόματος χρήστη LDAP apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Το πεδίο {0} δεν μπορεί να οριστεί ως μοναδικό στην {1}, καθώς υπάρχουν μη μοναδικές υπάρχουσες τιμές" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Ρυθμίσεις> Προσαρμογή φόρμας DocType: User,Social Logins,Κοινωνικές συνδέσεις DocType: Workflow State,Trash,Σκουπίδια DocType: Stripe Settings,Secret Key,Μυστικό κλειδί @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,Πεδίο τίτλου apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Δεν ήταν δυνατή η σύνδεση με διακομιστή εξερχόμενων μηνυμάτων ηλεκτρονικού ταχυδρομείου DocType: File,File URL,Διεύθυνση URL αρχείου DocType: Help Article,Likes,Μου αρέσει +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Η ενσωμάτωση επαφών Google είναι απενεργοποιημένη. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Πρέπει να είστε συνδεδεμένοι και να έχετε το ρόλο του διαχειριστή συστήματος για να έχετε πρόσβαση σε αντίγραφα ασφαλείας. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Πρώτο επίπεδο DocType: Blogger,Short Name,Μικρό όνομα @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Εισαγωγή Zip DocType: Contact,Gender,Γένος DocType: Workflow State,thumbs-down,αποδοκιμάζω -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Η ουρά πρέπει να είναι μία από τις {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Δεν είναι δυνατή η ρύθμιση της ειδοποίησης για τον τύπο εγγράφου {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Προσθέτοντας τον Διαχειριστή Συστήματος σε αυτόν τον Χρήστη, καθώς πρέπει να υπάρχει τουλάχιστον ένας Διαχειριστής Συστήματος" apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Καλωσόρισμα e-mail αποστέλλεται DocType: Transaction Log,Chaining Hash,Αλυσίδα Χασί DocType: Contact,Maintenance Manager,Διαχειριστής συντήρησης +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Για σύγκριση, χρησιμοποιήστε> 5, <10 ή = 324. Για σειρές, χρησιμοποιήστε 5:10 (για τιμές μεταξύ 5 και 10)." apps/frappe/frappe/utils/bot.py,show,προβολή apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Κοινή χρήση διευθύνσεων URL apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Μη υποστηριζόμενη μορφή αρχείου @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,Γνωστοποίηση DocType: Data Import,Show only errors,Εμφάνιση μόνο σφαλμάτων DocType: Energy Point Log,Review,Ανασκόπηση apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Οι σειρές έχουν καταργηθεί -DocType: GSuite Settings,Google Credentials,Τα διαπιστευτήρια Google +DocType: Google Settings,Google Credentials,Τα διαπιστευτήρια Google apps/frappe/frappe/www/login.html,Or login with,Ή συνδεθείτε με apps/frappe/frappe/model/document.py,Record does not exist,Η εγγραφή δεν υπάρχει apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Νέο όνομα αναφοράς @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,Λίστα DocType: Workflow State,th-large,th-large apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Δεν είναι δυνατή η αντιστοίχιση Αντιστοίχιση αν δεν υποβληθεί apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Δεν είναι συνδεδεμένο με κανένα αρχείο +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Σφάλμα σύνδεσης με εφαρμογή δίσκου QZ ...

Πρέπει να έχετε εγκαταστήσει και να εκτελέσετε την εφαρμογή QZ Tray, για να χρησιμοποιήσετε τη λειτουργία Raw Print.

Κάντε κλικ εδώ για να κάνετε λήψη και εγκατάσταση του δίσκου QZ .
Κάντε κλικ εδώ για να μάθετε περισσότερα σχετικά με την ασταθή εκτύπωση ." DocType: Chat Message,Content,Περιεχόμενο DocType: Workflow Transition,Allow Self Approval,Να επιτρέπεται η αυτόνομη έγκριση apps/frappe/frappe/www/qrcode.py,Page has expired!,Η σελίδα έχει λήξει! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,χέρι-δεξιά DocType: Website Settings,Banner is above the Top Menu Bar.,Το banner βρίσκεται πάνω από την κορυφαία γραμμή μενού. apps/frappe/frappe/www/update-password.html,Invalid Password,Λανθασμένος κωδικός apps/frappe/frappe/utils/data.py,1 month ago,πριν 1 μηνά +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Να επιτρέπεται η πρόσβαση στις Επαφές Google DocType: OAuth Client,App Client ID,Αναγνωριστικό πελάτη εφαρμογών DocType: DocField,Currency,Νόμισμα DocType: Website Settings,Banner,Πανό @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Στόχος DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Εάν ένας ρόλος δεν έχει πρόσβαση στο επίπεδο 0, τότε τα υψηλότερα επίπεδα δεν έχουν νόημα." DocType: ToDo,Reference Type,Τύπος αναφοράς -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Επιτρέποντας το DocType, DocType. Πρόσεχε!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Επιτρέποντας το DocType, DocType. Πρόσεχε!" DocType: Domain Settings,Domain Settings,Ρυθμίσεις τομέα DocType: Auto Email Report,Dynamic Report Filters,Φίλτρα δυναμικής αναφοράς DocType: Energy Point Log,Appreciation,Εκτίμηση @@ -1468,6 +1489,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,us-δυτικό-2 DocType: DocType,Is Single,Είναι ελεύθερος apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Δημιουργήστε μια νέα μορφή +DocType: Google Contacts,Authorize Google Contacts Access,Εξουσιοδοτήστε την πρόσβαση στις Επαφές Google DocType: S3 Backup Settings,Endpoint URL,Διεύθυνση URL τελικού σημείου DocType: Social Login Key,Google,Google DocType: Contact,Department,Τμήμα @@ -1482,7 +1504,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Αντιστοι DocType: List Filter,List Filter,Φίλτρο λίστας DocType: Dashboard Chart Link,Chart,Διάγραμμα apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Δεν είναι δυνατή η κατάργηση -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Υποβάλετε αυτό το έγγραφο για επιβεβαίωση +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Υποβάλετε αυτό το έγγραφο για επιβεβαίωση apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} υπάρχει ήδη. Επιλέξτε ένα άλλο όνομα apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Έχετε μη αποθηκευμένες αλλαγές σε αυτήν τη φόρμα. Αποθηκεύστε πριν συνεχίσετε. apps/frappe/frappe/model/document.py,Action Failed,Η ενέργεια απέτυχε @@ -1564,6 +1586,7 @@ DocType: DocField,Display,Απεικόνιση apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Απάντηση σε όλους DocType: Calendar View,Subject Field,Θέμα Πεδίο apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Η λήξη της περιόδου σύνδεσης πρέπει να είναι σε μορφή {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},Εφαρμογή: {0} DocType: Workflow State,zoom-in,μεγέθυνση apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Απέτυχε η σύνδεση με το διακομιστή apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Η ημερομηνία {0} πρέπει να είναι σε μορφή: {1} @@ -1575,8 +1598,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Εικονίδιο θα εμφανιστεί στο κουμπί DocType: Role Permission for Page and Report,Set Role For,Ρύθμιση ρόλου για +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Η αυτόματη σύνδεση μπορεί να ενεργοποιηθεί μόνο για έναν λογαριασμό ηλεκτρονικού ταχυδρομείου. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Δεν έχουν εκχωρηθεί λογαριασμοί ηλεκτρονικού ταχυδρομείου +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Ο λογαριασμός ηλεκτρονικού ταχυδρομείου δεν έχει ρυθμιστεί. Δημιουργήστε ένα νέο λογαριασμό ηλεκτρονικού ταχυδρομείου από το Setup> Email> Email Account apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,ΑΝΑΘΕΣΗ ΕΡΓΑΣΙΑΣ +DocType: Google Contacts,Last Sync On,Ο τελευταίος συγχρονισμός είναι ενεργοποιημένος apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},κέρδισε το {0} μέσω αυτόματου κανόνα {1} apps/frappe/frappe/config/website.py,Portal,Πύλη apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Σας ευχαριστώ για το email σας @@ -1597,7 +1623,6 @@ DocType: GSuite Settings,GSuite Settings,Ρυθμίσεις GSuite DocType: Integration Request,Remote,Μακρινός DocType: File,Thumbnail URL,Διεύθυνση URL μικρογραφίας apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Λήψη αναφοράς -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Ρύθμιση> Χρήστης apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Προσαρμογές για {0} εξήχθησαν σε:
{1} DocType: GCalendar Account,Calendar Name,Όνομα ημερολογίου apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Το αναγνωριστικό σας σύνδεσης είναι @@ -1647,6 +1672,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Με apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Το πεδίο εικόνας πρέπει να είναι έγκυρο όνομα πεδίου apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,Θα πρέπει να συνδεθείτε για να αποκτήσετε πρόσβαση σε αυτή τη σελίδα DocType: Assignment Rule,Example: {{ subject }},Παράδειγμα: {{θέμα}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Το όνομα πεδίου {0} είναι περιορισμένο apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Δεν μπορείτε να αναιρέσετε την επιλογή "Μόνο για ανάγνωση" για το πεδίο {0} DocType: Social Login Key,Enable Social Login,Ενεργοποιήστε την κοινωνική σύνδεση DocType: Workflow,Rules defining transition of state in the workflow.,Κανόνες που ορίζουν τη μετάβαση της κατάστασης στη ροή εργασίας. @@ -1667,10 +1693,10 @@ DocType: Website Settings,Route Redirects,Ανακατευθύνσεις δια apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Εισερχόμενα ηλεκτρονικού ταχυδρομείου apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},αποκαταστάθηκε το {0} ως {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Αυτόματη εκχώρηση εγγράφων σε χρήστες +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Ανοίξτε το Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Πρότυπα ηλεκτρονικού ταχυδρομείου για κοινά ερωτήματα. DocType: Letter Head,Letter Head Based On,Επιστολή Head Based On apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Κλείστε αυτό το παράθυρο -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Η πληρωμή ολοκληρώθηκε DocType: Contact,Designation,Ονομασία DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Meta Tags @@ -1709,6 +1735,7 @@ DocType: System Settings,Choose authentication method to be used by all users,Ε DocType: Error Snapshot,Parent Error Snapshot,Γρήγορο στιγμιότυπο σφάλματος DocType: GCalendar Account,GCalendar Account,Λογαριασμός GCalendar DocType: Language,Language Name,Όνομα Γλώσσας +DocType: Workflow Document State,Workflow Action is not created for optional states,Η ενέργεια ροής εργασίας δεν δημιουργείται για προαιρετικές καταστάσεις DocType: Customize Form,Customize Form,Προσαρμόστε τη φόρμα DocType: DocType,Image Field,Πεδίο εικόνας apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Προστέθηκε {0} ({1}) @@ -1750,6 +1777,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,Εφαρμόστε αυτόν τον κανόνα αν ο Χρήστης είναι ο Ιδιοκτήτης DocType: About Us Settings,Org History Heading,Ονόματα Ιστορικού Οργάνωσης apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Σφάλμα Διακομιστή +DocType: Contact,Google Contacts Description,Περιγραφή επαφών Google apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Οι τυπικοί ρόλοι δεν μπορούν να μετονομαστούν DocType: Review Level,Review Points,Σημεία αναθεώρησης apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Λείπει η παράμετρος Kanban Board Name @@ -1767,7 +1795,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Όχι στη λειτουργία προγραμματιστών! Ορίστε στο site_config.json ή κάντε "Προσαρμοσμένο" DocType. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,κέρδισε {0} πόντους DocType: Web Form,Success Message,Μήνυμα επιτυχίας -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Για σύγκριση, χρησιμοποιήστε> 5, <10 ή = 324. Για σειρές, χρησιμοποιήστε 5:10 (για τιμές μεταξύ 5 και 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Περιγραφή για σελίδα καταχώρησης, σε απλό κείμενο, μόνο μερικές γραμμές. (έως 140 χαρακτήρες)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Εμφάνιση αδειών DocType: DocType,Restrict To Domain,Περιορισμός σε τομέα @@ -1789,6 +1816,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Δεν apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Ορισμός ποσότητας DocType: Auto Repeat,End Date,Ημερομηνία λήξης DocType: Workflow Transition,Next State,Επόμενη Πολιτεία +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Συγχρονισμός των Επαφών Google. DocType: System Settings,Is First Startup,Είναι η πρώτη εκκίνηση apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},ενημερώθηκε στο {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Μετακομίζω κάπου @@ -1838,6 +1866,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Ημερολόγιο apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Πρότυπο εισαγωγής δεδομένων DocType: Workflow State,hand-left,αριστερά +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Επιλέξτε πολλά στοιχεία λίστας apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Μέγεθος αντιγράφων ασφαλείας: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Συνδέεται με {0} DocType: Braintree Settings,Private Key,Ιδιωτικό κλειδί @@ -1880,13 +1909,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Ενδιαφέρον DocType: Bulk Update,Limit,Οριο DocType: Print Settings,Print taxes with zero amount,Εκτυπώστε φόρους με μηδενικό ποσό -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Ο λογαριασμός ηλεκτρονικού ταχυδρομείου δεν έχει ρυθμιστεί. Δημιουργήστε ένα νέο λογαριασμό ηλεκτρονικού ταχυδρομείου από το Setup> Email> Email Account DocType: Workflow State,Book,Βιβλίο DocType: S3 Backup Settings,Access Key ID,Αναγνωριστικό κλειδιού πρόσβασης DocType: Chat Message,URLs,URLs apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Τα ονόματα και τα επώνυμα από μόνα τους είναι εύκολο να μαντέψουν. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Αναφορά {0} DocType: About Us Settings,Team Members Heading,Ομάδες μελών ομάδας +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Επιλέξτε στοιχείο λίστας apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Το έγγραφο {0} έχει οριστεί σε κατάσταση {1} έως {2} DocType: Address Template,Address Template,Πρότυπο διεύθυνσης DocType: Workflow State,step-backward,βήμα προς τα πίσω @@ -1910,6 +1939,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Εξαγωγή προσαρμοσμένων δικαιωμάτων apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Καμία: Τέλος ροής εργασίας DocType: Version,Version,Εκδοχή +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Ανοίξτε το στοιχείο λίστας apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 μήνες DocType: Chat Message,Group,Ομάδα apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Υπάρχει κάποιο πρόβλημα με τη διεύθυνση url του αρχείου: {0} @@ -1965,6 +1995,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 χρόνος apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} επέστρεψε τα σημεία σας στο {1} DocType: Workflow State,arrow-down,βέλος κάτω DocType: Data Import,Ignore encoding errors,Αγνοήστε τα σφάλματα κωδικοποίησης +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Τοπίο DocType: Letter Head,Letter Head Name,Επιστολόχαρτο Όνομα DocType: Web Form,Client Script,Σενάριο πελάτη DocType: Assignment Rule,Higher priority rule will be applied first,Ο κανόνας υψηλότερης προτεραιότητας θα εφαρμοστεί πρώτα @@ -2009,6 +2040,7 @@ DocType: Kanban Board Column,Green,Πράσινος apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Απαιτούνται μόνο υποχρεωτικά πεδία για νέα αρχεία. Μπορείτε να διαγράψετε μη υποχρεωτικές στήλες, εάν το επιθυμείτε." apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} πρέπει να ξεκινάει και να τελειώνει με ένα γράμμα και μπορεί να περιέχει μόνο γράμματα, παύλες ή υπογράμμιση." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Εκκίνηση πρωτογενούς δράσης apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Δημιουργία ηλεκτρονικού ταχυδρομείου χρήστη apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Το πεδίο ταξινόμησης {0} πρέπει να είναι έγκυρο όνομα πεδίου DocType: Auto Email Report,Filter Meta,Φίλτρο Meta @@ -2038,6 +2070,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Πεδίο γραμμής χρόνου apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Φόρτωση... DocType: Auto Email Report,Half Yearly,Εξάμηνος +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Το ΠΡΟΦΙΛ μου apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Τελευταία τροποποιημένη ημερομηνία DocType: Contact,First Name,Ονομα DocType: Post,Comments,Σχόλια @@ -2060,6 +2093,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Περιεχόμενο apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Δημοσιεύσεις από {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} αποδίδεται {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Δεν έχουν συγχρονιστεί νέες Επαφές Google. DocType: Workflow State,globe,σφαίρα apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Μέσος όρος {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Εκκαθάριση αρχείων καταγραφής σφάλματος @@ -2086,6 +2120,8 @@ DocType: Workflow State,Inverse,Αντίστροφος DocType: Activity Log,Closed,Κλειστό DocType: Report,Query,Ερώτηση DocType: Notification,Days After,Ημέρες μετά +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Συντομεύσεις σελίδας +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Πορτρέτο apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Ζητήστε τη χρονική διάρκεια DocType: System Settings,Email Footer Address,Διεύθυνση υποσέλιδου ηλεκτρονικού ταχυδρομείου apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Ενημέρωση ενεργειακού σημείου @@ -2113,6 +2149,7 @@ For Select, enter list of Options, each on a new line.","Για τους συν apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,Πριν από 1 λεπτό apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Δεν υπάρχουν ενεργές περιόδους σύνδεσης apps/frappe/frappe/model/base_document.py,Row,Σειρά +DocType: Contact,Middle Name,Μεσαίο όνομα apps/frappe/frappe/public/js/frappe/request.js,Please try again,ΠΑΡΑΚΑΛΩ προσπαθησε ξανα DocType: Dashboard Chart,Chart Options,Επιλογές γραφήματος DocType: Data Migration Run,Push Failed,Το πάτημα απέτυχε @@ -2141,6 +2178,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,μέγεθος-μικρό DocType: Comment,Relinked,Βυθισμένος DocType: Role Permission for Page and Report,Roles HTML,Ρόλοι HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Πηγαίνω apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Η ροή εργασίας θα ξεκινήσει μετά την αποθήκευση. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Αν τα δεδομένα σας είναι HTML, παρακαλώ αντιγράψτε επικολλήστε τον ακριβή κώδικα HTML με τις ετικέτες." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Οι ημερομηνίες είναι συχνά εύκολο να μαντέψουν. @@ -2169,7 +2207,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Εικονίδιο επιφάνειας εργασίας apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,ακύρωσε αυτό το έγγραφο apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Εύρος ημερομηνιών -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Ρύθμιση> Δικαιώματα χρήστη apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} εκτιμήθηκε {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Οι τιμές αλλάχθηκαν apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Σφάλμα στην ειδοποίηση @@ -2234,6 +2271,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Μαζική διαγραφή DocType: DocShare,Document Name,Όνομα εγγράφου apps/frappe/frappe/config/customization.py,Add your own translations,Προσθέστε τις δικές σας μεταφράσεις +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Περιηγηθείτε τη λίστα προς τα κάτω DocType: S3 Backup Settings,eu-central-1,eu-κεντρική-1 DocType: Auto Repeat,Yearly,Ετήσια apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Μετονομάζω @@ -2284,6 +2322,7 @@ DocType: Workflow State,plane,επίπεδο apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Εσφαλμένο σετ σφάλματος. Επικοινωνήστε με τον διαχειριστή. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Εμφάνιση αναφοράς DocType: Auto Repeat,Auto Repeat Schedule,Πρόγραμμα αυτόματης επανάληψης +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Προβολή Κωδ DocType: Address,Office,Γραφείο DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,Πριν από τις {0} ημέρες @@ -2317,7 +2356,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Α apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Οι ρυθμίσεις μου apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Το όνομα ομάδας δεν μπορεί να είναι κενό. DocType: Workflow State,road,δρόμος -DocType: Website Route Redirect,Source,Πηγή +DocType: Contact,Source,Πηγή apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Ενεργές Συνεδρίες apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Μπορεί να υπάρχει μόνο ένα πτυσσόμενο σε μορφή apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Νέα συζήτηση @@ -2339,6 +2378,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Εισαγάγετε τη διεύθυνση URL Εξουσιοδότησης DocType: Email Account,Send Notification to,Στείλτε ειδοποίηση στο apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Ρυθμίσεις δημιουργίας αντιγράφων Dropbox +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,Κάτι πήγε στραβά κατά τη διάρκεια της γενιάς των συμβόλων. Κάντε κλικ στο {0} για να δημιουργήσετε ένα νέο. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Καταργήστε όλες τις προσαρμογές; apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Μόνο ο διαχειριστής μπορεί να επεξεργαστεί DocType: Auto Repeat,Reference Document,Εγγραφο αναφοράς @@ -2363,6 +2403,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Οι ρόλοι μπορούν να οριστούν για χρήστες από τη σελίδα χρήστη. DocType: Website Settings,Include Search in Top Bar,Συμπεριλάβετε την αναζήτηση στην επάνω γραμμή apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Urgent] Σφάλμα κατά τη δημιουργία επαναλαμβανόμενων% s για% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Συνοπτικές συντομεύσεις DocType: Help Article,Author,Συντάκτης DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Δεν βρέθηκε έγγραφο για δεδομένα φίλτρα @@ -2398,10 +2439,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, Σειρά {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Εάν ανεβάζετε νέα αρχεία, η "Ονομασία Σειράς" καθίσταται υποχρεωτική, αν υπάρχει." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Επεξεργασία ιδιοτήτων -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Δεν είναι δυνατή η εκκίνηση στιγμιότυπου όταν το {0} είναι ανοιχτό +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,Δεν είναι δυνατή η εκκίνηση στιγμιότυπου όταν το {0} είναι ανοιχτό DocType: Activity Log,Timeline Name,Όνομα χρονικής γραμμής DocType: Comment,Workflow,Ροή εργασιών apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Ορίστε τη διεύθυνση URL βάσης στο κλειδί κοινωνικής σύνδεσης για το Frappe +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Συντομεύσεις πληκτρολογίου DocType: Portal Settings,Custom Menu Items,Προσαρμοσμένα στοιχεία μενού apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,Το μήκος {0} πρέπει να είναι μεταξύ 1 και 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Η σύνδεση χάθηκε. Ορισμένες λειτουργίες ενδέχεται να μην λειτουργούν. @@ -2464,6 +2506,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Προστ DocType: DocType,Setup,Ρύθμιση apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} δημιουργήθηκε με επιτυχία apps/frappe/frappe/www/update-password.html,New Password,νέος κωδικός πρόσβασης +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Επιλέξτε πεδίο apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Αφήστε αυτή τη συζήτηση DocType: About Us Settings,Team Members,Μέλη ομάδας DocType: Blog Settings,Writers Introduction,Εισαγωγή συγγραφέων @@ -2533,13 +2576,12 @@ DocType: Chat Room,Name,Ονομα DocType: Communication,Email Template,Πρότυπο ηλεκτρονικού ταχυδρομείου DocType: Energy Point Settings,Review Levels,Επίπεδα αναθεώρησης DocType: Print Format,Raw Printing,Ακατέργαστη εκτύπωση -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Δεν είναι δυνατό να ανοίξει το {0} όταν είναι ανοιχτό το στιγμιότυπό του +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,Δεν είναι δυνατό να ανοίξει το {0} όταν είναι ανοιχτό το στιγμιότυπό του DocType: DocType,"Make ""name"" searchable in Global Search",Δημιουργήστε "όνομα" για αναζήτηση στο Global Search DocType: Data Migration Mapping,Data Migration Mapping,Χαρτογράφηση μετανάστευσης δεδομένων DocType: Data Import,Partially Successful,Μερικώς επιτυχής DocType: Communication,Error,Λάθος apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Ο τύπος πεδίου δεν μπορεί να αλλάξει από {0} σε {1} στη σειρά {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Σφάλμα σύνδεσης με εφαρμογή δίσκου QZ ...

Πρέπει να έχετε εγκαταστήσει και να εκτελέσετε την εφαρμογή QZ Tray, για να χρησιμοποιήσετε τη λειτουργία Raw Print.

Κάντε κλικ εδώ για να κάνετε λήψη και εγκατάσταση του δίσκου QZ .
Κάντε κλικ εδώ για να μάθετε περισσότερα σχετικά με την ασταθή εκτύπωση ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Βγάλε φωτογραφία apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,Αποφύγετε χρόνια που σχετίζονται με σας. DocType: Web Form,Allow Incomplete Forms,Να επιτρέπονται ελλιπείς φόρμες @@ -2635,7 +2677,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Επιλέξτε target = "_blank" για να ανοίξετε σε μια νέα σελίδα. DocType: Portal Settings,Portal Menu,Μενού πύλης DocType: Website Settings,Landing Page,Σελίδα προορισμού -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,Εγγραφείτε ή συνδεθείτε για να ξεκινήσετε DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Επιλογές επικοινωνίας, όπως "Query Sales, Query Support" κ.λπ. σε κάθε νέα γραμμή ή χωρισμένες με κόμματα." apps/frappe/frappe/twofactor.py,Verfication Code,Κωδικός ελέγχου apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} έχει ήδη καταργηθεί @@ -2721,6 +2762,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Χαρτογρ DocType: Address,Sales User,Χρήστης πωλήσεων apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Αλλαγή ιδιοτήτων πεδίου (απόκρυψη, ανάγνωση, άδεια κ.λπ.)" DocType: Property Setter,Field Name,Ονομα πεδίου +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Πελάτης DocType: Print Settings,Font Size,Μέγεθος γραμματοσειράς DocType: User,Last Password Reset Date,Τελευταία ημερομηνία επαναφοράς κωδικού πρόσβασης DocType: System Settings,Date and Number Format,Μορφή ημερομηνίας και αριθμού @@ -2786,6 +2828,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Κόμβος ο apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Συγχώνευση με υπάρχοντα DocType: Blog Post,Blog Intro,Blog Intro apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Νέα αναφορά +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Μετάβαση στο πεδίο DocType: Prepared Report,Report Name,Αναφορά ονόματος apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Ανανεώστε την για να λάβετε το τελευταίο έγγραφο. apps/frappe/frappe/core/doctype/communication/communication.js,Close,Κοντά @@ -2795,10 +2838,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Εκδήλωση DocType: Social Login Key,Access Token URL,Πρόσβαση στη διεύθυνση Token URL apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Ρυθμίστε τα κλειδιά πρόσβασης Dropbox στο config site +DocType: Google Contacts,Google Contacts,Επαφές Google DocType: User,Reset Password Key,Επαναφορά κλειδιού κωδικού πρόσβασης apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Τροποποιήθηκε από DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.","Για να ανανεώσετε, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Αποθηκεύτηκε επιτυχώς +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Στείλτε ένα email στο {0} για να το συνδέσετε εδώ. DocType: File,Folder,Ντοσιέ DocType: DocField,Perm Level,Επίπεδο Perm DocType: Print Settings,Page Settings,Ρυθμίσεις σελίδας @@ -2828,6 +2874,7 @@ DocType: Workflow State,remove-sign,αφαίρεση-σημάδι DocType: Dashboard Chart,Full,Γεμάτος DocType: DocType,User Cannot Create,Ο χρήστης δεν μπορεί να δημιουργήσει apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Κερδίσατε το {0} σημείο +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Ρύθμιση> Χρήστης DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Αν το ορίσετε, αυτό το στοιχείο θα εμφανιστεί σε ένα αναπτυσσόμενο μενού κάτω από τον επιλεγμένο γονέα." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Δεν υπάρχουν μηνύματα ηλεκτρονικού ταχυδρομείου apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Απουσιάζουν τα ακόλουθα πεδία: @@ -2841,13 +2888,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Ε DocType: Web Form,Web Form Fields,Πεδία φόρμας ιστού DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Επεξεργασία φόρμας χρήστη στον ιστότοπο. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Να ακυρώσετε μόνιμα {0}; +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Να ακυρώσετε μόνιμα {0}; apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Επιλογή 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,Συνολικά apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Αυτός είναι ένας πολύ συνηθισμένος κωδικός πρόσβασης. DocType: Personal Data Deletion Request,Pending Approval,Εκκρεμεί έγκριση apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Δεν ήταν δυνατή η σωστή ανάθεση του εγγράφου apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Δεν επιτρέπεται για {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Δεν υπάρχουν τιμές που να εμφανίζονται DocType: Personal Data Download Request,Personal Data Download Request,Αίτηση λήψης προσωπικών δεδομένων apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} κοινοποίησε αυτό το έγγραφο με {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Επιλέξτε {0} @@ -2863,7 +2911,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Αυτό το μήνυμα ηλεκτρονικού ταχυδρομείου εστάλη στο {0} και αντιγράφηκε σε {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,Μη έγκυρη σύνδεση ή κωδικός πρόσβασης DocType: Social Login Key,Social Login Key,Κλειδί κοινωνικής σύνδεσης -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Ρυθμίστε τον προεπιλεγμένο λογαριασμό ηλεκτρονικού ταχυδρομείου από το Setup> Email> Email Account apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Φίλτρα αποθηκευμένα DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Πώς θα διαμορφωθεί αυτό το νόμισμα; Εάν δεν έχει οριστεί, θα χρησιμοποιήσει τις προεπιλογές του συστήματος" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} έχει οριστεί σε κατάσταση {2} @@ -2989,6 +3036,7 @@ DocType: User,Location,Τοποθεσία apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Χωρίς δεδομένα DocType: Website Meta Tag,Website Meta Tag,Ιστοσελίδα Meta Tag DocType: Workflow State,film,ταινία +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Αντιγράφηκε στο πρόχειρο. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Δεν βρέθηκαν ρυθμίσεις apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Η ετικέτα είναι υποχρεωτική DocType: Webhook,Webhook Headers,Κεφαλίδες Webhook @@ -3197,7 +3245,7 @@ DocType: Address,Address Line 1,Διεύθυνση 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Για τύπο εγγράφου apps/frappe/frappe/model/base_document.py,Data missing in table,Τα δεδομένα λείπουν από τον πίνακα apps/frappe/frappe/utils/bot.py,Could not identify {0},Δεν ήταν δυνατός ο εντοπισμός {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Αυτή η φόρμα έχει τροποποιηθεί μετά τη φόρτωσή της +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Αυτή η φόρμα έχει τροποποιηθεί μετά τη φόρτωσή της apps/frappe/frappe/www/login.html,Back to Login,Επιστροφή στην σελίδα εισόδου apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Δεν ρυθμίστηκε DocType: Data Migration Mapping,Pull,Τραβήξτε @@ -3265,6 +3313,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Παιδική χαρ apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,"Ρύθμιση λογαριασμού ηλεκτρονικού ταχυδρομείου, πληκτρολογήστε τον κωδικό πρόσβασής σας" apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Πολλοί γράφουν σε ένα αίτημα. Στείλτε μικρότερα αιτήματα DocType: Social Login Key,Salesforce,Salesforce +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Εισαγωγή {0} από {1} DocType: User,Tile,Πλακάκι apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,Το {0} δωμάτιο πρέπει να έχει σχεδόν έναν χρήστη. DocType: Email Rule,Is Spam,Είναι το Spam @@ -3302,7 +3351,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,κλείστε το φάκελο DocType: Data Migration Run,Pull Update,Τραβήξτε την ενημέρωση apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},συγχώνευσε {0} σε {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

DocType: SMS Settings,Enter url parameter for receiver nos,Εισαγάγετε την παράμετρο url για τον αριθμό του δέκτη apps/frappe/frappe/utils/jinja.py,Syntax error in template,Σφάλμα σύνταξης στο πρότυπο apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Ορίστε την τιμή φίλτρου στον πίνακα Φίλτρο Αναφορών. @@ -3315,6 +3363,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Λυπού DocType: System Settings,In Days,Στις Ημέρες DocType: Report,Add Total Row,Προσθήκη της συνολικής σειράς apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Η έναρξη της περιόδου σύνδεσης απέτυχε +DocType: Translation,Verified,Επαληθεύτηκε DocType: Print Format,Custom HTML Help,Custom HTML Help DocType: Address,Preferred Billing Address,Προτιμώμενη διεύθυνση χρέωσης apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Ανατεθεί @@ -3329,7 +3378,6 @@ DocType: Help Article,Intermediate,Ενδιάμεσος DocType: Module Def,Module Name,Όνομα μονάδας DocType: OAuth Authorization Code,Expiration time,Χρόνος λήξης apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Ορίστε προεπιλεγμένη μορφή, μέγεθος σελίδας, στυλ εκτύπωσης κ.λπ." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,Δεν μπορείτε να σας αρέσει κάτι που δημιουργήσατε DocType: System Settings,Session Expiry,Η λήξη της περιόδου σύνδεσης DocType: DocType,Auto Name,Αυτόματη ονομασία apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Επιλέξτε Συνημμένα @@ -3357,6 +3405,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Σελίδα συστήματος DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,"Σημείωση: Από προεπιλογή, στέλνονται μηνύματα ηλεκτρονικού ταχυδρομείου για αποτυχημένα αντίγραφα ασφαλείας." DocType: Custom DocPerm,Custom DocPerm,Προσαρμοσμένο DocPerm +DocType: Translation,PR sent,Το PR στάλθηκε DocType: Tag Doc Category,Doctype to Assign Tags,Doctype για την εκχώρηση ετικετών DocType: Address,Warehouse,Αποθήκη apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Ρύθμιση Dropbox @@ -3424,7 +3473,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Enter για να προσθέσετε σχόλιο apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Το πεδίο {0} δεν είναι επιλεγμένο. DocType: User,Birth Date,Ημερομηνία γέννησης -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Με ομαδοποίηση ομάδας DocType: List View Setting,Disable Count,Απενεργοποίηση καταμέτρησης DocType: Contact Us Settings,Email ID,Ταυτότητα ηλεκτρονικού ταχυδρομείου apps/frappe/frappe/utils/password.py,Incorrect User or Password,Εσφαλμένος χρήστης ή κωδικός πρόσβασης @@ -3459,6 +3507,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Αυτός ο ρόλος ενημερώνει δικαιώματα χρήστη για έναν χρήστη DocType: Website Theme,Theme,Θέμα DocType: Web Form,Show Sidebar,Εμφάνιση πλευρικής εργαλειοθήκης +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Ένταξη Επαφών Google. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Προεπιλεγμένα εισερχόμενα apps/frappe/frappe/www/login.py,Invalid Login Token,Μη έγκυρο όνομα σύνδεσης apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Αρχικά ορίστε το όνομα και αποθηκεύστε την εγγραφή. @@ -3486,7 +3535,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Διορθώστε το DocType: Top Bar Item,Top Bar Item,Κορυφή στοιχείο γραμμής ,Role Permissions Manager,Διαχειριστής δικαιωμάτων ρόλων -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,Υπήρχαν σφάλματα. Αναφέρετε αυτό. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} χρόνια πριν apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Θηλυκός DocType: System Settings,OTP Issuer Name,Όνομα Εκδότη OTP apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Προσθήκη για να κάνει @@ -3586,6 +3635,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Ρυθ apps/frappe/frappe/model/document.py,none of,κανένας από DocType: Desktop Icon,Page,Σελίδα DocType: Workflow State,plus-sign,συν-σημάδι +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Διαγραφή της προσωρινής μνήμης και επαναφόρτιση apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Δεν είναι δυνατή η ενημέρωση: Σύνδεσμος εσφαλμένου / έληξε. DocType: Kanban Board Column,Yellow,Κίτρινος DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Αριθμός στηλών για ένα πεδίο σε ένα πλέγμα (οι συνολικές στήλες σε ένα πλέγμα θα πρέπει να είναι μικρότερες από 11) @@ -3600,6 +3650,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Νέ DocType: Activity Log,Date,Ημερομηνία DocType: Communication,Communication Type,Τύπος επικοινωνίας apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Πίνακας γονέων +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Πλοηγηθείτε στη λίστα DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Εμφάνιση πλήρους σφάλματος και Να επιτρέπεται η αναφορά θεμάτων στον προγραμματιστή DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3621,7 +3672,6 @@ DocType: Notification Recipient,Email By Role,Ηλεκτρονικό ταχυδ apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,Κάντε αναβάθμιση για να προσθέσετε περισσότερους από {0} συνδρομητές apps/frappe/frappe/email/queue.py,This email was sent to {0},Αυτό το μήνυμα ηλεκτρονικού ταχυδρομείου εστάλη στο {0} DocType: User,Represents a User in the system.,Αντιπροσωπεύει έναν χρήστη στο σύστημα. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Σελίδα {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Ξεκινήστε τη νέα μορφή apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Πρόσθεσε ένα σχόλιο apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} από {1} diff --git a/frappe/translations/es.csv b/frappe/translations/es.csv index b6a21eea4e..600c75c4f4 100644 --- a/frappe/translations/es.csv +++ b/frappe/translations/es.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Habilitar gradientes DocType: DocType,Default Sort Order,Orden de clasificación predeterminado apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Mostrando solo los campos numéricos del informe +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Presione la tecla Alt para activar accesos directos adicionales en Menú y barra lateral DocType: Workflow State,folder-open,carpeta abierta DocType: Customize Form,Is Table,Es tabla apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,No se puede abrir el archivo adjunto. ¿Lo exportaste como CSV? DocType: DocField,No Copy,Sin copia DocType: Custom Field,Default Value,Valor por defecto apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Adjuntar a es obligatorio para los correos entrantes +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Sincronizar contactos DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Detalle de mapeo de migración de datos apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Dejar de seguir apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",La impresión de PDF a través de "Raw Print" aún no es compatible. Elimine la asignación de la impresora en la Configuración de la impresora y vuelva a intentarlo. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} y {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Se ha producido un error al guardar los filtros. apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Ingresa tu contraseña apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,No se pueden eliminar las carpetas de Inicio y Archivos adjuntos +DocType: Email Account,Enable Automatic Linking in Documents,Habilitar enlace automático en documentos DocType: Contact Us Settings,Settings for Contact Us Page,Configuraciones para la página de contacto DocType: Social Login Key,Social Login Provider,Proveedor de inicio de sesión social +DocType: Email Account,"For more information, click here.","Para más información, haga clic aquí ." DocType: Transaction Log,Previous Hash,Hash anterior DocType: Notification,Value Changed,Valor cambiado DocType: Report,Report Type,Tipo de informe @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Regla del punto de energía apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,"Por favor, ingrese el ID de cliente antes de habilitar el inicio de sesión social" DocType: Communication,Has Attachment,Tiene adjunto DocType: User,Email Signature,Firma de email -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Hace {0} año (s) ,Addresses And Contacts,Direcciones y contactos apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Este tablero Kanban será privado. DocType: Data Migration Run,Current Mapping,Mapeo Actual @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Está seleccionando la opción Sincronizar como TODOS, volverá a sincronizar todos los \ leídos y los mensajes no leídos del servidor. Esto también puede causar la duplicación de la comunicación (correos electrónicos)." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Última sincronización {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,No se puede cambiar el contenido del encabezado +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

No se encontraron resultados para '

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,No se permite cambiar {0} después del envío apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","La aplicación se ha actualizado a una nueva versión, por favor actualice esta página" DocType: User,User Image,Imagen de usuario @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Marca apps/frappe/frappe/public/js/frappe/chat.js,Discard,Descarte DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Seleccione una imagen de aproximadamente 150 píxeles de ancho con un fondo transparente para obtener mejores resultados. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,Reincidido +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} valores seleccionados DocType: Blog Post,Email Sent,Email enviado DocType: Communication,Read by Recipient On,Leer por destinatario en DocType: User,Allow user to login only after this hour (0-24),Permitir al usuario iniciar sesión solo después de esta hora (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,padre antiguo apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Módulo para Exportar DocType: DocType,Fields,Campos -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,No está permitido imprimir este documento. +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,No está permitido imprimir este documento. apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Padre apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Su sesión ha expirado, por favor inicie sesión nuevamente para continuar." DocType: Assignment Rule,Priority,Prioridad @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Restablecer OTP Se DocType: DocType,UPPER CASE,CASO SUPERIOR apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,"Por favor, establezca la dirección de correo electrónico" DocType: Communication,Marked As Spam,Marcado como spam +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Dirección de correo electrónico cuyos contactos de Google se deben sincronizar. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Importar suscriptores apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Guardar filtro DocType: Address,Preferred Shipping Address,Dirección de envío preferida DocType: GCalendar Account,The name that will appear in Google Calendar,El nombre que aparecerá en Google Calendar. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Haga clic en {0} para generar token de actualización. DocType: Email Account,Disable SMTP server authentication,Deshabilitar la autenticación del servidor SMTP DocType: Email Account,Total number of emails to sync in initial sync process ,Número total de correos electrónicos para sincronizar en el proceso de sincronización inicial DocType: System Settings,Enable Password Policy,Habilitar política de contraseña @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Insertar codigo apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,No en DocType: Auto Repeat,Start Date,Fecha de inicio apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Establecer gráfico +DocType: Website Theme,Theme JSON,Tema JSON apps/frappe/frappe/www/list.py,My Account,Mi cuenta DocType: DocType,Is Published Field,Se publica el campo DocType: DocField,Set non-standard precision for a Float or Currency field,Establecer precisión no estándar para un campo Flotante o Moneda @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Agregar Reference: {{ reference_doctype }} {{ reference_name }} para enviar la referencia del documento DocType: LDAP Settings,LDAP First Name Field,Primer campo de nombre LDAP apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Envío predeterminado y bandeja de entrada -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuración> Personalizar formulario apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.","Para actualizar, puedes actualizar solo columnas selectivas." apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',El valor predeterminado para el tipo de campo 'Verificar' debe ser '0' o '1' apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Comparte este documento con @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Dominios HTML DocType: Blog Settings,Blog Settings,Configuración del blog apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","El nombre de DocType debe comenzar con una letra y solo puede constar de letras, números, espacios y guiones bajos." +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuración> Permisos de usuario DocType: Communication,Integrations can use this field to set email delivery status,Las integraciones pueden usar este campo para establecer el estado de entrega de correo electrónico apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Configuración de pasarela de pago de banda DocType: Print Settings,Fonts,Fuentes DocType: Notification,Channel,Canal DocType: Communication,Opened,Abrió DocType: Workflow Transition,Conditions,Condiciones +apps/frappe/frappe/config/website.py,A user who posts blogs.,Un usuario que publica blogs. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,¿No tienes una cuenta? Regístrate apps/frappe/frappe/utils/file_manager.py,Added {0},Añadido {0} DocType: Newsletter,Create and Send Newsletters,Crear y enviar boletines DocType: Website Settings,Footer Items,Artículos de pie de página +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Configure la cuenta de correo electrónico predeterminada desde Configuración> Correo electrónico> Cuenta de correo electrónico DocType: Website Slideshow Item,Website Slideshow Item,Elemento de diapositivas del sitio web apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registrar la aplicación OAuth Client DocType: Error Snapshot,Frames,Marcos @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","El nivel 0 es para permisos de nivel de documento, \ niveles superiores para permisos de nivel de campo." DocType: Address,City/Town,Ciudad / pueblo DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Esto restablecerá su tema actual, ¿está seguro de que desea continuar?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Campos obligatorios requeridos en {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Error al conectarse a la cuenta de correo electrónico {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Ocurrió un error al crear recurrentes. @@ -528,7 +537,7 @@ DocType: Event,Event Category,Categoría de evento apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Columnas basadas en apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Editar encabezado DocType: Communication,Received,Recibido -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,No tienes permiso para acceder a esta página. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,No tienes permiso para acceder a esta página. DocType: User Social Login,User Social Login,Usuario Social Login apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,Escriba un archivo de Python en la misma carpeta donde está guardado y devuelva la columna y el resultado. DocType: Contact,Purchase Manager,Jefe de compras @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Conf apps/frappe/frappe/utils/data.py,Operator must be one of {0},El operador debe ser uno de {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Si propietario DocType: Data Migration Run,Trigger Name,Nombre del disparador -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Escribe títulos e introducciones a tu blog. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Quitar campo apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Desplegar todo apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Color de fondo @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,Bar DocType: SMS Settings,Enter url parameter for message,Ingrese el parámetro url para el mensaje apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nuevo formato de impresión personalizado apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} ya existe +DocType: Workflow Document State,Is Optional State,Es opcional estado DocType: Address,Purchase User,Compra usuario DocType: Data Migration Run,Insert,Insertar DocType: Web Form,Route to Success Link,Ruta al enlace de éxito @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,El nomb DocType: File,Is Home Folder,Es la carpeta de inicio apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Tipo: DocType: Post,Is Pinned,Se fija -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},No hay permiso para '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},No hay permiso para '{0}' {1} DocType: Patch Log,Patch Log,Registro de parches DocType: Print Format,Print Format Builder,Generador de formatos de impresión 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á habilitado, todos los usuarios pueden iniciar sesión desde cualquier dirección IP usando la autenticación de dos factores. Esto también se puede configurar solo para usuarios específicos en la página de usuario" apps/frappe/frappe/utils/data.py,only.,solamente. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,La condición '{0}' no es válida DocType: Auto Email Report,Day of Week,Día de la semana +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Habilitar la API de Google en la configuración de Google. DocType: DocField,Text Editor,Editor de texto apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Cortar apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Busca o escribe un comando @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,Número de copias de seguridad de base de datos no puede ser inferior a 1 DocType: Workflow State,ban-circle,círculo de prohibición DocType: Data Export,Excel,Sobresalir +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Encabezado, Breadcrumbs y Meta Tags" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Dirección de correo electrónico de soporte no especificada DocType: Comment,Published,Publicado DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","Nota: Para obtener los mejores resultados, las imágenes deben ser del mismo tamaño y el ancho debe ser mayor que la altura." @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Programador del último evento apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Informe de todos los documentos compartidos DocType: Website Sidebar Item,Website Sidebar Item,Elemento de la barra lateral del sitio web apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Que hacer +DocType: Google Settings,Google Settings,Configuraciones de Google apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Seleccione su país, zona horaria y moneda" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Introduzca aquí los parámetros de la URL estática (por ejemplo, remitente = ERPNext, nombre de usuario = ERPNext, contraseña = 1234, etc.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,No cuenta de correo electrónico @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,Token de portador de OAuth ,Setup Wizard,Asistente de configuración apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Tabla de alternar +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,Sincronizando DocType: Data Migration Run,Current Mapping Action,Acción de mapeo actual DocType: Email Account,Initial Sync Count,Cuenta inicial de sincronización apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Configuración para la página de contacto. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Tipo de formato de impresión apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,No hay permisos establecidos para este criterio. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Expandir todo +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,No se ha encontrado ninguna plantilla de dirección predeterminada. Cree uno nuevo desde Configuración> Impresión y marca> Plantilla de dirección. DocType: Tag Doc Category,Tag Doc Category,Tag Doc Categoría DocType: Data Import,Generated File,Archivo generado apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Notas @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,El campo de la línea de tiempo debe ser un enlace o un enlace dinámico DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Las notificaciones y los correos masivos serán enviados desde este servidor saliente. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Esta es una de las 100 contraseñas más comunes. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,¿Enviar permanentemente {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,¿Enviar permanentemente {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} no existe, seleccione un nuevo objetivo para fusionar" DocType: Energy Point Rule,Multiplier Field,Campo multiplicador DocType: Workflow,Workflow State Field,Campo de estado de flujo de trabajo @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} apreció su trabajo en {1} con {2} puntos DocType: Auto Email Report,Zero means send records updated at anytime,Cero significa enviar registros actualizados en cualquier momento. apps/frappe/frappe/model/document.py,Value cannot be changed for {0},El valor no se puede cambiar para {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Configuración de la API de Google. DocType: System Settings,Force User to Reset Password,Forzar al usuario a restablecer la contraseña apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Los informes del Generador de informes son gestionados directamente por el creador de informes. Nada que hacer. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Editar filtro @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,Para DocType: S3 Backup Settings,eu-north-1,eu-north-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: solo se permite una regla con el mismo rol, nivel y {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,No se le permite actualizar este documento de formulario web -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Límite máximo de archivos adjuntos para este registro alcanzado. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Límite máximo de archivos adjuntos para este registro alcanzado. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,Asegúrese de que los Documentos de comunicación de referencia no estén vinculados circularmente. DocType: DocField,Allow in Quick Entry,Permitir en entrada rápida DocType: Error Snapshot,Locals,Locales @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Tipo de excepción apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},No se puede eliminar o cancelar porque {0} {1} está vinculado con {2} {3} {4} apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,El secreto de OTP solo puede ser restablecido por el Administrador. -DocType: Web Form Field,Page Break,Salto de página DocType: Website Script,Website Script,Guión del sitio web DocType: Integration Request,Subscription Notification,Notificación de suscripción DocType: DocType,Quick Entry,Entrada rápida @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,Establecer propiedad después de apps/frappe/frappe/__init__.py,Thank you,Gracias apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks para la integración interna apps/frappe/frappe/config/settings.py,Import Data,Datos de importacion +DocType: Translation,Contributed Translation Doctype Name,Nombre de Doctype de traducción contribuido DocType: Social Login Key,Office 365,Oficina 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,CARNÉ DE IDENTIDAD DocType: Review Level,Review Level,Nivel de Revisión @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Hecho exitosamente apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Lista apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Apreciar -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Nuevo {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Es el contacto primario DocType: Print Format,Raw Commands,Comandos en bruto apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Hojas de estilo para formatos de impresión @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Errores en eventos apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Encuentra {0} en {1} DocType: Email Account,Use SSL,Utilizar SSL DocType: DocField,In Standard Filter,En el filtro estándar +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,No hay contactos de Google presentes para sincronizar. DocType: Data Migration Run,Total Pages,Paginas totales apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: el campo '{1}' no se puede establecer como Único ya que tiene valores no únicos DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Si está habilitado, los usuarios serán notificados cada vez que inicien sesión. Si no está habilitado, los usuarios solo serán notificados una vez." @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,Automatización apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Descomprimiendo archivos ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Buscar '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Algo salió mal -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,"Por favor, guarde antes de adjuntar." +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,"Por favor, guarde antes de adjuntar." DocType: Version,Table HTML,Tabla HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,cubo DocType: Page,Standard,Estándar @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,No hay resu apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} registros borrados apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,"Algo salió mal al generar el token de acceso de Dropbox. Por favor, consulte el registro de errores para más detalles." apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Descendientes de -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,No se ha encontrado ninguna plantilla de dirección predeterminada. Cree uno nuevo desde Configuración> Impresión y marca> Plantilla de dirección. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Contactos de Google ha sido configurado. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Ocultar detalles apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Estilos de fuente apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Su suscripción caducará el {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},La autenticación falló al recibir correos electrónicos de la cuenta de correo electrónico {0}. Mensaje del servidor: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Estadísticas basadas en el rendimiento de la semana pasada (de {0} a {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,La vinculación automática solo se puede activar si la función Entrante está habilitada. DocType: Website Settings,Title Prefix,Título prefijo apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Las aplicaciones de autenticación que puedes usar son: DocType: Bulk Update,Max 500 records at a time,Máximo 500 registros a la vez @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,Filtros de informe apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Seleccionar columnas DocType: Event,Participants,Participantes DocType: Auto Repeat,Amended From,Modificado de -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Su información se ha enviado +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Su información se ha enviado DocType: Help Category,Help Category,Categoría de ayuda apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 mes apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Seleccione un formato existente para editar o iniciar un nuevo formato. @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Campo a pista DocType: User,Generate Keys,Generar claves DocType: Comment,Unshared,Incompartible -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Salvado +DocType: Translation,Saved,Salvado DocType: OAuth Client,OAuth Client,OAuth Client DocType: System Settings,Disable Standard Email Footer,Deshabilitar el pie de página de correo electrónico estándar apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,El formato de impresión {0} está deshabilitado @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Ultima actual DocType: Data Import,Action,Acción apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Se requiere clave de cliente DocType: Chat Profile,Notifications,Notificaciones +DocType: Translation,Contributed,Contribuido DocType: System Settings,mm/dd/yyyy,mm / dd / aaaa DocType: Report,Custom Report,Informe personalizado DocType: Workflow State,info-sign,signo de información @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Contacto DocType: LDAP Settings,LDAP Username Field,Campo de nombre de usuario LDAP apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","El campo {0} no se puede establecer como único en {1}, ya que hay valores existentes no únicos" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuración> Personalizar formulario DocType: User,Social Logins,Logins sociales DocType: Workflow State,Trash,Basura DocType: Stripe Settings,Secret Key,Llave secreta @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,Campo de título apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,No se pudo conectar al servidor de correo saliente DocType: File,File URL,URL del archivo DocType: Help Article,Likes,Gustos +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,La integración de contactos de Google está deshabilitada. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Debe iniciar sesión y tener la función de administrador del sistema para poder acceder a las copias de seguridad. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Primer nivel DocType: Blogger,Short Name,Nombre corto @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Importar zip DocType: Contact,Gender,Género DocType: Workflow State,thumbs-down,pulgares abajo -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},La cola debe ser una de {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},No se puede establecer la notificación en el tipo de documento {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Agregar el Administrador del sistema a este usuario ya que debe haber al menos un Administrador del sistema apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Correo electrónico de bienvenida enviado DocType: Transaction Log,Chaining Hash,Hash encadenado DocType: Contact,Maintenance Manager,Gerente de Mantenimiento +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Para comparación, utilice> 5, <10 o = 324. Para rangos, use 5:10 (para valores entre 5 y 10)." apps/frappe/frappe/utils/bot.py,show,espectáculo apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Compartir URL apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Formato de archivo no soportado @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,Notificación DocType: Data Import,Show only errors,Mostrar solo errores DocType: Energy Point Log,Review,revisión apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Filas eliminadas -DocType: GSuite Settings,Google Credentials,Credenciales de Google +DocType: Google Settings,Google Credentials,Credenciales de Google apps/frappe/frappe/www/login.html,Or login with,O inicia sesión con apps/frappe/frappe/model/document.py,Record does not exist,Registro no existe apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Nuevo nombre del informe @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,Lista DocType: Workflow State,th-large,th-large apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: No se puede establecer Asignar envío si no se puede enviar apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,No vinculado a ningún registro +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Error al conectar con la aplicación de la bandeja QZ ...

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

Haga clic aquí para descargar e instalar QZ Tray .
Haga clic aquí para obtener más información sobre la impresión sin formato ." DocType: Chat Message,Content,Contenido DocType: Workflow Transition,Allow Self Approval,Permitir autoaprobación apps/frappe/frappe/www/qrcode.py,Page has expired!,La página ha caducado! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,mano derecha DocType: Website Settings,Banner is above the Top Menu Bar.,El banner está sobre la barra de menú superior. apps/frappe/frappe/www/update-password.html,Invalid Password,Contraseña invalida apps/frappe/frappe/utils/data.py,1 month ago,Hace 1 mes +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Permitir el acceso a los contactos de Google DocType: OAuth Client,App Client ID,ID de cliente de la aplicación DocType: DocField,Currency,Moneda DocType: Website Settings,Banner,Bandera @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Gol DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Si un rol no tiene acceso en el nivel 0, los niveles más altos no tienen sentido." DocType: ToDo,Reference Type,Tipo de referencia -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Permitiendo DocType, DocType. ¡Ten cuidado!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Permitiendo DocType, DocType. ¡Ten cuidado!" DocType: Domain Settings,Domain Settings,Configuraciones de dominio DocType: Auto Email Report,Dynamic Report Filters,Filtros de informes dinámicos DocType: Energy Point Log,Appreciation,Apreciación @@ -1468,6 +1489,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,us-west-2 DocType: DocType,Is Single,Es soltera apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Crear un nuevo formato +DocType: Google Contacts,Authorize Google Contacts Access,Autorizar el acceso a contactos de Google DocType: S3 Backup Settings,Endpoint URL,URL de punto final DocType: Social Login Key,Google,Google DocType: Contact,Department,Departamento @@ -1482,7 +1504,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Asignar a DocType: List Filter,List Filter,Filtro de lista DocType: Dashboard Chart Link,Chart,Gráfico apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,No se puede quitar -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Enviar este documento para confirmar. +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Enviar este documento para confirmar. apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} ya existe. Seleccione otro nombre apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,"Tienes cambios sin guardar en este formulario. Por favor, guarde antes de continuar." apps/frappe/frappe/model/document.py,Action Failed,Accion: Fallida @@ -1564,6 +1586,7 @@ DocType: DocField,Display,Monitor apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Responder a todos DocType: Calendar View,Subject Field,Campo de asunto apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},La expiración de la sesión debe estar en formato {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},Aplicando: {0} DocType: Workflow State,zoom-in,acercarse apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Error al conectar con el servidor apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},La fecha {0} debe estar en formato: {1} @@ -1575,8 +1598,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Aparecerá el icono en el botón. DocType: Role Permission for Page and Report,Set Role For,Establecer el papel para +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,La vinculación automática solo se puede activar para una cuenta de correo electrónico. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,No hay cuentas de correo electrónico asignadas +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,La cuenta de correo electrónico no está configurada. Cree una nueva cuenta de correo electrónico desde Configuración> Correo electrónico> Cuenta de correo electrónico apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Asignación +DocType: Google Contacts,Last Sync On,Última sincronización en apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},ganado por {0} a través de la regla automática {1} apps/frappe/frappe/config/website.py,Portal,Portal apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Gracias por su correo electrónico @@ -1597,7 +1623,6 @@ DocType: GSuite Settings,GSuite Settings,Configuraciones GSuite DocType: Integration Request,Remote,Remoto DocType: File,Thumbnail URL,URL en miniatura apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Descargar informe -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configuración> Usuario apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Personalizaciones para {0} exportadas a:
{1} DocType: GCalendar Account,Calendar Name,Nombre del calendario apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Su ID de inicio de sesión es @@ -1647,6 +1672,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Ir a apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,El campo de imagen debe ser un nombre de campo válido apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,Debes iniciar sesión para acceder a esta página. DocType: Assignment Rule,Example: {{ subject }},Ejemplo: {{sujeto}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,El nombre de campo {0} está restringido apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},No puede desactivar 'Sólo lectura' para el campo {0} DocType: Social Login Key,Enable Social Login,Habilitar inicio de sesión social DocType: Workflow,Rules defining transition of state in the workflow.,Reglas que definen la transición de estado en el flujo de trabajo. @@ -1667,10 +1693,10 @@ DocType: Website Settings,Route Redirects,Redirecciones de ruta apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Bandeja de entrada de email apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},restaurado {0} como {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Asignar documentos automáticamente a los usuarios +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Barra de Awesom abierta apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Plantillas de correo electrónico para consultas comunes. DocType: Letter Head,Letter Head Based On,Cabeza de carta basada en apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Por favor cierra esta ventana -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Pago Completo DocType: Contact,Designation,Designacion DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Etiquetas meta @@ -1709,6 +1735,7 @@ DocType: System Settings,Choose authentication method to be used by all users,El DocType: Error Snapshot,Parent Error Snapshot,Instantánea del error de los padres DocType: GCalendar Account,GCalendar Account,Cuenta GCalendar DocType: Language,Language Name,Nombre del lenguaje +DocType: Workflow Document State,Workflow Action is not created for optional states,La acción de flujo de trabajo no se crea para estados opcionales DocType: Customize Form,Customize Form,Formulario personalizado DocType: DocType,Image Field,Campo de imagen apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Añadido {0} ({1}) @@ -1750,6 +1777,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,Aplica esta regla si el usuario es el propietario. DocType: About Us Settings,Org History Heading,Encabezado de historia org apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Error del Servidor +DocType: Contact,Google Contacts Description,Google Contacts Description apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Los roles estándar no pueden ser renombrados DocType: Review Level,Review Points,Puntos de revisión apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Falta el parámetro Kanban Board Name @@ -1767,7 +1795,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,¡No en modo desarrollador! Establézcalo en site_config.json o haga DocType 'Personalizado'. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,ganó {0} puntos DocType: Web Form,Success Message,Mensaje de éxito -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Para comparación, utilice> 5, <10 o = 324. Para rangos, use 5:10 (para valores entre 5 y 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Descripción para la página de listado, en texto plano, solo un par de líneas. (máximo 140 caracteres)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Mostrar permisos DocType: DocType,Restrict To Domain,Restringir al dominio @@ -1789,6 +1816,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,No los apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Establecer cantidad DocType: Auto Repeat,End Date,Fecha final DocType: Workflow Transition,Next State,Siguiente estado +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} contactos de Google sincronizados. DocType: System Settings,Is First Startup,Es el primer inicio apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},actualizado a {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Mover a @@ -1838,6 +1866,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} calendario apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Plantilla de importación de datos DocType: Workflow State,hand-left,mano izquierda +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Seleccione varios elementos de la lista apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Tamaño de copia de seguridad: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Vinculado con {0} DocType: Braintree Settings,Private Key,Llave privada @@ -1880,13 +1909,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Interesar DocType: Bulk Update,Limit,Límite DocType: Print Settings,Print taxes with zero amount,Imprimir impuestos con cantidad cero -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,La cuenta de correo electrónico no está configurada. Cree una nueva cuenta de correo electrónico desde Configuración> Correo electrónico> Cuenta de correo electrónico DocType: Workflow State,Book,Libro DocType: S3 Backup Settings,Access Key ID,ID de clave de acceso DocType: Chat Message,URLs,URLs apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Los nombres y apellidos por sí mismos son fáciles de adivinar. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Informe {0} DocType: About Us Settings,Team Members Heading,Miembros del equipo encabezando +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Seleccione el elemento de la lista apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},El documento {0} se ha establecido en el estado {1} por {2} DocType: Address Template,Address Template,Plantilla de dirección DocType: Workflow State,step-backward,paso atrás @@ -1910,6 +1939,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Exportar permisos personalizados apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Ninguno: Fin del flujo de trabajo DocType: Version,Version,Versión +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Elemento de lista abierta apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 meses DocType: Chat Message,Group,Grupo apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Hay algún problema con la url del archivo: {0} @@ -1965,6 +1995,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 año apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} revertió tus puntos en {1} DocType: Workflow State,arrow-down,flecha hacia abajo DocType: Data Import,Ignore encoding errors,Ignorar los errores de codificación +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Paisaje DocType: Letter Head,Letter Head Name,Nombre del encabezado de la letra DocType: Web Form,Client Script,Guión del cliente DocType: Assignment Rule,Higher priority rule will be applied first,La regla de prioridad más alta se aplicará primero @@ -2009,6 +2040,7 @@ DocType: Kanban Board Column,Green,Verde apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Sólo los campos obligatorios son necesarios para los nuevos registros. Puede eliminar columnas no obligatorias si lo desea. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} debe comenzar y terminar con una letra y solo puede contener letras, guiones o guiones bajos." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Disparar la acción primaria apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Crear correo electrónico del usuario apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,El campo de clasificación {0} debe ser un nombre de campo válido DocType: Auto Email Report,Filter Meta,Filtro meta @@ -2038,6 +2070,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Campo de la línea de tiempo apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Cargando... DocType: Auto Email Report,Half Yearly,Medio año +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Mi perfil apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Última fecha de modificación DocType: Contact,First Name,Nombre de pila DocType: Post,Comments,Comentarios @@ -2060,6 +2093,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Contenido hash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Mensajes de {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} asignado {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,No hay nuevos contactos de Google sincronizados. DocType: Workflow State,globe,globo apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Promedio de {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Borrar registros de errores @@ -2086,6 +2120,8 @@ DocType: Workflow State,Inverse,Inverso DocType: Activity Log,Closed,Cerrado DocType: Report,Query,Consulta DocType: Notification,Days After,Dias despues +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Accesos directos de página +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Retrato apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Tiempo de espera agotado DocType: System Settings,Email Footer Address,Dirección de pie de página de correo electrónico apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Actualización del punto de energía @@ -2113,6 +2149,7 @@ For Select, enter list of Options, each on a new line.","Para enlaces, ingrese e apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,Hace 1 minuto apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Sesiones no activas apps/frappe/frappe/model/base_document.py,Row,Fila +DocType: Contact,Middle Name,Segundo nombre apps/frappe/frappe/public/js/frappe/request.js,Please try again,Inténtalo de nuevo DocType: Dashboard Chart,Chart Options,Opciones de gráfico DocType: Data Migration Run,Push Failed,Push Failed @@ -2141,6 +2178,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,redimensionar-pequeño DocType: Comment,Relinked,Relinked DocType: Role Permission for Page and Report,Roles HTML,Roles HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Ir apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,El flujo de trabajo se iniciará después de guardar. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Si sus datos están en HTML, copie y pegue el código HTML exacto con las etiquetas." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Las fechas son a menudo fáciles de adivinar. @@ -2169,7 +2207,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Icono de escritorio apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,cancelado este documento apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Rango de fechas -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuración> Permisos de usuario apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} apreciado {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Valores cambiados apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Error en la notificación @@ -2233,6 +2270,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Eliminar a granel DocType: DocShare,Document Name,nombre del documento apps/frappe/frappe/config/customization.py,Add your own translations,Añade tus propias traducciones +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Navegar hacia abajo DocType: S3 Backup Settings,eu-central-1,eu-central-1 DocType: Auto Repeat,Yearly,Anual apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Rebautizar @@ -2283,6 +2321,7 @@ DocType: Workflow State,plane,avión apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,"Error de conjunto anidado. Por favor, póngase en contacto con el administrador." apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Mostrar reporte DocType: Auto Repeat,Auto Repeat Schedule,Programación de repetición automática +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Ver Ref DocType: Address,Office,Oficina DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,Hace {0} días @@ -2316,7 +2355,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Va apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Mi configuración apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,El nombre del grupo no puede estar vacío. DocType: Workflow State,road,la carretera -DocType: Website Route Redirect,Source,Fuente +DocType: Contact,Source,Fuente apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Sesiones activas apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Solo puede haber un Fold en una forma apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Nueva conversación @@ -2338,6 +2377,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,"Por favor, introduzca la URL de autorización" DocType: Email Account,Send Notification to,Enviar notificación a apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Configuración de copia de seguridad de Dropbox +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,Algo salió mal durante la generación de fichas. Haga clic en {0} para generar uno nuevo. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,¿Deseas eliminar todas las personalizaciones? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Solo el administrador puede editar DocType: Auto Repeat,Reference Document,Documento de referencia @@ -2362,6 +2402,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Los roles se pueden establecer para los usuarios desde su página de usuario. DocType: Website Settings,Include Search in Top Bar,Incluir búsqueda en la barra superior apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Urgente] Error al crear% s recurrente para% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Atajos globales DocType: Help Article,Author,Autor DocType: Webhook,on_cancel,en_cancelar apps/frappe/frappe/client.py,No document found for given filters,Ningún documento encontrado para filtros dados @@ -2397,10 +2438,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, Fila {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Si está cargando nuevos registros, la "Serie de nombres" se convierte en obligatoria, si está presente." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Editar propiedades -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,No se puede abrir la instancia cuando su {0} está abierto +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,No se puede abrir la instancia cuando su {0} está abierto DocType: Activity Log,Timeline Name,Nombre de la línea de tiempo DocType: Comment,Workflow,Flujo de trabajo apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Configure la URL base en la clave de inicio de sesión social para Frappe +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Atajos de teclado DocType: Portal Settings,Custom Menu Items,Elementos de menú personalizados apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,La longitud de {0} debe estar entre 1 y 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Conexión perdida. Algunas características podrían no funcionar. @@ -2463,6 +2505,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Filas Agreg DocType: DocType,Setup,Preparar apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} creado con éxito apps/frappe/frappe/www/update-password.html,New Password,Nueva contraseña +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Seleccionar campo apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Deja esta conversacion DocType: About Us Settings,Team Members,Miembros del equipo DocType: Blog Settings,Writers Introduction,Introducción Escritores @@ -2532,13 +2575,12 @@ DocType: Chat Room,Name,Nombre DocType: Communication,Email Template,Plantilla de correo electrónico DocType: Energy Point Settings,Review Levels,Niveles de Revisión DocType: Print Format,Raw Printing,Impresión en bruto -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,No se puede abrir {0} cuando su instancia está abierta +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,No se puede abrir {0} cuando su instancia está abierta DocType: DocType,"Make ""name"" searchable in Global Search",Hacer que "nombre" se pueda buscar en la búsqueda global DocType: Data Migration Mapping,Data Migration Mapping,Mapeo de migración de datos DocType: Data Import,Partially Successful,Parcialmente exitoso DocType: Communication,Error,Error apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},El tipo de campo no se puede cambiar de {0} a {1} en la fila {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Error al conectar con la aplicación de la bandeja QZ ...

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

Haga clic aquí para descargar e instalar QZ Tray .
Haga clic aquí para obtener más información sobre la impresión sin formato ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Tomar foto apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,Evite los años que están asociados con usted. DocType: Web Form,Allow Incomplete Forms,Permitir formularios incompletos @@ -2634,7 +2676,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Seleccione target = "_blank" para abrir en una nueva página. DocType: Portal Settings,Portal Menu,Menú del portal DocType: Website Settings,Landing Page,Página de destino -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,Por favor regístrese o inicie sesión para comenzar DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opciones de contacto, como "Consulta de ventas, Consulta de soporte", etc., cada una en una nueva línea o separadas por comas." apps/frappe/frappe/twofactor.py,Verfication Code,Código de verificación apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} ya no está suscrito @@ -2720,6 +2761,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Mapeo del plan DocType: Address,Sales User,Usuario de ventas apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Cambiar las propiedades del campo (ocultar, solo lectura, permiso, etc.)" DocType: Property Setter,Field Name,Nombre del campo +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Cliente DocType: Print Settings,Font Size,Tamaño de fuente DocType: User,Last Password Reset Date,Última fecha de restablecimiento de contraseña DocType: System Settings,Date and Number Format,Formato de fecha y número @@ -2785,6 +2827,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Nodo de grupo apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Fusionarse con los existentes DocType: Blog Post,Blog Intro,Blog Intro apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nueva mención +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Saltar al campo DocType: Prepared Report,Report Name,Reportar nombre apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Por favor, actualice para obtener el último documento." apps/frappe/frappe/core/doctype/communication/communication.js,Close,Cerrar @@ -2794,10 +2837,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Evento DocType: Social Login Key,Access Token URL,URL de token de acceso apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,"Por favor, establezca las claves de acceso de Dropbox en la configuración de su sitio" +DocType: Google Contacts,Google Contacts,Contactos de google DocType: User,Reset Password Key,Restablecer contraseña clave apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Modificado por DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.","Para renovar, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Guardado exitosamente +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Envía un correo electrónico a {0} para vincularlo aquí. DocType: File,Folder,Carpeta DocType: DocField,Perm Level,Nivel de Perm DocType: Print Settings,Page Settings,Configuración de página @@ -2827,6 +2873,7 @@ DocType: Workflow State,remove-sign,quitar-firmar DocType: Dashboard Chart,Full,Completo DocType: DocType,User Cannot Create,El usuario no puede crear apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Ganaste {0} punto +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configuración> Usuario DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Si configura esto, este elemento aparecerá en un menú desplegable debajo del elemento primario seleccionado." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,No hay correos electrónicos apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Faltan los siguientes campos: @@ -2840,13 +2887,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Mos DocType: Web Form,Web Form Fields,Campos de formulario web DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Formulario editable por el usuario en el sitio web. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,¿Cancelar permanentemente {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,¿Cancelar permanentemente {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Opcion 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,Totales apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Esta es una contraseña muy común. DocType: Personal Data Deletion Request,Pending Approval,Aprobación pendiente apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,El documento no pudo ser asignado correctamente apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},No permitido para {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,No hay valores para mostrar DocType: Personal Data Download Request,Personal Data Download Request,Solicitud de descarga de datos personales apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} compartió este documento con {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Seleccione {0} @@ -2862,7 +2910,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Este correo electrónico se envió a {0} y se copió a {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,Clave o usuario inválido DocType: Social Login Key,Social Login Key,Clave de inicio de sesión social -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Configure la cuenta de correo electrónico predeterminada desde Configuración> Correo electrónico> Cuenta de correo electrónico apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filtros guardados DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","¿Cómo se debe formatear esta moneda? Si no está configurado, utilizará los valores predeterminados del sistema" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} se establece en estado {2} @@ -2988,6 +3035,7 @@ DocType: User,Location,Ubicación apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Sin datos DocType: Website Meta Tag,Website Meta Tag,Etiqueta meta del sitio web DocType: Workflow State,film,película +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Copiado al portapapeles. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Configuraciones no encontradas apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,La etiqueta es obligatoria DocType: Webhook,Webhook Headers,Encabezados de webhook @@ -3196,7 +3244,7 @@ DocType: Address,Address Line 1,Dirección Línea 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Para el tipo de documento apps/frappe/frappe/model/base_document.py,Data missing in table,Datos faltantes en la tabla apps/frappe/frappe/utils/bot.py,Could not identify {0},No se pudo identificar {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Este formulario ha sido modificado después de que lo hayas cargado. +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Este formulario ha sido modificado después de que lo hayas cargado. apps/frappe/frappe/www/login.html,Back to Login,Atrás para iniciar sesión apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,No establecido DocType: Data Migration Mapping,Pull,Halar @@ -3264,6 +3312,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Mapeo de la tabla del apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,"Configuración de la cuenta de correo electrónico, ingrese su contraseña para:" apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Demasiados escrituras en una solicitud. Por favor envíe solicitudes más pequeñas DocType: Social Login Key,Salesforce,Fuerza de ventas +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importando {0} de {1} DocType: User,Tile,Azulejo apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} sala debe tener más de un usuario. DocType: Email Rule,Is Spam,Es el spam @@ -3301,7 +3350,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,carpeta cerrada DocType: Data Migration Run,Pull Update,Pull Update apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},fusionado {0} en {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

No se encontraron resultados para '

DocType: SMS Settings,Enter url parameter for receiver nos,Ingrese el parámetro url para el receptor nos apps/frappe/frappe/utils/jinja.py,Syntax error in template,Error de sintaxis en la plantilla apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,"Por favor, establezca el valor de los filtros en la tabla Filtro de informes" @@ -3314,6 +3362,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Lo sentimos DocType: System Settings,In Days,En días DocType: Report,Add Total Row,Añadir fila total apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Inicio de sesión fallido +DocType: Translation,Verified,Verificado DocType: Print Format,Custom HTML Help,Ayuda HTML personalizada DocType: Address,Preferred Billing Address,Dirección de facturación preferida apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Asignado a @@ -3328,7 +3377,6 @@ DocType: Help Article,Intermediate,Intermedio DocType: Module Def,Module Name,Nombre del módulo DocType: OAuth Authorization Code,Expiration time,Tiempo de expiración apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Establecer formato predeterminado, tamaño de página, estilo de impresión, etc." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,No te puede gustar algo que creaste DocType: System Settings,Session Expiry,Expiración de la sesión DocType: DocType,Auto Name,Nombre automático apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Seleccionar adjuntos @@ -3356,6 +3404,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Página del sistema DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Nota: Por defecto se envían correos electrónicos para copias de seguridad fallidas. DocType: Custom DocPerm,Custom DocPerm,DocPerm personalizado +DocType: Translation,PR sent,PR enviado DocType: Tag Doc Category,Doctype to Assign Tags,Doctype para asignar etiquetas DocType: Address,Warehouse,Almacén apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Configuración de Dropbox @@ -3423,7 +3472,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Enter para añadir comentario apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,El campo {0} no es seleccionable. DocType: User,Birth Date,Fecha de nacimiento -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Con sangría de grupo DocType: List View Setting,Disable Count,Deshabilitar recuento DocType: Contact Us Settings,Email ID,Identificación de correo apps/frappe/frappe/utils/password.py,Incorrect User or Password,Usuario o contraseña incorrectos @@ -3458,6 +3506,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Esta función actualiza los permisos de usuario para un usuario. DocType: Website Theme,Theme,Tema DocType: Web Form,Show Sidebar,Mostrar barra lateral +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Integración de contactos de Google. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Bandeja de entrada predeterminada apps/frappe/frappe/www/login.py,Invalid Login Token,Token de inicio de sesión no válido apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Primero establece el nombre y guarda el registro. @@ -3485,7 +3534,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Por favor corrija el DocType: Top Bar Item,Top Bar Item,Elemento de barra superior ,Role Permissions Manager,Administrador de permisos de roles -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,Hubo errores. Por favor informe de esto. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> Hace {0} año (s) apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Hembra DocType: System Settings,OTP Issuer Name,Nombre del Emisor OTP apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Añadir a hacer @@ -3585,6 +3634,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Config apps/frappe/frappe/model/document.py,none of,ninguno de DocType: Desktop Icon,Page,Página DocType: Workflow State,plus-sign,Signo de más +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Borrar caché y recargar apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,No se puede actualizar: enlace incorrecto / caducado. DocType: Kanban Board Column,Yellow,Amarillo DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Número de columnas para un campo en una cuadrícula (el total de columnas en una cuadrícula debe ser inferior a 11) @@ -3599,6 +3649,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Nuev DocType: Activity Log,Date,Fecha DocType: Communication,Communication Type,Tipo de comunicación apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Tabla de Padres +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Navegar por la lista DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Mostrar error completo y permitir la notificación de problemas al desarrollador DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3620,7 +3671,6 @@ DocType: Notification Recipient,Email By Role,Correo electrónico por rol apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,Por favor actualice para agregar más de {0} suscriptores apps/frappe/frappe/email/queue.py,This email was sent to {0},Este correo electrónico fue enviado a {0} DocType: User,Represents a User in the system.,Representa a un usuario en el sistema. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Página {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Iniciar nuevo formato apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Añadir un comentario apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} de {1} diff --git a/frappe/translations/et.csv b/frappe/translations/et.csv index 3d63d7c734..e992206fba 100644 --- a/frappe/translations/et.csv +++ b/frappe/translations/et.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Luba gradiente DocType: DocType,Default Sort Order,Vaikimisi sortimisjärjestus apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Kuvatakse ainult numbri väljad aruandest +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,"Vajutage Alt klahvi, et käivitada täiendavad otseteed menüüs ja külgribal" DocType: Workflow State,folder-open,kausta avatud DocType: Customize Form,Is Table,Kas tabel apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Lisatud faili ei saa avada. Kas eksportisite seda CSV-na? DocType: DocField,No Copy,Kopeerimist pole DocType: Custom Field,Default Value,Vaikeväärtus apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Lisamine on kohustuslik sissetulevate kirjade puhul +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Kontaktide sünkroonimine DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Andmete migratsiooni kaardistamine apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Jäta vahele apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",PDF-i printimine "Raw Print" kaudu ei ole veel toetatud. Palun eemaldage printeri kaardistamine printeri seadetes ja proovige uuesti. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} ja {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Filtrite salvestamisel ilmnes viga apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Sisestage oma parool apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Kodu- ja manuste kaustu ei saa kustutada +DocType: Email Account,Enable Automatic Linking in Documents,Lubage dokumentides automaatne linkimine DocType: Contact Us Settings,Settings for Contact Us Page,Kontaktide seaded DocType: Social Login Key,Social Login Provider,Sotsiaalse sisselogimise pakkuja +DocType: Email Account,"For more information, click here.","Lisateabe saamiseks klõpsake siia ." DocType: Transaction Log,Previous Hash,Eelmine Hash DocType: Notification,Value Changed,Muutunud väärtus DocType: Report,Report Type,Aruande tüüp @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Energiapunkti reegel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,"Palun sisestage kliendi ID enne, kui sotsiaalne sisselogimine on lubatud" DocType: Communication,Has Attachment,Kas manus DocType: User,Email Signature,E-posti allkiri -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} aasta tagasi ,Addresses And Contacts,Aadressid ja kontaktid apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,See Kanbani juhatus on eraõiguslik DocType: Data Migration Run,Current Mapping,Praegune kaardistamine @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Valite sünkroonimissuvandi ALL kui see, see sünkroonib kõik lugemata ja lugemata sõnumid serverist. See võib põhjustada ka kommunikatsiooni (e-kirjade) dubleerimist." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Viimati sünkroonitud {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Päise sisu ei saa muuta +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Ei leitud tulemusi

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Pärast esitamist ei tohi {0} muuta apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Rakendus on uuendatud uuele versioonile, palun värskendage seda lehte" DocType: User,User Image,Kasutaja pilt @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Märg apps/frappe/frappe/public/js/frappe/chat.js,Discard,Visake ära DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Parima tulemuse saamiseks valige läbipaistva taustaga pilt umbes 150 laiusega. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,Uuendatud +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Valitud {0} väärtused DocType: Blog Post,Email Sent,E-mail saadetud DocType: Communication,Read by Recipient On,Loe saaja poolt DocType: User,Allow user to login only after this hour (0-24),Luba kasutajal sisse logida alles pärast seda tundi (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Ekspordi moodul DocType: DocType,Fields,Väljad -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Teil ei ole lubatud seda dokumenti printida +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Teil ei ole lubatud seda dokumenti printida apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Vanem apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Teie seanss on aegunud, palun jätkake uuesti sisselogimisel." DocType: Assignment Rule,Priority,Prioriteet @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Lähtesta OTP sala DocType: DocType,UPPER CASE,ÜLEMINE apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,Palun määrake e-posti aadress DocType: Communication,Marked As Spam,Tähistatud rämpspostina +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"E-posti aadress, mille Google'i kontaktid sünkroonitakse." apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Importige abonente apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Salvesta filter DocType: Address,Preferred Shipping Address,Eelistatud kohaletoimetamise aadress DocType: GCalendar Account,The name that will appear in Google Calendar,Google'i kalendris kuvatav nimi +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Värskenduskoodi genereerimiseks klõpsake {0}. DocType: Email Account,Disable SMTP server authentication,Keela SMTP-serveri autentimine DocType: Email Account,Total number of emails to sync in initial sync process ,Sünkroniseeritavate e-kirjade koguarv esialgses sünkroonimisprotsessis DocType: System Settings,Enable Password Policy,Luba paroolipoliitika @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Sisesta kood apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Mitte sisse DocType: Auto Repeat,Start Date,Algus kuupäev apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Set Chart +DocType: Website Theme,Theme JSON,Teema JSON apps/frappe/frappe/www/list.py,My Account,Minu konto DocType: DocType,Is Published Field,Kas avaldatud väli DocType: DocField,Set non-standard precision for a Float or Currency field,Määrake ujuva või valuuta väljale mittestandardne täpsus @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: lisage Reference: {{ reference_doctype }} {{ reference_name }} dokumendi saatmiseks DocType: LDAP Settings,LDAP First Name Field,LDAP esimese nime väli apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Vaikimisi saatmine ja sisendkast -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Seadistamine> Kohanda vormi apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",Värskendamiseks saate värskendada ainult valikulisi veerge. apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',Väljal „Check” („Kontrolli“) peab vaikeväärtus olema kas '0' või '1' apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Jagage seda dokumenti koos @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Domeenid HTML DocType: Blog Settings,Blog Settings,Blogi seaded apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DocType'i nimi peaks algama kirjaga ja see võib koosneda ainult tähtedest, numbritest, tühikutest ja allajoonist" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Seadistamine> Kasutaja õigused DocType: Communication,Integrations can use this field to set email delivery status,Integratsioonid võivad seda välja kasutada e-posti saatmise staatuse määramiseks apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Stripe makse lüüsi seaded DocType: Print Settings,Fonts,Fondid DocType: Notification,Channel,Kanal DocType: Communication,Opened,Avatud DocType: Workflow Transition,Conditions,Tingimused +apps/frappe/frappe/config/website.py,A user who posts blogs.,"Kasutaja, kes postitab blogisid." apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Kas teil pole kontot? Registreeri apps/frappe/frappe/utils/file_manager.py,Added {0},Lisatud {0} DocType: Newsletter,Create and Send Newsletters,Teabelehtede loomine ja saatmine DocType: Website Settings,Footer Items,Alamrubriigid +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Palun seadistage e-posti vaikekonto seadistusest> E-post> E-posti konto DocType: Website Slideshow Item,Website Slideshow Item,Veebisaidi slaidiseansi üksus apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registreerige OAuth Client App DocType: Error Snapshot,Frames,Raamid @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Tase 0 on dokumenditaseme lubade puhul, kõrgemal tasemel \ t" DocType: Address,City/Town,Linn / linn DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","See lähtestab teie praeguse teema, kas olete kindel, et soovite jätkata?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Kohustuslikud väljad on kohustuslikud {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Viga e-posti kontoga ühendamisel {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Korduva ilmumise ajal ilmnes viga @@ -528,7 +537,7 @@ DocType: Event,Event Category,Sündmuste kategooria apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Veergud põhinevad apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Redigeeri pealkirja DocType: Communication,Received,Saadud -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Teil ei ole lubatud sellele lehele juurde pääseda. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Teil ei ole lubatud sellele lehele juurde pääseda. DocType: User Social Login,User Social Login,Kasutaja sotsiaalne sisselogimine apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,"Kirjutage samasse kausta Pythoni fail, kuhu see on salvestatud, ja tagastage veerg ja tulemus." DocType: Contact,Purchase Manager,Ostujuht @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Diag apps/frappe/frappe/utils/data.py,Operator must be one of {0},Operaator peab olema üks {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Kui omanik DocType: Data Migration Run,Trigger Name,Trigeri nimi -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Kirjutage oma blogisse pealkirjad ja tutvustused. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Eemalda väli apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Ahenda kõik apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Taustavärv @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,Baar DocType: SMS Settings,Enter url parameter for message,Sisestage sõnumi url parameeter apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Uus kohandatud prindivorming apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} on juba olemas +DocType: Workflow Document State,Is Optional State,Kas valikuline riik DocType: Address,Purchase User,Ostu kasutaja DocType: Data Migration Run,Insert,Lisa DocType: Web Form,Route to Success Link,Marsruut Edu lingile @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Kasutaj DocType: File,Is Home Folder,Kas kodu kaust apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Tüüp: DocType: Post,Is Pinned,On kinnitatud -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},'{0}' {1} luba puudub +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},'{0}' {1} luba puudub DocType: Patch Log,Patch Log,Patch Log DocType: Print Format,Print Format Builder,Prindivormingu ehitaja 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","Kui see on lubatud, saavad kõik kasutajad sisse logida mis tahes IP-aadressilt, kasutades kahte tegurit. Seda saab määrata ka ainult teatud kasutaja (te) le kasutajale" apps/frappe/frappe/utils/data.py,only.,ainult. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,Tingimus „{0}” on kehtetu DocType: Auto Email Report,Day of Week,Nädalapäev +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Luba Google API Google'i seadetes. DocType: DocField,Text Editor,Tekstiredaktor apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Lõika apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Otsi või tippige käsk @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,DB varukoopiate arv ei tohi olla väiksem kui 1 DocType: Workflow State,ban-circle,keele ring DocType: Data Export,Excel,Excel +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Header, Breadcrumbs ja Meta Tags" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,"Tugi e-posti aadress, mida pole määratud" DocType: Comment,Published,Avaldatud DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.",Märkus: Parimate tulemuste saavutamiseks peavad pildid olema sama suurusega ja laiused olema kõrgemad kui kõrgus. @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Scheduler Last Event apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Kõigi dokumentide aktsiate aruanne DocType: Website Sidebar Item,Website Sidebar Item,Veebilehe külgriba element apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Tegema +DocType: Google Settings,Google Settings,Google'i seaded apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Valige oma riik, ajavöönd ja valuuta" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Sisestage siin staatilised URL-i parameetrid (nt saatja = ERPNext, kasutajanimi = ERPNext, parool = 1234 jne)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,E-posti kontot pole @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth kandja märgis ,Setup Wizard,Häälestusviisard apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Diagrammi vahetamine +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,Sünkroonimine DocType: Data Migration Run,Current Mapping Action,Praegune kaardistamise toiming DocType: Email Account,Initial Sync Count,Esialgne sünkroniseerimise arv apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Kontaktide seaded. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Trükivormingu tüüp apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Selle kriteeriumi jaoks pole lubatud õigused. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Laienda kõik +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Vaikeväärtust ei leitud. Looge uus seadistus menüüst Seadistamine> Trükkimine ja brändimine> Aadressimall. DocType: Tag Doc Category,Tag Doc Category,Tag Doc kategooria DocType: Data Import,Generated File,Genereeritud fail apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Märkused @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Ajaskaala väli peab olema link või dünaamiline link DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Sellest väljuvast serverist saadetakse teated ja masspostid. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,See on top-100 ühine parool. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Esita püsivalt {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Esita püsivalt {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} ei ole olemas, valige uus eesmärk, mida ühendada" DocType: Energy Point Rule,Multiplier Field,Mitmekordne väli DocType: Workflow,Workflow State Field,Töövoo olekuvälja @@ -880,6 +894,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} hindas teie tööd {1} {2} punktiga DocType: Auto Email Report,Zero means send records updated at anytime,Null tähendab mis tahes ajal ajakohastatud dokumentide saatmist apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Väärtust {0} ei saa muuta +apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API seaded. DocType: System Settings,Force User to Reset Password,Sunnita kasutaja lähtestama parooli apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Aruande koostamise aruandeid haldab otse aruande koostaja. Pole midagi teha. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Muuda filtrit @@ -933,7 +948,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,Selle DocType: S3 Backup Settings,eu-north-1,eu-north-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: ainult üks reegel on lubatud sama rolliga, tasemega ja {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Teil ei ole lubatud seda veebivormi dokumenti uuendada -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Selle rekordi maksimaalne manusepiirang saavutati. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Selle rekordi maksimaalne manusepiirang saavutati. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,"Veenduge, et viitedokumentide dokumendid ei ole ringkirjaga seotud." DocType: DocField,Allow in Quick Entry,Luba kiirel sisenemisel DocType: Error Snapshot,Locals,Kohalikud @@ -965,7 +980,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Erandi tüüp apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},"Ei saa kustutada ega tühistada, sest {0} {1} on seotud {2} {3} {4}" apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTP saladust saab administraator ainult lähtestada. -DocType: Web Form Field,Page Break,Page Break DocType: Website Script,Website Script,Veebisaidi skript DocType: Integration Request,Subscription Notification,Tellimuse teatamine DocType: DocType,Quick Entry,Kiire sisestamine @@ -982,6 +996,7 @@ DocType: Notification,Set Property After Alert,Määra vara pärast hoiatust apps/frappe/frappe/__init__.py,Thank you,Aitäh apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Lülita veebikangid sisemise integreerimise jaoks apps/frappe/frappe/config/settings.py,Import Data,Andmete importimine +DocType: Translation,Contributed Translation Doctype Name,Toetatud tõlge Doctype'i nimi DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID DocType: Review Level,Review Level,Ülevaatuse tase @@ -1000,7 +1015,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Edukalt tehtud apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Nimekiri apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Hinda -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Uus {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Kas esmane kontakt DocType: Print Format,Raw Commands,Toores käsk apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Trükivormide stiilid @@ -1041,6 +1055,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Vead taustaprogram apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Leidke {0} {1} DocType: Email Account,Use SSL,Kasutage SSL-i DocType: DocField,In Standard Filter,Standardfiltris +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Sünkroonimiseks pole Google'i kontaktandmeid. DocType: Data Migration Run,Total Pages,Lehte kokku apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,"{0}: väljal '{1}' ei saa olla ainulaadne, kuna sellel on mitte-unikaalsed väärtused" DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Kui see on lubatud, teavitatakse kasutajaid iga kord, kui nad sisse logivad. Kui see pole lubatud, teavitatakse kasutajaid ainult üks kord." @@ -1061,7 +1076,7 @@ DocType: Assignment Rule,Automation,Automaatika apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Failide lahtivõtmine ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Otsi '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Midagi läks valesti -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Palun salvestage enne kinnitamist. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,Palun salvestage enne kinnitamist. DocType: Version,Table HTML,Tabeli HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,sõlmpunkt DocType: Page,Standard,Standard @@ -1139,12 +1154,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Tulemused p apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} kirjed kustutatud apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,Dropboxi pääsukoodi loomisel läks midagi valesti. Täpsema teabe saamiseks kontrollige vea logi. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Järglased -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Vaikeväärtust ei leitud. Looge uus seadistus menüüst Seadistamine> Trükkimine ja brändimine> Aadressimall. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google'i kontaktid on konfigureeritud. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Detaile varjama apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Kirjatüübid apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Teie tellimus aegub {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Autentimine e-posti e-posti konto {0} e-kirjade vastuvõtmisel ebaõnnestus. Sõnum serverist: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),"Statistika, mis põhineb eelmise nädala tulemusel ({0} kuni {1})" +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,"Automaatne sidumine saab aktiveerida ainult siis, kui sissetulev on lubatud." DocType: Website Settings,Title Prefix,Pealkirja prefiks apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,"Autentimise rakendused, mida saate kasutada, on järgmised:" DocType: Bulk Update,Max 500 records at a time,Maksimaalselt 500 kirjet korraga @@ -1177,7 +1193,7 @@ DocType: Auto Email Report,Report Filters,Teata filtritest apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Valige veerud DocType: Event,Participants,Osalejad DocType: Auto Repeat,Amended From,Muudetud -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Teie andmed on esitatud +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Teie andmed on esitatud DocType: Help Category,Help Category,Abikategooria apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 kuu apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,"Valige olemasolev formaat, et redigeerida või alustada uut vormingut." @@ -1224,7 +1240,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Põllu jälgimine DocType: User,Generate Keys,Loo võtmed DocType: Comment,Unshared,Jagamata -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Salvestatud +DocType: Translation,Saved,Salvestatud DocType: OAuth Client,OAuth Client,OAuth Client DocType: System Settings,Disable Standard Email Footer,Keela standardne e-posti jalus apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Print Format {0} on keelatud @@ -1255,6 +1271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Viimati uuend DocType: Data Import,Action,Meede apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Kliendi võti on vajalik DocType: Chat Profile,Notifications,Teated +DocType: Translation,Contributed,Toetatud DocType: System Settings,mm/dd/yyyy,mm / pp / aaaa DocType: Report,Custom Report,Kohandatud aruanne DocType: Workflow State,info-sign,info-märk @@ -1271,6 +1288,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Kontakt DocType: LDAP Settings,LDAP Username Field,LDAP-i kasutajanimi apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} välja ei saa {1} -is ainulaadseks seada, sest olemasolevaid väärtusi pole unikaalne" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Seadistamine> Kohanda vormi DocType: User,Social Logins,Sotsiaalsed sisselogimised DocType: Workflow State,Trash,Prügikast DocType: Stripe Settings,Secret Key,Salajane võti @@ -1328,6 +1346,7 @@ DocType: DocType,Title Field,Pealkirja väli apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Väljuva e-posti serveriga ühendust ei saanud DocType: File,File URL,Faili URL DocType: Help Article,Likes,Meeldib +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google'i kontaktid Integratsioon on keelatud. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Peate olema sisse logitud ja süsteemihalduri rollil olema varukoopiatele juurdepääs. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Esimene tase DocType: Blogger,Short Name,Lühike nimi @@ -1345,13 +1364,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Import Zip DocType: Contact,Gender,Sugu DocType: Workflow State,thumbs-down,pöidla alla -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Järjekord peaks olema üks {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Dokumendi tüübist {0} ei saa teatada apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Süsteemi halduri lisamine sellele kasutajale, kuna peab olema vähemalt üks süsteemihaldur" apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Tere tulemast e-posti aadress DocType: Transaction Log,Chaining Hash,Chash Hash DocType: Contact,Maintenance Manager,Hooldusjuht +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Võrdluseks kasutage> 5, <10 või = 324. Vahemike puhul kasutage 5:10 (väärtuste vahemikus 5 ja 10)." apps/frappe/frappe/utils/bot.py,show,näidata apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Jaga URL-i apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Toetamata failivorming @@ -1373,7 +1392,7 @@ DocType: Communication,Notification,Teavitamine DocType: Data Import,Show only errors,Näita ainult vigu DocType: Energy Point Log,Review,Ülevaade apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Rida eemaldatud -DocType: GSuite Settings,Google Credentials,Google'i volikirjad +DocType: Google Settings,Google Credentials,Google'i volikirjad apps/frappe/frappe/www/login.html,Or login with,Või logige sisse apps/frappe/frappe/model/document.py,Record does not exist,Salvestust ei eksisteeri apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Uus aruande nimi @@ -1398,6 +1417,7 @@ DocType: Desktop Icon,List,Nimekiri DocType: Workflow State,th-large,th-large apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,"{0}: Ei saa määrata Assign Submit, kui mitte Submittable" apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Ei ole seotud ühegi dokumendiga +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Viga QZ-salve rakenduse loomisel ...

Prindi printimise funktsiooni kasutamiseks peate installima ja töötama QZ-salve rakenduse.

QZ-salve allalaadimiseks ja installimiseks klõpsake siia .
Toorprintimise kohta lisateabe saamiseks klõpsake siia ." DocType: Chat Message,Content,Sisu DocType: Workflow Transition,Allow Self Approval,Luba ise heakskiit apps/frappe/frappe/www/qrcode.py,Page has expired!,Lehekülg on aegunud! @@ -1414,6 +1434,7 @@ DocType: Workflow State,hand-right,paremale DocType: Website Settings,Banner is above the Top Menu Bar.,Bänner on ülemise menüüriba kohal. apps/frappe/frappe/www/update-password.html,Invalid Password,vale parool apps/frappe/frappe/utils/data.py,1 month ago,1 kuu tagasi +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Luba Google'i kontaktide juurdepääs DocType: OAuth Client,App Client ID,Rakenduse kliendi ID DocType: DocField,Currency,Valuuta DocType: Website Settings,Banner,Bänner @@ -1425,7 +1446,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Eesmärk DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Kui rollil ei ole 0. tasemel juurdepääsu, siis kõrgemad tasemed on mõttetud." DocType: ToDo,Reference Type,Viite tüüp -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DocType, DocType lubamine. Ole ettevaatlik!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","DocType, DocType lubamine. Ole ettevaatlik!" DocType: Domain Settings,Domain Settings,Domeeni seaded DocType: Auto Email Report,Dynamic Report Filters,Dünaamilise aruande filtrid DocType: Energy Point Log,Appreciation,Hindamine @@ -1467,6 +1488,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,us-west-2 DocType: DocType,Is Single,On Single apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Loo uus formaat +DocType: Google Contacts,Authorize Google Contacts Access,Luba Google'i kontaktide juurdepääs DocType: S3 Backup Settings,Endpoint URL,Lõpp-punkti URL DocType: Social Login Key,Google,Google DocType: Contact,Department,Osakond @@ -1481,7 +1503,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Määrata DocType: List Filter,List Filter,Loendifilter DocType: Dashboard Chart Link,Chart,Diagramm apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Ei saa eemaldada -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Kinnitage see dokument +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Kinnitage see dokument apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} on juba olemas. Valige teine nimi apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Sul on selles vormis salvestamata muudatused. Palun salvestage enne jätkamist. apps/frappe/frappe/model/document.py,Action Failed,Toiming ebaõnnestus @@ -1563,6 +1585,7 @@ DocType: DocField,Display,Ekraan apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Vasta kõigile DocType: Calendar View,Subject Field,Teema väli apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Seansi aegumine peab olema vormingus {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},Rakendamine: {0} DocType: Workflow State,zoom-in,suurenda apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Serveriga ühenduse loomine ebaõnnestus apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Kuupäev {0} peab olema vormingus: {1} @@ -1574,8 +1597,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Nupule ilmub ikoon DocType: Role Permission for Page and Report,Set Role For,Määrake roll +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Automaatset linkimist saab aktiveerida ainult ühe e-posti konto puhul. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,E-posti kontosid pole määratud +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-posti konto ei ole seadistatud. Looge uus meilikonto seadistusest> E-post> E-posti konto apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Ülesanne +DocType: Google Contacts,Last Sync On,Viimane sünkroonimine apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},{0} abil saadud automaatne reegel {1} apps/frappe/frappe/config/website.py,Portal,Portaal apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Täname teid e-kirja eest @@ -1596,7 +1622,6 @@ DocType: GSuite Settings,GSuite Settings,GSuite seaded DocType: Integration Request,Remote,Kaugjuhtimispult DocType: File,Thumbnail URL,Pisipildi URL apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Lae aruanne -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Seadistamine> Kasutaja apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Kohandatud {0} eksportimisel:
{1} DocType: GCalendar Account,Calendar Name,Kalendri nimi apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Teie sisselogimise ID on @@ -1646,6 +1671,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Mine apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Pildi väli peab olema kehtiv väljanimi apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,Selle lehe avamiseks peate olema sisse logitud DocType: Assignment Rule,Example: {{ subject }},Näide: {{topic}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Väli nimi {0} on piiratud apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Väljal {0} ei saa "Read Only" tühistada DocType: Social Login Key,Enable Social Login,Luba sotsiaalne sisselogimine DocType: Workflow,Rules defining transition of state in the workflow.,Töörežiimi oleku ülemineku reeglid. @@ -1666,10 +1692,10 @@ DocType: Website Settings,Route Redirects,Marsruudi ümbersuunamised apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,E-posti postkast apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},{0} taastati {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Dokumentide automaatne määramine kasutajatele +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Avage Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,E-posti mallid tavaliste päringute jaoks. DocType: Letter Head,Letter Head Based On,Kiri pea põhineb apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Sulgege see aken -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Maksmine on lõpetatud DocType: Contact,Designation,Määramine DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Meta tags @@ -1708,6 +1734,7 @@ DocType: System Settings,Choose authentication method to be used by all users,Va DocType: Error Snapshot,Parent Error Snapshot,Parent Error Snapshot DocType: GCalendar Account,GCalendar Account,GCalendar konto DocType: Language,Language Name,Keele nimi +DocType: Workflow Document State,Workflow Action is not created for optional states,Töövoo toiming ei ole valikuliste riikide jaoks loodud DocType: Customize Form,Customize Form,Kohanda vormi DocType: DocType,Image Field,Pildi väli apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Lisatud {0} ({1}) @@ -1749,6 +1776,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Rakenda see reegel, kui kasutaja on omanik" DocType: About Us Settings,Org History Heading,Org ajaloo pealkiri apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Serveri viga +DocType: Contact,Google Contacts Description,Google'i kontaktide kirjeldus apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Standardseid rolle ei saa ümber nimetada DocType: Review Level,Review Points,Kontrollpunktid apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Puudub parameeter Kanban Board Name @@ -1766,7 +1794,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Mitte arendaja režiimis! Seadistage saidi_keskkonnas.json või tehke „Kohandatud” DocType. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,saavutas {0} punkti DocType: Web Form,Success Message,Edukuse teade -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Võrdluseks kasutage> 5, <10 või = 324. Vahemike puhul kasutage 5:10 (väärtuste vahemikus 5 ja 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Kirjeldus lehekülje lisamiseks lihttekstina, vaid paar rida. (maksimaalselt 140 tähemärki)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Näita õigusi DocType: DocType,Restrict To Domain,Piirake domeeni @@ -1788,6 +1815,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Mitte apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Määra kogus DocType: Auto Repeat,End Date,Lõppkuupäev DocType: Workflow Transition,Next State,Järgmine riik +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Google'i kontaktid sünkrooniti. DocType: System Settings,Is First Startup,Kas esimene käivitamine apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},uuendatud {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Kolima @@ -1837,6 +1865,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Kalender apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Andmete importimise mall DocType: Workflow State,hand-left,vasakule +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Valige mitu loendit apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Varukoopia suurus: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Seotud {0} DocType: Braintree Settings,Private Key,Privaatne võti @@ -1879,13 +1908,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Huvi DocType: Bulk Update,Limit,Piir DocType: Print Settings,Print taxes with zero amount,Prindi maksud nulliga -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-posti konto ei ole seadistatud. Looge uus meilikonto seadistusest> E-post> E-posti konto DocType: Workflow State,Book,Raamat DocType: S3 Backup Settings,Access Key ID,Juurdepääsukoodi ID DocType: Chat Message,URLs,URL-id apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Nimed ja perekonnanimed on kergesti ära arvatavad. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Teavitage {0} DocType: About Us Settings,Team Members Heading,Meeskonna liikmed +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Valige loendiüksus apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},{2} dokumendi {0} seadistus on {2} DocType: Address Template,Address Template,Aadressi mall DocType: Workflow State,step-backward,samm-tagasi @@ -1909,6 +1938,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Ekspordi kohandatud load apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Puudub: töövoo lõpp DocType: Version,Version,Versioon +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Ava kirje apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 kuud DocType: Chat Message,Group,Grupp apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Faili URL-iga on probleem: {0} @@ -1964,6 +1994,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 aasta apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} tagastas teie punktid {1} DocType: Workflow State,arrow-down,nool alla DocType: Data Import,Ignore encoding errors,Ignoreerige kodeerimisvead +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Maastik DocType: Letter Head,Letter Head Name,Kiri pea nimi DocType: Web Form,Client Script,Kliendi skript DocType: Assignment Rule,Higher priority rule will be applied first,Kõigepealt rakendatakse kõrgemat prioriteedireeglit @@ -2008,6 +2039,7 @@ DocType: Kanban Board Column,Green,Roheline apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Uute kirjete jaoks on vajalikud ainult kohustuslikud väljad. Soovi korral saate kustutada mittekohustuslikke veerge. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} peab algama ja lõppema kirjaga ning sisaldama ainult tähti, sidekriipsu või allajoonit." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Esmase tegevuse käivitamine apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Loo kasutaja e-post apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Sortimisväljal {0} peab olema kehtiv väli DocType: Auto Email Report,Filter Meta,Filtreeri meta @@ -2037,6 +2069,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Ajaskaala väli apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Laadimine ... DocType: Auto Email Report,Half Yearly,Pool aastat +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Minu profiil apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Viimati muudetud kuupäev DocType: Contact,First Name,Eesnimi DocType: Post,Comments,Märkused @@ -2059,6 +2092,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Sisu Hash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Postitused {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} määratud {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Uusi Google'i kontakte ei sünkroonitud. DocType: Workflow State,globe,maailma apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Keskmine {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Tühjenda vea logid @@ -2085,6 +2119,8 @@ DocType: Workflow State,Inverse,Vastupidine DocType: Activity Log,Closed,Suletud DocType: Report,Query,Päring DocType: Notification,Days After,Päevad pärast +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Lehekülje otseteed +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portree apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Päring aegus DocType: System Settings,Email Footer Address,E-posti jaluse aadress apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energiapunkti värskendus @@ -2112,6 +2148,7 @@ For Select, enter list of Options, each on a new line.","Lingite puhul sisestage apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 minut tagasi apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Aktiivseid seansse pole apps/frappe/frappe/model/base_document.py,Row,Rida +DocType: Contact,Middle Name,Keskmine nimi apps/frappe/frappe/public/js/frappe/request.js,Please try again,Palun proovi uuesti DocType: Dashboard Chart,Chart Options,Diagrammi valikud DocType: Data Migration Run,Push Failed,Push Failed @@ -2140,6 +2177,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,suuruse muutmine DocType: Comment,Relinked,Koostatud DocType: Role Permission for Page and Report,Roles HTML,HTML-i rollid +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Mine apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Tööprotsess algab pärast salvestamist. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Kui teie andmed on HTML-is, kopeerige kleepige täpne HTML-kood märgenditega." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Kuupäevad on sageli kerge ära arvata. @@ -2168,7 +2206,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Töölaua ikoon apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,tühistas selle dokumendi apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Kuupäevavahemik -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Seadistamine> Kasutaja õigused apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} hindas {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Väärtused muutusid apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Viga teatamisel @@ -2233,6 +2270,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Massiivne kustutamine DocType: DocShare,Document Name,Dokumendi nimi apps/frappe/frappe/config/customization.py,Add your own translations,Lisage oma tõlked +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Liikuge loendis alla DocType: S3 Backup Settings,eu-central-1,eu-central-1 DocType: Auto Repeat,Yearly,Aasta apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Nimeta ümber @@ -2283,6 +2321,7 @@ DocType: Workflow State,plane,lennuk apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Sisestatud seadistatud viga. Palun võtke ühendust administraatoriga. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Kuva aruanne DocType: Auto Repeat,Auto Repeat Schedule,Automaatne kordamise ajakava +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Vaade Ref DocType: Address,Office,Kontor DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} päeva tagasi @@ -2316,7 +2355,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Va apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Minu seaded apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Grupi nimi ei saa olla tühi. DocType: Workflow State,road,tee -DocType: Website Route Redirect,Source,Allikas +DocType: Contact,Source,Allikas apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Aktiivsed istungid apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Vormis võib olla ainult üks klapp apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Uus vestlus @@ -2338,6 +2377,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Sisestage autoriseerimise URL DocType: Email Account,Send Notification to,Saada teade apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropboxi varundusseaded +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,Miski läks valesti sümbolite loomisel. Uue loomiseks klõpsake {0}. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Kas eemaldada kõik kohandused? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Ainult administraator saab redigeerida DocType: Auto Repeat,Reference Document,Viitedokument @@ -2362,6 +2402,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Kasutajaid saab määrata kasutajate lehelt. DocType: Website Settings,Include Search in Top Bar,Lisage otsing ülemisse riba apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Kiireloomuline] Viga% s puhul korduva% s loomisel +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globaalsed otseteed DocType: Help Article,Author,Autor DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Antud filtrite kohta pole ühtegi dokumenti leitud @@ -2397,10 +2438,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, rida {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Uute kirjete üleslaadimisel muutub "Naming Series" kohustuslikuks, kui see on olemas." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Muuda atribuute -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,"Näit ei saa avada, kui selle {0} on avatud" +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,"Näit ei saa avada, kui selle {0} on avatud" DocType: Activity Log,Timeline Name,Ajaskaala nimi DocType: Comment,Workflow,Töövoog apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Palun määrake Frappe sotsiaalse sisselogimise võtmes Base URL +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Klaviatuuri otseteed DocType: Portal Settings,Custom Menu Items,Kohandatud menüüelemendid apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,{0} pikkus peaks olema vahemikus 1 kuni 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Ühendus kaotas. Mõned funktsioonid ei pruugi töötada. @@ -2463,6 +2505,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Lisatud rea DocType: DocType,Setup,Seadistamine apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} loodud edukalt apps/frappe/frappe/www/update-password.html,New Password,uus salasõna +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Valige väli apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Jäta see vestlus DocType: About Us Settings,Team Members,Meeskonna liikmed DocType: Blog Settings,Writers Introduction,Kirjanike tutvustus @@ -2531,13 +2574,12 @@ DocType: Chat Room,Name,Nimi DocType: Communication,Email Template,E-posti mall DocType: Energy Point Settings,Review Levels,Vaadake tasemeid DocType: Print Format,Raw Printing,Toores trükkimine -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,"{0} ei saa avada, kui selle eksemplar on avatud" +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,"{0} ei saa avada, kui selle eksemplar on avatud" DocType: DocType,"Make ""name"" searchable in Global Search",Tee otsingus globaalses otsingus "nimi" DocType: Data Migration Mapping,Data Migration Mapping,Andmete migratsiooni kaardistamine DocType: Data Import,Partially Successful,Osaliselt edukas DocType: Communication,Error,Viga apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Välitüüpi ei saa {2} -st {1} reas {2} muuta -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Viga QZ-salve rakenduse loomisel ...

Prindi printimise funktsiooni kasutamiseks peate installima ja töötama QZ-salve rakenduse.

QZ-salve allalaadimiseks ja installimiseks klõpsake siia .
Toorprintimise kohta lisateabe saamiseks klõpsake siia ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Pildistama apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,"Vältige aastaid, mis on sinuga seotud." DocType: Web Form,Allow Incomplete Forms,Luba mittetäielikud vormid @@ -2633,7 +2675,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Uue lehekülje avamiseks valige target = "_blank". DocType: Portal Settings,Portal Menu,Portaali menüü DocType: Website Settings,Landing Page,Sihtleht -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,"Palun logige sisse või logige sisse, et alustada" DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontaktivõimalused, nagu näiteks "Müügi päring, tugi päring" jne, uuel liinil või komadega eraldatud." apps/frappe/frappe/twofactor.py,Verfication Code,Verifitseerimiskood apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} on juba tellimuse tühistanud @@ -2719,6 +2760,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Andmete migrats DocType: Address,Sales User,Müügikasutaja apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Põllu omaduste muutmine (peida, kirjutuskaitstud, luba jne)" DocType: Property Setter,Field Name,Välja nimi +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Klient DocType: Print Settings,Font Size,Kirjasuurus DocType: User,Last Password Reset Date,Viimane parooli lähtestamise kuupäev DocType: System Settings,Date and Number Format,Kuupäev ja numbrivorming @@ -2784,6 +2826,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Grupi sõlm apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Ühenda olemasolevate DocType: Blog Post,Blog Intro,Blogi Intro apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Uus nimetus +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Hüppa väljale DocType: Prepared Report,Report Name,Aruande nimi apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Värskeima dokumendi saamiseks värskendage. apps/frappe/frappe/core/doctype/communication/communication.js,Close,Sulge @@ -2793,10 +2836,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Sündmus DocType: Social Login Key,Access Token URL,Juurdepääs Tokeni URL-ile apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Palun määrake oma saidi konfiguratsioonis Dropboxi juurdepääsuklahvid +DocType: Google Contacts,Google Contacts,Google'i kontaktid DocType: User,Reset Password Key,Lähtestage parooli võti apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Muudetud DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.",Uuendamiseks {0}. +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Salvestatud edukalt +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Saada link selle linki saatmiseks aadressile {0}. DocType: File,Folder,Kaust DocType: DocField,Perm Level,Permi tase DocType: Print Settings,Page Settings,Lehekülje seaded @@ -2826,6 +2872,7 @@ DocType: Workflow State,remove-sign,eemalda-märk DocType: Dashboard Chart,Full,Täielik DocType: DocType,User Cannot Create,Kasutaja ei saa luua apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Sa said {0} punkti +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Seadistamine> Kasutaja DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.",Selle seadistamisel jõuab see kirje valitud vanema alla rippmenüüsse. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,E-kirju pole apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Puuduvad järgmised väljad: @@ -2839,13 +2886,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Nä DocType: Web Form,Web Form Fields,Veebivormi väljad DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Kasutaja redigeeritav vorm veebilehel. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Kas tühistada {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Kas tühistada {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,3. võimalus apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,Kogusumma apps/frappe/frappe/utils/password_strength.py,This is a very common password.,See on väga tavaline parool. DocType: Personal Data Deletion Request,Pending Approval,Kinnituse ootel apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Dokumenti ei saanud õigesti määrata apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{0}: {1} pole lubatud +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Väärtusi ei näidata DocType: Personal Data Download Request,Personal Data Download Request,Isikuandmete allalaadimise taotlus apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} jagas seda dokumenti {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Vali {0} @@ -2861,7 +2909,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},See e-kiri saadeti aadressile {0} ja kopeeriti {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,Kehtetu kasutajanimi või parool DocType: Social Login Key,Social Login Key,Sotsiaalse sisselogimise võti -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Palun seadistage e-posti vaikekonto seadistusest> E-post> E-posti konto apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filtrid on salvestatud DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Kuidas seda valuutat vormindada? Kui ei ole määratud, kasutab süsteem vaikimisi" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} on seatud olekusse {2} @@ -2987,6 +3034,7 @@ DocType: User,Location,Asukoht apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Andmeid pole DocType: Website Meta Tag,Website Meta Tag,Veebisaidi metatähis DocType: Workflow State,film,film +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Kopeeritud lõikepuhvrisse. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Seadistusi ei leitud apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Silt on kohustuslik DocType: Webhook,Webhook Headers,Webhooki päised @@ -3194,7 +3242,7 @@ DocType: Address,Address Line 1,Aadressirida 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Dokumendi tüübi puhul apps/frappe/frappe/model/base_document.py,Data missing in table,Tabelis puuduvad andmed apps/frappe/frappe/utils/bot.py,Could not identify {0},{0} ei saanud tuvastada -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Seda vormi on pärast selle laadimist muudetud +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Seda vormi on pärast selle laadimist muudetud apps/frappe/frappe/www/login.html,Back to Login,Tagasi sisselogimise juurde apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Ei ole määratud DocType: Data Migration Mapping,Pull,Tõmmake @@ -3262,6 +3310,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Lapse tabeli kaardist apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,E-posti konto seadistamine sisestage oma parool: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Ühes taotluses kirjutab liiga palju. Palun saatke väiksemaid taotlusi DocType: Social Login Key,Salesforce,Salesforce +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{0} {1} importimine DocType: User,Tile,Plaat DocType: Email Rule,Is Spam,Kas rämpspost apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Täielik registreerimine @@ -3298,7 +3347,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,kaust-close DocType: Data Migration Run,Pull Update,Tõmba värskendus apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},liideti {0} {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Ei leitud tulemusi

DocType: SMS Settings,Enter url parameter for receiver nos,Sisestage vastuvõtja nn URL-i parameeter apps/frappe/frappe/utils/jinja.py,Syntax error in template,Süntaksi viga mallis apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Palun määrake aruande filtri tabelis filtrite väärtus. @@ -3311,6 +3359,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Vabandust, DocType: System Settings,In Days,Päevadel DocType: Report,Add Total Row,Lisa kokku rida apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Seansi algus ebaõnnestus +DocType: Translation,Verified,Kinnitatud DocType: Print Format,Custom HTML Help,Kohandatud HTML-abi DocType: Address,Preferred Billing Address,Eelistatud arveldusaadress apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Määratud @@ -3325,7 +3374,6 @@ DocType: Help Article,Intermediate,Kesktase DocType: Module Def,Module Name,Mooduli nimi DocType: OAuth Authorization Code,Expiration time,Aegumise aeg apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Määra vaikevorming, lehekülje suurus, printimisstiil jne" -apps/frappe/frappe/desk/like.py,You cannot like something that you created,"Sa ei saa meeldida midagi, mille olete loonud" DocType: System Settings,Session Expiry,Sessiooni aegumine DocType: DocType,Auto Name,Automaatne nimi apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Valige manused @@ -3353,6 +3401,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Süsteemi lehekülg DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Märkus: Vaikimisi saadetud e-kirjade saatmine ebaõnnestus. DocType: Custom DocPerm,Custom DocPerm,Kohandatud DocPerm +DocType: Translation,PR sent,PR saadeti DocType: Tag Doc Category,Doctype to Assign Tags,Märgiste määramiseks kasutatav dokumentitüüp DocType: Address,Warehouse,Ladu apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Dropboxi seadistamine @@ -3420,7 +3469,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Enter kommentaari lisamiseks apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Väli {0} ei ole valitav. DocType: User,Birth Date,Sünnikuupäev -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Grupi sisestusega DocType: List View Setting,Disable Count,Keela arv DocType: Contact Us Settings,Email ID,E-kirja ID apps/frappe/frappe/utils/password.py,Incorrect User or Password,Vale kasutaja või parool @@ -3455,6 +3503,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,See roll uuendab kasutaja õigusi kasutajale DocType: Website Theme,Theme,Teema DocType: Web Form,Show Sidebar,Näita külgriba +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google'i kontaktide integreerimine. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Saabunud postkast apps/frappe/frappe/www/login.py,Invalid Login Token,Kehtetu sisselogimismärk apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Kõigepealt määrake nimi ja salvestage kirje. @@ -3482,7 +3531,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Palun parandage DocType: Top Bar Item,Top Bar Item,Top Baaripunkt ,Role Permissions Manager,Rollimiste haldur -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,Viga oli. Palun teatage sellest. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} aasta tagasi apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Naine DocType: System Settings,OTP Issuer Name,OTP emitendi nimi apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Lisa tööle @@ -3582,6 +3631,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Keele, apps/frappe/frappe/model/document.py,none of,ükski DocType: Desktop Icon,Page,Lehekülg DocType: Workflow State,plus-sign,plussmärk +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Tühjenda vahemälu ja laadi uuesti apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Ei saa värskendada: vale / aegunud link. DocType: Kanban Board Column,Yellow,Kollane DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Võrgu veergude arv ruudustikus (ruudustiku veergude koguarv peab olema väiksem kui 11) @@ -3596,6 +3646,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Uus DocType: Activity Log,Date,Kuupäev DocType: Communication,Communication Type,Side tüüp apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Vanemate tabel +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Liikuge nimekirja üles DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Kuva täielik viga ja lubada arendajatele probleemide aruandlust DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3617,7 +3668,6 @@ DocType: Notification Recipient,Email By Role,E-posti teel roll apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,"Uuendage, et lisada rohkem kui {0} abonente" apps/frappe/frappe/email/queue.py,This email was sent to {0},See e-kiri saadeti aadressile {0} DocType: User,Represents a User in the system.,Esitab kasutaja süsteemis. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Lehekülg {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Alusta uut vormingut apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Lisa kommentaar apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} {1} diff --git a/frappe/translations/fa.csv b/frappe/translations/fa.csv index bdcdbe94c2..bac0e00f03 100644 --- a/frappe/translations/fa.csv +++ b/frappe/translations/fa.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,فعال کردن گرادیانها DocType: DocType,Default Sort Order,مرتب سازی پیش فرض apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,نمایش فقط فیلدهای عددی از گزارش +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,کلید Alt را فشار دهید تا کلید های اضافی در منو و نوار کناری را فعال کنید DocType: Workflow State,folder-open,پوشه باز DocType: Customize Form,Is Table,میز است apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,قادر به باز کردن فایل متصل نیست آیا شما آن را به عنوان CSV صادر کردید؟ DocType: DocField,No Copy,بدون کپی DocType: Custom Field,Default Value,مقدار پیش فرض apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,اضافه کردن به برای ایمیل های ورودی اجباری است +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,همگام سازی مخاطبین DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,جزئیات نقشه برداری مهاجرت apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,لغو شدن apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",چاپ PDF از طریق "Raw Print" هنوز پشتیبانی نشده است. لطفا نقشه پرینتر را در تنظیمات چاپگر حذف کنید و دوباره امتحان کنید. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} و {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,خطایی در ذخیره فیلتر وجود داشت apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,رمز عبور خود را وارد کنید apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,نمی توان پوشه های خانه و فایل های پیوست را حذف کرد +DocType: Email Account,Enable Automatic Linking in Documents,اتصال خودکار در اسناد را فعال کنید DocType: Contact Us Settings,Settings for Contact Us Page,تنظیمات برای تماس با ما صفحه DocType: Social Login Key,Social Login Provider,ارائه دهنده خدمات اجتماعی +DocType: Email Account,"For more information, click here.","برای اطلاعات بیشتر اینجا کلیک کنید" DocType: Transaction Log,Previous Hash,هش قبلی DocType: Notification,Value Changed,ارزش تغییر کرد DocType: Report,Report Type,نوع گزارش @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,قاعده انرژی نقطه apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,لطفا قبل از ورود به سیستم اجتماعی، شناسه مشتری وارد کنید DocType: Communication,Has Attachment,دارای پیوست DocType: User,Email Signature,امضای ایمیل -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} سال (ها) قبل ,Addresses And Contacts,آدرسها و مخاطبین apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,این کانبان هیئت مدیره خصوصی خواهد بود DocType: Data Migration Run,Current Mapping,نقشه برداری فعلی @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).",شما گزینه Sync Option را به عنوان ALL انتخاب می کنید، این همه \ read و همچنین پیام خوانده نشده از سرور را resync می کند. این ممکن است باعث تکرار شدن ارتباطات (ایمیل ها) شود. apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},آخرین همگام سازی شده {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,محتوای هدر را نمیتوان تغییر داد +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,"

هیچ نتیجه ای برای '

" apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,مجاز به تغییر {0} پس از ارسال نیست apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page",این برنامه به نسخه جدید به روز شده است، لطفا این صفحه را تازه کنید DocType: User,User Image,تصویر کاربر @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},عل apps/frappe/frappe/public/js/frappe/chat.js,Discard,نادیده گرفتن DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,یک تصویر از عرض حدود 150 پیکسل با یک پس زمینه شفاف برای بهترین نتایج انتخاب کنید. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,ریفلاکس +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} ارزش انتخاب شده است DocType: Blog Post,Email Sent,ایمیل ارسال شد DocType: Communication,Read by Recipient On,خوانده شده توسط گیرنده در DocType: User,Allow user to login only after this hour (0-24),اجازه دهید کاربر بعد از این ساعت وارد شود (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,ماژول برای صادرات DocType: DocType,Fields,زمینه های -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,شما مجاز به چاپ این سند نیستید +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,شما مجاز به چاپ این سند نیستید apps/frappe/frappe/public/js/frappe/model/model.js,Parent,والدین apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.",جلسه شما منقضی شده است، لطفا برای ادامه دوباره وارد شوید. DocType: Assignment Rule,Priority,اولویت @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,بازنشانی O DocType: DocType,UPPER CASE,مورد بالا apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,لطفا آدرس ایمیل را تنظیم کنید DocType: Communication,Marked As Spam,علامت گذاری به عنوان هرزنامه +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,آدرس ایمیل که مخاطبین Google آن همگام سازی می شوند. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,مشترکین واردات apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,ذخیره فیلتر DocType: Address,Preferred Shipping Address,آدرس ارسالی ترجیحی DocType: GCalendar Account,The name that will appear in Google Calendar,نامی که در تقویم Google ظاهر می شود +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,بر روی {0} کلیک کنید تا Token را Refresh کنید. DocType: Email Account,Disable SMTP server authentication,غیرفعال کردن اعتبار سرور SMTP DocType: Email Account,Total number of emails to sync in initial sync process ,تعداد کل ایمیل ها برای همگام سازی در روند همگام سازی اولیه DocType: System Settings,Enable Password Policy,خط مشی رمز عبور را فعال کنید @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,کد را وارد کنید apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,نه در DocType: Auto Repeat,Start Date,تاریخ شروع apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,تنظیم نمودار +DocType: Website Theme,Theme JSON,تم JSON apps/frappe/frappe/www/list.py,My Account,حساب من DocType: DocType,Is Published Field,فیلد منتشر شده است DocType: DocField,Set non-standard precision for a Float or Currency field,تنظیم دقیق غیر استاندارد برای فیلد شناور یا ارز @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: افزودن Reference: {{ reference_doctype }} {{ reference_name }} برای ارسال مرجع سند DocType: LDAP Settings,LDAP First Name Field,فیلد نام LDAP apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,پیشفرض ارسال و صندوق ورودی -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,تنظیمات> فرم سفارشی apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",برای به روز رسانی، شما می توانید تنها ستون های انتخابی را به روز کنید. apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',پیش فرض برای 'Check' نوع فیلد باید یا '0' یا '1' باشد apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,این سند را به اشتراک بگذارید @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,دامنه HTML DocType: Blog Settings,Blog Settings,تنظیمات وبلاگ apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores",نام DocType باید با یک حرف شروع شود و تنها می تواند شامل حروف، اعداد، فضاها و حروف زیر باشد +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,تنظیمات> مجوز کاربر DocType: Communication,Integrations can use this field to set email delivery status,ادغام می توانند از این فیلد برای تعیین وضعیت تحویل ایمیل استفاده کنند apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,تنظیمات دروازه پرداخت خط DocType: Print Settings,Fonts,فونت ها DocType: Notification,Channel,کانال DocType: Communication,Opened,افتتاح شد DocType: Workflow Transition,Conditions,شرایط +apps/frappe/frappe/config/website.py,A user who posts blogs.,یک کاربر که وبلاگ ها را پست می کند apps/frappe/frappe/www/login.html,Don't have an account? Sign up,حساب کاربری ندارید؟ ثبت نام apps/frappe/frappe/utils/file_manager.py,Added {0},اضافه شده {0} DocType: Newsletter,Create and Send Newsletters,ایجاد و ارسال خبرنامه DocType: Website Settings,Footer Items,آیتم های پایه +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,لطفا حساب پست الکترونیک پیش فرض را از Setup> Email> Account Email تنظیم کنید DocType: Website Slideshow Item,Website Slideshow Item,بخش نمایش وب سایت وب سایت apps/frappe/frappe/config/integrations.py,Register OAuth Client App,ثبت برنامه مشتری OAuth DocType: Error Snapshot,Frames,فریم ها @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.",سطح 0 برای مجوزهای سطح سند، \ سطوح بالاتر برای مجوزهای سطح میدان است. DocType: Address,City/Town,شهر / شهر DocType: Email Account,GMail,جیمیل -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?",این موضوع فعلی شما را تنظیم می کند، آیا مطمئن هستید که می خواهید ادامه دهید؟ apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},الزامات لازم در {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},خطا هنگام اتصال به حساب ایمیل {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,هنگام ایجاد دوره تکراری خطایی رخ داد @@ -528,7 +537,7 @@ DocType: Event,Event Category,دسته رویداد apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,ستون بر اساس apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,ویرایش عنوان DocType: Communication,Received,اخذ شده -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,شما مجاز به دسترسی به این صفحه نیستید. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,شما مجاز به دسترسی به این صفحه نیستید. DocType: User Social Login,User Social Login,ورودی کاربر اجتماعی apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,یک فایل Python را در همان فولدر ذخیره کنید و ستون و نتیجه را بازگردانید. DocType: Contact,Purchase Manager,مدیر خرید @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,پی apps/frappe/frappe/utils/data.py,Operator must be one of {0},اپراتور باید یکی از {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,اگر صاحب DocType: Data Migration Run,Trigger Name,نام تکرار -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,عناوین و مقالات را در وبلاگ خود بنویسید. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,حذف فیلد apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,سقوط همه apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,رنگ پس زمینه @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,بار DocType: SMS Settings,Enter url parameter for message,پارامتر url برای پیام را وارد کنید apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,جدید قالب سفارشی چاپ apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} در حال حاضر وجود دارد +DocType: Workflow Document State,Is Optional State,دولت اختیاری است DocType: Address,Purchase User,کاربر خرید DocType: Data Migration Run,Insert,قرار دادن DocType: Web Form,Route to Success Link,مسیر پیوند موفق @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,نام DocType: File,Is Home Folder,پوشه اصلی است apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,نوع: DocType: Post,Is Pinned,پین شده است -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},هیچ مجوزی برای {0} '{1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},هیچ مجوزی برای {0} '{1} DocType: Patch Log,Patch Log,پچ ورود DocType: Print Format,Print Format Builder,چاپگر قالب ساز 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 با استفاده از دو فاکتور Auth وارد شوید. این همچنین می تواند فقط برای کاربر خاص (ها) در صفحه کاربر تنظیم شده باشد apps/frappe/frappe/utils/data.py,only.,فقط. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,وضعیت "{0}" نامعتبر است DocType: Auto Email Report,Day of Week,روز هفته +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Google API را در تنظیمات Google فعال کنید DocType: DocField,Text Editor,ویرایشگر متن apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,برش apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,جستجو یا تایپ یک دستور @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,تعداد پشتیبان گیری DB نمی تواند کمتر از 1 باشد DocType: Workflow State,ban-circle,ممنوعیت دایره DocType: Data Export,Excel,اکسل +DocType: Web Page,"Header, Breadcrumbs and Meta Tags",سربرگ، خرده نان و برچسب های متا apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,آدرس ایمیل پشتیبانی نشده مشخص شده است DocType: Comment,Published,منتشر شده DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.",توجه: برای بهترین نتایج، تصاویر باید از اندازه یکسان باشند و عرض باید بیشتر از ارتفاع باشد. @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,آخرین رویداد برنام apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,گزارش تمام سهام سند DocType: Website Sidebar Item,Website Sidebar Item,بخش نوار ابزار وب سایت apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,انجام دادن +DocType: Google Settings,Google Settings,تنظیمات Google apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency",کشور، منطقه زمانی و ارز را انتخاب کنید DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)",پارامترهای آدرس static در اینجا وارد کنید (مانند فرستنده = ERPNext، username = ERPNext، password = 1234 و غیره) apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,بدون حساب ایمیل @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token ,Setup Wizard,جادوگر راه اندازی apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,تعویض نمودار +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,همگام سازی DocType: Data Migration Run,Current Mapping Action,اقدامات نقشه برداری فعلی DocType: Email Account,Initial Sync Count,تعداد همگام سازی اولیه apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,تنظیمات برای تماس با ما صفحه. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,نوع فرمت چاپ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,هیچ مجوزی برای این معیار تعیین نشده است. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,گسترش همه +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,پیش فرض آدرس آدرس یافت نشد. لطفا یک نام جدید از Setup> Printing and Branding> Template Address ایجاد کنید. DocType: Tag Doc Category,Tag Doc Category,برچسب Doc Category DocType: Data Import,Generated File,فایل تولید شده apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,یادداشت @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,فیلد جدول زمانی باید لینک یا لینک پیوندی باشد DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,اعلان ها و ایمیل های فله از این سرور خروجی ارسال می شود. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,این کلمه عبور رایج 100 است. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,دائمی {0} ارسال کنید؟ +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,دائمی {0} ارسال کنید؟ apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge",{0} {1} وجود ندارد، یک هدف جدید برای ادغام را انتخاب کنید DocType: Energy Point Rule,Multiplier Field,فیلد چندتایی DocType: Workflow,Workflow State Field,زمینه امور گردش کار @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} کار شما را با {1} با {2} امتیاز قدردانی کردید DocType: Auto Email Report,Zero means send records updated at anytime,صفر به معنای ارسال سوابق به روز شده در هر زمان است apps/frappe/frappe/model/document.py,Value cannot be changed for {0},ارزش را نمی توان برای {0} تغییر داد +apps/frappe/frappe/config/integrations.py,Google API Settings.,تنظیمات Google API DocType: System Settings,Force User to Reset Password,نیروی کاربر برای بازنشانی رمز عبور apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,گزارش سازندگان گزارش به طور مستقیم توسط سازنده گزارش مدیریت می شوند. کاری برای انجام دادن نیست. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,ویرایش فیلتر @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,بر DocType: S3 Backup Settings,eu-north-1,eu-north-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}",{0}: تنها یک قانون مجاز با همان نقش، سطح و {1} apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,شما مجاز به به روز رسانی این سند فرم وب نیستید -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,حداکثر محدودیت پیوست برای این رکورد رسیده است. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,حداکثر محدودیت پیوست برای این رکورد رسیده است. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,لطفا اطمینان حاصل کنید که اسناد ارتباطی مرجع به طور پیوسته پیوند ندارند. DocType: DocField,Allow in Quick Entry,اجازه ورود سریع DocType: Error Snapshot,Locals,محلی @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,نوع استثنایی apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},نمی توانید حذف یا لغو زیرا {0} {1} با {2} {3} {4} مرتبط شده است apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTP را فقط می توان توسط Administrator بازنشانی کرد. -DocType: Web Form Field,Page Break,شکستن صفحه DocType: Website Script,Website Script,اسکریپت وب DocType: Integration Request,Subscription Notification,اعلان اشتراک DocType: DocType,Quick Entry,ورود سریع @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,املاک پس از هشدار apps/frappe/frappe/__init__.py,Thank you,متشکرم apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,رکوردها برای ادغام داخلی apps/frappe/frappe/config/settings.py,Import Data,واردات داده ها +DocType: Translation,Contributed Translation Doctype Name,ترجمه اسم مستعار ترجمه شده DocType: Social Login Key,Office 365,دفتر 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,شناسه DocType: Review Level,Review Level,سطح بررسی @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,موفق به انجام شد apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} لیست apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,قدردانی -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),جدید {0} (Ctrl + B) DocType: Contact,Is Primary Contact,تماس اولیه است DocType: Print Format,Raw Commands,دستورات خام apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Stylesheets برای فرمت های چاپ @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,خطاها در ر apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},{0} را در {1} پیدا کنید DocType: Email Account,Use SSL,از SSL استفاده کنید DocType: DocField,In Standard Filter,در فیلتر استاندارد +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,هیچ اطلاعات تماس Google برای همگامسازی وجود ندارد DocType: Data Migration Run,Total Pages,تعداد صفحات apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: فیلد '{1}' نمی تواند به عنوان منحصر به فرد تنظیم شود زیرا دارای مقادیر غیر منحصر به فرد است DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.",در صورت فعال بودن، کاربران هر بار که وارد سیستم می شوند اطلاع داده می شوند. اگر فعال نشد، کاربران فقط یک بار مطلع خواهند شد. @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,اتوماسیون apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,بازکردن فایلها ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',جستجو برای '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,چیزی اشتباه رفت -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,لطفا قبل از پیوستن ذخیره کنید. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,لطفا قبل از پیوستن ذخیره کنید. DocType: Version,Table HTML,جدول HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,توپی DocType: Page,Standard,استاندارد @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,هیچ نت apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} سوابق حذف شد apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,در هنگام تولید دیکشنری دسترسی dropbox چیزی اشتباهی رخ داد. برای اطلاعات بیشتر لطفا ورود به سیستم را بررسی کنید. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,فرزندان -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,پیش فرض آدرس آدرس یافت نشد. لطفا یک نام جدید از Setup> Printing and Branding> Template Address ایجاد کنید. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,مخاطبین Google پیکربندی شده است apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,پنهان کردن جزئیات apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,سبک فونت apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,اشتراک شما در {0} منقضی خواهد شد. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},تأیید اعتبار در هنگام دریافت ایمیل از حساب ایمیل {0} شکست خورد. پیام از سرور: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),آمار بر اساس عملکرد هفته گذشته (از {0} تا {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,پیوند خودکار می تواند تنها در صورتی فعال شود که ورودی فعال باشد. DocType: Website Settings,Title Prefix,پیشوند عنوان apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,پرونده های تأیید هویتی که می توانید استفاده کنید عبارتند از: DocType: Bulk Update,Max 500 records at a time,حداکثر 500 رکورد در یک زمان @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,گزارش فیلتر apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,ستون ها را انتخاب کنید DocType: Event,Participants,شركت كنندگان DocType: Auto Repeat,Amended From,اصلاح شده از -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,اطلاعات شما ثبت شد +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,اطلاعات شما ثبت شد DocType: Help Category,Help Category,رده راهنما apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 ماه apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,فرمت موجود را برای ویرایش یا شروع فرمت جدید انتخاب کنید. @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,فیلد برای پیگیری DocType: User,Generate Keys,ایجاد کلید ها DocType: Comment,Unshared,اشتراکگذاری نشده -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,ذخیره +DocType: Translation,Saved,ذخیره DocType: OAuth Client,OAuth Client,مشتری OAuth DocType: System Settings,Disable Standard Email Footer,پاورپوینت استاندارد استاندارد را غیرفعال کنید apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,فرمت چاپ {0} غیرفعال است @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,آخرین ب DocType: Data Import,Action,عمل apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,کلید مشتری مورد نیاز است DocType: Chat Profile,Notifications,اطلاعیه +DocType: Translation,Contributed,کمک کرد DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy DocType: Report,Custom Report,گزارش سفارشی DocType: Workflow State,info-sign,اطلاعات نشانه @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,تماس DocType: LDAP Settings,LDAP Username Field,نام کاربری LDAP apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",{0} فیلد را نمی توان به عنوان منحصر به فرد در {1} تنظیم کرد، زیرا مقادیر موجود غیر منحصر به فرد وجود دارد +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,تنظیمات> فرم سفارشی DocType: User,Social Logins,ورودی های اجتماعی DocType: Workflow State,Trash,زباله ها DocType: Stripe Settings,Secret Key,کلید راز @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,فیلد عنوان apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,نمیتوانست به سرور ایمیل خروجی متصل شود DocType: File,File URL,نشانی اینترنتی فایل DocType: Help Article,Likes,دوست دارد +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,یکپارچگی Google Contacts غیرفعال است apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,شما باید وارد سیستم شوید و نقش مدیر سیستم را داشته باشید تا قادر به دسترسی به پشتیبان ها باشد. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,سطح اول DocType: Blogger,Short Name,نام کوتاه @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,وارد کردن زیپ DocType: Contact,Gender,جنسيت DocType: Workflow State,thumbs-down,انگشت شست -DocType: Web Page,SEO,جستجوگرها apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},صف باید یکی از {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},هشدار در مورد نوع سند تنظیم نمی شود {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,افزودن مدیر سیستم به این کاربر به عنوان یک سیستم مدیریت حداقل باید وجود داشته باشد apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,خوش آمدید ایمیل فرستاده شد DocType: Transaction Log,Chaining Hash,چنگ زدن هش DocType: Contact,Maintenance Manager,مدیر تعمیر و نگهداری +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",برای مقایسه، استفاده از> 5، <10 یا = 324. برای محدوده ها، از 5:10 استفاده کنید (برای مقادیر بین 5 و 10). apps/frappe/frappe/utils/bot.py,show,نشان می دهد apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URL اشتراک گذاری apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,فرمت فایل پشتیبانی نشده @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,اطلاع DocType: Data Import,Show only errors,تنها خطاهای نمایش داده شود DocType: Energy Point Log,Review,مرور apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,ردیف حذف شد -DocType: GSuite Settings,Google Credentials,مجوز گوگل +DocType: Google Settings,Google Credentials,مجوز گوگل apps/frappe/frappe/www/login.html,Or login with,یا وارد شوید apps/frappe/frappe/model/document.py,Record does not exist,ضبط وجود ندارد apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,نام گزارش جدید @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,فهرست DocType: Workflow State,th-large,هفتم بزرگ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: نمیتوان تنظیم مجوز ارسال را انجام داد apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,به هیچ رکوردی مرتبط نیست +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","خطا در اتصال به برنامه سینی QZ ...

برای استفاده از قابلیت چاپ خام باید برنامه QZ Tray را نصب و اجرا کنید.

برای دانلود و نصب QZ Tray اینجا را کلیک کنید .
برای اطلاعات بیشتر در مورد چاپ خام اینجا کلیک کنید ." DocType: Chat Message,Content,محتوا DocType: Workflow Transition,Allow Self Approval,اجازه تصویب خود را apps/frappe/frappe/www/qrcode.py,Page has expired!,صفحه منقضی شده است! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,دست راست DocType: Website Settings,Banner is above the Top Menu Bar.,بنر بالای نوار منوی بالا است. apps/frappe/frappe/www/update-password.html,Invalid Password,رمز عبور نامعتبر apps/frappe/frappe/utils/data.py,1 month ago,1 ماه پیش +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,اجازه دسترسی به مخاطبین Google DocType: OAuth Client,App Client ID,شناسه برنامه برنامه DocType: DocField,Currency,واحد پول DocType: Website Settings,Banner,بنر @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,هدف DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.",اگر یک نقش در سطح 0 دسترسی نداشته باشد، سطوح بالاتر بی معنی است. DocType: ToDo,Reference Type,نوع مرجع -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!",اجازه دادن به DocType، DocType. مراقب باش! +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!",اجازه دادن به DocType، DocType. مراقب باش! DocType: Domain Settings,Domain Settings,تنظیمات دامنه DocType: Auto Email Report,Dynamic Report Filters,فیلترهای گزارش پویا DocType: Energy Point Log,Appreciation,قدردانی @@ -1468,6 +1489,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,ما-غرب-2 DocType: DocType,Is Single,مجرد است apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,یک فرمت جدید ایجاد کنید +DocType: Google Contacts,Authorize Google Contacts Access,مجوز دسترسی به مخاطبین Google DocType: S3 Backup Settings,Endpoint URL,URL نقطه پایانی DocType: Social Login Key,Google,گوگل DocType: Contact,Department,گروه @@ -1482,7 +1504,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,اختصاص ب DocType: List Filter,List Filter,لیست فیلتر DocType: Dashboard Chart Link,Chart,چارت سازمانی apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,حذف نمی شود -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,این سند را تأیید کنید +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,این سند را تأیید کنید apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} در حال حاضر وجود دارد نام دیگری را انتخاب کنید apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,شما تغییرات ذخیره نشده در این فرم دارید لطفا قبل از اینکه ادامه دهید ذخیره کنید. apps/frappe/frappe/model/document.py,Action Failed,اقدام ناکام شد @@ -1564,6 +1586,7 @@ DocType: DocField,Display,نمایش دادن apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,پاسخ همه DocType: Calendar View,Subject Field,زمینه موضوع apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},پایان جلسه باید در قالب {0} باشد +apps/frappe/frappe/model/workflow.py,Applying: {0},اعمال: {0} DocType: Workflow State,zoom-in,بزرگنمایی apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,تماس با سرور برقرار نشد apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},تاریخ {0} باید در قالب باشد: {1} @@ -1575,8 +1598,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,نماد بر روی دکمه ظاهر می شود DocType: Role Permission for Page and Report,Set Role For,تنظیم برای نقش +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,پیوند خودکار تنها برای یک حساب ایمیل امکان پذیر است. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,بدون اعتبار ایمیل اختصاص داده شده است +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,حساب ایمیل تنظیم نشده است. لطفا یک حساب ایمیل جدید از Setup> Email> Account Email ایجاد کنید apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,وظیفه +DocType: Google Contacts,Last Sync On,آخرین همگام سازی در apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},{0} به دست آمده از طریق قانون خودکار {1} apps/frappe/frappe/config/website.py,Portal,پورتال apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,ممنون برای ایمیلت @@ -1597,7 +1623,6 @@ DocType: GSuite Settings,GSuite Settings,GSuite تنظیمات DocType: Integration Request,Remote,از راه دور DocType: File,Thumbnail URL,URL کوچکتر apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,گزارش دانلود -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,تنظیم> کاربر apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},سفارشی سازی برای {0} به:
{1} DocType: GCalendar Account,Calendar Name,نام تقویم apps/frappe/frappe/templates/emails/new_user.html,Your login id is,شناسه ورود شما @@ -1647,6 +1672,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},بر apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,زمینه تصویر باید یک نام فیلد معتبر باشد apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,برای دسترسی به این صفحه باید وارد سیستم شوید DocType: Assignment Rule,Example: {{ subject }},مثال: {{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,فیلد نام {0} محدود است apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},شما نمیتوانید «فقط خواندن» را برای فیلد حذف کنید {0} DocType: Social Login Key,Enable Social Login,فعال کردن ورود به سیستم اجتماعی DocType: Workflow,Rules defining transition of state in the workflow.,قوانین تعریف انتقال دولت در جریان کار. @@ -1667,10 +1693,10 @@ DocType: Website Settings,Route Redirects,مسیرهای مسیریابی apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,صندوق پست الکترونیکی apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},{0} به عنوان {1} بازسازی شد DocType: Assignment Rule,Automatically Assign Documents to Users,به طور خودکار اسناد را به کاربران اختصاص دهید +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Awesomebar را باز کنید apps/frappe/frappe/config/settings.py,Email Templates for common queries.,قالب های ایمیل برای نمایش های معمولی. DocType: Letter Head,Letter Head Based On,سر نامه بر اساس apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,لطفا این پنجره را ببندید -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,پرداخت کامل DocType: Contact,Designation,تعیین DocType: Webhook,Webhook,هارد دیسک DocType: Website Route Meta,Meta Tags,برچسب های متا @@ -1709,6 +1735,7 @@ DocType: System Settings,Choose authentication method to be used by all users,ر DocType: Error Snapshot,Parent Error Snapshot,تصویربرداری خطا والدین DocType: GCalendar Account,GCalendar Account,حساب GCalendar DocType: Language,Language Name,نام زبان +DocType: Workflow Document State,Workflow Action is not created for optional states,عملیات گردش کار برای حالت اختیاری ایجاد نشده است DocType: Customize Form,Customize Form,فرم سفارشی DocType: DocType,Image Field,زمینه تصویر apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),اضافه شده {0} ({1}) @@ -1750,6 +1777,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,اگر این کاربر مالک باشد، این قانون را اعمال کنید DocType: About Us Settings,Org History Heading,تاریخچه سازمان apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,خطای سرور +DocType: Contact,Google Contacts Description,توضیحات Google Contacts apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,نقش های استاندارد را نمی توان تغییر نام داد DocType: Review Level,Review Points,امتیازات را بررسی کنید apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,نام پاراگراف Kanban نامعتبر است @@ -1767,7 +1795,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,نه در حالت برنامه نویس! تنظیم در site_config.json یا DocType سفارشی. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,{0} به دست آورد DocType: Web Form,Success Message,پیام موفقیت -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",برای مقایسه، استفاده از> 5، <10 یا = 324. برای محدوده ها، از 5:10 استفاده کنید (برای مقادیر بین 5 و 10). DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",توضیحات برای لیست صفحه، در متن ساده، فقط چند خط. (حداکثر 140 کاراکتر) apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,نمایش مجوزها DocType: DocType,Restrict To Domain,محدود به دامنه @@ -1789,6 +1816,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,نه apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,مجموعه مقدار DocType: Auto Repeat,End Date,تاریخ پایان DocType: Workflow Transition,Next State,دولت بعدی +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Google Contacts همگام سازی شده است. DocType: System Settings,Is First Startup,آیا شروع اولیه است apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},به {0} به روز شد apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,حرکت به @@ -1838,6 +1866,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} تقویم apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,الگو وارد کردن داده DocType: Workflow State,hand-left,دست چپ +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,موارد چندگانه را انتخاب کنید apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,حجم پشتیبان گیری: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},مرتبط با {0} DocType: Braintree Settings,Private Key,کلید خصوصی @@ -1880,13 +1909,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,علاقه DocType: Bulk Update,Limit,حد DocType: Print Settings,Print taxes with zero amount,مالیات را با مقدار صفر چاپ کنید -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,حساب ایمیل تنظیم نشده است. لطفا یک حساب ایمیل جدید از Setup> Email> Account Email ایجاد کنید DocType: Workflow State,Book,کتاب DocType: S3 Backup Settings,Access Key ID,شناسه دسترسی DocType: Chat Message,URLs,URL ها apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,نام و نام خانوادگی خود را آسان می توان حدس زد. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},گزارش {0} DocType: About Us Settings,Team Members Heading,عنوان تیم کاربران +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,مورد لیست را انتخاب کنید apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},سند {0} به حالت {1} توسط {2} تنظیم شده است DocType: Address Template,Address Template,قالب آدرس DocType: Workflow State,step-backward,گام به عقب @@ -1910,6 +1939,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,صادرات مجوزهای سفارشی apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,هیچکدام: End of Workflow DocType: Version,Version,نسخه +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,لیست مورد باز کردن apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 ماه DocType: Chat Message,Group,گروه apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},مشکل در آدرس فایل وجود دارد: {0} @@ -1965,6 +1995,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 سال apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} نقاط خود را در {1} DocType: Workflow State,arrow-down,فلش کردن DocType: Data Import,Ignore encoding errors,نادیده گرفتن خطاهای کدگذاری +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,چشم انداز DocType: Letter Head,Letter Head Name,نام سربرگ DocType: Web Form,Client Script,اسکریپت مشتری DocType: Assignment Rule,Higher priority rule will be applied first,اولویت بالاترین اولویت اعمال خواهد شد @@ -2008,6 +2039,7 @@ DocType: Kanban Board Column,Green,سبز apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,فقط فیلدهای اجباری برای پرونده های جدید لازم است. اگر می خواهید ستون های غیر ضروری را حذف کنید. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.",{0} باید با یک حرف شروع و پایان کند و فقط می تواند شامل حروف، خط و یا زیر خط دار باشد. +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,تکرار اقدام اولیه apps/frappe/frappe/core/doctype/user/user.js,Create User Email,ایجاد ایمیل کاربر apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,فیلد مرتبسازی {0} باید یک فیلد معتبر باشد DocType: Auto Email Report,Filter Meta,فیلتر متا @@ -2037,6 +2069,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,فیلد جدول زمانی apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,بارگذاری... DocType: Auto Email Report,Half Yearly,نیم سال +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,پروفایل من apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,آخرین تاریخ اصلاح شده DocType: Contact,First Name,نام کوچک DocType: Post,Comments,نظرات @@ -2059,6 +2092,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,هش محتوا apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},نوشته های {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} اختصاص {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,هیچ اطلاعات جدید گوگل همگام سازی نشده است. DocType: Workflow State,globe,جهان apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},میانگین {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,پاک کردن خطاهای خطا @@ -2085,6 +2119,8 @@ DocType: Workflow State,Inverse,معکوس DocType: Activity Log,Closed,بسته شده DocType: Report,Query,پرس و جو DocType: Notification,Days After,روز بعد +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,میانبرهای صفحه +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,پرتره apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,مهلت درخواست به پایان رسیده است DocType: System Settings,Email Footer Address,آدرس پست الکترونیک ایمیل apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,به روز رسانی نقطه انرژی @@ -2112,6 +2148,7 @@ For Select, enter list of Options, each on a new line.",برای لینک ها، apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 دقیقه پیش apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,هیچ جلسه فعال apps/frappe/frappe/model/base_document.py,Row,ردیف +DocType: Contact,Middle Name,نام میانه apps/frappe/frappe/public/js/frappe/request.js,Please try again,لطفا دوباره تلاش کنید DocType: Dashboard Chart,Chart Options,گزینه های نمودار DocType: Data Migration Run,Push Failed,فشار ناکرده @@ -2140,6 +2177,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,تغییر اندازه کوچک DocType: Comment,Relinked,تغییر یافته DocType: Role Permission for Page and Report,Roles HTML,نقش HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,برو apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,گردش کار پس از صرفه جویی شروع خواهد شد. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.",اگر داده های شما در HTML باشد، لطفا کدهای HTML دقیق را با برچسب تگ کنید. apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,داده ها اغلب آسان است حدس بزنند. @@ -2168,7 +2206,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,آیکون دسکتاپ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,این سند را لغو کرد apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,محدوده زمانی -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,تنظیمات> مجوز کاربر apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} قدردانی {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,ارزش ها تغییر کرده اند apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,خطا در اعلان @@ -2233,6 +2270,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,حذف فله DocType: DocShare,Document Name,نام سند apps/frappe/frappe/config/customization.py,Add your own translations,ترجمه های خود را اضافه کنید +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,فهرست را پایین بیاورید DocType: S3 Backup Settings,eu-central-1,eu-central-1 DocType: Auto Repeat,Yearly,سالانه apps/frappe/frappe/public/js/frappe/model/model.js,Rename,تغییر نام دهید @@ -2283,6 +2321,7 @@ DocType: Workflow State,plane,سطح apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,خطای مجموعه مخرب لطفا با مدیر تماس بگیرید apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,نمایش گزارش DocType: Auto Repeat,Auto Repeat Schedule,خودکار تکرار برنامه +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,مشاهده نمایه DocType: Address,Office,دفتر DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} روز پیش @@ -2316,7 +2355,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,گ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,تنظیمات من apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,نام گروه نمیتواند خالی باشد DocType: Workflow State,road,جاده -DocType: Website Route Redirect,Source,منبع +DocType: Contact,Source,منبع apps/frappe/frappe/www/third_party_apps.html,Active Sessions,جلسات فعال apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,در یک فرم می توان تنها یک فلاش داشته باشد apps/frappe/frappe/public/js/frappe/chat.js,New Chat,گپ جدید @@ -2338,6 +2377,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,لطفا آدرس مجاز را وارد کنید DocType: Email Account,Send Notification to,ارسال هشدار به apps/frappe/frappe/config/integrations.py,Dropbox backup settings,تنظیمات پشتیبان Dropbox +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,در طی نسل نشینی چیزی اشتباهی رخ داد. روی {0} کلیک کنید تا یک مورد جدید ایجاد کنید. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,تمام تنظیمات را حذف کنید؟ apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,فقط مدیر می تواند ویرایش کند DocType: Auto Repeat,Reference Document,سند مرجع @@ -2362,6 +2402,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,کاربران میتوانند نقشهای خود را از صفحه User خود تنظیم کنند. DocType: Website Settings,Include Search in Top Bar,شامل جستجو در نوار بالا apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[فوری] هنگام ایجاد٪ s برای٪ s تکراری +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,میانبرهای جهانی DocType: Help Article,Author,نویسنده DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,سند برای فیلترهای داده شده یافت نشد @@ -2397,10 +2438,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}",{0}، ردیف {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.",اگر شما در حال آپلود رکوردهای جدید، "نامگذاری سری" در صورتی که در حال حاضر باشد، اجباری می شود. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,خواص ویرایش -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,مثلا زمانی که {0} باز است باز می شود +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,مثلا زمانی که {0} باز است باز می شود DocType: Activity Log,Timeline Name,نام جدول زمانی DocType: Comment,Workflow,گردش کار apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,لطفا URL اصلی را در کلید ورود اجتماعی برای Frappe تنظیم کنید +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,میانبرهای صفحه کلید DocType: Portal Settings,Custom Menu Items,آیتم های منوی سفارشی apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,طول {0} باید بین 1 تا 1000 باشد apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,اتصال از دست رفته است برخی از ویژگی های ممکن است کار نکند. @@ -2463,6 +2505,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,ردیف ا DocType: DocType,Setup,برپایی apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} با موفقیت ایجاد شد apps/frappe/frappe/www/update-password.html,New Password,رمز عبور جدید +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,فیلد را انتخاب کنید apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,این مکالمه را ترک کنید DocType: About Us Settings,Team Members,اعضای تیم DocType: Blog Settings,Writers Introduction,معرفی نویسندگان @@ -2532,13 +2575,12 @@ DocType: Chat Room,Name,نام DocType: Communication,Email Template,قالب ایمیل DocType: Energy Point Settings,Review Levels,سطوح بررسی DocType: Print Format,Raw Printing,چاپ خام -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,هنگامی که نمونه آن باز است نمی توان {0} باز کرد +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,هنگامی که نمونه آن باز است نمی توان {0} باز کرد DocType: DocType,"Make ""name"" searchable in Global Search","نام" را در جستجوی جهانی جستجو کنید DocType: Data Migration Mapping,Data Migration Mapping,نقشه برداری مهاجرت داده DocType: Data Import,Partially Successful,بخشی از موفقیت DocType: Communication,Error,خطا apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype را نمی توان از {0} تا {1} در ردیف {2} تغییر داد -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","خطا در اتصال به برنامه سینی QZ ...

برای استفاده از قابلیت چاپ خام باید برنامه QZ Tray را نصب و اجرا کنید.

برای دانلود و نصب QZ Tray اینجا را کلیک کنید .
برای اطلاعات بیشتر در مورد چاپ خام اینجا کلیک کنید ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,عکس گرفتن apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,اجتناب از سال هایی که با شما همراه است. DocType: Web Form,Allow Incomplete Forms,اجازه ندهیم فرم ها @@ -2634,7 +2676,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",هدف = "_blank" را انتخاب کنید تا در یک صفحه جدید باز شود. DocType: Portal Settings,Portal Menu,منوی پورتال DocType: Website Settings,Landing Page,صفحه فرود -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,لطفا ثبت نام کنید یا برای شروع وارد شوید DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",گزینه های تماس، مانند "درخواست فروش، پشتیبانی پرس و جو" و غیره هر یک در یک خط جدید و یا جدا از کاما. apps/frappe/frappe/twofactor.py,Verfication Code,کد تأیید apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} قبلا لغو شده است @@ -2720,6 +2761,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,نقشه مها DocType: Address,Sales User,فروشنده فروش apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)",تغییر خواص فیلد (پنهان کردن، فقط خواندنی، مجوز و غیره) DocType: Property Setter,Field Name,نام زمینه +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,مشتری DocType: Print Settings,Font Size,اندازه فونت DocType: User,Last Password Reset Date,تاریخ آخرین رمز عبور تنظیم مجدد DocType: System Settings,Date and Number Format,تاریخ و شماره فرمت @@ -2785,6 +2827,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,گره گروه apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,ادغام با موجود است DocType: Blog Post,Blog Intro,معرفی وبلاگ apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,ذکر جدید +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,پرش به میدان DocType: Prepared Report,Report Name,نام گزارش apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,لطفا آخرین سند را دریافت کنید. apps/frappe/frappe/core/doctype/communication/communication.js,Close,نزدیک @@ -2794,10 +2837,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,رویداد DocType: Social Login Key,Access Token URL,URL توالی دسترسی apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,لطفا کلیدهای دسترسی Dropbox را در پیکربندی سایت خود تنظیم کنید +DocType: Google Contacts,Google Contacts,مخاطبین گوگل DocType: User,Reset Password Key,کلید رمز عبور را بازنشانی کنید apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,تغییر داده شده توسط DocType: User,Bio,زیستی apps/frappe/frappe/limits.py,"To renew, {0}.",برای تمدید، {0}. +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,با موفقیت ذخیره شد +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,ارسال یک ایمیل به {0} برای پیوند آن اینجا. DocType: File,Folder,پوشه DocType: DocField,Perm Level,سطح پویا DocType: Print Settings,Page Settings,تنظیمات صفحه @@ -2827,6 +2873,7 @@ DocType: Workflow State,remove-sign,حذف نشانه DocType: Dashboard Chart,Full,پر شده DocType: DocType,User Cannot Create,کاربر نمیتواند ایجاد کند apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,شما {0} نقطه را به دست آوردید +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,تنظیم> کاربر DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.",اگر این را تنظیم کنید، این مورد در زیر یک والد انتخاب شده کشویی قرار خواهد گرفت. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,بدون ایمیل apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,زمینه های زیر گم شده اند: @@ -2840,13 +2887,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,ن DocType: Web Form,Web Form Fields,زمینه های فرم وب DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,فرم قابل ویرایش کاربر در وب سایت -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,{0} دائما لغو کنید؟ +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,{0} دائما لغو کنید؟ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,گزینه 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,مجموعها apps/frappe/frappe/utils/password_strength.py,This is a very common password.,این یک رمز عبور بسیار معمولی است. DocType: Personal Data Deletion Request,Pending Approval,تأیید در انتظار apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,سند را نمی توان درست کرد apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},برای {0} مجاز نیست: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,هیچ مقداری برای نشان دادن وجود ندارد DocType: Personal Data Download Request,Personal Data Download Request,درخواست داده شخصی برای دریافت اطلاعات apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} این سند را با {1} به اشتراک گذاشت apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},{0} را انتخاب کنید @@ -2862,7 +2910,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},این ایمیل به {0} فرستاده شد و به {1} کپی شد apps/frappe/frappe/email/smtp.py,Invalid login or password,رمز عبور یا نام کاربری صحیح نمی باشد DocType: Social Login Key,Social Login Key,کلید ورود به سیستم اجتماعی -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,لطفا حساب پست الکترونیک پیش فرض را از Setup> Email> Account Email تنظیم کنید apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,فیلترها ذخیره شده اند DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",چطور این ارز باید فرمت شود؟ اگر تنظیم نشده باشد، از پیش فرضهای سیستم استفاده خواهد کرد apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} به حالت {2} تنظیم شده است @@ -2988,6 +3035,7 @@ DocType: User,Location,محل apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,بدون اطلاعات DocType: Website Meta Tag,Website Meta Tag,متا تگ وب سایت DocType: Workflow State,film,فیلم +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,کپی به کلیپ بورد apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} تنظیمات یافت نشد apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,برچسب مجاز است DocType: Webhook,Webhook Headers,سربرگ های Webhook @@ -3196,7 +3244,7 @@ DocType: Address,Address Line 1,آدرس خط 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,برای نوع سند apps/frappe/frappe/model/base_document.py,Data missing in table,داده های موجود در جدول apps/frappe/frappe/utils/bot.py,Could not identify {0},{0} شناسایی نشد -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,این فرم پس از بارگذاری آن اصلاح شده است +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,این فرم پس از بارگذاری آن اصلاح شده است apps/frappe/frappe/www/login.html,Back to Login,بازگشت به صفحه ورود apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,تنظیم نشده DocType: Data Migration Mapping,Pull,کشیدن @@ -3264,6 +3312,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,نقشه جدول ک apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,برای تنظیم حساب ایمیل، لطفا رمز عبور خود را وارد کنید: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,بیش از حد بسیاری در یک درخواست می نویسد. لطفا درخواست های کوچکتر ارسال کنید DocType: Social Login Key,Salesforce,Salesforce +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},وارد کردن {0} از {1} DocType: User,Tile,کاشی apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} اتاق باید حداقل یک کاربر داشته باشد. DocType: Email Rule,Is Spam,هرزنامه @@ -3301,7 +3350,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,پوشه بستن DocType: Data Migration Run,Pull Update,برداشت را بکشید apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},ادغام {0} به {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,"

هیچ نتیجه ای برای '

" DocType: SMS Settings,Enter url parameter for receiver nos,پارامتر url برای گیرنده ns را وارد کنید apps/frappe/frappe/utils/jinja.py,Syntax error in template,خطای نحوی در الگو apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,لطفا مقدار فیلتر را در جدول گزارش فیلتر تنظیم کنید. @@ -3314,6 +3362,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.",با عرض DocType: System Settings,In Days,در روزها DocType: Report,Add Total Row,مجموع ردیف اضافه کنید apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,شروع جلسه نتواند +DocType: Translation,Verified,تایید شده DocType: Print Format,Custom HTML Help,راهنمای سفارشی HTML DocType: Address,Preferred Billing Address,آدرس پرداختی ترجیحی apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,اختصاص یافته به @@ -3328,7 +3377,6 @@ DocType: Help Article,Intermediate,حد واسط DocType: Module Def,Module Name,نام ماژول DocType: OAuth Authorization Code,Expiration time,زمان انقضا apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.",تنظیم پیش فرض قالب، اندازه صفحه، سبک چاپ و غیره -apps/frappe/frappe/desk/like.py,You cannot like something that you created,شما نمی توانید چیزی را که ایجاد کردید دوست داشته باشید DocType: System Settings,Session Expiry,پایان جلسه DocType: DocType,Auto Name,نام خودرو apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,پیوست ها را انتخاب کنید @@ -3356,6 +3404,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,صفحه سیستم DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,توجه: به طور پیش فرض ایمیل برای پشتیبان گیری شکست خورده فرستاده می شود. DocType: Custom DocPerm,Custom DocPerm,DocPerm سفارشی +DocType: Translation,PR sent,PR فرستاده شد DocType: Tag Doc Category,Doctype to Assign Tags,Doctype برای تخصیص برچسب ها DocType: Address,Warehouse,انبار apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,راه اندازی Dropbox @@ -3423,7 +3472,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + برای اضافه کردن نظر وارد شوید apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,فیلد {0} قابل انتخاب نیست DocType: User,Birth Date,تاریخ تولد -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,با عقب نشینی گروه DocType: List View Setting,Disable Count,غیر فعال کردن تعداد DocType: Contact Us Settings,Email ID,آدرس ایمیل apps/frappe/frappe/utils/password.py,Incorrect User or Password,کاربر یا رمز عبور نادرست @@ -3458,6 +3506,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,این نقش به روز رسانی مجوز کاربر برای یک کاربر DocType: Website Theme,Theme,موضوع DocType: Web Form,Show Sidebar,نمایش نوار کناری +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,ادغام Google Contacts. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,صندوق ورودی پیش فرض apps/frappe/frappe/www/login.py,Invalid Login Token,نام کاربری نامعتبر apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,برای اولین بار نام و رکورد را ذخیره کنید. @@ -3485,7 +3534,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,لطفا اصلاح کنید DocType: Top Bar Item,Top Bar Item,مورد بالا نوار ,Role Permissions Manager,مدیریت مجوزهای نقش -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,خطاهایی وجود داشت. لطفا این را گزارش دهید +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} سال (ها) قبل apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,زن DocType: System Settings,OTP Issuer Name,OTP نام صادر کننده apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,اضافه کردن به انجام @@ -3585,6 +3634,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings",تنظ apps/frappe/frappe/model/document.py,none of,هیچکدام از DocType: Desktop Icon,Page,صفحه DocType: Workflow State,plus-sign,علامت مثبت +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,پاک کردن کش و بارگیری مجدد apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,آیا می توانم به روز رسانی: نامعتبر / لینک منقضی شده. DocType: Kanban Board Column,Yellow,رنگ زرد 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 باشد) @@ -3599,6 +3649,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,هی DocType: Activity Log,Date,تاریخ DocType: Communication,Communication Type,نوع ارتباط apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,جدول والدین +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,فهرست را انتخاب کنید DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,نمایش خطای کامل و اجازه دادن به گزارش مشکلات به توسعه دهنده DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3620,7 +3671,6 @@ DocType: Notification Recipient,Email By Role,ایمیل توسط رول apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,لطفا برای اضافه کردن بیش از {0} مشترکین ارتقا دهید apps/frappe/frappe/email/queue.py,This email was sent to {0},این ایمیل به {0} ارسال شد DocType: User,Represents a User in the system.,نمایه کاربر در سیستم -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},صفحه {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,فرمت جدید را شروع کنید apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,یک نظر اضافه کنید apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} از {1} diff --git a/frappe/translations/fi.csv b/frappe/translations/fi.csv index 8db2019641..a339f1c14e 100644 --- a/frappe/translations/fi.csv +++ b/frappe/translations/fi.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Ota kaltevuudet käyttöön DocType: DocType,Default Sort Order,Oletusluokitusjärjestys apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Näytetään vain Numeeriset kentät raportista +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Paina Alt-näppäintä käynnistääksesi ylimääräiset pikavalinnat valikossa ja sivupalkissa DocType: Workflow State,folder-open,kansio auki DocType: Customize Form,Is Table,Onko taulukko apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Liitetyn tiedoston avaaminen ei onnistu. Vientitkö sen CSV: nä? DocType: DocField,No Copy,Ei kopiota DocType: Custom Field,Default Value,Oletusarvo apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Liitä kohteeseen on pakollinen saapuville sähköpostiviesteille +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Synkronoi kontaktit DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Data Migration Mapping Detail apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Älä apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",PDF-tulostusta "raakatulostuksen" kautta ei ole vielä tuettu. Poista tulostimen kartoitus tulostinasetuksista ja yritä uudelleen. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} ja {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Suodattimia tallennettiin virheellisesti apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Syötä salasanasi apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Koti- ja liitetiedostojen kansioita ei voi poistaa +DocType: Email Account,Enable Automatic Linking in Documents,Ota automaattinen linkitys käyttöön asiakirjoissa DocType: Contact Us Settings,Settings for Contact Us Page,Yhteystiedot-sivun asetukset DocType: Social Login Key,Social Login Provider,Sosiaalisen kirjautumisen tarjoaja +DocType: Email Account,"For more information, click here.","Saat lisätietoja napsauttamalla tätä ." DocType: Transaction Log,Previous Hash,Edellinen Hash DocType: Notification,Value Changed,Arvo muuttui DocType: Report,Report Type,Raporttityyppi @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Energy Point -sääntö apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,Anna asiakastunnus ennen kuin sosiaalinen kirjautumistunnus on käytössä DocType: Communication,Has Attachment,Onko liite DocType: User,Email Signature,Sähköpostin allekirjoitus -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} vuosi sitten ,Addresses And Contacts,Osoitteet ja yhteystiedot apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Tämä Kanbanin hallitus on yksityinen DocType: Data Migration Run,Current Mapping,Nykyinen kartoitus @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Olet valinnut Sync Option -vaihtoehdon KAIKKI, se synkronoi kaikki \ t Tämä voi myös aiheuttaa viestinnän (sähköpostit) päällekkäisyyttä." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Viimeisin synkronoitu {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Otsikon sisältöä ei voi muuttaa +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Ei tuloksia haulla '

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Ei saa muuttaa {0} lähettämisen jälkeen apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Sovellus on päivitetty uuteen versioon, päivitä tämä sivu" DocType: User,User Image,Käyttäjän kuva @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Merki apps/frappe/frappe/public/js/frappe/chat.js,Discard,hylätä DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Valitse kuvan leveys 150px läpinäkyvällä taustalla parhaan tuloksen saamiseksi. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,uusiutuneen +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} arvot valittu DocType: Blog Post,Email Sent,Sähköposti lähetetty DocType: Communication,Read by Recipient On,Lue vastaanottajan päällä DocType: User,Allow user to login only after this hour (0-24),Salli käyttäjän kirjautua vasta tämän tunnin jälkeen (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Vientimoduuli DocType: DocType,Fields,Fields -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Et saa tulostaa tätä asiakirjaa +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Et saa tulostaa tätä asiakirjaa apps/frappe/frappe/public/js/frappe/model/model.js,Parent,vanhempi apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.",Istunto on päättynyt ja kirjaudu uudelleen jatkaaksesi. DocType: Assignment Rule,Priority,prioriteetti @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Nollaa OTP-salaisu DocType: DocType,UPPER CASE,YLÖS CASE apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,Aseta sähköpostiosoite DocType: Communication,Marked As Spam,Merkitty roskapostiksi +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"Sähköpostiosoite, jonka Google-yhteystiedot synkronoidaan." apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Tuo tilaajat apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Tallenna suodatin DocType: Address,Preferred Shipping Address,Ensisijainen toimitusosoite DocType: GCalendar Account,The name that will appear in Google Calendar,Google-kalenterissa näkyvä nimi +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Napsauta {0} luodaksesi Päivitä tunnus. DocType: Email Account,Disable SMTP server authentication,Poista SMTP-palvelimen todennus käytöstä DocType: Email Account,Total number of emails to sync in initial sync process ,Synkronoitavien sähköpostiviestien kokonaismäärä alkuperäisessä synkronointiprosessissa DocType: System Settings,Enable Password Policy,Salasanan käyttöönotto @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Syötä koodi apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Ei mukana DocType: Auto Repeat,Start Date,Aloituspäivämäärä apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Aseta kaavio +DocType: Website Theme,Theme JSON,Teema JSON apps/frappe/frappe/www/list.py,My Account,Tilini DocType: DocType,Is Published Field,Onko julkaistu kenttä DocType: DocField,Set non-standard precision for a Float or Currency field,Aseta ei-standardi tarkkuus Float- tai Valuutta-kenttään @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Lisää Reference: {{ reference_doctype }} {{ reference_name }} lähettääksesi asiakirjan viittauksen DocType: LDAP Settings,LDAP First Name Field,LDAP-etunimi -kenttä apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Oletuslähetys ja Saapuneet-kansio -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Asetukset> Muokkaa lomaketta apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",Päivittämistä varten voit päivittää vain valikoivia sarakkeita. apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1','Tarkista' -kentän oletusarvon on oltava joko '0' tai '1' apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Jaa tämä asiakirja @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Verkkotunnukset HTML DocType: Blog Settings,Blog Settings,Blogin asetukset apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DocType-nimen pitäisi alkaa kirjaimella ja se voi koostua vain kirjaimista, numeroista, välilyönteistä ja alaviivoista" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Asetukset> Käyttäjäoikeudet DocType: Communication,Integrations can use this field to set email delivery status,Integraatiot voivat käyttää tätä kenttää sähköpostin lähetystilan määrittämiseen apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Raitamaksujen yhdyskäytävän asetukset DocType: Print Settings,Fonts,kirjasimet DocType: Notification,Channel,kanava DocType: Communication,Opened,avattu DocType: Workflow Transition,Conditions,olosuhteet +apps/frappe/frappe/config/website.py,A user who posts blogs.,"Käyttäjä, joka lähettää blogeja." apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Eikö sinulla ole tiliä? Kirjaudu apps/frappe/frappe/utils/file_manager.py,Added {0},Lisätty {0} DocType: Newsletter,Create and Send Newsletters,Luo ja lähetä uutiskirjeitä DocType: Website Settings,Footer Items,Alatunniste +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Aseta oletusarvoinen sähköpostitili Asetukset> Sähköposti> Sähköpostitili DocType: Website Slideshow Item,Website Slideshow Item,Verkkosivuston diaesityksen kohta apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Rekisteröi OAuth Client App DocType: Error Snapshot,Frames,kehykset @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Taso 0 on asiakirjojen käyttöoikeudet, korkeammat tasot" DocType: Address,City/Town,Kaupunki kaupunki DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Tämä nollaa nykyisen teeman, haluatko varmasti jatkaa?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Pakolliset kentät vaaditaan kohdassa {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Virhe yhteyden muodostamisessa sähköpostitiliin {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Toistuvuuden luomisessa tapahtui virhe @@ -528,7 +537,7 @@ DocType: Event,Event Category,Tapahtumaluokka apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Sarakkeet perustuvat apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Muokkaa otsikkoa DocType: Communication,Received,Otettu vastaan -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Et voi käyttää tätä sivua. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Et voi käyttää tätä sivua. DocType: User Social Login,User Social Login,Käyttäjätunnus apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,"Kirjoita Python-tiedosto samaan kansioon, johon tämä on tallennettu, ja palaa sarakkeeseen ja tulokseen." DocType: Contact,Purchase Manager,Ostopäällikkö @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Mä apps/frappe/frappe/utils/data.py,Operator must be one of {0},Operaattorin on oltava yksi {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Jos omistaja DocType: Data Migration Run,Trigger Name,Trigger-nimi -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Kirjoita otsikko ja esittely blogiisi. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Poista kenttä apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Kutista kaikki apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Taustaväri @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,Baari DocType: SMS Settings,Enter url parameter for message,Anna viestin URL-parametri apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Uusi mukautettu tulostusmuoto apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} on jo olemassa +DocType: Workflow Document State,Is Optional State,Onko valinnainen valtio DocType: Address,Purchase User,Osta käyttäjä DocType: Data Migration Run,Insert,Insert DocType: Web Form,Route to Success Link,Reitti onnistuneeseen linkkiin @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Käytt DocType: File,Is Home Folder,Onko kotikansio apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Tyyppi: DocType: Post,Is Pinned,On kiinnitetty -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Ei oikeutta '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Ei oikeutta '{0}' {1} DocType: Patch Log,Patch Log,Patch Log DocType: Print Format,Print Format Builder,Print Format Builder 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","Jos tämä on käytössä, kaikki käyttäjät voivat kirjautua mihin tahansa IP-osoitteeseen käyttämällä kahta tekijää. Tämä voidaan asettaa vain tietylle käyttäjälle käyttäjäsivulla" apps/frappe/frappe/utils/data.py,only.,vain. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,Ehto '{0}' on virheellinen DocType: Auto Email Report,Day of Week,Viikonpäivä +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Ota Google-sovellus käyttöön Google-asetuksissa. DocType: DocField,Text Editor,Tekstieditori apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Leikata apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Etsi tai kirjoita komento @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,DB-varmuuskopioiden määrä ei voi olla pienempi kuin 1 DocType: Workflow State,ban-circle,kielto-ympyrä DocType: Data Export,Excel,kunnostautua +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Otsikko, leipäkirjat ja metatunnisteet" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,"Tuki Sähköpostiosoite, jota ei ole määritelty" DocType: Comment,Published,Julkaistu DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.",Huomautus: Parhaan tuloksen saavuttamiseksi kuvien on oltava kooltaan ja leveyssuhteiltaan korkeita. @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Ajastimen viimeinen tapahtuma apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Raportti kaikista asiakirjan osuuksista DocType: Website Sidebar Item,Website Sidebar Item,Verkkosivun sivupalkin kohde apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Tehdä +DocType: Google Settings,Google Settings,Google-asetukset apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Valitse maa, aikavyöhyke ja valuutta" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Syötä staattiset url-parametrit tähän (esim. Lähettäjä = ERPNext, käyttäjätunnus = ERPNext, salasana = 1234 jne.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Ei sähköpostitiliä @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth-kantotunniste ,Setup Wizard,Ohjattu asennustoiminto apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Vaihda kaavio +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,synkronointia DocType: Data Migration Run,Current Mapping Action,Nykyinen kartoitustoiminto DocType: Email Account,Initial Sync Count,Alkuperäinen synkronointilukema apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Yhteystiedot-sivun asetukset. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Tulostusmuodon tyyppi apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Tähän kriteereihin ei ole määritetty oikeuksia. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Laajenna kaikki +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ei oletushakemistomallia. Luo uusi asetus Setup> Printing and Branding> Address Template. DocType: Tag Doc Category,Tag Doc Category,Tag Doc -luokka DocType: Data Import,Generated File,Luotu tiedosto apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Huomautuksia @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Aikajanan kentän on oltava linkki tai dynaaminen linkki DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Ilmoitukset ja joukkopostit lähetetään tästä lähtevästä palvelimesta. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Tämä on yleinen 100 paras salasana. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Lähetä pysyvästi {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Lähetä pysyvästi {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} ei ole olemassa, valitse uusi yhdistettävä kohde" DocType: Energy Point Rule,Multiplier Field,Kerroinkenttä DocType: Workflow,Workflow State Field,Työnkulun tila -kenttä @@ -880,6 +894,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} arvosti työtäsi {1} {2} -pisteillä DocType: Auto Email Report,Zero means send records updated at anytime,Nolla tarkoittaa lähettää päivitettyjä päivityksiä milloin tahansa apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Arvoa ei voi muuttaa {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API -asetukset. DocType: System Settings,Force User to Reset Password,Pakota käyttäjä nollaamaan salasanan apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Raportin rakentaja raportoi raportin rakentajan raportit suoraan. Ei mitään tehtävää. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Muokkaa suodatinta @@ -933,7 +948,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,varte DocType: S3 Backup Settings,eu-north-1,EU-pohjois-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Vain yksi sääntö sallitaan samalla roolilla, tasolla ja {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Et voi päivittää tätä Web-lomakkeen asiakirjaa -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Suurin lisäysraja tämän tietueen saavuttamiseksi. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Suurin lisäysraja tämän tietueen saavuttamiseksi. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,"Varmista, että viitetiedonsiirtoasiakirjat eivät ole kiertokytkettyinä." DocType: DocField,Allow in Quick Entry,Salli Quick Entry DocType: Error Snapshot,Locals,paikalliset @@ -965,7 +980,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Poikkeustyyppi apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},"Ei voi poistaa tai peruuttaa, koska {0} {1} on linkitetty {2} {3} {4}" apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,Järjestelmänvalvoja voi nollata vain OTP-salaisuuden. -DocType: Web Form Field,Page Break,Sivunvaihto DocType: Website Script,Website Script,Verkkosivuston komentosarja DocType: Integration Request,Subscription Notification,Tilausilmoitus DocType: DocType,Quick Entry,Quick Entry @@ -982,6 +996,7 @@ DocType: Notification,Set Property After Alert,Aseta ominaisuuden jälkeen häly apps/frappe/frappe/__init__.py,Thank you,Kiitos apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Löysää webhookeja sisäistä integrointia varten apps/frappe/frappe/config/settings.py,Import Data,Tuo tietoja +DocType: Translation,Contributed Translation Doctype Name,Osallistunut käännös Doctype Name DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID DocType: Review Level,Review Level,Tarkistustaso @@ -1000,7 +1015,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Onnistunut Valmis apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Luettelo apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,arvostaa -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Uusi {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Onko ensisijainen yhteys DocType: Print Format,Raw Commands,Raakakomennot apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Tulostusmuotojen tyylit @@ -1041,6 +1055,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Taustatapahtumien apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Etsi {0} {1} DocType: Email Account,Use SSL,Käytä SSL: ää DocType: DocField,In Standard Filter,Standardisuodattimessa +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Ei synkronoitavia Google-yhteystietoja. DocType: Data Migration Run,Total Pages,Sivuja yhteensä apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,"{0}: Kenttä '{1}' ei voi olla niin ainutlaatuinen, että sillä on ei-ainutlaatuisia arvoja" DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Jos tämä on käytössä, käyttäjille ilmoitetaan aina kirjautumisen yhteydessä. Jos sitä ei ole otettu käyttöön, käyttäjille ilmoitetaan vain kerran." @@ -1061,7 +1076,7 @@ DocType: Assignment Rule,Automation,automaatio apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Tiedostojen purkaminen ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Hae '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Jotain meni pieleen -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Tallenna ennen liittämistä. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,Tallenna ennen liittämistä. DocType: Version,Table HTML,Taulukko HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,napa DocType: Page,Standard,standardi @@ -1139,12 +1154,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Ei tuloksia apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} tietueet poistettu apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,Jotain meni pieleen pudotuslaatikon käyttöoikeustunnuksen luomisessa. Tarkista lisätietoja virheilmoituksesta. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Jälkeläiset -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ei oletushakemistomallia. Luo uusi asetus Setup> Printing and Branding> Address Template. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google-yhteystiedot on määritetty. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Piilota yksityiskohdat apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Fonttityylit apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Tilaus vanhenee {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Todennus epäonnistui sähköpostiviestien vastaanottamisen yhteydessä sähköpostitililtä {0}. Viesti palvelimelta: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Tilastot perustuvat viime viikon suorituskykyyn ({0} - {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,"Automaattinen linkitys voidaan aktivoida vain, jos Saapuva on käytössä." DocType: Website Settings,Title Prefix,Otsikon etuliite apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Käytettävät todennusohjelmat ovat: DocType: Bulk Update,Max 500 records at a time,Enintään 500 tietuetta kerrallaan @@ -1177,7 +1193,7 @@ DocType: Auto Email Report,Report Filters,Ilmoita suodattimet apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Valitse Sarakkeet DocType: Event,Participants,osallistujien DocType: Auto Repeat,Amended From,Muutettu -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Tiedot on toimitettu +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Tiedot on toimitettu DocType: Help Category,Help Category,Ohjeluokka apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 kuukausi apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Valitse olemassa oleva muoto muokata tai aloittaa uusi muoto. @@ -1224,7 +1240,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Kenttä seurataan DocType: User,Generate Keys,Luo avaimet DocType: Comment,Unshared,jakamaton -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Tallennetut +DocType: Translation,Saved,Tallennetut DocType: OAuth Client,OAuth Client,OAuth-asiakas DocType: System Settings,Disable Standard Email Footer,Poista Standard-sähköpostin alatunniste käytöstä apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Tulostusmuoto {0} on poistettu käytöstä @@ -1255,6 +1271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Viimeksi päi DocType: Data Import,Action,Toiminta apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Asiakkaan avain vaaditaan DocType: Chat Profile,Notifications,ilmoitukset +DocType: Translation,Contributed,vaikuttaneet DocType: System Settings,mm/dd/yyyy,mm / DD / YYYY DocType: Report,Custom Report,Mukautettu raportti DocType: Workflow State,info-sign,info-kyltti @@ -1271,6 +1288,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Ottaa yhteyttä DocType: LDAP Settings,LDAP Username Field,LDAP-käyttäjätunnus apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} -kenttää ei voi asettaa yksilölliseksi {1}, koska olemassa ei ole ainutlaatuisia olemassa olevia arvoja" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Asetukset> Muokkaa lomaketta DocType: User,Social Logins,Sosiaaliset kirjautumiset DocType: Workflow State,Trash,roska DocType: Stripe Settings,Secret Key,Salainen avain @@ -1328,6 +1346,7 @@ DocType: DocType,Title Field,Otsikkokenttä apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Lähtevään sähköpostipalvelimeen ei voitu muodostaa yhteyttä DocType: File,File URL,Tiedoston URL-osoite DocType: Help Article,Likes,tykkää +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google-yhteystiedot Integrointi on poistettu käytöstä. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Sinun täytyy olla kirjautuneena ja järjestelmänvalvojan roolilla voit käyttää varmuuskopioita. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Ensimmäinen taso DocType: Blogger,Short Name,Lyhyt nimi @@ -1345,13 +1364,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Tuo Zip DocType: Contact,Gender,sukupuoli DocType: Workflow State,thumbs-down,peukut alas -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Jonon pitäisi olla yksi {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Ilmoitusta ei voi asettaa asiakirjatyypille {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Järjestelmänhallinnan lisääminen tähän käyttäjään, koska järjestelmänvalvojan on oltava vähintään yksi" apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Tervetuloa sähköposti lähetetty DocType: Transaction Log,Chaining Hash,Chaining Hash DocType: Contact,Maintenance Manager,huoltomies +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Vertailun vuoksi käytä> 5, <10 tai = 324. Käytä alueita 5:10 (arvojen välillä 5 ja 10)." apps/frappe/frappe/utils/bot.py,show,show apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Jaa URL-osoite apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Ei-tuettu tiedostomuoto @@ -1373,7 +1392,7 @@ DocType: Communication,Notification,ilmoitus DocType: Data Import,Show only errors,Näytä vain virheet DocType: Energy Point Log,Review,Arvostelu apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Rivit poistettu -DocType: GSuite Settings,Google Credentials,Google-tunnukset +DocType: Google Settings,Google Credentials,Google-tunnukset apps/frappe/frappe/www/login.html,Or login with,Tai kirjaudu sisään apps/frappe/frappe/model/document.py,Record does not exist,Tietue ei ole olemassa apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Uusi raportin nimi @@ -1398,6 +1417,7 @@ DocType: Desktop Icon,List,Lista DocType: Workflow State,th-large,th-iso apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,"{0}: Ei voi asettaa Assign Submit -toimintoa, jos ei Submittable" apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Ei linkitetty mihinkään tietueeseen +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Virhe yhteyden muodostamisessa QZ-alustasovellukseen ...

Sinun täytyy olla asennettuna ja käynnissä QZ Tray -sovellus, jotta voit käyttää Raw Print -ominaisuutta.

Lataa ja asenna QZ-lokero napsauttamalla tätä .
Klikkaa tästä saadaksesi lisätietoja raaka-tulostuksesta ." DocType: Chat Message,Content,pitoisuus DocType: Workflow Transition,Allow Self Approval,Salli itsensä hyväksyntä apps/frappe/frappe/www/qrcode.py,Page has expired!,Sivu on vanhentunut! @@ -1414,6 +1434,7 @@ DocType: Workflow State,hand-right,hand-oikeus DocType: Website Settings,Banner is above the Top Menu Bar.,Banner on ylävalikkopalkin yläpuolella. apps/frappe/frappe/www/update-password.html,Invalid Password,väärä salasana apps/frappe/frappe/utils/data.py,1 month ago,1 kuukausi sitten +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Salli Google-yhteystietojen käyttö DocType: OAuth Client,App Client ID,Sovelluksen asiakastunnus DocType: DocField,Currency,valuutta DocType: Website Settings,Banner,lippu @@ -1425,7 +1446,7 @@ apps/frappe/frappe/utils/goal.py,Goal,tavoite DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Jos roolilla ei ole pääsyä tasolle 0, niin korkeammat tasot ovat merkityksettömiä." DocType: ToDo,Reference Type,Viitetyyppi -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Sallii DocType, DocType. Ole varovainen!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Sallii DocType, DocType. Ole varovainen!" DocType: Domain Settings,Domain Settings,Verkkotunnuksen asetukset DocType: Auto Email Report,Dynamic Report Filters,Dynaamisen raportin suodattimet DocType: Energy Point Log,Appreciation,arvostus @@ -1467,6 +1488,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,us-länsi-2 DocType: DocType,Is Single,On Single apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Luo uusi muoto +DocType: Google Contacts,Authorize Google Contacts Access,Anna Google-yhteystietojen käyttöoikeudet DocType: S3 Backup Settings,Endpoint URL,Endpoint-URL-osoite DocType: Social Login Key,Google,Google DocType: Contact,Department,osasto @@ -1481,7 +1503,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Määritä DocType: List Filter,List Filter,Luettelosuodatin DocType: Dashboard Chart Link,Chart,Kartoittaa apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Ei voi poistaa -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Vahvista tämä asiakirja +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Vahvista tämä asiakirja apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} on jo olemassa. Valitse toinen nimi apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Sinulla on tallentamattomia muutoksia tähän lomakkeeseen. Tallenna ennen kuin jatkat. apps/frappe/frappe/model/document.py,Action Failed,Toimi epäonnistui @@ -1563,6 +1585,7 @@ DocType: DocField,Display,Näyttö apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Vastaa kaikille DocType: Calendar View,Subject Field,Aihe-kenttä apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Istunnon päättymisen tulee olla muodossa {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},Hakeminen: {0} DocType: Workflow State,zoom-in,lähennä apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Yhteyttä palvelimeen ei voitu muodostaa apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Päivämäärän {0} on oltava muodossa: {1} @@ -1574,8 +1597,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Kuvake näkyy painikkeessa DocType: Role Permission for Page and Report,Set Role For,Aseta rooli +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Automaattinen linkitys voidaan aktivoida vain yhdellä sähköpostitilillä. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Ei sähköpostitilejä +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Sähköpostitiliä ei ole määritetty. Luo uusi sähköpostitili Asetukset> Sähköposti> Sähköpostitili apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,toimeksianto +DocType: Google Contacts,Last Sync On,Viimeinen synkronointi käytössä apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},{0} saavutti automaattisen säännön {1} apps/frappe/frappe/config/website.py,Portal,Portaali apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Kiitos sähköpostistasi @@ -1596,7 +1622,6 @@ DocType: GSuite Settings,GSuite Settings,GSuite-asetukset DocType: Integration Request,Remote,Etä DocType: File,Thumbnail URL,Pienoiskuvan URL-osoite apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Lataa raportti -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Asetukset> Käyttäjä apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},{0}: lle vietyjä mukautuksia:
{1} DocType: GCalendar Account,Calendar Name,Kalenterin nimi apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Käyttäjätunnuksesi on @@ -1646,6 +1671,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Siirr apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Kuvan kentän on oltava kelvollinen kentänimi apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,"Sinun täytyy olla kirjautuneena, jotta pääset tähän sivuun" DocType: Assignment Rule,Example: {{ subject }},Esimerkki: {{topic}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Kentänimi {0} on rajoitettu apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Et voi poistaa vain luku -arvoa kenttään {0} DocType: Social Login Key,Enable Social Login,Ota sosiaalinen sisäänkirjautuminen käyttöön DocType: Workflow,Rules defining transition of state in the workflow.,"Säännöt, jotka määrittävät tilanvaihdon työnkulussa." @@ -1665,10 +1691,10 @@ DocType: Website Settings,Route Redirects,Reitin uudelleenohjaukset apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Sähköposti Saapuneet apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},palautettu {0} nimellä {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Määritä asiakirjat automaattisesti käyttäjille +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Avaa Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Sähköpostimallit yleisiin kyselyihin. DocType: Letter Head,Letter Head Based On,Letter Head perustuu apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Sulje tämä ikkuna -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Maksu suoritettu DocType: Contact,Designation,nimitys DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Meta-tunnisteet @@ -1707,6 +1733,7 @@ DocType: System Settings,Choose authentication method to be used by all users,Va DocType: Error Snapshot,Parent Error Snapshot,Parent Error Snapshot DocType: GCalendar Account,GCalendar Account,GCalendar-tili DocType: Language,Language Name,Kielen nimi +DocType: Workflow Document State,Workflow Action is not created for optional states,Työnkulun toimintaa ei luoda valinnaisille tiloille DocType: Customize Form,Customize Form,Muokkaa lomaketta DocType: DocType,Image Field,Kuvan kenttä apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Lisätty {0} ({1}) @@ -1748,6 +1775,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Käytä tätä sääntöä, jos käyttäjä on omistaja" DocType: About Us Settings,Org History Heading,Org-historian otsikko apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,palvelinvirhe +DocType: Contact,Google Contacts Description,Google-yhteystietojen kuvaus apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Standardirooleja ei voi nimetä uudelleen DocType: Review Level,Review Points,Tarkastuspisteet apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Puuttuva parametri Kanban Board Name @@ -1765,7 +1793,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Ei kehittäjätilassa! Aseta site_config.json tai tee 'Custom' DocType. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,saavutti {0} pistettä DocType: Web Form,Success Message,Menestysviesti -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Vertailun vuoksi käytä> 5, <10 tai = 324. Käytä alueita 5:10 (arvojen välillä 5 ja 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",Kuvaus sivun luettelosta tavallisessa tekstissä vain pari riviä. (enintään 140 merkkiä) apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Näytä käyttöoikeudet DocType: DocType,Restrict To Domain,Rajoita verkkotunnukseen @@ -1787,6 +1814,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Ei esi apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Määritä määrä DocType: Auto Repeat,End Date,Päättymispäivä DocType: Workflow Transition,Next State,Seuraava valtio +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Google-yhteystiedot synkronoitiin. DocType: System Settings,Is First Startup,Onko ensimmäinen käynnistys apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},päivitetty osoitteeseen {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Muuttaa @@ -1836,6 +1864,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Kalenteri apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Tietojen tuontimalli DocType: Workflow State,hand-left,hand-vasen +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Valitse useita luettelon kohteita apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Varmuuskopion koko: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Linkitetty {0} DocType: Braintree Settings,Private Key,Yksityinen avain @@ -1878,13 +1907,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Kiinnostuksen kohde DocType: Bulk Update,Limit,Raja DocType: Print Settings,Print taxes with zero amount,"Tulosta verot, joiden määrä on nolla" -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Sähköpostitiliä ei ole määritetty. Luo uusi sähköpostitili Asetukset> Sähköposti> Sähköpostitili DocType: Workflow State,Book,Kirja DocType: S3 Backup Settings,Access Key ID,Tunnusluvun tunnus DocType: Chat Message,URLs,URL-osoitteita apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Nimet ja sukunimet ovat itsessään helposti arvattavia. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Ilmoita {0} DocType: About Us Settings,Team Members Heading,Tiimin jäsenet Otsikko +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Valitse luettelon kohde apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Asiakas {0} on asetettu tilaan {1} {2} DocType: Address Template,Address Template,Osoitemalli DocType: Workflow State,step-backward,step-taaksepäin @@ -1908,6 +1937,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Vie mukautetut käyttöoikeudet apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Ei mitään: Työnkulun loppu DocType: Version,Version,Versio +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Avaa luettelon kohde apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 kuukautta DocType: Chat Message,Group,Ryhmä apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Tiedoston URL-osoitteessa on ongelma: {0} @@ -1963,6 +1993,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 vuosi apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} palautti pisteesi {1} DocType: Workflow State,arrow-down,nuoli alaspäin DocType: Data Import,Ignore encoding errors,Ohita koodausvirheet +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Maisema DocType: Letter Head,Letter Head Name,Letter Head Name DocType: Web Form,Client Script,Client Script DocType: Assignment Rule,Higher priority rule will be applied first,Ensisijaisempaa sääntöä sovelletaan ensin @@ -2007,6 +2038,7 @@ DocType: Kanban Board Column,Green,Vihreä apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Vain pakolliset kentät ovat uusia tietueita varten. Voit poistaa ei-pakollisia sarakkeita, jos haluat." apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} täytyy aloittaa ja päättyä kirjaimella ja sisältää vain kirjaimia, tavuviivoja tai alaviivoja." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Käynnistä ensisijainen toiminta apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Luo käyttäjän sähköposti apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Lajittelukentän {0} on oltava kelvollinen kentänimi DocType: Auto Email Report,Filter Meta,Suodata Meta @@ -2035,6 +2067,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Aikajana-kenttä apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Ladataan... DocType: Auto Email Report,Half Yearly,Puolivuosittain +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Profiilini apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Viimeksi muokattu päivämäärä DocType: Contact,First Name,Etunimi DocType: Post,Comments,Kommentit @@ -2057,6 +2090,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Sisältö Hash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Viestejä {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} osoitettu {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Uusia Google-yhteystietoja ei synkronoitu. DocType: Workflow State,globe,maapallo apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Keskiarvo {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Poista virheraportit @@ -2083,6 +2117,8 @@ DocType: Workflow State,Inverse,käänteinen DocType: Activity Log,Closed,Suljettu DocType: Report,Query,tiedustelu DocType: Notification,Days After,Päivät jälkeen +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Sivun pikanäppäimet +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Muotokuva apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Pyyntö aikakatkaistiin DocType: System Settings,Email Footer Address,Sähköpostin alatunnisteen osoite apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energiapisteen päivitys @@ -2110,6 +2146,7 @@ For Select, enter list of Options, each on a new line.","Linkkien kohdalla kirjo apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 minuutti sitten apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Ei aktiivisia istuntoja apps/frappe/frappe/model/base_document.py,Row,Rivi +DocType: Contact,Middle Name,Toinen nimi apps/frappe/frappe/public/js/frappe/request.js,Please try again,Yritä uudelleen DocType: Dashboard Chart,Chart Options,Kaavioasetukset DocType: Data Migration Run,Push Failed,Push epäonnistui @@ -2138,6 +2175,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,kokoa-small DocType: Comment,Relinked,Relinked DocType: Role Permission for Page and Report,Roles HTML,HTML-roolit +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Mennä apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Työnkulku alkaa tallennuksen jälkeen. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Jos tiedot ovat HTML-muodossa, kopioi tarkka HTML-koodi tunnisteisiin." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Päivämäärät on usein helppo arvata. @@ -2166,7 +2204,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Työpöydän kuvake apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,peruutti tämän asiakirjan apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Ajanjakso -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Asetukset> Käyttäjän oikeudet apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} arvostettu {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Arvot muuttuvat apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Ilmoitusvirhe @@ -2231,6 +2268,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Bulk Delete DocType: DocShare,Document Name,Asiakirjan nimi apps/frappe/frappe/config/customization.py,Add your own translations,Lisää omia käännöksiäsi +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Siirry luetteloon alas DocType: S3 Backup Settings,eu-central-1,eu-Keski-1 DocType: Auto Repeat,Yearly,Vuosittain apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Nimeä uudelleen @@ -2281,6 +2319,7 @@ DocType: Workflow State,plane,kone apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Sisään asetettu virhe. Ota yhteyttä järjestelmänvalvojaan. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Näytä raportti DocType: Auto Repeat,Auto Repeat Schedule,Auto Repeat Schedule +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Näytä viite DocType: Address,Office,toimisto DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} päivää sitten @@ -2314,7 +2353,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Ta apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Asetukseni apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Ryhmän nimi ei voi olla tyhjä. DocType: Workflow State,road,tie -DocType: Website Route Redirect,Source,Lähde +DocType: Contact,Source,Lähde apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Aktiiviset istunnot apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Lomakkeessa voi olla vain yksi taitto apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Uusi keskustelu @@ -2336,6 +2375,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Anna valtuutuksen URL-osoite DocType: Email Account,Send Notification to,Lähetä ilmoitus apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox-varmuuskopiointiasetukset +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,Jotain meni pieleen merkki-sukupolven aikana. Luo uusi napsauttamalla {0}. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Poista kaikki mukautukset? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Vain ylläpitäjä voi muokata DocType: Auto Repeat,Reference Document,Viiteasiakirja @@ -2360,6 +2400,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Rooleja voidaan määrittää käyttäjille niiden Käyttäjän sivulta. DocType: Website Settings,Include Search in Top Bar,Sisällytä haku yläpalkissa apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Kiireellinen] Virhe luotaessa toistuvia% s: ta% s: lle +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globaalit pikakuvakkeet DocType: Help Article,Author,kirjailija DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Tiettyjä suodattimia ei löytynyt @@ -2395,10 +2436,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, rivi {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Jos lähetät uusia tietueita, "Naming Series" tulee pakolliseksi, jos se on olemassa." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Muokkaa ominaisuuksia -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,"Esimerkkinä ei voi avata, kun sen {0} on auki" +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,"Esimerkkinä ei voi avata, kun sen {0} on auki" DocType: Activity Log,Timeline Name,Aikajanan nimi DocType: Comment,Workflow,Työnkulku apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Aseta perus URL-osoite Frappen sosiaalisen kirjautumisen avaimeen +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Pikanäppäimet DocType: Portal Settings,Custom Menu Items,Mukautetut valikkokohdat apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,{0}: n pituuden tulisi olla 1 - 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Yhteys kadotettu. Jotkin toiminnot eivät ehkä toimi. @@ -2461,6 +2503,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Rivit lisä DocType: DocType,Setup,Perustaa apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} luotu onnistuneesti apps/frappe/frappe/www/update-password.html,New Password,uusi salasana +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Valitse Kenttä apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Jätä tämä keskustelu DocType: About Us Settings,Team Members,Ryhmän jäsenet DocType: Blog Settings,Writers Introduction,Kirjoittajat Johdanto @@ -2530,13 +2573,12 @@ DocType: Chat Room,Name,Nimi DocType: Communication,Email Template,Sähköpostimalli DocType: Energy Point Settings,Review Levels,Tarkista tasot DocType: Print Format,Raw Printing,Raaka tulostus -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,"{0} ei voi avata, kun sen esiintymä on auki" +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,"{0} ei voi avata, kun sen esiintymä on auki" DocType: DocType,"Make ""name"" searchable in Global Search",Tee "nimi" haettavaksi Global Searchissa DocType: Data Migration Mapping,Data Migration Mapping,Tiedonsiirron kartoitus DocType: Data Import,Partially Successful,Osittain onnistunut DocType: Communication,Error,Virhe apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Kenttätyyppiä ei voi muuttaa {0} - {1} rivillä {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Virhe yhteyden muodostamisessa QZ-alustasovellukseen ...

Sinun täytyy olla asennettuna ja käynnissä QZ Tray -sovellus, jotta voit käyttää Raw Print -ominaisuutta.

Lataa ja asenna QZ-lokero napsauttamalla tätä .
Klikkaa tästä saadaksesi lisätietoja raaka-tulostuksesta ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Ota valokuva apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,"Vältä vuosia, jotka liittyvät sinuun." DocType: Web Form,Allow Incomplete Forms,Salli epätäydelliset lomakkeet @@ -2632,7 +2674,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Avaa kohde uudelle sivulle valitsemalla target = "_blank". DocType: Portal Settings,Portal Menu,Portal-valikko DocType: Website Settings,Landing Page,Aloitussivu -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,Ole hyvä ja rekisteröidy tai kirjaudu sisään aloittaaksesi DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Yhteysasetukset, kuten "Myyntikysely, tukikysely" jne. Uudella rivillä tai pilkuilla erotetut." apps/frappe/frappe/twofactor.py,Verfication Code,Verifikaatiokoodi apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} on jo peruutettu @@ -2718,6 +2759,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Tiedonsiirtosuu DocType: Address,Sales User,Myyntikäyttäjä apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Muuta kenttäominaisuuksia (piilottaa, lukea vain, lupa jne.)" DocType: Property Setter,Field Name,Kenttä nimi +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,asiakas DocType: Print Settings,Font Size,Fonttikoko DocType: User,Last Password Reset Date,Viimeinen salasanan palautuspäivä DocType: System Settings,Date and Number Format,Päivämäärä ja numeromuoto @@ -2783,6 +2825,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Ryhmäsolmu apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Yhdistä olemassa oleviin DocType: Blog Post,Blog Intro,Blogi Intro apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Uusi maininta +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Siirry kenttään DocType: Prepared Report,Report Name,Raportin nimi apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Päivitä saat uusimman asiakirjan. apps/frappe/frappe/core/doctype/communication/communication.js,Close,kiinni @@ -2792,10 +2835,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Tapahtuma DocType: Social Login Key,Access Token URL,Käytä tunnuksen URL-osoitetta apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Aseta Dropbox-käyttöavaimet sivustosi asetuksiin +DocType: Google Contacts,Google Contacts,Google-yhteystiedot DocType: User,Reset Password Key,Nollaa salasana apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Muokannut DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.",Uudistaa {0}. +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Tallennettu onnistuneesti +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Lähetä sähköpostia osoitteeseen {0} linkittääksesi sen täällä. DocType: File,Folder,Kansio DocType: DocField,Perm Level,Perm-taso DocType: Print Settings,Page Settings,Sivun asetukset @@ -2825,6 +2871,7 @@ DocType: Workflow State,remove-sign,poista-merkki DocType: Dashboard Chart,Full,Koko DocType: DocType,User Cannot Create,Käyttäjä ei voi luoda apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Sait {0} pisteen +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Asetukset> Käyttäjä DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Jos asetat tämän, tämä kohta tulee pudotusvalikkoon valitun vanhemman alla." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Ei sähköpostiviestejä apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Seuraavat kentät puuttuvat: @@ -2838,13 +2885,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Nä DocType: Web Form,Web Form Fields,Web-lomakekentät DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Käyttäjän muokattavissa oleva lomake verkkosivustolla. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Peruuta {0} pysyvästi? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Peruuta {0} pysyvästi? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Vaihtoehto 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,Summat apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Tämä on hyvin yleinen salasana. DocType: Personal Data Deletion Request,Pending Approval,Odottaa hyväksyntää apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Asiakirjaa ei voitu määrittää oikein apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Ei sallittu {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Mitään arvoja ei näytetä DocType: Personal Data Download Request,Personal Data Download Request,Henkilötietojen latauspyyntö apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} jakoi tämän asiakirjan {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Valitse {0} @@ -2860,7 +2908,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Tämä sähköposti lähetettiin osoitteeseen {0} ja kopioitiin {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,väärä käyttäjätunnus tai salasana DocType: Social Login Key,Social Login Key,Sosiaalinen kirjautumistunnus -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Aseta oletusarvoinen sähköpostitili Asetukset> Sähköposti> Sähköpostitili apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Suodattimet on tallennettu DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Miten tämä valuutta tulisi alustaa? Jos asetusta ei ole asetettu, käytetään järjestelmän oletusarvoja" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} on asetettu tilaan {2} @@ -2986,6 +3033,7 @@ DocType: User,Location,Sijainti apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Ei dataa DocType: Website Meta Tag,Website Meta Tag,Verkkosivujen metatunniste DocType: Workflow State,film,elokuva +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Kopioitu leikepöydälle. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Asetuksia ei löytynyt apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Tarra on pakollinen DocType: Webhook,Webhook Headers,Webhook-otsikot @@ -3193,7 +3241,7 @@ DocType: Address,Address Line 1,Osoiterivi 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Asiakirjan tyyppi apps/frappe/frappe/model/base_document.py,Data missing in table,Tiedot puuttuvat taulukosta apps/frappe/frappe/utils/bot.py,Could not identify {0},{0} ei voitu tunnistaa -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Tätä lomaketta on muutettu sen lataamisen jälkeen +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Tätä lomaketta on muutettu sen lataamisen jälkeen apps/frappe/frappe/www/login.html,Back to Login,Takaisin sisäänkirjautumiseen apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Ei valittu DocType: Data Migration Mapping,Pull,Vedä @@ -3261,6 +3309,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Lapsitaulukon kartoit apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Sähköpostitilin määrittäminen Anna salasana: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Liian monta kirjoittaa yhdessä pyynnössä. Lähetä pienempiä pyyntöjä DocType: Social Login Key,Salesforce,Myyntivoima +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{0} {1}: n tuominen DocType: User,Tile,Laatta apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} huoneessa on oltava yksi käyttäjä. DocType: Email Rule,Is Spam,Onko roskapostia @@ -3298,7 +3347,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,kansio-kiinni DocType: Data Migration Run,Pull Update,Vedä päivitys apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},yhdistetty {0} osaksi {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Ei tuloksia haulla '

DocType: SMS Settings,Enter url parameter for receiver nos,Anna vastaanottimen nosteen url-parametri apps/frappe/frappe/utils/jinja.py,Syntax error in template,Syntaksi virhe mallissa apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Määritä suodattimen arvo Raporttisuodattimen taulukossa. @@ -3311,6 +3359,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.",Valitettavas DocType: System Settings,In Days,Päivinä DocType: Report,Add Total Row,Lisää yhteensä rivi apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Istunnon aloitus epäonnistui +DocType: Translation,Verified,Verified DocType: Print Format,Custom HTML Help,Mukautettu HTML-ohje DocType: Address,Preferred Billing Address,Ensisijainen laskutusosoite apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Määritetty @@ -3325,7 +3374,6 @@ DocType: Help Article,Intermediate,väli- DocType: Module Def,Module Name,Moduulin nimi DocType: OAuth Authorization Code,Expiration time,Vanhentumisaika apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Aseta oletusmuoto, sivukoko, tulostustyyli jne." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,"Et voi pitää jotain, jonka olet luonut" DocType: System Settings,Session Expiry,Istunnon päättyminen DocType: DocType,Auto Name,Automaattinen nimi apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Valitse Liitteet @@ -3353,6 +3401,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Järjestelmäsivu DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Huomautus: Oletusarvoisten sähköpostiviestien lähettäminen epäonnistuneille varmuuskopioille lähetetään. DocType: Custom DocPerm,Custom DocPerm,Mukautettu DocPerm +DocType: Translation,PR sent,PR lähetetty DocType: Tag Doc Category,Doctype to Assign Tags,Tunnisteiden määrittäminen -työkalu DocType: Address,Warehouse,Varasto apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Dropbox-asetukset @@ -3420,7 +3469,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Lisää kommentti Ctrl + Enter apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Kenttä {0} ei ole valittavissa. DocType: User,Birth Date,Syntymäpäivä -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Ryhmätunnistuksella DocType: List View Setting,Disable Count,Poista laskenta käytöstä DocType: Contact Us Settings,Email ID,Sähköposti tunnus apps/frappe/frappe/utils/password.py,Incorrect User or Password,Virheellinen käyttäjä tai salasana @@ -3455,6 +3503,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Tämä rooli päivittää käyttäjän käyttöoikeudet käyttäjälle DocType: Website Theme,Theme,Teema DocType: Web Form,Show Sidebar,Näytä sivupalkki +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google-yhteystietojen integrointi. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Oletus Saapuneet-kansio apps/frappe/frappe/www/login.py,Invalid Login Token,Virheellinen kirjautumistunnus apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Aseta ensin nimi ja tallenna se. @@ -3482,7 +3531,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Korjaa DocType: Top Bar Item,Top Bar Item,Top-palkki ,Role Permissions Manager,Roolilupien hallinta -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,Oli virheitä. Ilmoita tästä. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} vuosi sitten apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Nainen DocType: System Settings,OTP Issuer Name,OTP-liikkeeseenlaskijan nimi apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Lisää tehtäviin @@ -3582,6 +3631,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Kieli, apps/frappe/frappe/model/document.py,none of,mikään DocType: Desktop Icon,Page,Sivu DocType: Workflow State,plus-sign,plus-merkki +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Tyhjennä välimuisti ja lataa se uudelleen apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Ei voi päivittää: virheellinen / vanhentunut linkki. DocType: Kanban Board Column,Yellow,Keltainen DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Ruudukon sarakkeiden lukumäärä ruudukossa (ruudukon sarakkeiden kokonaismäärän on oltava alle 11) @@ -3596,6 +3646,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Uusi DocType: Activity Log,Date,Treffi DocType: Communication,Communication Type,Viestintätyyppi apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Vanhempien taulukko +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Siirry luetteloon DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Näytä täysi virhe ja salli ongelmien raportointi kehittäjälle DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3617,7 +3668,6 @@ DocType: Notification Recipient,Email By Role,Sähköpostin rooli apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,"Päivitä, jos haluat lisätä enemmän kuin {0} tilaajia" apps/frappe/frappe/email/queue.py,This email was sent to {0},Tämä sähköposti lähetettiin osoitteeseen {0} DocType: User,Represents a User in the system.,Edustaa käyttäjää järjestelmässä. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Sivu {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Aloita uusi muoto apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Lisää kommentti apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} {1} diff --git a/frappe/translations/fr.csv b/frappe/translations/fr.csv index 621f7cfe88..a6981b86a6 100644 --- a/frappe/translations/fr.csv +++ b/frappe/translations/fr.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Activer les dégradés DocType: DocType,Default Sort Order,Ordre de tri par défaut apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Afficher uniquement les champs numériques du rapport +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Appuyez sur la touche Alt pour déclencher des raccourcis supplémentaires dans les menus et la barre latérale. DocType: Workflow State,folder-open,dossier ouvert DocType: Customize Form,Is Table,Est la table apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Impossible d'ouvrir le fichier joint. L'avez-vous exporté au format CSV? DocType: DocField,No Copy,Pas de copie DocType: Custom Field,Default Value,Valeur par défaut apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Append To est obligatoire pour les mails entrants +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Synchroniser les contacts DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Détails du mappage de migration de données apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Se désabonner apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",L'impression PDF via "Raw Print" n'est pas encore prise en charge. Supprimez le mappage d'imprimante dans les paramètres de l'imprimante et réessayez. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} et {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Une erreur s'est produite lors de l'enregistrement des filtres apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Tapez votre mot de passe apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Impossible de supprimer les dossiers Accueil et Pièces jointes +DocType: Email Account,Enable Automatic Linking in Documents,Activer la liaison automatique dans les documents DocType: Contact Us Settings,Settings for Contact Us Page,Paramètres de la page Contactez-nous DocType: Social Login Key,Social Login Provider,Fournisseur de connexion sociale +DocType: Email Account,"For more information, click here.","Pour plus d'informations, cliquez ici ." DocType: Transaction Log,Previous Hash,Hash précédent DocType: Notification,Value Changed,Valeur modifiée DocType: Report,Report Type,Type de rapport @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Règle de point d'énergie apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,Veuillez entrer votre identifiant client avant l'activation de la connexion sociale. DocType: Communication,Has Attachment,A l'attachement DocType: User,Email Signature,Signature électronique -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} année (s) ,Addresses And Contacts,Adresses Et Contacts apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Ce conseil Kanban sera privé DocType: Data Migration Run,Current Mapping,Cartographie actuelle @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Vous sélectionnez l'option Sync comme étant ALL, cela va resynchroniser tous les messages \ read ainsi que les messages non lus du serveur. Cela peut également entraîner la duplication \ de la communication (courriels)." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Dernière synchronisation {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Impossible de modifier le contenu de l'en-tête +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Aucun résultat trouvé pour '

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Non autorisé à changer {0} après la soumission apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","L'application a été mise à jour vers une nouvelle version, veuillez actualiser cette page." DocType: User,User Image,Image utilisateur @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Marqu apps/frappe/frappe/public/js/frappe/chat.js,Discard,Jeter DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Sélectionnez une image d'environ 150 pixels de large avec un arrière-plan transparent pour de meilleurs résultats. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,Rechute +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} valeurs sélectionnées DocType: Blog Post,Email Sent,Email envoyé DocType: Communication,Read by Recipient On,Lu par le destinataire sur DocType: User,Allow user to login only after this hour (0-24),Autoriser l'utilisateur à se connecter uniquement après cette heure (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,vieux_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Module à exporter DocType: DocType,Fields,Des champs -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Vous n'êtes pas autorisé à imprimer ce document +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Vous n'êtes pas autorisé à imprimer ce document apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Parent apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Votre session a expiré, veuillez vous reconnecter pour continuer." DocType: Assignment Rule,Priority,Priorité @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Réinitialiser le DocType: DocType,UPPER CASE,UPPER CASE apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,S'il vous plaît définir l'adresse e-mail DocType: Communication,Marked As Spam,Marqué comme spam +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Adresse e-mail dont les contacts Google doivent être synchronisés. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Abonnés d'importation apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Enregistrer le filtre DocType: Address,Preferred Shipping Address,Adresse de livraison préférée DocType: GCalendar Account,The name that will appear in Google Calendar,Le nom qui apparaîtra dans Google Agenda +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Cliquez sur {0} pour générer le jeton d'actualisation. DocType: Email Account,Disable SMTP server authentication,Désactiver l'authentification du serveur SMTP DocType: Email Account,Total number of emails to sync in initial sync process ,Nombre total d'e-mails à synchroniser dans le processus de synchronisation initial DocType: System Settings,Enable Password Policy,Activer la politique de mot de passe @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Insérer le code apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Pas dedans DocType: Auto Repeat,Start Date,Date de début apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Set Chart +DocType: Website Theme,Theme JSON,Thème JSON apps/frappe/frappe/www/list.py,My Account,Mon compte DocType: DocType,Is Published Field,Est le champ publié DocType: DocField,Set non-standard precision for a Float or Currency field,Définir une précision non standard pour un champ Float ou Currency @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Ajouter une Reference: {{ reference_doctype }} {{ reference_name }} pour envoyer une référence à un document DocType: LDAP Settings,LDAP First Name Field,Champ Prénom LDAP apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Envoi et boîte de réception par défaut -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuration> Personnaliser le formulaire apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.","Pour la mise à jour, vous ne pouvez mettre à jour que des colonnes sélectives." apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',"Par défaut, le type de champ «Vérifier» doit être «0» ou «1»." apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Partagez ce document avec @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Domaines HTML DocType: Blog Settings,Blog Settings,Paramètres du blog apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Le nom de DocType doit commencer par une lettre et il ne peut contenir que des lettres, des chiffres, des espaces et des traits de soulignement." +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuration> Autorisations utilisateur DocType: Communication,Integrations can use this field to set email delivery status,Les intégrations peuvent utiliser ce champ pour définir le statut de livraison du courrier électronique. apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Paramètres de la passerelle de paiement Stripe DocType: Print Settings,Fonts,Les polices DocType: Notification,Channel,Canal DocType: Communication,Opened,Ouvert DocType: Workflow Transition,Conditions,Conditions +apps/frappe/frappe/config/website.py,A user who posts blogs.,Un utilisateur qui publie des blogs. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Vous n'avez pas de compte? S'inscrire apps/frappe/frappe/utils/file_manager.py,Added {0},Ajouté {0} DocType: Newsletter,Create and Send Newsletters,Créer et envoyer des newsletters DocType: Website Settings,Footer Items,Articles de pied de page +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Veuillez configurer le compte de messagerie par défaut à partir de Configuration> E-mail> Compte de messagerie DocType: Website Slideshow Item,Website Slideshow Item,Article de diaporama de site Web apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Enregistrer l'application client OAuth DocType: Error Snapshot,Frames,Cadres @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Le niveau 0 concerne les autorisations au niveau du document, \ les niveaux supérieurs pour les autorisations au niveau du champ." DocType: Address,City/Town,Ville DocType: Email Account,GMail,Gmail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Cela réinitialisera votre thème actuel, êtes-vous sûr de vouloir continuer?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Champs obligatoires obligatoires dans {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Erreur lors de la connexion au compte de messagerie {0}. apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Une erreur est survenue lors de la création récurrente @@ -528,7 +537,7 @@ DocType: Event,Event Category,Catégorie d'événement apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Colonnes basées sur apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Modifier le titre DocType: Communication,Received,Reçu -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Vous n'êtes pas autorisé à accéder à cette page. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Vous n'êtes pas autorisé à accéder à cette page. DocType: User Social Login,User Social Login,Utilisateur Social Login apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,Ecrivez un fichier Python dans le même dossier où il est enregistré et retournez colonne et résultat. DocType: Contact,Purchase Manager,Responsable des achats @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Conf apps/frappe/frappe/utils/data.py,Operator must be one of {0},L'opérateur doit être l'un des {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Si propriétaire DocType: Data Migration Run,Trigger Name,Nom du déclencheur -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Rédigez des titres et des introductions sur votre blog. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Supprimer le champ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Réduire tout apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Couleur de fond @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,Bar DocType: SMS Settings,Enter url parameter for message,Entrez le paramètre url pour le message apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nouveau format d'impression personnalisé apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} existe déjà +DocType: Workflow Document State,Is Optional State,Est facultatif DocType: Address,Purchase User,Utilisateur de l'achat DocType: Data Migration Run,Insert,Insérer DocType: Web Form,Route to Success Link,Lien vers le succès @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Le nom DocType: File,Is Home Folder,Est le dossier d'accueil apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Type: DocType: Post,Is Pinned,Est épinglé -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Aucune autorisation sur '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Aucune autorisation sur '{0}' {1} DocType: Patch Log,Patch Log,Journal des correctifs DocType: Print Format,Print Format Builder,Générateur de format d'impression 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 activé, tous les utilisateurs peuvent se connecter à partir de n’importe quelle adresse IP en utilisant l’authentification à deux facteurs. Ceci peut également être défini uniquement pour des utilisateurs spécifiques dans la page utilisateur." apps/frappe/frappe/utils/data.py,only.,seulement. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,La condition '{0}' est invalide DocType: Auto Email Report,Day of Week,Jour de la semaine +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Activer Google API dans les paramètres Google. DocType: DocField,Text Editor,Éditeur de texte apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Couper apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Rechercher ou taper une commande @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,Le nombre de sauvegardes de base de données ne peut pas être inférieur à 1 DocType: Workflow State,ban-circle,ban-cercle DocType: Data Export,Excel,Exceller +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","En-tête, chapelure et balises META" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Adresse e-mail d'assistance non spécifiée DocType: Comment,Published,Publié DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","Remarque: pour obtenir les meilleurs résultats, les images doivent avoir la même taille et la largeur doit être supérieure à la hauteur." @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Planificateur dernier événement apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Rapport de tous les partages de documents DocType: Website Sidebar Item,Website Sidebar Item,Elément de barre latérale de site Web apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Faire +DocType: Google Settings,Google Settings,Paramètres Google apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Sélectionnez votre pays, votre fuseau horaire et votre devise" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Entrez les paramètres url statiques ici (par exemple, sender = ERPNext, nom d'utilisateur = ERPNext, mot de passe = 1234, etc.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Pas de compte email @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,Jeton porteur OAuth ,Setup Wizard,Assistant de configuration apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Basculer le graphique +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,Synchronisation DocType: Data Migration Run,Current Mapping Action,Action de cartographie en cours DocType: Email Account,Initial Sync Count,Compte de synchronisation initial apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Paramètres de la page Contactez-nous. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Type de format d'impression apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Aucune autorisation définie pour ce critère. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Développer tout +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Aucun modèle d'adresse par défaut trouvé. Veuillez en créer un nouveau depuis Configuration> Impression et création de marque> Modèle d'adresse. DocType: Tag Doc Category,Tag Doc Category,Tag Doc Catégorie DocType: Data Import,Generated File,Fichier généré apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Remarques @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Le champ de la timeline doit être un lien ou un lien dynamique DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Les notifications et les messages groupés seront envoyés à partir de ce serveur sortant. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Ceci est un mot de passe commun top-100. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Soumettre définitivement {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Soumettre définitivement {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} n'existe pas, sélectionnez une nouvelle cible à fusionner" DocType: Energy Point Rule,Multiplier Field,Champ multiplicateur DocType: Workflow,Workflow State Field,Champ d'état du flux de travail @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} a apprécié votre travail sur {1} avec {2} points DocType: Auto Email Report,Zero means send records updated at anytime,Zéro signifie envoyer des enregistrements mis à jour à tout moment apps/frappe/frappe/model/document.py,Value cannot be changed for {0},La valeur ne peut pas être modifiée pour {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Paramètres Google API. DocType: System Settings,Force User to Reset Password,Forcer l'utilisateur à réinitialiser le mot de passe apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Les rapports du générateur de rapports sont gérés directement par le générateur de rapports. Rien à faire. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Modifier le filtre @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,pour DocType: S3 Backup Settings,eu-north-1,eu-north-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: une seule règle autorisée avec le même rôle, niveau et {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Vous n'êtes pas autorisé à mettre à jour ce document Web Form -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Limite maximale des pièces jointes atteinte pour cet enregistrement. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Limite maximale des pièces jointes atteinte pour cet enregistrement. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,Assurez-vous que les documents de communication de référence ne sont pas liés de manière circulaire. DocType: DocField,Allow in Quick Entry,Autoriser l'entrée rapide DocType: Error Snapshot,Locals,des locaux @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Type d'exception apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},Impossible de supprimer ou d'annuler car {0} {1} est lié à {2} {3} {4} apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,Le secret OTP ne peut être réinitialisé que par l'administrateur. -DocType: Web Form Field,Page Break,Saut de page DocType: Website Script,Website Script,Script de site Web DocType: Integration Request,Subscription Notification,Notification d'abonnement DocType: DocType,Quick Entry,Entrée rapide @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,Définir la propriété après l& apps/frappe/frappe/__init__.py,Thank you,Je vous remercie apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks pour l'intégration interne apps/frappe/frappe/config/settings.py,Import Data,Importer des données +DocType: Translation,Contributed Translation Doctype Name,Nom du type de traduction contribuée DocType: Social Login Key,Office 365,Bureau 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID DocType: Review Level,Review Level,Niveau de révision @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Fait avec succès apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} liste apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Apprécier -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Nouveau {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Est le contact principal DocType: Print Format,Raw Commands,Commandes brutes apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Feuilles de style pour les formats d'impression @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Erreurs dans les apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Trouver {0} dans {1} DocType: Email Account,Use SSL,Utiliser SSL DocType: DocField,In Standard Filter,En filtre standard +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Aucun contact Google présent à synchroniser. DocType: Data Migration Run,Total Pages,Pages totales apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: Le champ '{1}' ne peut pas être défini comme Unique car il contient des valeurs non uniques. DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Si activé, les utilisateurs seront avertis chaque fois qu'ils se connecteront. S'il n'est pas activé, les utilisateurs ne seront notifiés qu'une seule fois." @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,Automatisation apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Décompression des fichiers ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Recherchez '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Quelque chose a mal tourné -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,S'il vous plaît enregistrer avant de joindre. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,S'il vous plaît enregistrer avant de joindre. DocType: Version,Table HTML,Table HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,centre DocType: Page,Standard,la norme @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Aucun résu apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} enregistrements supprimés apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,Une erreur s'est produite lors de la génération du jeton d'accès Dropbox. S'il vous plaît consulter le journal des erreurs pour plus de détails. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Descendants de -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Aucun modèle d'adresse par défaut trouvé. Veuillez en créer un nouveau depuis Configuration> Impression et création de marque> Modèle d'adresse. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Contacts a été configuré. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Cacher les détails apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Styles de police apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Votre abonnement expirera le {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},L’authentification a échoué lors de la réception d’e-mails du compte de messagerie {0}. Message du serveur: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Statistiques basées sur les performances de la semaine dernière (du {0} au {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,La liaison automatique ne peut être activée que si l'option Entrant est activée. DocType: Website Settings,Title Prefix,Préfixe de titre apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Les applications d'authentification que vous pouvez utiliser sont les suivantes: DocType: Bulk Update,Max 500 records at a time,Max 500 enregistrements à la fois @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,Filtres de rapport apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Sélectionner des colonnes DocType: Event,Participants,Participants DocType: Auto Repeat,Amended From,Modifié depuis -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Vos informations ont été soumises +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Vos informations ont été soumises DocType: Help Category,Help Category,Catégorie d'aide apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 mois apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Sélectionnez un format existant à modifier ou créez un nouveau format. @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Champ à suivre DocType: User,Generate Keys,Générer des clés DocType: Comment,Unshared,Non partagé -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Enregistré +DocType: Translation,Saved,Enregistré DocType: OAuth Client,OAuth Client,Client OAuth DocType: System Settings,Disable Standard Email Footer,Désactiver le pied de page d'e-mail standard apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Le format d'impression {0} est désactivé @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Dernière mis DocType: Data Import,Action,action apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,La clé client est requise DocType: Chat Profile,Notifications,Les notifications +DocType: Translation,Contributed,Contribué DocType: System Settings,mm/dd/yyyy,mm / jj / aaaa DocType: Report,Custom Report,Rapport personnalisé DocType: Workflow State,info-sign,info-signe @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Contact DocType: LDAP Settings,LDAP Username Field,Champ Nom d'utilisateur LDAP apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Le champ {0} ne peut pas être défini comme unique dans {1}, car il existe des valeurs non uniques existantes." +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuration> Personnaliser le formulaire DocType: User,Social Logins,Connexions sociales DocType: Workflow State,Trash,Poubelle DocType: Stripe Settings,Secret Key,Clef secrète @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,Champ de titre apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Impossible de se connecter au serveur de messagerie sortant DocType: File,File URL,URL du fichier DocType: Help Article,Likes,Aime +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,L'intégration de Google Contacts est désactivée. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Vous devez être connecté et disposer du rôle de gestionnaire système pour pouvoir accéder aux sauvegardes. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Premier niveau DocType: Blogger,Short Name,Nom court @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Importation Zip DocType: Contact,Gender,Le sexe DocType: Workflow State,thumbs-down,pouces vers le bas -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},La file d'attente doit être l'une des {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Impossible de définir la notification sur le type de document {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Ajout de System Manager à cet utilisateur car il doit y avoir au moins un System Manager apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Email de bienvenue envoyé DocType: Transaction Log,Chaining Hash,Chaînage du hachage DocType: Contact,Maintenance Manager,gérant de la maintenance +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Pour comparaison, utilisez> 5, <10 ou = 324. Pour les plages, utilisez 5:10 (pour les valeurs entre 5 et 10)." apps/frappe/frappe/utils/bot.py,show,spectacle apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URL de partage apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Format de fichier non pris en charge @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,Notification DocType: Data Import,Show only errors,Afficher seulement les erreurs DocType: Energy Point Log,Review,La revue apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Rangées supprimées -DocType: GSuite Settings,Google Credentials,Credentials de Google +DocType: Google Settings,Google Credentials,Credentials de Google apps/frappe/frappe/www/login.html,Or login with,Ou connectez-vous avec apps/frappe/frappe/model/document.py,Record does not exist,L'enregistrement n'existe pas apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Nom du nouveau rapport @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,liste DocType: Workflow State,th-large,grand apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Impossible de définir Assign Submit si non à soumettre. apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Non lié à aucun enregistrement +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Erreur de connexion à l'application QZ Tray ...

L'application QZ Tray doit être installée et en cours d'exécution pour que vous puissiez utiliser la fonction d'impression brute.

Cliquez ici pour télécharger et installer QZ Tray .
Cliquez ici pour en savoir plus sur l'impression brute ." DocType: Chat Message,Content,Contenu DocType: Workflow Transition,Allow Self Approval,Autoriser l'auto-approbation apps/frappe/frappe/www/qrcode.py,Page has expired!,La page a expiré! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,main droite DocType: Website Settings,Banner is above the Top Menu Bar.,La bannière est au-dessus de la barre de menu supérieure. apps/frappe/frappe/www/update-password.html,Invalid Password,Mot de passe incorrect apps/frappe/frappe/utils/data.py,1 month ago,Il ya 1 mois +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Autoriser l'accès aux contacts Google DocType: OAuth Client,App Client ID,ID client d'application DocType: DocField,Currency,Devise DocType: Website Settings,Banner,Bannière @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Objectif DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Si un rôle n'a pas accès au niveau 0, les niveaux supérieurs n'ont pas de sens." DocType: ToDo,Reference Type,Type de référence -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Permettant DocType, DocType. Faites attention!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Permettant DocType, DocType. Faites attention!" DocType: Domain Settings,Domain Settings,Paramètres du domaine DocType: Auto Email Report,Dynamic Report Filters,Filtres de rapport dynamique DocType: Energy Point Log,Appreciation,Appréciation @@ -1468,6 +1489,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,us-west-2 DocType: DocType,Is Single,Est célibataire apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Créer un nouveau format +DocType: Google Contacts,Authorize Google Contacts Access,Autoriser l'accès à Google Contacts DocType: S3 Backup Settings,Endpoint URL,URL du noeud final DocType: Social Login Key,Google,Google DocType: Contact,Department,département @@ -1482,7 +1504,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Affecter à DocType: List Filter,List Filter,Filtre de liste DocType: Dashboard Chart Link,Chart,Graphique apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Impossible de supprimer -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Soumettez ce document pour confirmer +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Soumettez ce document pour confirmer apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} existe déjà. Sélectionnez un autre nom apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Vous avez des modifications non enregistrées dans ce formulaire. Veuillez enregistrer avant de continuer. apps/frappe/frappe/model/document.py,Action Failed,Action: échoué @@ -1564,6 +1586,7 @@ DocType: DocField,Display,Afficher apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Répondre à tous DocType: Calendar View,Subject Field,Domaine apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},L'expiration de session doit être au format {0}. +apps/frappe/frappe/model/workflow.py,Applying: {0},Application: {0} DocType: Workflow State,zoom-in,agrandir apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,échec de connexion au serveur apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},La date {0} doit être au format: {1} @@ -1575,8 +1598,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,L'icône apparaîtra sur le bouton DocType: Role Permission for Page and Report,Set Role For,Définir le rôle de +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,La liaison automatique ne peut être activée que pour un seul compte de messagerie. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Aucun compte de messagerie attribué +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Compte de messagerie non configuré. Veuillez créer un nouveau compte de messagerie depuis Configuration> E-mail> Compte de messagerie apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Affectation +DocType: Google Contacts,Last Sync On,Dernière synchronisation sur apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},gagné par {0} via la règle automatique {1} apps/frappe/frappe/config/website.py,Portal,Portail apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Merci pour votre courriel @@ -1597,7 +1623,6 @@ DocType: GSuite Settings,GSuite Settings,Paramètres GSuite DocType: Integration Request,Remote,Éloigné DocType: File,Thumbnail URL,URL miniature apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Télécharger le rapport -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configuration> Utilisateur apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Personnalisations pour {0} exporté vers:
{1} DocType: GCalendar Account,Calendar Name,Nom du calendrier apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Votre identifiant de connexion est @@ -1647,6 +1672,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Aller apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Le champ d'image doit être un nom de champ valide apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,Vous devez être connecté pour accéder à cette page DocType: Assignment Rule,Example: {{ subject }},Exemple: {{sujet}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Le nom de champ {0} est restreint apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Vous ne pouvez pas annuler la lecture en lecture seule pour le champ {0}. DocType: Social Login Key,Enable Social Login,Activer la connexion sociale DocType: Workflow,Rules defining transition of state in the workflow.,Règles définissant la transition d'état dans le flux de travail. @@ -1667,10 +1693,10 @@ DocType: Website Settings,Route Redirects,Route Redirects apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Courriel Boîte de réception apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},restauré {0} comme {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Attribuer automatiquement des documents aux utilisateurs +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Ouvrez Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Modèles de courrier électronique pour les requêtes courantes. DocType: Letter Head,Letter Head Based On,Tête de lettre basée sur apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,S'il vous plaît fermer cette fenêtre -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Paiement complet DocType: Contact,Designation,La désignation DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Meta Tags @@ -1709,6 +1735,7 @@ DocType: System Settings,Choose authentication method to be used by all users,Ch DocType: Error Snapshot,Parent Error Snapshot,Instantané d'erreur parent DocType: GCalendar Account,GCalendar Account,Compte GCalendar DocType: Language,Language Name,Nom de la langue +DocType: Workflow Document State,Workflow Action is not created for optional states,L'action de flux de travail n'est pas créée pour les états facultatifs DocType: Customize Form,Customize Form,Personnaliser le formulaire DocType: DocType,Image Field,Champ d'image apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Ajouté {0} ({1}) @@ -1750,6 +1777,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,Appliquer cette règle si l'utilisateur est le propriétaire DocType: About Us Settings,Org History Heading,Titre de l'histoire de l'organisation apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,erreur du serveur +DocType: Contact,Google Contacts Description,Description de Google Contacts apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Les rôles standard ne peuvent pas être renommés DocType: Review Level,Review Points,Points d'examen apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Paramètre manquant Nom de la carte Kanban @@ -1767,7 +1795,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Pas en mode développeur! Définissez dans site_config.json ou créez un DocType 'Personnalisé'. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,a gagné {0} points DocType: Web Form,Success Message,Message de réussite -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Pour comparaison, utilisez> 5, <10 ou = 324. Pour les plages, utilisez 5:10 (pour les valeurs entre 5 et 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Description pour la page de liste, en texte brut, seulement quelques lignes. (max 140 caractères)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Afficher les autorisations DocType: DocType,Restrict To Domain,Restreindre au domaine @@ -1789,6 +1816,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Pas an apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Quantité définie DocType: Auto Repeat,End Date,Date de fin DocType: Workflow Transition,Next State,Etat suivant +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Contacts Google synchronisés. DocType: System Settings,Is First Startup,Est la première mise en route apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},mis à jour à {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Déménager à @@ -1838,6 +1866,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} calendrier apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Modèle d'importation de données DocType: Workflow State,hand-left,main gauche +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Sélectionner plusieurs éléments de liste apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Taille de la sauvegarde: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Lié avec {0} DocType: Braintree Settings,Private Key,Clé privée @@ -1880,13 +1909,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Intérêt DocType: Bulk Update,Limit,Limite DocType: Print Settings,Print taxes with zero amount,Imprimer les taxes avec un montant nul -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Compte de messagerie non configuré. Veuillez créer un nouveau compte de messagerie depuis Configuration> E-mail> Compte de messagerie DocType: Workflow State,Book,Livre DocType: S3 Backup Settings,Access Key ID,Clé d'accès DocType: Chat Message,URLs,URL apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Les noms et prénoms sont faciles à deviner. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Rapport {0} DocType: About Us Settings,Team Members Heading,Membres de l'équipe +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Sélectionner un élément de la liste apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Le document {0} a été défini sur l'état {1} par {2}. DocType: Address Template,Address Template,Modèle d'adresse DocType: Workflow State,step-backward,reculer @@ -1910,6 +1939,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Exporter les autorisations personnalisées apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Aucun: Fin du flux de travail DocType: Version,Version,Version +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Ouvrir un élément de la liste apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 mois DocType: Chat Message,Group,Groupe apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Il y a un problème avec l'URL du fichier: {0} @@ -1965,6 +1995,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 an apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} a annulé vos points le {1} DocType: Workflow State,arrow-down,flèche vers le bas DocType: Data Import,Ignore encoding errors,Ignorer les erreurs d'encodage +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Paysage DocType: Letter Head,Letter Head Name,Nom de l'en-tête DocType: Web Form,Client Script,Script client DocType: Assignment Rule,Higher priority rule will be applied first,La règle de priorité supérieure sera appliquée en premier @@ -2009,6 +2040,7 @@ DocType: Kanban Board Column,Green,vert apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Seuls les champs obligatoires sont nécessaires pour les nouveaux enregistrements. Vous pouvez supprimer des colonnes non obligatoires si vous le souhaitez. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} doit commencer et se terminer par une lettre et ne peut contenir que des lettres, des tirets ou des traits de soulignement." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Action primaire de déclenchement apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Créer un email d'utilisateur apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Le champ de tri {0} doit être un nom de champ valide. DocType: Auto Email Report,Filter Meta,Filtre Méta @@ -2038,6 +2070,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Champ de la timeline apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Chargement... DocType: Auto Email Report,Half Yearly,Semestriel +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Mon profil apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Date de dernière modification DocType: Contact,First Name,Prénom DocType: Post,Comments,commentaires @@ -2060,6 +2093,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Contenu hachage apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Messages de {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} affecté {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Aucun nouveau contact Google synchronisé. DocType: Workflow State,globe,globe apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Moyenne de {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Effacer les journaux d'erreur @@ -2086,6 +2120,8 @@ DocType: Workflow State,Inverse,Inverse DocType: Activity Log,Closed,Fermé DocType: Report,Query,Question DocType: Notification,Days After,Des jours après +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Raccourcis de page +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portrait apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Demande expirée DocType: System Settings,Email Footer Address,Adresse de bas de page apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Point d'énergie @@ -2113,6 +2149,7 @@ For Select, enter list of Options, each on a new line.","Pour les liens, entrez apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,il y a 1 minute apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Aucune session active apps/frappe/frappe/model/base_document.py,Row,Rangée +DocType: Contact,Middle Name,Deuxième nom apps/frappe/frappe/public/js/frappe/request.js,Please try again,Veuillez réessayer DocType: Dashboard Chart,Chart Options,Options de graphique DocType: Data Migration Run,Push Failed,Push Failed @@ -2141,6 +2178,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,redimensionner-petit DocType: Comment,Relinked,Relié DocType: Role Permission for Page and Report,Roles HTML,Rôles HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Aller apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Le flux de travail commencera après la sauvegarde. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Si vos données sont en HTML, veuillez copier-coller le code HTML exact avec les balises." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Les dates sont souvent faciles à deviner. @@ -2169,7 +2207,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Icône du bureau apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,annulé ce document apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Plage de dates -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuration> Autorisations utilisateur apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} apprécié {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Valeurs modifiées apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Erreur de notification @@ -2233,6 +2270,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Suppression en masse DocType: DocShare,Document Name,Nom du document apps/frappe/frappe/config/customization.py,Add your own translations,Ajoutez vos propres traductions +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Naviguer dans la liste DocType: S3 Backup Settings,eu-central-1,eu-central-1 DocType: Auto Repeat,Yearly,Annuel apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Renommer @@ -2283,6 +2321,7 @@ DocType: Workflow State,plane,avion apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Erreur de jeu imbriquée. S'il vous plaît contacter l'administrateur. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Rapport d'émission DocType: Auto Repeat,Auto Repeat Schedule,Répétition automatique +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Voir la référence DocType: Address,Office,Bureau DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,Il y a {0} jours @@ -2316,7 +2355,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Va apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Mes paramètres apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Le nom du groupe ne peut pas être vide. DocType: Workflow State,road,route -DocType: Website Route Redirect,Source,La source +DocType: Contact,Source,La source apps/frappe/frappe/www/third_party_apps.html,Active Sessions,sessions actives apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Il ne peut y avoir qu'un seul pli dans un formulaire apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Nouveau chat @@ -2338,6 +2377,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,S'il vous plaît entrer URL d'autorisation DocType: Email Account,Send Notification to,Envoyer une notification à apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Paramètres de sauvegarde Dropbox +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,Quelque chose s'est mal passé pendant la génération de jetons. Cliquez sur {0} pour en générer un nouveau. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Supprimer toutes les personnalisations? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Seul l'administrateur peut éditer DocType: Auto Repeat,Reference Document,Document de référence @@ -2362,6 +2402,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Les rôles peuvent être définis pour les utilisateurs à partir de leur page d'utilisateur. DocType: Website Settings,Include Search in Top Bar,Inclure la recherche dans la barre supérieure apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Urgent] Erreur lors de la création de% s récurrent pour% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Raccourcis globaux DocType: Help Article,Author,Auteur DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Aucun document trouvé pour les filtres donnés @@ -2397,10 +2438,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, rangée {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Si vous téléchargez de nouveaux enregistrements, "Nommage de la série" devient obligatoire, le cas échéant." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Modifier les propriétés -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Impossible d'ouvrir l'instance lorsque son {0} est ouvert +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,Impossible d'ouvrir l'instance lorsque son {0} est ouvert DocType: Activity Log,Timeline Name,Nom de la timeline DocType: Comment,Workflow,Flux de travail apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Veuillez définir l'URL de base dans la clé de connexion sociale pour Frappe. +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Raccourcis clavier DocType: Portal Settings,Custom Menu Items,Articles de menu personnalisés apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,La longueur de {0} doit être comprise entre 1 et 1000. apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Connexion perdue. Certaines fonctionnalités pourraient ne pas fonctionner. @@ -2463,6 +2505,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Lignes ajou DocType: DocType,Setup,Installer apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} créé avec succès apps/frappe/frappe/www/update-password.html,New Password,nouveau mot de passe +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Sélectionner un champ apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Quitter cette conversation DocType: About Us Settings,Team Members,Membres de l'équipe DocType: Blog Settings,Writers Introduction,Ecrivains Introduction @@ -2532,13 +2575,12 @@ DocType: Chat Room,Name,prénom DocType: Communication,Email Template,Modèle de courrier électronique DocType: Energy Point Settings,Review Levels,Niveaux de révision DocType: Print Format,Raw Printing,Impression brute -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Impossible d'ouvrir {0} lorsque son instance est ouverte +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,Impossible d'ouvrir {0} lorsque son instance est ouverte DocType: DocType,"Make ""name"" searchable in Global Search",Rendre "nom" consultable dans la recherche globale DocType: Data Migration Mapping,Data Migration Mapping,Cartographie de la migration des données DocType: Data Import,Partially Successful,Partiellement réussi DocType: Communication,Error,Erreur apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Le type de champ ne peut pas être modifié de {0} à {1} dans la ligne {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Erreur de connexion à l'application QZ Tray ...

L'application QZ Tray doit être installée et en cours d'exécution pour que vous puissiez utiliser la fonction d'impression brute.

Cliquez ici pour télécharger et installer QZ Tray .
Cliquez ici pour en savoir plus sur l'impression brute ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Prendre une photo apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,Évitez les années qui vous sont associées. DocType: Web Form,Allow Incomplete Forms,Autoriser les formulaires incomplets @@ -2634,7 +2676,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Sélectionnez target = "_blank" pour ouvrir une nouvelle page. DocType: Portal Settings,Portal Menu,Menu du portail DocType: Website Settings,Landing Page,Page d'atterrissage -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,Veuillez vous inscrire ou vous connecter pour commencer DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Les options de contact, telles que "Requête de vente, Requête de support", etc., chacune sur une nouvelle ligne ou séparées par une virgule." apps/frappe/frappe/twofactor.py,Verfication Code,Code de vérification apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} déjà désabonné @@ -2720,6 +2761,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Cartographie du DocType: Address,Sales User,Utilisateur de vente apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Modifier les propriétés du champ (masquer, en lecture seule, permission, etc.)" DocType: Property Setter,Field Name,Nom de domaine +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Client DocType: Print Settings,Font Size,Taille de police DocType: User,Last Password Reset Date,Date de réinitialisation du dernier mot de passe DocType: System Settings,Date and Number Format,Format de date et de nombre @@ -2785,6 +2827,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Noeud de groupe apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Fusionner avec l'existant DocType: Blog Post,Blog Intro,Blog Intro apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nouvelle Mention +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Aller au champ DocType: Prepared Report,Report Name,Nom du rapport apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Veuillez actualiser pour obtenir le dernier document. apps/frappe/frappe/core/doctype/communication/communication.js,Close,Fermer @@ -2794,10 +2837,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,un événement DocType: Social Login Key,Access Token URL,URL de jeton d'accès apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Veuillez définir les clés d'accès Dropbox dans la configuration de votre site. +DocType: Google Contacts,Google Contacts,Google Contacts DocType: User,Reset Password Key,Réinitialiser la clé de mot de passe apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Modifié par DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.","Pour renouveler, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Enregistré avec succès +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Envoyez un courrier électronique à {0} pour le lier ici. DocType: File,Folder,Dossier DocType: DocField,Perm Level,Niveau de Perm DocType: Print Settings,Page Settings,Paramètres de page @@ -2827,6 +2873,7 @@ DocType: Workflow State,remove-sign,enlever-signer DocType: Dashboard Chart,Full,Plein DocType: DocType,User Cannot Create,L'utilisateur ne peut pas créer apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Vous avez gagné {0} point +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configuration> Utilisateur DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Si vous définissez cette option, cet élément apparaîtra dans une liste déroulante sous le parent sélectionné." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Pas d'emails apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Les champs suivants sont manquants: @@ -2840,13 +2887,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Aff DocType: Web Form,Web Form Fields,Champs de formulaire Web DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Formulaire modifiable par l'utilisateur sur le site Web. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Annuler définitivement {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Annuler définitivement {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Option 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,Totaux apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Ceci est un mot de passe très commun. DocType: Personal Data Deletion Request,Pending Approval,Validation en attente apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Le document n'a pas pu être attribué correctement apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Non autorisé pour {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Aucune valeur à afficher DocType: Personal Data Download Request,Personal Data Download Request,Demande de téléchargement de données personnelles apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} a partagé ce document avec {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Sélectionnez {0} @@ -2862,7 +2910,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Cet e-mail a été envoyé à {0} et copié à {1}. apps/frappe/frappe/email/smtp.py,Invalid login or password,Nom d'utilisateur ou mot de passe incorrect DocType: Social Login Key,Social Login Key,Clé de connexion sociale -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Veuillez configurer le compte de messagerie par défaut à partir de Configuration> E-mail> Compte de messagerie apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filtres sauvegardés DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Comment cette devise devrait-elle être formatée? Si non défini, utilisera les valeurs par défaut du système" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} est défini sur l'état {2} @@ -2988,6 +3035,7 @@ DocType: User,Location,Emplacement apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Pas de données DocType: Website Meta Tag,Website Meta Tag,Tag méta de site Web DocType: Workflow State,film,film +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Copié dans le presse-papier. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Paramètres non trouvés apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,L'étiquette est obligatoire DocType: Webhook,Webhook Headers,En-têtes Webhook @@ -3196,7 +3244,7 @@ DocType: Address,Address Line 1,Adresse 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Pour le type de document apps/frappe/frappe/model/base_document.py,Data missing in table,Données manquantes dans la table apps/frappe/frappe/utils/bot.py,Could not identify {0},Impossible d'identifier {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Ce formulaire a été modifié après l'avoir chargé +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Ce formulaire a été modifié après l'avoir chargé apps/frappe/frappe/www/login.html,Back to Login,Retour connexion apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Pas encore défini DocType: Data Migration Mapping,Pull,tirer @@ -3264,6 +3312,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Cartographie de la ta apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,"Configuration du compte de messagerie, veuillez entrer votre mot de passe pour:" apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Trop d'écrits dans une requête. S'il vous plaît envoyer des demandes plus petites DocType: Social Login Key,Salesforce,Salesforce +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importer {0} de {1} DocType: User,Tile,Tuile apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,La salle {0} doit comporter au maximum un utilisateur. DocType: Email Rule,Is Spam,Est le spam @@ -3301,7 +3350,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,fermeture de dossier DocType: Data Migration Run,Pull Update,Tirer la mise à jour apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},fusionné {0} dans {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Aucun résultat trouvé pour '

DocType: SMS Settings,Enter url parameter for receiver nos,Entrez le paramètre d'URL pour le numéro de destinataire apps/frappe/frappe/utils/jinja.py,Syntax error in template,Erreur de syntaxe dans le modèle apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Veuillez définir la valeur des filtres dans la table Filtre de rapport. @@ -3314,6 +3362,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Désolé, v DocType: System Settings,In Days,En jours DocType: Report,Add Total Row,Ajouter le nombre total de lignes apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Échec du démarrage de la session +DocType: Translation,Verified,Vérifié DocType: Print Format,Custom HTML Help,Aide HTML personnalisée DocType: Address,Preferred Billing Address,Adresse de facturation préférée apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Assigné à @@ -3328,7 +3377,6 @@ DocType: Help Article,Intermediate,Intermédiaire DocType: Module Def,Module Name,Nom du module DocType: OAuth Authorization Code,Expiration time,Date d'expiration apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Définir le format par défaut, la taille de la page, le style d'impression, etc." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,Vous ne pouvez pas aimer quelque chose que vous avez créé DocType: System Settings,Session Expiry,Session expirée DocType: DocType,Auto Name,Nom automatique apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Sélectionnez les pièces jointes @@ -3356,6 +3404,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Page système DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,"Remarque: Par défaut, les emails pour les sauvegardes ayant échoué sont envoyés." DocType: Custom DocPerm,Custom DocPerm,DocPerm personnalisé +DocType: Translation,PR sent,PR envoyé DocType: Tag Doc Category,Doctype to Assign Tags,Doctype à affecter des balises DocType: Address,Warehouse,Entrepôt apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Configuration de Dropbox @@ -3423,7 +3472,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Entrée pour ajouter un commentaire apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Le champ {0} n'est pas sélectionnable. DocType: User,Birth Date,Date de naissance -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Avec retrait de groupe DocType: List View Setting,Disable Count,Désactiver le compte DocType: Contact Us Settings,Email ID,Identifiant Email apps/frappe/frappe/utils/password.py,Incorrect User or Password,Utilisateur ou mot de passe incorrect @@ -3458,6 +3506,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Ce rôle met à jour les autorisations utilisateur pour un utilisateur DocType: Website Theme,Theme,Thème DocType: Web Form,Show Sidebar,Afficher la barre latérale +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Intégration de Google Contacts. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Boîte de réception par défaut apps/frappe/frappe/www/login.py,Invalid Login Token,Jeton de connexion invalide apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Définissez d'abord le nom et sauvegardez l'enregistrement. @@ -3485,7 +3534,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,S'il vous plaît corriger le DocType: Top Bar Item,Top Bar Item,Article de barre supérieure ,Role Permissions Manager,Gestionnaire d'autorisations de rôle -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,Il y avait des erreurs. S'il vous plaît signaler ce. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} année (s) apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Femelle DocType: System Settings,OTP Issuer Name,Nom de l'émetteur OTP apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Ajouter à faire @@ -3585,6 +3634,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Param apps/frappe/frappe/model/document.py,none of,aucun de DocType: Desktop Icon,Page,Page DocType: Workflow State,plus-sign,signe plus +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Vider le cache et recharger apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Mise à jour impossible: lien incorrect / expiré. DocType: Kanban Board Column,Yellow,Jaune 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 colonnes pour un champ dans une grille (le nombre total de colonnes dans une grille doit être inférieur à 11) @@ -3599,6 +3649,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Nouv DocType: Activity Log,Date,Rendez-vous amoureux DocType: Communication,Communication Type,Type de communication apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Table des parents +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Naviguer dans la liste en haut DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Afficher l'erreur complète et autoriser le signalement des problèmes au développeur DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3620,7 +3671,6 @@ DocType: Notification Recipient,Email By Role,Email par rôle apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,Veuillez mettre à niveau pour ajouter plus de {0} abonnés. apps/frappe/frappe/email/queue.py,This email was sent to {0},Cet email a été envoyé à {0} DocType: User,Represents a User in the system.,Représente un utilisateur dans le système. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Page {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Commencer un nouveau format apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Ajouter un commentaire apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} sur {1} diff --git a/frappe/translations/gu.csv b/frappe/translations/gu.csv index 2e640c6297..2d0405fb8d 100644 --- a/frappe/translations/gu.csv +++ b/frappe/translations/gu.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,ઘટકો સક્ષમ કરો DocType: DocType,Default Sort Order,મૂળભૂત સોર્ટ ઓર્ડર apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,રિપોર્ટમાંથી માત્ર આંકડાકીય ફીલ્ડ્સ બતાવી રહ્યું છે +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,મેનુ અને સાઇડબારમાં વધારાના શૉર્ટકટ્સને ટ્રિગર કરવા માટે Alt કી દબાવો DocType: Workflow State,folder-open,ફોલ્ડર-ખુલ્લું DocType: Customize Form,Is Table,ટેબલ છે apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,જોડાયેલ ફાઇલ ખોલવામાં અસમર્થ. શું તમે તેને CSV તરીકે નિકાસ કર્યું? DocType: DocField,No Copy,કોઈ કૉપિ નથી DocType: Custom Field,Default Value,ડિફૉલ્ટ મૂલ્ય apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,આવતા મેલ્સ માટે ફરજિયાત છે +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,સમન્વયન સંપર્કો DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,ડેટા સ્થળાંતર મેપિંગ વિગતવાર apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,અનુસરવાનું apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.","કાચો છાપ" દ્વારા પીડીએફ છાપવાનું હજી સુધી સપોર્ટેડ નથી. કૃપા કરીને પ્રિન્ટર સેટિંગ્સમાં પ્રિન્ટર મેપિંગને દૂર કરો અને ફરી પ્રયાસ કરો. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} અને {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,ફિલ્ટર્સ સાચવવામાં ભૂલ આવી હતી apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,તમારો પાસવર્ડ નાખો apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,ઘર અને જોડાણો ફોલ્ડર્સને કાઢી શકતા નથી +DocType: Email Account,Enable Automatic Linking in Documents,દસ્તાવેજોમાં આપમેળે લિંકિંગ સક્ષમ કરો DocType: Contact Us Settings,Settings for Contact Us Page,અમારો સંપર્ક પાનું માટે સેટિંગ્સ DocType: Social Login Key,Social Login Provider,સમાજ લૉગિન પ્રદાતા +DocType: Email Account,"For more information, click here.","વધુ માહિતી માટે, અહીં ક્લિક કરો ." DocType: Transaction Log,Previous Hash,ગત હેશ DocType: Notification,Value Changed,મૂલ્ય બદલ્યું DocType: Report,Report Type,અહેવાલ પ્રકાર @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,એનર્જી પોઇન્ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,કૃપા કરીને સામાજિક લૉગિન સક્ષમ થાય તે પહેલાં ક્લાયંટ ID દાખલ કરો DocType: Communication,Has Attachment,જોડાણ છે DocType: User,Email Signature,ઇમેઇલ હસ્તાક્ષર -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} વર્ષ (ઓ) પહેલા ,Addresses And Contacts,સરનામા અને સંપર્કો apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,આ કાનબન બોર્ડ ખાનગી રહેશે DocType: Data Migration Run,Current Mapping,વર્તમાન મેપિંગ @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","તમે બધા તરીકે સમન્વયન વિકલ્પ પસંદ કરી રહ્યાં છો, તે બધા \ વાંચેલા તેમજ સર્વરથી ન વાંચેલા સંદેશને ફરીથી ગોઠવશે. આનાથી સંચાર (ઇમેઇલ્સ) નું ડુપ્લિકેશન પણ થઈ શકે છે." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},છેલ્લે સમન્વયિત {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,હેડર સામગ્રી બદલી શકતા નથી +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,સબમિટ કર્યા પછી {0} ને બદલવાની મંજૂરી નથી apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","એપ્લિકેશનને નવા સંસ્કરણ પર અપડેટ કરવામાં આવી છે, કૃપા કરીને આ પૃષ્ઠને ફરીથી તાજું કરો" DocType: User,User Image,વપરાશકર્તા છબી @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},{0} apps/frappe/frappe/public/js/frappe/chat.js,Discard,કાઢી નાખો DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,શ્રેષ્ઠ પરિણામો માટે પારદર્શક પૃષ્ઠભૂમિ સાથે આશરે 150px ની છબી પસંદ કરો. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,ફરીથી ભરાઈ ગયું +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} પસંદ કરેલ મૂલ્યો DocType: Blog Post,Email Sent,ઇમેઇલ મોકલાય ગયો DocType: Communication,Read by Recipient On,પ્રાપ્તકર્તા દ્વારા વાંચો DocType: User,Allow user to login only after this hour (0-24),આ કલાક પછી માત્ર વપરાશકર્તાને પ્રવેશ કરવાની મંજૂરી આપો (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,નિકાસ કરવા માટે મોડ્યુલ DocType: DocType,Fields,ક્ષેત્રો -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,તમને આ દસ્તાવેજ છાપવાની મંજૂરી નથી +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,તમને આ દસ્તાવેજ છાપવાની મંજૂરી નથી apps/frappe/frappe/public/js/frappe/model/model.js,Parent,માતાપિતા apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","તમારું સત્ર સમાપ્ત થઈ ગયું છે, કૃપા કરીને ચાલુ રાખવા માટે ફરીથી લૉગિન કરો." DocType: Assignment Rule,Priority,પ્રાથમિકતા @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,ફરીથી DocType: DocType,UPPER CASE,અપપર કેસ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,કૃપા કરીને ઇમેઇલ સરનામું સેટ કરો DocType: Communication,Marked As Spam,સ્પામ તરીકે ચિહ્નિત +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,ઇમેઇલ સરનામું જેની Google સંપર્કોને સમન્વયિત કરવું છે. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,સબ્સ્ક્રાઇબર્સ આયાત કરો apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,ફિલ્ટર સેવ કરો DocType: Address,Preferred Shipping Address,પસંદગીના શિપિંગ સરનામું DocType: GCalendar Account,The name that will appear in Google Calendar,નામ કે જે Google Calendar માં દેખાશે +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,રીફ્રેશ ટોકન બનાવવા માટે {0} પર ક્લિક કરો. DocType: Email Account,Disable SMTP server authentication,SMTP સર્વર પ્રમાણીકરણને અક્ષમ કરો DocType: Email Account,Total number of emails to sync in initial sync process ,પ્રારંભિક સમન્વયન પ્રક્રિયામાં સમન્વયિત કરવા માટે ઇમેઇલ્સની કુલ સંખ્યા DocType: System Settings,Enable Password Policy,પાસવર્ડ નીતિ સક્ષમ કરો @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,કોડ દાખલ કરો apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,માં નહિ DocType: Auto Repeat,Start Date,પ્રારંભ તારીખ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,ચાર્ટ સેટ કરો +DocType: Website Theme,Theme JSON,થીમ JSON apps/frappe/frappe/www/list.py,My Account,મારું ખાતું DocType: DocType,Is Published Field,પ્રકાશિત ક્ષેત્ર છે DocType: DocField,Set non-standard precision for a Float or Currency field,ફ્લોટ અથવા કરન્સી ફીલ્ડ માટે નૉન-સ્ટાન્ડર્ડ ચોકસાઈ સેટ કરો @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: દસ્તાવેજ સંદર્ભ મોકલવા માટે Reference: {{ reference_doctype }} {{ reference_name }} DocType: LDAP Settings,LDAP First Name Field,એલડીએપી ફર્સ્ટ નામ ફીલ્ડ apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,ડિફોલ્ટ મોકલી અને ઇનબોક્સ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,સેટઅપ> ફોર્મ કસ્ટમાઇઝ કરો apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.","અપડેટ કરવા માટે, તમે ફક્ત પસંદગીના કૉલમ્સને અપડેટ કરી શકો છો." apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',ફીલ્ડ 'ચેક' પ્રકાર માટે ડિફોલ્ટ '0' અથવા '1' હોવું આવશ્યક છે. apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,આ દસ્તાવેજ સાથે શેર કરો @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,ડોમેન્સ એચટીએમએલ DocType: Blog Settings,Blog Settings,બ્લોગ સેટિંગ્સ apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","ડોકટાઇપનું નામ એક અક્ષરથી શરૂ થવું જોઈએ અને તેમાં ફક્ત અક્ષરો, સંખ્યાઓ, સ્થાનો અને અંડરસ્કોર્સ શામેલ હોઈ શકે છે" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,સેટઅપ> વપરાશકર્તા પરવાનગીઓ DocType: Communication,Integrations can use this field to set email delivery status,ઈમેલ ડિલિવરી સ્થિતિ સેટ કરવા માટે ઇન્ટિગ્રેશન્સ આ ફીલ્ડનો ઉપયોગ કરી શકે છે apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,ગેરુનો ચુકવણી ગેટવે સેટિંગ્સ DocType: Print Settings,Fonts,ફોન્ટ DocType: Notification,Channel,ચેનલ DocType: Communication,Opened,ખુલ્લું DocType: Workflow Transition,Conditions,શરતો +apps/frappe/frappe/config/website.py,A user who posts blogs.,એક વપરાશકર્તા જે બ્લૉગ્સ પોસ્ટ કરે છે. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,ખાતું નથી? સાઇન અપ કરો apps/frappe/frappe/utils/file_manager.py,Added {0},ઉમેરાયેલ {0} DocType: Newsletter,Create and Send Newsletters,બનાવો અને ન્યૂઝલેટર્સ મોકલો DocType: Website Settings,Footer Items,ફૂટર વસ્તુઓ +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,કૃપા કરીને સેટઅપ> ઇમેઇલ> ઇમેઇલ એકાઉન્ટથી ડિફૉલ્ટ ઇમેઇલ એકાઉન્ટ સેટ કરો DocType: Website Slideshow Item,Website Slideshow Item,વેબસાઇટ વેબસાઇટ વસ્તુ apps/frappe/frappe/config/integrations.py,Register OAuth Client App,ઑથ ક્લાયંટ એપ્લિકેશન નોંધણી કરો DocType: Error Snapshot,Frames,ફ્રેમ્સ @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","સ્તર 0 દસ્તાવેજ સ્તર પરવાનગીઓ માટે છે, ક્ષેત્ર સ્તરની પરવાનગીઓ માટે ઉચ્ચ સ્તર." DocType: Address,City/Town,શહેર / નગર DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","આ તમારી વર્તમાન થીમને ફરીથી સેટ કરશે, શું તમે ખરેખર ચાલુ રાખવા માંગો છો?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},ફરજિયાત ક્ષેત્રો {0} માં આવશ્યક છે apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},ઇમેઇલ એકાઉન્ટથી કનેક્ટ કરતી વખતે ભૂલ {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,પુનરાવર્તિત બનાવતી વખતે એક ભૂલ આવી @@ -528,7 +537,7 @@ DocType: Event,Event Category,ઇવેન્ટ કેટેગરી apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,પર આધારિત સ્તંભોને apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,મથાળું સંપાદિત કરો DocType: Communication,Received,પ્રાપ્ત -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,તમને આ પૃષ્ઠને ઍક્સેસ કરવાની પરવાનગી નથી. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,તમને આ પૃષ્ઠને ઍક્સેસ કરવાની પરવાનગી નથી. DocType: User Social Login,User Social Login,વપરાશકર્તા સામાજિક લૉગિન apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,એક જ ફોલ્ડરમાં એક પાયથોન ફાઇલ લખો જ્યાં તે સાચવેલી છે અને કૉલમ અને પરિણામ પરત કરે છે. DocType: Contact,Purchase Manager,ખરીદી મેનેજર @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,ચ apps/frappe/frappe/utils/data.py,Operator must be one of {0},ઑપરેટર {0} માંનો એક હોવો આવશ્યક છે apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,જો માલિક DocType: Data Migration Run,Trigger Name,ટ્રિગર નામ -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,તમારા બ્લોગ પર શીર્ષકો અને પરિચય લખો. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,ક્ષેત્ર દૂર કરો apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,બધા સંકુચિત કરો apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,પૃષ્ઠભૂમિ રંગ @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,બાર DocType: SMS Settings,Enter url parameter for message,સંદેશ માટે URL પરિમાણ દાખલ કરો apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,નવું કસ્ટમ પ્રિંટ ફોર્મેટ apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} પહેલેથી અસ્તિત્વમાં છે +DocType: Workflow Document State,Is Optional State,વૈકલ્પિક રાજ્ય છે DocType: Address,Purchase User,વપરાશકર્તા ખરીદો DocType: Data Migration Run,Insert,શામેલ કરો DocType: Web Form,Route to Success Link,સફળતા લિંક માટે માર્ગ @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,વપ DocType: File,Is Home Folder,ઘર ફોલ્ડર છે apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,લખો DocType: Post,Is Pinned,પિન થયેલ છે -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},'{0}' {1} ને પરવાનગી નથી +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},'{0}' {1} ને પરવાનગી નથી DocType: Patch Log,Patch Log,પેચ લોગ DocType: Print Format,Print Format Builder,પ્રિન્ટ ફોર્મેટ બિલ્ડર 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 સરનામાંથી લૉગિન કરી શકે છે. આ ફક્ત વપરાશકર્તા પૃષ્ઠમાં વિશિષ્ટ વપરાશકર્તાઓ (યુ) માટે જ સેટ કરી શકાય છે" apps/frappe/frappe/utils/data.py,only.,માત્ર apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,શરત '{0}' અમાન્ય છે DocType: Auto Email Report,Day of Week,અઠવાડિયાનો દિવસ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Google સેટિંગ્સમાં Google API ને સક્ષમ કરો. DocType: DocField,Text Editor,લખાણ સંપાદક apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,કાપવું apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,આદેશ શોધો અથવા લખો @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,ડીબી બેકઅપ્સની સંખ્યા 1 કરતા ઓછી હોઈ શકતી નથી DocType: Workflow State,ban-circle,પ્રતિબંધ DocType: Data Export,Excel,એક્સેલ +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","હેડર, બ્રેડક્રમ્સ અને મેટા ટૅગ્સ" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,આધાર ઇમેઇલ સરનામું સ્પષ્ટ નથી DocType: Comment,Published,પ્રકાશિત DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","નોંધ: શ્રેષ્ઠ પરિણામો માટે, છબીઓ સમાન કદની હોવી જોઈએ અને પહોળાઈ ઊંચાઈ કરતા વધારે હોવી આવશ્યક છે." @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,શેડ્યુલર છેલ apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,બધા દસ્તાવેજ શેર્સની રિપોર્ટ DocType: Website Sidebar Item,Website Sidebar Item,વેબસાઇટ સાઇડબાર આઇટમ apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,શું કરવું +DocType: Google Settings,Google Settings,ગૂગલ સેટિંગ્સ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","તમારા દેશ, સમય ઝોન અને ચલણ પસંદ કરો" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","અહીં સ્થિર url પરિમાણો દાખલ કરો (દા.ત. પ્રેષક = ERPNext, વપરાશકર્તાનામ = ERPNext, પાસવર્ડ = 1234 વગેરે.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,કોઈ ઇમેઇલ એકાઉન્ટ નથી @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,ઑથ બેરર ટોકન ,Setup Wizard,સેટઅપ વિઝાર્ડ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,ચાર્ટ ટૉગલ કરો +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,સમન્વયિત DocType: Data Migration Run,Current Mapping Action,વર્તમાન મેપિંગ ઍક્શન DocType: Email Account,Initial Sync Count,પ્રારંભિક સમન્વયન ગણક apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,અમારો સંપર્ક પાનું માટે સેટિંગ્સ. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,પ્રિન્ટ ફોર્મેટ પ્રકાર apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,આ માપદંડ માટે કોઈ પરવાનગીઓ સેટ નથી. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,બધા વિસ્તૃત કરો +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,કોઈ ડિફૉલ્ટ એડ્રેસ ટેમ્પલેટ મળ્યું નથી. કૃપા કરીને સેટઅપ> છાપકામ અને બ્રાંડિંગ> સરનામાં નમૂનામાંથી એક નવું બનાવો. DocType: Tag Doc Category,Tag Doc Category,ટેગ ડૉક વર્ગ DocType: Data Import,Generated File,જનરેટ કરેલ ફાઇલ apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,નોંધો @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,સમયરેખા ક્ષેત્ર લિંક અથવા ડાયનેમિક લિંક હોવું આવશ્યક છે DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,આ આઉટગોઇંગ સર્વરથી સૂચનાઓ અને બલ્ક મેઇલ મોકલવામાં આવશે. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,આ એક ટોપ -100 સામાન્ય પાસવર્ડ છે. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,કાયમી ધોરણે {0} સબમિટ કરીએ? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,કાયમી ધોરણે {0} સબમિટ કરીએ? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} અસ્તિત્વમાં નથી, મર્જ કરવા માટે નવો લક્ષ્ય પસંદ કરો" DocType: Energy Point Rule,Multiplier Field,ગુણક ક્ષેત્ર DocType: Workflow,Workflow State Field,વર્કફ્લો રાજ્ય ક્ષેત્ર @@ -880,6 +894,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New {0},નવુ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto Repeat in the doctype {0},કસ્ટમ ક્ષેત્રમાં ઑડિઓ પુનરાવર્તન ઉમેરો. {0} DocType: Auto Email Report,Zero means send records updated at anytime,ઝીરો એટલે કે કોઈપણ સમયે અપડેટ કરેલા રેકોર્ડ્સ મોકલો apps/frappe/frappe/model/document.py,Value cannot be changed for {0},{0} માટે કિંમત બદલી શકાતી નથી +apps/frappe/frappe/config/integrations.py,Google API Settings.,ગૂગલ એપીઆઇ સેટિંગ્સ. DocType: System Settings,Force User to Reset Password,વપરાશકર્તાને પાસવર્ડ ફરીથી સેટ કરવા માટે દબાણ કરો apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,રીપોર્ટ બિલ્ડર અહેવાલો સીધા રિપોર્ટ બિલ્ડર દ્વારા મેનેજ કરવામાં આવે છે. નવરાશ. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,ફિલ્ટર સંપાદિત કરો @@ -933,7 +948,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,મ DocType: S3 Backup Settings,eu-north-1,ઇયુ-ઉત્તર -1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: સમાન રોલ, સ્તર અને {1} સાથે ફક્ત એક જ નિયમની મંજૂરી છે" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,તમને આ વેબ ફોર્મ ડોક્યુમેન્ટને અપડેટ કરવાની મંજૂરી નથી -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,આ રેકોર્ડ માટે મહત્તમ જોડાણ મર્યાદા પહોંચી. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,આ રેકોર્ડ માટે મહત્તમ જોડાણ મર્યાદા પહોંચી. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,મહેરબાની કરીને ખાતરી કરો કે રેફરન્સ કોમ્યુનિકેશન ડૉક્સ ગોળાકાર રીતે જોડાયેલા નથી. DocType: DocField,Allow in Quick Entry,ઝડપી એન્ટ્રીમાં મંજૂરી આપો DocType: Error Snapshot,Locals,સ્થાનિક @@ -965,7 +980,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,અપવાદ પ્રકાર apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},કાઢી નાખી અથવા રદ કરી શકતા નથી કારણ કે {0} {1} {2} {3} {4} સાથે જોડાયેલ છે apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTP ગુપ્ત માત્ર એડમિનિસ્ટ્રેટર દ્વારા ફરીથી સેટ કરી શકાય છે. -DocType: Web Form Field,Page Break,પૃષ્ઠ વિરામ DocType: Website Script,Website Script,વેબસાઇટ સ્ક્રિપ્ટ DocType: Integration Request,Subscription Notification,સબ્સ્ક્રિપ્શન સૂચના DocType: DocType,Quick Entry,ઝડપી પ્રવેશ @@ -982,6 +996,7 @@ DocType: Notification,Set Property After Alert,ચેતવણી પછી સ apps/frappe/frappe/__init__.py,Thank you,આભાર apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,આંતરિક એકીકરણ માટે સ્લેક વેબહૂક apps/frappe/frappe/config/settings.py,Import Data,ડેટા આયાત કરો +DocType: Translation,Contributed Translation Doctype Name,ફાળો આપેલ અનુવાદ ડૉકટાઇપ નામ DocType: Social Login Key,Office 365,ઑફિસ 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,આઇડી DocType: Review Level,Review Level,સમીક્ષા સ્તર @@ -1000,7 +1015,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,સફળતાપૂર્વક થઈ ગયું apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} સૂચિ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,પ્રશંસા કરો -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),નવું {0} (Ctrl + બી) DocType: Contact,Is Primary Contact,પ્રાથમિક સંપર્ક છે DocType: Print Format,Raw Commands,કાચો આદેશો apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,પ્રિન્ટ ફોર્મેટ્સ માટે સ્ટાઇલશીટ્સ @@ -1040,6 +1054,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,પૃષ્ઠભ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},{0} માં {0} શોધો DocType: Email Account,Use SSL,SSL નો ઉપયોગ કરો DocType: DocField,In Standard Filter,સ્ટાન્ડર્ડ ફિલ્ટરમાં +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,સમન્વયિત કરવા માટે કોઈ Google સંપર્કો હાજર નથી. DocType: Data Migration Run,Total Pages,કુલ પાના apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: ફીલ્ડ '{1}' વિશિષ્ટ તરીકે સેટ કરી શકાતા નથી કારણ કે તેમાં બિન-અનન્ય મૂલ્યો છે DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","જો સક્ષમ હોય, તો વપરાશકર્તાઓ જ્યારે પણ લૉગિન કરે ત્યારે તેમને સૂચિત કરવામાં આવશે. જો સક્ષમ નથી, તો વપરાશકર્તાઓને ફક્ત એકવાર જ સૂચિત કરવામાં આવશે." @@ -1060,7 +1075,7 @@ DocType: Assignment Rule,Automation,ઓટોમેશન apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,ફાઇલોને અનઝિપ કરી રહ્યું છે ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}','{0}' માટે શોધો apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,કંઈક ખોટું થયું -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,જોડાણ પહેલાં કૃપા કરીને સાચવો. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,જોડાણ પહેલાં કૃપા કરીને સાચવો. DocType: Version,Table HTML,ટેબલ એચટીએમએલ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,હબ DocType: Page,Standard,ધોરણ @@ -1138,12 +1153,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,પરિ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} રેકોર્ડ્સ કાઢી નાંખ્યા apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,ડ્રૉપબૉક્સ ઍક્સેસ ટોકન જનરેટ કરતી વખતે કંઈક ખોટું થયું. કૃપા કરીને વધુ વિગતો માટે ભૂલ લૉગ તપાસો. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,ના વંશજો -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,કોઈ ડિફૉલ્ટ એડ્રેસ ટેમ્પલેટ મળ્યું નથી. કૃપા કરીને સેટઅપ> છાપકામ અને બ્રાંડિંગ> સરનામાં નમૂનામાંથી એક નવું બનાવો. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,ગૂગલ સંપર્કો ગોઠવેલ છે. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,વિગતો છુપાવો apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,ફૉન્ટ સ્ટાઇલ apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,તમારું સબ્સ્ક્રિપ્શન {0} પર સમાપ્ત થશે. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},ઇમેઇલ એકાઉન્ટ {0} માંથી ઇમેઇલ્સ પ્રાપ્ત કરતી વખતે પ્રમાણીકરણ નિષ્ફળ થયું. સર્વર તરફથી સંદેશ: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),છેલ્લા અઠવાડિયાના પ્રદર્શન ({0} થી {1} સુધીના આધારે આંકડા +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,ઇનકમિંગ સક્ષમ હોય તો સ્વચાલિત લિંકિંગ ફક્ત સક્રિય કરી શકાય છે. DocType: Website Settings,Title Prefix,શીર્ષક ઉપસર્ગ apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,તમે ઉપયોગ કરી શકો છો સત્તાધિકરણ એપ્લિકેશન્સ છે: DocType: Bulk Update,Max 500 records at a time,એક સમયે મેક્સ 500 રેકોર્ડ્સ @@ -1176,7 +1192,7 @@ DocType: Auto Email Report,Report Filters,ફિલ્ટર્સની જા apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,કૉલમ પસંદ કરો DocType: Event,Participants,સહભાગીઓ DocType: Auto Repeat,Amended From,માંથી સુધારેલ -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,તમારી માહિતી સબમિટ કરવામાં આવી છે +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,તમારી માહિતી સબમિટ કરવામાં આવી છે DocType: Help Category,Help Category,સહાય કેટેગરી apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 મહિનો apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,નવી ફોર્મેટને સંપાદિત કરવા અથવા પ્રારંભ કરવા માટે અસ્તિત્વમાંના ફોર્મેટને પસંદ કરો. @@ -1223,7 +1239,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,ટ્રેક કરવા માટે ક્ષેત્ર DocType: User,Generate Keys,કી પેદા કરો DocType: Comment,Unshared,અનશ્રેડેડ -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,સાચવેલ +DocType: Translation,Saved,સાચવેલ DocType: OAuth Client,OAuth Client,ઑથ ક્લાયંટ DocType: System Settings,Disable Standard Email Footer,સ્ટાન્ડર્ડ ઇમેઇલ ફૂટર નિષ્ક્રિય કરો apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,પ્રિન્ટ ફોર્મેટ {0} અક્ષમ છે @@ -1254,6 +1270,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,છેલ્ DocType: Data Import,Action,ક્રિયા apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,ક્લાયંટ કી આવશ્યક છે DocType: Chat Profile,Notifications,સૂચનાઓ +DocType: Translation,Contributed,ફાળો આપ્યો DocType: System Settings,mm/dd/yyyy,એમએમ / ડીડી / વાય DocType: Report,Custom Report,કસ્ટમ રિપોર્ટ DocType: Workflow State,info-sign,માહિતી-ચિહ્ન @@ -1270,6 +1287,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,સંપર્ક કરો DocType: LDAP Settings,LDAP Username Field,એલડીએપી વપરાશકર્તાનામ ક્ષેત્ર apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} ફીલ્ડ {1} માં વિશિષ્ટ રૂપે સેટ કરી શકાતા નથી, કારણ કે ત્યાં બિન-અનન્ય અસ્તિત્વમાંના મૂલ્યો છે" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,સેટઅપ> ફોર્મ કસ્ટમાઇઝ કરો DocType: User,Social Logins,સમાજ પ્રવેશો DocType: Workflow State,Trash,ટ્રૅશ DocType: Stripe Settings,Secret Key,ગુપ્ત કી @@ -1327,6 +1345,7 @@ DocType: DocType,Title Field,શીર્ષક ક્ષેત્ર apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,આઉટગોઇંગ ઇમેઇલ સર્વરથી કનેક્ટ કરી શકાયું નથી DocType: File,File URL,ફાઇલ યુઆરએલ DocType: Help Article,Likes,પસંદ કરે છે +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,ગૂગલ સંપર્કો એકત્રિકરણ અક્ષમ છે. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,બેકઅપને ઍક્સેસ કરવા માટે તમારે લૉગ ઇન થવાની જરૂર છે અને સિસ્ટમ સંચાલક ભૂમિકા છે. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,પ્રથમ સ્તર DocType: Blogger,Short Name,ટુકુ નામ @@ -1344,13 +1363,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,ઝિપ આયાત કરો DocType: Contact,Gender,જાતિ DocType: Workflow State,thumbs-down,અંગૂઠા નીચે -DocType: Web Page,SEO,એસઇઓ apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},કતાર {0} માંની એક હોવી જોઈએ apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},દસ્તાવેજ પ્રકાર પર સૂચના સેટ કરી શકાતી નથી {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,આ વપરાશકર્તાને સિસ્ટમ મેનેજર ઉમેરવાનું કારણ કે ત્યાં ઓછામાં ઓછા એક સિસ્ટમ મેનેજર હોવું આવશ્યક છે apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,સ્વાગત ઇમેઇલ મોકલ્યો DocType: Transaction Log,Chaining Hash,ચેઇનિંગ હેશ DocType: Contact,Maintenance Manager,જાળવણી મેનેજર +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","સરખામણી માટે,> 5, <10 અથવા = 324 નો ઉપયોગ કરો. શ્રેણીઓ માટે, 5:10 (5 અને 10 ની વચ્ચેના મૂલ્યો માટે) નો ઉપયોગ કરો." apps/frappe/frappe/utils/bot.py,show,બતાવો apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,શેર યુઆરએલ apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,અસમર્થિત ફાઇલ ફોર્મેટ @@ -1372,7 +1391,7 @@ DocType: Communication,Notification,સૂચના DocType: Data Import,Show only errors,ફક્ત ભૂલો દર્શાવો DocType: Energy Point Log,Review,સમીક્ષા કરો apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,પંક્તિઓ દૂર કરી -DocType: GSuite Settings,Google Credentials,ગૂગલ પ્રમાણપત્રો +DocType: Google Settings,Google Credentials,ગૂગલ પ્રમાણપત્રો apps/frappe/frappe/www/login.html,Or login with,અથવા સાથે પ્રવેશ કરો apps/frappe/frappe/model/document.py,Record does not exist,રેકોર્ડ અસ્તિત્વમાં નથી apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,નવી રિપોર્ટ નામ @@ -1397,6 +1416,7 @@ DocType: Desktop Icon,List,યાદી DocType: Workflow State,th-large,મોટું apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: સબમિટ કરી શકાતું નથી જો સબમિટ કરી શકાતું નથી સબમિટ કરો apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,કોઈપણ રેકોર્ડ સાથે જોડાયેલ નથી +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZ ટ્રે એપ્લિકેશનથી કનેક્ટ કરવામાં ભૂલ ...

કાચો પ્રિંટ સુવિધાનો ઉપયોગ કરવા માટે તમારે QZ ટ્રે એપ્લિકેશન ઇન્સ્ટોલ અને ચાલુ કરવાની જરૂર છે.

QZ ટ્રે ડાઉનલોડ અને ઇન્સ્ટોલ કરવા માટે અહીં ક્લિક કરો .
કાચો છાપવા વિશે વધુ જાણવા માટે અહીં ક્લિક કરો ." DocType: Chat Message,Content,સામગ્રી DocType: Workflow Transition,Allow Self Approval,સ્વયં મંજૂરી આપો apps/frappe/frappe/www/qrcode.py,Page has expired!,પૃષ્ઠની સમયસીમા સમાપ્ત થઈ ગઈ છે! @@ -1413,6 +1433,7 @@ DocType: Workflow State,hand-right,હાથ અધિકાર DocType: Website Settings,Banner is above the Top Menu Bar.,બેનર ટોપ મેનુ બાર ઉપર છે. apps/frappe/frappe/www/update-password.html,Invalid Password,અમાન્ય પાસવર્ડ apps/frappe/frappe/utils/data.py,1 month ago,1 મહિના પહેલા +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,ગૂગલ સંપર્કો ઍક્સેસ પરવાનગી આપે છે DocType: OAuth Client,App Client ID,એપ્લિકેશન ક્લાયંટ ID DocType: DocField,Currency,કરન્સી DocType: Website Settings,Banner,બૅનર @@ -1424,7 +1445,7 @@ apps/frappe/frappe/utils/goal.py,Goal,ધ્યેય DocType: Print Style,CSS,સીએસએસ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","જો રોલને સ્તર 0 પર ઍક્સેસ નથી, તો ઉચ્ચ સ્તર અર્થહીન છે." DocType: ToDo,Reference Type,સંદર્ભ પ્રકાર -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","ડોકટાઇપ, ડોકટાઇપને મંજૂરી આપવી. સાવચેત રહો!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","ડોકટાઇપ, ડોકટાઇપને મંજૂરી આપવી. સાવચેત રહો!" DocType: Domain Settings,Domain Settings,ડોમેન સેટિંગ્સ DocType: Auto Email Report,Dynamic Report Filters,ગતિશીલ રિપોર્ટ ગાળકો DocType: Energy Point Log,Appreciation,પ્રશંસા @@ -1466,6 +1487,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,યુ-વેસ્ટ -2 DocType: DocType,Is Single,સિંગલ છે apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,નવું ફોર્મેટ બનાવો +DocType: Google Contacts,Authorize Google Contacts Access,Google સંપર્કો ઍક્સેસ અધિકૃત કરો DocType: S3 Backup Settings,Endpoint URL,એન્ડપોઇન્ટ URL DocType: Social Login Key,Google,ગુગલ DocType: Contact,Department,વિભાગ @@ -1480,7 +1502,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,માટે સ DocType: List Filter,List Filter,યાદી ફિલ્ટર DocType: Dashboard Chart Link,Chart,ચાર્ટ apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,દૂર કરી શકતા નથી -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,ખાતરી કરવા માટે આ દસ્તાવેજ સબમિટ કરો +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,ખાતરી કરવા માટે આ દસ્તાવેજ સબમિટ કરો apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} પહેલાથી અસ્તિત્વમાં છે. બીજું નામ પસંદ કરો apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,તમારી પાસે આ ફોર્મમાં વણસાચવેલા ફેરફારો છે. કૃપા કરીને ચાલુ રાખો તે પહેલા કૃપા કરીને સાચવો. apps/frappe/frappe/model/document.py,Action Failed,ક્રિયા નિષ્ફળ @@ -1562,6 +1584,7 @@ DocType: DocField,Display,દર્શાવો apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,બધાને જવાબ આપો DocType: Calendar View,Subject Field,વિષય ક્ષેત્ર apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},સત્ર સમાપ્તિ ફોર્મેટમાં હોવી આવશ્યક છે {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},અરજી કરી રહ્યા છે: {0} DocType: Workflow State,zoom-in,મોટું કરો apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,સર્વરથી કનેક્ટ કરવામાં નિષ્ફળ apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},તારીખ {0} ફોર્મેટમાં હોવી આવશ્યક છે: {1} @@ -1573,8 +1596,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,ટેસ્ટ_ફોલ્ડર DocType: Workflow State,Icon will appear on the button,ચિહ્ન બટન પર દેખાશે DocType: Role Permission for Page and Report,Set Role For,માટે ભૂમિકા સેટ કરો +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,સ્વચાલિત લિંક ફક્ત એક ઇમેઇલ એકાઉન્ટ માટે સક્રિય કરી શકાય છે. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,સોંપેલ કોઈ ઇમેઇલ એકાઉન્ટ્સ +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ઇમેઇલ એકાઉન્ટ સેટઅપ નથી. કૃપા કરીને સેટઅપ> ઇમેઇલ> ઇમેઇલ એકાઉન્ટથી નવું ઇમેઇલ એકાઉન્ટ બનાવો apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,સોંપણી +DocType: Google Contacts,Last Sync On,છેલ્લું સમન્વયન ચાલુ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},{0} દ્વારા સ્વચાલિત નિયમ દ્વારા પ્રાપ્ત {1} apps/frappe/frappe/config/website.py,Portal,પોર્ટલ apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,તમારા ઇમેઇલ માટે આભાર @@ -1595,7 +1621,6 @@ DocType: GSuite Settings,GSuite Settings,જીએસાઇટ સેટિં DocType: Integration Request,Remote,દૂરસ્થ DocType: File,Thumbnail URL,થંબનેલ URL apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,અહેવાલ ડાઉનલોડ કરો -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,સેટઅપ> વપરાશકર્તા apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},{0} માટે નિકાસ માટે કસ્ટમાઇઝેશંસ:
{1} DocType: GCalendar Account,Calendar Name,કૅલેન્ડર નામ apps/frappe/frappe/templates/emails/new_user.html,Your login id is,તમારી લૉગિન આઈડી છે @@ -1645,6 +1670,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},{0} apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,છબી ક્ષેત્ર માન્ય ફીલ્ડનામ હોવું આવશ્યક છે apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,આ પૃષ્ઠને ઍક્સેસ કરવા માટે તમારે લૉગ ઇન થવાની જરૂર છે DocType: Assignment Rule,Example: {{ subject }},ઉદાહરણ: {{વિષય}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,ફિલ્ડનામ {0} પ્રતિબંધિત છે apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},તમે ફીલ્ડ માટે 'ફક્ત વાંચવા' ને સેટ કરી શકતા નથી {0} DocType: Social Login Key,Enable Social Login,સમાજ લૉગિન સક્ષમ કરો DocType: Workflow,Rules defining transition of state in the workflow.,વર્કફ્લોમાં રાજ્યની સંક્રમણ વ્યાખ્યાયિત નિયમો. @@ -1665,10 +1691,10 @@ DocType: Website Settings,Route Redirects,રૂટ રીડાયરેક્ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ઇમેઇલ ઇનબોક્સ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},{0} તરીકે પુનઃસ્થાપિત {1} DocType: Assignment Rule,Automatically Assign Documents to Users,આપમેળે વપરાશકર્તાઓને દસ્તાવેજો અસાઇન કરો +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,ખુલ્લી અદ્ભુતબાર apps/frappe/frappe/config/settings.py,Email Templates for common queries.,સામાન્ય પ્રશ્નો માટે ઇમેઇલ નમૂનાઓનો. DocType: Letter Head,Letter Head Based On,લેટર હેડ આધારીત apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,કૃપા કરીને આ વિંડો બંધ કરો -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,ચુકવણી પૂર્ણ DocType: Contact,Designation,નામ DocType: Webhook,Webhook,વેબહૂક DocType: Website Route Meta,Meta Tags,મેટા ટૅગ્સ @@ -1707,6 +1733,7 @@ DocType: System Settings,Choose authentication method to be used by all users, DocType: Error Snapshot,Parent Error Snapshot,માતાપિતા ભૂલ સ્નેપશોટ DocType: GCalendar Account,GCalendar Account,જી કેલેન્ડર એકાઉન્ટ DocType: Language,Language Name,ભાષા નામ +DocType: Workflow Document State,Workflow Action is not created for optional states,વર્કફ્લો એક્શન વૈકલ્પિક રાજ્યો માટે બનાવવામાં આવ્યું નથી DocType: Customize Form,Customize Form,ફોર્મ કસ્ટમાઇઝ કરો DocType: DocType,Image Field,છબી ક્ષેત્ર apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),ઉમેરાયેલ {0} ({1}) @@ -1747,6 +1774,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,જો વપરાશકર્તા માલિક હોય તો આ નિયમ લાગુ કરો DocType: About Us Settings,Org History Heading,ઓર્ગ હિસ્ટ્રી મથાળું apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,સર્વર ભૂલ +DocType: Contact,Google Contacts Description,ગૂગલ સંપર્કો વર્ણન apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,માનક ભૂમિકાઓનું નામ બદલી શકાતું નથી DocType: Review Level,Review Points,સમીક્ષા પોઇન્ટ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,ખૂટે પેરામીટર Kanban બોર્ડ નામ @@ -1764,7 +1792,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,વિકાસકર્તા મોડમાં નહીં! Site_config.json માં સેટ કરો અથવા 'કસ્ટમ' ડૉકટાઇપ બનાવો. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,{0} પોઇન્ટ્સ મેળવ્યા DocType: Web Form,Success Message,સફળતા સંદેશ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","સરખામણી માટે,> 5, <10 અથવા = 324 નો ઉપયોગ કરો. શ્રેણીઓ માટે, 5:10 (5 અને 10 ની વચ્ચેના મૂલ્યો માટે) નો ઉપયોગ કરો." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","પૃષ્ઠની સૂચિ માટે વર્ણન, સાદા ટેક્સ્ટમાં, ફક્ત થોડી લીટીઓ. (મહત્તમ 140 અક્ષરો)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,પરવાનગીઓ બતાવો DocType: DocType,Restrict To Domain,ડોમેન પર પ્રતિબંધિત કરો @@ -1786,6 +1813,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,ના apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,જથ્થો સુયોજિત કરો DocType: Auto Repeat,End Date,અંતિમ તારીખ DocType: Workflow Transition,Next State,આગામી રાજ્ય +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} ગૂગલ સંપર્કો સમન્વયિત. DocType: System Settings,Is First Startup,પ્રથમ સ્ટાર્ટઅપ છે apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},{0} માં અપડેટ કરાઈ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,ખસેડવું @@ -1835,6 +1863,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} કૅલેન્ડર apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,ડેટા આયાત ઢાંચો DocType: Workflow State,hand-left,હાથ ડાબી +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,બહુવિધ સૂચિ વસ્તુઓ પસંદ કરો apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,બૅકઅપ કદ: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},{0} સાથે જોડાયેલ DocType: Braintree Settings,Private Key,ખાનગી કી @@ -1877,13 +1906,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,રસ DocType: Bulk Update,Limit,મર્યાદા DocType: Print Settings,Print taxes with zero amount,શૂન્ય રકમ સાથે કર્સ છાપો -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ઇમેઇલ એકાઉન્ટ સેટઅપ નથી. કૃપા કરીને સેટઅપ> ઇમેઇલ> ઇમેઇલ એકાઉન્ટથી નવું ઇમેઇલ એકાઉન્ટ બનાવો DocType: Workflow State,Book,પુસ્તક DocType: S3 Backup Settings,Access Key ID,ઍક્સેસ કી ID DocType: Chat Message,URLs,યુઆરએલ apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,પોતાને દ્વારા નામ અને ઉપનામો અનુમાન લગાવવા માટે સરળ છે. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},અહેવાલ {0} DocType: About Us Settings,Team Members Heading,ટીમના સભ્યો મથાળા +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,સૂચિ આઇટમ પસંદ કરો apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},ડોક્યુમેન્ટ {0} ને {1} દ્વારા {2} કહેવા માટે સુયોજિત કરવામાં આવ્યું છે DocType: Address Template,Address Template,સરનામું ઢાંચો DocType: Workflow State,step-backward,પગથિયું @@ -1907,6 +1936,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,કસ્ટમ પરવાનગીઓ નિકાસ કરો apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,કંઈ નહીં: વર્કફ્લોનો અંત DocType: Version,Version,સંસ્કરણ +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,ઓપન સૂચિ આઇટમ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 મહિના DocType: Chat Message,Group,ગ્રુપ apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},ફાઇલ url માં કોઈ સમસ્યા છે: {0} @@ -1960,6 +1990,7 @@ DocType: User,Third Party Authentication,તૃતીય પક્ષ સત્ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 વર્ષ DocType: Workflow State,arrow-down,તીર નીચે DocType: Data Import,Ignore encoding errors,એન્કોડિંગ ભૂલો અવગણો +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,લેન્ડસ્કેપ DocType: Letter Head,Letter Head Name,લેટર હેડ નામ DocType: Web Form,Client Script,ક્લાઈન્ટ સ્ક્રિપ્ટ DocType: Assignment Rule,Higher priority rule will be applied first,ઉચ્ચ પ્રાથમિકતા નિયમ પ્રથમ લાગુ કરવામાં આવશે @@ -2004,6 +2035,7 @@ DocType: Kanban Board Column,Green,લીલા apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,નવા રેકોર્ડ્સ માટે ફક્ત ફરજિયાત ક્ષેત્રો આવશ્યક છે. જો તમે ઈચ્છો તો તમે બિન-ફરજિયાત કૉલમ કાઢી શકો છો. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} એ અક્ષર સાથે પ્રારંભ અને સમાપ્ત થવું આવશ્યક છે અને તેમાં ફક્ત અક્ષરો, હાઇફન અથવા અન્ડરસ્કૉર શામેલ હોઈ શકે છે." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,ટ્રિગર પ્રાથમિક ઍક્શન apps/frappe/frappe/core/doctype/user/user.js,Create User Email,વપરાશકર્તા ઇમેઇલ બનાવો apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,સોર્ટ ફીલ્ડ {0} એ માન્ય ફીલ્ડનામ હોવું આવશ્યક છે DocType: Auto Email Report,Filter Meta,ફિલ્ટર મેટા @@ -2032,6 +2064,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,સમયરેખા ક્ષેત્ર apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,લોડ કરી રહ્યું છે ... DocType: Auto Email Report,Half Yearly,અર્ધવાર્ષિક +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,મારી પ્રોફાઈલ apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,છેલ્લે સંશોધિત તારીખ DocType: Contact,First Name,પ્રથમ નામ DocType: Post,Comments,ટિપ્પણીઓ @@ -2054,6 +2087,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,સામગ્રી હેશ apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},{0} દ્વારા પોસ્ટ્સ apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} સોંપાયેલ {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,કોઈ નવા Google સંપર્કો સમન્વયિત થયા નથી. DocType: Workflow State,globe,વિશ્વ apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},{0} નું સરેરાશ apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,સ્પષ્ટ ભૂલ લોગ @@ -2080,6 +2114,8 @@ DocType: Workflow State,Inverse,વ્યસ્ત DocType: Activity Log,Closed,બંધ DocType: Report,Query,પ્રશ્ન DocType: Notification,Days After,દિવસો પછી +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,પૃષ્ઠ શૉર્ટકટ્સ +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,પોર્ટ્રેટ apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,વિનંતી સમય સમાપ્ત DocType: System Settings,Email Footer Address,ઇમેઇલ ફૂટર સરનામું apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,એનર્જી પોઇન્ટ અપડેટ @@ -2107,6 +2143,7 @@ For Select, enter list of Options, each on a new line.","લિંક્સ મ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 મિનિટ પહેલા apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,કોઈ સક્રિય સત્રો નથી apps/frappe/frappe/model/base_document.py,Row,પંક્તિ +DocType: Contact,Middle Name,પિતાનું નામ apps/frappe/frappe/public/js/frappe/request.js,Please try again,મહેરબાની કરીને ફરીથી પ્રયતન કરો DocType: Dashboard Chart,Chart Options,ચાર્ટ વિકલ્પો DocType: Data Migration Run,Push Failed,પુશ નિષ્ફળ @@ -2135,6 +2172,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,માપ બદલો DocType: Comment,Relinked,ફરીથી જોડાયેલા DocType: Role Permission for Page and Report,Roles HTML,ભૂમિકા એચટીએમએલ +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,જાવ apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,બચાવ પછી કાર્યપ્રવાહ શરૂ થશે. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","જો તમારો ડેટા HTML માં છે, તો કૃપા કરીને ટૅગ્સ સાથે ચોક્કસ HTML કોડ પેસ્ટ કરો." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,અનુમાન કરવા માટે તારીખો ઘણી વાર સરળ હોય છે. @@ -2163,7 +2201,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,ડેસ્કટોપ ચિહ્ન apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,આ દસ્તાવેજ રદ કર્યો apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,તારીખ રેંજ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,સેટઅપ> વપરાશકર્તા પરવાનગીઓ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} પ્રશંસા {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,મૂલ્યો બદલ્યાં apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,સૂચનામાં ભૂલ @@ -2228,6 +2265,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,બલ્ક કાઢી નાખો DocType: DocShare,Document Name,દસ્તાવેજ નામ apps/frappe/frappe/config/customization.py,Add your own translations,તમારા પોતાના ભાષાંતરો ઉમેરો +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,નેવિગેટ સૂચિ નીચે DocType: S3 Backup Settings,eu-central-1,યુ-સેન્ટ્રલ -1 DocType: Auto Repeat,Yearly,વાર્ષિક apps/frappe/frappe/public/js/frappe/model/model.js,Rename,નામ બદલો @@ -2278,6 +2316,7 @@ DocType: Workflow State,plane,વિમાન apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,નેસ્ટેડ સેટ ભૂલ. કૃપા કરીને એડમિનિસ્ટ્રેટરનો સંપર્ક કરો. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,અહેવાલ બતાવો DocType: Auto Repeat,Auto Repeat Schedule,ઑટો પુનરાવર્તિત શેડ્યૂલ +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,જુઓ રેફ DocType: Address,Office,ઑફિસ DocType: LDAP Settings,StartTLS,સ્ટાર્ટટીએલએસ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} દિવસ પહેલા @@ -2311,7 +2350,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required, apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,મારી સેટિંગ્સ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,જૂથનું નામ ખાલી હોઈ શકતું નથી. DocType: Workflow State,road,માર્ગ -DocType: Website Route Redirect,Source,સ્રોત +DocType: Contact,Source,સ્રોત apps/frappe/frappe/www/third_party_apps.html,Active Sessions,સક્રિય સત્રો apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,ફોર્મમાં ફક્ત એક જ ગડી હોઈ શકે છે apps/frappe/frappe/public/js/frappe/chat.js,New Chat,નવી ચેટ @@ -2333,6 +2372,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,કૃપા કરીને અધિકૃત URL દાખલ કરો DocType: Email Account,Send Notification to,સૂચના મોકલો apps/frappe/frappe/config/integrations.py,Dropbox backup settings,ડ્રૉપબૉક્સ બેકઅપ સેટિંગ્સ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,ટોકન જનરેશન દરમિયાન કંઈક ખોટું થયું. નવું એક બનાવવા માટે {0} પર ક્લિક કરો. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,બધા કસ્ટમાઇઝેશન દૂર કરીએ? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,ફક્ત એડમિનિસ્ટ્રેટર એડિટ કરી શકે છે DocType: Auto Repeat,Reference Document,સંદર્ભ દસ્તાવેજ @@ -2357,6 +2397,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,ભૂમિકાઓ વપરાશકર્તાઓ માટે તેમના વપરાશકર્તા પૃષ્ઠથી સેટ કરી શકાય છે. DocType: Website Settings,Include Search in Top Bar,ટોચના બારમાં શોધ શામેલ કરો apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[તાકીદે]% s માટે પુનરાવર્તિત% s બનાવતી વખતે ભૂલ +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,વૈશ્વિક શૉર્ટકટ્સ DocType: Help Article,Author,લેખક DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,આપેલા ફિલ્ટર્સ માટે કોઈ દસ્તાવેજ મળ્યું નથી @@ -2392,10 +2433,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, પંક્તિ {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","જો તમે નવા રેકોર્ડ્સ અપલોડ કરી રહ્યા છો, તો "નામકરણ સિરીઝ" ફરજિયાત બનશે, જો હાજર હોય." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,ગુણધર્મો સંપાદિત કરો -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,તેના {0} ખુલ્લા હોય ત્યારે ઉદાહરણ ખોલી શકાતું નથી +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,તેના {0} ખુલ્લા હોય ત્યારે ઉદાહરણ ખોલી શકાતું નથી DocType: Activity Log,Timeline Name,સમયરેખા નામ DocType: Comment,Workflow,વર્કફ્લો apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,કૃપા કરીને ફાપપ માટે સમાજ લૉગિન કીમાં બેઝ URL ને સેટ કરો +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,કીબોર્ડ શૉર્ટકટ્સ DocType: Portal Settings,Custom Menu Items,કસ્ટમ મેનુ વસ્તુઓ apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,{0} ની લંબાઈ 1 અને 1000 ની વચ્ચે હોવી જોઈએ apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,"સંમ્પર્ક તૂટવો, છૂટા પડી જવુ. કેટલીક સુવિધાઓ કામ કરશે નહીં." @@ -2458,6 +2500,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,પંક DocType: DocType,Setup,સ્થાપના apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} સફળતાપૂર્વક બનાવ્યું apps/frappe/frappe/www/update-password.html,New Password,નવો પાસવર્ડ +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,ક્ષેત્ર પસંદ કરો apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,આ વાર્તાલાપ છોડો DocType: About Us Settings,Team Members,ટુકડી સભ્યો DocType: Blog Settings,Writers Introduction,લેખકો પરિચય @@ -2527,13 +2570,12 @@ DocType: Chat Room,Name,નામ DocType: Communication,Email Template,ઇમેઇલ ઢાંચો DocType: Energy Point Settings,Review Levels,સમીક્ષા સ્તર DocType: Print Format,Raw Printing,કાચો છાપકામ -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,જ્યારે તેનું ઉદાહરણ ખુલ્લું હોય ત્યારે {0} ખોલી શકાતું નથી +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,જ્યારે તેનું ઉદાહરણ ખુલ્લું હોય ત્યારે {0} ખોલી શકાતું નથી DocType: DocType,"Make ""name"" searchable in Global Search",વૈશ્વિક શોધમાં "નામ" શોધવા યોગ્ય બનાવો DocType: Data Migration Mapping,Data Migration Mapping,ડેટા સ્થળાંતર મેપિંગ DocType: Data Import,Partially Successful,આંશિક રીતે સફળ DocType: Communication,Error,ભૂલ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},ફીલ્ડ ટાઇપ {0} થી {1} પંક્તિ {2} માં બદલી શકાતી નથી -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZ ટ્રે એપ્લિકેશનથી કનેક્ટ કરવામાં ભૂલ ...

કાચો પ્રિંટ સુવિધાનો ઉપયોગ કરવા માટે તમારે QZ ટ્રે એપ્લિકેશન ઇન્સ્ટોલ અને ચાલુ કરવાની જરૂર છે.

QZ ટ્રે ડાઉનલોડ અને ઇન્સ્ટોલ કરવા માટે અહીં ક્લિક કરો .
કાચો છાપવા વિશે વધુ જાણવા માટે અહીં ક્લિક કરો ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,ફોટો પાડ apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,તમારી સાથે સંકળાયેલા વર્ષોથી ટાળો. DocType: Web Form,Allow Incomplete Forms,અપૂર્ણ ફોર્મ્સને મંજૂરી આપો @@ -2629,7 +2671,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",નવા પૃષ્ઠમાં ખોલવા માટે લક્ષ્ય = "_blank" પસંદ કરો. DocType: Portal Settings,Portal Menu,પોર્ટલ મેનુ DocType: Website Settings,Landing Page,લેન્ડિંગ પૃષ્ઠ -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,કૃપા કરીને સાઇન અપ કરો અથવા પ્રારંભ કરવા માટે લોગિન કરો DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","સંપર્ક વિકલ્પો, જેમ કે "સેલ્સ ક્વેરી, સપોર્ટ ક્વેરી" વગેરે નવી લાઇન પર અથવા અલ્પવિરામ દ્વારા વિભાજિત." apps/frappe/frappe/twofactor.py,Verfication Code,ચકાસણી કોડ apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} પહેલેથી જ અનસબ્સ્ક્રાઇબ કર્યું છે @@ -2715,6 +2756,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,ડેટા DocType: Address,Sales User,વેચાણ વપરાશકર્તા apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","ક્ષેત્ર ગુણધર્મો બદલો (છુપાવો, ફક્ત વાંચવા, પરવાનગી વગેરે)" DocType: Property Setter,Field Name,ક્ષેત્રનું નામ +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,ગ્રાહક DocType: Print Settings,Font Size,અક્ષર ની જાડાઈ DocType: User,Last Password Reset Date,છેલ્લું પાસવર્ડ રીસેટ તારીખ DocType: System Settings,Date and Number Format,તારીખ અને સંખ્યા ફોર્મેટ @@ -2779,6 +2821,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,ગ્રુપ apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,અસ્તિત્વમાં સાથે મર્જ કરો DocType: Blog Post,Blog Intro,બ્લોગ પ્રસ્તાવના apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,નવું નોંધ +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,ક્ષેત્ર પર જાઓ DocType: Prepared Report,Report Name,અહેવાલ નામ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,નવીનતમ દસ્તાવેજ મેળવવા માટે તાજું કરો. apps/frappe/frappe/core/doctype/communication/communication.js,Close,બંધ @@ -2788,10 +2831,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,ઇવેન્ટ DocType: Social Login Key,Access Token URL,ઍક્સેસ ટોકન URL apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,કૃપા કરીને તમારી સાઇટ રૂપરેખામાં ડ્રૉપબૉક્સ ઍક્સેસ કી સેટ કરો +DocType: Google Contacts,Google Contacts,ગૂગલ સંપર્કો DocType: User,Reset Password Key,પાસવર્ડ કી ફરીથી સેટ કરો apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,દ્વારા સુધારેલ DocType: User,Bio,બાયો apps/frappe/frappe/limits.py,"To renew, {0}.","નવીકરણ કરવા માટે, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,સફળતાપૂર્વક સાચવ્યું +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,તેને અહીં લિંક કરવા માટે {0} પર એક ઇમેઇલ મોકલો. DocType: File,Folder,ફોલ્ડર DocType: DocField,Perm Level,પરમ સ્તર DocType: Print Settings,Page Settings,પૃષ્ઠ સેટિંગ્સ @@ -2821,6 +2867,7 @@ DocType: Workflow State,remove-sign,દૂર કરો DocType: Dashboard Chart,Full,પૂર્ણ DocType: DocType,User Cannot Create,વપરાશકર્તા બનાવી શકતા નથી apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,તમે {0} બિંદુ મેળવી +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,સેટઅપ> વપરાશકર્તા DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","જો તમે આ સેટ કરો છો, તો આ આઇટમ પસંદ કરેલા માતાપિતા હેઠળ ડ્રોપ ડાઉનમાં આવશે." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,કોઈ ઇમેઇલ્સ નથી apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,નીચેના ક્ષેત્રો ખૂટે છે: @@ -2834,13 +2881,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,ક DocType: Web Form,Web Form Fields,વેબ ફોર્મ ફીલ્ડ્સ DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,વેબસાઇટ પર વપરાશકર્તા સંપાદનયોગ્ય ફોર્મ. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,{0} કાયમી રૂપે રદ કરીએ? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,{0} કાયમી રૂપે રદ કરીએ? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,વિકલ્પ 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,ટોટલ્સ apps/frappe/frappe/utils/password_strength.py,This is a very common password.,આ એક ખૂબ સામાન્ય પાસવર્ડ છે. DocType: Personal Data Deletion Request,Pending Approval,મંજૂરી બાકી હોવી apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,દસ્તાવેજ યોગ્ય રીતે અસાઇન કરી શકાયું નથી apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{0}: {1} માટે મંજૂરી નથી +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,બતાવવા માટે કોઈ મૂલ્યો નથી DocType: Personal Data Download Request,Personal Data Download Request,વ્યક્તિગત ડેટા ડાઉનલોડ વિનંતી apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} આ દસ્તાવેજને {1} સાથે શેર કર્યો apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},{0} પસંદ કરો @@ -2856,7 +2904,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},આ ઇમેઇલ {0} પર મોકલવામાં આવી હતી અને {1} પર કૉપિ કરી હતી apps/frappe/frappe/email/smtp.py,Invalid login or password,અમાન્ય લૉગિન અથવા પાસવર્ડ DocType: Social Login Key,Social Login Key,સમાજ લૉગિન કી -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,કૃપા કરીને સેટઅપ> ઇમેઇલ> ઇમેઇલ એકાઉન્ટથી ડિફૉલ્ટ ઇમેઇલ એકાઉન્ટ સેટ કરો apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,ગાળકો સાચવ્યાં DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","આ ચલણ કેવી રીતે ફોર્મેટ કરવું જોઈએ? જો સેટ નથી, તો સિસ્ટમ ડિફોલ્ટ્સનો ઉપયોગ કરશે" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} એ રાજ્યમાં સુયોજિત છે {2} @@ -2982,6 +3029,7 @@ DocType: User,Location,સ્થાન apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,કોઈ ડેટા નથી DocType: Website Meta Tag,Website Meta Tag,વેબસાઇટ મેટા ટેગ DocType: Workflow State,film,ફિલ્મ +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,ક્લિપબોર્ડ પર કૉપિ કર્યું. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} સેટિંગ્સ મળી નથી apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,લેબલ ફરજિયાત છે DocType: Webhook,Webhook Headers,વેબહેક હેડર્સ @@ -3187,7 +3235,7 @@ DocType: Address,Address Line 1,સરનામું રેખા 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,દસ્તાવેજ પ્રકાર માટે apps/frappe/frappe/model/base_document.py,Data missing in table,ટેબલમાં ડેટા ખૂટે છે apps/frappe/frappe/utils/bot.py,Could not identify {0},{0} ઓળખી શકાયું નથી -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,આ ફોર્મ તમે તેને લોડ કર્યા પછી સંશોધિત કરવામાં આવી છે +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,આ ફોર્મ તમે તેને લોડ કર્યા પછી સંશોધિત કરવામાં આવી છે apps/frappe/frappe/www/login.html,Back to Login,લૉગિન પર પાછા જાઓ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,સેટ નથી DocType: Data Migration Mapping,Pull,ખેંચો @@ -3255,6 +3303,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,બાળ ટેબ apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,ઇમેઇલ એકાઉન્ટ સેટઅપ માટે કૃપા કરીને તમારો પાસવર્ડ દાખલ કરો: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,ઘણા લોકો એક વિનંતીમાં લખે છે. કૃપા કરીને નાની વિનંતીઓ મોકલો DocType: Social Login Key,Salesforce,સેલ્સફોર્સ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{1} નું {0} આયાત કરવું DocType: User,Tile,ટાઇલ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} રૂમમાં લગભગ એક વપરાશકર્તા હોવો આવશ્યક છે. DocType: Email Rule,Is Spam,સ્પામ છે @@ -3292,7 +3341,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,ફોલ્ડર બંધ DocType: Data Migration Run,Pull Update,ખેંચો સુધારો apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},મર્જ {0} માં {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

DocType: SMS Settings,Enter url parameter for receiver nos,રીસીવર નોસ માટે url પેરામીટર દાખલ કરો apps/frappe/frappe/utils/jinja.py,Syntax error in template,નમૂનામાં સિન્ટેક્સ ભૂલ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,કૃપા કરીને રિપોર્ટ ફિલ્ટર કોષ્ટકમાં ફિલ્ટર મૂલ્ય સેટ કરો. @@ -3305,6 +3353,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","માફ DocType: System Settings,In Days,દિવસોમાં DocType: Report,Add Total Row,કુલ પંક્તિ ઉમેરો apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,સત્ર પ્રારંભ નિષ્ફળ થયું +DocType: Translation,Verified,ચકાસણી DocType: Print Format,Custom HTML Help,કસ્ટમ એચટીએમએલ મદદ DocType: Address,Preferred Billing Address,પસંદીદા બિલિંગ સરનામું apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,સોંપેલ @@ -3319,7 +3368,6 @@ DocType: Help Article,Intermediate,મધ્યમ DocType: Module Def,Module Name,મોડ્યુલ નામ DocType: OAuth Authorization Code,Expiration time,સમાપ્તિ સમય apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","મૂળભૂત ફોર્મેટ, પૃષ્ઠ કદ, પ્રિંટ શૈલી વગેરે સેટ કરો." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,તમે જે કંઇક બનાવ્યું છે તે તમે પસંદ કરી શકતા નથી DocType: System Settings,Session Expiry,સત્ર સમાપ્તિ DocType: DocType,Auto Name,ઓટો નામ apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,જોડાણો પસંદ કરો @@ -3347,6 +3395,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,સિસ્ટમ પૃષ્ઠ DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,નોંધ: નિષ્ફળ બેકઅપ્સ માટે ડિફોલ્ટ ઇમેઇલ્સ દ્વારા મોકલવામાં આવે છે. DocType: Custom DocPerm,Custom DocPerm,કસ્ટમ ડોકપ્રર્મ +DocType: Translation,PR sent,પીઆર મોકલ્યો DocType: Tag Doc Category,Doctype to Assign Tags,ટૅગ્સ સોંપવા માટે Doctype DocType: Address,Warehouse,વેરહાઉસ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,ડ્રૉપબૉક્સ સેટઅપ @@ -3413,7 +3462,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,ટિપ્પણી ઉમેરવા માટે Ctrl + Enter apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,ફીલ્ડ {0} પસંદ કરી શકાય તેવું નથી. DocType: User,Birth Date,જન્મતારીખ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,ગ્રુપ ઇન્ડેન્ટેશન સાથે DocType: List View Setting,Disable Count,અક્ષમ ગણક DocType: Contact Us Settings,Email ID,ઇમેઇલ આઈડી apps/frappe/frappe/utils/password.py,Incorrect User or Password,ખોટો વપરાશકર્તા અથવા પાસવર્ડ @@ -3446,6 +3494,7 @@ DocType: Website Settings,<head> HTML,<વડા> એચટીએમ DocType: Custom DocPerm,This role update User Permissions for a user,આ ભૂમિકા વપરાશકર્તા માટે વપરાશકર્તા પરવાનગીઓ અપડેટ કરો DocType: Website Theme,Theme,થીમ DocType: Web Form,Show Sidebar,સાઇડબાર બતાવો +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,ગૂગલ સંપર્કો એકત્રિકરણ. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,ડિફૉલ્ટ ઇનબૉક્સ apps/frappe/frappe/www/login.py,Invalid Login Token,અમાન્ય લૉગિન ટોકન apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,પ્રથમ નામ સેટ કરો અને રેકોર્ડ સાચવો. @@ -3473,7 +3522,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,કૃપા કરીને સુધારો DocType: Top Bar Item,Top Bar Item,ટોચના બાર વસ્તુ ,Role Permissions Manager,રોલ પરવાનગી મેનેજર -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,ત્યાં ભૂલો હતી. કૃપા કરીને આની જાણ કરો. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} વર્ષ (ઓ) પહેલા apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,સ્ત્રી DocType: System Settings,OTP Issuer Name,ઓટીપી ઇશ્યુઅર નામ apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,કરવા માટે ઉમેરો @@ -3573,6 +3622,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","ભા apps/frappe/frappe/model/document.py,none of,કોય પણ નહિ DocType: Desktop Icon,Page,પૃષ્ઠ DocType: Workflow State,plus-sign,પ્લસ-સાઇન +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,સ્પષ્ટ કેશ અને ફરીથી લોડ કરો apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,અપડેટ કરી શકાતું નથી: ખોટો / સમાપ્ત થયેલ લિંક. DocType: Kanban Board Column,Yellow,યલો DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),ગ્રીડમાં ફીલ્ડ માટે કૉલમની સંખ્યા (ગ્રીડમાં કુલ કૉલમ 11 કરતા ઓછી હોવી જોઈએ) @@ -3587,6 +3637,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,ન DocType: Activity Log,Date,તારીખ DocType: Communication,Communication Type,સંચાર પ્રકાર apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,પિતૃ ટેબલ +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,નેવિગેટ સૂચિ અપ DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,સંપૂર્ણ ભૂલ બતાવો અને વિકાસકર્તાઓને સમસ્યાની જાણ કરવાની મંજૂરી આપો DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3608,7 +3659,6 @@ DocType: Notification Recipient,Email By Role,રોલ દ્વારા ઇ apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,કૃપા કરીને {0} કરતાં વધુ સબ્સ્ક્રાઇબર્સ ઉમેરવા માટે અપગ્રેડ કરો apps/frappe/frappe/email/queue.py,This email was sent to {0},આ ઇમેઇલ {0} પર મોકલવામાં આવી હતી DocType: User,Represents a User in the system.,સિસ્ટમમાં વપરાશકર્તા રજૂ કરે છે. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},પૃષ્ઠ {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,નવું ફોર્મેટ શરૂ કરો apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,એક ટિપ્પણી ઉમેરો apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} નું {0} diff --git a/frappe/translations/hi.csv b/frappe/translations/hi.csv index 752ab81bd2..cdc3ab6d34 100644 --- a/frappe/translations/hi.csv +++ b/frappe/translations/hi.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,स्नातक सक्षम करें DocType: DocType,Default Sort Order,डिफ़ॉल्ट क्रम क्रम apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,रिपोर्ट से केवल संख्यात्मक क्षेत्र दिखा रहा है +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,मेनू और साइडबार में अतिरिक्त शॉर्टकट को ट्रिगर करने के लिए Alt कुंजी दबाएं DocType: Workflow State,folder-open,फ़ोल्डर खुले DocType: Customize Form,Is Table,टेबल है apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,संलग्न फ़ाइल खोलने में असमर्थ। क्या आपने इसे CSV के रूप में निर्यात किया? DocType: DocField,No Copy,कोई कॉपी नहीं DocType: Custom Field,Default Value,डिफ़ॉल्ट मान apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,आने वाले मेल के लिए अपेंड टू अनिवार्य है +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,संपर्कों को साथ - साथ करना DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,डाटा माइग्रेशन मैपिंग डिटेल apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,करें apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.","रॉ प्रिंट" के माध्यम से पीडीएफ प्रिंटिंग अभी तक समर्थित नहीं है। कृपया प्रिंटर सेटिंग में प्रिंटर मैपिंग निकालें और पुनः प्रयास करें। @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} और {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,फ़िल्टर सहेजने में त्रुटि हुई थी apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,अपना पासवर्ड डालें apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,होम और अटैचमेंट फ़ोल्डर को हटा नहीं सकते +DocType: Email Account,Enable Automatic Linking in Documents,दस्तावेज़ों में स्वचालित लिंकिंग सक्षम करें DocType: Contact Us Settings,Settings for Contact Us Page,हमसे संपर्क करें पृष्ठ के लिए सेटिंग्स DocType: Social Login Key,Social Login Provider,सामाजिक लॉगिन प्रदाता +DocType: Email Account,"For more information, click here.","अधिक जानकारी के लिए, यहां क्लिक करें ।" DocType: Transaction Log,Previous Hash,पिछला हश DocType: Notification,Value Changed,मान बदल गया DocType: Report,Report Type,रिपोर्ट का प्रकार @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,एनर्जी पॉइंट apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,सामाजिक लॉगिन सक्षम होने से पहले कृपया क्लाइंट आईडी दर्ज करें DocType: Communication,Has Attachment,अटैचमेंट था DocType: User,Email Signature,ईमेल हस्ताक्षर -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} साल पहले ,Addresses And Contacts,पते और संपर्क apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,यह कंबन बोर्ड निजी होगा DocType: Data Migration Run,Current Mapping,वर्तमान मानचित्रण @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","आप सभी के रूप में सिंक विकल्प का चयन कर रहे हैं, यह सभी को पढ़ने और साथ ही सर्वर से अपठित संदेश को फिर से सिंक करेगा। यह संचार (ईमेल) के डुप्लिकेटेशन \ का कारण भी हो सकता है।" apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},अंतिम बार {0} सिंक किया गया apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,शीर्ष लेख सामग्री नहीं बदल सकता +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,सबमिट करने के बाद {0} बदलने की अनुमति नहीं है apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","एप्लिकेशन को एक नए संस्करण में अपडेट किया गया है, कृपया इस पृष्ठ को ताज़ा करें" DocType: User,User Image,उपयोगकर्ता छवि @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},{0} apps/frappe/frappe/public/js/frappe/chat.js,Discard,छोड़ना DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,सर्वोत्तम परिणामों के लिए एक पारदर्शी पृष्ठभूमि के साथ लगभग चौड़ाई 150px की छवि का चयन करें। apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,relapsed +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} मान चयनित DocType: Blog Post,Email Sent,ईमेल भेजा DocType: Communication,Read by Recipient On,प्राप्तकर्ता पर पढ़ें DocType: User,Allow user to login only after this hour (0-24),उपयोगकर्ता को इस घंटे (0-24) के बाद ही लॉगिन करने दें @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,निर्यात करने के लिए मॉड्यूल DocType: DocType,Fields,खेत -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,आपको इस दस्तावेज़ को प्रिंट करने की अनुमति नहीं है +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,आपको इस दस्तावेज़ को प्रिंट करने की अनुमति नहीं है apps/frappe/frappe/public/js/frappe/model/model.js,Parent,माता-पिता apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","आपका सत्र समाप्त हो गया है, कृपया जारी रखने के लिए फिर से लॉगिन करें।" DocType: Assignment Rule,Priority,प्राथमिकता @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,OTP सीक् DocType: DocType,UPPER CASE,अपरकेस apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,कृपया ईमेल पता सेट करें DocType: Communication,Marked As Spam,स्पैम के रूप में चिह्नित +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,ईमेल पता जिसके Google संपर्क सिंक किए जाने हैं। apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,आयात करने वाले सदस्य apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,फ़िल्टर सहेजें DocType: Address,Preferred Shipping Address,पसंदीदा शिपिंग पता DocType: GCalendar Account,The name that will appear in Google Calendar,वह नाम जो Google कैलेंडर में दिखाई देगा +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,ताज़ा टोकन को जेनरेट करने के लिए {0} पर क्लिक करें। DocType: Email Account,Disable SMTP server authentication,SMTP सर्वर प्रमाणीकरण अक्षम करें DocType: Email Account,Total number of emails to sync in initial sync process ,प्रारंभिक सिंक प्रक्रिया में सिंक करने के लिए ईमेल की कुल संख्या DocType: System Settings,Enable Password Policy,पासवर्ड नीति सक्षम करें @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,कोड डालें apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,अंदर नही DocType: Auto Repeat,Start Date,आरंभ करने की तिथि apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,चार्ट सेट करें +DocType: Website Theme,Theme JSON,थीम JSON apps/frappe/frappe/www/list.py,My Account,मेरा खाता DocType: DocType,Is Published Field,प्रकाशित क्षेत्र है DocType: DocField,Set non-standard precision for a Float or Currency field,एक फ्लोट या मुद्रा क्षेत्र के लिए गैर-मानक परिशुद्धता सेट करें @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Reference: {{ reference_doctype }} {{ reference_name }} जोड़ें Reference: {{ reference_doctype }} {{ reference_name }} दस्तावेज़ संदर्भ भेजने के लिए DocType: LDAP Settings,LDAP First Name Field,LDAP पहला नाम फ़ील्ड apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,डिफ़ॉल्ट भेजा जा रहा है और इनबॉक्स -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,सेटअप> फॉर्म को अनुकूलित करें apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.","अपडेट करने के लिए, आप केवल चुनिंदा कॉलम ही अपडेट कर सकते हैं।" apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',फ़ील्ड के 'चेक' प्रकार के लिए डिफ़ॉल्ट '0' या '1' होना चाहिए apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,इस दस्तावेज़ को साझा करें @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,डोमेन HTML DocType: Blog Settings,Blog Settings,ब्लॉग सेटिंग्स apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DocType का नाम एक अक्षर से शुरू होना चाहिए और इसमें केवल अक्षर, संख्या, स्थान और अंडरस्कोर शामिल हो सकते हैं" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,सेटअप> उपयोगकर्ता अनुमतियाँ DocType: Communication,Integrations can use this field to set email delivery status,एकीकरण ईमेल वितरण स्थिति सेट करने के लिए इस क्षेत्र का उपयोग कर सकते हैं apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,धारी भुगतान गेटवे सेटिंग्स DocType: Print Settings,Fonts,फोंट्स DocType: Notification,Channel,चैनल DocType: Communication,Opened,खुल गया DocType: Workflow Transition,Conditions,शर्तेँ +apps/frappe/frappe/config/website.py,A user who posts blogs.,एक उपयोगकर्ता जो ब्लॉग पोस्ट करता है। apps/frappe/frappe/www/login.html,Don't have an account? Sign up,खाता नहीं है? साइन अप करें apps/frappe/frappe/utils/file_manager.py,Added {0},जोड़ा गया {0} DocType: Newsletter,Create and Send Newsletters,न्यूज़लेटर्स बनाएं और भेजें DocType: Website Settings,Footer Items,पाद आइटम +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,कृपया सेटअप> ईमेल> ईमेल खाते से डिफ़ॉल्ट ईमेल खाता सेटअप करें DocType: Website Slideshow Item,Website Slideshow Item,वेबसाइट स्लाइड शो आइटम apps/frappe/frappe/config/integrations.py,Register OAuth Client App,OAuth ग्राहक ऐप पंजीकृत करें DocType: Error Snapshot,Frames,फ्रेम्स @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","स्तर 0 दस्तावेज़ स्तर अनुमतियाँ, फ़ील्ड स्तर अनुमतियों के लिए उच्च स्तर के लिए है।" DocType: Address,City/Town,शहर / नगर DocType: Email Account,GMail,जीमेल लगीं -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","यह आपकी वर्तमान थीम को रीसेट कर देगा, क्या आप सुनिश्चित हैं कि आप जारी रखना चाहते हैं?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},{0} में अनिवार्य क्षेत्र apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},ईमेल खाते से कनेक्ट करते समय त्रुटि {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,आवर्ती बनाते समय एक त्रुटि हुई @@ -528,7 +537,7 @@ DocType: Event,Event Category,घटना श्रेणी apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,पर आधारित कॉलम apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,शीर्षक संपादित करें DocType: Communication,Received,प्राप्त किया -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,आपको इस पृष्ठ पर पहुंचने की अनुमति नहीं है। +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,आपको इस पृष्ठ पर पहुंचने की अनुमति नहीं है। DocType: User Social Login,User Social Login,उपयोगकर्ता सामाजिक लॉगिन apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,पाइथन फ़ाइल को उसी फ़ोल्डर में लिखें जहाँ यह सहेजा गया है और कॉलम और परिणाम लौटाएँ। DocType: Contact,Purchase Manager,खरीद प्रबंधक @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,च apps/frappe/frappe/utils/data.py,Operator must be one of {0},ऑपरेटर को {0} में से एक होना चाहिए apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,अगर मालिक DocType: Data Migration Run,Trigger Name,ट्रिगर का नाम -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,अपने ब्लॉग पर शीर्षक और परिचय लिखें। apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,फ़ील्ड निकालें apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,सभी को संकुचित करें apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,पीछे का रंग @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,बार DocType: SMS Settings,Enter url parameter for message,संदेश के लिए url पैरामीटर दर्ज करें apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,नया कस्टम प्रिंट प्रारूप apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} पहले से मौजूद है +DocType: Workflow Document State,Is Optional State,वैकल्पिक राज्य है DocType: Address,Purchase User,उपयोगकर्ता खरीदें DocType: Data Migration Run,Insert,सम्मिलित करें DocType: Web Form,Route to Success Link,सक्सेस लिंक का रूट @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,उप DocType: File,Is Home Folder,होम फोल्डर है apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,प्रकार: DocType: Post,Is Pinned,पिन किया हुआ है -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},'{0}' {1} के लिए कोई अनुमति नहीं +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},'{0}' {1} के लिए कोई अनुमति नहीं DocType: Patch Log,Patch Log,पैच लॉग DocType: Print Format,Print Format Builder,प्रिंट फॉर्मेट बिल्डर 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","यदि सक्षम है, तो सभी उपयोगकर्ता Two Factor Auth का उपयोग करके किसी भी IP पते से लॉगिन कर सकते हैं। यह भी केवल उपयोगकर्ता पेज में विशिष्ट उपयोगकर्ता के लिए सेट किया जा सकता है" apps/frappe/frappe/utils/data.py,only.,केवल। apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,शर्त '{0}' अमान्य है DocType: Auto Email Report,Day of Week,सप्ताह के दिन +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Google सेटिंग में Google API सक्षम करें। DocType: DocField,Text Editor,पाठ संपादक apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,कट गया apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,एक कमांड खोजें या टाइप करें @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,DB बैकअप की संख्या 1 से कम नहीं हो सकती DocType: Workflow State,ban-circle,प्रतिबंध सर्कल DocType: Data Export,Excel,एक्सेल +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","हैडर, ब्रेडक्रंब और मेटा टैग" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,समर्थन ईमेल पता निर्दिष्ट नहीं है DocType: Comment,Published,प्रकाशित DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","नोट: सर्वोत्तम परिणामों के लिए, चित्र समान आकार के होने चाहिए और चौड़ाई ऊँचाई से अधिक होनी चाहिए।" @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,अंतिम घटना apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,सभी दस्तावेज़ शेयरों की रिपोर्ट DocType: Website Sidebar Item,Website Sidebar Item,वेबसाइट साइडबार आइटम apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,करने के लिए +DocType: Google Settings,Google Settings,Google सेटिंग्स apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","अपने देश, समय क्षेत्र और मुद्रा का चयन करें" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","यहां स्थिर url पैरामीटर दर्ज करें (जैसे। प्रेषक = ERPNext, उपयोगकर्ता नाम = ERPNext, पासवर्ड = 1234 आदि)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,कोई ईमेल खाता नहीं @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth बियरर टोकन ,Setup Wizard,सेटअप विज़ार्ड apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,चार्ट टॉगल करें +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,सिंक कर रहा है DocType: Data Migration Run,Current Mapping Action,वर्तमान मानचित्रण क्रिया DocType: Email Account,Initial Sync Count,प्रारंभिक सिंक गणना apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,हमसे संपर्क करें पृष्ठ के लिए सेटिंग्स। @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,प्रिंट प्रारूप प्रकार apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,इस मापदंड के लिए कोई भी व्यक्ति निर्धारित नहीं है। apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,सभी का विस्तार करें +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,कोई डिफ़ॉल्ट पता टेम्पलेट नहीं मिला। कृपया सेटअप> प्रिंटिंग और ब्रांडिंग> एड्रेस टेम्प्लेट से एक नया बनाएं। DocType: Tag Doc Category,Tag Doc Category,टैग डॉक्टर श्रेणी DocType: Data Import,Generated File,फ़ाइल जनरेट की गई apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,टिप्पणियाँ @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,टाइमलाइन फ़ील्ड एक लिंक या डायनामिक लिंक होनी चाहिए DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,इस आउटगोइंग सर्वर से सूचनाएं और बल्क मेल भेजे जाएंगे। apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,यह एक शीर्ष -100 आम पासवर्ड है। -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,स्थायी रूप से {0} सबमिट करें? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,स्थायी रूप से {0} सबमिट करें? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} मौजूद नहीं है, मर्ज करने के लिए एक नया लक्ष्य चुनें" DocType: Energy Point Rule,Multiplier Field,गुणक क्षेत्र DocType: Workflow,Workflow State Field,वर्कफ़्लो स्टेट फील्ड @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} {2} अंकों के साथ {1} पर आपके काम की सराहना की DocType: Auto Email Report,Zero means send records updated at anytime,शून्य का मतलब है किसी भी समय अद्यतन रिकॉर्ड भेजना apps/frappe/frappe/model/document.py,Value cannot be changed for {0},मान {0} के लिए नहीं बदला जा सकता +apps/frappe/frappe/config/integrations.py,Google API Settings.,Google एपीआई सेटिंग्स। DocType: System Settings,Force User to Reset Password,उपयोगकर्ता को पासवर्ड रीसेट करने के लिए बाध्य करें apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,रिपोर्ट बिल्डर रिपोर्ट को रिपोर्ट बिल्डर द्वारा सीधे प्रबंधित किया जाता है। कुछ करने को नहीं है। apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,फ़िल्टर संपादित करें @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,क DocType: S3 Backup Settings,eu-north-1,यूरोपीय संघ और उत्तर 1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: एक ही नियम की अनुमति एक ही भूमिका के साथ, स्तर और {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,आपको इस वेब फ़ॉर्म दस्तावेज़ को अपडेट करने की अनुमति नहीं है -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,इस रिकॉर्ड के लिए अधिकतम अनुलग्नक सीमा पहुँच गई। +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,इस रिकॉर्ड के लिए अधिकतम अनुलग्नक सीमा पहुँच गई। apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,कृपया सुनिश्चित करें कि संदर्भ संचार डॉक्स परिपत्र से जुड़े नहीं हैं। DocType: DocField,Allow in Quick Entry,त्वरित प्रविष्टि में अनुमति दें DocType: Error Snapshot,Locals,स्थानीय लोगों का @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,अपवाद प्रकार apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},हटाएं या रद्द नहीं कर सकते क्योंकि {0} {1} को {2} {3} {4} से जोड़ा गया है apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTP रहस्य केवल व्यवस्थापक द्वारा रीसेट किया जा सकता है। -DocType: Web Form Field,Page Break,पृष्ठ ब्रेक DocType: Website Script,Website Script,वेबसाइट स्क्रिप्ट DocType: Integration Request,Subscription Notification,सदस्यता अधिसूचना DocType: DocType,Quick Entry,त्वरित प्रवेश @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,अलर्ट के बाद apps/frappe/frappe/__init__.py,Thank you,धन्यवाद apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,आंतरिक एकीकरण के लिए सुस्त Webhooks apps/frappe/frappe/config/settings.py,Import Data,आयात आंकड़ा +DocType: Translation,Contributed Translation Doctype Name,योगदान अनुवाद सिद्धांत नाम DocType: Social Login Key,Office 365,ऑफिस 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,आईडी DocType: Review Level,Review Level,समीक्षा स्तर @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,सफलतापूर्वक किया गया apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} सूची apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,सराहना -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),नया {0} (Ctrl + B) DocType: Contact,Is Primary Contact,प्राथमिक संपर्क है DocType: Print Format,Raw Commands,रॉ कमांड्स apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,प्रिंट प्रारूप के लिए शैलियाँ @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,पृष्ठभ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},{1} में {0} ढूंढें DocType: Email Account,Use SSL,एसएसएल का उपयोग करें DocType: DocField,In Standard Filter,स्टैंडर्ड फिल्टर में +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,सिंक करने के लिए कोई Google संपर्क मौजूद नहीं है। DocType: Data Migration Run,Total Pages,कुल पृष्ठ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: फ़ील्ड '{1}' को यूनिक के रूप में सेट नहीं किया जा सकता क्योंकि इसमें गैर-विशिष्ट मूल्य हैं DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","सक्षम होने पर, उपयोगकर्ताओं को हर बार लॉगिन करते समय सूचित किया जाएगा। यदि सक्षम नहीं है, तो उपयोगकर्ताओं को केवल एक बार सूचित किया जाएगा।" @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,स्वचालन apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,फ़ाइलें खोलना ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}','{0}' के लिए खोजें apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,कुछ गलत हो गया -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,कृपया संलग्न करने से पहले सहेजें। +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,कृपया संलग्न करने से पहले सहेजें। DocType: Version,Table HTML,तालिका HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,हब DocType: Page,Standard,मानक @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,कोई apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} रिकॉर्ड हटा दिए गए apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,ड्रॉपबॉक्स एक्सेस टोकन उत्पन्न करते समय कुछ गलत हो गया। कृपया अधिक विवरण के लिए त्रुटि लॉग की जांच करें। apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,के वंशज -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,कोई डिफ़ॉल्ट पता टेम्पलेट नहीं मिला। कृपया सेटअप> प्रिंटिंग और ब्रांडिंग> एड्रेस टेम्प्लेट से एक नया बनाएं। +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google संपर्क कॉन्फ़िगर किए गए हैं। apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,जानकारी छिपाएँ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,फ़ॉन्ट शैलियाँ apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,आपकी सदस्यता {0} पर समाप्त हो जाएगी। apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},ईमेल अकाउंट {0} से ईमेल प्राप्त करते समय प्रमाणीकरण विफल हो गया। सर्वर से संदेश: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),पिछले सप्ताह के प्रदर्शन ({0} से {1} तक) पर आधारित आँकड़े +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,इनकमिंग सक्षम होने पर ही स्वचालित लिंकिंग को सक्रिय किया जा सकता है। DocType: Website Settings,Title Prefix,शीर्षक उपसर्ग apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,प्रमाणीकरण ऐप्स जिनका आप उपयोग कर सकते हैं: DocType: Bulk Update,Max 500 records at a time,एक बार में अधिकतम 500 रिकॉर्ड @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,रिपोर्ट फ़िल् apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,कॉलम का चयन करें DocType: Event,Participants,प्रतिभागियों DocType: Auto Repeat,Amended From,से संशोधित -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,आपकी जानकारी जमा कर दी गई है +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,आपकी जानकारी जमा कर दी गई है DocType: Help Category,Help Category,सहायता श्रेणी apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 महीना apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,नया प्रारूप संपादित करने या शुरू करने के लिए एक मौजूदा प्रारूप का चयन करें। @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,फील्ड टू ट्रैक DocType: User,Generate Keys,कुंजी उत्पन्न करें DocType: Comment,Unshared,अविभाजित -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,बचाया +DocType: Translation,Saved,बचाया DocType: OAuth Client,OAuth Client,OAuth क्लाइंट DocType: System Settings,Disable Standard Email Footer,मानक ईमेल पाद को अक्षम करें apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,प्रिंट प्रारूप {0} अक्षम है @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,पिछल DocType: Data Import,Action,कार्य apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,क्लाइंट कुंजी की आवश्यकता है DocType: Chat Profile,Notifications,सूचनाएं +DocType: Translation,Contributed,योगदान DocType: System Settings,mm/dd/yyyy,dd / mm / yyyy DocType: Report,Custom Report,कस्टम रिपोर्ट DocType: Workflow State,info-sign,जानकारी हस्ताक्षर @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,संपर्क करें DocType: LDAP Settings,LDAP Username Field,LDAP उपयोगकर्ता नाम फ़ील्ड apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} फ़ील्ड को {1} में अद्वितीय के रूप में सेट नहीं किया जा सकता है, क्योंकि गैर-अद्वितीय मौजूदा मूल्य हैं" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,सेटअप> फॉर्म को अनुकूलित करें DocType: User,Social Logins,सामाजिक लॉगिन DocType: Workflow State,Trash,कचरा DocType: Stripe Settings,Secret Key,गुप्त कुंजी @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,शीर्षक क्षेत्र apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,आउटगोइंग ईमेल सर्वर से कनेक्ट नहीं हो सका DocType: File,File URL,फ़ाइल URL DocType: Help Article,Likes,को यह पसंद है +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google संपर्क एकीकरण अक्षम है। apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,आपको बैकअप एक्सेस करने में सक्षम होने के लिए लॉग इन करना होगा और सिस्टम मैनेजर रोल करना होगा। apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,प्रथम स्तर DocType: Blogger,Short Name,संक्षिप्त नाम @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,आयात ज़िप DocType: Contact,Gender,लिंग DocType: Workflow State,thumbs-down,नाकामयाबी -DocType: Web Page,SEO,एसईओ apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},कतार {0} में से एक होनी चाहिए apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},दस्तावेज़ प्रकार {0} पर अधिसूचना सेट नहीं की जा सकती apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,इस उपयोगकर्ता में सिस्टम मैनेजर जोड़ना क्योंकि कम से कम एक सिस्टम मैनेजर होना चाहिए apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,आपका स्वागत है ईमेल भेजा गया DocType: Transaction Log,Chaining Hash,हैनिंग का पीछा DocType: Contact,Maintenance Manager,रखरखाव प्रबंधक +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","तुलना के लिए,> 5, <10 या = 324 का उपयोग करें। श्रेणियों के लिए, 5:10 (5 और 10 के बीच मानों के लिए) का उपयोग करें।" apps/frappe/frappe/utils/bot.py,show,प्रदर्शन apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,शेयर यूआरएल apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,असमर्थित फ़ाइल स्वरूप @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,अधिसूचना DocType: Data Import,Show only errors,केवल त्रुटियां दिखाएं DocType: Energy Point Log,Review,समीक्षा apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,पंक्तियों को हटा दिया -DocType: GSuite Settings,Google Credentials,Google क्रेडेंशियल्स +DocType: Google Settings,Google Credentials,Google क्रेडेंशियल्स apps/frappe/frappe/www/login.html,Or login with,या के साथ लॉगिन करें apps/frappe/frappe/model/document.py,Record does not exist,रिकॉर्ड मौजूद नहीं है apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,नई रिपोर्ट का नाम @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,सूची DocType: Workflow State,th-large,वें-बड़े apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: जमा नहीं कर सकते हैं यदि सबमिशन योग्य नहीं है तो सबमिट करें apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,किसी रिकॉर्ड से लिंक नहीं किया गया +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZ ट्रे एप्लिकेशन से कनेक्ट करने में त्रुटि ...

रॉ प्रिंट फीचर का उपयोग करने के लिए आपको QZ ट्रे एप्लिकेशन इंस्टॉल और रनिंग करना होगा।

क्यूज ट्रे डाउनलोड और इंस्टॉल करने के लिए यहां क्लिक करें
रॉ प्रिंटिंग के बारे में अधिक जानने के लिए यहां क्लिक करें ।" DocType: Chat Message,Content,सामग्री DocType: Workflow Transition,Allow Self Approval,स्व अनुमोदन की अनुमति दें apps/frappe/frappe/www/qrcode.py,Page has expired!,पेज की समय सीमा समाप्त हो गई है! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,हाथ से सही DocType: Website Settings,Banner is above the Top Menu Bar.,बैनर टॉप मेनू बार के ऊपर है। apps/frappe/frappe/www/update-password.html,Invalid Password,अवैध पासवर्ड apps/frappe/frappe/utils/data.py,1 month ago,1 महीने पहले +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Google संपर्क एक्सेस की अनुमति दें DocType: OAuth Client,App Client ID,ऐप क्लाइंट आईडी DocType: DocField,Currency,मुद्रा DocType: Website Settings,Banner,बैनर @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,लक्ष्य DocType: Print Style,CSS,सीएसएस apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","यदि किसी भूमिका का स्तर 0 पर पहुँच नहीं है, तो उच्च स्तर अर्थहीन हैं।" DocType: ToDo,Reference Type,संदर्भ प्रकार -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DocType, DocType की अनुमति देना। सावधान रहे!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","DocType, DocType की अनुमति देना। सावधान रहे!" DocType: Domain Settings,Domain Settings,डोमेन सेटिंग्स DocType: Auto Email Report,Dynamic Report Filters,डायनामिक रिपोर्ट फ़िल्टर DocType: Energy Point Log,Appreciation,प्रशंसा @@ -1468,6 +1489,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,हमें पश्चिम -2 DocType: DocType,Is Single,अकेला है apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,एक नया प्रारूप बनाएँ +DocType: Google Contacts,Authorize Google Contacts Access,Google संपर्क एक्सेस को अधिकृत करें DocType: S3 Backup Settings,Endpoint URL,समापन बिंदु URL DocType: Social Login Key,Google,गूगल DocType: Contact,Department,विभाग @@ -1482,7 +1504,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,को आवं DocType: List Filter,List Filter,सूची फ़िल्टर DocType: Dashboard Chart Link,Chart,चार्ट apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,हटा नहीं सकते -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,पुष्टि करने के लिए इस दस्तावेज़ को जमा करें +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,पुष्टि करने के लिए इस दस्तावेज़ को जमा करें apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} पहले से मौजूद है। कोई दूसरा नाम चुनें apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,आपने इस रूप में बिना सहेजे परिवर्तन किए हैं। कृपया जारी रखने से पहले सहेजें। apps/frappe/frappe/model/document.py,Action Failed,क्रिया: विफल रही है @@ -1564,6 +1586,7 @@ DocType: DocField,Display,प्रदर्शन apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,सभी को उत्तर दें DocType: Calendar View,Subject Field,विषय क्षेत्र apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},सत्र समाप्ति का प्रारूप {0} में होना चाहिए +apps/frappe/frappe/model/workflow.py,Applying: {0},लागू: {0} DocType: Workflow State,zoom-in,ज़ूम इन apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,सर्वर से कनेक्ट करने में विफल apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},दिनांक {0} प्रारूप में होना चाहिए: {1} @@ -1575,8 +1598,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,बटन पर आइकन दिखाई देगा DocType: Role Permission for Page and Report,Set Role For,भूमिका के लिए सेट करें +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,स्वचालित लिंकिंग को केवल एक ईमेल खाते के लिए सक्रिय किया जा सकता है। apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,कोई ईमेल खाते नहीं सौंपे गए +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ईमेल खाता सेटअप नहीं। कृपया सेटअप> ईमेल> ईमेल खाते से एक नया ईमेल खाता बनाएँ apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,असाइनमेंट +DocType: Google Contacts,Last Sync On,अंतिम सिंक पर apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},{0} स्वचालित नियम {1} के माध्यम से प्राप्त apps/frappe/frappe/config/website.py,Portal,द्वार apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,आपके ईमेल के लिए धन्यवाद @@ -1597,7 +1623,6 @@ DocType: GSuite Settings,GSuite Settings,GSuite सेटिंग्स DocType: Integration Request,Remote,रिमोट DocType: File,Thumbnail URL,थंबनेल URL apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,रिपोर्ट डाउनलोड करें -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,सेटअप> उपयोगकर्ता apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},के लिए निर्यात {0} के लिए अनुकूलन:
{1} DocType: GCalendar Account,Calendar Name,कैलेंडर का नाम apps/frappe/frappe/templates/emails/new_user.html,Your login id is,आपकी लॉगिन आईडी है @@ -1647,6 +1672,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},{0} apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,छवि क्षेत्र एक मान्य फ़ील्डनाम होना चाहिए apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,इस पृष्ठ तक पहुंचने के लिए आपको लॉग इन होना होगा DocType: Assignment Rule,Example: {{ subject }},उदाहरण: {{विषय}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,फ़ील्ड नाम {0} प्रतिबंधित है apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},आप {0} फ़ील्ड के लिए 'केवल पढ़ने के लिए' को परेशान नहीं कर सकते DocType: Social Login Key,Enable Social Login,सामाजिक लॉगिन सक्षम करें DocType: Workflow,Rules defining transition of state in the workflow.,वर्कफ़्लो में राज्य के संक्रमण को परिभाषित करने वाले नियम। @@ -1667,10 +1693,10 @@ DocType: Website Settings,Route Redirects,रूट पुनर्निर् apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ईमेल इनबॉक्स apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},{1} के रूप में {0} बहाल DocType: Assignment Rule,Automatically Assign Documents to Users,स्वचालित रूप से उपयोगकर्ताओं को दस्तावेज़ असाइन करें +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,विस्मयबोधक खोलें apps/frappe/frappe/config/settings.py,Email Templates for common queries.,सामान्य प्रश्नों के लिए ईमेल टेम्पलेट। DocType: Letter Head,Letter Head Based On,पत्र प्रमुख के आधार पर apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,कृपया इस विंडो को बंद करें -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,भुगतान पूर्ण DocType: Contact,Designation,पद DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,मेटा टैग @@ -1709,6 +1735,7 @@ DocType: System Settings,Choose authentication method to be used by all users, DocType: Error Snapshot,Parent Error Snapshot,जनक त्रुटि स्नैपशॉट DocType: GCalendar Account,GCalendar Account,GCalendar खाता DocType: Language,Language Name,भाषा का नाम +DocType: Workflow Document State,Workflow Action is not created for optional states,वैकल्पिक राज्यों के लिए वर्कफ़्लो एक्शन नहीं बनाया गया है DocType: Customize Form,Customize Form,फॉर्म को अनुकूलित करें DocType: DocType,Image Field,छवि क्षेत्र apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),जोड़ा गया {0} ({1}) @@ -1750,6 +1777,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,"यदि उपयोगकर्ता स्वामी है, तो यह नियम लागू करें" DocType: About Us Settings,Org History Heading,संगठन का इतिहास शीर्षक apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,सर्वर त्रुटि +DocType: Contact,Google Contacts Description,Google संपर्क विवरण apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,मानक भूमिकाओं का नाम नहीं बदला जा सकता है DocType: Review Level,Review Points,अंक की समीक्षा करें apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,लापता पैरामीटर कानबन बोर्ड का नाम @@ -1767,7 +1795,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,डेवलपर मोड में नहीं! Site_config.json में सेट करें या 'कस्टम' DocType बनाएं। apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,{0} अंक प्राप्त किए DocType: Web Form,Success Message,सफलता का संदेश -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","तुलना के लिए,> 5, <10 या = 324 का उपयोग करें। श्रेणियों के लिए, 5:10 (5 और 10 के बीच मानों के लिए) का उपयोग करें।" DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","लिस्टिंग पृष्ठ के लिए, सादे पाठ में, केवल कुछ पंक्तियाँ। (अधिकतम 140 वर्ण)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,अनुमतियाँ दिखाएँ DocType: DocType,Restrict To Domain,डोमेन पर प्रतिबंध @@ -1789,6 +1816,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,के apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,मात्रा निर्धारित करें DocType: Auto Repeat,End Date,अंतिम तिथि DocType: Workflow Transition,Next State,अगला राज्य +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Google संपर्क सिंक किए गए। DocType: System Settings,Is First Startup,पहला स्टार्टअप है apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},{0} पर अपडेट किया गया apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,करने के लिए कदम @@ -1838,6 +1866,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} कैलेंडर apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,डेटा आयात टेम्पलेट DocType: Workflow State,hand-left,हाथ से छोड़ दिया +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,कई सूची आइटम का चयन करें apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,बैकअप आकार: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},{0} से लिंक किया गया DocType: Braintree Settings,Private Key,निजी चाबी @@ -1880,13 +1909,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,ब्याज DocType: Bulk Update,Limit,सीमा DocType: Print Settings,Print taxes with zero amount,शून्य राशि वाले प्रिंट टैक्स -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ईमेल खाता सेटअप नहीं। कृपया सेटअप> ईमेल> ईमेल खाते से एक नया ईमेल खाता बनाएँ DocType: Workflow State,Book,किताब DocType: S3 Backup Settings,Access Key ID,एक्सेस आईडी DocType: Chat Message,URLs,यूआरएल apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,नाम और उपनाम से स्वयं का अनुमान लगाना आसान है। apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},रिपोर्ट {0} DocType: About Us Settings,Team Members Heading,टीम के सदस्य हेडिंग +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,सूची आइटम का चयन करें apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},दस्तावेज़ {0} को {2} द्वारा राज्य {1} में सेट किया गया है DocType: Address Template,Address Template,एड्रेस टेम्प्लेट DocType: Workflow State,step-backward,पीछे जाओ @@ -1910,6 +1939,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,निर्यात कस्टम अनुमतियाँ apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,कोई नहीं: वर्कफ़्लो का अंत DocType: Version,Version,संस्करण +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,सूची आइटम खोलें apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 महीने DocType: Chat Message,Group,समूह apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},फ़ाइल url के साथ कुछ समस्या है: {0} @@ -1965,6 +1995,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 साल apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} ने आपकी बातों को {1} पर वापस कर दिया DocType: Workflow State,arrow-down,नीचे दर्शित तीर DocType: Data Import,Ignore encoding errors,एन्कोडिंग त्रुटियों को अनदेखा करें +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,परिदृश्य DocType: Letter Head,Letter Head Name,लेटर हेड नाम DocType: Web Form,Client Script,क्लाइंट स्क्रिप्ट DocType: Assignment Rule,Higher priority rule will be applied first,उच्च प्राथमिकता वाला नियम पहले लागू किया जाएगा @@ -2009,6 +2040,7 @@ DocType: Kanban Board Column,Green,हरा apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,नए रिकॉर्ड के लिए केवल अनिवार्य क्षेत्र आवश्यक हैं। आप चाहें तो गैर-अनिवार्य कॉलम हटा सकते हैं। apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} एक पत्र के साथ शुरू और समाप्त होना चाहिए और इसमें केवल अक्षर, हाइफ़न या अंडरस्कोर हो सकते हैं।" +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,ट्रिगर प्राथमिक क्रिया apps/frappe/frappe/core/doctype/user/user.js,Create User Email,उपयोगकर्ता ईमेल बनाएँ apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,फ़ील्ड को सॉर्ट करें {0} एक मान्य फ़ील्डनाम होना चाहिए DocType: Auto Email Report,Filter Meta,मेटा फ़िल्टर करें @@ -2038,6 +2070,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,समय रेखा क्षेत्र apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,लोड हो रहा है... DocType: Auto Email Report,Half Yearly,अर्धवार्षिक +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,मेरी प्रोफाइल apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,अंतिम संशोधित तिथि DocType: Contact,First Name,पहला नाम DocType: Post,Comments,टिप्पणियाँ @@ -2060,6 +2093,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,सामग्री हैश apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},{0} द्वारा पोस्ट apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} असाइन किया गया {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,कोई नया Google संपर्क सिंक नहीं किया गया। DocType: Workflow State,globe,ग्लोब apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},{0} का औसत apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,स्पष्ट त्रुटि लॉग @@ -2086,6 +2120,8 @@ DocType: Workflow State,Inverse,श्लोक में DocType: Activity Log,Closed,बन्द है DocType: Report,Query,सवाल DocType: Notification,Days After,दिनों के बाद +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,पेज शॉर्टकट +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,चित्र apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,अनुरोध का समय समाप्त DocType: System Settings,Email Footer Address,ईमेल पाद लेख का पता apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,एनर्जी पॉइंट अपडेट @@ -2113,6 +2149,7 @@ For Select, enter list of Options, each on a new line.","लिंक के ल apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 मिनट पहले apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,कोई सक्रिय सत्र नहीं apps/frappe/frappe/model/base_document.py,Row,पंक्ति +DocType: Contact,Middle Name,मध्य नाम apps/frappe/frappe/public/js/frappe/request.js,Please try again,कृपया पुन: प्रयास करें DocType: Dashboard Chart,Chart Options,चार्ट विकल्प DocType: Data Migration Run,Push Failed,धक्का लग गया @@ -2141,6 +2178,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,आकार बदलने के छोटे DocType: Comment,Relinked,फिर से जोड़ दिया DocType: Role Permission for Page and Report,Roles HTML,रोल्स HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,चले जाओ apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,सेविंग के बाद वर्कफ्लो शुरू होगा। DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","यदि आपका डेटा HTML में है, तो कृपया टैग के साथ सटीक HTML कोड पेस्ट करें।" apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,तिथियां अक्सर अनुमान लगाने में आसान होती हैं। @@ -2169,7 +2207,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,डेस्कटॉप आइकन apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,इस दस्तावेज़ को रद्द कर दिया apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,तिथि सीमा -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,सेटअप> उपयोगकर्ता अनुमतियाँ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} की सराहना की {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,मान बदल गया apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,अधिसूचना में त्रुटि @@ -2233,6 +2270,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,बल्क डिलीट करें DocType: DocShare,Document Name,दस्तावेज़ का नाम apps/frappe/frappe/config/customization.py,Add your own translations,अपने खुद के अनुवाद जोड़ें +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,सूची को नीचे नेविगेट करें DocType: S3 Backup Settings,eu-central-1,यूरोपीय संघ और केंद्रीय -1 DocType: Auto Repeat,Yearly,सालाना apps/frappe/frappe/public/js/frappe/model/model.js,Rename,नाम बदलें @@ -2283,6 +2321,7 @@ DocType: Workflow State,plane,विमान apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,नेस्टेड सेट त्रुटि। कृपया व्यवस्थापक से संपर्क करें। apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,रिपोर्ट दिखाओ DocType: Auto Repeat,Auto Repeat Schedule,ऑटो रिपीट शेड्यूल +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,देखें रेफ DocType: Address,Office,कार्यालय DocType: LDAP Settings,StartTLS,STARTTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} दिन पहले @@ -2316,7 +2355,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required, apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,मेरी सेटिंग्स apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,समूह नाम रिक्त नहीं हो सकता। DocType: Workflow State,road,सड़क -DocType: Website Route Redirect,Source,स्रोत +DocType: Contact,Source,स्रोत apps/frappe/frappe/www/third_party_apps.html,Active Sessions,सक्रिय सत्र apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,एक फॉर्म में केवल एक फोल्ड हो सकता है apps/frappe/frappe/public/js/frappe/chat.js,New Chat,नई चैट @@ -2338,6 +2377,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,कृपया अधिकृत URL दर्ज करें DocType: Email Account,Send Notification to,को अधिसूचना भेजें apps/frappe/frappe/config/integrations.py,Dropbox backup settings,ड्रॉपबॉक्स बैकअप सेटिंग्स +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,टोकन निर्माण के दौरान कुछ गलत हो गया। नया बनाने के लिए {0} पर क्लिक करें। apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,सभी अनुकूलन निकालें? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,केवल व्यवस्थापक ही संपादित कर सकता है DocType: Auto Repeat,Reference Document,संदर्भ दस्तावेज़ @@ -2362,6 +2402,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,उनके उपयोगकर्ता पृष्ठ से उपयोगकर्ताओं के लिए भूमिकाएँ निर्धारित की जा सकती हैं। DocType: Website Settings,Include Search in Top Bar,टॉप बार में सर्च शामिल करें apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[तत्काल]% s के लिए आवर्ती% s बनाते समय त्रुटि +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,वैश्विक शॉर्टकट DocType: Help Article,Author,लेखक DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,दिए गए फ़िल्टर के लिए कोई दस्तावेज़ नहीं मिला @@ -2397,10 +2438,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, पंक्ति {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","यदि आप नए रिकॉर्ड अपलोड कर रहे हैं, तो "नामकरण श्रृंखला" अनिवार्य हो जाती है, यदि मौजूद हो।" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,गुण संपादित करें -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,उसका {0} खुला होने पर खुला उदाहरण नहीं दिया जा सकता +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,उसका {0} खुला होने पर खुला उदाहरण नहीं दिया जा सकता DocType: Activity Log,Timeline Name,समय का नाम DocType: Comment,Workflow,कार्यप्रवाह apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,कृपया Frappe के लिए सामाजिक लॉगिन कुंजी में आधार URL सेट करें +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,कुंजीपटल अल्प मार्ग DocType: Portal Settings,Custom Menu Items,कस्टम मेनू आइटम apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,{0} की लंबाई 1 से 1000 के बीच होनी चाहिए apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,संपर्क टूट गया। कुछ सुविधाएँ काम नहीं कर सकती हैं। @@ -2463,6 +2505,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,पंक DocType: DocType,Setup,सेट अप apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} सफलतापूर्वक बनाया गया apps/frappe/frappe/www/update-password.html,New Password,नया पासवर्ड +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,फ़ील्ड का चयन करें apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,इस बातचीत को छोड़ दें DocType: About Us Settings,Team Members,टीम का सदस्या DocType: Blog Settings,Writers Introduction,लेखक परिचय @@ -2532,13 +2575,12 @@ DocType: Chat Room,Name,नाम DocType: Communication,Email Template,ईमेल टेम्पलेट DocType: Energy Point Settings,Review Levels,स्तर की समीक्षा करें DocType: Print Format,Raw Printing,कच्ची छपाई -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,उसका उदाहरण खुला होने पर {0} नहीं खुल सकता +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,उसका उदाहरण खुला होने पर {0} नहीं खुल सकता DocType: DocType,"Make ""name"" searchable in Global Search",ग्लोबल सर्च में "नाम" खोजा जा सकता है DocType: Data Migration Mapping,Data Migration Mapping,डेटा माइग्रेशन मैपिंग DocType: Data Import,Partially Successful,आंशिक रूप से सफल DocType: Communication,Error,त्रुटि apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},फील्डटाइप को {0} से {1} में पंक्ति {2} में नहीं बदला जा सकता है -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZ ट्रे एप्लिकेशन से कनेक्ट करने में त्रुटि ...

रॉ प्रिंट फीचर का उपयोग करने के लिए आपको QZ ट्रे एप्लिकेशन इंस्टॉल और रनिंग करना होगा।

क्यूज ट्रे डाउनलोड और इंस्टॉल करने के लिए यहां क्लिक करें
रॉ प्रिंटिंग के बारे में अधिक जानने के लिए यहां क्लिक करें ।" apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,फोटो लो apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,उन वर्षों से बचें जो आपके साथ जुड़े हुए हैं। DocType: Web Form,Allow Incomplete Forms,अधूरे प्रपत्रों की अनुमति दें @@ -2634,7 +2676,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",एक नए पृष्ठ में खोलने के लिए लक्ष्य = "_blank" चुनें। DocType: Portal Settings,Portal Menu,पोर्टल मेनू DocType: Website Settings,Landing Page,लैंडिंग पृष्ठ -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,शुरू करने के लिए कृपया साइन-अप या लॉगिन करें DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","संपर्क विकल्प, जैसे "बिक्री क्वेरी, समर्थन क्वेरी" आदि प्रत्येक नई लाइन पर या अल्पविराम द्वारा अलग किए गए।" apps/frappe/frappe/twofactor.py,Verfication Code,सत्यापन कोड apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} पहले से अनसब्सक्राइब @@ -2720,6 +2761,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,डाटा DocType: Address,Sales User,बिक्री उपयोगकर्ता apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","फ़ील्ड गुण बदलें (छिपें, आसानी से, अनुमति आदि)" DocType: Property Setter,Field Name,कार्यक्षेत्र नाम +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,ग्राहक DocType: Print Settings,Font Size,फ़ॉन्ट आकार DocType: User,Last Password Reset Date,अंतिम पासवर्ड रीसेट तिथि DocType: System Settings,Date and Number Format,दिनांक और संख्या प्रारूप @@ -2785,6 +2827,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,समूह apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,मौजूदा के साथ विलय DocType: Blog Post,Blog Intro,ब्लॉग पहचान apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,नया उल्लेख +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,मैदान में कूदें DocType: Prepared Report,Report Name,रिपोर्ट का नाम apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,कृपया नवीनतम दस्तावेज़ प्राप्त करने के लिए ताज़ा करें। apps/frappe/frappe/core/doctype/communication/communication.js,Close,बंद करे @@ -2794,10 +2837,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,घटना DocType: Social Login Key,Access Token URL,टोकन URL तक पहुँचें apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,कृपया अपनी साइट कॉन्फ़िगर में ड्रॉपबॉक्स एक्सेस कीज़ सेट करें +DocType: Google Contacts,Google Contacts,Google संपर्क DocType: User,Reset Password Key,पासवर्ड कुंजी को रीसेट करें apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,द्वारा संशोधित DocType: User,Bio,जैव apps/frappe/frappe/limits.py,"To renew, {0}.","नवीनीकरण करने के लिए, {0}।" +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,सफलतापूर्वक बचाया +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,इसे लिंक करने के लिए {0} पर एक ईमेल भेजें। DocType: File,Folder,फ़ोल्डर DocType: DocField,Perm Level,परमिट स्तर DocType: Print Settings,Page Settings,पेज सेटिंग्स @@ -2827,6 +2873,7 @@ DocType: Workflow State,remove-sign,हटाने हस्ताक्षर DocType: Dashboard Chart,Full,पूर्ण DocType: DocType,User Cannot Create,उपयोगकर्ता नहीं बना सकते हैं apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,आपने {0} बिंदु प्राप्त किया +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,सेटअप> उपयोगकर्ता DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","यदि आप इसे सेट करते हैं, तो यह आइटम चयनित माता-पिता के अंतर्गत एक ड्रॉप-डाउन में आएगा।" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,कोई ईमेल नहीं apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,निम्नलिखित फ़ील्ड गायब हैं: @@ -2840,13 +2887,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,क DocType: Web Form,Web Form Fields,वेब फॉर्म फील्ड्स DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,वेबसाइट पर उपयोगकर्ता का संपादन योग्य रूप। -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,स्थायी रूप से {0} रद्द करें? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,स्थायी रूप से {0} रद्द करें? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,विकल्प 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,योग apps/frappe/frappe/utils/password_strength.py,This is a very common password.,यह एक बहुत ही सामान्य पासवर्ड है। DocType: Personal Data Deletion Request,Pending Approval,लंबित अनुमोदन apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,दस्तावेज़ सही ढंग से असाइन नहीं किया जा सका apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{0}: {1} के लिए अनुमति नहीं है +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,दिखाने के लिए कोई मूल्य नहीं DocType: Personal Data Download Request,Personal Data Download Request,व्यक्तिगत डेटा डाउनलोड अनुरोध apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} ने इस दस्तावेज़ को {1} के साथ साझा किया apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},{0} का चयन करें @@ -2862,7 +2910,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},यह ईमेल {0} पर भेजा गया और {1} पर कॉपी किया गया apps/frappe/frappe/email/smtp.py,Invalid login or password,अवैध लॉगइन या पासवर्ड DocType: Social Login Key,Social Login Key,सामाजिक लॉगिन कुंजी -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,कृपया सेटअप> ईमेल> ईमेल खाते से डिफ़ॉल्ट ईमेल खाता सेटअप करें apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,फिल्टर बच गए DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","इस मुद्रा को कैसे स्वरूपित किया जाना चाहिए? यदि सेट नहीं है, तो सिस्टम डिफॉल्ट का उपयोग करेगा" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} को राज्य {2} पर सेट किया जाता है @@ -2988,6 +3035,7 @@ DocType: User,Location,स्थान apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,कोई आकड़ा उपलब्ध नहीं है DocType: Website Meta Tag,Website Meta Tag,वेबसाइट मेटा टैग DocType: Workflow State,film,फ़िल्म +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,क्लिपबोर्ड पर नकल। apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} सेटिंग्स नहीं मिलीं apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,लेबल अनिवार्य है DocType: Webhook,Webhook Headers,वेबहूक हेडर @@ -3196,7 +3244,7 @@ DocType: Address,Address Line 1,पता पंक्ति 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,दस्तावेज़ प्रकार के लिए apps/frappe/frappe/model/base_document.py,Data missing in table,तालिका में डेटा गायब है apps/frappe/frappe/utils/bot.py,Could not identify {0},{0} की पहचान नहीं हो सकी -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,आपके द्वारा लोड किए जाने के बाद इस फॉर्म को संशोधित किया गया है +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,आपके द्वारा लोड किए जाने के बाद इस फॉर्म को संशोधित किया गया है apps/frappe/frappe/www/login.html,Back to Login,लॉगिन पर वापस जाएं apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,सेट नहीं DocType: Data Migration Mapping,Pull,खींचें @@ -3264,6 +3312,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,बाल ताल apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,ईमेल खाता सेटअप के लिए अपना पासवर्ड दर्ज करें: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,बहुत सारे एक अनुरोध में लिखते हैं। कृपया छोटे अनुरोध भेजें DocType: Social Login Key,Salesforce,बिक्री बल +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{0} का {0} आयात करना DocType: User,Tile,टाइल apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} कमरे में कम से कम एक उपयोगकर्ता होना चाहिए। DocType: Email Rule,Is Spam,स्पैम है @@ -3300,7 +3349,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,फ़ोल्डर बंद DocType: Data Migration Run,Pull Update,अद्यतन खींचो apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},{0} को {1} में मिला दिया -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

DocType: SMS Settings,Enter url parameter for receiver nos,रिसीवर एनओएस के लिए यूआरएल पैरामीटर दर्ज करें apps/frappe/frappe/utils/jinja.py,Syntax error in template,टेम्पलेट में सिंटैक्स त्रुटि apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,कृपया रिपोर्ट फ़िल्टर तालिका में फ़िल्टर मान सेट करें। @@ -3313,6 +3361,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","क्ष DocType: System Settings,In Days,दिनों में DocType: Report,Add Total Row,कुल पंक्ति जोड़ें apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,सत्र प्रारंभ विफल +DocType: Translation,Verified,सत्यापित DocType: Print Format,Custom HTML Help,कस्टम HTML मदद DocType: Address,Preferred Billing Address,पसंदीदा बिलिंग पता apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,को सौंपना @@ -3327,7 +3376,6 @@ DocType: Help Article,Intermediate,मध्यम DocType: Module Def,Module Name,मोड्यूल का नाम DocType: OAuth Authorization Code,Expiration time,समय सीमा समाप्ति समय apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","डिफ़ॉल्ट प्रारूप, पृष्ठ आकार, प्रिंट शैली आदि सेट करें।" -apps/frappe/frappe/desk/like.py,You cannot like something that you created,आपके द्वारा बनाई गई कोई चीज आपको पसंद नहीं आ सकती DocType: System Settings,Session Expiry,सत्र समाप्ति DocType: DocType,Auto Name,ऑटो नाम apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,अनुलग्नकों का चयन करें @@ -3355,6 +3403,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,सिस्टम पेज DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,नोट: विफल बैकअप के लिए डिफ़ॉल्ट ईमेल द्वारा भेजे जाते हैं। DocType: Custom DocPerm,Custom DocPerm,कस्टम डॉकपर्म +DocType: Translation,PR sent,पीआर भेजा गया DocType: Tag Doc Category,Doctype to Assign Tags,टैग असाइन करने के लिए सिद्धांत DocType: Address,Warehouse,गोदाम apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,ड्रॉपबॉक्स सेटअप @@ -3422,7 +3471,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + टिप्पणी जोड़ने के लिए दर्ज करें apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,फ़ील्ड {0} चयन करने योग्य नहीं है। DocType: User,Birth Date,जन्म दिन -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,समूह इंडेंटेशन के साथ DocType: List View Setting,Disable Count,गणना अक्षम करें DocType: Contact Us Settings,Email ID,ईमेल आईडी apps/frappe/frappe/utils/password.py,Incorrect User or Password,गलत उपयोगकर्ता या पासवर्ड @@ -3456,6 +3504,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,यह भूमिका उपयोगकर्ता के लिए उपयोगकर्ता अनुमतियाँ अद्यतन करती है DocType: Website Theme,Theme,विषय DocType: Web Form,Show Sidebar,साइडबार दिखाओ +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google संपर्क एकीकरण। apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,डिफ़ॉल्ट इनबॉक्स apps/frappe/frappe/www/login.py,Invalid Login Token,अमान्य लॉगिन टोकन apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,पहले नाम सेट करें और रिकॉर्ड सहेजें। @@ -3483,7 +3532,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,कृपया सही करें DocType: Top Bar Item,Top Bar Item,शीर्ष बार आइटम ,Role Permissions Manager,भूमिका अनुमतियाँ प्रबंधक -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,त्रुटियां थीं। कृपया इसकी सूचना दें। +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} साल पहले apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,महिला DocType: System Settings,OTP Issuer Name,OTP जारीकर्ता का नाम apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,करने के लिए जोड़ें @@ -3583,6 +3632,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","भा apps/frappe/frappe/model/document.py,none of,कोई नहीं DocType: Desktop Icon,Page,पृष्ठ DocType: Workflow State,plus-sign,पलस हसताक्षर +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,कैश और रीलोड साफ़ करें apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,अपडेट नहीं किया जा सकता: गलत / समय सीमा समाप्त लिंक। DocType: Kanban Board Column,Yellow,पीला DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),एक ग्रिड में एक क्षेत्र के लिए कॉलम की संख्या (ग्रिड में कुल कॉलम 11 से कम होना चाहिए) @@ -3597,6 +3647,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,न DocType: Activity Log,Date,दिनांक DocType: Communication,Communication Type,संचार प्रकार apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,पैरेंट टेबल +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,सूची को नेविगेट करें DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,डेवलपर को पूर्ण त्रुटि और मुद्दों की रिपोर्टिंग की अनुमति दें DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3618,7 +3669,6 @@ DocType: Notification Recipient,Email By Role,ईमेल द्वारा apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,कृपया {0} से अधिक सदस्य जोड़ने के लिए अपग्रेड करें apps/frappe/frappe/email/queue.py,This email was sent to {0},यह ईमेल {0} को भेजा गया था DocType: User,Represents a User in the system.,सिस्टम में एक उपयोगकर्ता का प्रतिनिधित्व करता है। -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},पृष्ठ {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,नया प्रारूप प्रारंभ करें apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,एक टिप्पणी जोड़े apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} का {१} diff --git a/frappe/translations/hr.csv b/frappe/translations/hr.csv index 80862bc976..35d1d0c2d0 100644 --- a/frappe/translations/hr.csv +++ b/frappe/translations/hr.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Omogući gradijente DocType: DocType,Default Sort Order,Zadani redoslijed sortiranja apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Prikazuje se samo brojčana polja iz izvješća +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Pritisnite tipku Alt za pokretanje dodatnih prečaca u izborniku i bočnoj traci DocType: Workflow State,folder-open,mapa otvorena DocType: Customize Form,Is Table,Je tablica apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Nije moguće otvoriti pridruženu datoteku. Jeste li ga izvezli kao CSV? DocType: DocField,No Copy,Nema kopije DocType: Custom Field,Default Value,Zadana vrijednost apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Append To je obavezno za dolaznu poštu +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Sinkronizacija kontakata DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Detalj preslikavanja podataka apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Prestani pratiti apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",PDF ispis putem "Raw Print" još nije podržan. Uklonite mapiranje pisača u postavkama pisača i pokušajte ponovno. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} i {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Došlo je do pogreške prilikom spremanja filtara apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Unesite svoju lozinku apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Nije moguće izbrisati mape s početnim i prilozima +DocType: Email Account,Enable Automatic Linking in Documents,Omogućite automatsko povezivanje u dokumentima DocType: Contact Us Settings,Settings for Contact Us Page,Postavke za stranicu Kontakt DocType: Social Login Key,Social Login Provider,Pružatelj društvenih usluga +DocType: Email Account,"For more information, click here.","Za više informacija, kliknite ovdje ." DocType: Transaction Log,Previous Hash,Prethodni Hash DocType: Notification,Value Changed,Promijenjena vrijednost DocType: Report,Report Type,Vrsta izvješća @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Pravilo energetske točke apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,Unesite ID klijenta prije omogućivanja društvene prijave DocType: Communication,Has Attachment,Ima privitak DocType: User,Email Signature,Potpis E-pošte -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} godina prije ,Addresses And Contacts,Adrese i kontakti apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Ovaj Kanban odbor bit će privatan DocType: Data Migration Run,Current Mapping,Trenutno mapiranje @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Odabirete opciju sinkronizacije kao SVE, ona će ponovno sinkronizirati sve pročitane i nepročitane poruke s poslužitelja. To također može uzrokovati dupliciranje komunikacije (e-pošte)." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Posljednja sinkronizacija {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Nije moguće promijeniti sadržaj zaglavlja +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Nisu pronađeni rezultati za "

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Nije dopušteno mijenjati {0} nakon slanja apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Aplikacija je ažurirana na novu verziju, osvježite ovu stranicu" DocType: User,User Image,Korisnička slika @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Ozna apps/frappe/frappe/public/js/frappe/chat.js,Discard,Odbaciti DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Za najbolje rezultate odaberite sliku širine približno 150 piksela s transparentnom pozadinom. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,relaps +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Odabrano je {0} vrijednosti DocType: Blog Post,Email Sent,E-mail poslan DocType: Communication,Read by Recipient On,Čitanje od strane primatelja Uključeno DocType: User,Allow user to login only after this hour (0-24),Dopusti korisniku da se prijavi samo nakon ovog sata (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Modul za izvoz DocType: DocType,Fields,polja -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Nije vam dopušteno ispisati ovaj dokument +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Nije vam dopušteno ispisati ovaj dokument apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Roditelj apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Vaša sesija je istekla, prijavite se ponovno kako biste nastavili." DocType: Assignment Rule,Priority,Prioritet @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Poništite OTP Sec DocType: DocType,UPPER CASE,VELIKA SLOVA apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,Postavite adresu e-pošte DocType: Communication,Marked As Spam,Označeno kao neželjena pošta +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Adresa e-pošte čije će se Google kontakte sinkronizirati. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Uvoz pretplatnika apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Spremi filtar DocType: Address,Preferred Shipping Address,Preferirana adresa za isporuku DocType: GCalendar Account,The name that will appear in Google Calendar,Naziv koji će se pojaviti u Google kalendaru +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Kliknite na {0} da biste generirali oznaku za osvježavanje. DocType: Email Account,Disable SMTP server authentication,Onemogućite provjeru autentičnosti SMTP poslužitelja DocType: Email Account,Total number of emails to sync in initial sync process ,Ukupan broj poruka e-pošte za sinkronizaciju u početnom postupku sinkronizacije DocType: System Settings,Enable Password Policy,Omogući pravilo zaporke @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Unesite kod apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Ne u DocType: Auto Repeat,Start Date,Početni datum apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Postavite grafikon +DocType: Website Theme,Theme JSON,Tema JSON apps/frappe/frappe/www/list.py,My Account,Moj račun DocType: DocType,Is Published Field,Objavljeno je polje DocType: DocField,Set non-standard precision for a Float or Currency field,Postavite nestandardnu preciznost za polje Float ili Currency @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Dodaj Reference: {{ reference_doctype }} {{ reference_name }} za slanje reference dokumenta DocType: LDAP Settings,LDAP First Name Field,Polje LDAP imena apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Zadano slanje i Primljeno -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Podešavanje> Prilagodi obrazac apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",Za ažuriranje možete ažurirati samo selektivne stupce. apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',Zadano za polje "Provjeri" mora biti "0" ili "1" apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Podijelite ovaj dokument s @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,HTML domena DocType: Blog Settings,Blog Settings,Postavke bloga apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Ime DocType treba početi slovom i može se sastojati samo od slova, brojeva, razmaka i podvlake" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Postavke> Korisničke dozvole DocType: Communication,Integrations can use this field to set email delivery status,Integracije mogu koristiti ovo polje za postavljanje statusa isporuke e-pošte apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Postavke pristupnika za plaćanje DocType: Print Settings,Fonts,fontovi DocType: Notification,Channel,Kanal DocType: Communication,Opened,otvorena DocType: Workflow Transition,Conditions,Uvjeti +apps/frappe/frappe/config/website.py,A user who posts blogs.,Korisnik koji objavljuje blogove. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Nemate račun? Prijavite se apps/frappe/frappe/utils/file_manager.py,Added {0},Dodano {0} DocType: Newsletter,Create and Send Newsletters,Stvorite i pošaljite biltene DocType: Website Settings,Footer Items,Stavke podnožja +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Postavite zadani račun e-pošte iz Postavke> E-pošta> Račun e-pošte DocType: Website Slideshow Item,Website Slideshow Item,Web stranica Slideshow Item apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registrirajte aplikaciju klijenta OAuth DocType: Error Snapshot,Frames,okviri @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Razina 0 je za dozvole na razini dokumenta, više razine za dozvole na razini polja." DocType: Address,City/Town,Grad DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","To će poništiti vašu trenutačnu temu, jeste li sigurni da želite nastaviti?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Obavezna polja potrebna u {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Pogreška prilikom povezivanja na račun e-pošte {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Došlo je do pogreške prilikom izrade ponavljajućih @@ -528,7 +537,7 @@ DocType: Event,Event Category,Kategorija događaja apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Stupci na temelju apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Uredi naslov DocType: Communication,Received,primljen -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Nije vam dopušten pristup ovoj stranici. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Nije vam dopušten pristup ovoj stranici. DocType: User Social Login,User Social Login,Korisnička društvena prijava apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,Napišite datoteku Python u istu mapu u kojoj je spremljena i vratite stupac i rezultat. DocType: Contact,Purchase Manager,Upravitelj kupnje @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konf apps/frappe/frappe/utils/data.py,Operator must be one of {0},Operator mora biti jedan od {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Ako je vlasnik DocType: Data Migration Run,Trigger Name,Naziv okidača -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Pišite naslove i uvod na svoj blog. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Ukloni polje apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Sažmi sve apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Boja pozadine @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,Bar DocType: SMS Settings,Enter url parameter for message,Unesite parametar URL-a za poruku apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Novi prilagođeni format ispisa apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} već postoji +DocType: Workflow Document State,Is Optional State,Opcija je država DocType: Address,Purchase User,Kupite korisnika DocType: Data Migration Run,Insert,Umetnuti DocType: Web Form,Route to Success Link,Put do veze Uspjeh @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Korisni DocType: File,Is Home Folder,Početna je mapa apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Tip: DocType: Post,Is Pinned,Prikačena je -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Nema dozvole za "{0}" {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Nema dozvole za "{0}" {1} DocType: Patch Log,Patch Log,Zapisnik zakrpe DocType: Print Format,Print Format Builder,Graditelj ispisa 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 se korisnici mogu prijaviti s bilo koje IP adrese pomoću značajke Autof. To se također može postaviti samo za određene korisnike u Korisničkoj stranici" apps/frappe/frappe/utils/data.py,only.,samo. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,Uvjet "{0}" nije važeći DocType: Auto Email Report,Day of Week,Dan u tjednu +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Omogućite Google API u Google postavkama. DocType: DocField,Text Editor,Uređivač teksta apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Izrezati apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Pretražite ili upišite naredbu @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,Broj sigurnosnih kopija DB-a ne može biti manji od 1 DocType: Workflow State,ban-circle,zabrana-krug DocType: Data Export,Excel,nadmašiti +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Zaglavlje, krušne mrvice i meta oznake" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Adresa e-pošte za podršku nije navedena DocType: Comment,Published,Objavljeno DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","Napomena: da biste postigli najbolje rezultate, slike moraju biti iste veličine i širine veće od visine." @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Zadnji događaj planera apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Izvješće o svim dionicama dokumenta DocType: Website Sidebar Item,Website Sidebar Item,Bočna traka web-lokacije apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Napraviti +DocType: Google Settings,Google Settings,Google postavke apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Odaberite svoju zemlju, vremensku zonu i valutu" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Ovdje unesite statične URL parametre (npr. Sender = ERPNext, username = ERPNext, password = 1234 itd.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Nema računa e-pošte @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,Oznaka OAuth nositelja ,Setup Wizard,Čarobnjak za instaliranje apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Prebaci grafikon +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,Sinkronizacija DocType: Data Migration Run,Current Mapping Action,Trenutna radnja mapiranja DocType: Email Account,Initial Sync Count,Broj početne sinkronizacije apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Postavke za stranicu Kontakt. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Vrsta formata ispisa apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Nema dozvola za ovaj kriterij. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Proširi sve +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nije pronađen zadani predložak adrese. Izradite novi u izborniku Postavke> Ispis i označavanje> Predložak adrese. DocType: Tag Doc Category,Tag Doc Category,Označite kategoriju dokumenta DocType: Data Import,Generated File,Generirana datoteka apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Bilješke @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Polje za vremensku traku mora biti veza ili dinamička veza DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Obavijesti i skupne poruke bit će poslane s ovog odlaznog poslužitelja. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Ovo je top-100 zajednička lozinka. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Želite li trajno poslati {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Želite li trajno poslati {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} ne postoji, odaberite novi cilj za spajanje" DocType: Energy Point Rule,Multiplier Field,Množiteljsko polje DocType: Workflow,Workflow State Field,Polje stanja tijeka rada @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} je cijenio vaš rad na {1} s {2} bodovima DocType: Auto Email Report,Zero means send records updated at anytime,Nula znači slanje zapisa ažuriranih u bilo koje vrijeme apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Vrijednost nije moguće promijeniti za {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Postavke Google API-ja. DocType: System Settings,Force User to Reset Password,Prisiliti korisnika na ponovno postavljanje lozinke apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Izvješćima o izradi izvješća upravlja izravno izrađivač izvješća. Ništa za raditi. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Uredi filtar @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,za DocType: S3 Backup Settings,eu-north-1,eu-sjever-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: dopušteno je samo jedno pravilo s istom ulogom, razinom i {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Nije vam dopušteno ažuriranje ovog dokumenta web-obrasca -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Dostignuto je maksimalno ograničenje privitka za ovaj zapis. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Dostignuto je maksimalno ograničenje privitka za ovaj zapis. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,Provjerite nisu li dokumenti za referentnu komunikaciju kružno povezani. DocType: DocField,Allow in Quick Entry,Dopusti u brzom unosu DocType: Error Snapshot,Locals,mještani @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Vrsta iznimke apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},Nije moguće izbrisati ili otkazati jer je {0} {1} povezan s {2} {3} {4} apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTP tajnu može poništiti samo administrator. -DocType: Web Form Field,Page Break,Prijelom stranice DocType: Website Script,Website Script,Website Script DocType: Integration Request,Subscription Notification,Obavijest o pretplati DocType: DocType,Quick Entry,Brzi unos @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,Postavite svojstvo nakon upozoren apps/frappe/frappe/__init__.py,Thank you,Hvala vam apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Zanemarivanje Webhooka za unutarnju integraciju apps/frappe/frappe/config/settings.py,Import Data,Uvoz podataka +DocType: Translation,Contributed Translation Doctype Name,Doprinos prevođenja Doctype DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,iskaznica DocType: Review Level,Review Level,Razina pregleda @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Uspješno obavljeno apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Popis apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Cijeniti -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Novo {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Je primarni kontakt DocType: Print Format,Raw Commands,Neobrađene naredbe apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Stilske listove za formate ispisa @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Pogreške u događ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Pronađite {0} u {1} DocType: Email Account,Use SSL,Koristi SSL DocType: DocField,In Standard Filter,U standardnom filtru +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Nema sinkroniziranih Google kontakata. DocType: Data Migration Run,Total Pages,Ukupno stranica apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: Polje '{1}' ne može se postaviti kao jedinstveno jer ima ne-jedinstvene vrijednosti 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 prijave. Ako nije omogućeno, korisnici će biti obaviješteni samo jednom." @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,Automatizacija apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Unzipping datoteka ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Traži "{0}" apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Nešto je pošlo po zlu -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Molimo spremite prije priključivanja. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,Molimo spremite prije priključivanja. DocType: Version,Table HTML,HTML tablice apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,središte DocType: Page,Standard,Standard @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Nema rezult apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,Broj izbrisanih zapisa: {0} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,Nešto je pošlo po krivu tijekom generiranja tokena za pristup spremniku. Za više pojedinosti provjerite zapisnik pogreške. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Potomci -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nije pronađen zadani predložak adrese. Izradite novi u izborniku Postavke> Ispis i označavanje> Predložak adrese. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google kontakti su konfigurirani. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Sakri detalje apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Stilovi fontova apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Vaša će pretplata isteći {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Provjera autentičnosti nije uspjela tijekom primanja e-pošte s računa e-pošte {0}. Poruka s poslužitelja: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Statistike temeljene na uspješnosti prošlog tjedna (od {0} do {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,Automatsko povezivanje može se aktivirati samo ako je omogućeno Dolazno. DocType: Website Settings,Title Prefix,Prefiks naslova apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Aplikacije za provjeru autentičnosti koje možete koristiti su: DocType: Bulk Update,Max 500 records at a time,Maksimalno 500 zapisa odjednom @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,Filtri izvješća apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Odaberite Stupci DocType: Event,Participants,sudionici DocType: Auto Repeat,Amended From,Izmijenjen od -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Vaši su podaci poslani +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Vaši su podaci poslani DocType: Help Category,Help Category,Kategorija pomoći apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 mjesec apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Odaberite postojeći format za uređivanje ili pokretanje novog formata. @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Polje za praćenje DocType: User,Generate Keys,Generiraj ključeve DocType: Comment,Unshared,nedjeljiv -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Spremljeno +DocType: Translation,Saved,Spremljeno DocType: OAuth Client,OAuth Client,OAuth klijent DocType: System Settings,Disable Standard Email Footer,Onemogući podnožje standardne e-pošte apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Print Format {0} je onemogućen @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Posljednje a DocType: Data Import,Action,Radnja apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Potreban je ključ klijenta DocType: Chat Profile,Notifications,Obavijesti +DocType: Translation,Contributed,pridonijela DocType: System Settings,mm/dd/yyyy,dd / mm / gggg DocType: Report,Custom Report,Prilagođeno izvješće DocType: Workflow State,info-sign,info-znak @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Kontakt DocType: LDAP Settings,LDAP Username Field,Polje LDAP korisničkog imena apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",Polje {0} ne može se postaviti kao jedinstveno u {1} jer postoje postojeće vrijednosti koje nisu jedinstvene +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Podešavanje> Prilagodi obrazac DocType: User,Social Logins,Društveni prijavi DocType: Workflow State,Trash,Smeće DocType: Stripe Settings,Secret Key,Tajni ključ @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,Polje s naslovom apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Povezivanje s poslužiteljem odlazne e-pošte nije uspjelo DocType: File,File URL,URL datoteke DocType: Help Article,Likes,Voli +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Integracija Google kontakata onemogućena je. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Morate biti prijavljeni i imati ulogu u Upravitelju sustava da biste mogli pristupiti sigurnosnim kopijama. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Prva razina DocType: Blogger,Short Name,Kratko ime @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Uvoz Zip DocType: Contact,Gender,rod DocType: Workflow State,thumbs-down,palac dolje -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Red treba biti jedan od {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Nije moguće postaviti obavijest na vrstu dokumenta {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Dodavanje upravitelja sustava ovom korisniku jer mora postojati najmanje jedan upravitelj sustava apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Poslana je e-pošta dobrodošlice DocType: Transaction Log,Chaining Hash,Chaining Hash DocType: Contact,Maintenance Manager,Upravitelj održavanja +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Za usporedbu koristite> 5, <10 ili = 324. Za raspone, upotrijebite 5:10 (za vrijednosti između 5 i 10)." apps/frappe/frappe/utils/bot.py,show,pokazati apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URL za dijeljenje apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Nepodržani format datoteke @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,Obavijest DocType: Data Import,Show only errors,Prikaži samo pogreške DocType: Energy Point Log,Review,Pregled apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Redovi su uklonjeni -DocType: GSuite Settings,Google Credentials,Google vjerodajnice +DocType: Google Settings,Google Credentials,Google vjerodajnice apps/frappe/frappe/www/login.html,Or login with,Ili se prijavite s apps/frappe/frappe/model/document.py,Record does not exist,Zapis ne postoji apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Naziv novog izvješća @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,Popis DocType: Workflow State,th-large,TH-velika apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Nije moguće postaviti Dodijeli slanje ako nije dostupno apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Nije povezan ni s jednim zapisom +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Pogreška pri povezivanju s aplikacijom QZ ladice ...

Da biste koristili značajku Neobrađeni ispis, morate instalirati i pokrenuti program QZ Tray.

Kliknite ovdje da biste preuzeli i instalirali QZ ladicu .
Kliknite ovdje da biste saznali više o Neobrađenom ispisu ." DocType: Chat Message,Content,Sadržaj DocType: Workflow Transition,Allow Self Approval,Dopusti samopotvrđivanje apps/frappe/frappe/www/qrcode.py,Page has expired!,Stranica je istekla! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,ručno pravo DocType: Website Settings,Banner is above the Top Menu Bar.,Banner se nalazi iznad gornje trake izbornika. apps/frappe/frappe/www/update-password.html,Invalid Password,Netočna zaporka apps/frappe/frappe/utils/data.py,1 month ago,prije 1 mjesec +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Dopusti Google Kontakti za pristup DocType: OAuth Client,App Client ID,ID klijenta aplikacije DocType: DocField,Currency,Valuta DocType: Website Settings,Banner,zastava @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Cilj DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Ako uloga nema pristup na razini 0, tada više razine nemaju smisla." DocType: ToDo,Reference Type,Referentni tip -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Dopuštanje DocType, DocType. Budi oprezan!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Dopuštanje DocType, DocType. Budi oprezan!" DocType: Domain Settings,Domain Settings,Postavke domene DocType: Auto Email Report,Dynamic Report Filters,Dinamički filtri izvješća DocType: Energy Point Log,Appreciation,Zahvalnost @@ -1466,6 +1487,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,nas-zapad-2 DocType: DocType,Is Single,Je slobodan apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Izradite novi format +DocType: Google Contacts,Authorize Google Contacts Access,Autorizirajte Google Kontakti za pristup DocType: S3 Backup Settings,Endpoint URL,URL krajnje točke DocType: Social Login Key,Google,Google DocType: Contact,Department,odjel @@ -1480,7 +1502,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Dodijeli DocType: List Filter,List Filter,Popis filtara DocType: Dashboard Chart Link,Chart,Grafikon apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Nije moguće ukloniti -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Pošaljite ovaj dokument radi potvrde +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Pošaljite ovaj dokument radi potvrde apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} već postoji. Odaberite drugo ime apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,U ovom obrascu imate nespremljene promjene. Spremite prije nastavka. apps/frappe/frappe/model/document.py,Action Failed,Radnja nije uspjela @@ -1562,6 +1584,7 @@ DocType: DocField,Display,Prikaz apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Odgovori svima DocType: Calendar View,Subject Field,Polje predmeta apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Istek sesije mora biti u formatu {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},Primjena: {0} DocType: Workflow State,zoom-in,zoom-u apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Nije uspjelo povezivanje s poslužiteljem apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Datum {0} mora biti u formatu: {1} @@ -1573,8 +1596,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Ikona će se pojaviti na gumbu DocType: Role Permission for Page and Report,Set Role For,Postavite ulogu za +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Automatsko povezivanje može se aktivirati samo za jedan račun e-pošte. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Nema dodijeljenih računa e-pošte +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Račun e-pošte nije postavljen. Kreirajte novi račun e-pošte iz Podešavanje> E-pošta> Račun e-pošte apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Zadatak +DocType: Google Contacts,Last Sync On,Zadnja sinkronizacija uključena apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},stekao je {0} automatskim pravilom {1} apps/frappe/frappe/config/website.py,Portal,Portal apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Zahvaljujemo na poruci e-pošte @@ -1595,7 +1621,6 @@ DocType: GSuite Settings,GSuite Settings,Postavke za GSuite DocType: Integration Request,Remote,Daljinski DocType: File,Thumbnail URL,URL minijature apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Preuzmi izvješće -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Postavke> Korisnik apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Prilagodbe za {0} izvezene u:
{1} DocType: GCalendar Account,Calendar Name,Naziv kalendara apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Vaš ID za prijavu je @@ -1645,6 +1670,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Idite apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Polje Slika mora biti važeće ime polja apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,Morate biti prijavljeni kako biste pristupili ovoj stranici DocType: Assignment Rule,Example: {{ subject }},Primjer: {{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Naziv polja {0} je ograničen apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Ne možete isključiti "Samo za čitanje" za polje {0} DocType: Social Login Key,Enable Social Login,Omogući prijavu za društvene mreže DocType: Workflow,Rules defining transition of state in the workflow.,Pravila koja definiraju prijelaz stanja u tijek rada. @@ -1665,10 +1691,10 @@ DocType: Website Settings,Route Redirects,Preusmjeravanja rute apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Primljena pošta e-pošte apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},vraćeno je {0} kao {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Automatski dodijelite dokumente korisnicima +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Otvorite Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Predlošci e-pošte za uobičajene upite. DocType: Letter Head,Letter Head Based On,Na temelju pisma apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Zatvorite ovaj prozor -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Plaćanje je dovršeno DocType: Contact,Designation,Oznaka DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Meta oznake @@ -1707,6 +1733,7 @@ DocType: System Settings,Choose authentication method to be used by all users,Od DocType: Error Snapshot,Parent Error Snapshot,Snimak roditeljske pogreške DocType: GCalendar Account,GCalendar Account,GCalendar račun DocType: Language,Language Name,Naziv jezika +DocType: Workflow Document State,Workflow Action is not created for optional states,Akcija tijeka rada nije izrađena za izborna stanja DocType: Customize Form,Customize Form,Prilagodi obrazac DocType: DocType,Image Field,Polje slike apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Dodano {0} ({1}) @@ -1748,6 +1775,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,Primijenite ovo pravilo ako je korisnik vlasnik DocType: About Us Settings,Org History Heading,Povijest Org povijesti apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,pogreška servera +DocType: Contact,Google Contacts Description,Opis Google kontakata apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Standardne uloge nije moguće preimenovati DocType: Review Level,Review Points,Točke pregleda apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Nedostaje parametar Kanban Board Name @@ -1765,7 +1793,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Nije u načinu za razvojne programere! Postavite u site_config.json ili napravite 'Custom' DocType. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,stekao {0} bodova DocType: Web Form,Success Message,Poruka o uspjehu -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Za usporedbu koristite> 5, <10 ili = 324. Za raspone, upotrijebite 5:10 (za vrijednosti između 5 i 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Opis stranice za unos, u običnom tekstu, samo nekoliko redaka. (najviše 140 znakova)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Prikaži dozvole DocType: DocType,Restrict To Domain,Ograničite na domenu @@ -1787,6 +1814,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Ne pre apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Postavite količinu DocType: Auto Repeat,End Date,Datum završetka DocType: Workflow Transition,Next State,Sljedeća država +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Google kontakti su sinkronizirani. DocType: System Settings,Is First Startup,Prvi je početak apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},ažurirano na {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Premjesti u @@ -1836,6 +1864,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Kalendar apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Predložak za uvoz podataka DocType: Workflow State,hand-left,rukom lijevo +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Odaberite više stavki popisa apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Veličina sigurnosne kopije: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Povezano s {0} DocType: Braintree Settings,Private Key,Privatni ključ @@ -1878,13 +1907,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Interes DocType: Bulk Update,Limit,Ograničiti DocType: Print Settings,Print taxes with zero amount,Ispis poreza s nultim iznosom -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Račun e-pošte nije postavljen. Kreirajte novi račun e-pošte iz Podešavanje> E-pošta> Račun e-pošte DocType: Workflow State,Book,Knjiga DocType: S3 Backup Settings,Access Key ID,Pristup ID-u ključa DocType: Chat Message,URLs,URL-ovi apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Imena i prezimena sami su lako pogoditi. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Prijavi {0} DocType: About Us Settings,Team Members Heading,Redovi članova tima +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Odaberite stavku popisa apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Dokument {0} je postavljen na stanje {1} do {2} DocType: Address Template,Address Template,Predložak adrese DocType: Workflow State,step-backward,korak unatrag @@ -1908,6 +1937,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Izvoz prilagođenih dozvola apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Ništa: Kraj radnog tijeka DocType: Version,Version,Verzija +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Otvorite stavku popisa apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 mjeseci DocType: Chat Message,Group,Skupina apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Postoji neki problem s URL-om datoteke: {0} @@ -1963,6 +1993,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 godina apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} je poništio vaše točke na {1} DocType: Workflow State,arrow-down,strelica prema dolje DocType: Data Import,Ignore encoding errors,Zanemari pogreške kodiranja +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,pejzaž DocType: Letter Head,Letter Head Name,Naziv pisma DocType: Web Form,Client Script,Skripta klijenta DocType: Assignment Rule,Higher priority rule will be applied first,Prvo će se primijeniti pravilo višeg prioriteta @@ -2007,6 +2038,7 @@ DocType: Kanban Board Column,Green,zelena apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Za nove zapise potrebna su samo obvezna polja. Ako želite, možete izbrisati neobvezne stupce." apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} mora započeti i završiti slovom i može sadržavati samo slova, crticu ili donju crtu." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Pokrenite Primarnu radnju apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Izradite e-poštu korisnika apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Polje za sortiranje {0} mora biti važeće ime polja DocType: Auto Email Report,Filter Meta,Filtrirajte Meta @@ -2036,6 +2068,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Timeline Field apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Učitavam... DocType: Auto Email Report,Half Yearly,Pola godine +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Moj profil apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Datum zadnje izmjene DocType: Contact,First Name,Ime DocType: Post,Comments,komentari @@ -2058,6 +2091,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Hash sadržaja apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Postovi: {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} dodijeljeno {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Nema sinkroniziranih novih Google kontakata. DocType: Workflow State,globe,Globus apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Prosjek od {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Obriši zapise o pogreškama @@ -2084,6 +2118,8 @@ DocType: Workflow State,Inverse,Inverzan DocType: Activity Log,Closed,Zatvoreno DocType: Report,Query,pitanje DocType: Notification,Days After,Dani poslije +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Prečaci stranice +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portret apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Zahtjev je istekao DocType: System Settings,Email Footer Address,Adresa podnožja e-pošte apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Ažuriranje energetske točke @@ -2111,6 +2147,7 @@ For Select, enter list of Options, each on a new line.","Za veze unesite DocType apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,Prije 1 minutu apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Nema aktivnih sesija apps/frappe/frappe/model/base_document.py,Row,Red +DocType: Contact,Middle Name,Srednje ime apps/frappe/frappe/public/js/frappe/request.js,Please try again,Molim te pokušaj ponovno DocType: Dashboard Chart,Chart Options,Opcije karte DocType: Data Migration Run,Push Failed,Push Failed @@ -2139,6 +2176,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,veličinu-mala DocType: Comment,Relinked,ponovo povezani DocType: Role Permission for Page and Report,Roles HTML,Uloga HTML-a +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Ići apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Tijek rada pokrenut će se nakon spremanja. 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-u, kopirajte točni HTML kôd s oznakama." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Datumi su često lako pogoditi. @@ -2167,7 +2205,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Ikona radne površine apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,otkazao je ovaj dokument apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Raspon datuma -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Postavke> Korisničke dozvole apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} cijeni {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Promijenjene vrijednosti apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Pogreška u obavijesti @@ -2232,6 +2269,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Skupno brisanje DocType: DocShare,Document Name,Naziv dokumenta apps/frappe/frappe/config/customization.py,Add your own translations,Dodajte vlastite prijevode +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Navigirajte popis dolje DocType: S3 Backup Settings,eu-central-1,eu-središnje-1 DocType: Auto Repeat,Yearly,Godišnje apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Preimenovati @@ -2282,6 +2320,7 @@ DocType: Workflow State,plane,avion apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Ugniježena postavljena pogreška. Obratite se administratoru. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Prikaži izvješće DocType: Auto Repeat,Auto Repeat Schedule,Raspored automatskog ponavljanja +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Pogled Ref DocType: Address,Office,Ured DocType: LDAP Settings,StartTLS,STARTTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,Prije {0} dana @@ -2315,7 +2354,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Po apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Moje postavke apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Naziv grupe ne može biti prazan. DocType: Workflow State,road,cesta -DocType: Website Route Redirect,Source,Izvor +DocType: Contact,Source,Izvor apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Aktivne sesije apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Može biti samo jedan Fold u obliku apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Novi chat @@ -2337,6 +2376,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Unesite URL za autorizaciju DocType: Email Account,Send Notification to,Pošalji obavijest apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Postavke sigurnosne kopije spremnika +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,Nešto je krenulo naopako tijekom generiranja simbola. Kliknite na {0} da biste generirali novu. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Ukloniti sve prilagodbe? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Samo administrator može uređivati DocType: Auto Repeat,Reference Document,Referentni dokument @@ -2361,6 +2401,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Uloge se mogu postaviti za korisnike s njihove korisničke stranice. DocType: Website Settings,Include Search in Top Bar,Uključi pretraživanje u gornjoj traci apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Hitno] Pogreška prilikom stvaranja ponavljajućeg% s za% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globalni prečaci DocType: Help Article,Author,Autor DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Nije pronađen nijedan dokument za navedene filtre @@ -2396,10 +2437,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, Red {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Ako prenosite nove zapise, "Naming Series" postaje obavezan, ako postoji." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Uredi svojstva -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Nije moguće otvoriti instancu kada je otvorena njegova {0} +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,Nije moguće otvoriti instancu kada je otvorena njegova {0} DocType: Activity Log,Timeline Name,Naziv vremenske linije DocType: Comment,Workflow,Tijek rada apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Postavite osnovni URL u ključ za društvenu prijavu za Frappe +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Tipkovni prečaci DocType: Portal Settings,Custom Menu Items,Prilagođene stavke izbornika apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,Duljina od {0} treba biti između 1 i 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Izgubljena veza. Neke značajke možda neće raditi. @@ -2462,6 +2504,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Dodano je r DocType: DocType,Setup,Postaviti apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} je uspješno izrađeno apps/frappe/frappe/www/update-password.html,New Password,Nova lozinka +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Odaberite Polje apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Ostavite ovaj razgovor DocType: About Us Settings,Team Members,Članovi tima DocType: Blog Settings,Writers Introduction,Uvod u pisce @@ -2531,13 +2574,12 @@ DocType: Chat Room,Name,Ime DocType: Communication,Email Template,Predložak e-pošte DocType: Energy Point Settings,Review Levels,Razine pregleda DocType: Print Format,Raw Printing,Sirovi ispis -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Nije moguće otvoriti {0} kada je otvorena njegova instanca +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,Nije moguće otvoriti {0} kada je otvorena njegova instanca DocType: DocType,"Make ""name"" searchable in Global Search",U "Globalno pretraživanje" možete pretraživati "ime" DocType: Data Migration Mapping,Data Migration Mapping,Mapiranje migracije podataka DocType: Data Import,Partially Successful,Djelomično uspješno DocType: Communication,Error,greška apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Vrsta polja ne može se promijeniti iz {0} u {1} u retku {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Pogreška pri povezivanju s aplikacijom QZ ladice ...

Da biste koristili značajku Neobrađeni ispis, morate instalirati i pokrenuti program QZ Tray.

Kliknite ovdje da biste preuzeli i instalirali QZ ladicu .
Kliknite ovdje da biste saznali više o Neobrađenom ispisu ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Uslikaj apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,Izbjegavajte godine koje su povezane s vama. DocType: Web Form,Allow Incomplete Forms,Dopusti nepotpune obrasce @@ -2633,7 +2675,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Odaberite target = "_blank" da biste otvorili novu stranicu. DocType: Portal Settings,Portal Menu,Izbornik portala DocType: Website Settings,Landing Page,Odredišna stranica -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,Prijavite se ili se prijavite da biste započeli DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opcije kontakta, kao što su "Prodajni upit, upit za podršku" itd. Svaka na novom retku ili odvojene zarezima." apps/frappe/frappe/twofactor.py,Verfication Code,Kôd za provjeru apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} je već otkazano pretplatu @@ -2719,6 +2760,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Mapiranje plana DocType: Address,Sales User,Korisnik prodaje apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Promijeni svojstva polja (sakrij, samo za čitanje, dozvolu itd.)" DocType: Property Setter,Field Name,Naziv polja +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,kupac DocType: Print Settings,Font Size,Veličina fonta DocType: User,Last Password Reset Date,Datum zadnjeg resetiranja zaporke DocType: System Settings,Date and Number Format,Format datuma i broja @@ -2784,6 +2826,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Grupni čvor apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Spoji se s postojećim DocType: Blog Post,Blog Intro,Uvod u blog apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nova spomena +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Skoči na polje DocType: Prepared Report,Report Name,Naziv izvješća apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Osvježite da biste dobili najnoviji dokument. apps/frappe/frappe/core/doctype/communication/communication.js,Close,Zatvoriti @@ -2793,10 +2836,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Događaj DocType: Social Login Key,Access Token URL,Pristupite token URL-u apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Postavite tipke za pristup Dropboxu u konfiguraciju web-lokacije +DocType: Google Contacts,Google Contacts,Google kontakti DocType: User,Reset Password Key,Vrati ključ za lozinku apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Izmijenjeno DocType: User,Bio,Biografija apps/frappe/frappe/limits.py,"To renew, {0}.","Za obnovu, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Uspješno spremljeno +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Pošaljite poruku e-pošte na {0} da biste je povezali ovdje. DocType: File,Folder,mapa DocType: DocField,Perm Level,Permska razina DocType: Print Settings,Page Settings,Postavke stranice @@ -2826,6 +2872,7 @@ DocType: Workflow State,remove-sign,remove-znak DocType: Dashboard Chart,Full,puni DocType: DocType,User Cannot Create,Korisnik ne može izraditi apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Dobili ste {0} točku +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Postavke> Korisnik DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Ako postavite ovo, ova će stavka doći na padajući izbornik pod odabranim nadređenim." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Nema e-pošte apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Nedostaju sljedeća polja: @@ -2839,13 +2886,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Pri DocType: Web Form,Web Form Fields,Polja web-obrasca DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Obrazac za uređivanje korisnika na web-lokaciji. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Trajno Odustani {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Trajno Odustani {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Opcija 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,Ukupan rezultat apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Ovo je vrlo uobičajena lozinka. DocType: Personal Data Deletion Request,Pending Approval,Čeka se odobrenje apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Dokument nije mogao biti pravilno dodijeljen apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Nije dopušteno za {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Nema vrijednosti za prikazivanje DocType: Personal Data Download Request,Personal Data Download Request,Zahtjev za preuzimanje osobnih podataka apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} je podijelio ovaj dokument s {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Odaberite {0} @@ -2861,7 +2909,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Ova je poruka e-pošte poslana na {0} i kopirana u {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,Nevažeća prijava ili zaporka DocType: Social Login Key,Social Login Key,Ključ za prijavu na društvenu mrežu -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Postavite zadani račun e-pošte iz Postavke> E-pošta> Račun e-pošte apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filtri su spremljeni DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Kako bi se ta valuta trebala formatirati? Ako nije postavljeno, koristit će zadane postavke sustava" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} je postavljen na stanje {2} @@ -2987,6 +3034,7 @@ DocType: User,Location,Mjesto apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Nema podataka DocType: Website Meta Tag,Website Meta Tag,Web Meta Tag DocType: Workflow State,film,film +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Kopirano u međuspremnik. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Postavke nisu pronađene apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Oznaka je obavezna DocType: Webhook,Webhook Headers,Zaglavlja Webhooka @@ -3195,7 +3243,7 @@ DocType: Address,Address Line 1,Redak adrese 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Za vrstu dokumenta apps/frappe/frappe/model/base_document.py,Data missing in table,U tablici nedostaju podaci apps/frappe/frappe/utils/bot.py,Could not identify {0},Nije moguće prepoznati {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Ovaj je obrazac izmijenjen nakon što ste ga učitali +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Ovaj je obrazac izmijenjen nakon što ste ga učitali apps/frappe/frappe/www/login.html,Back to Login,Natrag na prijavu apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Nespreman DocType: Data Migration Mapping,Pull,Vuci @@ -3263,6 +3311,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Mapiranje dječjih ta apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Podešavanje računa e-pošte unesite zaporku za: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Previše piše u jednom zahtjevu. Pošaljite manje zahtjeve DocType: Social Login Key,Salesforce,Salesforce +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Uvoz {0} od {1} DocType: User,Tile,Pločica apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,Soba {0} mora imati najviše jednog korisnika. DocType: Email Rule,Is Spam,Je li spam @@ -3300,7 +3349,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,Mapa-blizu DocType: Data Migration Run,Pull Update,Povucite ažuriranje apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},spojeno {0} u {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Nisu pronađeni rezultati za "

DocType: SMS Settings,Enter url parameter for receiver nos,Unesite parametar url za prijemnike br apps/frappe/frappe/utils/jinja.py,Syntax error in template,Pogreška sintakse u predlošku apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Postavite vrijednost filtara u tablici filtra izvješća. @@ -3313,6 +3361,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Nažalost, DocType: System Settings,In Days,U danima DocType: Report,Add Total Row,Dodaj ukupni redak apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Početak sesije nije uspio +DocType: Translation,Verified,ovjeren DocType: Print Format,Custom HTML Help,Prilagođena HTML pomoć DocType: Address,Preferred Billing Address,Željena adresa za naplatu apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Dodijeljena @@ -3327,7 +3376,6 @@ DocType: Help Article,Intermediate,srednji DocType: Module Def,Module Name,Naziv modula DocType: OAuth Authorization Code,Expiration time,Vrijeme isteka apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Postavite zadani format, veličinu stranice, stil ispisa itd." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,Ne možete voljeti nešto što ste stvorili DocType: System Settings,Session Expiry,Istek sesije DocType: DocType,Auto Name,Automatsko ime apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Odaberite Prilozi @@ -3354,6 +3402,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Stranica sustava DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Napomena: Po defaultu se šalju poruke e-pošte za neuspjele sigurnosne kopije. DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm +DocType: Translation,PR sent,PR poslan DocType: Tag Doc Category,Doctype to Assign Tags,Doctype za dodjelu oznaka DocType: Address,Warehouse,Skladište apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Postavljanje spremnika @@ -3421,7 +3470,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Enter za dodavanje komentara apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Polje {0} nije moguće odabrati. DocType: User,Birth Date,Datum rođenja -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,S grupom uvlačenja DocType: List View Setting,Disable Count,Onemogući brojanje DocType: Contact Us Settings,Email ID,ID e-pošte apps/frappe/frappe/utils/password.py,Incorrect User or Password,Netočan korisnik ili lozinka @@ -3456,6 +3504,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Ova uloga ažurira korisničke dozvole za korisnika DocType: Website Theme,Theme,Tema DocType: Web Form,Show Sidebar,Prikaži bočnu traku +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Integracija Google kontakata. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Zadana ulazna pošta apps/frappe/frappe/www/login.py,Invalid Login Token,Nevažeći token za prijavu apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Najprije postavite ime i spremite zapis. @@ -3483,7 +3532,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Ispravite DocType: Top Bar Item,Top Bar Item,Gornja stavka stavke ,Role Permissions Manager,Upravitelj dozvola uloga -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,Bilo je pogrešaka. Prijavite ovo. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} godina prije apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Žena DocType: System Settings,OTP Issuer Name,Ime izdavatelja OTP-a apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Dodaj u Zadaci @@ -3583,6 +3632,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Postav apps/frappe/frappe/model/document.py,none of,nijedan od DocType: Desktop Icon,Page,Stranica DocType: Workflow State,plus-sign,plus znak +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Izbriši predmemoriju i ponovno učitaj apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Ažuriranje nije moguće: Netočna / istekla veza. DocType: Kanban Board Column,Yellow,Žuta boja DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Broj stupaca za polje u mreži (ukupni stupci u mreži trebaju biti manji od 11) @@ -3597,6 +3647,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Novi DocType: Activity Log,Date,Datum DocType: Communication,Communication Type,Vrsta komunikacije apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Tablica roditelja +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Navigirajte popis gore DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Pokaži punu pogrešku i dopusti programeru izvješćivanje o problemima DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3618,7 +3669,6 @@ DocType: Notification Recipient,Email By Role,Uloga e-pošte apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,Nadogradite da biste dodali više od {0} pretplatnika apps/frappe/frappe/email/queue.py,This email was sent to {0},Ova poruka e-pošte poslana je na {0} DocType: User,Represents a User in the system.,Predstavlja korisnika u sustavu. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Stranica {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Započni novi format apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Dodaj komentar apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} od {1} diff --git a/frappe/translations/hu.csv b/frappe/translations/hu.csv index c9ba061eb6..c4c20fb634 100644 --- a/frappe/translations/hu.csv +++ b/frappe/translations/hu.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Színátmenetek engedélyezése DocType: DocType,Default Sort Order,Alapértelmezett rendezési sorrend apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Csak a Numerikus mezők megjelenítése a Jelentésből +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Az Alt gomb megnyomásával további menüket hozhat létre a Menü és az Oldalsávban DocType: Workflow State,folder-open,mappát nyitott DocType: Customize Form,Is Table,A táblázat apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Nem lehet megnyitni a csatolt fájlt. CSV-ként exportáltad? DocType: DocField,No Copy,Nincs másolat DocType: Custom Field,Default Value,Alapértelmezett érték apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,A hozzáadás kötelező a bejövő levelek esetében +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Névjegyek szinkronizálása DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Adatmigrációs leképezési részlet apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,unfollow apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.","A "nyers nyomtatás" segítségével végzett PDF nyomtatás még nem támogatott. Kérjük, távolítsa el a nyomtató leképezését a Nyomtatóbeállítások részben, és próbálja újra." @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} és {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Hiba történt a szűrők mentésekor apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Írd be a jelszavad apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Nem lehet törölni az otthoni és a mellékletmappákat +DocType: Email Account,Enable Automatic Linking in Documents,Automatikus összekapcsolás engedélyezése a dokumentumokban DocType: Contact Us Settings,Settings for Contact Us Page,Kapcsolatfelvétel beállításai DocType: Social Login Key,Social Login Provider,Social Login Provider +DocType: Email Account,"For more information, click here.","További információért kattintson ide ." DocType: Transaction Log,Previous Hash,Előző Hash DocType: Notification,Value Changed,Változott érték DocType: Report,Report Type,Jelentés típusa @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Energiapont szabály apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,"Kérjük, adja meg az ügyfélazonosítót, mielőtt engedélyezve van a társadalmi bejelentkezés" DocType: Communication,Has Attachment,Van csatolmány DocType: User,Email Signature,E-mail aláírás -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} évvel ezelőtt ,Addresses And Contacts,Címek és kapcsolatok apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Ez a Kanban igazgatóság privát lesz DocType: Data Migration Run,Current Mapping,Jelenlegi leképezés @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","A szinkronizálási opciót MINDEN választja, az összes olvasott és olvasatlan Ez a kommunikáció (e-mailek) \ t" apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Utolsó szinkronizálás: {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,A fejléc tartalma nem módosítható +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Nincs találat a következőre:

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,A benyújtás után nem engedélyezett a {0} módosítás apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Az alkalmazás frissítve lett egy új verzióra, kérjük, frissítse az oldalt" DocType: User,User Image,Felhasználói kép @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Jelö apps/frappe/frappe/public/js/frappe/chat.js,Discard,Dobja DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,A legjobb eredmény érdekében válasszon egy 150px szélességű képet átlátszó háttérrel. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,kiújult +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} értékek kiválasztva DocType: Blog Post,Email Sent,Email elküldve DocType: Communication,Read by Recipient On,Olvassa el a címzettet DocType: User,Allow user to login only after this hour (0-24),"Engedélyezze a felhasználónak, hogy csak ezen az óránál jelentkezzen be (0-24)" @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Exportálandó modul DocType: DocType,Fields,Fields -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Ez a dokumentum nem nyomtatható +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Ez a dokumentum nem nyomtatható apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Szülő apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","A munkamenet lejárt, kérjük, jelentkezzen be a folytatáshoz." DocType: Assignment Rule,Priority,Kiemelten fontos @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Állítsa vissza a DocType: DocType,UPPER CASE,NAGYBETŰS apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,"Kérjük, állítsa be az e-mail címet" DocType: Communication,Marked As Spam,Spamként jelölve +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"E-mail cím, amelynek Google-kapcsolatait szinkronizálni kell." apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Az előfizetők importálása apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Szűrő mentése DocType: Address,Preferred Shipping Address,Előnyben részesített szállítási cím DocType: GCalendar Account,The name that will appear in Google Calendar,A Google Naptárban megjelenő név +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Kattintson a {0} gombra a Frissítési token létrehozásához. DocType: Email Account,Disable SMTP server authentication,Az SMTP-kiszolgáló hitelesítésének letiltása DocType: Email Account,Total number of emails to sync in initial sync process ,A kezdeti szinkronizálás során szinkronizálandó e-mailek száma DocType: System Settings,Enable Password Policy,Jelszó-házirend engedélyezése @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Írd be a kódot apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Nem bent DocType: Auto Repeat,Start Date,Kezdő dátum apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Beállítási diagram +DocType: Website Theme,Theme JSON,Téma JSON apps/frappe/frappe/www/list.py,My Account,Én számlám DocType: DocType,Is Published Field,A közzétett mező DocType: DocField,Set non-standard precision for a Float or Currency field,Állítson be egy nem szabványos pontosságot egy úszó vagy pénznem mezőre @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Reference: {{ reference_doctype }} {{ reference_name }} hozzáadása Reference: {{ reference_doctype }} {{ reference_name }} a dokumentum hivatkozás küldéséhez DocType: LDAP Settings,LDAP First Name Field,LDAP névnév mező apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Alapértelmezett küldés és beérkezett üzenetek -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Beállítás> Űrlap testreszabása apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",A frissítéshez csak szelektív oszlopokat frissíthet. apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',A 'Check' mező típusának alapértelmezett értéke '0' vagy '1' apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Ossza meg ezt a dokumentumot @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Domainek HTML DocType: Blog Settings,Blog Settings,Blogbeállítások apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","A DocType nevének betűvel kell kezdődnie, és csak betűkből, számokból, szóközökből és aláhúzásokból állhat" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Beállítás> Felhasználói engedélyek DocType: Communication,Integrations can use this field to set email delivery status,Az integrációk felhasználhatják ezt a mezőt az e-mail kézbesítési állapot beállításához apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Csíkos fizetési átjáró beállítások DocType: Print Settings,Fonts,betűtípusok DocType: Notification,Channel,Csatorna DocType: Communication,Opened,Nyitott DocType: Workflow Transition,Conditions,Körülmények +apps/frappe/frappe/config/website.py,A user who posts blogs.,"Egy felhasználó, aki blogokat küld." apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Nincs fiókod? Regisztrálj apps/frappe/frappe/utils/file_manager.py,Added {0},Hozzáadott {0} DocType: Newsletter,Create and Send Newsletters,Hírlevelek létrehozása és küldése DocType: Website Settings,Footer Items,Lábléc elemek +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,"Kérjük, állítsa be az alapértelmezett e-mail fiókot a Beállítás> E-mail> E-mail fiók menüpontból" DocType: Website Slideshow Item,Website Slideshow Item,Webhely diavetítés elem apps/frappe/frappe/config/integrations.py,Register OAuth Client App,OAuth Client App regisztrálása DocType: Error Snapshot,Frames,keretek @@ -491,7 +501,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","A 0-as szint a dokumentumszintű jogosultságok, a magasabb szintű" DocType: Address,City/Town,Város város DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Ez visszaállítja az aktuális témát, biztosan folytatni szeretné?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},A {0} kötelezően kötelező mezők apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Hiba az e-mail fiókhoz történő kapcsolódás során {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Hiba történt az ismétlés létrehozása közben @@ -527,7 +536,7 @@ DocType: Event,Event Category,Esemény kategória apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Oszlopok alapján apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Fejléc szerkesztése DocType: Communication,Received,kapott -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Nem férhet hozzá az oldalhoz. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Nem férhet hozzá az oldalhoz. DocType: User Social Login,User Social Login,Felhasználói társadalmi bejelentkezés apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,"Írjon egy Python fájlt ugyanabba a mappába, ahol ezt mentette, és adja vissza az oszlopot és az eredményt." DocType: Contact,Purchase Manager,Beszerzési menedzser @@ -579,7 +588,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Diag apps/frappe/frappe/utils/data.py,Operator must be one of {0},Az üzemeltetőnek {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Ha a tulajdonos DocType: Data Migration Run,Trigger Name,Trigger név -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Írj címeket és bevezetőket a blogodba. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Távolítsa el a mezőt apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Mindet összecsuk apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Háttérszín @@ -629,6 +637,7 @@ DocType: Dashboard Chart,Bar,Bár DocType: SMS Settings,Enter url parameter for message,Adja meg az üzenet url paraméterét apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Új egyéni nyomtatási formátum apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} már létezik +DocType: Workflow Document State,Is Optional State,Választható állam DocType: Address,Purchase User,Vásárló felhasználó DocType: Data Migration Run,Insert,Insert DocType: Web Form,Route to Success Link,Útvonal a sikerhez @@ -636,13 +645,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,A {0} f DocType: File,Is Home Folder,Az otthoni mappa apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Típus: DocType: Post,Is Pinned,Be van rögzítve -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Nincs engedély a (z) '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Nincs engedély a (z) '{0}' {1} DocType: Patch Log,Patch Log,Patch napló DocType: Print Format,Print Format Builder,Nyomtatóformátum-készítő 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","Ha engedélyezve van, minden felhasználó beléphet bármely IP-címről a két tényező használatával. Ezt csak a Felhasználó oldal bizonyos felhasználóira lehet beállítani" apps/frappe/frappe/utils/data.py,only.,csak. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,A „{0}” feltétel érvénytelen DocType: Auto Email Report,Day of Week,A hét napja +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Engedélyezze a Google API-t a Google beállításaiban. DocType: DocField,Text Editor,Szöveg szerkesztő apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Vágott apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Keresés vagy parancs beírása @@ -650,6 +660,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,A DB mentések száma nem lehet kevesebb 1-nél DocType: Workflow State,ban-circle,ban-kör DocType: Data Export,Excel,Excel +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Fejléc, Breadcrumbs és meta címkék" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Támogatás Nincs megadva e-mail cím DocType: Comment,Published,Közzétett DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","Megjegyzés: A legjobb eredmény elérése érdekében a képeknek azonos méretűnek kell lenniük, és a szélességüknek nagyobbnak kell lennie." @@ -739,6 +750,7 @@ DocType: System Settings,Scheduler Last Event,Ütemező utolsó esemény apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Jelentés az összes dokumentumrészről DocType: Website Sidebar Item,Website Sidebar Item,Weboldal oldalsáv elem apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Csinálni +DocType: Google Settings,Google Settings,Google beállítások apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Válassza ki az országot, az időzónát és a pénznemet" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Itt adjon meg statikus url paramétereket (pl. Sender = ERPNext, felhasználónév = ERPNext, jelszó = 1234 stb.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Nincs e-mail fiók @@ -792,6 +804,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth hordozó token ,Setup Wizard,Beállítási varázslót apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Átváltási diagram +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,szinkronizálása DocType: Data Migration Run,Current Mapping Action,Jelenlegi leképezési művelet DocType: Email Account,Initial Sync Count,Kezdeti szinkronizálás apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Kapcsolatfelvétel beállításai. @@ -831,6 +844,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Nyomtatási formátum típus apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Ehhez a kritériumhoz nincs engedély. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Bontsa ki az Összes lehetőséget +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Alapértelmezett cím sablon nem található. Kérjük, hozzon létre egy újat a Beállítás> Nyomtatás és márkajelzés> Cím sablon menüpontban." DocType: Tag Doc Category,Tag Doc Category,Tag Doc kategória DocType: Data Import,Generated File,Generált fájl apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Megjegyzések @@ -838,7 +852,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Az idővonal mezőnek Link vagy Dynamic Linknek kell lennie DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Az értesítések és a tömeges üzenetek ebből a kimenő szerverből kerülnek elküldésre. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Ez egy 100 legjobb közös jelszó. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Állandóan küldjön {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Állandóan küldjön {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} nem létezik, válasszon ki egy új célt, amelyet egyesíteni kíván" DocType: Energy Point Rule,Multiplier Field,Szorzómező DocType: Workflow,Workflow State Field,Munkafolyamat-állapot mező @@ -878,6 +892,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} értékelte a {1} {2} pontokkal végzett munkáját DocType: Auto Email Report,Zero means send records updated at anytime,"A nulla azt jelenti, hogy bármikor frissíti a frissítéseket" apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Az érték nem változtatható meg {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API-beállítások. DocType: System Settings,Force User to Reset Password,A felhasználó kényszerítése a jelszó visszaállítására apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,A jelentéskészítő jelentéseket közvetlenül a jelentéskészítő kezeli. Nincs mit tenni. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Szűrő szerkesztése @@ -931,7 +946,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,a DocType: S3 Backup Settings,eu-north-1,eu-észak-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Csak egy szabály engedélyezett ugyanazon szerepkörrel, szinttel és {1} -vel" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Nem engedélyezheti a webes űrlap-dokumentum frissítését -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Ennek a rekordnak a maximális csatolási határértéke. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Ennek a rekordnak a maximális csatolási határértéke. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,"Kérjük, győződjön meg róla, hogy a Referencia Kommunikációs Dokumentumok nincsenek körkörös kapcsolattal." DocType: DocField,Allow in Quick Entry,Gyors bejegyzés engedélyezése DocType: Error Snapshot,Locals,A helyiek @@ -963,7 +978,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Kivétel típusa apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},"Nem lehet törölni vagy törölni, mert {0} {1} kapcsolódik a {2} {3} {4}" apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,Az OTP titkot csak az adminisztrátor állíthatja vissza. -DocType: Web Form Field,Page Break,Oldaltörés DocType: Website Script,Website Script,Webhely parancsfájl DocType: Integration Request,Subscription Notification,Előfizetési értesítés DocType: DocType,Quick Entry,Gyors bejegyzés @@ -980,6 +994,7 @@ DocType: Notification,Set Property After Alert,Állítsa be a tulajdonságot a r apps/frappe/frappe/__init__.py,Thank you,Köszönöm apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Nyissa meg a webhookokat a belső integrációhoz apps/frappe/frappe/config/settings.py,Import Data,Adatok importálása +DocType: Translation,Contributed Translation Doctype Name,Közreműködő fordítás Doctype neve DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID DocType: Review Level,Review Level,Felülvizsgálati szint @@ -998,7 +1013,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Sikeresen kész apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Lista apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Méltányol -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Új {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Elsődleges kapcsolat DocType: Print Format,Raw Commands,Nyers parancsok apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,A nyomtatási formátumok stíluslapjai @@ -1038,6 +1052,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Hiba a háttérese apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},{0} keresése {1} DocType: Email Account,Use SSL,SSL használata DocType: DocField,In Standard Filter,Standard szűrőben +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Nincsenek Google-kapcsolatok a szinkronizáláshoz. DocType: Data Migration Run,Total Pages,Összes oldal apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,"{0}: A „{1}” mező nem lehet egyedülálló, mivel nem egyedi értékekkel rendelkezik" DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Ha engedélyezve van, a felhasználók minden bejelentkezéskor értesítést kapnak. Ha nem engedélyezett, a felhasználók csak egyszer értesülnek." @@ -1058,7 +1073,7 @@ DocType: Assignment Rule,Automation,Automatizálás apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Fájlok eltávolítása ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Keresés a következőre: '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Valami elromlott -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,"Kérjük, mentés előtt rögzítse." +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,"Kérjük, mentés előtt rögzítse." DocType: Version,Table HTML,Táblázat HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,kerékagy DocType: Page,Standard,Alapértelmezett @@ -1136,12 +1151,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Nincs eredm apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} bejegyzések törölve apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,Valami baj történt a dropbox hozzáférési token létrehozása közben. További részletekért ellenőrizze a hibanaplót. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,A leszármazottai -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Alapértelmezett cím sablon nem található. Kérjük, hozzon létre egy újat a Beállítás> Nyomtatás és márkajelzés> Cím sablon menüpontban." +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,A Google Névjegyek konfigurálása megtörtént. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Rejtett részletek apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Betűtípusok apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Az előfizetés {0} -on lejár. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},A hitelesítés sikertelen volt az e-mail fiók {0} e-mailjeinek fogadása közben. Üzenet a szerverről: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Statisztika a múlt heti teljesítmény alapján ({0} - {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,"Az automatikus összekapcsolás csak akkor aktiválható, ha a Bejövő funkció engedélyezve van." DocType: Website Settings,Title Prefix,Cím előtag apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Az általunk használt hitelesítési alkalmazások: DocType: Bulk Update,Max 500 records at a time,Max. 500 rekord egyszerre @@ -1174,7 +1190,7 @@ DocType: Auto Email Report,Report Filters,Szűrők jelentése apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Válassza az Oszlopok lehetőséget DocType: Event,Participants,résztvevők DocType: Auto Repeat,Amended From,Módosítva: -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Az Ön adatai benyújtásra kerültek +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Az Ön adatai benyújtásra kerültek DocType: Help Category,Help Category,Súgó kategória apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 hónap apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Válasszon ki egy létező formátumot egy új formátum szerkesztéséhez vagy elindításához. @@ -1221,7 +1237,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,A mező nyomon követése DocType: User,Generate Keys,Kulcsok létrehozása DocType: Comment,Unshared,Meg nem osztott -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Mentett +DocType: Translation,Saved,Mentett DocType: OAuth Client,OAuth Client,OAuth ügyfél DocType: System Settings,Disable Standard Email Footer,A Standard Email lábléc letiltása apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,A nyomtatási formátum {0} le van tiltva @@ -1252,6 +1268,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Utoljára fri DocType: Data Import,Action,Akció apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Ügyfélkulcs szükséges DocType: Chat Profile,Notifications,értesítések +DocType: Translation,Contributed,Hozzájárult DocType: System Settings,mm/dd/yyyy,mm / dd / nn DocType: Report,Custom Report,Egyéni jelentés DocType: Workflow State,info-sign,info-jel @@ -1268,6 +1285,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Kapcsolatba lépni DocType: LDAP Settings,LDAP Username Field,LDAP felhasználónév mező apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","A {0} mezőt nem lehet egyedülállóvá tenni {1}, mivel léteznek nem egyedi értékek" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Beállítás> Űrlap testreszabása DocType: User,Social Logins,Közösségi bejelentkezések DocType: Workflow State,Trash,Szemét DocType: Stripe Settings,Secret Key,Titkos kulcs @@ -1325,6 +1343,7 @@ DocType: DocType,Title Field,Cím mező apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Nem sikerült csatlakozni a kimenő e-mail kiszolgálóhoz DocType: File,File URL,Fájl URL DocType: Help Article,Likes,Kedveltek +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google-kapcsolatok Az integráció le van tiltva. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,"Be kell jelentkeznie, és a Rendszerkezelői szerepkörrel rendelkeznie kell a biztonsági mentések eléréséhez." apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Első szint DocType: Blogger,Short Name,Rövid név @@ -1342,13 +1361,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Zip importálása DocType: Contact,Gender,nem DocType: Workflow State,thumbs-down,nem jó -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},A sornak {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Nem lehet beállítani a (z) {0} dokumentumtípusra vonatkozó értesítést apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Rendszerkezelő hozzáadása ehhez a felhasználóhoz, mivel legalább egy Rendszerkezelőnek kell lennie" apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Üdvözlő e-mail elküldött DocType: Transaction Log,Chaining Hash,Chash Hash DocType: Contact,Maintenance Manager,Karbantartás Menedzser +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Összehasonlítás céljából használja az> 5, <10 vagy = 324 értéket. A tartományoknál használja az 5:10 (az 5 és 10 közötti értékeknél)." apps/frappe/frappe/utils/bot.py,show,előadás apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URL megosztása apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Nem támogatott fájlformátum @@ -1370,7 +1389,7 @@ DocType: Communication,Notification,Bejelentés DocType: Data Import,Show only errors,Csak hibák megjelenítése DocType: Energy Point Log,Review,Felülvizsgálat apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Eltávolított sorok -DocType: GSuite Settings,Google Credentials,A Google hitelesítő adatai +DocType: Google Settings,Google Credentials,A Google hitelesítő adatai apps/frappe/frappe/www/login.html,Or login with,Vagy jelentkezzen be apps/frappe/frappe/model/document.py,Record does not exist,A rekord nem létezik apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Új jelentés neve @@ -1395,6 +1414,7 @@ DocType: Desktop Icon,List,Lista DocType: Workflow State,th-large,th-nagy apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,"{0}: Nem lehet beállítani a hozzárendelést, ha nem lehet beírható" apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Nem kapcsolódik semmilyen rekordhoz +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Hiba történt a QZ tálca alkalmazáshoz való csatlakozáskor ...

A Nyers nyomtatás funkció használatához QZ tálca alkalmazás telepítése és futtatása szükséges.

Kattintson ide a QZ tálca letöltéséhez és telepítéséhez .
Kattintson ide, ha többet szeretne megtudni a nyers nyomtatásról ." DocType: Chat Message,Content,Tartalom DocType: Workflow Transition,Allow Self Approval,Engedélyezze az Ön jóváhagyását apps/frappe/frappe/www/qrcode.py,Page has expired!,Az oldal lejárt! @@ -1411,6 +1431,7 @@ DocType: Workflow State,hand-right,kézzel jobbra DocType: Website Settings,Banner is above the Top Menu Bar.,A Banner a Top Menu Bar felett van. apps/frappe/frappe/www/update-password.html,Invalid Password,Érvénytelen jelszó apps/frappe/frappe/utils/data.py,1 month ago,1 hónapja +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Engedélyezze a Google-kapcsolatok elérését DocType: OAuth Client,App Client ID,App Client ID DocType: DocField,Currency,Valuta DocType: Website Settings,Banner,Transzparens @@ -1422,7 +1443,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Cél DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Ha egy szerepkör nem rendelkezik hozzáféréssel a 0-as szinten, akkor a magasabb szintek értelmetlenek." DocType: ToDo,Reference Type,Referencia típus -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","A DocType, a DocType engedélyezése. Légy óvatos!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","A DocType, a DocType engedélyezése. Légy óvatos!" DocType: Domain Settings,Domain Settings,Domain beállítások DocType: Auto Email Report,Dynamic Report Filters,Dinamikus jelentés szűrők DocType: Energy Point Log,Appreciation,Felértékelődés @@ -1462,6 +1483,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,us-nyugat-2 DocType: DocType,Is Single,Egyedülálló apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Új formátum létrehozása +DocType: Google Contacts,Authorize Google Contacts Access,Engedélyezze a Google-kapcsolatok elérését DocType: S3 Backup Settings,Endpoint URL,Végpont URL DocType: Social Login Key,Google,Google DocType: Contact,Department,Osztály @@ -1476,7 +1498,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Hozzárendelni DocType: List Filter,List Filter,Lista szűrő DocType: Dashboard Chart Link,Chart,Diagram apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Nem lehet eltávolítani -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Erősítse meg ezt a dokumentumot +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Erősítse meg ezt a dokumentumot apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} már létezik. Válasszon másik nevet apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,"Nincsenek mentett változások ebben a formában. Kérjük, mentse el, mielőtt folytatná." apps/frappe/frappe/model/document.py,Action Failed,A művelet nem sikerült @@ -1558,6 +1580,7 @@ DocType: DocField,Display,Kijelző apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Válasz mindenkinek DocType: Calendar View,Subject Field,Tárgy mező apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Az ülésszak lejáratának {0} formátumban kell lennie +apps/frappe/frappe/model/workflow.py,Applying: {0},Alkalmazás: {0} DocType: Workflow State,zoom-in,ráközelíteni apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Nem sikerült csatlakozni a szerverhez apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},A {0} dátumnak formátumban kell lennie: {1} @@ -1569,8 +1592,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Az ikon megjelenik a gombon DocType: Role Permission for Page and Report,Set Role For,Szerepkör beállítása +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Az automatikus összekapcsolás csak egy e-mail fiókra aktiválható. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Nincsenek e-mail fiókok hozzárendelve +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"E-mail fiók nincs beállítva. Kérjük, hozzon létre egy új e-mail fiókot a Beállítás> E-mail> E-mail fiók" apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Feladat +DocType: Google Contacts,Last Sync On,Utolsó szinkronizálás apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},{0} révén az {1} automatikus szabály apps/frappe/frappe/config/website.py,Portal,Portál apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Köszönöm az e-mailed @@ -1591,7 +1617,6 @@ DocType: GSuite Settings,GSuite Settings,GSuite beállítások DocType: Integration Request,Remote,Távoli DocType: File,Thumbnail URL,Bélyegkép URL apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Jelentés letöltése -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Beállítás> Felhasználó apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},A (z) {0} exportálása a következőre:
{1} DocType: GCalendar Account,Calendar Name,Naptár neve apps/frappe/frappe/templates/emails/new_user.html,Your login id is,A bejelentkezési azonosítója az @@ -1641,6 +1666,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Ugrá apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,A képmezőnek érvényes mezőnévnek kell lennie apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,Az oldal eléréséhez be kell jelentkeznie DocType: Assignment Rule,Example: {{ subject }},Példa: {{Subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,A {0} mezőnév korlátozott apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},A {0} mezőre nem lehet kikapcsolni a „Csak olvasható” beállítást DocType: Social Login Key,Enable Social Login,A társadalmi bejelentkezés engedélyezése DocType: Workflow,Rules defining transition of state in the workflow.,A munkafolyamatban az állam átmenetét meghatározó szabályok. @@ -1661,10 +1687,10 @@ DocType: Website Settings,Route Redirects,Útvonal átirányítások apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,E-mail postafiók apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},visszaállította a {0} nevet {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Dokumentumok automatikus hozzárendelése a felhasználókhoz +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Nyissa meg az Awesomebart apps/frappe/frappe/config/settings.py,Email Templates for common queries.,E-mail sablonok a gyakori lekérdezésekhez. DocType: Letter Head,Letter Head Based On,Letter Head alapján apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,"Kérjük, zárja be ezt az ablakot" -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Fizetés teljes DocType: Contact,Designation,Kijelölés DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Meta címkék @@ -1703,6 +1729,7 @@ DocType: System Settings,Choose authentication method to be used by all users,V DocType: Error Snapshot,Parent Error Snapshot,Szülő hiba pillanatkép DocType: GCalendar Account,GCalendar Account,GCalendar fiók DocType: Language,Language Name,Nyelv neve +DocType: Workflow Document State,Workflow Action is not created for optional states,A munkafolyamat nem választható állapotokra van létrehozva DocType: Customize Form,Customize Form,Űrlap testreszabása DocType: DocType,Image Field,Képmező apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Hozzáadva {0} ({1}) @@ -1744,6 +1771,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Alkalmazza ezt a szabályt, ha a Felhasználó a Tulajdonos" DocType: About Us Settings,Org History Heading,Org története apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,szerver hiba +DocType: Contact,Google Contacts Description,Google Névjegyzék leírása apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,A standard szerepeket nem lehet átnevezni DocType: Review Level,Review Points,Felülvizsgálati pontok apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Hiányzó paraméter Kanban Board Name @@ -1761,7 +1789,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,"Nem a fejlesztői módban! Állítsa be a site_config.json-t, vagy készítsen 'Custom' DocType-t." apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,{0} pontot szerzett DocType: Web Form,Success Message,Siker üzenet -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Összehasonlítás céljából használja az> 5, <10 vagy = 324 értéket. A tartományoknál használja az 5:10 (az 5 és 10 közötti értékeknél)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Leírás oldal listázásához egyszerű szövegben, csak néhány sor. (legfeljebb 140 karakter)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Engedélyek megjelenítése DocType: DocType,Restrict To Domain,Tartomány korlátozása @@ -1783,6 +1810,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Nem ő apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Mennyiség beállítása DocType: Auto Repeat,End Date,Befejezés dátuma DocType: Workflow Transition,Next State,Következő állam +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Google Névjegyek szinkronizálása. DocType: System Settings,Is First Startup,Első indítás apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},frissítve: {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Költözik @@ -1832,6 +1860,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Naptár apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Adatok importálása sablon DocType: Workflow State,hand-left,kézzel fűzött +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Több listaelem kiválasztása apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Biztonsági másolat mérete: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Kapcsolódva: {0} DocType: Braintree Settings,Private Key,Privát kulcs @@ -1874,13 +1903,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Érdeklődés DocType: Bulk Update,Limit,Határ DocType: Print Settings,Print taxes with zero amount,Nyomtasson nulla összegű adót -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"E-mail fiók nincs beállítva. Kérjük, hozzon létre egy új e-mail fiókot a Beállítás> E-mail> E-mail fiók" DocType: Workflow State,Book,Könyv DocType: S3 Backup Settings,Access Key ID,Hozzáférési kulcs azonosítója DocType: Chat Message,URLs,URL-ek apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,A neveket és a vezetékneveket önmagukban könnyű kitalálni. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Jelentés {0} DocType: About Us Settings,Team Members Heading,Csapattagok fejezete +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Válassza ki a listaelemet apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},A {0} dokumentumot {2} állította be: {2} DocType: Address Template,Address Template,Cím sablon DocType: Workflow State,step-backward,step-hátra @@ -1904,6 +1933,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Egyéni engedélyek exportálása apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Nincs: A munkafolyamat vége DocType: Version,Version,Változat +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Listaelem megnyitása apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 hónap DocType: Chat Message,Group,Csoport apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Van valami probléma a fájl URL-jével: {0} @@ -1959,6 +1989,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 év apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} visszaállította a pontokat {1} DocType: Workflow State,arrow-down,nyíl lefelé DocType: Data Import,Ignore encoding errors,A kódolási hibák figyelmen kívül hagyása +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Tájkép DocType: Letter Head,Letter Head Name,Levélfej neve DocType: Web Form,Client Script,Kliens Script DocType: Assignment Rule,Higher priority rule will be applied first,A magasabb prioritású szabályt először alkalmazzák @@ -2003,6 +2034,7 @@ DocType: Kanban Board Column,Green,Zöld apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Az új rekordokhoz csak kötelező mezők szükségesek. Ha nem kívánja, törölheti a nem kötelező oszlopokat." apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} betűvel kell kezdődnie, és csak betűket, kötőjelet vagy aláhúzást tartalmazhat." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Indítsa el az elsődleges műveletet apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Felhasználói e-mail létrehozása apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,A {0} rendezési mezőnek érvényes mezőnévnek kell lennie DocType: Auto Email Report,Filter Meta,Meta szűrő @@ -2031,6 +2063,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Idővonal mező apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Betöltés... DocType: Auto Email Report,Half Yearly,Félévente +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,A profilom apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Utolsó módosítás dátuma DocType: Contact,First Name,Keresztnév DocType: Post,Comments,Hozzászólások @@ -2053,6 +2086,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Tartalom Hash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Bejegyzések: {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} hozzárendelt {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Nincs új Google-névjegy szinkronizálva. DocType: Workflow State,globe,földgolyó apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},{0} átlaga apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Törölje a hibanaplókat @@ -2079,6 +2113,8 @@ DocType: Workflow State,Inverse,fordítottja DocType: Activity Log,Closed,Zárva DocType: Report,Query,kérdés DocType: Notification,Days After,Napok után +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Oldal gyorsbillentyűk +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,portré apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,A kérés meghaladta a rendelkezésre álló időkeretet DocType: System Settings,Email Footer Address,E-mail lábléc címe apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energiapont frissítés @@ -2106,6 +2142,7 @@ For Select, enter list of Options, each on a new line.","Linkek esetén adja meg apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 perccel ezelőtt apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Nincs aktív munkamenet apps/frappe/frappe/model/base_document.py,Row,Sor +DocType: Contact,Middle Name,Középső név apps/frappe/frappe/public/js/frappe/request.js,Please try again,Kérlek próbáld újra DocType: Dashboard Chart,Chart Options,Diagrambeállítások DocType: Data Migration Run,Push Failed,Push sikertelen @@ -2134,6 +2171,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,átméretezése kicsi DocType: Comment,Relinked,újralinkelt DocType: Role Permission for Page and Report,Roles HTML,Szerepek HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Megy apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,A munkafolyamat a mentés után kezdődik. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Ha az adatok HTML-ben vannak, kérjük, másolja be a pontos HTML-kódot a címkékbe." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,A dátumokat gyakran könnyű kitalálni. @@ -2162,7 +2200,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Asztali ikon apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,törölte ezt a dokumentumot apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Időintervallum -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Beállítás> Felhasználói engedélyek apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} értékelte {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Az értékek megváltoztak apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Hiba az értesítésben @@ -2227,6 +2264,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Tömeges törlés DocType: DocShare,Document Name,Dokumentum neve apps/frappe/frappe/config/customization.py,Add your own translations,Adja hozzá saját fordításait +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Lépjen a listára DocType: S3 Backup Settings,eu-central-1,eu-Közép-1 DocType: Auto Repeat,Yearly,Évi apps/frappe/frappe/public/js/frappe/model/model.js,Rename,átnevezése @@ -2277,6 +2315,7 @@ DocType: Workflow State,plane,repülőgép apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,"Beágyazott beállított hiba. Kérjük, forduljon a rendszergazdához." apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Jelentés megjelenítése DocType: Auto Repeat,Auto Repeat Schedule,Automatikus ismétlés ütemezése +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Ref DocType: Address,Office,Hivatal DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} nappal ezelőtt @@ -2310,7 +2349,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Hi apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Beállításaim apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,A csoport neve nem lehet üres. DocType: Workflow State,road,út -DocType: Website Route Redirect,Source,Forrás +DocType: Contact,Source,Forrás apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Aktív ülések apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Csak egy Fold lehet egy formában apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Új csevegés @@ -2332,6 +2371,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,"Kérjük, adja meg az URL-címet" DocType: Email Account,Send Notification to,Értesítés küldése apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox mentési beállítások +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,Valami baj történt a token generálása során. Kattintson a {0} gombra egy új létrehozásához. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Az összes testreszabás eltávolítása? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Csak adminisztrátor szerkesztheti DocType: Auto Repeat,Reference Document,Referencia-dokumentum @@ -2356,6 +2396,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,A felhasználók számára a szerepkörök beállíthatók. DocType: Website Settings,Include Search in Top Bar,Tartalmazza a keresést a felső sávba apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Sürgős] Hiba a% s ismétlődő% s létrehozásakor +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globális parancsikonok DocType: Help Article,Author,Szerző DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Nem található dokumentum az adott szűrőknél @@ -2391,10 +2432,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, {1} sor" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Ha új rekordokat tölt fel, a "Naming Series" kötelezővé válik, ha jelen van." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Tulajdonságok szerkesztése -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,"Nem lehet megnyitni a példányt, amikor a {0} nyitva van" +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,"Nem lehet megnyitni a példányt, amikor a {0} nyitva van" DocType: Activity Log,Timeline Name,Idővonal neve DocType: Comment,Workflow,munkafolyamat apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,"Kérjük, állítsa be a Base URL-t a Frappe közösségi bejelentkezési kulcsában" +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Gyorsbillentyűket DocType: Portal Settings,Custom Menu Items,Egyéni menüelemek apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,A {0} hossza 1 és 1000 között legyen apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,A kapcsolat megszakadt. Egyes funkciók esetleg nem működnek. @@ -2457,6 +2499,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Hozzáadott DocType: DocType,Setup,Beállít apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} sikeresen létrehozott apps/frappe/frappe/www/update-password.html,New Password,új jelszó +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Válassza a Mező lehetőséget apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Hagyja ezt a beszélgetést DocType: About Us Settings,Team Members,Csapattagok DocType: Blog Settings,Writers Introduction,Írók Bevezetés @@ -2526,13 +2569,12 @@ DocType: Chat Room,Name,Név DocType: Communication,Email Template,E-mail sablon DocType: Energy Point Settings,Review Levels,Felülvizsgálati szintek DocType: Print Format,Raw Printing,Nyers nyomtatás -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,"Nem nyitható meg {0}, ha a példánya nyitva van" +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,"Nem nyitható meg {0}, ha a példánya nyitva van" DocType: DocType,"Make ""name"" searchable in Global Search",A "Keresztnév" kereshetővé tehető a globális keresésben DocType: Data Migration Mapping,Data Migration Mapping,Adatátvitel-leképezés DocType: Data Import,Partially Successful,Részben sikeres DocType: Communication,Error,Hiba apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},A mezőtípus nem módosítható {0} -ról {1} -re {2} sorban -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Hiba történt a QZ tálca alkalmazáshoz való csatlakozáskor ...

A Nyers nyomtatás funkció használatához QZ tálca alkalmazás telepítése és futtatása szükséges.

Kattintson ide a QZ tálca letöltéséhez és telepítéséhez .
Kattintson ide, ha többet szeretne megtudni a nyers nyomtatásról ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Fotót készíteni apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,"Kerülje az éveket, amelyek Önhöz kapcsolódnak." DocType: Web Form,Allow Incomplete Forms,Nem megfelelő űrlapok engedélyezése @@ -2628,7 +2670,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Az új oldal megnyitásához válassza a target = "_blank" lehetőséget. DocType: Portal Settings,Portal Menu,Portál menü DocType: Website Settings,Landing Page,Nyitóoldal -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,"Kérjük, regisztráljon vagy jelentkezzen be, hogy elkezdhesse" DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kapcsolati lehetőségek, mint például az "Értékesítési lekérdezés, támogatási lekérdezés" stb. Új sorban, vagy vesszővel elválasztva." apps/frappe/frappe/twofactor.py,Verfication Code,Verifikációs kód apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} már leiratkozott @@ -2714,6 +2755,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Adatátviteli t DocType: Address,Sales User,Értékesítési felhasználó apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","A mező tulajdonságainak módosítása (elrejtés, olvasás, engedély stb.)" DocType: Property Setter,Field Name,Mező neve +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Vevő DocType: Print Settings,Font Size,Betűméret DocType: User,Last Password Reset Date,Utolsó jelszó visszaállítás dátuma DocType: System Settings,Date and Number Format,Dátum és számformátum @@ -2779,6 +2821,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Csoport csomóp apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Csatlakozzon a meglévőhez DocType: Blog Post,Blog Intro,Blog Intro apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Új megjegyzés +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Ugrás a mezőre DocType: Prepared Report,Report Name,Jelentés neve apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Kérjük, frissítse a legfrissebb dokumentumot." apps/frappe/frappe/core/doctype/communication/communication.js,Close,Bezárás @@ -2788,10 +2831,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Esemény DocType: Social Login Key,Access Token URL,Hozzáférés a token URL-címéhez apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,"Kérjük, állítsa be a Dropbox hozzáférési kulcsokat a webhely konfigurációjában" +DocType: Google Contacts,Google Contacts,Google-kapcsolatok DocType: User,Reset Password Key,Jelszó kulcs visszaállítása apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Módosította DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.","Megújításhoz, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Sikeresen elmentve +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Küldj egy e-mailt a következő címre: {0}. DocType: File,Folder,Folder DocType: DocField,Perm Level,Perm szint DocType: Print Settings,Page Settings,Oldalbeállítások @@ -2821,6 +2867,7 @@ DocType: Workflow State,remove-sign,remove-jel DocType: Dashboard Chart,Full,Teljes DocType: DocType,User Cannot Create,A felhasználó nem tud létrehozni apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,{0} pontot szereztél +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Beállítás> Felhasználó DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Ha ezt állítja be, akkor ez az elem a kiválasztott szülő alatti legördülő listában jelenik meg." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Nincsenek e-mailek apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,A következő mezők hiányoznak: @@ -2834,13 +2881,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Nap DocType: Web Form,Web Form Fields,Webes űrlapmezők DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Felhasználó által szerkeszthető űrlap a honlapon. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Állandóan törölje {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Állandóan törölje {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,3. lehetőség apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,összesítések apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Ez egy nagyon gyakori jelszó. DocType: Personal Data Deletion Request,Pending Approval,Elbírálás alatt apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,A dokumentumot nem lehet helyesen rendelni apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{0}: {1} nem engedélyezett +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Nincsenek értékek DocType: Personal Data Download Request,Personal Data Download Request,Személyes adatok letöltési kérése apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} {1} megosztotta ezt a dokumentumot apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Válassza a {0} lehetőséget @@ -2856,7 +2904,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},"Ezt az e-mailt a {0} címre küldték, és a (z) {1}" apps/frappe/frappe/email/smtp.py,Invalid login or password,Helytelen felhasználónév vagy jelszó DocType: Social Login Key,Social Login Key,Szociális bejelentkezési kulcs -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,"Kérjük, állítsa be az alapértelmezett e-mail fiókot a Beállítás> E-mail> E-mail fiók menüpontból" apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,A szűrők elmentve DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Hogyan kell ezt a pénznemet formázni? Ha nincs beállítva, a rendszer alapértelmezett beállításait használja" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} beállítása {2} @@ -2982,6 +3029,7 @@ DocType: User,Location,Elhelyezkedés apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Nincs adat DocType: Website Meta Tag,Website Meta Tag,Weboldal Meta Tag DocType: Workflow State,film,film +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,A vágólapra másolt. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} A beállítások nem találhatók apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,A címke kötelező DocType: Webhook,Webhook Headers,Webhook fejlécek @@ -3189,7 +3237,7 @@ DocType: Address,Address Line 1,Címsor 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Dokumentumtípus esetén apps/frappe/frappe/model/base_document.py,Data missing in table,Az adatok hiányoznak a táblázatban apps/frappe/frappe/utils/bot.py,Could not identify {0},{0} nem sikerült azonosítani -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Ezt az űrlapot a betöltés után módosították +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Ezt az űrlapot a betöltés után módosították apps/frappe/frappe/www/login.html,Back to Login,Vissza a bejelentkezéshez apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Nincs beállítva DocType: Data Migration Mapping,Pull,Húzni @@ -3257,6 +3305,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Gyermek táblázat le apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,E-mail fiók beállításai: adja meg a jelszavát: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,"Túl sok ír egy kéréssel. Kérjük, küldjön kisebb kéréseket" DocType: Social Login Key,Salesforce,Értékesítési erő +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{0} {1} importálása DocType: User,Tile,Csempe apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} szobának legfeljebb egy felhasználónak kell lennie. DocType: Email Rule,Is Spam,A Spam @@ -3294,7 +3343,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,mappa-szoros DocType: Data Migration Run,Pull Update,Húzzon frissítést apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},{0} -ot egyesített {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Nincs találat a következőre:

DocType: SMS Settings,Enter url parameter for receiver nos,Adja meg az ur paramétert a vevőegységhez apps/frappe/frappe/utils/jinja.py,Syntax error in template,Szintaxis hiba a sablonban apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,"Kérjük, állítsa be a szűrők értékét a Jelentésszűrő táblázatban." @@ -3307,6 +3355,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Sajnáljuk, DocType: System Settings,In Days,Napokban DocType: Report,Add Total Row,Összes sor hozzáadása apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Session Start sikertelen +DocType: Translation,Verified,ellenőrzött DocType: Print Format,Custom HTML Help,Egyéni HTML súgó DocType: Address,Preferred Billing Address,Preferált számlázási cím apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Hozzárendelve @@ -3321,7 +3370,6 @@ DocType: Help Article,Intermediate,Közbülső DocType: Module Def,Module Name,Modul neve DocType: OAuth Authorization Code,Expiration time,Lejárati idő apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Alapértelmezett formátum, oldalméret, nyomtatási stílus stb. Beállítása" -apps/frappe/frappe/desk/like.py,You cannot like something that you created,"Nem tetszik valami, amit létrehozott" DocType: System Settings,Session Expiry,Szekció lejárata DocType: DocType,Auto Name,Automatikus név apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Válassza a Mellékleteket @@ -3349,6 +3397,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Rendszer oldal DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Megjegyzés: Alapértelmezett e-mailek küldése a sikertelen biztonsági mentésekhez. DocType: Custom DocPerm,Custom DocPerm,Egyedi DocPerm +DocType: Translation,PR sent,PR küldött DocType: Tag Doc Category,Doctype to Assign Tags,Címkék hozzárendelése a Doctype-hoz DocType: Address,Warehouse,Raktár apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Dropbox beállítás @@ -3416,7 +3465,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Enter megjegyzés hozzáadásához apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,A {0} mező nem választható. DocType: User,Birth Date,Születési dátum -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Csoportos bemetszéssel DocType: List View Setting,Disable Count,Számláló letiltása DocType: Contact Us Settings,Email ID,Email azonosító apps/frappe/frappe/utils/password.py,Incorrect User or Password,Helytelen felhasználó vagy jelszó @@ -3451,6 +3499,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Ez a szerepkör frissítése a felhasználó engedélyeire DocType: Website Theme,Theme,Téma DocType: Web Form,Show Sidebar,Az oldalsáv megjelenítése +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google-kapcsolatok integrálása. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Alapértelmezett postafiók apps/frappe/frappe/www/login.py,Invalid Login Token,Érvénytelen bejelentkezési token apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Először állítsa be a nevet és mentse el a rekordot. @@ -3478,7 +3527,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,"Kérjük, javítsa ki a" DocType: Top Bar Item,Top Bar Item,Top Bar elem ,Role Permissions Manager,Szerep engedélyek kezelője -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,"Hiba történt. Kérjük, jelentse ezt." +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} évvel ezelőtt apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Női DocType: System Settings,OTP Issuer Name,OTP kibocsátó neve apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Hozzáadás a teendőkhöz @@ -3578,6 +3627,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Nyelv, apps/frappe/frappe/model/document.py,none of,egyik sem DocType: Desktop Icon,Page,oldal DocType: Workflow State,plus-sign,Plusz jel +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Törölje a gyorsítótárat és töltse újra apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Nem frissíthető: Helytelen / lejárt hivatkozás. DocType: Kanban Board Column,Yellow,Sárga DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),"Egy rács oszlopainak száma a rácsban (a rács összes oszlopának kevesebb, mint 11)" @@ -3592,6 +3642,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Új DocType: Activity Log,Date,Dátum DocType: Communication,Communication Type,Kommunikációs típus apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Szülői táblázat +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Navigáljon a listára DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Teljes hiba megjelenítése és a problémák bejelentésének engedélyezése a fejlesztőnek DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3613,7 +3664,6 @@ DocType: Notification Recipient,Email By Role,E-mail szerep szerint apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,"Kérjük, frissítse, hogy több mint {0} előfizetőt vegyen fel" apps/frappe/frappe/email/queue.py,This email was sent to {0},Ezt az e-mailt {0} DocType: User,Represents a User in the system.,Képviseli a felhasználót a rendszerben. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Oldal {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Indítsa el az új formátumot apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Hozzászólni apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} {1} diff --git a/frappe/translations/id.csv b/frappe/translations/id.csv index 66c8c9d7a9..5736d1a8e6 100644 --- a/frappe/translations/id.csv +++ b/frappe/translations/id.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Aktifkan Gradien DocType: DocType,Default Sort Order,Urutan Sortir Default apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Hanya menampilkan bidang Numerik dari Laporan +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Tekan Alt Key untuk memicu pintasan tambahan di Menu dan Sidebar DocType: Workflow State,folder-open,folder terbuka DocType: Customize Form,Is Table,Apakah Table apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Tidak dapat membuka file terlampir. Apakah Anda mengekspornya sebagai CSV? DocType: DocField,No Copy,Tanpa Salinan DocType: Custom Field,Default Value,Nilai Default apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Append To adalah wajib untuk surat masuk +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Sinkronkan Kontak DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Detail Pemetaan Migrasi Data apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Berhenti mengikuti apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",Pencetakan PDF melalui "Raw Print" belum didukung. Harap hapus pemetaan printer di Pengaturan Printer dan coba lagi. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} dan {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Terjadi kesalahan saat menyimpan filter apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Masukkan kata sandi Anda apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Tidak dapat menghapus folder Beranda dan Lampiran +DocType: Email Account,Enable Automatic Linking in Documents,Aktifkan Penghubungan Otomatis di Dokumen DocType: Contact Us Settings,Settings for Contact Us Page,Pengaturan untuk Halaman Hubungi Kami DocType: Social Login Key,Social Login Provider,Penyedia Login Sosial +DocType: Email Account,"For more information, click here.","Untuk informasi lebih lanjut, klik di sini ." DocType: Transaction Log,Previous Hash,Hash sebelumnya DocType: Notification,Value Changed,Nilai Berubah DocType: Report,Report Type,Tipe laporan @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Aturan Titik Energi apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,Silakan masukkan ID Klien sebelum login sosial diaktifkan DocType: Communication,Has Attachment,Memiliki Lampiran DocType: User,Email Signature,Email Signature -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} tahun yang lalu ,Addresses And Contacts,Alamat dan Kontak apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Dewan Kanban ini bersifat pribadi DocType: Data Migration Run,Current Mapping,Pemetaan saat ini @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Anda memilih Opsi Sinkronisasi sebagai SEMUA, Ini akan melakukan sinkronisasi ulang semua \ baca serta pesan yang belum dibaca dari server. Ini juga dapat menyebabkan duplikasi \ Komunikasi (email)." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Terakhir disinkronkan {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Tidak dapat mengubah konten tajuk +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Tidak ditemukan hasil untuk '

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Tidak diizinkan untuk mengubah {0} setelah pengiriman apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Aplikasi telah diperbarui ke versi baru, silakan segarkan halaman ini" DocType: User,User Image,Gambar Pengguna @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Tanda apps/frappe/frappe/public/js/frappe/chat.js,Discard,Membuang DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Pilih gambar dengan lebar sekitar 150px dengan latar belakang transparan untuk hasil terbaik. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,Kambuh +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} nilai dipilih DocType: Blog Post,Email Sent,Email terkirim DocType: Communication,Read by Recipient On,Dibaca oleh Penerima Aktif DocType: User,Allow user to login only after this hour (0-24),Izinkan pengguna untuk masuk hanya setelah jam ini (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Modul untuk Ekspor DocType: DocType,Fields,Bidang -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Anda tidak diperbolehkan mencetak dokumen ini +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Anda tidak diperbolehkan mencetak dokumen ini apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Induk apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Sesi Anda telah kedaluwarsa, harap masuk lagi untuk melanjutkan." DocType: Assignment Rule,Priority,Prioritas @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Setel ulang OTP Se DocType: DocType,UPPER CASE,HURUF BESAR apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,Silakan atur Alamat Email DocType: Communication,Marked As Spam,Ditandai Sebagai Spam +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Alamat Email yang Kontak Google-nya harus disinkronkan. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Impor Pelanggan apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Simpan Filter DocType: Address,Preferred Shipping Address,Alamat Pengiriman Pilihan DocType: GCalendar Account,The name that will appear in Google Calendar,Nama yang akan muncul di Kalender Google +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Klik pada {0} untuk menghasilkan Refresh Token. DocType: Email Account,Disable SMTP server authentication,Nonaktifkan otentikasi server SMTP DocType: Email Account,Total number of emails to sync in initial sync process ,Jumlah total email yang akan disinkronkan dalam proses sinkronisasi awal DocType: System Settings,Enable Password Policy,Aktifkan Kebijakan Kata Sandi @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Masukan kode apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Tidak masuk DocType: Auto Repeat,Start Date,Mulai tanggal apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Setel Bagan +DocType: Website Theme,Theme JSON,Tema JSON apps/frappe/frappe/www/list.py,My Account,Akun saya DocType: DocType,Is Published Field,Diterbitkan Bidang DocType: DocField,Set non-standard precision for a Float or Currency field,Tetapkan presisi non-standar untuk bidang Float atau Mata Uang @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Tambahkan Reference: {{ reference_doctype }} {{ reference_name }} untuk mengirim referensi dokumen DocType: LDAP Settings,LDAP First Name Field,Bidang Nama Depan LDAP apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Pengiriman dan Kotak Masuk Default -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Pengaturan> Kustomisasi Formulir apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.","Untuk memperbarui, Anda hanya dapat memperbarui kolom selektif." apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',Default untuk jenis bidang 'Periksa' harus berupa '0' atau '1' apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Bagikan dokumen ini dengan @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Domain HTML DocType: Blog Settings,Blog Settings,Pengaturan Blog apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Nama DocType harus dimulai dengan huruf dan hanya bisa terdiri dari huruf, angka, spasi, dan garis bawah" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Pengaturan> Izin Pengguna DocType: Communication,Integrations can use this field to set email delivery status,Integrasi dapat menggunakan bidang ini untuk menetapkan status pengiriman email apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Pengaturan jalur pembayaran gateway DocType: Print Settings,Fonts,Font DocType: Notification,Channel,Saluran DocType: Communication,Opened,Terbuka DocType: Workflow Transition,Conditions,Kondisi +apps/frappe/frappe/config/website.py,A user who posts blogs.,Seorang pengguna yang memposting blog. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Belum punya akun? Daftar apps/frappe/frappe/utils/file_manager.py,Added {0},Ditambahkan {0} DocType: Newsletter,Create and Send Newsletters,Buat dan Kirim Nawala DocType: Website Settings,Footer Items,Item Footer +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Silakan atur Akun Email default dari Pengaturan> Email> Akun Email DocType: Website Slideshow Item,Website Slideshow Item,Item Slideshow Situs Web apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Daftarkan Aplikasi Klien OAuth DocType: Error Snapshot,Frames,Bingkai @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Level 0 untuk izin level dokumen, \ level lebih tinggi untuk izin level lapangan." DocType: Address,City/Town,Kota / Kota DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Ini akan mengatur ulang tema Anda saat ini, apakah Anda yakin ingin melanjutkan?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Bidang wajib diisi dalam {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Kesalahan saat menghubungkan ke akun email {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Terjadi kesalahan saat membuat berulang @@ -528,7 +537,7 @@ DocType: Event,Event Category,Kategori Acara apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Kolom berdasarkan apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Edit Tajuk DocType: Communication,Received,Diterima -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Anda tidak diizinkan mengakses halaman ini. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Anda tidak diizinkan mengakses halaman ini. DocType: User Social Login,User Social Login,Login Sosial Pengguna apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,Tulis file Python di folder yang sama tempat ini disimpan dan kembalikan kolom dan hasil. DocType: Contact,Purchase Manager,Manajer pembelian @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konf apps/frappe/frappe/utils/data.py,Operator must be one of {0},Operator harus salah satu dari {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Jika Pemilik DocType: Data Migration Run,Trigger Name,Nama Pemicu -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Tulis judul dan pengantar ke blog Anda. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Hapus Field apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Tutup Semua apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Warna latar belakang @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,Bar DocType: SMS Settings,Enter url parameter for message,Masukkan parameter url untuk pesan apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Format Cetak Kustom Baru apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} sudah ada +DocType: Workflow Document State,Is Optional State,Apakah Status Opsional DocType: Address,Purchase User,Beli Pengguna DocType: Data Migration Run,Insert,Memasukkan DocType: Web Form,Route to Success Link,Rute ke Tautan Sukses @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Nama pe DocType: File,Is Home Folder,Apakah Folder Rumah apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Mengetik: DocType: Post,Is Pinned,Disematkan -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Tidak ada izin untuk '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Tidak ada izin untuk '{0}' {1} DocType: Patch Log,Patch Log,Patch Patch DocType: Print Format,Print Format Builder,Pembuat Format Cetak 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","Jika diaktifkan, semua pengguna dapat login dari Alamat IP apa pun menggunakan Two Factor Auth. Ini juga dapat ditetapkan hanya untuk pengguna tertentu di Halaman Pengguna" apps/frappe/frappe/utils/data.py,only.,hanya. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,Kondisi '{0}' tidak valid DocType: Auto Email Report,Day of Week,Hari dalam seminggu +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Aktifkan Google API di Pengaturan Google. DocType: DocField,Text Editor,Editor Teks apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Memotong apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Cari atau ketikkan perintah @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,Jumlah cadangan DB tidak boleh kurang dari 1 DocType: Workflow State,ban-circle,larangan lingkaran DocType: Data Export,Excel,Unggul +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Header, Breadcrumbs, dan Meta Tag" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Dukungan Alamat Email Tidak Ditentukan DocType: Comment,Published,Diterbitkan DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","Catatan: Untuk hasil terbaik, gambar harus memiliki ukuran dan lebar yang sama harus lebih besar dari tinggi." @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Penjadwal Acara Terakhir apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Laporan semua dokumen yang dibagikan DocType: Website Sidebar Item,Website Sidebar Item,Item Bilah Sisi Situs Web apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Melakukan +DocType: Google Settings,Google Settings,Pengaturan Google apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Pilih Negara Anda, Zona Waktu dan Mata Uang" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Masukkan parameter url statis di sini (mis. Pengirim = ERPNext, nama pengguna = ERPNext, kata sandi = 1234 dll.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Tidak Ada Akun Email @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,Token Pembawa OAuth ,Setup Wizard,Petunjuk penggunaan apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Toggle Chart +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,Sinkronisasi DocType: Data Migration Run,Current Mapping Action,Tindakan Pemetaan Saat Ini DocType: Email Account,Initial Sync Count,Jumlah Sinkronisasi Awal apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Pengaturan untuk Halaman Hubungi Kami. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Jenis Format Cetak apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Tidak ada Izin yang ditetapkan untuk kriteria ini. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Melebarkan semua +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Templat Alamat default tidak ditemukan. Harap buat yang baru dari Setup> Printing and Branding> Address Template. DocType: Tag Doc Category,Tag Doc Category,Kategori Tag Doc DocType: Data Import,Generated File,File yang Dihasilkan apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Catatan @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Bidang garis waktu harus berupa Tautan atau Tautan Dinamis DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Pemberitahuan dan surat massal akan dikirim dari server keluar ini. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Ini adalah 100 kata sandi umum teratas. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Kirim Permanen {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Kirim Permanen {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} tidak ada, pilih target baru untuk digabungkan" DocType: Energy Point Rule,Multiplier Field,Bidang Pengganda DocType: Workflow,Workflow State Field,Bidang Negara Alur Kerja @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} menghargai karya Anda pada {1} dengan {2} poin DocType: Auto Email Report,Zero means send records updated at anytime,Nol berarti mengirim catatan yang diperbarui kapan saja apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Nilai tidak dapat diubah untuk {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Pengaturan Google API. DocType: System Settings,Force User to Reset Password,Paksa Pengguna untuk Mengatur Ulang Kata Sandi apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Laporan Pembuat Laporan dikelola langsung oleh pembuat laporan. Tidak ada yang bisa dilakukan. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Edit Filter @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,Untuk DocType: S3 Backup Settings,eu-north-1,eu-north-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Hanya satu aturan yang diizinkan dengan Peran, Level, dan {1} yang sama" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Anda tidak diizinkan untuk memperbarui Dokumen Formulir Web ini -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Batas Lampiran Maksimum untuk catatan ini tercapai. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Batas Lampiran Maksimum untuk catatan ini tercapai. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,Pastikan Dokumen Referensi Referensi tidak ditautkan secara melingkar. DocType: DocField,Allow in Quick Entry,Izinkan dalam Entri Cepat DocType: Error Snapshot,Locals,Penduduk setempat @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Jenis Pengecualian apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},Tidak dapat menghapus atau membatalkan karena {0} {1} ditautkan dengan {2} {3} {4} apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,Rahasia OTP hanya dapat diatur ulang oleh Administrator. -DocType: Web Form Field,Page Break,Istirahat Halaman DocType: Website Script,Website Script,Skrip situs web DocType: Integration Request,Subscription Notification,Pemberitahuan Berlangganan DocType: DocType,Quick Entry,Entri Cepat @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,Tetapkan Properti Setelah Peringa apps/frappe/frappe/__init__.py,Thank you,Terima kasih apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks untuk integrasi internal apps/frappe/frappe/config/settings.py,Import Data,Impor Data +DocType: Translation,Contributed Translation Doctype Name,Nama Dokumen Terjemahan yang Dikontribusi DocType: Social Login Key,Office 365,Kantor 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID DocType: Review Level,Review Level,Tingkat Ulasan @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Berhasil Dilakukan apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Daftar apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Menghargai -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Baru {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Apakah Kontak Utama DocType: Print Format,Raw Commands,Perintah Mentah apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Lembar Gaya untuk Format Cetak @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Kesalahan dalam Ac apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Temukan {0} di {1} DocType: Email Account,Use SSL,Gunakan SSL DocType: DocField,In Standard Filter,Dalam Filter Standar +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Tidak ada Kontak Google hadir untuk disinkronkan. DocType: Data Migration Run,Total Pages,Total Halaman apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: Field '{1}' tidak dapat ditetapkan sebagai Unik karena memiliki nilai-nilai non-unik DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Jika diaktifkan, pengguna akan diberi tahu setiap kali mereka masuk. Jika tidak diaktifkan, pengguna hanya akan diberi tahu satu kali." @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,Otomatisasi apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Membuka ritsleting file ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Cari '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Ada yang salah -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Harap simpan sebelum melampirkan. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,Harap simpan sebelum melampirkan. DocType: Version,Table HTML,Tabel HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,pusat DocType: Page,Standard,Standar @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Tidak ada h apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} catatan dihapus apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,Terjadi kesalahan saat membuat token akses dropbox. Silakan periksa log kesalahan untuk lebih jelasnya. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Keturunan Dari -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Templat Alamat default tidak ditemukan. Harap buat yang baru dari Setup> Printing and Branding> Address Template. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Kontak Google telah dikonfigurasi. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Sembunyikan detail apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Gaya Font apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Langganan Anda akan kedaluwarsa pada {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Otentikasi gagal saat menerima email dari Akun Email {0}. Pesan dari server: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Statistik berdasarkan kinerja minggu lalu (dari {0} hingga {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,Tautan Otomatis hanya dapat diaktifkan jika Incoming diaktifkan. DocType: Website Settings,Title Prefix,Judul Awalan apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Aplikasi Otentikasi yang dapat Anda gunakan adalah: DocType: Bulk Update,Max 500 records at a time,Max 500 mencatat sekaligus @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,Filter Laporan apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Pilih Kolom DocType: Event,Participants,Peserta DocType: Auto Repeat,Amended From,Diubah Dari -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Informasi Anda telah dikirimkan +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Informasi Anda telah dikirimkan DocType: Help Category,Help Category,Kategori Bantuan apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 bulan apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Pilih format yang ada untuk diedit atau mulai format baru. @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Field to Track DocType: User,Generate Keys,Hasilkan Kunci DocType: Comment,Unshared,Tidak dibagikan -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Disimpan +DocType: Translation,Saved,Disimpan DocType: OAuth Client,OAuth Client,Klien OAuth DocType: System Settings,Disable Standard Email Footer,Nonaktifkan Footer Email Standar apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Format Cetak {0} dinonaktifkan @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Terakhir dipe DocType: Data Import,Action,Tindakan apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Diperlukan kunci klien DocType: Chat Profile,Notifications,Notifikasi +DocType: Translation,Contributed,Berkontribusi DocType: System Settings,mm/dd/yyyy,mm / hh / tttt DocType: Report,Custom Report,Laporan Kustom DocType: Workflow State,info-sign,tanda-info @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Kontak DocType: LDAP Settings,LDAP Username Field,Bidang Nama Pengguna LDAP apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Bidang {0} tidak dapat ditetapkan sebagai unik di {1}, karena ada nilai yang tidak unik" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Pengaturan> Kustomisasi Formulir DocType: User,Social Logins,Login Sosial DocType: Workflow State,Trash,Sampah DocType: Stripe Settings,Secret Key,Kunci rahasia @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,Bidang Judul apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Tidak dapat terhubung ke server email keluar DocType: File,File URL,URL file DocType: Help Article,Likes,Suka +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Integrasi Kontak Google dinonaktifkan. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Anda harus masuk dan memiliki Peran Manajer Sistem untuk dapat mengakses cadangan. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Tingkat pertama DocType: Blogger,Short Name,Nama pendek @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Impor Zip DocType: Contact,Gender,Jenis kelamin DocType: Workflow State,thumbs-down,jempol ke bawah -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Antrian harus salah satu dari {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Tidak dapat mengatur Notifikasi pada Jenis Dokumen {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Menambahkan System Manager ke Pengguna ini karena minimal harus ada satu System Manager apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Email selamat datang dikirim DocType: Transaction Log,Chaining Hash,Chaining Hash DocType: Contact,Maintenance Manager,Manajer Pemeliharaan +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Untuk perbandingan, gunakan> 5, <10 atau = 324. Untuk rentang, gunakan 5:10 (untuk nilai antara 5 & 10)." apps/frappe/frappe/utils/bot.py,show,menunjukkan apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Bagikan URL apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Format File Tidak Didukung @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,Pemberitahuan DocType: Data Import,Show only errors,Hanya tampilkan kesalahan DocType: Energy Point Log,Review,Ulasan apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Baris Dihapus -DocType: GSuite Settings,Google Credentials,Kredensial Google +DocType: Google Settings,Google Credentials,Kredensial Google apps/frappe/frappe/www/login.html,Or login with,Atau masuk dengan apps/frappe/frappe/model/document.py,Record does not exist,Rekaman tidak ada apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Nama Laporan baru @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,Daftar DocType: Workflow State,th-large,th-besar apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Tidak dapat menetapkan Tetapkan Kirim jika tidak dapat diajukan apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Tidak Tertaut ke sembarang catatan +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Kesalahan menyambung ke Aplikasi Baki QZ ...

Anda harus menginstal dan menjalankan aplikasi Baki QZ, untuk menggunakan fitur Raw Print.

Klik di sini untuk Mengunduh dan menginstal Baki QZ .
Klik di sini untuk mempelajari lebih lanjut tentang Pencetakan Mentah ." DocType: Chat Message,Content,Konten DocType: Workflow Transition,Allow Self Approval,Izinkan Persetujuan Diri apps/frappe/frappe/www/qrcode.py,Page has expired!,Halaman telah kedaluwarsa! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,tangan kanan DocType: Website Settings,Banner is above the Top Menu Bar.,Spanduk di atas Bilah Menu Atas. apps/frappe/frappe/www/update-password.html,Invalid Password,kata sandi salah apps/frappe/frappe/utils/data.py,1 month ago,1 bulan yang lalu +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Izinkan Google Kontak Mengakses DocType: OAuth Client,App Client ID,ID Klien Aplikasi DocType: DocField,Currency,Mata uang DocType: Website Settings,Banner,Spanduk @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Tujuan DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Jika Peran tidak memiliki akses di Level 0, maka level yang lebih tinggi tidak berarti." DocType: ToDo,Reference Type,Jenis referensi -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Mengizinkan DocType, DocType. Hati-hati!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Mengizinkan DocType, DocType. Hati-hati!" DocType: Domain Settings,Domain Settings,Pengaturan Domain DocType: Auto Email Report,Dynamic Report Filters,Filter Laporan Dinamis DocType: Energy Point Log,Appreciation,Apresiasi @@ -1468,6 +1489,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,us-west-2 DocType: DocType,Is Single,Sendiri apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Buat Format Baru +DocType: Google Contacts,Authorize Google Contacts Access,Otorisasi Akses Kontak Google DocType: S3 Backup Settings,Endpoint URL,URL titik akhir DocType: Social Login Key,Google,Google DocType: Contact,Department,Departemen @@ -1482,7 +1504,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Menetapkan ke DocType: List Filter,List Filter,Daftar Filter DocType: Dashboard Chart Link,Chart,Grafik apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Tidak bisa menghapus -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Kirim dokumen ini untuk konfirmasi +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Kirim dokumen ini untuk konfirmasi apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} sudah ada. Pilih nama lain apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Anda memiliki perubahan yang belum disimpan dalam formulir ini. Harap simpan sebelum Anda melanjutkan. apps/frappe/frappe/model/document.py,Action Failed,Aksi: Gagal @@ -1564,6 +1586,7 @@ DocType: DocField,Display,Tampilan apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Membalas semua DocType: Calendar View,Subject Field,Bidang Subjek apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Kedaluwarsa Sesi harus dalam format {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},Menerapkan: {0} DocType: Workflow State,zoom-in,Perbesar apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Gagal terhubung ke server apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Tanggal {0} harus dalam format: {1} @@ -1575,8 +1598,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Ikon akan muncul di tombol DocType: Role Permission for Page and Report,Set Role For,Tetapkan Peran Untuk +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Tautan Otomatis hanya dapat diaktifkan untuk satu Akun Email. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Tidak Ada Akun Email yang Ditugaskan +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Akun Email tidak disiapkan. Harap buat Akun Email baru dari Pengaturan> Email> Akun Email apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Tugas +DocType: Google Contacts,Last Sync On,Sinkronisasi Terakhir Aktif apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},diperoleh sebesar {0} melalui aturan otomatis {1} apps/frappe/frappe/config/website.py,Portal,Pintu gerbang apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Terima kasih atas email Anda @@ -1597,7 +1623,6 @@ DocType: GSuite Settings,GSuite Settings,Pengaturan GSuite DocType: Integration Request,Remote,Terpencil DocType: File,Thumbnail URL,URL gambar kecil apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Unduh Laporan -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Pengaturan> Pengguna apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Kustomisasi untuk {0} diekspor ke:
{1} DocType: GCalendar Account,Calendar Name,Nama Kalender apps/frappe/frappe/templates/emails/new_user.html,Your login id is,ID login Anda adalah @@ -1647,6 +1672,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Pergi apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Bidang gambar harus berupa bidang nama yang valid apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,Anda harus masuk untuk mengakses halaman ini DocType: Assignment Rule,Example: {{ subject }},Contoh: {{subjek}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Fieldname {0} dibatasi apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Anda tidak dapat membatalkan 'Hanya Baca' untuk bidang {0} DocType: Social Login Key,Enable Social Login,Aktifkan Login Sosial DocType: Workflow,Rules defining transition of state in the workflow.,Aturan yang mendefinisikan transisi negara dalam alur kerja. @@ -1667,10 +1693,10 @@ DocType: Website Settings,Route Redirects,Pengalihan Rute apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Kotak Masuk Email apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},dipulihkan {0} sebagai {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Secara otomatis Menetapkan Dokumen untuk Pengguna +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Buka Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Template Email untuk kueri umum. DocType: Letter Head,Letter Head Based On,Kepala Surat Berdasarkan apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Silakan tutup jendela ini -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Pembayaran Selesai DocType: Contact,Designation,Penunjukan DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Tag Meta @@ -1709,6 +1735,7 @@ DocType: System Settings,Choose authentication method to be used by all users,Pi DocType: Error Snapshot,Parent Error Snapshot,Snapshot Kesalahan Induk DocType: GCalendar Account,GCalendar Account,Akun GCalendar DocType: Language,Language Name,nama bahasa +DocType: Workflow Document State,Workflow Action is not created for optional states,Tindakan Alur Kerja tidak dibuat untuk status opsional DocType: Customize Form,Customize Form,Kustomisasi Formulir DocType: DocType,Image Field,Bidang Gambar apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Menambahkan {0} ({1}) @@ -1750,6 +1777,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,Terapkan aturan ini jika Pengguna adalah Pemilik DocType: About Us Settings,Org History Heading,Tajuk Sejarah Organisasi apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,server error +DocType: Contact,Google Contacts Description,Deskripsi Kontak Google apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Peran standar tidak dapat diubah namanya DocType: Review Level,Review Points,Poin Ulasan apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Parameter Papan Nama Kanban tidak ada @@ -1767,7 +1795,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Tidak dalam Mode Pengembang! Setel di site_config.json atau buat DocType 'Custom'. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,memperoleh {0} poin DocType: Web Form,Success Message,Pesan sukses -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Untuk perbandingan, gunakan> 5, <10 atau = 324. Untuk rentang, gunakan 5:10 (untuk nilai antara 5 & 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Deskripsi untuk daftar halaman, dalam teks biasa, hanya beberapa baris. (maks. 140 karakter)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Tampilkan Izin DocType: DocType,Restrict To Domain,Batasi Ke Domain @@ -1789,6 +1816,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Bukan apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Tetapkan Kuantitas DocType: Auto Repeat,End Date,Tanggal Berakhir DocType: Workflow Transition,Next State,Negara bagian selanjutnya +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Kontak Google disinkronkan. DocType: System Settings,Is First Startup,Apakah Startup Pertama apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},diperbarui menjadi {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Pindah ke @@ -1838,6 +1866,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Kalender apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Templat Impor Data DocType: Workflow State,hand-left,tangan-kiri +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Pilih beberapa item daftar apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Ukuran Cadangan: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Ditautkan dengan {0} DocType: Braintree Settings,Private Key,Kunci Pribadi @@ -1880,13 +1909,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Bunga DocType: Bulk Update,Limit,Membatasi DocType: Print Settings,Print taxes with zero amount,Cetak pajak dengan jumlah nol -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Akun Email tidak disiapkan. Harap buat Akun Email baru dari Pengaturan> Email> Akun Email DocType: Workflow State,Book,Book DocType: S3 Backup Settings,Access Key ID,ID Kunci Akses DocType: Chat Message,URLs,URL apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Nama dan nama keluarga sendiri mudah ditebak. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Laporkan {0} DocType: About Us Settings,Team Members Heading,Tajuk Anggota Tim +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Pilih item daftar apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Dokumen {0} telah ditetapkan untuk menyatakan {1} oleh {2} DocType: Address Template,Address Template,Template Alamat DocType: Workflow State,step-backward,mundur @@ -1910,6 +1939,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Ekspor Izin Kustom apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Tidak ada: Akhir dari Alur Kerja DocType: Version,Version,Versi +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Buka item daftar apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 bulan DocType: Chat Message,Group,Kelompok apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Ada beberapa masalah dengan url file: {0} @@ -1965,6 +1995,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 tahun apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} mengembalikan poin Anda pada {1} DocType: Workflow State,arrow-down,panah bawah DocType: Data Import,Ignore encoding errors,Abaikan kesalahan penyandian +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Pemandangan DocType: Letter Head,Letter Head Name,Nama Kepala Surat DocType: Web Form,Client Script,Naskah Klien DocType: Assignment Rule,Higher priority rule will be applied first,Aturan prioritas yang lebih tinggi akan diterapkan terlebih dahulu @@ -2009,6 +2040,7 @@ DocType: Kanban Board Column,Green,hijau apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Hanya bidang wajib yang diperlukan untuk catatan baru. Anda dapat menghapus kolom yang tidak wajib jika Anda mau. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} harus dimulai dan diakhiri dengan huruf dan hanya bisa berisi huruf, tanda hubung atau garis bawah." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Trigger Primary Action apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Buat Email Pengguna apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Urutkan bidang {0} harus nama bidang yang valid DocType: Auto Email Report,Filter Meta,Filter Meta @@ -2038,6 +2070,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Bidang Garis Waktu apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Pemuatan... DocType: Auto Email Report,Half Yearly,Setengah tahun +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Profil saya apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Tanggal Dimodifikasi Terakhir DocType: Contact,First Name,Nama depan DocType: Post,Comments,Komentar @@ -2060,6 +2093,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Konten Hash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Kiriman oleh {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} ditugaskan {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Tidak ada Kontak Google baru yang disinkronkan. DocType: Workflow State,globe,globe apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Rata-rata dari {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Kosongkan Log Kesalahan @@ -2086,6 +2120,8 @@ DocType: Workflow State,Inverse,Terbalik DocType: Activity Log,Closed,Tutup DocType: Report,Query,Pertanyaan DocType: Notification,Days After,Hari Setelahnya +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Pintasan Halaman +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Potret apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Permintaan Habis DocType: System Settings,Email Footer Address,Alamat Footer Email apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Pembaruan poin energi @@ -2113,6 +2149,7 @@ For Select, enter list of Options, each on a new line.","Untuk Tautan, masukkan apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 menit yang lalu apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Tidak Ada Sesi Aktif apps/frappe/frappe/model/base_document.py,Row,Baris +DocType: Contact,Middle Name,Nama tengah apps/frappe/frappe/public/js/frappe/request.js,Please try again,Silakan coba lagi DocType: Dashboard Chart,Chart Options,Opsi Bagan DocType: Data Migration Run,Push Failed,Dorong Gagal @@ -2141,6 +2178,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,ukuran-kecil DocType: Comment,Relinked,Ditautkan kembali DocType: Role Permission for Page and Report,Roles HTML,Peran HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Pergi apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Alur kerja akan mulai setelah menyimpan. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Jika data Anda dalam HTML, harap salin tempel kode HTML yang tepat dengan tag." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Kurma sering mudah ditebak. @@ -2169,7 +2207,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Ikon Desktop apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,membatalkan dokumen ini apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Rentang Tanggal -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Pengaturan> Izin Pengguna apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} dihargai {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Nilai Berubah apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Kesalahan dalam Pemberitahuan @@ -2234,6 +2271,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Hapus Massal DocType: DocShare,Document Name,nama dokumen apps/frappe/frappe/config/customization.py,Add your own translations,Tambahkan terjemahan Anda sendiri +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Navigasikan daftar ke bawah DocType: S3 Backup Settings,eu-central-1,eu-central-1 DocType: Auto Repeat,Yearly,Tahunan apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Ganti nama @@ -2284,6 +2322,7 @@ DocType: Workflow State,plane,pesawat apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Kesalahan set bersarang. Silakan hubungi Administrator. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Tampilkan Laporan DocType: Auto Repeat,Auto Repeat Schedule,Jadwal Pengulangan Otomatis +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Lihat referensi DocType: Address,Office,Kantor DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} hari yang lalu @@ -2317,7 +2356,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Ni apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Pengaturan Saya apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Nama grup tidak boleh kosong. DocType: Workflow State,road,jalan -DocType: Website Route Redirect,Source,Sumber +DocType: Contact,Source,Sumber apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Sesi Aktif apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Hanya ada satu Lipat dalam formulir apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Obrolan Baru @@ -2339,6 +2378,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Silakan masukkan URL Otorisasi DocType: Email Account,Send Notification to,Kirim Pemberitahuan ke apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Pengaturan cadangan Dropbox +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,Sesuatu yang salah terjadi selama pembuatan token. Klik pada {0} untuk menghasilkan yang baru. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Hapus semua penyesuaian? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Hanya Administrator yang dapat mengedit DocType: Auto Repeat,Reference Document,Dokumen referensi @@ -2363,6 +2403,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Peran dapat diatur untuk pengguna dari halaman Pengguna mereka. DocType: Website Settings,Include Search in Top Bar,Sertakan Pencarian di Bilah Top apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Penting] Kesalahan saat membuat% s berulang untuk% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Pintasan Global DocType: Help Article,Author,Penulis DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Tidak ada dokumen yang ditemukan untuk filter yang diberikan @@ -2398,10 +2439,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, Baris {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Jika Anda mengunggah catatan baru, "Seri Penamaan" menjadi wajib, jika ada." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Edit Properti -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Tidak dapat membuka instance ketika {0} -nya terbuka +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,Tidak dapat membuka instance ketika {0} -nya terbuka DocType: Activity Log,Timeline Name,Nama Garis Waktu DocType: Comment,Workflow,Alur kerja apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Harap tetapkan URL Dasar di Kunci Masuk Sosial untuk Frappe +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Pintasan keyboard DocType: Portal Settings,Custom Menu Items,Item Menu Kustom apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,Panjang {0} harus antara 1 dan 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Koneksi terputus. Beberapa fitur mungkin tidak berfungsi. @@ -2464,6 +2506,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Baris Ditam DocType: DocType,Setup,Mempersiapkan apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} berhasil dibuat apps/frappe/frappe/www/update-password.html,New Password,kata sandi baru +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Pilih Bidang apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Tinggalkan percakapan ini DocType: About Us Settings,Team Members,Anggota tim DocType: Blog Settings,Writers Introduction,Pengantar Penulis @@ -2533,13 +2576,12 @@ DocType: Chat Room,Name,Nama DocType: Communication,Email Template,Template Email DocType: Energy Point Settings,Review Levels,Tinjau Tingkat DocType: Print Format,Raw Printing,Pencetakan Mentah -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Tidak dapat membuka {0} ketika turunannya terbuka +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,Tidak dapat membuka {0} ketika turunannya terbuka DocType: DocType,"Make ""name"" searchable in Global Search",Buat "nama" dapat dicari di Pencarian Global DocType: Data Migration Mapping,Data Migration Mapping,Pemetaan Migrasi Data DocType: Data Import,Partially Successful,Sebagian Berhasil DocType: Communication,Error,Kesalahan apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype tidak dapat diubah dari {0} menjadi {1} di baris {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Kesalahan menyambung ke Aplikasi Baki QZ ...

Anda harus menginstal dan menjalankan aplikasi Baki QZ, untuk menggunakan fitur Raw Print.

Klik di sini untuk Mengunduh dan menginstal Baki QZ .
Klik di sini untuk mempelajari lebih lanjut tentang Pencetakan Mentah ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Memotret apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,Hindari tahun yang berhubungan dengan Anda. DocType: Web Form,Allow Incomplete Forms,Izinkan Formulir Tidak Lengkap @@ -2635,7 +2677,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Pilih target = "_blank" untuk membuka di halaman baru. DocType: Portal Settings,Portal Menu,Menu Portal DocType: Website Settings,Landing Page,Halaman arahan -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,Silakan daftar atau masuk untuk memulai DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opsi kontak, seperti "Pertanyaan Penjualan, Pertanyaan Dukungan" dll. Masing-masing pada baris baru atau dipisahkan dengan koma." apps/frappe/frappe/twofactor.py,Verfication Code,Kode Verifikasi apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} sudah berhenti berlangganan @@ -2721,6 +2762,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Pemetaan Paket DocType: Address,Sales User,Pengguna Penjualan apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Ubah properti bidang (sembunyikan, hanya baca, izin, dll.)" DocType: Property Setter,Field Name,Nama Bidang +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Pelanggan DocType: Print Settings,Font Size,Ukuran huruf DocType: User,Last Password Reset Date,Tanggal Reset Kata Sandi Terakhir DocType: System Settings,Date and Number Format,Format Tanggal dan Angka @@ -2786,6 +2828,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Simpul Kelompok apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Gabungkan dengan yang ada DocType: Blog Post,Blog Intro,Pengantar Blog apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Sebutan Baru +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Lompat ke bidang DocType: Prepared Report,Report Name,Nama Laporan apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Harap segarkan untuk mendapatkan dokumen terbaru. apps/frappe/frappe/core/doctype/communication/communication.js,Close,Dekat @@ -2795,10 +2838,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Peristiwa DocType: Social Login Key,Access Token URL,Akses Token URL apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Silakan setel kunci akses Dropbox di konfigurasi situs Anda +DocType: Google Contacts,Google Contacts,Kontak Google DocType: User,Reset Password Key,Setel Ulang Kata Sandi apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Dimodifikasi oleh DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.","Untuk memperbarui, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Berhasil Disimpan +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Kirim email ke {0} untuk menautkannya di sini. DocType: File,Folder,Map DocType: DocField,Perm Level,Level Perm DocType: Print Settings,Page Settings,Pengaturan Halaman @@ -2828,6 +2874,7 @@ DocType: Workflow State,remove-sign,hapus tanda DocType: Dashboard Chart,Full,Penuh DocType: DocType,User Cannot Create,Pengguna Tidak Dapat Membuat apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Anda mendapatkan poin {0} +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Pengaturan> Pengguna DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Jika Anda mengatur ini, Item ini akan datang dalam drop-down di bawah induk yang dipilih." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Tidak Ada Email apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Bidang berikut tidak ada: @@ -2841,13 +2888,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Tam DocType: Web Form,Web Form Fields,Bidang Formulir Web DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Formulir yang dapat diedit pengguna di Situs web. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Batalkan Secara Permanen {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Batalkan Secara Permanen {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Opsi 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,Total apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Ini adalah kata sandi yang sangat umum. DocType: Personal Data Deletion Request,Pending Approval,Menunggu persetujuan apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Dokumen tidak dapat ditetapkan dengan benar apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Tidak diizinkan untuk {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Tidak ada nilai untuk ditampilkan DocType: Personal Data Download Request,Personal Data Download Request,Permintaan Unduhan Data Pribadi apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} membagikan dokumen ini dengan {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Pilih {0} @@ -2863,7 +2911,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Email ini dikirim ke {0} dan disalin ke {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,Login atau kata sandi salah DocType: Social Login Key,Social Login Key,Kunci Masuk Sosial -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Silakan atur Akun Email default dari Pengaturan> Email> Akun Email apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filter disimpan DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Bagaimana seharusnya mata uang ini diformat? Jika tidak disetel, akan menggunakan standar sistem" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} diatur ke status {2} @@ -2989,6 +3036,7 @@ DocType: User,Location,Lokasi apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Tidak ada data DocType: Website Meta Tag,Website Meta Tag,Meta Tag situs web DocType: Workflow State,film,film +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Disalin ke papan klip. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Pengaturan tidak ditemukan apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Label wajib DocType: Webhook,Webhook Headers,Header Webhook @@ -3197,7 +3245,7 @@ DocType: Address,Address Line 1,Baris Alamat 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Untuk Jenis Dokumen apps/frappe/frappe/model/base_document.py,Data missing in table,Data hilang dalam tabel apps/frappe/frappe/utils/bot.py,Could not identify {0},Tidak dapat mengidentifikasi {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Formulir ini telah dimodifikasi setelah Anda memuatnya +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Formulir ini telah dimodifikasi setelah Anda memuatnya apps/frappe/frappe/www/login.html,Back to Login,Kembali untuk masuk apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Tidak diatur DocType: Data Migration Mapping,Pull,Tarik @@ -3265,6 +3313,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Pemetaan Meja Anak apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,"Pengaturan Akun Email, harap masukkan kata sandi Anda untuk:" apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Terlalu banyak menulis dalam satu permintaan. Silakan kirim permintaan yang lebih kecil DocType: Social Login Key,Salesforce,Tenaga penjualan +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Mengimpor {0} dari {1} DocType: User,Tile,Ubin apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} kamar harus memiliki paling banyak satu pengguna. DocType: Email Rule,Is Spam,Apakah Spam @@ -3302,7 +3351,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,folder-tutup DocType: Data Migration Run,Pull Update,Tarik Pembaruan apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},digabung {0} menjadi {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Tidak ditemukan hasil untuk '

DocType: SMS Settings,Enter url parameter for receiver nos,Masukkan parameter url untuk no penerima apps/frappe/frappe/utils/jinja.py,Syntax error in template,Kesalahan sintaksis dalam templat apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Harap tetapkan nilai filter dalam tabel Filter Laporan. @@ -3315,6 +3363,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Maaf, Anda DocType: System Settings,In Days,Dalam berhari-hari DocType: Report,Add Total Row,Tambahkan Total Baris apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Mulai Sesi Gagal +DocType: Translation,Verified,Diverifikasi DocType: Print Format,Custom HTML Help,Bantuan HTML Khusus DocType: Address,Preferred Billing Address,Alamat Penagihan Pilihan apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Ditugaskan untuk @@ -3329,7 +3378,6 @@ DocType: Help Article,Intermediate,Menengah DocType: Module Def,Module Name,Nama Modul DocType: OAuth Authorization Code,Expiration time,Waktu kedaluwarsa apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Atur format default, ukuran halaman, gaya cetak dll." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,Anda tidak dapat menyukai sesuatu yang Anda buat DocType: System Settings,Session Expiry,Sesi Kedaluwarsa DocType: DocType,Auto Name,Nama Otomatis apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Pilih Lampiran @@ -3357,6 +3405,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Halaman Sistem DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,"Catatan: Secara default, email untuk cadangan gagal dikirim." DocType: Custom DocPerm,Custom DocPerm,DocPerm Khusus +DocType: Translation,PR sent,PR dikirim DocType: Tag Doc Category,Doctype to Assign Tags,Doctype to Tetapkan Tag DocType: Address,Warehouse,Gudang apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Pengaturan Dropbox @@ -3424,7 +3473,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Enter untuk menambahkan komentar apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Bidang {0} tidak dapat dipilih. DocType: User,Birth Date,Tanggal lahir -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Dengan Indentasi Kelompok DocType: List View Setting,Disable Count,Nonaktifkan Count DocType: Contact Us Settings,Email ID,ID Email apps/frappe/frappe/utils/password.py,Incorrect User or Password,Pengguna atau Kata Sandi salah @@ -3459,6 +3507,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Peran ini memperbarui Izin Pengguna untuk pengguna DocType: Website Theme,Theme,Tema DocType: Web Form,Show Sidebar,Tampilkan Sidebar +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Integrasi Kontak Google. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Kotak Masuk Default apps/frappe/frappe/www/login.py,Invalid Login Token,Token Masuk Tidak Valid apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Pertama atur nama dan simpan catatan. @@ -3486,7 +3535,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Harap perbaiki DocType: Top Bar Item,Top Bar Item,Item Bar Top ,Role Permissions Manager,Manajer Izin Peran -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,Ada kesalahan. Silakan laporkan ini. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} tahun yang lalu apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Wanita DocType: System Settings,OTP Issuer Name,Nama Penerbit OTP apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Tambahkan ke Aktivitas @@ -3586,6 +3635,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Pengat apps/frappe/frappe/model/document.py,none of,tidak ada DocType: Desktop Icon,Page,Halaman DocType: Workflow State,plus-sign,tanda tambah +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Bersihkan Cache dan Reload apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Tidak Dapat Memperbarui: Tautan Tidak Benar / Kedaluwarsa. DocType: Kanban Board Column,Yellow,Kuning DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Jumlah kolom untuk bidang dalam Kisi (Total Kolom dalam kisi harus kurang dari 11) @@ -3600,6 +3650,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Dewa DocType: Activity Log,Date,Tanggal DocType: Communication,Communication Type,Jenis komunikasi apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Tabel Induk +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Navigasikan daftar ke atas DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Tampilkan Kesalahan Lengkap dan Izinkan Pelaporan Masalah kepada Pengembang DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3621,7 +3672,6 @@ DocType: Notification Recipient,Email By Role,Email Dengan Peran apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,Tingkatkan untuk menambah lebih dari {0} pelanggan apps/frappe/frappe/email/queue.py,This email was sent to {0},Email ini dikirim ke {0} DocType: User,Represents a User in the system.,Merupakan Pengguna dalam sistem. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Halaman {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Mulai Format baru apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Tambahkan komentar apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} dari {1} diff --git a/frappe/translations/is.csv b/frappe/translations/is.csv index 29eeec8ebe..eeef644d6f 100644 --- a/frappe/translations/is.csv +++ b/frappe/translations/is.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Virkja stigamörk DocType: DocType,Default Sort Order,Sjálfgefin flokkun pöntunar apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Sýnir aðeins Numeric reitir frá Report +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Ýttu á Alt takkann til að virkja viðbótar flýtivísanir í valmynd og hliðarstiku DocType: Workflow State,folder-open,mappa-opinn DocType: Customize Form,Is Table,Er tafla apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Ekki er hægt að opna viðhengda skrá. Vissir þú flutt það sem CSV? DocType: DocField,No Copy,Engin afrit DocType: Custom Field,Default Value,Sjálfgefið gildi apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Bæta við er nauðsynlegt fyrir komandi póst +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Samstilla tengiliði DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Gögn Flutningur Kortlagning Detail apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Fylgdu ekki apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",PDF prentun í gegnum "Raw Print" er ekki ennþá stutt. Vinsamlegast fjarlægðu prentara kortlagninguna í Printer Settings og reyndu aftur. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} og {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Villa kom upp við að vista síur apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Sláðu inn lykilorðið þitt apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Ekki er hægt að eyða möppum Heim og fylgihluti +DocType: Email Account,Enable Automatic Linking in Documents,Virkja Sjálfvirk hlekkur í skjölum DocType: Contact Us Settings,Settings for Contact Us Page,Stillingar fyrir Hafðu samband Page DocType: Social Login Key,Social Login Provider,Félagsleg innskráningaraðili +DocType: Email Account,"For more information, click here.","Fyrir frekari upplýsingar, smelltu hér ." DocType: Transaction Log,Previous Hash,Fyrri Hash DocType: Notification,Value Changed,Gildi breytt DocType: Report,Report Type,Skýrslugerð @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Energy Point Rule apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,Vinsamlegast sláðu inn auðkenni viðskiptavinar áður en félagsleg tenging er virk DocType: Communication,Has Attachment,Hefur Viðhengi DocType: User,Email Signature,Email undirskrift -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ári (s) síðan ,Addresses And Contacts,Heimilisföng og tengiliðir apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Þetta Kanban stjórn verður einkaaðila DocType: Data Migration Run,Current Mapping,Núverandi kortlagning @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Þú ert að velja Sync Valkostur sem ALL, það mun endurskoða alla \ lesa og ólesin skilaboð frá miðlara. Þetta getur einnig valdið tvíverknað í samskiptum (tölvupóst)." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Síðasta synced {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Ekki er hægt að breyta innihaldi haus +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Engar niðurstöður fundust fyrir '

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Ekki leyft að breyta {0} eftir uppgjöf apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Forritið hefur verið uppfært í nýjan útgáfu, endurnýjaðu þessa síðu" DocType: User,User Image,User Image @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Merkj apps/frappe/frappe/public/js/frappe/chat.js,Discard,Fleygja DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Veldu mynd af u.þ.b. breidd 150px með gagnsæri bakgrunn til að ná sem bestum árangri. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,Afturkölluð +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} gildin valdir DocType: Blog Post,Email Sent,Tölvupóstur sentur DocType: Communication,Read by Recipient On,Lesið af viðtakanda DocType: User,Allow user to login only after this hour (0-24),Leyfa notanda að skrá sig aðeins eftir þetta klukkustund (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Module til útflutnings DocType: DocType,Fields,Fields -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Þú mátt ekki prenta þetta skjal +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Þú mátt ekki prenta þetta skjal apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Foreldri apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Stundið hefur verið útrunnið, vinsamlegast skráðu þig inn til að halda áfram." DocType: Assignment Rule,Priority,Forgangur @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Endurstilla OTP Se DocType: DocType,UPPER CASE,Hærra tilfelli apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,Vinsamlegast settu netfangið DocType: Communication,Marked As Spam,Merkt sem ruslpóstur +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Netfang sem á að samstilla Google tengiliði. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Flytja inn áskrifendur apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Vista síu DocType: Address,Preferred Shipping Address,Forgangs sendingar Heimilisfang DocType: GCalendar Account,The name that will appear in Google Calendar,Nafnið sem birtist í Google Dagatal +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Smelltu á {0} til að búa til Endurnýjunartákn. DocType: Email Account,Disable SMTP server authentication,Slökkva á SMTP miðlara auðkenningu DocType: Email Account,Total number of emails to sync in initial sync process ,Heildarfjöldi tölvupósts til að samstilla í upphaflegu samstillingarferli DocType: System Settings,Enable Password Policy,Virkja lykilorðsstefnu @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Settu inn kóða apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Ekki við DocType: Auto Repeat,Start Date,Upphafsdagur apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Setja mynd +DocType: Website Theme,Theme JSON,Þema JSON apps/frappe/frappe/www/list.py,My Account,Minn reikningur DocType: DocType,Is Published Field,Er birtur reitur DocType: DocField,Set non-standard precision for a Float or Currency field,Stilltu óstöðluðu nákvæmni fyrir flot eða gjaldmiðil @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Bæta við Reference: {{ reference_doctype }} {{ reference_name }} til að senda skjal tilvísun DocType: LDAP Settings,LDAP First Name Field,LDAP Fornafnarsvæði apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Sjálfgefin sending og pósthólf -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Uppsetning> Sérsníða form apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",Til að uppfæra geturðu uppfært aðeins sértæka dálka. apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',Sjálfgefið fyrir 'Athugaðu' tegund reit verður að vera '0' eða '1' apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Deila þessu skjali með @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Lén HTML DocType: Blog Settings,Blog Settings,Blog stillingar apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Nafn DocType ætti að byrja með staf og það getur aðeins verið stafir, tölur, rými og undirstrikar" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Uppsetning> Notendaskilmálar DocType: Communication,Integrations can use this field to set email delivery status,Samhæfingar geta notað þetta reit til að stilla póstsendingarstöðu apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Stillingar fyrir gáttargreiðslugátt DocType: Print Settings,Fonts,Skírnarfontur DocType: Notification,Channel,Rás DocType: Communication,Opened,Opnað DocType: Workflow Transition,Conditions,Skilyrði +apps/frappe/frappe/config/website.py,A user who posts blogs.,Notandi sem leggur inn blogg. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Ertu ekki með reikning? Skráðu þig apps/frappe/frappe/utils/file_manager.py,Added {0},Bætt við {0} DocType: Newsletter,Create and Send Newsletters,Búðu til og sendu fréttabréf DocType: Website Settings,Footer Items,Fótur atriði +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Vinsamlegast settu upp sjálfgefið tölvupóstreikning frá uppsetningu> Email> Email Account DocType: Website Slideshow Item,Website Slideshow Item,Website Slideshow Item apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Skráðu OAuth viðskiptavinarforrit DocType: Error Snapshot,Frames,Rammar @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Stig 0 er fyrir heimildir heimildarmynda, \ hærra stig fyrir heimildir á vettvangi." DocType: Address,City/Town,Borg / bær DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Þetta mun endurstilla núverandi þema þína, ertu viss um að þú viljir halda áfram?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Lögboðnar reitir sem krafist er í {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Villa við tengingu við tölvupóstreikning {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Villa kom upp við að búa til endurtekin @@ -528,7 +537,7 @@ DocType: Event,Event Category,Viðburð Flokkur apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Dálkar byggðar á apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Breyta fyrirsögn DocType: Communication,Received,Móttekin -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Þú hefur ekki aðgang að þessari síðu. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Þú hefur ekki aðgang að þessari síðu. DocType: User Social Login,User Social Login,Notandi félagsleg innskráning apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,Skrifaðu Python-skrá í sömu möppu þar sem þetta er vistað og skila dálki og niðurstöðu. DocType: Contact,Purchase Manager,Kaupstjóri @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Stil apps/frappe/frappe/utils/data.py,Operator must be one of {0},Flugrekandi verður að vera einn af {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Ef eigandi DocType: Data Migration Run,Trigger Name,Strikamerki -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Skrifaðu titla og kynningar á bloggið þitt. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Fjarlægja reit apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Hrunið öllum apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Bakgrunns litur @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,Bar DocType: SMS Settings,Enter url parameter for message,Sláðu inn url breytu fyrir skilaboð apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nýtt Custom Print Format apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} er þegar til +DocType: Workflow Document State,Is Optional State,Er valfrjáls ríki DocType: Address,Purchase User,Kaupandi DocType: Data Migration Run,Insert,Setja inn DocType: Web Form,Route to Success Link,Leið til að ná árangri Link @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Notanda DocType: File,Is Home Folder,Er heimamappa apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Tegund: DocType: Post,Is Pinned,Er festur -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Ekkert leyfi til að '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Ekkert leyfi til að '{0}' {1} DocType: Patch Log,Patch Log,Patch Log DocType: Print Format,Print Format Builder,Prentamiðlari 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",Ef það er virkt geta allir notendur skráð þig inn frá hvaða IP-tölu sem er með því að nota Two Factor Auth. Þetta er einnig hægt að stilla aðeins fyrir tiltekna notendur í User Page apps/frappe/frappe/utils/data.py,only.,aðeins. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,Skilyrði '{0}' er ógilt DocType: Auto Email Report,Day of Week,Dagur vikunnar +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Virkja Google API í Google Stillingum. DocType: DocField,Text Editor,Textaritill apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Skera apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Leitaðu eða sláðu inn skipun @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,Fjöldi DB öryggisafrita má ekki vera minna en 1 DocType: Workflow State,ban-circle,bannhringur DocType: Data Export,Excel,Excel +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Höfuð, Breadcrumbs og Meta Tags" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Stuðningur Netfang Ekki tilgreint DocType: Comment,Published,Published DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.",Athugið: Til að ná sem bestum árangri verða myndirnar að vera í sömu stærð og breiddin verður að vera meiri en hæðin. @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Tímaáætlun síðasta viðburða apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Skýrsla allra skjala hlutabréfa DocType: Website Sidebar Item,Website Sidebar Item,Website Sidebar Item apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Að gera +DocType: Google Settings,Google Settings,Google stillingar apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Veldu land þitt, tímabelti og gjaldmiðil" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Sláðu inn truflanir vefslóðir hér (td sendandi = ERPNext, notendanafn = ERPNext, lykilorð = 1234 osfrv)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Engin tölvupóstreikningur @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token ,Setup Wizard,Uppsetningarhjálp apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Skipta um mynd +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,Samstilling DocType: Data Migration Run,Current Mapping Action,Núverandi Kortlagning DocType: Email Account,Initial Sync Count,Upphafleg samstillingartölu apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Stillingar fyrir Hafðu samband Page. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Prenta snið gerð apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Engar heimildir settar fyrir þessa viðmiðun. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Auka allt +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Engin sjálfgefin Heimilisfang Snið fannst. Vinsamlega búðu til nýjan úr Uppsetning> Prentun og merkingu> Heimilisfangmát. DocType: Tag Doc Category,Tag Doc Category,Tag Doc Flokkur DocType: Data Import,Generated File,Generated File apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Skýringar @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Tímalína verður að vera tengill eða Dynamic Link DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Tilkynningar og fjöldi póstskeyta verða sendar frá þessari sendri miðlara. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Þetta er 100 algengasta lykilorðið. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Skráðu varanlega {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Skráðu varanlega {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} er ekki til, veldu nýtt skotmark til að sameina" DocType: Energy Point Rule,Multiplier Field,Margfeldisviðfangsefni DocType: Workflow,Workflow State Field,Workflow State Field @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} þakka vinnu þinni við {1} með {2} stigum DocType: Auto Email Report,Zero means send records updated at anytime,Núll þýðir að senda skrár uppfærð hvenær sem er apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Ekki er hægt að breyta gildi fyrir {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Stillingar Google API. DocType: System Settings,Force User to Reset Password,Þvingaðu notanda til að endurstilla lykilorð apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Skýrslur byggingarskýrslna eru stjórnað beint af skýrslugerðinni. Ekkert að gera. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Breyta síu @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,fyrir DocType: S3 Backup Settings,eu-north-1,eu-norður-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Aðeins ein regla leyfð með sömu hlutverki, stigi og {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Þú hefur ekki heimild til að uppfæra þetta vefform skjal -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Hámarksfylling viðhengis fyrir þessa skrá náð. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Hámarksfylling viðhengis fyrir þessa skrá náð. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,Gakktu úr skugga um að tilvísunarskjalin séu ekki hringlaga tengd. DocType: DocField,Allow in Quick Entry,Leyfa í flýtiritun DocType: Error Snapshot,Locals,Heimamenn @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Undantekningartegund apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},Ekki er hægt að eyða eða hætta við því að {0} {1} tengist {2} {3} {4} apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTP leyndarmál er aðeins hægt að endurstilla af stjórnanda. -DocType: Web Form Field,Page Break,Page Break DocType: Website Script,Website Script,Website Script DocType: Integration Request,Subscription Notification,Tilkynning um áskrift DocType: DocType,Quick Entry,Flýtileiðir @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,Setja eign eftir viðvörun apps/frappe/frappe/__init__.py,Thank you,Þakka þér fyrir apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slaka Webhooks fyrir innri samþættingu apps/frappe/frappe/config/settings.py,Import Data,Flytja inn gögn +DocType: Translation,Contributed Translation Doctype Name,Framlagður Þýðing Doctype Name DocType: Social Login Key,Office 365,Skrifstofa 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,Auðkenni DocType: Review Level,Review Level,Review Level @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Tekist að klára apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Listi apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Þakka þér fyrir -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Nýtt {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Er aðal tengiliður DocType: Print Format,Raw Commands,Raw Commands apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Sniðmát fyrir prentunarform @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Villur í bakgrunn apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Finndu {0} í {1} DocType: Email Account,Use SSL,Notaðu SSL DocType: DocField,In Standard Filter,Í venjulegu síu +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Engar Google tengiliðir til staðar til að samstilla. DocType: Data Migration Run,Total Pages,Samtals síður apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: Ekki er hægt að stilla reitinn {1} sem Unique þar sem hún hefur ekki einstaka gildi DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.",Ef kveikt er á notendum verður tilkynnt um notendur í hvert sinn sem þeir skrá þig inn. Ef ekki er gert kleift að tilkynna notendum einu sinni einu sinni. @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,Sjálfvirkni apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Unzipping skrár ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Leita að '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Eitthvað fór úrskeiðis -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Vinsamlegast vistaðu áður en þú hleður því við. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,Vinsamlegast vistaðu áður en þú hleður því við. DocType: Version,Table HTML,Tafla HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,miðstöð DocType: Page,Standard,Standard @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Engar niðu apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} færslur eytt apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,Eitthvað fór úrskeiðis á meðan að búa til aðgangsmerki fyrir dropbox. Vinsamlegast athugaðu villuskilaboð til að fá frekari upplýsingar. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Afkomendur -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Engin sjálfgefin Heimilisfang Snið fannst. Vinsamlega búðu til nýjan úr Uppsetning> Prentun og merkingu> Heimilisfangmát. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google tengiliðir hafa verið stilltir. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Fela upplýsingar apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Leturgerðir apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Áskrift þín rennur út á {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Staðfesting mistókst meðan þú fékkst tölvupóst frá tölvupóstreikningi {0}. Skilaboð frá miðlara: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Stats byggt á árangri síðustu viku (frá {0} til {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,Sjálfvirk tenging getur aðeins verið virk ef inntak er virk. DocType: Website Settings,Title Prefix,Titill Forskeyti apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Staðfestingarforrit sem þú getur notað eru: DocType: Bulk Update,Max 500 records at a time,Max 500 færslur í einu @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,Tilkynna síur apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Veldu dálka DocType: Event,Participants,Þátttakendur DocType: Auto Repeat,Amended From,Breytt frá -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Upplýsingarnar þínar hafa verið sendar inn +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Upplýsingarnar þínar hafa verið sendar inn DocType: Help Category,Help Category,Hjálp Flokkur apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 mánuður apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Veldu núverandi snið til að breyta eða hefja nýtt snið. @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Field to Track DocType: User,Generate Keys,Búa til lykla DocType: Comment,Unshared,Unshared -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Vistað +DocType: Translation,Saved,Vistað DocType: OAuth Client,OAuth Client,OAuth Viðskiptavinur DocType: System Settings,Disable Standard Email Footer,Slökkva á Standard Email Footer apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Prentasnið {0} er óvirk @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Síðast uppf DocType: Data Import,Action,Aðgerð apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Viðskiptavinur lykill er krafist DocType: Chat Profile,Notifications,Tilkynningar +DocType: Translation,Contributed,Stuðlað DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy DocType: Report,Custom Report,Sérsniðin skýrsla DocType: Workflow State,info-sign,upplýsingar-merki @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Hafa samband DocType: LDAP Settings,LDAP Username Field,LDAP notandanafn apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Ekki er hægt að stilla {0} reitinn sem einstakt í {1}, þar sem gildir eru ekki einstök" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Uppsetning> Sérsníða form DocType: User,Social Logins,Félagsleg innskráning DocType: Workflow State,Trash,Rusl DocType: Stripe Settings,Secret Key,Secret Key @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,Titill reitur apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Gat ekki tengst sendan tölvupóstmiðlara DocType: File,File URL,Skráarslóð DocType: Help Article,Likes,Líkar við +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Samþætting Google tengiliða er óvirk. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Þú þarft að vera skráður inn og hafa System Manager hlutverk til að fá aðgang að öryggisafritum. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Fyrsta stig DocType: Blogger,Short Name,Stutt nafn @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Flytja inn zip DocType: Contact,Gender,Kyn DocType: Workflow State,thumbs-down,þumlar niður -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Biðröð ætti að vera einn af {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Ekki er hægt að stilla tilkynningu um skjalagerð {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Að bæta við kerfisstjóra við þennan notanda þar sem það verður að vera að minnsta kosti einn kerfisstjóri apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Velkomin tölvupóst sent DocType: Transaction Log,Chaining Hash,Keðja Hash DocType: Contact,Maintenance Manager,Viðhaldsstjóri +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Til samanburðar, notaðu> 5, <10 eða = 324. Fyrir svið, notaðu 5:10 (fyrir gildi á milli 5 og 10)." apps/frappe/frappe/utils/bot.py,show,sýna apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Deila vefslóð apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Óstudd skráarsnið @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,Tilkynning DocType: Data Import,Show only errors,Sýna aðeins villur DocType: Energy Point Log,Review,Review apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Rúnar fjarlægðar -DocType: GSuite Settings,Google Credentials,Google persónuskilríki +DocType: Google Settings,Google Credentials,Google persónuskilríki apps/frappe/frappe/www/login.html,Or login with,Eða skráðu þig inn með apps/frappe/frappe/model/document.py,Record does not exist,Upptökan er ekki til apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Nýtt nafn skýrslunnar @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,Listi DocType: Workflow State,th-large,th-stór apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Ekki hægt að stilla Úthluta Senda ef ekki er hægt að undirskrá apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Ekki tengd við skrá +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Villa kom upp við að tengjast QZ Tray Application ...

Þú þarft að hafa QZ Tray forritið sett upp og hlaupið til að nota Raw Print eiginleiki.

Smelltu hér til að hlaða niður og setja upp QZ Tray .
Smelltu hér til að læra meira um Raw Prentun ." DocType: Chat Message,Content,Innihald DocType: Workflow Transition,Allow Self Approval,Leyfa sjálfs samþykki apps/frappe/frappe/www/qrcode.py,Page has expired!,Síða hefur liðið! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,hönd til hægri DocType: Website Settings,Banner is above the Top Menu Bar.,Banner er fyrir ofan Top Menu Bar. apps/frappe/frappe/www/update-password.html,Invalid Password,ógilt lykilorð apps/frappe/frappe/utils/data.py,1 month ago,Fyrir 1 mánuði síðan +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Leyfa aðgangi að Google tengiliðum DocType: OAuth Client,App Client ID,App Client ID DocType: DocField,Currency,Gjaldmiðill DocType: Website Settings,Banner,Borði @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Markmið DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Ef hlutverki hefur ekki aðgang á stigi 0, þá eru hærri stigum tilgangslaust." DocType: ToDo,Reference Type,Tilvísun Tegund -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Leyfa DocType, DocType. Farðu varlega!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Leyfa DocType, DocType. Farðu varlega!" DocType: Domain Settings,Domain Settings,Lénstillingar DocType: Auto Email Report,Dynamic Report Filters,Dynamic Report Filters DocType: Energy Point Log,Appreciation,Þakklæti @@ -1468,6 +1489,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,okkur-vestur-2 DocType: DocType,Is Single,Er einn apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Búðu til nýtt snið +DocType: Google Contacts,Authorize Google Contacts Access,Leyfa aðgangi að Google tengiliðum DocType: S3 Backup Settings,Endpoint URL,Endapunktur slóð DocType: Social Login Key,Google,Google DocType: Contact,Department,Deild @@ -1482,7 +1504,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Úthluta til DocType: List Filter,List Filter,Listasía DocType: Dashboard Chart Link,Chart,Mynd apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Ekki hægt að fjarlægja -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Sendu inn þetta skjal til að staðfesta +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Sendu inn þetta skjal til að staðfesta apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} er þegar til. Veldu annað heiti apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Þú hefur óvarnar breytingar á þessu formi. Vinsamlegast vistaðu áður en þú heldur áfram. apps/frappe/frappe/model/document.py,Action Failed,Aðgerð mistókst @@ -1564,6 +1586,7 @@ DocType: DocField,Display,Sýna apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Svara öllum DocType: Calendar View,Subject Field,Subject Field apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Útgáfutímabilið verður að vera í formi {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},Sækja um: {0} DocType: Workflow State,zoom-in,zoom-in apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Mistókst að tengjast við miðlara apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Dagsetning {0} verður að vera í sniði: {1} @@ -1575,8 +1598,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Táknmynd birtist á takkanum DocType: Role Permission for Page and Report,Set Role For,Setja hlutverk fyrir +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Sjálfvirk tenging er aðeins hægt að virkja fyrir eina tölvupóstreikning. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Engin póstreikningur úthlutað +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Email Account ekki uppsetning. Búðu til nýjan tölvupóstreikning frá Uppsetning> Tölvupóstur> Netfang apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Verkefni +DocType: Google Contacts,Last Sync On,Síðasta samstilling á apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},fengin með {0} með sjálfvirkri reglu {1} apps/frappe/frappe/config/website.py,Portal,Portal apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Takk fyrir tölvupóstinn þinn @@ -1597,7 +1623,6 @@ DocType: GSuite Settings,GSuite Settings,GSuite stillingar DocType: Integration Request,Remote,Fjarstýring DocType: File,Thumbnail URL,Vefslóð fyrir smámynd apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Sækja skýrslu -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Uppsetning> Notandi apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Sérsniðin fyrir {0} flutt út til:
{1} DocType: GCalendar Account,Calendar Name,Nafn dagsins apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Innskráning auðkenni þitt er @@ -1647,6 +1672,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Farð apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Myndasvæði verður að vera gilt nafn apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,Þú þarft að vera skráður inn til að fá aðgang að þessari síðu DocType: Assignment Rule,Example: {{ subject }},Dæmi: {{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Veldanafn {0} er takmörkuð apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Þú getur ekki sagt upp 'Read Only' fyrir reit {0} DocType: Social Login Key,Enable Social Login,Virkja félagslega innskráningu DocType: Workflow,Rules defining transition of state in the workflow.,Reglur sem skilgreina ástandsstjórnun í vinnuflæði. @@ -1667,10 +1693,10 @@ DocType: Website Settings,Route Redirects,Leiðsögn apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Netfang pósthólfs apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},endurreist {0} sem {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Úthlutaðu skjölum sjálfkrafa til notenda +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Opna Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Email sniðmát fyrir algengar fyrirspurnir. DocType: Letter Head,Letter Head Based On,Bréfshöfundur byggður á apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Vinsamlegast lokaðu þessum glugga -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Greiðsla lokið DocType: Contact,Designation,Tilnefning DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Meta Tags @@ -1709,6 +1735,7 @@ DocType: System Settings,Choose authentication method to be used by all users,Ve DocType: Error Snapshot,Parent Error Snapshot,Skyndimynd fyrir foreldra Villa DocType: GCalendar Account,GCalendar Account,GCalendar reikningur DocType: Language,Language Name,Language Name +DocType: Workflow Document State,Workflow Action is not created for optional states,Workflow Aðgerð er ekki búin til fyrir valfrjáls ríki DocType: Customize Form,Customize Form,Sérsníða form DocType: DocType,Image Field,Myndasvæði apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Bætt við {0} ({1}) @@ -1750,6 +1777,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,Notaðu þessa reglu ef notandi er eigandi DocType: About Us Settings,Org History Heading,Org Saga Fyrirsögn apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Server Villa +DocType: Contact,Google Contacts Description,Google Tengiliðir Lýsing apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Ekki er hægt að endurnefna venjuleg hlutverk DocType: Review Level,Review Points,Review Points apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Vantar breytu Kanban stjórnarheiti @@ -1767,7 +1795,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Ekki í þróunaraðgerð! Settu inn á site_config.json eða veldu 'Custom' DocType. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,fengu {0} stig DocType: Web Form,Success Message,Velgengni skilaboð -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Til samanburðar, notaðu> 5, <10 eða = 324. Fyrir svið, notaðu 5:10 (fyrir gildi á milli 5 og 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Lýsing fyrir skráningu síðu, í texta, aðeins nokkrar línur. (hámark 140 stafir)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Sýna heimildir DocType: DocType,Restrict To Domain,Takmarka að léni @@ -1789,6 +1816,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Ekki f apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Setja Magn DocType: Auto Repeat,End Date,Loka dagsetning DocType: Workflow Transition,Next State,Næsta ríki +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Google Tengiliðir synced. DocType: System Settings,Is First Startup,Er fyrsta gangsetningin apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},uppfært í {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Flytja til @@ -1838,6 +1866,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Dagatal apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Gögn innflutnings sniðmát DocType: Workflow State,hand-left,hönd til vinstri +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Veldu mörg listatriði apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Afritunarstærð: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Tengt við {0} DocType: Braintree Settings,Private Key,Einkalykill @@ -1880,13 +1909,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Vextir DocType: Bulk Update,Limit,Takmarka DocType: Print Settings,Print taxes with zero amount,Prenta skatta með núll upphæð -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Email Account ekki uppsetning. Búðu til nýjan tölvupóstreikning frá Uppsetning> Tölvupóstur> Netfang DocType: Workflow State,Book,Bók DocType: S3 Backup Settings,Access Key ID,Aðgangs lykil auðkenni DocType: Chat Message,URLs,Slóðir apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Nöfn og eftirnöfn sjálfir eru auðvelt að giska á. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Skýrsla {0} DocType: About Us Settings,Team Members Heading,Liðsmaður fyrirsögn +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Veldu lista atriði apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Skjal {0} hefur verið stillt til að lýsa {1} með {2} DocType: Address Template,Address Template,Heimilisfang sniðmát DocType: Workflow State,step-backward,skref afturábak @@ -1910,6 +1939,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Flytja út sérsniðnar heimildir apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Ekkert: Enda vinnuflæði DocType: Version,Version,Útgáfa +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Opna lista atriði apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 mánuðir DocType: Chat Message,Group,Hópur apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Það er einhver vandamál með skráarslóðina: {0} @@ -1965,6 +1995,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 ár apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} breyttu stigum þínum á {1} DocType: Workflow State,arrow-down,ör niður DocType: Data Import,Ignore encoding errors,Hunsa kóðunarvillur +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Landslag DocType: Letter Head,Letter Head Name,Nafn bréfshafa DocType: Web Form,Client Script,Viðskiptavinur Script DocType: Assignment Rule,Higher priority rule will be applied first,Reglur um forgangsverkefni verða fyrst beitt @@ -2009,6 +2040,7 @@ DocType: Kanban Board Column,Green,Grænn apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Einungis lögboðnar reitir eru nauðsynlegar fyrir nýjar færslur. Þú getur eytt óbundnum dálkum ef þú vilt. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} verður að byrja og enda með bréfi og geta aðeins innihaldið bókstafi, vísbending eða undirstrikun." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Hreyfill Aðal Aðgerð apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Búðu til notendanafn apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Raða reit {0} verður að vera gild gilt heiti DocType: Auto Email Report,Filter Meta,Sía Meta @@ -2038,6 +2070,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Tímalína apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Hleð inn ... DocType: Auto Email Report,Half Yearly,Hálft árlega +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Prófílinn minn apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Síðast breytt dagsetning DocType: Contact,First Name,Fyrsta nafn DocType: Post,Comments,Athugasemdir @@ -2060,6 +2093,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Content Hash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Innlegg eftir {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} úthlutað {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Engar nýjar Google tengiliðir voru samstilltar. DocType: Workflow State,globe,heimurinn apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Meðaltal af {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Hreinsa villuboð @@ -2086,6 +2120,8 @@ DocType: Workflow State,Inverse,Andstæða DocType: Activity Log,Closed,Lokað DocType: Report,Query,Fyrirspurn DocType: Notification,Days After,Dagar eftir +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Blaðsíður +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portrett apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Beðið um tímasetningu DocType: System Settings,Email Footer Address,Email Footer Address apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Uppfærsla orkusparnaðar @@ -2113,6 +2149,7 @@ For Select, enter list of Options, each on a new line.","Fyrir Tenglar skaltu sl apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,Fyrir 1 mínútu apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Engar virkar fundur apps/frappe/frappe/model/base_document.py,Row,Row +DocType: Contact,Middle Name,Millinafn apps/frappe/frappe/public/js/frappe/request.js,Please try again,Vinsamlegast reyndu aftur DocType: Dashboard Chart,Chart Options,Myndarvalkostir DocType: Data Migration Run,Push Failed,Breyting mistókst @@ -2141,6 +2178,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,Breyta stærð-lítill DocType: Comment,Relinked,Tilvísun DocType: Role Permission for Page and Report,Roles HTML,Hlutverk HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Fara apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Workflow mun byrja eftir að vista. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.",Ef gögnin þín eru í HTML skaltu afrita líma nákvæmlega HTML kóða með merkjunum. apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Dagsetningar eru oft auðvelt að giska á. @@ -2169,7 +2207,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Skrifborð táknið apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,hætt við þetta skjal apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Dagsetningarsvið -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Uppsetning> Notendaskilmálar apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} þakka {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Gildi breytt apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Villa í tilkynningu @@ -2234,6 +2271,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Magn eyða DocType: DocShare,Document Name,Skjalheiti apps/frappe/frappe/config/customization.py,Add your own translations,Bæta við eigin þýðingar +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Skoðaðu lista niður DocType: S3 Backup Settings,eu-central-1,eu-Mið-1 DocType: Auto Repeat,Yearly,Árlega apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Endurnefna @@ -2284,6 +2322,7 @@ DocType: Workflow State,plane,flugvél apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Nested set villa. Vinsamlegast hafðu samband við stjórnandann. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Sýna skýrslu DocType: Auto Repeat,Auto Repeat Schedule,Sjálfvirk endurtaka áætlun +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Skoða Ref DocType: Address,Office,Skrifstofa DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} dögum síðan @@ -2317,7 +2356,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Va apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Stillingar mínir apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Heiti hóps getur ekki verið tómt. DocType: Workflow State,road,vegur -DocType: Website Route Redirect,Source,Heimild +DocType: Contact,Source,Heimild apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Virkir fundir apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Það getur verið aðeins einn Fold í formi apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Nýtt spjall @@ -2339,6 +2378,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Vinsamlegast sláðu inn Leyfi URL DocType: Email Account,Send Notification to,Senda tilkynningu til apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox öryggisafrit stillingar +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,Eitthvað fór úrskeiðis á táknmyndinni. Smelltu á {0} til að búa til nýjan. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Fjarlægja allar sérstillingar? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Aðeins Stjórnandi getur breytt DocType: Auto Repeat,Reference Document,Tilvísunarskjal @@ -2363,6 +2403,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Hægt er að velja hlutverk fyrir notendur frá notendasíðunni. DocType: Website Settings,Include Search in Top Bar,Innihalda leit í efstu stikunni apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Urgent] Villa við að búa til endurteknar% s fyrir% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Global Flýtileiðir DocType: Help Article,Author,Höfundur DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Ekkert skjal fannst fyrir tiltekna síur @@ -2398,10 +2439,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, Row {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Ef þú ert að hlaða upp nýjum skrám, verður "Nafngiftaröð" skylt, ef það er til staðar." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Breyta eiginleikum -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Ekki er hægt að opna dæmi þegar {0} er opið +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,Ekki er hægt að opna dæmi þegar {0} er opið DocType: Activity Log,Timeline Name,Heiti tímalínu DocType: Comment,Workflow,Workflow apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Vinsamlegast settu grunnslóðina inn í félagslega innskráningarlykil fyrir Frappe +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Flýtileiðir á lyklaborðinu DocType: Portal Settings,Custom Menu Items,Sérsniðnar valmyndaratriði apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,Lengd {0} ætti að vera á milli 1 og 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Tenging tapað. Sumar aðgerðir virka ekki. @@ -2464,6 +2506,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Rútur bæt DocType: DocType,Setup,Uppsetning apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} búin til með góðum árangri apps/frappe/frappe/www/update-password.html,New Password,nýtt lykilorð +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Veldu reit apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Skildu þetta samtal DocType: About Us Settings,Team Members,Liðsfélagar DocType: Blog Settings,Writers Introduction,Rithöfundar Inngangur @@ -2533,13 +2576,12 @@ DocType: Chat Room,Name,Nafn DocType: Communication,Email Template,Email Sniðmát DocType: Energy Point Settings,Review Levels,Skoðaðu stig DocType: Print Format,Raw Printing,Hráprentun -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Get ekki opnað {0} þegar dæmi hennar er opið +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,Get ekki opnað {0} þegar dæmi hennar er opið DocType: DocType,"Make ""name"" searchable in Global Search",Gerðu "nafn" leita í Global Search DocType: Data Migration Mapping,Data Migration Mapping,Gagnaflutningur Kortlagning DocType: Data Import,Partially Successful,Að hluta til árangursrík DocType: Communication,Error,Villa apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Veldissnið er ekki hægt að breyta frá {0} til {1} í röð {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Villa kom upp við að tengjast QZ Tray Application ...

Þú þarft að hafa QZ Tray forritið sett upp og hlaupið til að nota Raw Print eiginleiki.

Smelltu hér til að hlaða niður og setja upp QZ Tray .
Smelltu hér til að læra meira um Raw Prentun ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Taka mynd apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,Forðastu ár sem tengjast þér. DocType: Web Form,Allow Incomplete Forms,Leyfa ófullnægjandi eyðublöð @@ -2635,7 +2677,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Veldu miða = "_blank" til að opna á nýjum síðu. DocType: Portal Settings,Portal Menu,Portal Valmynd DocType: Website Settings,Landing Page,Áfangasíðu -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,Vinsamlegast skráðu þig inn eða skráðu þig inn til að byrja DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Valkostir fyrir tengiliði, eins og "Sölufyrirspurn, Stuðningsfyrirspurn" osfrv. Á nýjum línu eða aðskilin með kommum." apps/frappe/frappe/twofactor.py,Verfication Code,Verfication Code apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} er þegar skráð @@ -2721,6 +2762,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Gagnaflutnings DocType: Address,Sales User,Sala notandi apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Breyta reitareiginleikum (fela, readonly, leyfi osfrv)" DocType: Property Setter,Field Name,Nafn Field +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Viðskiptavinur DocType: Print Settings,Font Size,Leturstærð DocType: User,Last Password Reset Date,Síðasta lykilorð Endurstilla dagsetning DocType: System Settings,Date and Number Format,Dagsetning og númer snið @@ -2786,6 +2828,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Group Hnútur apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Sameina með núverandi DocType: Blog Post,Blog Intro,Blog Intro apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nýtt nefnt +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Hoppa í reitinn DocType: Prepared Report,Report Name,Nafn skýrslu apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Vinsamlegast endurnýjaðu til að fá nýjustu skjalið. apps/frappe/frappe/core/doctype/communication/communication.js,Close,Loka @@ -2795,10 +2838,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Viðburður DocType: Social Login Key,Access Token URL,Aðgangsheimildarslóð apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Vinsamlegast settu Dropbox aðgangs lykla í stillingunni þinni +DocType: Google Contacts,Google Contacts,Google tengiliðir DocType: User,Reset Password Key,Endurstilla lykilorð lykil apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Breytt með DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.",Til að endurnýja {0}. +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Vistað með góðum árangri +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Sendu tölvupóst til {0} til að tengja það hér. DocType: File,Folder,Mappa DocType: DocField,Perm Level,Perm Level DocType: Print Settings,Page Settings,Page Stillingar @@ -2828,6 +2874,7 @@ DocType: Workflow State,remove-sign,fjarlægja táknið DocType: Dashboard Chart,Full,Fullt DocType: DocType,User Cannot Create,Notandi getur ekki búið til apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Þú fékkst {0} stig +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Uppsetning> Notandi DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.",Ef þú setur þetta mun þetta atriði koma niður í fellilistanum undir völdu foreldri. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Engar póstar apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Eftirfarandi svið vantar: @@ -2841,13 +2888,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Sý DocType: Web Form,Web Form Fields,Vefur Form Fields DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Notendabreytanlegt eyðublað á vefsvæðinu. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Varanlega hætta við {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Varanlega hætta við {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Valkostur 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,Samtals apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Þetta er mjög algengt lykilorð. DocType: Personal Data Deletion Request,Pending Approval,Bíður staðfestingar apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Skjalið gæti ekki verið rétt úthlutað apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Ekki leyft fyrir {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Engin gildi til að sýna DocType: Personal Data Download Request,Personal Data Download Request,Persónuleg gögn Sækja um beiðni apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} deildi þessu skjali með {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Veldu {0} @@ -2863,7 +2911,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Þetta tölvupóstur var sendur til {0} og afritað í {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,Ógilt innskráning eða lykilorð DocType: Social Login Key,Social Login Key,Social Innskráning lykill -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Vinsamlegast settu upp sjálfgefið tölvupóstreikning frá uppsetningu> Email> Email Account apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Síur vistaðar DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Hvernig ætti þessi gjaldmiðill að vera sniðinn? Ef ekki er stillt, mun nota sjálfgefna kerfið" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} er stillt á stöðu {2} @@ -2989,6 +3036,7 @@ DocType: User,Location,Staðsetning apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Engin gögn DocType: Website Meta Tag,Website Meta Tag,Website Meta Tag DocType: Workflow State,film,kvikmynd +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Afritað á klemmuspjald. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Stillingar fundust ekki apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Merki er skylt DocType: Webhook,Webhook Headers,Webhook Headers @@ -3197,7 +3245,7 @@ DocType: Address,Address Line 1,Heimilisfang 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Fyrir skjal Tegund apps/frappe/frappe/model/base_document.py,Data missing in table,Gögn sem vantar í töflunni apps/frappe/frappe/utils/bot.py,Could not identify {0},Gat ekki fundið {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Þetta eyðublað hefur verið breytt eftir að þú hefur sett það inn +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Þetta eyðublað hefur verið breytt eftir að þú hefur sett það inn apps/frappe/frappe/www/login.html,Back to Login,Til baka í Innskráning apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Ekki sett DocType: Data Migration Mapping,Pull,Dragðu @@ -3265,6 +3313,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Barnatafla kortlagnin apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Uppsetning tölvupóstreiknings vinsamlegast sláðu inn lykilorðið þitt fyrir: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Of mörg skrifar í einum beiðni. Vinsamlegast sendu minni beiðnir DocType: Social Login Key,Salesforce,Sölustjóri +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Flytur inn {0} af {1} DocType: User,Tile,Flísar apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} herbergi verður að hafa amk einn notandi. DocType: Email Rule,Is Spam,Er ruslpóstur @@ -3302,7 +3351,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,möppu-loka DocType: Data Migration Run,Pull Update,Dragðu uppfærslu apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},sameinuð {0} í {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Engar niðurstöður fundust fyrir '

DocType: SMS Settings,Enter url parameter for receiver nos,Sláðu inn url breytu fyrir móttakanda nos apps/frappe/frappe/utils/jinja.py,Syntax error in template,Setningafræði í sniðmáti apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Vinsamlegast settu síur gildi í Report Filter töflunni. @@ -3315,6 +3363,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.",Því miður DocType: System Settings,In Days,Í dögum DocType: Report,Add Total Row,Bæta Samtals Röð apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Session Start tókst ekki +DocType: Translation,Verified,Staðfest DocType: Print Format,Custom HTML Help,Sérsniðin HTML hjálp DocType: Address,Preferred Billing Address,Valinn innheimtu Heimilisfang apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Úthlutað til @@ -3329,7 +3378,6 @@ DocType: Help Article,Intermediate,Intermediate DocType: Module Def,Module Name,Module Name DocType: OAuth Authorization Code,Expiration time,Gildistími apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Stilltu sjálfgefið snið, síðu stærð, prenta stíl o.fl." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,Þú getur ekki eins og eitthvað sem þú bjóst til DocType: System Settings,Session Expiry,Þingstími DocType: DocType,Auto Name,Sjálfvirkt nafn apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Veldu Viðhengi @@ -3357,6 +3405,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,System Page DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Til athugunar: Sjálfgefið tölvupóstar fyrir mistókst afrit eru send. DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm +DocType: Translation,PR sent,PR send DocType: Tag Doc Category,Doctype to Assign Tags,Doctype að úthluta merkjum DocType: Address,Warehouse,Vörugeymsla apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Dropbox skipulag @@ -3424,7 +3473,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Sláðu inn til að bæta við ummælum apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Veldi {0} er ekki hægt að velja. DocType: User,Birth Date,Fæðingardagur -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Með samdrætti DocType: List View Setting,Disable Count,Slökktu á Count DocType: Contact Us Settings,Email ID,Netfang apps/frappe/frappe/utils/password.py,Incorrect User or Password,Rangt notandi eða lykilorð @@ -3459,6 +3507,7 @@ DocType: Website Settings,<head> HTML,<höfuð> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Þetta hlutverk uppfærir notendaskilyrði fyrir notanda DocType: Website Theme,Theme,Þema DocType: Web Form,Show Sidebar,Sýna skenkur +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Samþætting Google tengiliða. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Sjálfgefið pósthólf apps/frappe/frappe/www/login.py,Invalid Login Token,Ógilt innskráningartákn apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Settu fyrst nafnið og vistaðu skrána. @@ -3486,7 +3535,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Vinsamlegast lagaðu DocType: Top Bar Item,Top Bar Item,Efsta hluti barsins ,Role Permissions Manager,Hlutverk Leyfisstjóri -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,Það voru villur. Vinsamlegast tilkynnið þetta. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ári (s) síðan apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Kona DocType: System Settings,OTP Issuer Name,OTP Útgefandi Nafn apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Bæta við til að gera @@ -3586,6 +3635,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Tungum apps/frappe/frappe/model/document.py,none of,ekkert af DocType: Desktop Icon,Page,Síða DocType: Workflow State,plus-sign,plús-merki +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Hreinsa skyndiminni og endurhlaða apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Ekki hægt að uppfæra: Rangt / Útrunnið Link. DocType: Kanban Board Column,Yellow,Gulur DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Fjöldi dálka fyrir reit í rist (Samtals dálkar í rist skulu vera undir 11) @@ -3600,6 +3650,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,New DocType: Activity Log,Date,Dagsetning DocType: Communication,Communication Type,Samskiptategund apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Móðurborð +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Flettu upp lista DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Sýna fullt villa og leyfa tilkynningu um vandamál til þróunaraðila DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3621,7 +3672,6 @@ DocType: Notification Recipient,Email By Role,Email eftir hlutverki apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,Vinsamlegast uppfærðu til að bæta við fleiri en {0} áskrifendum apps/frappe/frappe/email/queue.py,This email was sent to {0},Þetta tölvupóstur var sendur til {0} DocType: User,Represents a User in the system.,Fulltrúi notanda í kerfinu. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Síða {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Byrja nýtt snið apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Bæta við athugasemd apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} af {1} diff --git a/frappe/translations/it.csv b/frappe/translations/it.csv index 1fa4908365..0ad2c037ee 100644 --- a/frappe/translations/it.csv +++ b/frappe/translations/it.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Abilita gradienti DocType: DocType,Default Sort Order,Ordine di ordinamento predefinito apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Mostra solo i campi numerici da Report +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Premi il tasto Alt per attivare scorciatoie aggiuntive in Menu e Sidebar DocType: Workflow State,folder-open,cartella-open DocType: Customize Form,Is Table,È tavolo apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Impossibile aprire il file allegato. L'hai esportato come CSV? DocType: DocField,No Copy,Nessuna copia DocType: Custom Field,Default Value,Valore predefinito apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Aggiungi a è obbligatorio per le e-mail in arrivo +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Sincronizzare i contatti DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Dettaglio mappatura migrazione dati apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Smetti apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",La stampa di PDF tramite "Raw Print" non è ancora supportata. Rimuovere la mappatura della stampante in Impostazioni stampante e riprovare. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} e {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Si è verificato un errore durante il salvataggio dei filtri apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Inserisci la tua password apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Impossibile eliminare le cartelle Home e Allegati +DocType: Email Account,Enable Automatic Linking in Documents,Abilita il collegamento automatico nei documenti DocType: Contact Us Settings,Settings for Contact Us Page,Impostazioni per la pagina Contattaci DocType: Social Login Key,Social Login Provider,Provider di accesso sociale +DocType: Email Account,"For more information, click here.","Per maggiori informazioni, clicca qui ." DocType: Transaction Log,Previous Hash,Hash precedente DocType: Notification,Value Changed,Valore cambiato DocType: Report,Report Type,Tipo di rapporto @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Regola Punto Energia apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,Inserisci l'ID cliente prima che l'accesso social sia abilitato DocType: Communication,Has Attachment,Ha attaccamento DocType: User,Email Signature,Firma e-mail -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} anno / i fa ,Addresses And Contacts,Indirizzi e contatti apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Questo consiglio Kanban sarà privato DocType: Data Migration Run,Current Mapping,Mappatura corrente @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Stai selezionando l'opzione di sincronizzazione come TUTTO, risincronizzerà tutti i messaggi \ letti e non letti dal server. Ciò potrebbe anche causare la duplicazione \ della comunicazione (e-mail)." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Ultima sincronizzazione {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Impossibile modificare il contenuto dell'intestazione +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Nessun risultato trovato per '

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Non è consentito cambiare {0} dopo l'invio apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","L'applicazione è stata aggiornata a una nuova versione, si prega di aggiornare questa pagina" DocType: User,User Image,Immagine dell'utente @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Contr apps/frappe/frappe/public/js/frappe/chat.js,Discard,Scartare DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Seleziona un'immagine di circa 150 px di larghezza con uno sfondo trasparente per i migliori risultati. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,recidivato +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} valori selezionati DocType: Blog Post,Email Sent,Email inviata DocType: Communication,Read by Recipient On,Leggi per destinatario su DocType: User,Allow user to login only after this hour (0-24),Consenti all'utente di accedere solo dopo quest'ora (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Modulo da esportare DocType: DocType,Fields,campi -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Non sei autorizzato a stampare questo documento +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Non sei autorizzato a stampare questo documento apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Genitore apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","La sessione è scaduta, effettua nuovamente il login per continuare." DocType: Assignment Rule,Priority,Priorità @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Reimposta segreto DocType: DocType,UPPER CASE,LETTERE MAIUSCOLE apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,Si prega di impostare l'indirizzo e-mail DocType: Communication,Marked As Spam,Contrassegnato come spam +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Indirizzo email i cui contatti Google devono essere sincronizzati. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Importa abbonati apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Salva filtro DocType: Address,Preferred Shipping Address,Indirizzo di spedizione preferito DocType: GCalendar Account,The name that will appear in Google Calendar,Il nome che apparirà in Google Calendar +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Fare clic su {0} per generare il token di aggiornamento. DocType: Email Account,Disable SMTP server authentication,Disabilitare l'autenticazione del server SMTP DocType: Email Account,Total number of emails to sync in initial sync process ,Numero totale di email da sincronizzare nel processo di sincronizzazione iniziale DocType: System Settings,Enable Password Policy,Abilita criterio password @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Inserire codice apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Non in DocType: Auto Repeat,Start Date,Data d'inizio apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Imposta grafico +DocType: Website Theme,Theme JSON,Tema JSON apps/frappe/frappe/www/list.py,My Account,Il mio account DocType: DocType,Is Published Field,È il campo pubblicato DocType: DocField,Set non-standard precision for a Float or Currency field,Imposta la precisione non standard per un campo Float o Valuta @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Aggiungi Reference: {{ reference_doctype }} {{ reference_name }} per inviare riferimento al documento DocType: LDAP Settings,LDAP First Name Field,Campo Nome LDAP apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Invio e Posta in arrivo predefiniti -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Personalizza modulo apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.","Per l'aggiornamento, è possibile aggiornare solo le colonne selettive." apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',L'impostazione predefinita per il tipo di campo "Verifica" deve essere "0" o "1" apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Condividi questo documento con @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Dominio HTML DocType: Blog Settings,Blog Settings,Impostazioni del blog apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Il nome di DocType dovrebbe iniziare con una lettera e può contenere solo lettere, numeri, spazi e caratteri di sottolineatura" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup> Autorizzazioni utente DocType: Communication,Integrations can use this field to set email delivery status,Le integrazioni possono utilizzare questo campo per impostare lo stato di consegna della posta elettronica apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Impostazioni del gateway di pagamento a strisce DocType: Print Settings,Fonts,Caratteri DocType: Notification,Channel,Canale DocType: Communication,Opened,Ha aperto DocType: Workflow Transition,Conditions,condizioni +apps/frappe/frappe/config/website.py,A user who posts blogs.,Un utente che pubblica blog. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Non hai un account? Iscriviti apps/frappe/frappe/utils/file_manager.py,Added {0},Aggiunto {0} DocType: Newsletter,Create and Send Newsletters,Crea e invia newsletter DocType: Website Settings,Footer Items,Articoli a piè di pagina +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Configurare l'account e-mail predefinito da Imposta> Email> Account e-mail DocType: Website Slideshow Item,Website Slideshow Item,Elemento dello slideshow del sito Web apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registra l'app client OAuth DocType: Error Snapshot,Frames,montatura @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Il livello 0 è per le autorizzazioni a livello di documento, \ livelli superiori per le autorizzazioni a livello di campo." DocType: Address,City/Town,Città / Paese DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Questo ripristinerà il tuo tema attuale, sei sicuro di voler continuare?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Campi obbligatori richiesti in {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Errore durante la connessione all'account di posta elettronica {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Si è verificato un errore durante la creazione di ricorrenti @@ -528,7 +537,7 @@ DocType: Event,Event Category,Categoria di evento apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Colonne basate su apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Modifica intestazione DocType: Communication,Received,ricevuto -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Non sei autorizzato ad accedere a questa pagina. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Non sei autorizzato ad accedere a questa pagina. DocType: User Social Login,User Social Login,Accesso sociale dell'utente apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,Scrivi un file Python nella stessa cartella in cui è salvato e restituisci colonna e risultato. DocType: Contact,Purchase Manager,Responsabile acquisti @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Conf apps/frappe/frappe/utils/data.py,Operator must be one of {0},L'operatore deve essere uno di {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Se il proprietario DocType: Data Migration Run,Trigger Name,Nome trigger -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Scrivi titoli e presentazioni sul tuo blog. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Rimuovi campo apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Comprimi tutto apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Colore di sfondo @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,Bar DocType: SMS Settings,Enter url parameter for message,Inserisci il parametro url per il messaggio apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nuovo formato di stampa personalizzato apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} esiste già +DocType: Workflow Document State,Is Optional State,È opzionale? DocType: Address,Purchase User,Utente d'acquisto DocType: Data Migration Run,Insert,Inserire DocType: Web Form,Route to Success Link,Link verso il successo @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Il nome DocType: File,Is Home Folder,È la cartella Home apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Genere: DocType: Post,Is Pinned,È appuntato -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Nessuna autorizzazione per "{0}" {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Nessuna autorizzazione per "{0}" {1} DocType: Patch Log,Patch Log,Patch Log DocType: Print Format,Print Format Builder,Print Format Builder 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","Se abilitato, tutti gli utenti possono accedere da qualsiasi indirizzo IP usando l'autenticazione a due fattori. Questo può anche essere impostato solo per utenti specifici nella Pagina utente" apps/frappe/frappe/utils/data.py,only.,solo. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,La condizione '{0}' non è valida DocType: Auto Email Report,Day of Week,Giorno della settimana +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Abilita l'API di Google in Impostazioni Google. DocType: DocField,Text Editor,Editor di testo apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Taglio apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Cerca o digita un comando @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,Il numero di backup DB non può essere inferiore a 1 DocType: Workflow State,ban-circle,ban-cerchio DocType: Data Export,Excel,Eccellere +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Intestazione, breadcrumb e meta tag" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Supporto Indirizzo email non specificato DocType: Comment,Published,Pubblicato DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","Nota: per ottenere risultati ottimali, le immagini devono avere le stesse dimensioni e la larghezza deve essere maggiore dell'altezza." @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Scheduler Ultimo evento apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Rapporto di tutte le condivisioni di documenti DocType: Website Sidebar Item,Website Sidebar Item,Elemento della barra laterale del sito Web apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Fare +DocType: Google Settings,Google Settings,Impostazioni di Google apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Seleziona il tuo paese, fuso orario e valuta" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Inserisci qui i parametri dell'url statico (ad esempio, mittente = ERPNext, username = ERPNext, password = 1234 ecc.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Nessun account e-mail @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,Token del portatore OAuth ,Setup Wizard,Installazione guidata apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Attiva / disattiva grafico +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,Sincronizzazione DocType: Data Migration Run,Current Mapping Action,Attuale azione di mappatura DocType: Email Account,Initial Sync Count,Conteggio sincronizzazione iniziale apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Impostazioni per la pagina Contattaci. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Tipo di formato di stampa apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Nessuna autorizzazione impostata per questo criterio. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Espandi tutto +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nessun modello di indirizzo predefinito trovato. Si prega di crearne uno nuovo da Imposta> Stampa e branding> Modello indirizzo. DocType: Tag Doc Category,Tag Doc Category,Tag Doc Category DocType: Data Import,Generated File,File generato apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Gli appunti @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Il campo Timeline deve essere un collegamento o un collegamento dinamico DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Le notifiche e le e-mail in blocco verranno inviate da questo server in uscita. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Questa è una password comune top-100. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Invia in modo permanente {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Invia in modo permanente {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} non esiste, selezionare una nuova destinazione da unire" DocType: Energy Point Rule,Multiplier Field,Campo moltiplicatore DocType: Workflow,Workflow State Field,Campo stato del flusso di lavoro @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} ha apprezzato il tuo lavoro su {1} con {2} punti DocType: Auto Email Report,Zero means send records updated at anytime,Zero significa inviare i record aggiornati in qualsiasi momento apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Il valore non può essere modificato per {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Impostazioni API di Google. DocType: System Settings,Force User to Reset Password,Forza utente a reimpostare la password apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,I report di Generatore report sono gestiti direttamente dal generatore di report. Niente da fare. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Modifica filtro @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,per i DocType: S3 Backup Settings,eu-north-1,eu-nord-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: è consentita una sola regola con lo stesso ruolo, livello e {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Non sei autorizzato ad aggiornare questo documento Web Form -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Raggiunto il limite massimo di allegati per questo record. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Raggiunto il limite massimo di allegati per questo record. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,Assicurati che i documenti di comunicazione di riferimento non siano collegati in modo circolare. DocType: DocField,Allow in Quick Entry,Consenti in entrata rapida DocType: Error Snapshot,Locals,La gente del posto @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Tipo di eccezione apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},Impossibile eliminare o cancellare perché {0} {1} è collegato con {2} {3} {4} apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,Il segreto OTP può essere resettato solo dall'amministratore. -DocType: Web Form Field,Page Break,Interruzione di pagina DocType: Website Script,Website Script,Script sito web DocType: Integration Request,Subscription Notification,Notifica di iscrizione DocType: DocType,Quick Entry,Entrata rapida @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,Imposta proprietà dopo avviso apps/frappe/frappe/__init__.py,Thank you,Grazie apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slash Webhook per l'integrazione interna apps/frappe/frappe/config/settings.py,Import Data,Importa dati +DocType: Translation,Contributed Translation Doctype Name,Nome doctypezionato di traduzione DocType: Social Login Key,Office 365,Ufficio 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID DocType: Review Level,Review Level,Livello di revisione @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Fatto con successo apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Elenco apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Apprezzare -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Nuovo {0} (Ctrl + B) DocType: Contact,Is Primary Contact,È il contatto principale DocType: Print Format,Raw Commands,Comandi grezzi apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Fogli di stile per i formati di stampa @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Errori negli event apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Trova {0} in {1} DocType: Email Account,Use SSL,Usa SSL DocType: DocField,In Standard Filter,Nel filtro standard +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Nessun contatto Google presente per la sincronizzazione. DocType: Data Migration Run,Total Pages,Pagine totali apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: il campo '{1}' non può essere impostato come Unico in quanto ha valori non univoci DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Se abilitato, gli utenti verranno avvisati ogni volta che accedono. Se non abilitato, gli utenti verranno avvisati solo una volta." @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,Automazione apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Decompressione dei file ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Cerca '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Qualcosa è andato storto -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Si prega di salvare prima di allegare. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,Si prega di salvare prima di allegare. DocType: Version,Table HTML,Tabella HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,mozzo DocType: Page,Standard,Standard @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Nessun risu apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} record cancellati apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,Qualcosa è andato storto durante la generazione del token di accesso al dropbox. Si prega di controllare il log degli errori per maggiori dettagli. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Discendenti di -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nessun modello di indirizzo predefinito trovato. Si prega di crearne uno nuovo da Imposta> Stampa e branding> Modello indirizzo. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Contatti Google è stato configurato. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Nascondere dettagli apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Stili di carattere apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,La tua iscrizione scadrà il {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Autenticazione fallita durante la ricezione di email dall'account di posta elettronica {0}. Messaggio dal server: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Statistiche basate sul rendimento della scorsa settimana (da {0} a {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,Il collegamento automatico può essere attivato solo se l'ingresso è abilitato. DocType: Website Settings,Title Prefix,Prefisso titolo apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Le app di autenticazione che puoi utilizzare sono: DocType: Bulk Update,Max 500 records at a time,Massimo 500 record alla volta @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,Segnala filtri apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Seleziona colonne DocType: Event,Participants,I partecipanti DocType: Auto Repeat,Amended From,Modificato da -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Le tue informazioni sono state inviate +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Le tue informazioni sono state inviate DocType: Help Category,Help Category,Categoria di aiuto apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 mese apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Seleziona un formato esistente da modificare o avviare un nuovo formato. @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Campo da tracciare DocType: User,Generate Keys,Genera chiavi DocType: Comment,Unshared,non condiviso -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Salvato +DocType: Translation,Saved,Salvato DocType: OAuth Client,OAuth Client,Client OAuth DocType: System Settings,Disable Standard Email Footer,Disattiva il piè di pagina e-mail standard apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Il formato di stampa {0} è disabilitato @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Ultimo aggior DocType: Data Import,Action,Azione apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,La chiave del cliente è richiesta DocType: Chat Profile,Notifications,notifiche +DocType: Translation,Contributed,Ha contribuito DocType: System Settings,mm/dd/yyyy,mm / gg / aaaa DocType: Report,Custom Report,Rapporto personalizzato DocType: Workflow State,info-sign,Info-sign @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Contatto DocType: LDAP Settings,LDAP Username Field,Campo Nome utente LDAP apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Il campo {0} non può essere impostato come univoco in {1}, in quanto esistono valori esistenti non univoci" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Personalizza modulo DocType: User,Social Logins,Login sociale DocType: Workflow State,Trash,Spazzatura DocType: Stripe Settings,Secret Key,Chiave segreta @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,Campo del titolo apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Impossibile connettersi al server di posta in uscita DocType: File,File URL,URL del file DocType: Help Article,Likes,Piace +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,L'integrazione di Contatti Google è disabilitata. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,È necessario effettuare l'accesso e disporre del ruolo di System Manager per poter accedere ai backup. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Primo livello DocType: Blogger,Short Name,Nome corto @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Importa Zip DocType: Contact,Gender,Genere DocType: Workflow State,thumbs-down,pollice giù -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},La coda dovrebbe essere una di {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Impossibile impostare la notifica sul tipo di documento {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Aggiunta di System Manager a questo utente in quanto deve esserci almeno un System Manager apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Email di benvenuto inviata DocType: Transaction Log,Chaining Hash,Chaining Hash DocType: Contact,Maintenance Manager,Responsabile della manutenzione +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Per confronto, usare> 5, <10 o = 324. Per intervalli, utilizzare 5:10 (per valori compresi tra 5 e 10)." apps/frappe/frappe/utils/bot.py,show,mostrare apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Condividi URL apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Formato file non supportato @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,Notifica DocType: Data Import,Show only errors,Mostra solo errori DocType: Energy Point Log,Review,Revisione apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Righe rimosse -DocType: GSuite Settings,Google Credentials,Credenziali di Google +DocType: Google Settings,Google Credentials,Credenziali di Google apps/frappe/frappe/www/login.html,Or login with,O accedi con apps/frappe/frappe/model/document.py,Record does not exist,Il record non esiste apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Nuovo nome del rapporto @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,Elenco DocType: Workflow State,th-large,th-grandi dimensioni apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: impossibile impostare Assegna invio se non è possibile inviarlo apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Non collegato a nessun record +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Errore durante la connessione all'applicazione del vassoio QZ ...

È necessario che l'applicazione QZ Tray sia installata e in esecuzione, per utilizzare la funzione Raw Print.

Clicca qui per scaricare e installare QZ Tray .
Clicca qui per saperne di più su Raw Printing ." DocType: Chat Message,Content,Soddisfare DocType: Workflow Transition,Allow Self Approval,Consenti l'autoapprovazione apps/frappe/frappe/www/qrcode.py,Page has expired!,La pagina è scaduta! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,mano destra DocType: Website Settings,Banner is above the Top Menu Bar.,Il banner è sopra la barra del menu principale. apps/frappe/frappe/www/update-password.html,Invalid Password,Password non valida apps/frappe/frappe/utils/data.py,1 month ago,1 mese fa +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Consenti l'accesso a Contatti Google DocType: OAuth Client,App Client ID,ID client dell'app DocType: DocField,Currency,Moneta DocType: Website Settings,Banner,bandiera @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Obbiettivo DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Se un ruolo non ha accesso al livello 0, i livelli superiori non hanno senso." DocType: ToDo,Reference Type,Tipo di riferimento -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Consentire DocType, DocType. Stai attento!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Consentire DocType, DocType. Stai attento!" DocType: Domain Settings,Domain Settings,Impostazioni dominio DocType: Auto Email Report,Dynamic Report Filters,Filtri di report dinamici DocType: Energy Point Log,Appreciation,Apprezzamento @@ -1468,6 +1489,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,noi-ovest-2 DocType: DocType,Is Single,È single apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Crea un nuovo formato +DocType: Google Contacts,Authorize Google Contacts Access,Autorizza l'accesso a Google Contacts DocType: S3 Backup Settings,Endpoint URL,URL dell'endpoint DocType: Social Login Key,Google,Google DocType: Contact,Department,Dipartimento @@ -1482,7 +1504,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Assegnato a DocType: List Filter,List Filter,Filtro elenco DocType: Dashboard Chart Link,Chart,Grafico apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Impossibile rimuovere -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Invia questo documento per confermare +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Invia questo documento per confermare apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} esiste già. Seleziona un altro nome apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Hai modifiche non salvate in questo modulo. Si prega di salvare prima di continuare. apps/frappe/frappe/model/document.py,Action Failed,Azione fallita @@ -1564,6 +1586,7 @@ DocType: DocField,Display,Display apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Rispondi a tutti DocType: Calendar View,Subject Field,Campo soggetto apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Scadenza sessione deve essere nel formato {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},Applicazione: {0} DocType: Workflow State,zoom-in,ingrandire apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,impossibile connettersi al server apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},La data {0} deve essere nel formato: {1} @@ -1575,8 +1598,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,L'icona apparirà sul pulsante DocType: Role Permission for Page and Report,Set Role For,Imposta ruolo per +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Il collegamento automatico può essere attivato solo per un account e-mail. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Nessun account di posta elettronica assegnato +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Account email non configurato. Crea un nuovo account e-mail da Imposta> Email> Account e-mail apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,assegnazione +DocType: Google Contacts,Last Sync On,Ultima sincronizzazione apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},acquisito da {0} tramite la regola automatica {1} apps/frappe/frappe/config/website.py,Portal,Portale apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Grazie per la vostra email @@ -1597,7 +1623,6 @@ DocType: GSuite Settings,GSuite Settings,Impostazioni GSuite DocType: Integration Request,Remote,A distanza DocType: File,Thumbnail URL,URL miniatura apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Scarica rapporto -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup> Utente apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Personalizzazioni per {0} esportate in:
{1} DocType: GCalendar Account,Calendar Name,Nome del calendario apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Il tuo ID di accesso è @@ -1647,6 +1672,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Vai a apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Il campo immagine deve essere un nome di campo valido apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,Devi essere registrato per accedere a questa pagina DocType: Assignment Rule,Example: {{ subject }},Esempio: {{oggetto}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Fieldname {0} è limitato apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Non è possibile annullare la funzione "Sola lettura" per il campo {0} DocType: Social Login Key,Enable Social Login,Abilita accesso social DocType: Workflow,Rules defining transition of state in the workflow.,Regole che definiscono la transizione di stato nel flusso di lavoro. @@ -1667,10 +1693,10 @@ DocType: Website Settings,Route Redirects,Route Redirects apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Posta in arrivo e-mail apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},ripristinato {0} come {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Assegnare automaticamente i documenti agli utenti +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Apri Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Modelli di email per query comuni. DocType: Letter Head,Letter Head Based On,Testata basata su apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Per favore chiudi questa finestra -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Pagamento completato DocType: Contact,Designation,Designazione DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Meta tags @@ -1709,6 +1735,7 @@ DocType: System Settings,Choose authentication method to be used by all users,Sc DocType: Error Snapshot,Parent Error Snapshot,Parent Error Snapshot DocType: GCalendar Account,GCalendar Account,Conto GCalendar DocType: Language,Language Name,Nome della lingua +DocType: Workflow Document State,Workflow Action is not created for optional states,Azione del flusso di lavoro non creata per stati opzionali DocType: Customize Form,Customize Form,Personalizza modulo DocType: DocType,Image Field,Campo immagine apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Aggiunto {0} ({1}) @@ -1750,6 +1777,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,Applica questa regola se l'utente è il proprietario DocType: About Us Settings,Org History Heading,Org History Heading apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Errore del server +DocType: Contact,Google Contacts Description,Descrizione dei contatti di Google apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,I ruoli standard non possono essere rinominati DocType: Review Level,Review Points,Rivedi i punti apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Parametro Kanban Board mancante @@ -1767,7 +1795,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Non in modalità sviluppatore! Impostare in site_config.json o creare DocType 'personalizzato'. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,guadagnato {0} punti DocType: Web Form,Success Message,Messaggio di successo -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Per confronto, usare> 5, <10 o = 324. Per intervalli, utilizzare 5:10 (per valori compresi tra 5 e 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Descrizione per la pagina di elenco, in testo semplice, solo un paio di righe. (massimo 140 caratteri)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Mostra permessi DocType: DocType,Restrict To Domain,Limita al dominio @@ -1789,6 +1816,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Non an apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Imposta quantità DocType: Auto Repeat,End Date,Data di fine DocType: Workflow Transition,Next State,Stato successivo +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Contatti Google sincronizzati. DocType: System Settings,Is First Startup,È il primo avvio apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},aggiornato a {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Sposta a @@ -1838,6 +1866,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Calendar apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Modello di importazione dati DocType: Workflow State,hand-left,-Mano sinistra +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Seleziona più voci di elenco apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Dimensione del backup: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Collegato con {0} DocType: Braintree Settings,Private Key,Chiave privata @@ -1880,13 +1909,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Interesse DocType: Bulk Update,Limit,Limite DocType: Print Settings,Print taxes with zero amount,Stampa le tasse con importo zero -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Account email non configurato. Crea un nuovo account e-mail da Imposta> Email> Account e-mail DocType: Workflow State,Book,Libro DocType: S3 Backup Settings,Access Key ID,ID chiave di accesso DocType: Chat Message,URLs,URL apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Nomi e cognomi da soli sono facili da indovinare. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Segnala {0} DocType: About Us Settings,Team Members Heading,Direzione membri del team +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Seleziona la voce dell'elenco apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Il documento {0} è stato impostato per indicare {1} per {2} DocType: Address Template,Address Template,Modello di indirizzo DocType: Workflow State,step-backward,passo indietro @@ -1910,6 +1939,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Esporta permessi personalizzati apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Nessuno: fine del flusso di lavoro DocType: Version,Version,Versione +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Apri la voce dell'elenco apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 mesi DocType: Chat Message,Group,Gruppo apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},C'è qualche problema con l'url del file: {0} @@ -1965,6 +1995,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 anno apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} ha ripristinato i tuoi punti su {1} DocType: Workflow State,arrow-down,freccia verso il basso DocType: Data Import,Ignore encoding errors,Ignora errori di codifica +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Paesaggio DocType: Letter Head,Letter Head Name,Lettera Nome DocType: Web Form,Client Script,Script del cliente DocType: Assignment Rule,Higher priority rule will be applied first,Prima verrà applicata la regola di priorità più alta @@ -2009,6 +2040,7 @@ DocType: Kanban Board Column,Green,verde apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Solo i campi obbligatori sono necessari per i nuovi record. Puoi eliminare le colonne non obbligatorie se lo desideri. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} deve iniziare e terminare con una lettera e può contenere solo lettere, trattini o trattini bassi." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Attivazione dell'azione principale apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Crea email utente apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Il campo di ordinamento {0} deve essere un nome di campo valido DocType: Auto Email Report,Filter Meta,Filtro Meta @@ -2038,6 +2070,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Timeline Field apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Caricamento in corso... DocType: Auto Email Report,Half Yearly,Semestrale +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Il mio profilo apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Data ultima modifica DocType: Contact,First Name,Nome di battesimo DocType: Post,Comments,Commenti @@ -2060,6 +2093,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Hash del contenuto apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Post di {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} assegnato {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Nessun nuovo contatto Google sincronizzato. DocType: Workflow State,globe,globo apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Media di {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Cancella i registri degli errori @@ -2086,6 +2120,8 @@ DocType: Workflow State,Inverse,Inverso DocType: Activity Log,Closed,Chiuso DocType: Report,Query,domanda DocType: Notification,Days After,Giorni dopo +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Scorciatoie della pagina +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Ritratto apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Tempo scaduto per la richiesta DocType: System Settings,Email Footer Address,Indirizzo footer e-mail apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Aggiornamento del punto di energia @@ -2113,6 +2149,7 @@ For Select, enter list of Options, each on a new line.","Per i collegamenti, ins apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 minuto fa apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Nessuna sessione attiva apps/frappe/frappe/model/base_document.py,Row,Riga +DocType: Contact,Middle Name,Secondo nome apps/frappe/frappe/public/js/frappe/request.js,Please try again,Per favore riprova DocType: Dashboard Chart,Chart Options,Opzioni del grafico DocType: Data Migration Run,Push Failed,Push fallito @@ -2141,6 +2178,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,ridimensionare-piccole DocType: Comment,Relinked,Relinked DocType: Role Permission for Page and Report,Roles HTML,Ruoli HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Partire apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Il flusso di lavoro inizierà dopo il salvataggio. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Se i tuoi dati sono in HTML, per favore copia incolla il codice HTML esatto con i tag." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Le date sono spesso facili da indovinare. @@ -2169,7 +2207,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Icona del desktop apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,cancellato questo documento apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Intervallo di date -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup> Autorizzazioni utente apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} apprezzato {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Valori cambiati apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Errore nella notifica @@ -2234,6 +2271,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Elimina in blocco DocType: DocShare,Document Name,nome del documento apps/frappe/frappe/config/customization.py,Add your own translations,Aggiungi le tue traduzioni +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Naviga verso l'elenco DocType: S3 Backup Settings,eu-central-1,eu-centrale-1 DocType: Auto Repeat,Yearly,Annuale apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Rinominare @@ -2284,6 +2322,7 @@ DocType: Workflow State,plane,aereo apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Errore di set annidato. Si prega di contattare l'amministratore. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Mostra rapporto DocType: Auto Repeat,Auto Repeat Schedule,Programma di ripetizione automatica +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Visualizza Ref DocType: Address,Office,Ufficio DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} giorni fa @@ -2317,7 +2356,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Va apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Le mie impostazioni apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Il nome del gruppo non può essere vuoto. DocType: Workflow State,road,strada -DocType: Website Route Redirect,Source,fonte +DocType: Contact,Source,fonte apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Sessioni Attive apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Ci può essere solo una piega in un modulo apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Nuova chat @@ -2339,6 +2378,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Si prega di inserire Autorizza URL DocType: Email Account,Send Notification to,Invia notifica a apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Impostazioni di backup di Dropbox +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,Qualcosa è andato storto durante la generazione di token. Fai clic su {0} per generarne uno nuovo. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Rimuovere tutte le personalizzazioni? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Solo l'amministratore può modificare DocType: Auto Repeat,Reference Document,Documento di riferimento @@ -2363,6 +2403,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,I ruoli possono essere impostati per gli utenti dalla loro pagina Utente. DocType: Website Settings,Include Search in Top Bar,Includi ricerca nella barra in alto apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Urgente] Errore durante la creazione di% s ricorrenti per% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Scorciatoie globali DocType: Help Article,Author,Autore DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Nessun documento trovato per determinati filtri @@ -2398,10 +2439,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, riga {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Se stai caricando nuovi record, "Naming Series" diventa obbligatorio, se presente." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Modifica proprietà -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Impossibile aprire l'istanza quando {0} è aperto +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,Impossibile aprire l'istanza quando {0} è aperto DocType: Activity Log,Timeline Name,Nome della cronologia DocType: Comment,Workflow,Flusso di lavoro apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Si prega di impostare l'URL di base nella chiave di accesso social per Frappe +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Tasti rapidi DocType: Portal Settings,Custom Menu Items,Voci di menu personalizzate apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,La lunghezza di {0} deve essere compresa tra 1 e 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Collegamento perso. Alcune funzionalità potrebbero non funzionare. @@ -2464,6 +2506,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Righe aggiu DocType: DocType,Setup,Impostare apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} creato con successo apps/frappe/frappe/www/update-password.html,New Password,nuova password +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Seleziona campo apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Lascia questa conversazione DocType: About Us Settings,Team Members,Membri del team DocType: Blog Settings,Writers Introduction,Scrittori Introduzione @@ -2533,13 +2576,12 @@ DocType: Chat Room,Name,Nome DocType: Communication,Email Template,Modello di email DocType: Energy Point Settings,Review Levels,Livelli di revisione DocType: Print Format,Raw Printing,Stampa grezza -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Impossibile aprire {0} quando la sua istanza è aperta +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,Impossibile aprire {0} quando la sua istanza è aperta DocType: DocType,"Make ""name"" searchable in Global Search",Rendi "ricercabile" il nome in Ricerca globale DocType: Data Migration Mapping,Data Migration Mapping,Mappatura della migrazione dei dati DocType: Data Import,Partially Successful,Parzialmente riuscito DocType: Communication,Error,Errore apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype non può essere modificato da {0} a {1} nella riga {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Errore durante la connessione all'applicazione del vassoio QZ ...

È necessario che l'applicazione QZ Tray sia installata e in esecuzione, per utilizzare la funzione Raw Print.

Clicca qui per scaricare e installare QZ Tray .
Clicca qui per saperne di più su Raw Printing ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Fare foto apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,Evita anni associati a te. DocType: Web Form,Allow Incomplete Forms,Consenti moduli incompleti @@ -2635,7 +2677,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Seleziona target = "_blank" per aprire in una nuova pagina. DocType: Portal Settings,Portal Menu,Menu del portale DocType: Website Settings,Landing Page,Pagina di destinazione -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,Registrati o accedi per iniziare DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opzioni di contatto, come "Query di vendita, Query di supporto" ecc. Ciascuna su una nuova riga o separate da virgole." apps/frappe/frappe/twofactor.py,Verfication Code,Codice di verifica apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} già annullato @@ -2721,6 +2762,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Mappatura del p DocType: Address,Sales User,Utente di vendita apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Modificare le proprietà del campo (nascondi, in sola lettura, autorizzazione ecc.)" DocType: Property Setter,Field Name,Nome del campo +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Cliente DocType: Print Settings,Font Size,Dimensione del font DocType: User,Last Password Reset Date,Data ultima reimpostazione password DocType: System Settings,Date and Number Format,Formato data e numero @@ -2786,6 +2828,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Nodo del gruppo apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Unisci con esistente DocType: Blog Post,Blog Intro,Blog Intro apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nuova menzione +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Salta al campo DocType: Prepared Report,Report Name,Segnala nome apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Si prega di aggiornare per ottenere l'ultimo documento. apps/frappe/frappe/core/doctype/communication/communication.js,Close,Vicino @@ -2795,10 +2838,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Evento DocType: Social Login Key,Access Token URL,URL del token di accesso apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Imposta le chiavi di accesso di Dropbox nella configurazione del tuo sito +DocType: Google Contacts,Google Contacts,Contatti Google DocType: User,Reset Password Key,Reimposta chiave password apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Modificato da DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.","Per rinnovare, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Salvato con successo +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Invia un'email a {0} per collegarlo qui. DocType: File,Folder,Cartella DocType: DocField,Perm Level,Livello di Perm DocType: Print Settings,Page Settings,Impostazioni della pagina @@ -2828,6 +2874,7 @@ DocType: Workflow State,remove-sign,rimuovere-sign DocType: Dashboard Chart,Full,Pieno DocType: DocType,User Cannot Create,L'utente non può creare apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Hai guadagnato {0} punti +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup> Utente DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Se lo imposti, questo elemento apparirà in un menu a discesa sotto il genitore selezionato." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Nessuna email apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,I seguenti campi mancano: @@ -2841,13 +2888,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Mos DocType: Web Form,Web Form Fields,Campi del modulo Web DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Modulo modificabile dall'utente sul sito web. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Annulla definitivamente {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Annulla definitivamente {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Opzione 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,Totali apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Questa è una password molto comune. DocType: Personal Data Deletion Request,Pending Approval,In attesa di approvazione apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Il documento non può essere assegnato correttamente apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Non consentito per {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Nessun valore da mostrare DocType: Personal Data Download Request,Personal Data Download Request,Richiesta di download di dati personali apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} ha condiviso questo documento con {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Seleziona {0} @@ -2863,7 +2911,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Questa email è stata inviata a {0} e copiata in {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,Login o password non validi DocType: Social Login Key,Social Login Key,Chiave di accesso sociale -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Configurare l'account e-mail predefinito da Imposta> Email> Account e-mail apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filtri salvati DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Come dovrebbe essere formattata questa valuta? Se non impostato, utilizzerà i valori di default del sistema" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} è impostato per indicare {2} @@ -2989,6 +3036,7 @@ DocType: User,Location,Posizione apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Nessun dato DocType: Website Meta Tag,Website Meta Tag,Meta Tag del sito Web DocType: Workflow State,film,film +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Copiato negli appunti. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Impostazioni non trovate apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,L'etichetta è obbligatoria DocType: Webhook,Webhook Headers,Intestazioni Webhook @@ -3197,7 +3245,7 @@ DocType: Address,Address Line 1,Indirizzo Linea 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Per tipo di documento apps/frappe/frappe/model/base_document.py,Data missing in table,Dati mancanti nella tabella apps/frappe/frappe/utils/bot.py,Could not identify {0},Impossibile identificare {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Questo modulo è stato modificato dopo averlo caricato +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Questo modulo è stato modificato dopo averlo caricato apps/frappe/frappe/www/login.html,Back to Login,Torna al login apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Non impostato DocType: Data Migration Mapping,Pull,Tirare @@ -3265,6 +3313,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Mappatura tabella fig apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Configurazione account email inserisci la tua password per: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Troppe scritture in una sola richiesta. Si prega di inviare richieste più piccole DocType: Social Login Key,Salesforce,Salesforce +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importazione di {0} di {1} DocType: User,Tile,Piastrella apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,La {0} stanza deve avere almeno un utente. DocType: Email Rule,Is Spam,È spam @@ -3302,7 +3351,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,cartella-vicino DocType: Data Migration Run,Pull Update,Pull Update apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},unito {0} in {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Nessun risultato trovato per '

DocType: SMS Settings,Enter url parameter for receiver nos,Immettere il parametro url per i numeri del destinatario apps/frappe/frappe/utils/jinja.py,Syntax error in template,Errore di sintassi nel modello apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Imposta il valore dei filtri nella tabella Filtro report. @@ -3315,6 +3363,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Siamo spiac DocType: System Settings,In Days,In giorni DocType: Report,Add Total Row,Aggiungi riga totale apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Inizio sessione non riuscito +DocType: Translation,Verified,verificata DocType: Print Format,Custom HTML Help,Guida HTML personalizzata DocType: Address,Preferred Billing Address,Indirizzo di fatturazione preferito apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Assegnato a @@ -3329,7 +3378,6 @@ DocType: Help Article,Intermediate,Intermedio DocType: Module Def,Module Name,Nome del modulo DocType: OAuth Authorization Code,Expiration time,Data di scadenza apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Imposta il formato predefinito, la dimensione della pagina, lo stile di stampa, ecc." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,Non ti può piacere qualcosa che hai creato DocType: System Settings,Session Expiry,Scadenza della sessione DocType: DocType,Auto Name,Nome automatico apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Seleziona allegati @@ -3357,6 +3405,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Pagina di sistema DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Nota: per e-mail predefinite per i backup non riusciti vengono inviati. DocType: Custom DocPerm,Custom DocPerm,DocPerm personalizzato +DocType: Translation,PR sent,Inviato da PR DocType: Tag Doc Category,Doctype to Assign Tags,Doctype per assegnare tag DocType: Address,Warehouse,Magazzino apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Impostazione Dropbox @@ -3424,7 +3473,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Invio per aggiungere un commento apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Il campo {0} non è selezionabile. DocType: User,Birth Date,Data di nascita -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Con indentazione di gruppo DocType: List View Setting,Disable Count,Disabilitare il conteggio DocType: Contact Us Settings,Email ID,E-mail identificativo utente apps/frappe/frappe/utils/password.py,Incorrect User or Password,Utente o password errati @@ -3459,6 +3507,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Questo ruolo aggiorna le autorizzazioni utente per un utente DocType: Website Theme,Theme,Tema DocType: Web Form,Show Sidebar,Mostra barra laterale +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Integrazione dei contatti Google. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Posta in arrivo predefinita apps/frappe/frappe/www/login.py,Invalid Login Token,Token di accesso non valido apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Prima imposta il nome e salva il record. @@ -3486,7 +3535,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Per favore correggi il DocType: Top Bar Item,Top Bar Item,Articolo in alto ,Role Permissions Manager,Responsabile delle autorizzazioni di ruolo -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,C'erano errori Si prega di segnalare questo. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} anno / i fa apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Femmina DocType: System Settings,OTP Issuer Name,Nome dell'emittente OTP apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Aggiungi a fare @@ -3586,6 +3635,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Impost apps/frappe/frappe/model/document.py,none of,nessuno di DocType: Desktop Icon,Page,Pagina DocType: Workflow State,plus-sign,segno più +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Cancella cache e ricarica apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Impossibile aggiornare: collegamento errato / scaduto. DocType: Kanban Board Column,Yellow,Giallo DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Numero di colonne per un campo in una griglia (le colonne totali in una griglia devono essere inferiori a 11) @@ -3600,6 +3650,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Nuov DocType: Activity Log,Date,Data DocType: Communication,Communication Type,Tipo di comunicazione apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Tabella genitore +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Naviga verso l'alto DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Mostra l'errore completo e consenti la segnalazione di problemi allo sviluppatore DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3621,7 +3672,6 @@ DocType: Notification Recipient,Email By Role,Email per ruolo apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,Esegui l'upgrade per aggiungere più di {0} iscritti apps/frappe/frappe/email/queue.py,This email was sent to {0},Questa email è stata inviata a {0} DocType: User,Represents a User in the system.,Rappresenta un utente nel sistema. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Pagina {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Inizia nuovo formato apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Aggiungi un commento apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} di {1} diff --git a/frappe/translations/ja.csv b/frappe/translations/ja.csv index 168fc0502c..d63588d6d9 100644 --- a/frappe/translations/ja.csv +++ b/frappe/translations/ja.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,グラデーションを有効にする DocType: DocType,Default Sort Order,デフォルトのソート順 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,レポートから数値フィールドのみを表示 +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Altキーを押すと、メニューとサイドバーにショートカットが追加されます。 DocType: Workflow State,folder-open,フォルダを開く DocType: Customize Form,Is Table,テーブルです apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,添付ファイルを開けません。 CSVとしてエクスポートしましたか? DocType: DocField,No Copy,コピーなし DocType: Custom Field,Default Value,デフォルト値 apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,追記は受信メールに必須です +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,連絡先を同期 DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,データ移行マッピングの詳細 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,フォローを解除 apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",「Raw Print」によるPDF印刷はまだサポートされていません。プリンタの設定でプリンタのマッピングを削除してから、もう一度やり直してください。 @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0}と{1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,フィルタの保存中にエラーが発生しました apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,パスワードを入力してください apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,ホームフォルダと添付ファイルフォルダを削除できない +DocType: Email Account,Enable Automatic Linking in Documents,文書内の自動リンクを有効にする DocType: Contact Us Settings,Settings for Contact Us Page,お問い合わせページの設定 DocType: Social Login Key,Social Login Provider,ソーシャルログインプロバイダ +DocType: Email Account,"For more information, click here.","詳しくは、 こちらをクリックしてください 。" DocType: Transaction Log,Previous Hash,前のハッシュ DocType: Notification,Value Changed,変更された値 DocType: Report,Report Type,レポートの種類 @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,エネルギーポイントルー apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,ソーシャルログインを有効にする前にクライアントIDを入力してください DocType: Communication,Has Attachment,添付ファイルあり DocType: User,Email Signature,電子メールの署名 -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0}年前 ,Addresses And Contacts,住所と連絡先 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,このかんばん理事会は非公開になります DocType: Data Migration Run,Current Mapping,現在のマッピング @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).",あなたはすべてとして同期オプションを選択しています、それはサーバーからの未読メッセージと同様にすべての\読み取りを再同期します。これはコミュニケーションの重複(Eメール)を引き起こすかもしれません。 apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},最後に同期しました{0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,ヘッダの内容を変更することはできません +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

'の検索結果はありません

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,送信後に{0}を変更することはできません apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page",アプリケーションが新しいバージョンに更新されました。このページを更新してください DocType: User,User Image,ユーザー画像 @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},{0} apps/frappe/frappe/public/js/frappe/chat.js,Discard,捨てる DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,最良の結果を得るには、背景が透明な約幅150ピクセルの画像を選択してください。 apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,再発 +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0}個の値が選択されました DocType: Blog Post,Email Sent,メール送信 DocType: Communication,Read by Recipient On,受信者による読み取り DocType: User,Allow user to login only after this hour (0-24),この時間(0-24)以降にのみユーザーにログインを許可する @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,エクスポートするモジュール DocType: DocType,Fields,フィールド -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,この文書を印刷することは許可されていません +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,この文書を印刷することは許可されていません apps/frappe/frappe/public/js/frappe/model/model.js,Parent,親 apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.",あなたのセッションは期限が切れています、続行するためにもう一度ログインしてください。 DocType: Assignment Rule,Priority,優先度 @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,OTPシークレッ DocType: DocType,UPPER CASE,上部ケース apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,メールアドレスを設定してください DocType: Communication,Marked As Spam,スパムとしてマーク +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Googleの連絡先を同期するメールアドレス。 apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,加入者のインポート apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,フィルタを保存 DocType: Address,Preferred Shipping Address,希望の配送先住所 DocType: GCalendar Account,The name that will appear in Google Calendar,Googleカレンダーに表示される名前 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,{0}をクリックしてリフレッシュトークンを生成してください。 DocType: Email Account,Disable SMTP server authentication,SMTPサーバー認証を無効にする DocType: Email Account,Total number of emails to sync in initial sync process ,初期同期プロセスで同期する電子メールの総数 DocType: System Settings,Enable Password Policy,パスワードポリシーを有効にする @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,コードを挿入 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,ありませんで DocType: Auto Repeat,Start Date,開始日 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,チャートを設定 +DocType: Website Theme,Theme JSON,テーマJSON apps/frappe/frappe/www/list.py,My Account,マイアカウント DocType: DocType,Is Published Field,公開フィールド DocType: DocField,Set non-standard precision for a Float or Currency field,浮動小数点数フィールドまたは通貨フィールドに非標準の精度を設定する @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ヒント:ドキュメント参照を送信するためのReference: {{ reference_doctype }} {{ reference_name }}を追加します DocType: LDAP Settings,LDAP First Name Field,LDAP名フィールド apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,デフォルトの送信と受信トレイ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,設定>フォームのカスタマイズ apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",更新する場合は、選択列のみを更新できます。 apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1','Check'タイプのフィールドのデフォルトは '0'または '1'でなければなりません apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,この文書を共有する @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,ドメインHTML DocType: Blog Settings,Blog Settings,ブログ設定 apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores",DocTypeの名前は文字で始める必要があり、それは文字、数字、スペース、および下線のみで構成できます。 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,設定>ユーザ権限 DocType: Communication,Integrations can use this field to set email delivery status,インテグレーションはこのフィールドを使用してEメール配信ステータスを設定できます。 apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,ストライプ支払いゲートウェイ設定 DocType: Print Settings,Fonts,フォント DocType: Notification,Channel,チャネル DocType: Communication,Opened,開いた DocType: Workflow Transition,Conditions,条件 +apps/frappe/frappe/config/website.py,A user who posts blogs.,ブログを投稿したユーザー。 apps/frappe/frappe/www/login.html,Don't have an account? Sign up,アカウントを持っていませんか?サインアップ apps/frappe/frappe/utils/file_manager.py,Added {0},{0}を追加しました DocType: Newsletter,Create and Send Newsletters,ニュースレターを作成して送信する DocType: Website Settings,Footer Items,フッターアイテム +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,[設定]> [メール]> [メールアカウント]からデフォルトのメールアカウントを設定してください。 DocType: Website Slideshow Item,Website Slideshow Item,ウェブサイトのスライドショー項目 apps/frappe/frappe/config/integrations.py,Register OAuth Client App,OAuthクライアントアプリを登録する DocType: Error Snapshot,Frames,フレーム @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.",レベル0はドキュメントレベルの権限、\レベルはフィールドレベルの権限です。 DocType: Address,City/Town,市/町 DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?",これで現在のテーマがリセットされます。続行しますか? apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},{0}に必須のフィールド apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},メールアカウント{0}への接続中にエラーが発生しました apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,繰り返しの作成中にエラーが発生しました @@ -528,7 +537,7 @@ DocType: Event,Event Category,イベントカテゴリ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,に基づく列 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,見出しを編集 DocType: Communication,Received,受け取った -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,このページにアクセスすることは許可されていません。 +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,このページにアクセスすることは許可されていません。 DocType: User Social Login,User Social Login,ユーザーのソーシャルログイン apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,これが保存されているのと同じフォルダーにPythonファイルを書き込み、列と結果を返します。 DocType: Contact,Purchase Manager,購入マネージャ @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,チ apps/frappe/frappe/utils/data.py,Operator must be one of {0},演算子は{0}のいずれかでなければなりません apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,オーナーの方 DocType: Data Migration Run,Trigger Name,トリガー名 -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,ブログにタイトルや紹介文を書いてください。 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,フィールドを削除 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,すべて折りたたむ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,背景色 @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,バー DocType: SMS Settings,Enter url parameter for message,メッセージのURLパラメータを入力してください apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,新しいカスタム印刷フォーマット apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1}は既に存在します +DocType: Workflow Document State,Is Optional State,オプションの状態です DocType: Address,Purchase User,購入ユーザー DocType: Data Migration Run,Insert,インサート DocType: Web Form,Route to Success Link,成功リンクへの経路 @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,ユー DocType: File,Is Home Folder,ホームフォルダ apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,タイプ: DocType: Post,Is Pinned,固定されている -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},'{0}' {1}に対する権限がありません +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},'{0}' {1}に対する権限がありません DocType: Patch Log,Patch Log,パッチログ DocType: Print Format,Print Format Builder,印刷フォーマットビルダー 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",有効にした場合、すべてのユーザーがTwo Factor認証を使用して任意のIPアドレスからログインできます。ユーザーページで特定のユーザーのみに設定することもできます。 apps/frappe/frappe/utils/data.py,only.,のみ。 apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,条件 '{0}'が無効です DocType: Auto Email Report,Day of Week,曜日 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Google設定でGoogle APIを有効にします。 DocType: DocField,Text Editor,テキストエディタ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,カット apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,コマンドを検索または入力する @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,DBバックアップの数を1未満にすることはできません DocType: Workflow State,ban-circle,禁止輪 DocType: Data Export,Excel,エクセル +DocType: Web Page,"Header, Breadcrumbs and Meta Tags",ヘッダ、ブレッドクラム、メタタグ apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,指定されていないサポートEメールアドレス DocType: Comment,Published,公開済み DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.",注意:最良の結果を得るには、画像は同じサイズで、幅は高さよりも大きい必要があります。 @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,スケジューラの最後のイ apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,すべての伝票の報告 DocType: Website Sidebar Item,Website Sidebar Item,ウェブサイトのサイドバー項目 apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,すること +DocType: Google Settings,Google Settings,Google設定 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency",国、タイムゾーン、通貨を選択してください DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)",ここに静的URLパラメータを入力してください(例:sender = ERPNext、username = ERPNext、password = 1234など)。 apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,メールアカウントなし @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuthベアラトークン ,Setup Wizard,セットアップウィザード apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,チャートの切り替え +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,同期中 DocType: Data Migration Run,Current Mapping Action,現在のマッピングアクション DocType: Email Account,Initial Sync Count,初期同期数 apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,お問い合わせページの設定 @@ -833,6 +846,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,印刷フォーマットの種類 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,この基準には権限が設定されていません。 apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,すべて展開 +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,デフォルトのアドレステンプレートが見つかりません。 [設定]> [印刷とブランド]> [住所テンプレート]から新しいものを作成してください。 DocType: Tag Doc Category,Tag Doc Category,タグドキュメントカテゴリ DocType: Data Import,Generated File,生成ファイル apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,ノート @@ -840,7 +854,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,タイムラインフィールドはリンクまたはダイナミックリンクである必要があります DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,通知と一括メールは、この送信サーバーから送信されます。 apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,これはトップ100の一般的なパスワードです。 -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,{0}を永続的に送信しますか? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,{0}を永続的に送信しますか? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge",{0} {1}は存在しません。マージする新しいターゲットを選択してください DocType: Energy Point Rule,Multiplier Field,乗数フィールド DocType: Workflow,Workflow State Field,ワークフロー状態フィールド @@ -880,6 +894,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0}が{2}ポイントで{1}への取り組みを評価しました DocType: Auto Email Report,Zero means send records updated at anytime,ゼロはいつでも更新されたレコードを送信することを意味します apps/frappe/frappe/model/document.py,Value cannot be changed for {0},{0}の値は変更できません +apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API設定 DocType: System Settings,Force User to Reset Password,ユーザーにパスワードのリセットを強制する apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Report Builderのレポートは、Report Builderによって直接管理されます。やることは何もない。 apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,フィルタを編集 @@ -933,7 +948,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,の DocType: S3 Backup Settings,eu-north-1,EU北1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}",{0}:同じ役割、レベル、および{1}で許可されるルールは1つだけです apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,このWebフォーム文書を更新することは許可されていません -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,このレコードの最大添付ファイル数の上限に達しました。 +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,このレコードの最大添付ファイル数の上限に達しました。 apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,参考コミュニケーション資料が循環的にリンクされていないことを確認してください。 DocType: DocField,Allow in Quick Entry,クイックエントリーを許可 DocType: Error Snapshot,Locals,地元の人 @@ -965,7 +980,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,例外タイプ apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},{0} {1}は{2} {3} {4}とリンクされているため、削除またはキャンセルできません apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTPシークレットは管理者によってのみリセットできます。 -DocType: Web Form Field,Page Break,改ページ DocType: Website Script,Website Script,ウェブサイトのスクリプト DocType: Integration Request,Subscription Notification,購読通知 DocType: DocType,Quick Entry,クイックエントリー @@ -982,6 +996,7 @@ DocType: Notification,Set Property After Alert,警告後にプロパティを設 apps/frappe/frappe/__init__.py,Thank you,ありがとうございました apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,内部統合のためのSlack Webhooks apps/frappe/frappe/config/settings.py,Import Data,データをインポート +DocType: Translation,Contributed Translation Doctype Name,寄稿された翻訳のDoctype名 DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID DocType: Review Level,Review Level,レビューレベル @@ -1000,7 +1015,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,成功しました apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0}リスト apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,感謝する -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),新しい{0}(Ctrl + B) DocType: Contact,Is Primary Contact,主な連絡先です DocType: Print Format,Raw Commands,生のコマンド apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,印刷フォーマット用のスタイルシート @@ -1041,6 +1055,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,バックグラウ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},{1}の{0}を検索 DocType: Email Account,Use SSL,SSLを使用 DocType: DocField,In Standard Filter,標準フィルターで +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,同期するGoogle連絡先がありません。 DocType: Data Migration Run,Total Pages,総ページ数 apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}:フィールド '{1}'は一意でない値を持つため、一意に設定できません DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.",有効にすると、ユーザーはログインするたびに通知を受けます。有効にしないと、ユーザーには一度だけ通知されます。 @@ -1061,7 +1076,7 @@ DocType: Assignment Rule,Automation,オートメーション apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,ファイルを解凍しています... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}','{0}'を検索 apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,何かがうまくいかなかった -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,取り付ける前に保存してください。 +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,取り付ける前に保存してください。 DocType: Version,Table HTML,テーブルHTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,ハブ DocType: Page,Standard,標準 @@ -1139,12 +1154,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,結果が apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0}レコードが削除されました apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,dropboxアクセストークンを生成中に何か問題が発生しました。詳細についてはエラーログを確認してください。 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,の子孫 -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,デフォルトのアドレステンプレートが見つかりません。 [設定]> [印刷とブランド]> [住所テンプレート]から新しいものを作成してください。 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google連絡先が設定されました。 apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,詳細を隠す apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,フォントスタイル apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,サブスクリプションは{0}に期限切れになります。 apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Eメールアカウント{0}からEメールを受信中に認証が失敗しました。サーバーからのメッセージ:{1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),先週のパフォーマンスに基づく統計({0}から{1}まで) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,自動リンクは、着信が有効になっている場合にのみアクティブにできます。 DocType: Website Settings,Title Prefix,タイトルプレフィックス apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,使用できる認証アプリは次のとおりです。 DocType: Bulk Update,Max 500 records at a time,一度に最大500レコード @@ -1177,7 +1193,7 @@ DocType: Auto Email Report,Report Filters,レポートフィルタ apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,列を選択 DocType: Event,Participants,参加者 DocType: Auto Repeat,Amended From,から修正 -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,あなたの情報が送信されました +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,あなたの情報が送信されました DocType: Help Category,Help Category,ヘルプカテゴリー apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1ヶ月 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,既存のフォーマットを選択して編集するか、新しいフォーマットを開始してください。 @@ -1224,7 +1240,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,追跡するフィールド DocType: User,Generate Keys,鍵を生成する DocType: Comment,Unshared,非共有 -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,保存しました +DocType: Translation,Saved,保存しました DocType: OAuth Client,OAuth Client,OAuthクライアント DocType: System Settings,Disable Standard Email Footer,標準メールフッターを無効にする apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,印刷フォーマット{0}は無効です @@ -1255,6 +1271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,最終更新 DocType: Data Import,Action,アクション apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,クライアントキーが必要です DocType: Chat Profile,Notifications,通知 +DocType: Translation,Contributed,寄稿 DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy DocType: Report,Custom Report,カスタムレポート DocType: Workflow State,info-sign,情報サイン @@ -1271,6 +1288,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,接触 DocType: LDAP Settings,LDAP Username Field,LDAPユーザー名フィールド apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",一意ではない既存の値があるため、{0}フィールドを{1}内で一意として設定することはできません +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,設定>フォームのカスタマイズ DocType: User,Social Logins,ソーシャルログイン DocType: Workflow State,Trash,ゴミ DocType: Stripe Settings,Secret Key,秘密鍵 @@ -1328,6 +1346,7 @@ DocType: DocType,Title Field,タイトルフィールド apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,送信メールサーバーに接続できませんでした DocType: File,File URL,ファイルのURL DocType: Help Article,Likes,好き +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google Contacts Integrationは無効になっています。 apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,バックアップにアクセスするには、ログインしてシステム管理者の役割を持っている必要があります。 apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,第一レベル DocType: Blogger,Short Name,ショートネーム @@ -1345,13 +1364,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,郵便番号をインポート DocType: Contact,Gender,性別 DocType: Workflow State,thumbs-down,拒絶 -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},キューは{0}のいずれかでなければなりません apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},文書タイプ{0}に通知を設定できません apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,少なくとも1つのシステムマネージャが必要であるため、このユーザにシステムマネージャを追加する apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,ようこそメールを送信しました DocType: Transaction Log,Chaining Hash,連鎖ハッシュ DocType: Contact,Maintenance Manager,メンテナンスマネージャ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",比較のために、> 5、<10、または= 324を使用してください。範囲には、5:10を使用します(5と10の間の値の場合)。 apps/frappe/frappe/utils/bot.py,show,見せる apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,共有URL apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,サポートされていないファイル形式 @@ -1373,7 +1392,7 @@ DocType: Communication,Notification,お知らせ DocType: Data Import,Show only errors,エラーのみを表示 DocType: Energy Point Log,Review,見直し apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,削除された行 -DocType: GSuite Settings,Google Credentials,Google認証情報 +DocType: Google Settings,Google Credentials,Google認証情報 apps/frappe/frappe/www/login.html,Or login with,またはでログイン apps/frappe/frappe/model/document.py,Record does not exist,レコードが存在しません apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,新しいレポート名 @@ -1398,6 +1417,7 @@ DocType: Desktop Icon,List,リスト DocType: Workflow State,th-large,第三大 apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}:送信可能でない場合、割り当て送信を設定できません apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,どのレコードにもリンクされていません +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZトレイアプリケーションへの接続中にエラーが発生しました...

Raw Print機能を使用するには、QZトレイアプリケーションをインストールして実行している必要があります。

QZトレイをダウンロードしてインストールするには、ここをクリックしてください
Raw印刷の詳細については、ここをクリックしてください 。" DocType: Chat Message,Content,コンテンツ DocType: Workflow Transition,Allow Self Approval,自己承認を許可する apps/frappe/frappe/www/qrcode.py,Page has expired!,ページは期限切れです。 @@ -1414,6 +1434,7 @@ DocType: Workflow State,hand-right,右利き DocType: Website Settings,Banner is above the Top Menu Bar.,バナーはトップメニューバーの上にあります。 apps/frappe/frappe/www/update-password.html,Invalid Password,無効なパスワード apps/frappe/frappe/utils/data.py,1 month ago,1ヶ月前 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Google連絡先へのアクセスを許可する DocType: OAuth Client,App Client ID,アプリクライアントID DocType: DocField,Currency,通貨 DocType: Website Settings,Banner,バナー @@ -1425,7 +1446,7 @@ apps/frappe/frappe/utils/goal.py,Goal,ゴール DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.",ロールがレベル0でアクセス権を持っていない場合、それより高いレベルは意味がありません。 DocType: ToDo,Reference Type,参照タイプ -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!",DocType、DocTypeを許可します。注意してください! +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!",DocType、DocTypeを許可します。注意してください! DocType: Domain Settings,Domain Settings,ドメイン設定 DocType: Auto Email Report,Dynamic Report Filters,動的レポートフィルタ DocType: Energy Point Log,Appreciation,感謝 @@ -1467,6 +1488,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,私たち西2 DocType: DocType,Is Single,独身だ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,新しいフォーマットを作成する +DocType: Google Contacts,Authorize Google Contacts Access,Google連絡先へのアクセスを承認 DocType: S3 Backup Settings,Endpoint URL,エンドポイントURL DocType: Social Login Key,Google,グーグル DocType: Contact,Department,部門 @@ -1481,7 +1503,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,割りあてる DocType: List Filter,List Filter,リストフィルター DocType: Dashboard Chart Link,Chart,チャート apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,削除できません -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,この文書を送信して確認してください +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,この文書を送信して確認してください apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0}は既に存在します。別の名前を選択 apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,このフォームには未保存の変更があります。続行する前に保存してください。 apps/frappe/frappe/model/document.py,Action Failed,アクション失敗 @@ -1563,6 +1585,7 @@ DocType: DocField,Display,表示 apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,全員に返信 DocType: Calendar View,Subject Field,件名フィールド apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},セッションの有効期限は{0}の形式でなければなりません +apps/frappe/frappe/model/workflow.py,Applying: {0},適用:{0} DocType: Workflow State,zoom-in,ズームイン apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,サーバーへの接続に失敗しました apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},日付{0}は次の形式でなければなりません:{1} @@ -1574,8 +1597,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,ボタンにアイコンが表示されます DocType: Role Permission for Page and Report,Set Role For,ロールを設定 +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,自動リンクは、1つのメールアカウントに対してのみ有効にできます。 apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,電子メールアカウントが割り当てられていません +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,メールアカウントが設定されていません。 [設定]> [メール]> [メールアカウント]から新しいメールアカウントを作成してください。 apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,割り当て +DocType: Google Contacts,Last Sync On,最後の同期オン apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},自動ルール{1}により{0}が獲得しました apps/frappe/frappe/config/website.py,Portal,ポータル apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,メールありがとう @@ -1596,7 +1622,6 @@ DocType: GSuite Settings,GSuite Settings,GSuiteの設定 DocType: Integration Request,Remote,リモート DocType: File,Thumbnail URL,サムネイルURL apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,レポートをダウンロードする -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,設定>ユーザー apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},{0}のカスタマイズ内容のエクスポート先:
{1} DocType: GCalendar Account,Calendar Name,カレンダー名 apps/frappe/frappe/templates/emails/new_user.html,Your login id is,あなたのログインIDは @@ -1646,6 +1671,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},{0} apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,画像フィールドは有効なフィールド名である必要があります apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,このページにアクセスするにはログインする必要があります DocType: Assignment Rule,Example: {{ subject }},例:{{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,フィールド名{0}は制限されています apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},フィールド{0}の「読み取り専用」の設定を解除することはできません DocType: Social Login Key,Enable Social Login,ソーシャルログインを有効にする DocType: Workflow,Rules defining transition of state in the workflow.,ワークフロー内の状態の遷移を定義する規則 @@ -1666,10 +1692,10 @@ DocType: Website Settings,Route Redirects,ルートリダイレクト apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,メール受信箱 apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},{0}を{1}として復元しました DocType: Assignment Rule,Automatically Assign Documents to Users,ユーザーに文書を自動的に割り当てる +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Awesomebarを開く apps/frappe/frappe/config/settings.py,Email Templates for common queries.,一般的なクエリ用の電子メールテンプレート。 DocType: Letter Head,Letter Head Based On,に基づくレターヘッド apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,このウィンドウを閉じてください -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,支払い完了 DocType: Contact,Designation,指定 DocType: Webhook,Webhook,ウェブフック DocType: Website Route Meta,Meta Tags,メタタグ @@ -1708,6 +1734,7 @@ DocType: System Settings,Choose authentication method to be used by all users, DocType: Error Snapshot,Parent Error Snapshot,親エラースナップショット DocType: GCalendar Account,GCalendar Account,GCalendarアカウント DocType: Language,Language Name,言語名 +DocType: Workflow Document State,Workflow Action is not created for optional states,オプションの状態のワークフローアクションは作成されません DocType: Customize Form,Customize Form,フォームをカスタマイズ DocType: DocType,Image Field,画像フィールド apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),{0}を追加しました({1}) @@ -1749,6 +1776,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,ユーザーが所有者の場合はこのルールを適用します DocType: About Us Settings,Org History Heading,組織履歴の見出し apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,サーバーエラー +DocType: Contact,Google Contacts Description,Google連絡先説明 apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,標準ロールは名前変更できません DocType: Review Level,Review Points,レビューポイント apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,パラメータ不足かんばん名 @@ -1766,7 +1794,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,開発者モードではありません。 site_config.jsonで設定するか、「カスタム」DocTypeを作成します。 apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,{0}ポイント獲得 DocType: Web Form,Success Message,成功メッセージ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",比較のために、> 5、<10、または= 324を使用してください。範囲には、5:10を使用します(5と10の間の値の場合)。 DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",リストページの説明(プレーンテキスト)、数行のみ。 (最大140文字) apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,権限を表示 DocType: DocType,Restrict To Domain,ドメインに制限 @@ -1788,6 +1815,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,の祖 apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,数量を設定 DocType: Auto Repeat,End Date,終了日 DocType: Workflow Transition,Next State,次の州 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Google連絡先が同期されました。 DocType: System Settings,Is First Startup,初めての起動です apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},{0}に更新 apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,へ引っ越す @@ -1837,6 +1865,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0}カレンダー apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,データインポートテンプレート DocType: Workflow State,hand-left,左手 +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,複数のリストアイテムを選択 apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,バックアップサイズ: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},{0}とリンク DocType: Braintree Settings,Private Key,秘密鍵 @@ -1879,13 +1908,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,興味 DocType: Bulk Update,Limit,限定 DocType: Print Settings,Print taxes with zero amount,ゼロ金額で税金を印刷する -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,メールアカウントが設定されていません。 [設定]> [メール]> [メールアカウント]から新しいメールアカウントを作成してください。 DocType: Workflow State,Book,本 DocType: S3 Backup Settings,Access Key ID,アクセスキーID DocType: Chat Message,URLs,URL apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,名前と姓自体は簡単に推測できます。 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},レポート{0} DocType: About Us Settings,Team Members Heading,チームメンバーの見出し +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,リスト項目を選択 apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},文書{0}は{2}によって状態{1}に設定されました DocType: Address Template,Address Template,アドレステンプレート DocType: Workflow State,step-backward,ステップバック @@ -1909,6 +1938,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,カスタム権限のエクスポート apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,なし:ワークフロー終了 DocType: Version,Version,バージョン +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,オープンリストアイテム apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6ヵ月 DocType: Chat Message,Group,グループ apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},ファイルurlに問題があります:{0} @@ -1964,6 +1994,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1年 apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0}があなたのポイントを{1}に戻しました DocType: Workflow State,arrow-down,下矢印 DocType: Data Import,Ignore encoding errors,エンコードエラーを無視する +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,景観 DocType: Letter Head,Letter Head Name,レターヘッド名 DocType: Web Form,Client Script,クライアントスクリプト DocType: Assignment Rule,Higher priority rule will be applied first,優先順位の高いルールが最初に適用されます @@ -2008,6 +2039,7 @@ DocType: Kanban Board Column,Green,緑 apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,新規レコードには必須フィールドのみが必要です。必要に応じて、必須ではない列を削除できます。 apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.",{0}は文字で始まり、文字で終わる必要があり、文字、ハイフン、またはアンダースコアのみを含めることができます。 +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,プライマリアクションをトリガする apps/frappe/frappe/core/doctype/user/user.js,Create User Email,ユーザーのEメールを作成 apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,ソートフィールド{0}は有効なフィールド名でなければなりません DocType: Auto Email Report,Filter Meta,フィルタメタ @@ -2037,6 +2069,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,タイムラインフィールド apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,読み込み中... DocType: Auto Email Report,Half Yearly,半年ごと +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,私のプロフィール apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,最終更新日 DocType: Contact,First Name,ファーストネーム DocType: Post,Comments,コメント @@ -2059,6 +2092,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,コンテンツハッシュ apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},{0}による投稿 apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0}に{1}が割り当てられました:{2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,新しいGoogle連絡先が同期されていません。 DocType: Workflow State,globe,グローブ apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},{0}の平均 apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,エラーログを消去する @@ -2085,6 +2119,8 @@ DocType: Workflow State,Inverse,逆 DocType: Activity Log,Closed,閉まっている DocType: Report,Query,問い合わせ DocType: Notification,Days After,その後の日数 +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,ページショートカット +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,ポートレート apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,要求がタイムアウトしました DocType: System Settings,Email Footer Address,メールフッターアドレス apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,エネルギーポイントの更新 @@ -2112,6 +2148,7 @@ For Select, enter list of Options, each on a new line.",リンクの場合は、 apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1分前 apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,アクティブセッションなし apps/frappe/frappe/model/base_document.py,Row,行 +DocType: Contact,Middle Name,ミドルネーム apps/frappe/frappe/public/js/frappe/request.js,Please try again,もう一度やり直してください DocType: Dashboard Chart,Chart Options,チャートオプション DocType: Data Migration Run,Push Failed,プッシュ失敗 @@ -2140,6 +2177,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,リサイズ小 DocType: Comment,Relinked,再リンク DocType: Role Permission for Page and Report,Roles HTML,ロールHTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,行く apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,保存後にワークフローが開始されます。 DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.",データがHTMLの場合は、タグ付きの正確なHTMLコードをコピーして貼り付けてください。 apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,日付はしばしば推測しやすいものです。 @@ -2168,7 +2206,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,デスクトップアイコン apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,この文書をキャンセルしました apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,期間 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,設定>ユーザ権限 apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0}感謝しています{1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,変更された値 apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,通知エラー @@ -2233,6 +2270,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,一括削除 DocType: DocShare,Document Name,文書名 apps/frappe/frappe/config/customization.py,Add your own translations,あなた自身の翻訳を追加する +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,リストを下に移動 DocType: S3 Backup Settings,eu-central-1,eu-central-1 DocType: Auto Repeat,Yearly,毎年 apps/frappe/frappe/public/js/frappe/model/model.js,Rename,リネーム @@ -2283,6 +2321,7 @@ DocType: Workflow State,plane,飛行機 apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,入れ子集合エラー管理者に連絡してください。 apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,レポートを表示 DocType: Auto Repeat,Auto Repeat Schedule,自動繰り返しスケジュール +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,参照を見る DocType: Address,Office,事務所 DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0}日前 @@ -2315,7 +2354,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required, apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,私の設定 apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,グループ名は空にできません。 DocType: Workflow State,road,道路 -DocType: Website Route Redirect,Source,ソース +DocType: Contact,Source,ソース apps/frappe/frappe/www/third_party_apps.html,Active Sessions,アクティブセッション apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,1つのフォームには1つだけフォールドがある apps/frappe/frappe/public/js/frappe/chat.js,New Chat,新しいチャット @@ -2337,6 +2376,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,認証URLを入力してください DocType: Email Account,Send Notification to,に通知を送信 apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropboxのバックアップ設定 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,トークン生成中に問題が発生しました。 {0}をクリックして新しいものを生成してください。 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,すべてのカスタマイズを削除しますか? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,管理者のみが編集できます DocType: Auto Repeat,Reference Document,参考資料 @@ -2361,6 +2401,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,ユーザーのユーザーページからロールを設定できます。 DocType: Website Settings,Include Search in Top Bar,トップバーに検索を含める apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[緊急]%sに繰り返し%sを作成中にエラーが発生しました +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,グローバルショートカット DocType: Help Article,Author,著者 DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,指定されたフィルタについての文書は見つかりませんでした @@ -2396,10 +2437,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}",{0}、行{1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.",新しいレコードをアップロードしている場合、 "Naming Series"があれば必須になります。 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,プロパティを編集する -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,{0}が開いているときにインスタンスを開くことができません +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,{0}が開いているときにインスタンスを開くことができません DocType: Activity Log,Timeline Name,タイムライン名 DocType: Comment,Workflow,ワークフロー apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,FrappeのソーシャルログインキーにベースURLを設定してください +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,キーボードショートカット DocType: Portal Settings,Custom Menu Items,カスタムメニュー項目 apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,{0}の長さは1から1000の間でなければなりません apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,接続切断。一部の機能は機能しない可能性があります。 @@ -2462,6 +2504,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,追加さ DocType: DocType,Setup,セットアップ apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0}は正常に作成されました apps/frappe/frappe/www/update-password.html,New Password,新しいパスワード +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,フィールドを選択 apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,この会話を残す DocType: About Us Settings,Team Members,チームメンバー DocType: Blog Settings,Writers Introduction,作家の紹介 @@ -2530,13 +2573,12 @@ DocType: Chat Room,Name,名 DocType: Communication,Email Template,メールテンプレート DocType: Energy Point Settings,Review Levels,レビューレベル DocType: Print Format,Raw Printing,生の印刷 -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,インスタンスが開いているときは{0}を開けません +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,インスタンスが開いているときは{0}を開けません DocType: DocType,"Make ""name"" searchable in Global Search",グローバル検索で「名前」を検索可能にする DocType: Data Migration Mapping,Data Migration Mapping,データ移行マッピング DocType: Data Import,Partially Successful,部分的に成功しました DocType: Communication,Error,エラー apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},行{2}のフィールドタイプを{0}から{1}に変更することはできません -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZトレイアプリケーションへの接続中にエラーが発生しました...

Raw Print機能を使用するには、QZトレイアプリケーションをインストールして実行している必要があります。

QZトレイをダウンロードしてインストールするには、ここをクリックしてください
Raw印刷の詳細については、ここをクリックしてください 。" apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,写真を撮る apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,あなたに関連付けられている年を避けます。 DocType: Web Form,Allow Incomplete Forms,不完全なフォームを許可する @@ -2632,7 +2674,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",新しいページで開くには、target = "_blank"を選択してください。 DocType: Portal Settings,Portal Menu,ポータルメニュー DocType: Website Settings,Landing Page,ランディングページ -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,サインアップまたはログインして開始してください DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Sales Query、Support Query"などの連絡先オプションは、それぞれ新しい行に入力するか、カンマで区切ります。 apps/frappe/frappe/twofactor.py,Verfication Code,検証コード apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0}は既に退会しています @@ -2718,6 +2759,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,データ移行 DocType: Address,Sales User,セールスユーザー apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)",フィールドのプロパティを変更する(非表示、読み取り専用、権限など) DocType: Property Setter,Field Name,フィールド名 +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,顧客 DocType: Print Settings,Font Size,フォントサイズ DocType: User,Last Password Reset Date,最終パスワードリセット日 DocType: System Settings,Date and Number Format,日付と番号の形式 @@ -2783,6 +2825,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,グループノ apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,既存のものとマージする DocType: Blog Post,Blog Intro,ブログ紹介 apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,新しい言及 +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,フィールドへジャンプ DocType: Prepared Report,Report Name,レポート名 apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,最新のドキュメントを入手するには更新してください。 apps/frappe/frappe/core/doctype/communication/communication.js,Close,閉じる @@ -2792,10 +2835,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,イベント DocType: Social Login Key,Access Token URL,アクセストークンURL apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,サイト設定でDropboxのアクセスキーを設定してください +DocType: Google Contacts,Google Contacts,Googleの連絡先 DocType: User,Reset Password Key,パスワードキーのリセット apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,変更された DocType: User,Bio,バイオ apps/frappe/frappe/limits.py,"To renew, {0}.",更新するには、{0}。 +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,正常に保存 +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,ここにリンクするには、{0}にEメールを送信してください。 DocType: File,Folder,フォルダ DocType: DocField,Perm Level,パーマレベル DocType: Print Settings,Page Settings,ページ設定 @@ -2825,6 +2871,7 @@ DocType: Workflow State,remove-sign,削除記号 DocType: Dashboard Chart,Full,いっぱい DocType: DocType,User Cannot Create,ユーザーが作成できない apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,{0}ポイントを獲得しました +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,設定>ユーザー DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.",これを設定した場合、このアイテムは選択した親の下のドロップダウンに表示されます。 apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,メールなし apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,以下のフィールドがありません。 @@ -2838,13 +2885,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,カ DocType: Web Form,Web Form Fields,Webフォームフィールド DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Webサイト上のユーザー編集可能フォーム。 -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,永久にキャンセル{0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,永久にキャンセル{0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,オプション3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,合計 apps/frappe/frappe/utils/password_strength.py,This is a very common password.,これは非常に一般的なパスワードです。 DocType: Personal Data Deletion Request,Pending Approval,承認待ちの apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,文書を正しく割り当てることができませんでした apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{0}には使用できません:{1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,表示する値がありません DocType: Personal Data Download Request,Personal Data Download Request,個人データダウンロード要求 apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0}がこの文書を{1}と共有しました apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},{0}を選択 @@ -2860,7 +2908,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},このメールは{0}に送信され、{1}にコピーされました apps/frappe/frappe/email/smtp.py,Invalid login or password,無効なログインまたはパスワード DocType: Social Login Key,Social Login Key,ソーシャルログインキー -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,[設定]> [メール]> [メールアカウント]からデフォルトのメールアカウントを設定してください。 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,保存したフィルタ DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",この通貨はどのようにフォーマットされるべきですか?設定されていない場合、システムデフォルトを使用します apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}:{1}は状態{2}に設定されています @@ -2986,6 +3033,7 @@ DocType: User,Location,ロケーション apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,データなし DocType: Website Meta Tag,Website Meta Tag,ウェブサイトメタタグ DocType: Workflow State,film,膜 +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,クリップボードにコピーしました。 apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0}設定が見つかりません apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,ラベルは必須です DocType: Webhook,Webhook Headers,ウェブフックヘッダ @@ -3194,7 +3242,7 @@ DocType: Address,Address Line 1,住所1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,伝票タイプ apps/frappe/frappe/model/base_document.py,Data missing in table,テーブルにデータがありません apps/frappe/frappe/utils/bot.py,Could not identify {0},{0}を識別できませんでした -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,このフォームはロード後に変更されています +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,このフォームはロード後に変更されています apps/frappe/frappe/www/login.html,Back to Login,ログインに戻る apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,設定されていません DocType: Data Migration Mapping,Pull,引く @@ -3262,6 +3310,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,子テーブルマッ apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Eメールアカウントの設定は、以下のパスワードを入力してください。 apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,1回のリクエストで書き込みが多すぎます。小さい要求を送ってください DocType: Social Login Key,Salesforce,Salesforce +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{1}の{0}をインポートしています DocType: User,Tile,タイル apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0}の部屋には最大1人のユーザーが必要です。 DocType: Email Rule,Is Spam,スパムです @@ -3299,7 +3348,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,フォルダを閉じる DocType: Data Migration Run,Pull Update,プルアップデート apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},{0}を{1}にマージしました -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

'の検索結果はありません

DocType: SMS Settings,Enter url parameter for receiver nos,受信機番号のURLパラメータを入力 apps/frappe/frappe/utils/jinja.py,Syntax error in template,テンプレート内の構文エラー apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,レポートフィルタテーブルにフィルタ値を設定してください。 @@ -3312,6 +3360,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.",申し訳あ DocType: System Settings,In Days,日で DocType: Report,Add Total Row,合計行を追加 apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,セッション開始失敗 +DocType: Translation,Verified,確認済み DocType: Print Format,Custom HTML Help,カスタムHTMLヘルプ DocType: Address,Preferred Billing Address,希望請求先住所 apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,に割り当てられた @@ -3326,7 +3375,6 @@ DocType: Help Article,Intermediate,中級 DocType: Module Def,Module Name,モジュール名 DocType: OAuth Authorization Code,Expiration time,有効期限 apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.",デフォルトフォーマット、ページサイズ、印刷スタイルなどを設定します。 -apps/frappe/frappe/desk/like.py,You cannot like something that you created,あなたが作ったものは好きになれません DocType: System Settings,Session Expiry,セッション期限 DocType: DocType,Auto Name,オートネーム apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,添付ファイルを選択 @@ -3354,6 +3402,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,システムページ DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,注:デフォルトでは、失敗したバックアップに関する電子メールが送信されます。 DocType: Custom DocPerm,Custom DocPerm,カスタムDocPerm +DocType: Translation,PR sent,PRが送信されました DocType: Tag Doc Category,Doctype to Assign Tags,タグを割り当てるためのDoctype DocType: Address,Warehouse,倉庫 apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Dropboxの設定 @@ -3421,7 +3470,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Enterでコメントを追加 apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,フィールド{0}は選択できません。 DocType: User,Birth Date,誕生日 -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,グループインデント付き DocType: List View Setting,Disable Count,カウントを無効にする DocType: Contact Us Settings,Email ID,電子メールID apps/frappe/frappe/utils/password.py,Incorrect User or Password,誤ったユーザーまたはパスワード @@ -3456,6 +3504,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,このロールは、ユーザのユーザ権限を更新します DocType: Website Theme,Theme,テーマ DocType: Web Form,Show Sidebar,サイドバーを表示 +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Googleの連絡先の統合。 apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,デフォルトの受信トレイ apps/frappe/frappe/www/login.py,Invalid Login Token,無効なログイントークン apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,まず名前を設定してレコードを保存します。 @@ -3483,7 +3532,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,修正してください DocType: Top Bar Item,Top Bar Item,トップバー項目 ,Role Permissions Manager,ロールパーミッションマネージャ -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,エラーがありました。これを報告してください。 +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0}年前 apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,女性 DocType: System Settings,OTP Issuer Name,OTP発行者名 apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,にする @@ -3583,6 +3632,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings",言語 apps/frappe/frappe/model/document.py,none of,どれも DocType: Desktop Icon,Page,ページ DocType: Workflow State,plus-sign,プラス記号 +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,キャッシュをクリアしてリロードする apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,更新できません:リンクが正しくないか期限切れです。 DocType: Kanban Board Column,Yellow,黄 DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),グリッド内のフィールドの列数(グリッド内の合計列数は11未満にする必要があります) @@ -3597,6 +3647,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,新 DocType: Activity Log,Date,日付 DocType: Communication,Communication Type,通信タイプ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,親テーブル +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,リストを上に移動 DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,完全なエラーを表示し、開発者への問題の報告を許可する DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3618,7 +3669,6 @@ DocType: Notification Recipient,Email By Role,役割によるEメール apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,{0}人以上の購読者を追加するにはアップグレードしてください apps/frappe/frappe/email/queue.py,This email was sent to {0},このメールは{0}に送信されました DocType: User,Represents a User in the system.,システム内のユーザーを表します。 -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},ページ{0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,新しいフォーマットを開始 apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,コメントを追加 apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} / {1} diff --git a/frappe/translations/km.csv b/frappe/translations/km.csv index a1a7fd10a1..ff6106a34c 100644 --- a/frappe/translations/km.csv +++ b/frappe/translations/km.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,បើកដំណើរការជម្រាល DocType: DocType,Default Sort Order,លំដាប់តម្រៀបលំនាំដើម apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,បង្ហាញតែវាលលេខពីរបាយការណ៍ +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,ចុចជំនួសកូនសោដើម្បីកេះផ្លូវកាត់បន្ថែមនៅក្នុងម៉ឺនុយនិងរបារចំហៀង DocType: Workflow State,folder-open,ថតបើក DocType: Customize Form,Is Table,តើតារាង apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,មិនអាចបើកឯកសារភ្ជាប់បានទេ។ តើអ្នកនាំចេញវាជា CSV ឬ? DocType: DocField,No Copy,គ្មានច្បាប់ចម្លង DocType: Custom Field,Default Value,តម្លៃលំនាំដើម apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,បន្ថែមទៅគឺចាំបាច់សម្រាប់សំបុត្រចូល +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,ធ្វើសមកាលកម្មទំនាក់ទំនង DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,ពត៌មានលំអិតផែនទីអន្តោប្រវេសន៍ទិន្នន័យ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,មិនធ្វើតាម apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",ការបោះពុម្ព PDF តាមរយៈ "បោះពុម្ពដើម" មិនត្រូវបានគាំទ្រនៅឡើយទេ។ សូមដកការផ្គូផ្គងម៉ាស៊ីនបោះពុម្ពនៅក្នុងការកំណត់ម៉ាស៊ីនបោះពុម្ពហើយព្យាយាមម្ដងទៀត។ @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} និង {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,មានកំហុសក្នុងការរក្សាទុកតម្រង apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,បញ្ចូលពាក្យសម្ងាត់របស់អ្នក apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,មិនអាចលុបថតផ្ទះនិងឯកសារភ្ជាប់បានទេ +DocType: Email Account,Enable Automatic Linking in Documents,បើកដំណើរការភ្ជាប់ស្វ័យប្រវត្តិក្នុងឯកសារ DocType: Contact Us Settings,Settings for Contact Us Page,ការកំណត់សម្រាប់ទំនាក់ទំនងទំព័រ DocType: Social Login Key,Social Login Provider,អ្នកផ្ដល់សេវាកម្មចូលសង្គម +DocType: Email Account,"For more information, click here.","សម្រាប់ព័ត៌មានបន្ថែម ចុចទីនេះ ។" DocType: Transaction Log,Previous Hash,ហាប់មុន DocType: Notification,Value Changed,តម្លៃបានផ្លាស់ប្តូរ DocType: Report,Report Type,ប្រភេទនៃរបាយការណ៍ @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,វិធានថាមពលច apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,សូមបញ្ចូលអត្តសញ្ញាណអតិថិជនមុនពេលបើកការចូលសង្គម DocType: Communication,Has Attachment,មានឯកសារភ្ជាប់ DocType: User,Email Signature,ហត្ថលេខាអ៊ីម៉ែល -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ឆ្នាំមុន ,Addresses And Contacts,អាសយដ្ឋាននិងទំនាក់ទំនង apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,ក្រុមប្រឹក្សាភិបាល Kanban នេះនឹងត្រូវបានឯកជន DocType: Data Migration Run,Current Mapping,ផែនទីបច្ចុប្បន្ន @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).",អ្នកកំពុងជ្រើសជម្រើសសមកាលកម្មជា ALL វានឹង resync ទាំងអស់ \ អានសារព្រមទាំងមិនទាន់អានពីម៉ាស៊ីនបម្រើ។ នេះអាចបណ្តាលឱ្យចម្លង \ នៃការទំនាក់ទំនង (អ៊ីម៉ែល) ផងដែរ។ apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},បានធ្វើសមកាលកម្មចុងក្រោយ {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,មិនអាចផ្លាស់ប្តូរមាតិកាបឋមកថាបានទេ +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,មិនត្រូវបានអនុញ្ញាតឱ្យផ្លាស់ប្តូរ {0} បន្ទាប់ពីការដាក់ស្នើ apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page",កម្មវិធីត្រូវបានធ្វើបច្ចុប្បន្នភាពទៅកំណែថ្មីសូមធ្វើឱ្យទំព័រនេះស្រស់ DocType: User,User Image,រូបភាពរបស់អ្នកប្រើ @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},ស apps/frappe/frappe/public/js/frappe/chat.js,Discard,បោះបង់ DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,ជ្រើសរើសរូបភាព 150px ដែលមានផ្ទៃខាងក្រោយថ្លាសម្រាប់លទ្ធផលល្អបំផុត។ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,រើបឡើងវិញ +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} តម្លៃដែលបានជ្រើសរើស DocType: Blog Post,Email Sent,អ៊ីម៉ែលដែលបានផ្ញើ DocType: Communication,Read by Recipient On,អានដោយអ្នកទទួល DocType: User,Allow user to login only after this hour (0-24),អនុញ្ញាតឱ្យអ្នកប្រើចូលបន្ទាប់ពីម៉ោងនេះ (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,ចាស់ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,ម៉ូឌុលត្រូវនាំចេញ DocType: DocType,Fields,វាល -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យបោះពុម្ពឯកសារនេះទេ +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យបោះពុម្ពឯកសារនេះទេ apps/frappe/frappe/public/js/frappe/model/model.js,Parent,ឪពុកម្តាយ apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.",សម័យរបស់អ្នកបានផុតកំណត់សូមចូលម្តងទៀតដើម្បីបន្ត។ DocType: Assignment Rule,Priority,អាទិភាព @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,កំណត់ព DocType: DocType,UPPER CASE,អក្សរធំ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,សូមកំណត់អាសយដ្ឋានអ៊ីម៉ែល DocType: Communication,Marked As Spam,បានសម្គាល់ថាជាសារឥតបានការ +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,អាសយដ្ឋានអ៊ីមែលដែលទំនាក់ទំនង Google នឹងត្រូវបានធ្វើសមកាលកម្ម។ apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,នាំចូលអតិថិជន apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,រក្សាទុកតម្រង DocType: Address,Preferred Shipping Address,អាសយដ្ឋានដឹកជញ្ជូនដែលពេញចិត្ត DocType: GCalendar Account,The name that will appear in Google Calendar,ឈ្មោះដែលនឹងបង្ហាញក្នុងប្រតិទិន Google +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,ចុចលើ {0} ដើម្បីបង្កើតនិមិត្តសញ្ញាស្រស់។ DocType: Email Account,Disable SMTP server authentication,បិទការផ្ទៀងផ្ទាត់ម៉ាស៊ីនមេ SMTP DocType: Email Account,Total number of emails to sync in initial sync process ,ចំនួនសរុបនៃអ៊ីមែលដើម្បីធ្វើសមកាលកម្មក្នុងដំណើរការធ្វើសមកាលកម្មដំបូង DocType: System Settings,Enable Password Policy,បើកដំណើរការគោលការណ៍ពាក្យសម្ងាត់ @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,បញ្ចូលកូដ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,មិននៅក្នុង DocType: Auto Repeat,Start Date,ថ្ងៃចាប់ផ្តើម apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,កំណត់គំនូសតាង +DocType: Website Theme,Theme JSON,ស្បែក JSON apps/frappe/frappe/www/list.py,My Account,គណនីរបស់ខ្ញុំ DocType: DocType,Is Published Field,ត្រូវបានបោះពុម្ពវាល DocType: DocField,Set non-standard precision for a Float or Currency field,កំណត់ភាពជាក់លាក់ដែលមិនមែនជាស្តង់ដារសម្រាប់វាលទសភាគឬរូបិយប័ណ្ណ @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: បន្ថែម Reference: {{ reference_doctype }} {{ reference_name }} ដើម្បីបញ្ជូនឯកសារយោង DocType: LDAP Settings,LDAP First Name Field,វាលឈ្មោះ LDAP apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,ផ្ញើតាមលំនាំដើមនិងប្រអប់សំបុត្រ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,រៀបចំ> ប្តូរតាមបំណងទម្រង់ apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",សម្រាប់ការធ្វើបច្ចុប្បន្នភាពអ្នកអាចធ្វើបច្ចុប្បន្នភាពតែជួរឈរជ្រើសរើសប៉ុណ្ណោះ។ apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',លំនាំដើមសម្រាប់ប្រភេទ 'ពិនិត្យមើល' ត្រូវតែជា '0' ឬ '1' apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,ចែករំលែកឯកសារនេះជាមួយ @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,ដែន HTML DocType: Blog Settings,Blog Settings,ការកំណត់ប្លុក apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores",ឈ្មោះ DocType គួរតែចាប់ផ្ដើមដោយអក្សរហើយវាអាចមានតែអក្សរលេខដកឃ្លានិងសញ្ញាគូសក្រោមប៉ុណ្ណោះ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ដំឡើង> សិទ្ធិអ្នកប្រើ DocType: Communication,Integrations can use this field to set email delivery status,សមាហរណកម្មអាចប្រើវាលនេះដើម្បីកំណត់ស្ថានភាពបញ្ជូនអ៊ីម៉ែល apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,ការកំណត់ការបង់ប្រាក់ច្រកចេញ DocType: Print Settings,Fonts,ពុម្ពអក្សរ DocType: Notification,Channel,ឆានែល DocType: Communication,Opened,បានបើក DocType: Workflow Transition,Conditions,លក្ខខណ្ឌ +apps/frappe/frappe/config/website.py,A user who posts blogs.,អ្នកប្រើដែលប្រកាសកំណត់ហេតុបណ្ដាញ។ apps/frappe/frappe/www/login.html,Don't have an account? Sign up,មិនមានគណនី? ចុះឈ្មោះ apps/frappe/frappe/utils/file_manager.py,Added {0},បានបន្ថែម {0} DocType: Newsletter,Create and Send Newsletters,បង្កើតនិងផ្ញើព្រឹត្តិបត្រ DocType: Website Settings,Footer Items,ធាតុបាតកថា +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,សូមកំណត់គណនីអ៊ីម៉ែលលំនាំដើមពីការរៀបចំ> អ៊ីម៉ែល> គណនីអ៊ីម៉ែល DocType: Website Slideshow Item,Website Slideshow Item,ធាតុបញ្ចាំងតាមគេហទំព័រ apps/frappe/frappe/config/integrations.py,Register OAuth Client App,ចុះឈ្មោះ OAuth Client App DocType: Error Snapshot,Frames,ស៊ុម @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.",កម្រិត 0 គឺសម្រាប់សិទ្ធិឯកសារកម្រិតខ្ពស់សម្រាប់សិទ្ធិវាល។ DocType: Address,City/Town,ទីក្រុង / ទីប្រជុំជន DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?",វានឹងកំណត់ឡើងវិញនូវប្រធានបទបច្ចុប្បន្នរបស់អ្នកតើអ្នកប្រាកដថាអ្នកចង់បន្តទេ? apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},តម្រូវឱ្យមានវាលចាំបាច់នៅក្នុង {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},មានកំហុសក្នុងការភ្ជាប់ទៅគណនីអ៊ីម៉ែល {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,កំហុសមួយបានកើតឡើងខណៈពេលបង្កើតការកើតឡើងដដែលៗ @@ -528,7 +537,7 @@ DocType: Event,Event Category,ប្រភេទព្រឹត្តិកា apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,ជួរឈរផ្អែកលើ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,កែសម្រួលក្បាល DocType: Communication,Received,បានទទួល -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យចូលប្រើទំព័រនេះទេ។ +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យចូលប្រើទំព័រនេះទេ។ DocType: User Social Login,User Social Login,ការចូលសង្គមរបស់អ្នកប្រើប្រាស់ apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,សរសេរឯកសារ Python ក្នុងថតដូចគ្នាដែលវាត្រូវបានរក្សាទុកនិងត្រឡប់ជួរឈរនិងលទ្ធផល។ DocType: Contact,Purchase Manager,កម្មវិធីគ្រប់គ្រងការទិញ @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,ក apps/frappe/frappe/utils/data.py,Operator must be one of {0},សញ្ញាប្រមាណវិធីត្រូវតែមួយនៃ {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,ប្រសិនបើម្ចាស់ DocType: Data Migration Run,Trigger Name,ឈ្មោះកេះ -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,សរសេរចំណងជើងនិងការណែនាំទៅប្លក់របស់អ្នក។ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,យកវាលចេញ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,វេញទាំងអស់ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,ពណ៌ផ្ទៃខាងក្រោយ @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,បារ DocType: SMS Settings,Enter url parameter for message,បញ្ចូលប៉ារ៉ាម៉ែត្រ url សម្រាប់សារ apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,ទ្រង់ទ្រាយបោះពុម្ពផ្ទាល់ខ្លួនថ្មី apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} មានរួចហើយ +DocType: Workflow Document State,Is Optional State,គឺជាជម្រើសជម្រើស DocType: Address,Purchase User,អ្នកប្រើប្រាស់ទិញ DocType: Data Migration Run,Insert,បញ្ចូល DocType: Web Form,Route to Success Link,ផ្លូវទៅតំណជោគជ័យ @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,ឈ្ DocType: File,Is Home Folder,គឺថតផ្ទះ apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,ប្រភេទ: DocType: Post,Is Pinned,ត្រូវបានខ្ទាស់ -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},គ្មានការអនុញ្ញាតឱ្យ '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},គ្មានការអនុញ្ញាតឱ្យ '{0}' {1} DocType: Patch Log,Patch Log,កំណត់ហេតុបំណះ DocType: Print Format,Print Format Builder,បោះពុម្ពកម្មវិធីបង្កើតទ្រង់ទ្រាយ 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 Autor Auth ។ នេះក៏អាចត្រូវបានកំណត់សម្រាប់តែអ្នកប្រើប្រាស់ជាក់លាក់នៅក្នុងទំព័រអ្នកប្រើ apps/frappe/frappe/utils/data.py,only.,តែប៉ុណ្ណោះ។ apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,លក្ខខណ្ឌ '{0}' មិនត្រឹមត្រូវ DocType: Auto Email Report,Day of Week,ថ្ងៃនៃសប្តាហ៍ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,បើកដំណើរការ Google API នៅក្នុងការកំណត់ Google ។ DocType: DocField,Text Editor,កម្មវិធីនិពន្ធអត្ថបទ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,កាត់ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,ស្វែងរកឬវាយពាក្យបញ្ជា @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,ចំនួននៃព័ត៌មានបម្រុងទុក DB មិនអាចតិចជាង 1 DocType: Workflow State,ban-circle,ហាមឃាត់ - រង្វង់ DocType: Data Export,Excel,Excel +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","បឋមកថា, breadcrumbbs និងស្លាកមេតា" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,ការគាំទ្រអាសយដ្ឋានអ៊ីម៉ែលមិនបានបញ្ជាក់ DocType: Comment,Published,បានចេញផ្សាយ DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.",ចំណាំ: សម្រាប់លទ្ធផលល្អបំផុតរូបភាពត្រូវមានទំហំដូចគ្នានិងទទឹងត្រូវតែធំជាងកម្ពស់។ @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,កម្មវិធីកំណ apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,របាយការណ៍នៃការចែករំលែកឯកសារទាំងអស់ DocType: Website Sidebar Item,Website Sidebar Item,ធាតុរបារចំហៀងគេហទំព័រ apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,ធ្វើ +DocType: Google Settings,Google Settings,ការកំណត់ Google apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","ជ្រើសរើសប្រទេស, តំបន់ពេលវេលានិងរូបិយប័ណ្ណរបស់អ្នក" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","បញ្ចូលប៉ារ៉ាម៉ែត្រ url ឋិតិវនេះនៅទីនេះ (ឧ។ អ្នកផ្ញើរ = ERPNext, ឈ្មោះអ្នកប្រើប្រាស់ = ERPNext, ពាក្យសម្ងាត់ = 1234 ។ ល។ )" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,គ្មានគណនីអ៊ីម៉ែល @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token ,Setup Wizard,អ្នកជំនួយការរៀបចំ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,បិទបើកគំនូសតាង +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,ធ្វើសមកាលកម្ម DocType: Data Migration Run,Current Mapping Action,សកម្មភាពផ្គូផ្គងបច្ចុប្បន្ន DocType: Email Account,Initial Sync Count,រាប់សមកាលដំបូង apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,ការកំណត់សម្រាប់ទំនាក់ទំនងទំព័រ។ @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,បោះពុម្ពប្រភេទទ្រង់ទ្រាយ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,គ្មានសិទ្ធិអនុញ្ញាតសម្រាប់លក្ខណៈវិនិច្ឆ័យនេះ។ apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,ពង្រីកទាំងអស់ +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,រកមិនឃើញគំរូអាស័យដ្ឋានលំនាំដើម។ សូមបង្កើតថ្មីមួយពីការរៀបចំ> បោះពុម្ពនិងបង្កើតយីហោ> ពុម្ពលើ។ DocType: Tag Doc Category,Tag Doc Category,Tag Doc ប្រភេទ DocType: Data Import,Generated File,បង្កើតឯកសារ apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,ចំណាំ @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,វាលពេលវេលាត្រូវតែជាតំណឬតំណថាមវន្ត DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,ការជូនដំណឹងនិងសំបុត្រភាគច្រើននឹងត្រូវបានផ្ញើចេញពីម៉ាស៊ីនបម្រើចេញនេះ។ apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,នេះគឺជាពាក្យសម្ងាត់ទូទៅលេខ 100 ។ -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,ដាក់ស្នើជាអចិន្ត្រៃយ៍ {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,ដាក់ស្នើជាអចិន្ត្រៃយ៍ {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} មិនមានទេ, ជ្រើសរើសគោលដៅថ្មីមួយដើម្បីបញ្ចូលគ្នា" DocType: Energy Point Rule,Multiplier Field,វាលមេគុណ DocType: Workflow,Workflow State Field,វាលលំហាត់ការងារ @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} បានកោតសរសើរការងាររបស់អ្នកលើ {1} ជាមួយ {2} ពិន្ទុ DocType: Auto Email Report,Zero means send records updated at anytime,សូន្យមានន័យថាបញ្ជូនកំណត់ត្រាដែលបានធ្វើបច្ចុប្បន្នភាពគ្រប់ពេលវេលា apps/frappe/frappe/model/document.py,Value cannot be changed for {0},តម្លៃមិនអាចប្តូរសម្រាប់ {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,ការកំណត់ Google API ។ DocType: System Settings,Force User to Reset Password,បង្ខំអ្នកប្រើឱ្យកំណត់ពាក្យសម្ងាត់ឡើងវិញ apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,របាយការណ៍កម្មវិធីបង្កើតរបាយការណ៍ត្រូវបានគ្រប់គ្រងដោយអ្នកបង្កើតរបាយការណ៍ដោយផ្ទាល់។ គ្មានអ្វីធ្វើ។ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,កែសម្រួលតម្រង @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,ស DocType: S3 Backup Settings,eu-north-1,eu-north-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}",{0}: មានតែច្បាប់មួយប៉ុណ្ណោះត្រូវបានអនុញ្ញាតជាមួយតួនាទីដូចគ្នានិង {1} ដូចគ្នា។ apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យធ្វើបច្ចុប្បន្នភាពឯកសារទម្រង់បែបបទគេហទំព័រនេះទេ -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,ដែនកំណត់ឯកសារភ្ជាប់អតិបរមាសម្រាប់កំណត់ត្រានេះបានមកដល់។ +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,ដែនកំណត់ឯកសារភ្ជាប់អតិបរមាសម្រាប់កំណត់ត្រានេះបានមកដល់។ apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,សូមប្រាកដថាឯកសារឯកសារយោងមិនត្រូវបានភ្ជាប់ជារង្វង់ឡើយ។ DocType: DocField,Allow in Quick Entry,អនុញ្ញាតក្នុងការចូលរហ័ស DocType: Error Snapshot,Locals,អ្នកស្រុក @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,ប្រភេទលើកលែង apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},មិនអាចលុបឬបោះបង់បានទេព្រោះ {0} {1} ត្រូវបានភ្ជាប់ជាមួយ {2} {3} {4} apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,អាថ៌កំបាំង OTP អាចកំណត់ឡើងវិញដោយអ្នកគ្រប់គ្រង។ -DocType: Web Form Field,Page Break,ការបំបែកទំព័រ DocType: Website Script,Website Script,ស្គ្រីបវេបសាយ DocType: Integration Request,Subscription Notification,សេចក្តីជូនដំណឹងការជាវ DocType: DocType,Quick Entry,ធាតុរហ័ស @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,កំណត់អចលនទ្ apps/frappe/frappe/__init__.py,Thank you,សូមអរគុណ apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks សម្រាប់សមាហរណកម្មផ្ទៃក្នុង apps/frappe/frappe/config/settings.py,Import Data,នាំចូលទិន្នន័យ +DocType: Translation,Contributed Translation Doctype Name,ការបកប្រែដែលបានរួមចំណែកឈ្មោះឈ្មោះ DocType: Social Login Key,Office 365,ការិយាល័យ 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,លេខសម្គាល់ DocType: Review Level,Review Level,ពិនិត្យកម្រិតឡើងវិញ @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,បានធ្វើរួចរាល់ដោយជោគជ័យ apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} បញ្ជី apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,កោតសរសើរ -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),ថ្មី {0} (បញ្ជា (Ctrl) B) DocType: Contact,Is Primary Contact,ជាទំនាក់ទំនងចម្បង DocType: Print Format,Raw Commands,ពាក្យបញ្ជាដើម apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,សន្លឹករចនាប័ទ្មសម្រាប់ទ្រង់ទ្រាយបោះពុម្ព @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,កំហុសក apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},រក {0} នៅក្នុង {1} DocType: Email Account,Use SSL,ប្រើ SSL DocType: DocField,In Standard Filter,ក្នុងតម្រងស្តង់ដារ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,មិនមានទំនាក់ទំនង Google ដើម្បីធ្វើសមកាលកម្ម។ DocType: Data Migration Run,Total Pages,ទំព័រសរុប apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: វាល '{1}' មិនអាចកំណត់ជាលក្ខណៈពិសេសបានទេពីព្រោះវាមានតម្លៃដែលមិនមានតែមួយគត់ DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.",ប្រសិនបើបានបើកអ្នកប្រើនឹងត្រូវបានជូនដំណឹងរាល់ពេលដែលពួកគេចូល។ ប្រសិនបើមិនបានបើកអ្នកប្រើនឹងត្រូវបានជូនដំណឹងតែប៉ុណ្ណោះ។ @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,ស្វ័យប្រវត្តិក apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,កំពុងពន្លាឯកសារ ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',ស្វែងរក '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,មានអ្វីមួយមិនប្រក្រតី -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,សូមរក្សាទុកមុនពេលភ្ជាប់។ +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,សូមរក្សាទុកមុនពេលភ្ជាប់។ DocType: Version,Table HTML,តារាង HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,មជ្ឈមណ្ឌល DocType: Page,Standard,ស្តង់ដារ @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,គ្ម apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} បានលុបកំណត់ត្រា apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,មានអ្វីមួយមិនប្រក្រតីខណៈពេលបង្កើតនិមិត្តសញ្ញាចូលប្រើ dropbox ។ សូមពិនិត្យមើលកំណត់ហេតុកំហុសសម្រាប់ព័ត៌មានលម្អិត។ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,កូនចៅនៃ -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,រកមិនឃើញគំរូអាស័យដ្ឋានលំនាំដើម។ សូមបង្កើតថ្មីមួយពីការរៀបចំ> បោះពុម្ពនិងបង្កើតយីហោ> ពុម្ពលើ។ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,ទំនាក់ទំនង Google ត្រូវបានតំឡើង។ apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,លាក់ព័ត៌មានលម្អិត apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,រចនាប័ទ្មពុម្ពអក្សរ apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,ការជាវរបស់អ្នកនឹងផុតកំណត់នៅ {0} ។ apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},បានបរាជ័យក្នុងការផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវខណៈដែលទទួលអ៊ីម៉ែលពីគណនីអ៊ីម៉ែល {0} ។ សារពីម៉ាស៊ីនមេ: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),ស្ថិតិផ្អែកលើស្នាដៃសប្តាហ៍ចុងក្រោយ (ពី {0} ដល់ {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,ការភ្ជាប់ស្វ័យប្រវត្តិអាចត្រូវបានធ្វើឱ្យសកម្មតែប៉ុណ្ណោះប្រសិនបើបើកដំណើរការមក។ DocType: Website Settings,Title Prefix,បុព្វបទចំណងជើង apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,កម្មវិធីផ្ទៀងផ្ទាត់ដែលអ្នកអាចប្រើគឺ: DocType: Bulk Update,Max 500 records at a time,អតិបរមា 500 កំណត់ត្រាក្នុងពេលតែមួយ @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,រាយការណ៍ពីតម apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,ជ្រើសជួរឈរ DocType: Event,Participants,អ្នកចូលរួម DocType: Auto Repeat,Amended From,កែប្រែពី -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,ព័ត៌មានរបស់អ្នកត្រូវបានដាក់ស្នើ +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,ព័ត៌មានរបស់អ្នកត្រូវបានដាក់ស្នើ DocType: Help Category,Help Category,ប្រភេទជំនួយ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 ខែ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,ជ្រើសទ្រង់ទ្រាយដែលមានស្រាប់ដើម្បីកែសម្រួលឬចាប់ផ្ដើមទ្រង់ទ្រាយថ្មី។ @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,វាលដើម្បីតាមដាន DocType: User,Generate Keys,បង្កើតកូនសោ DocType: Comment,Unshared,មិនបានចែករំលែក -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,បានរក្សាទុក +DocType: Translation,Saved,បានរក្សាទុក DocType: OAuth Client,OAuth Client,OAuth Client DocType: System Settings,Disable Standard Email Footer,បិទបាតកថាអ៊ីមែលស្តង់ដារ apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,បោះពុម្ពទ្រង់ទ្រាយ {0} ត្រូវបានបិទ @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,បានអ DocType: Data Import,Action,សកម្មភាព apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,កូនសោអតិថិជនត្រូវបានទាមទារ DocType: Chat Profile,Notifications,ការជូនដំណឹង +DocType: Translation,Contributed,បានរួមចំណែក DocType: System Settings,mm/dd/yyyy,ម / dd / ឆ្នាំ DocType: Report,Custom Report,របាយការណ៍ផ្ទាល់ខ្លួន DocType: Workflow State,info-sign,info-sign @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,ទំនាក់ទំនង DocType: LDAP Settings,LDAP Username Field,វាលឈ្មោះអ្នកប្រើ LDAP apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",វាល {0} មិនអាចកំណត់ជាលក្ខណៈតែមួយនៅក្នុង {1} បានទេដោយសារតែមានតម្លៃមិនទាន់មានតែមួយ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,រៀបចំ> ប្តូរតាមបំណងទម្រង់ DocType: User,Social Logins,ការចូលសង្គម DocType: Workflow State,Trash,ធុងសំរាម DocType: Stripe Settings,Secret Key,កូនសោសម្ងាត់ @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,ចំណងជើងវាល apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,មិនអាចភ្ជាប់ទៅម៉ាស៊ីនបម្រើអ៊ីម៉ែលចេញ DocType: File,File URL,URL ឯកសារ DocType: Help Article,Likes,ចូលចិត្ត +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,សមាហរណកម្ម Google ទំនាក់ទំនងត្រូវបានបិទ។ apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,អ្នកត្រូវចូលនិងមានតួនាទីគ្រប់គ្រងប្រព័ន្ធដើម្បីអាចចូលប្រើព័ត៌មានបម្រុង។ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,កម្រិតដំបូង DocType: Blogger,Short Name,ឈ្មោះខ្លី @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,នាំចូលហ្សីប DocType: Contact,Gender,យេនឌ័រ DocType: Workflow State,thumbs-down,មេដៃចុះក្រោម -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},ជួរគួរតែជាផ្នែកមួយនៃ {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},មិនអាចកំណត់ការជូនដំណឹងលើប្រភេទឯកសារ {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,ការបន្ថែមកម្មវិធីគ្រប់គ្រងប្រព័ន្ធទៅអ្នកប្រើនេះត្រូវមានយ៉ាងហោចមួយកម្មវិធីគ្រប់គ្រងប្រព័ន្ធ apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,អ៊ីមែលស្វាគមន៍ត្រូវបានផ្ញើ DocType: Transaction Log,Chaining Hash,ច្រវ៉ាក់ហាប់ DocType: Contact,Maintenance Manager,កម្មវិធីគ្រប់គ្រងតំហែទាំ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","ដើម្បីប្រៀបធៀបប្រើ> 5, <10 ឬ = 324 ។ សម្រាប់ជួរប្រើ 5:10 (សម្រាប់តម្លៃរវាង 5 និង 10) ។" apps/frappe/frappe/utils/bot.py,show,បង្ហាញ apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,ចែករំលែក URL apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,ទ្រង់ទ្រាយឯកសារដែលមិនគាំទ្រ @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,សេចក្តីជូនដំណឹ DocType: Data Import,Show only errors,បង្ហាញតែកំហុស DocType: Energy Point Log,Review,ពិនិត្យឡើងវិញ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,ជួរដេកត្រូវបានយកចេញ -DocType: GSuite Settings,Google Credentials,លិខិតសម្គាល់ Google +DocType: Google Settings,Google Credentials,លិខិតសម្គាល់ Google apps/frappe/frappe/www/login.html,Or login with,ឬចូលជាមួយ apps/frappe/frappe/model/document.py,Record does not exist,កំណត់ត្រាមិនមាន apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,ឈ្មោះរបាយការណ៍ថ្មី @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,បញ្ជី DocType: Workflow State,th-large,ធំ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: មិនអាចកំណត់កំណត់ការដាក់ស្នើប្រសិនបើមិនបញ្ជូន apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,មិនភ្ជាប់ទៅកំណត់ត្រាណាមួយ +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","មានកំហុសក្នុងការភ្ជាប់ទៅនឹងកម្មវិធី QZ Tray ...

អ្នកត្រូវមានកម្មវិធី QZ Tray ដែលត្រូវបានដំឡើងហើយដំណើរការដើម្បីប្រើលក្ខណៈពិសេសដើម។

សូមចុចទីនេះដើម្បីទាញយកនិងដំឡើងថាស QZ
សូមចុចទីនេះដើម្បីស្វែងយល់បន្ថែមអំពីការបោះពុម្ពដើម ។" DocType: Chat Message,Content,មាតិកា DocType: Workflow Transition,Allow Self Approval,អនុញ្ញាតិឱ្យខ្លួនឯងយល់ព្រម apps/frappe/frappe/www/qrcode.py,Page has expired!,ទំព័របានផុតកំណត់ហើយ! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,ដៃស្តាំ DocType: Website Settings,Banner is above the Top Menu Bar.,ផ្ទាំងបដាស្ថិតនៅខាងលើរបារម៉ឺនុយខាងលើ។ apps/frappe/frappe/www/update-password.html,Invalid Password,ពាក្យសម្ងាត់មិនត្រឹមត្រូវ apps/frappe/frappe/utils/data.py,1 month ago,1 ខែកន្លងទៅ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,អនុញ្ញាតឱ្យចូលដំណើរការទំនាក់ទំនងរបស់ Google DocType: OAuth Client,App Client ID,លេខសម្គាល់អតិថិជនកម្មវិធី DocType: DocField,Currency,រូបិយប័ណ្ណ DocType: Website Settings,Banner,បដា @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,គោលដៅ DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.",ប្រសិនបើតួនាទីមិនមានលទ្ធភាពនៅកម្រិត 0 នោះកម្រិតខ្ពស់ជាងនេះគឺគ្មានន័យ។ DocType: ToDo,Reference Type,ប្រភេទសេចក្ដីយោង -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","អនុញ្ញាត DocType, Doc Type ។ សូមប្រុងប្រយត្ន័!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","អនុញ្ញាត DocType, Doc Type ។ សូមប្រុងប្រយត្ន័!" DocType: Domain Settings,Domain Settings,ការកំណត់ដែន DocType: Auto Email Report,Dynamic Report Filters,តម្រងរបាយការណ៍ថាមវន្ត DocType: Energy Point Log,Appreciation,ការកោតសរសើរ @@ -1468,6 +1489,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,us-west-2 DocType: DocType,Is Single,គឺនៅលីវ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,បង្កើតទ្រង់ទ្រាយថ្មី +DocType: Google Contacts,Authorize Google Contacts Access,ផ្តល់សិទ្ធិចូលដំណើរការទំនាក់ទំនង Google DocType: S3 Backup Settings,Endpoint URL,URL ចំណុចបញ្ចប់ DocType: Social Login Key,Google,Google DocType: Contact,Department,នាយកដ្ឋាន @@ -1482,7 +1504,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,កំណត់ DocType: List Filter,List Filter,តម្រងបញ្ជី DocType: Dashboard Chart Link,Chart,គំនូសតាង apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,មិនអាចយកចេញ -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,ដាក់ស្នើឯកសារនេះដើម្បីបញ្ជាក់ +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,ដាក់ស្នើឯកសារនេះដើម្បីបញ្ជាក់ apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} មានរួចហើយ។ ជ្រើសរើសឈ្មោះផ្សេងទៀត apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,អ្នកមានការផ្លាស់ប្តូរដែលមិនបានរក្សាទុកនៅក្នុងទម្រង់នេះ។ សូមរក្សាទុកមុនពេលអ្នកបន្ត។ apps/frappe/frappe/model/document.py,Action Failed,សកម្មភាពបានបរាជ័យ @@ -1564,6 +1586,7 @@ DocType: DocField,Display,បង្ហាញ apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,ឆ្លើយតបទាំងអស់ DocType: Calendar View,Subject Field,វាលប្រធានបទ apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},ការផុតកំណត់សម័យត្រូវតែមានទ្រង់ទ្រាយ {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},ការដាក់ពាក្យ: {0} DocType: Workflow State,zoom-in,ពង្រីកនៅ apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,បានបរាជ័យក្នុងការភ្ជាប់ទៅម៉ាស៊ីនមេ apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},កាលបរិច្ឆេទ {0} ត្រូវតែជាទម្រង់: {1} @@ -1575,8 +1598,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,រូបតំណាងនឹងលេចឡើងនៅលើប៊ូតុង DocType: Role Permission for Page and Report,Set Role For,កំណត់តួនាទីសម្រាប់ +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,ការភ្ជាប់ស្វ័យប្រវត្តិអាចត្រូវបានធ្វើឱ្យសកម្មតែប៉ុណ្ណោះសម្រាប់គណនីអ៊ីម៉ែលមួយ។ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,គ្មានគណនីអ៊ីម៉ែលដែលបានផ្តល់ +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,គណនីអ៊ីម៉ែលមិនត្រូវបានដំឡើង។ សូមបង្កើតគណនីអ៊ីម៉ែលថ្មីមួយពីការរៀបចំ> អ៊ីម៉ែល> គណនីអ៊ីម៉ែល apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,កិច្ចការ +DocType: Google Contacts,Last Sync On,ធ្វើសមកាលកម្មចុងក្រោយ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},ទទួលបានដោយ {0} តាមរយៈច្បាប់ស្វ័យប្រវត្តិ {1} apps/frappe/frappe/config/website.py,Portal,វិបផតថល apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,សូមអរគុណចំពោះអ៊ីម៉ែលរបស់អ្នក @@ -1597,7 +1623,6 @@ DocType: GSuite Settings,GSuite Settings,ការកំណត់ GSuite DocType: Integration Request,Remote,ពីចម្ងាយ DocType: File,Thumbnail URL,URL រូបភាពតូច apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,ទាញយករបាយការណ៍ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,ដំឡើង> អ្នកប្រើ apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},ការប្ដូរតាមបំណងសម្រាប់ {0} បាន នាំចេញទៅ:
{1} DocType: GCalendar Account,Calendar Name,ឈ្មោះប្រតិទិន apps/frappe/frappe/templates/emails/new_user.html,Your login id is,លេខកូដចូលរបស់អ្នកគឺ @@ -1647,6 +1672,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},ច apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,វាលរូបភាពត្រូវតែជាឈ្មោះវាលត្រឹមត្រូវ apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,អ្នកត្រូវចូលដើម្បីចូលប្រើទំព័រនេះ DocType: Assignment Rule,Example: {{ subject }},ឧទាហរណ៍: {{ប្រធានបទ}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,ឈ្មោះវាល {0} ត្រូវបានហាមឃាត់ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},អ្នកមិនអាចកំណត់ 'តែអាន' សម្រាប់វាល {0} ទេ DocType: Social Login Key,Enable Social Login,បើកដំណើរការចូលសង្គម DocType: Workflow,Rules defining transition of state in the workflow.,ច្បាប់កំណត់ការផ្លាស់ប្តូររបស់រដ្ឋនៅក្នុងលំហូរការងារ។ @@ -1667,10 +1693,10 @@ DocType: Website Settings,Route Redirects,បញ្ជូនបន្តផ្ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,អ៊ីមែលប្រអប់សំបុត្រ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},បានស្ដារឡើងវិញ {0} ជា {1} DocType: Assignment Rule,Automatically Assign Documents to Users,ផ្ដល់ឯកសារទៅអ្នកប្រើស្វ័យប្រវត្តិ +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,បើកផ្ទាំងល្អាង apps/frappe/frappe/config/settings.py,Email Templates for common queries.,ពុម្ពអ៊ីម៉ែលសម្រាប់សំណួរទូទៅ។ DocType: Letter Head,Letter Head Based On,ក្បាលសំបុត្រដែលមានមូលដ្ឋានលើ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,សូមបិទបង្អួចនេះ -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,ការទូទាត់ត្រូវបានបញ្ចប់ DocType: Contact,Designation,ការកំណត់ DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,ស្លាកមេតា @@ -1709,6 +1735,7 @@ DocType: System Settings,Choose authentication method to be used by all users, DocType: Error Snapshot,Parent Error Snapshot,កំហុសរបស់មាតាឬបិតា DocType: GCalendar Account,GCalendar Account,គណនី GCalendar DocType: Language,Language Name,ឈ្មោះភាសា +DocType: Workflow Document State,Workflow Action is not created for optional states,សកម្មភាពលំហូរការងារមិនត្រូវបានបង្កើតឡើងសម្រាប់រដ្ឋជាជម្រើស DocType: Customize Form,Customize Form,ប្ដូរទម្រង់តាមបំណង DocType: DocType,Image Field,វាលរូបភាព apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),បានបន្ថែម {0} ({1}) @@ -1750,6 +1777,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,អនុវត្តច្បាប់នេះប្រសិនបើអ្នកប្រើជាម្ចាស់កម្មសិទ្ធិ DocType: About Us Settings,Org History Heading,Org ប្រវត្តិក្បាល apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,កំហុសម៉ាស៊ីនបម្រើ +DocType: Contact,Google Contacts Description,ការពិពណ៌នាទំនាក់ទំនង Google apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,តួនាទីជាស្តង់ដារមិនអាចត្រូវបានប្តូរឈ្មោះទេ DocType: Review Level,Review Points,ពិន្ទុពិនិត្យឡើងវិញ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,បាត់ប៉ារ៉ាម៉ែត្រឈ្មោះក្រុមប្រឹក្សាភិបាល Kanban @@ -1767,7 +1795,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,មិនមែននៅក្នុងរបៀបអ្នកអភិវឌ្ឍទេ! កំណត់នៅក្នុង site_config.json ឬបង្កើត Doc Type ។ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,ទទួលបាន {0} ពិន្ទុ DocType: Web Form,Success Message,សារជោគជ័យ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","ដើម្បីប្រៀបធៀបប្រើ> 5, <10 ឬ = 324 ។ សម្រាប់ជួរប្រើ 5:10 (សម្រាប់តម្លៃរវាង 5 និង 10) ។" DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",ការពិពណ៌នាសម្រាប់ទំព័របញ្ជីជាអត្ថបទធម្មតាមានតែពីរបន្ទាត់ប៉ុណ្ណោះ។ (អតិបរមា 140 តួអក្សរ) apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,បង្ហាញការអនុញ្ញាត DocType: DocType,Restrict To Domain,ដាក់កម្រិតលើដែន @@ -1789,6 +1816,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,មិ apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,កំណត់បរិមាណ DocType: Auto Repeat,End Date,កាលបរិច្ឆេទបញ្ចប់ DocType: Workflow Transition,Next State,រដ្ឋបន្ទាប់ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} ទំនាក់ទំនង Google បានធ្វើសមកាលកម្ម។ DocType: System Settings,Is First Startup,ការចាប់ផ្តើមដំបូង apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},ធ្វើបច្ចុប្បន្នភាពទៅ {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,ផ្លាស់ទីទៅ @@ -1838,6 +1866,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} ប្រតិទិន apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,គំរូនាំចូលទិន្នន័យ DocType: Workflow State,hand-left,ដៃឆ្វេង +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,ជ្រើសរើសធាតុបញ្ជីច្រើន apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,ទំហំបម្រុងទុក: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},បានភ្ជាប់ជាមួយ {0} DocType: Braintree Settings,Private Key,កូនសោឯកជន @@ -1880,13 +1909,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,ការប្រាក់ DocType: Bulk Update,Limit,ដែនកំណត់ DocType: Print Settings,Print taxes with zero amount,បោះពុម្ពពន្ធដែលមានលេខសូន្យ -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,គណនីអ៊ីម៉ែលមិនត្រូវបានដំឡើង។ សូមបង្កើតគណនីអ៊ីម៉ែលថ្មីមួយពីការរៀបចំ> អ៊ីម៉ែល> គណនីអ៊ីម៉ែល DocType: Workflow State,Book,សៀវភៅ DocType: S3 Backup Settings,Access Key ID,ចូលប្រើលេខសម្គាល់សោ DocType: Chat Message,URLs,URLs apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,ឈ្មោះនិងនាមត្រកូលដោយខ្លួនឯងងាយនឹងស្មាន។ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},របាយការណ៍ {0} DocType: About Us Settings,Team Members Heading,សមាជិកក្រុម +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,ជ្រើសធាតុបញ្ជី apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},ឯកសារ {0} ត្រូវបានកំណត់ដើម្បីបញ្ជាក់ {1} ដោយ {2} DocType: Address Template,Address Template,អាសយដ្ឋានពុម្ព DocType: Workflow State,step-backward,ជំហានថយក្រោយ @@ -1910,6 +1939,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,នាំចេញសិទ្ធិផ្ទាល់ខ្លួន apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,គ្មាន: បញ្ចប់លំហូរការងារ DocType: Version,Version,កំណែ +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,បើកធាតុបញ្ជី apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 ខែ DocType: Chat Message,Group,ក្រុម apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},មានបញ្ហាខ្លះជាមួយ url ឯកសារ: {0} @@ -1965,6 +1995,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 ឆ្នា apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} បានត្រឡប់ពិន្ទុរបស់អ្នកនៅលើ {1} DocType: Workflow State,arrow-down,ព្រួញចុះក្រោម DocType: Data Import,Ignore encoding errors,មិនអើពើកំហុសការអ៊ិនកូដ +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,ទេសភាព DocType: Letter Head,Letter Head Name,ឈ្មោះដើមអក្សរ DocType: Web Form,Client Script,ស្គ្រីបអតិថិជន DocType: Assignment Rule,Higher priority rule will be applied first,ច្បាប់អាទិភាពខ្ពស់នឹងត្រូវបានអនុវត្តមុន @@ -2009,6 +2040,7 @@ DocType: Kanban Board Column,Green,បៃតង apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,មានតែវាលចាំបាច់ប៉ុណ្ណោះដែលចាំបាច់សម្រាប់កំណត់ត្រាថ្មីៗ។ អ្នកអាចលុបជួរឈរដែលមិនចាំបាច់ប្រសិនបើអ្នកចង់។ apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} ត្រូវតែចាប់ផ្តើមនិងបញ្ចប់ដោយអក្សរនិងអាចមានតែអក្សរ, សហសញ្ញាឬសញ្ញាគូសក្រោមប៉ុណ្ណោះ។" +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,បណ្តោះអាសន្នសកម្មភាពចម្បង apps/frappe/frappe/core/doctype/user/user.js,Create User Email,បង្កើតអ៊ីម៉ែលអ្នកប្រើ apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,វាលតម្រៀប {0} ត្រូវតែជាឈ្មោះវាលត្រឹមត្រូវ DocType: Auto Email Report,Filter Meta,ត្រងមេតា @@ -2038,6 +2070,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,វាលពេលវេលា apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,កំពុងផ្ទុក ... DocType: Auto Email Report,Half Yearly,ពាក់កណ្តាលឆ្នាំ +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,ពត៌មានរបស់ខ្ញុំ apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,កាលបរិច្ឆេទកែប្រែចុងក្រោយ DocType: Contact,First Name,ឈ្មោះដំបូង DocType: Post,Comments,យោបល់ @@ -2060,6 +2093,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,មាតិកាហាប់ apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},ប្រកាសដោយ {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} បានកំណត់ {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,គ្មានទំនាក់ទំនង Google បានធ្វើសមកាលកម្ម។ DocType: Workflow State,globe,សកលលោក apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},មធ្យមនៃ {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,ជម្រះកំណត់ហេតុកំហុស @@ -2086,6 +2120,8 @@ DocType: Workflow State,Inverse,ផ្ទុយ DocType: Activity Log,Closed,បានបិទ DocType: Report,Query,សំណួរ DocType: Notification,Days After,ថ្ងៃបន្ទាប់ +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,ផ្លូវទំព័រ +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,បញ្ឈរ apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,សំណើអស់ពេល DocType: System Settings,Email Footer Address,អាសយដ្ឋានបាតកថាអ៊ីម៉ែល apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,ចំណុចបច្ចុប្បន្នភាពថាមពល @@ -2113,6 +2149,7 @@ For Select, enter list of Options, each on a new line.",សម្រាប់ត apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 នាទីមុន apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,គ្មានសម័យសកម្ម apps/frappe/frappe/model/base_document.py,Row,ជួរដេក +DocType: Contact,Middle Name,ជាឈ្មោះកណ្តាល apps/frappe/frappe/public/js/frappe/request.js,Please try again,សូមព្យាយាមម្តងទៀត DocType: Dashboard Chart,Chart Options,ជម្រើសគំនូសតាង DocType: Data Migration Run,Push Failed,ការជំរុញបានបរាជ័យ @@ -2141,6 +2178,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,ប្តូរទំហំតូច DocType: Comment,Relinked,Relinked DocType: Role Permission for Page and Report,Roles HTML,តួនាទីរបស់ HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,ទៅ apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,លំហូរការងារនឹងចាប់ផ្តើមបន្ទាប់ពីរក្សាទុក។ DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","ប្រសិនបើទិន្នន័យរបស់អ្នកគឺនៅក្នុង HTML, សូមចម្លងបិទភ្ជាប់កូដ HTML ពិតប្រាកដជាមួយនឹងស្លាក។" apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,កាលបរិច្ឆេទគឺមានភាពងាយស្រួលក្នុងការស្មាន។ @@ -2169,7 +2207,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,រូបតំណាងផ្ទៃតុ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,បានបោះបង់ឯកសារនេះ apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,ជួរកាលបរិច្ឆេទ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ដំឡើង> សិទ្ធិអ្នកប្រើ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} ពេញចិត្ត {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,តម្លៃត្រូវបានផ្លាស់ប្តូរ apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,កំហុសក្នុងការជូនដំណឹង @@ -2234,6 +2271,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,លុបច្រើន DocType: DocShare,Document Name,ឈ្មោះឯកសារ apps/frappe/frappe/config/customization.py,Add your own translations,បន្ថែមការបកប្រែផ្ទាល់ខ្លួនរបស់អ្នក +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,រុករកបញ្ជីចុះក្រោម DocType: S3 Backup Settings,eu-central-1,eu-central-1 DocType: Auto Repeat,Yearly,ឆ្នាំ apps/frappe/frappe/public/js/frappe/model/model.js,Rename,ប្តូរឈ្មោះ @@ -2284,6 +2322,7 @@ DocType: Workflow State,plane,យន្តហោះ apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,កំហុសដែលបានកំណត់ខាងក្នុង។ សូមទាក់ទងអ្នកគ្រប់គ្រង។ apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,បង្ហាញរបាយការណ៍ DocType: Auto Repeat,Auto Repeat Schedule,ធ្វើតារាងពេលវេលាដោយស្វ័យប្រវត្តិ +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,មើល Ref DocType: Address,Office,ការិយាល័យ DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} ថ្ងៃមុន @@ -2317,7 +2356,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required, apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,ការកំណត់របស់ខ្ញុំ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,ឈ្មោះក្រុមមិនអាចទទេបានទេ។ DocType: Workflow State,road,ផ្លូវ -DocType: Website Route Redirect,Source,ប្រភព +DocType: Contact,Source,ប្រភព apps/frappe/frappe/www/third_party_apps.html,Active Sessions,សម័យសកម្ម apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,វាអាចមានតែមួយគត់ក្នុងសំណុំបែបបទមួយ apps/frappe/frappe/public/js/frappe/chat.js,New Chat,ការជជែកថ្មី @@ -2339,6 +2378,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,សូមបញ្ចូល URL សិទ្ធិអនុញ្ញាត DocType: Email Account,Send Notification to,ផ្ញើការជូនដំណឹងទៅ apps/frappe/frappe/config/integrations.py,Dropbox backup settings,ការកំណត់បម្រុងទុក Dropbox +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,មានបញ្ហាអ្វីមួយកើតឡើងក្នុងជំនាន់ជំនាន់អ្នកតំណាង។ ចុចលើ {0} ដើម្បីបង្កើតថ្មី។ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,លុបការប្ដូរតាមបំណងទាំងអស់? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,មានតែអ្នកគ្រប់គ្រងប៉ុណ្ណោះទើបអាចកែបាន DocType: Auto Repeat,Reference Document,ឯកសារយោង @@ -2363,6 +2403,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,តួនាទីអាចត្រូវបានកំណត់សម្រាប់អ្នកប្រើពីទំព័រអ្នកប្រើប្រាស់។ DocType: Website Settings,Include Search in Top Bar,រួមបញ្ចូលការស្វែងរកនៅក្នុងរបារកំពូល apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[បន្ទាន់] កំហុសខណៈពេលបង្កើតការកើតឡើងដដែលៗ% s សម្រាប់% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,ផ្លូវកាត់សកល DocType: Help Article,Author,អ្នកនិពន្ធ DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,រកមិនឃើញឯកសារសម្រាប់តម្រងដែលបានផ្តល់ @@ -2398,10 +2439,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, ជួរដេក {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.",ប្រសិនបើអ្នកកំពុងផ្ទុកឡើងនូវកំណត់ត្រាថ្មីនោះ "Naming Series" ក្លាយជាចាំបាច់ប្រសិនបើមានវត្តមាន។ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,កែសម្រួលលក្ខណៈសម្បត្តិ -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,មិនអាចបើកវត្ថុនៅពេលបើក {0} របស់វា +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,មិនអាចបើកវត្ថុនៅពេលបើក {0} របស់វា DocType: Activity Log,Timeline Name,ឈ្មោះបន្ទាត់ពេលវេលា DocType: Comment,Workflow,លំហូរការងារ apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,សូមកំណត់ URL មូលដ្ឋានក្នុងកូនសោចូលសង្គមសម្រាប់ការរឹបអូស +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,ផ្លូវកាត់ក្តារចុច DocType: Portal Settings,Custom Menu Items,ធាតុម៉ឺនុយផ្ទាល់ខ្លួន apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,ប្រវែង {0} គួរតែនៅចន្លោះ 1 និង 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,ការតភ្ជាប់បានដាច់។ លក្ខណៈពិសេសខ្លះអាចនឹងមិនដំណើរការ។ @@ -2464,6 +2506,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,ជួរ DocType: DocType,Setup,រៀបចំ apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} បានបង្កើតដោយជោគជ័យ apps/frappe/frappe/www/update-password.html,New Password,ពាក្យសម្ងាត់ថ្មី +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,ជ្រើសវាល apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,ចាកចេញពីការសន្ទនានេះ DocType: About Us Settings,Team Members,សមាជិកក្រុម DocType: Blog Settings,Writers Introduction,សេចក្តីផ្តើមអ្នកនិពន្ធ @@ -2533,13 +2576,12 @@ DocType: Chat Room,Name,ឈ្មោះ DocType: Communication,Email Template,គំរូអ៊ីម៉ែល DocType: Energy Point Settings,Review Levels,ពិនិត្យកម្រិតឡើងវិញ DocType: Print Format,Raw Printing,បោះពុម្ពដើម -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,មិនអាចបើក {0} នៅពេលដែលវត្ថុរបស់វាបើក +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,មិនអាចបើក {0} នៅពេលដែលវត្ថុរបស់វាបើក DocType: DocType,"Make ""name"" searchable in Global Search",ធ្វើឱ្យ "ឈ្មោះ" អាចស្វែងរកនៅសកលស្វែងរក DocType: Data Migration Mapping,Data Migration Mapping,ផែនទីអន្តោប្រវេសន៍ទិន្នន័យ DocType: Data Import,Partially Successful,ជោគជ័យខ្លះៗ DocType: Communication,Error,កំហុស apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},មិនអាចប្ដូរប្រភេទវាលពី {0} ទៅ {1} ក្នុងជួរដេក {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","មានកំហុសក្នុងការភ្ជាប់ទៅនឹងកម្មវិធី QZ Tray ...

អ្នកត្រូវមានកម្មវិធី QZ Tray ដែលត្រូវបានដំឡើងហើយដំណើរការដើម្បីប្រើលក្ខណៈពិសេសដើម។

សូមចុចទីនេះដើម្បីទាញយកនិងដំឡើងថាស QZ
សូមចុចទីនេះដើម្បីស្វែងយល់បន្ថែមអំពីការបោះពុម្ពដើម ។" apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,ថតរូប apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,ជៀសវាងឆ្នាំដែលទាក់ទងនឹងអ្នក។ DocType: Web Form,Allow Incomplete Forms,អនុញ្ញាតសំណុំបែបបទមិនពេញលេញ @@ -2635,7 +2677,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",ជ្រើសគោលដៅ = "_blank" ដើម្បីបើកនៅក្នុងទំព័រថ្មីមួយ។ DocType: Portal Settings,Portal Menu,ម៉ឺនុយវិបផតថល DocType: Website Settings,Landing Page,ទំព័រចុះចត -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,សូមចុះឈ្មោះឬចូលដើម្បីចាប់ផ្តើម DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","ជម្រើសទំនាក់ទំនងដូចជា "សំណួរលក់, ការគាំទ្រសំណួរ" ។ ល។ នីមួយៗនៅលើបន្ទាត់ថ្មីឬបំបែកដោយសញ្ញាក្បៀស។" apps/frappe/frappe/twofactor.py,Verfication Code,កូដ Verfication apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} បានឈប់ជាវរួចហើយ @@ -2721,6 +2762,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,ការធ្ DocType: Address,Sales User,អ្នកលក់ apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","ផ្លាស់ប្តូរលក្ខណសម្បត្តិវាល (លាក់, អាន, សិទ្ធិ។ ល។ )" DocType: Property Setter,Field Name,ឈ្មោះវាល +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,អតិថិជន DocType: Print Settings,Font Size,ទំហំអក្សរ DocType: User,Last Password Reset Date,ពាក្យសម្ងាត់ចុងក្រោយកំណត់ឡើងវិញ DocType: System Settings,Date and Number Format,ទ្រង់ទ្រាយកាលបរិច្ឆេទនិងលេខ @@ -2786,6 +2828,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,ថ្នាំ apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,បញ្ចូលចូលគ្នាជាមួយស្រាប់ DocType: Blog Post,Blog Intro,កំណត់ហេតុបណ្ដាញកំណត់ហេតុបណ្ដាញ apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,ការនិយាយថ្មី +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,លោតទៅវាល DocType: Prepared Report,Report Name,រាយការណ៍ឈ្មោះ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,សូមផ្ទុកឡើងវិញដើម្បីទទួលយកឯកសារចុងក្រោយបំផុត។ apps/frappe/frappe/core/doctype/communication/communication.js,Close,បិទ @@ -2795,10 +2838,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,ព្រឹត្តិការណ៍ DocType: Social Login Key,Access Token URL,URL ផ្ទៀងផ្ទាត់ចូល apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,សូមកំណត់កូនសោចូលក្នុង Dropbox នៅក្នុងវែបសាយត៍របស់អ្នក +DocType: Google Contacts,Google Contacts,ទំនាក់ទំនង Google DocType: User,Reset Password Key,កំណត់ពាក្យសម្ងាត់ឡើងវិញ apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,បានកែប្រែដោយ DocType: User,Bio,ជីវ apps/frappe/frappe/limits.py,"To renew, {0}.","ដើម្បីបន្ត, {0} ។" +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,បានរក្សាទុកដោយជោគជ័យ +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,ផ្ញើអ៊ីមែលទៅ {0} ដើម្បីភ្ជាប់វានៅទីនេះ។ DocType: File,Folder,ថត DocType: DocField,Perm Level,កម្រិត Perm DocType: Print Settings,Page Settings,ការកំណត់ទំព័រ @@ -2828,6 +2874,7 @@ DocType: Workflow State,remove-sign,យកចេញ - សញ្ញា DocType: Dashboard Chart,Full,ពេញ DocType: DocType,User Cannot Create,អ្នកប្រើមិនអាចបង្កើត apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,អ្នកទទួលបានពិន្ទុ {0} +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,ដំឡើង> អ្នកប្រើ DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.",ប្រសិនបើអ្នកកំណត់វាធាតុនេះនឹងបង្ហាញនៅក្នុងបញ្ជីទម្លាក់ចុះក្រោមមាតាបិតាដែលបានជ្រើស។ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,គ្មានអ៊ីម៉ែល apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,បាត់វាលខាងក្រោម: @@ -2841,13 +2888,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,ប DocType: Web Form,Web Form Fields,វាលសំណុំបែបបទបណ្តាញ DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,សំណុំបែបបទកែសម្រួលរបស់អ្នកប្រើនៅលើវេបសាយ។ -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,បោះបង់ចោល {0} អចិន្ត្រៃ? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,បោះបង់ចោល {0} អចិន្ត្រៃ? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,ជម្រើសទី 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,សរុប apps/frappe/frappe/utils/password_strength.py,This is a very common password.,នេះគឺជាពាក្យសម្ងាត់ទូទៅបំផុត។ DocType: Personal Data Deletion Request,Pending Approval,រង់ចាំការអនុម័ត apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,មិនអាចកំណត់ឯកសារឱ្យបានត្រឹមត្រូវ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},មិនអនុញ្ញាតសម្រាប់ {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,គ្មានតម្លៃត្រូវបង្ហាញ DocType: Personal Data Download Request,Personal Data Download Request,ទិន្នន័យផ្ទាល់ខ្លួនទាញយកសំណើ apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} បានចែករំលែកឯកសារនេះជាមួយ {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},ជ្រើសរើស {0} @@ -2863,7 +2911,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},អ៊ីមែលនេះត្រូវបានផ្ញើទៅ {0} ហើយចម្លងទៅ {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,ការចូលឬពាក្យសម្ងាត់មិនត្រឹមត្រូវ DocType: Social Login Key,Social Login Key,សោចូលសង្គម -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,សូមកំណត់គណនីអ៊ីម៉ែលលំនាំដើមពីការរៀបចំ> អ៊ីម៉ែល> គណនីអ៊ីម៉ែល apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,តម្រងបានរក្សាទុក DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",តើរូបិយប័ណ្ណនេះគួរត្រូវបានគេធ្វើទ្រង់ទ្រាយយ៉ាងដូចម្តេច? ប្រសិនបើមិនបានកំណត់នឹងប្រើលំនាំដើមប្រព័ន្ធ apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} ត្រូវបានកំណត់ឱ្យកំណត់ {2} @@ -2989,6 +3036,7 @@ DocType: User,Location,ទីកន្លែង apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,គ្មានទិន្នន័យ DocType: Website Meta Tag,Website Meta Tag,ស្លាកមេតាវ៉ិបសាយ DocType: Workflow State,film,ខ្សែភាពយន្ត +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,បានចម្លងទៅក្ដារតម្បៀតខ្ទាស់។ apps/frappe/frappe/integrations/utils.py,{0} Settings not found,រកមិនឃើញការកំណត់ {0} apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,ស្លាកគឺចាំបាច់ DocType: Webhook,Webhook Headers,បឋមកថា Webhook @@ -3197,7 +3245,7 @@ DocType: Address,Address Line 1,អាសយដ្ឋានបន្ទាត់ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,សម្រាប់ប្រភេទឯកសារ apps/frappe/frappe/model/base_document.py,Data missing in table,បាត់ទិន្នន័យក្នុងតារាង apps/frappe/frappe/utils/bot.py,Could not identify {0},មិនអាចកំណត់អត្តសញ្ញាណ {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,សំណុំបែបបទនេះត្រូវបានកែប្រែបន្ទាប់ពីអ្នកបានផ្ទុកវា +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,សំណុំបែបបទនេះត្រូវបានកែប្រែបន្ទាប់ពីអ្នកបានផ្ទុកវា apps/frappe/frappe/www/login.html,Back to Login,ត្រឡប់ទៅចូល apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,មិនបានកំណត់ DocType: Data Migration Mapping,Pull,ទាញ @@ -3265,6 +3313,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,តារាងផែ apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,ការរៀបចំគណនីអ៊ីមែលសូមបញ្ចូលពាក្យសម្ងាត់របស់អ្នកសម្រាប់: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,មានមនុស្សច្រើនណាស់សរសេរក្នុងសំណើមួយ។ សូមផ្ញើសំណើតូចជាង DocType: Social Login Key,Salesforce,ការលក់ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},ការនាំចូល {0} នៃ {1} DocType: User,Tile,ក្រឡាក្បឿង apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} បន្ទប់ត្រូវតែមានអ្នកប្រើម្នាក់។ DocType: Email Rule,Is Spam,គឺជាសារឥតបានការ @@ -3302,7 +3351,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,ថត - បិទ DocType: Data Migration Run,Pull Update,ទាញបច្ចុប្បន្នភាព apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},បញ្ចូល {0} ទៅ {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

DocType: SMS Settings,Enter url parameter for receiver nos,បញ្ចូលប៉ារ៉ាម៉ែត្រ url សម្រាប់អ្នកទទួលយើង apps/frappe/frappe/utils/jinja.py,Syntax error in template,កំហុសវាក្យសម្ពន្ធក្នុងគំរូ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,សូមកំណត់តម្លៃតម្រងក្នុងតារាងតម្រងរបាយការណ៍។ @@ -3315,6 +3363,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","សូម DocType: System Settings,In Days,ក្នុងថ្ងៃ DocType: Report,Add Total Row,បន្ថែមជួរដេកសរុប apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,ការចាប់ផ្ដើមសម័យបរាជ័យ +DocType: Translation,Verified,បានផ្ទៀងផ្ទាត់ DocType: Print Format,Custom HTML Help,ជំនួយ HTML ផ្ទាល់ខ្លួន DocType: Address,Preferred Billing Address,អាសយដ្ឋានវិក័យប័ត្រដែលពេញចិត្ត apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,បានផ្ដល់ទៅ @@ -3329,7 +3378,6 @@ DocType: Help Article,Intermediate,មធ្យម DocType: Module Def,Module Name,ឈ្មោះម៉ូឌុល DocType: OAuth Authorization Code,Expiration time,ពេលវេលាផុតកំណត់ apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.",កំណត់ទ្រង់ទ្រាយលំនាំដើមទំហំទំព័ររចនាបថបោះពុម្ព។ ល។ -apps/frappe/frappe/desk/like.py,You cannot like something that you created,អ្នកមិនអាចចូលចិត្តអ្វីដែលអ្នកបានបង្កើតទេ DocType: System Settings,Session Expiry,ការផុតកំណត់សម័យ DocType: DocType,Auto Name,ឈ្មោះដោយស្វ័យប្រវត្តិ apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,ជ្រើសឯកសារភ្ជាប់ @@ -3357,6 +3405,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,ទំព័រប្រព័ន្ធ DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,សំគាល់: តាមអ៊ីមែលលំនាំដើមសម្រាប់ការបម្រុងទុកដែលបរាជ័យបានផ្ញើ។ DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm +DocType: Translation,PR sent,PR បានផ្ញើ DocType: Tag Doc Category,Doctype to Assign Tags,កំណត់អត្តសញ្ញាណដើម្បីកំណត់ស្លាក DocType: Address,Warehouse,ឃ្លាំង apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,តំឡើង Dropbox @@ -3424,7 +3473,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,បញ្ជា (Ctrl) + បញ្ចូល (Enter) ដើម្បីបន្ថែមមតិ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,វាល {0} មិនអាចជ្រើសបាន។ DocType: User,Birth Date,ថ្ងៃខែឆ្នាំកំណើត -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,ជាមួយនឹងការចូលបន្ទាត់ក្រុម DocType: List View Setting,Disable Count,បិទដំណើរការរាប់ DocType: Contact Us Settings,Email ID,លេខសំគាល់សារអេឡិចត្រូនិច apps/frappe/frappe/utils/password.py,Incorrect User or Password,អ្នកប្រើប្រាស់មិនត្រឹមត្រូវឬលេខសំងាត់ @@ -3459,6 +3507,7 @@ DocType: Website Settings,<head> HTML,<ក្បាល> HTML DocType: Custom DocPerm,This role update User Permissions for a user,សិទ្ធិនេះធ្វើបច្ចុប្បន្នភាពសិទ្ធិអ្នកប្រើសម្រាប់អ្នកប្រើ DocType: Website Theme,Theme,ស្បែក DocType: Web Form,Show Sidebar,បង្ហាញរបារចំហៀង +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,សមាហរណកម្មទំនាក់ទំនង Google ។ apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,ប្រអប់ទទួលលំនាំដើម apps/frappe/frappe/www/login.py,Invalid Login Token,លេខសម្គាល់ចូលមិនត្រឹមត្រូវ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,ដំបូងកំណត់ឈ្មោះនិងរក្សាទុកកំណត់ត្រា។ @@ -3486,7 +3535,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,សូមកែតម្រូវ DocType: Top Bar Item,Top Bar Item,ធាតុរបារកំពូល ,Role Permissions Manager,គ្រប់គ្រងសិទ្ធិការអនុញ្ញាត -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,មានកំហុស។ សូមរាយការណ៍ពីនេះ។ +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ឆ្នាំមុន apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,ស្រី DocType: System Settings,OTP Issuer Name,ឈ្មោះអ្នកចេញផ្សាយ OTP apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,បន្ថែមទៅដើម្បីធ្វើ @@ -3586,6 +3635,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","ភា apps/frappe/frappe/model/document.py,none of,គ្មាន DocType: Desktop Icon,Page,ទំព័រ DocType: Workflow State,plus-sign,សញ្ញាបូក +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,ជម្រះឃ្លាំងសម្ងាត់និងផ្ទុកឡើងវិញ apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,មិនអាចធ្វើបច្ចុប្បន្នភាព: តំណមិនត្រឹមត្រូវ / ផុតកំណត់។ DocType: Kanban Board Column,Yellow,លឿង DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),ចំនួនជួរឈរសម្រាប់វាលមួយនៅក្នុងក្រឡាចត្រង្គ (ជួរឈរសរុបក្នុងក្រឡាចត្រង្គគួរមានតិចជាង 11) @@ -3600,6 +3650,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,ក DocType: Activity Log,Date,កាលបរិច្ឆេទ DocType: Communication,Communication Type,ប្រភេទទំនាក់ទំនង apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,តារាងមាតាបិតា +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,រុករកបញ្ជី DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,បង្ហាញកំហុសពេញលេញនិងអនុញ្ញាតឱ្យរាយការណ៍បញ្ហាទៅអ្នកអភិវឌ្ឍន៍ DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3620,7 +3671,6 @@ DocType: Communication,Sent,បានផ្ញើ DocType: Notification Recipient,Email By Role,អ៊ីម៉ែលតាមតួនាទី apps/frappe/frappe/email/queue.py,This email was sent to {0},អ៊ីមែលនេះត្រូវបានផ្ញើទៅ {0} DocType: User,Represents a User in the system.,តំណាងឱ្យអ្នកប្រើនៅក្នុងប្រព័ន្ធ។ -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},ទំព័រ {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,ចាប់ផ្តើមទ្រង់ទ្រាយថ្មី apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,បន្ថែមមតិយោបល់ apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} នៃ {1} diff --git a/frappe/translations/kn.csv b/frappe/translations/kn.csv index 7f5dc1669a..5bd85482ba 100644 --- a/frappe/translations/kn.csv +++ b/frappe/translations/kn.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,ಗ್ರೇಡಿಯೆಂಟ್ಗಳನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ DocType: DocType,Default Sort Order,ಡೀಫಾಲ್ಟ್ ವಿಂಗಡಣಾ ಆದೇಶ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,ವರದಿಗಳಿಂದ ಸಂಖ್ಯಾ ಕ್ಷೇತ್ರಗಳನ್ನು ಮಾತ್ರ ತೋರಿಸಲಾಗುತ್ತಿದೆ +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,ಮೆನು ಮತ್ತು ಸೈಡ್‌ಬಾರ್‌ನಲ್ಲಿ ಹೆಚ್ಚುವರಿ ಶಾರ್ಟ್‌ಕಟ್‌ಗಳನ್ನು ಪ್ರಚೋದಿಸಲು ಆಲ್ಟ್ ಕೀ ಒತ್ತಿರಿ DocType: Workflow State,folder-open,ಫೋಲ್ಡರ್ ತೆರೆಯುತ್ತದೆ DocType: Customize Form,Is Table,ಟೇಬಲ್ apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,ಲಗತ್ತಿಸಲಾದ ಫೈಲ್ ತೆರೆಯಲು ಸಾಧ್ಯವಿಲ್ಲ. ನೀವು ಇದನ್ನು CSV ಎಂದು ರಫ್ತು ಮಾಡಿದ್ದೀರಾ? DocType: DocField,No Copy,ನಕಲಿಸಬೇಡಿ DocType: Custom Field,Default Value,ಡೀಫಾಲ್ಟ್ ಮೌಲ್ಯ apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,ಒಳಬರುವ ಮೇಲ್ಗಳಿಗಾಗಿ ಕಡ್ಡಾಯವಾಗಿ ಸೇರಿಸುವುದು +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,ಸಂಪರ್ಕಗಳನ್ನು ಸಿಂಕ್ ಮಾಡಿ DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,ಡೇಟಾ ವಲಸೆ ಮ್ಯಾಪಿಂಗ್ ವಿವರ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,ಅನುಸರಿಸಬೇಡಿ apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.","ರಾ ಪ್ರಿಂಟ್" ಮೂಲಕ ಪಿಡಿಎಫ್ ಮುದ್ರಣ ಇನ್ನೂ ಬೆಂಬಲಿತವಾಗಿಲ್ಲ. ಪ್ರಿಂಟರ್ ಸೆಟ್ಟಿಂಗ್ಗಳಲ್ಲಿ ಪ್ರಿಂಟರ್ ಮ್ಯಾಪಿಂಗ್ ಅನ್ನು ತೆಗೆದುಹಾಕಿ ಮತ್ತು ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} ಮತ್ತು {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,ಫಿಲ್ಟರ್ಗಳನ್ನು ಉಳಿಸುವಲ್ಲಿ ದೋಷ ಕಂಡುಬಂದಿದೆ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ನಮೂದಿಸಿ apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,ಮುಖಪುಟ ಮತ್ತು ಲಗತ್ತುಗಳ ಫೋಲ್ಡರ್ಗಳನ್ನು ಅಳಿಸಲಾಗುವುದಿಲ್ಲ +DocType: Email Account,Enable Automatic Linking in Documents,ಡಾಕ್ಯುಮೆಂಟ್‌ಗಳಲ್ಲಿ ಸ್ವಯಂಚಾಲಿತ ಲಿಂಕ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ DocType: Contact Us Settings,Settings for Contact Us Page,ನಮ್ಮನ್ನು ಪುಟ ಸಂಪರ್ಕಿಸಿ DocType: Social Login Key,Social Login Provider,ಸಮಾಜ ಲಾಗಿನ್ ಒದಗಿಸುವವರು +DocType: Email Account,"For more information, click here.","ಹೆಚ್ಚಿನ ಮಾಹಿತಿಗಾಗಿ, ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ ." DocType: Transaction Log,Previous Hash,ಹಿಂದಿನ ಹ್ಯಾಶ್ DocType: Notification,Value Changed,ಮೌಲ್ಯ ಬದಲಾಗಿದೆ DocType: Report,Report Type,ವರದಿ ಪ್ರಕಾರ @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,ಎನರ್ಜಿ ಪಾಯಿಂ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,ಸಾಮಾಜಿಕ ಲಾಗಿನ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸುವುದಕ್ಕೂ ಮುನ್ನ ದಯವಿಟ್ಟು ಗ್ರಾಹಕ ID ಅನ್ನು ನಮೂದಿಸಿ DocType: Communication,Has Attachment,ಲಗತ್ತನ್ನು ಹೊಂದಿದೆ DocType: User,Email Signature,ಇಮೇಲ್ ಸಹಿ -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ವರ್ಷ (ಗಳು) ಹಿಂದೆ ,Addresses And Contacts,ವಿಳಾಸಗಳು ಮತ್ತು ಸಂಪರ್ಕಗಳು apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,ಈ ಕನ್ಬಾನ್ ಮಂಡಳಿ ಖಾಸಗಿಯಾಗಿರುತ್ತದೆ DocType: Data Migration Run,Current Mapping,ಪ್ರಸ್ತುತ ಮ್ಯಾಪಿಂಗ್ @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","ನೀವು ಎಲ್ಲಾ ರೀತಿಯ ಸಿಂಕ್ ಆಯ್ಕೆಗಳನ್ನು ಆಯ್ಕೆ ಮಾಡುತ್ತಿದ್ದೀರಿ, ಇದು ಎಲ್ಲಾ \ ಓದಲು ಮತ್ತು ಪರಿಚಾರಕದಿಂದ ಓದದಿರುವ ಸಂದೇಶವನ್ನು ಮರುಸೃಷ್ಟಿಸುತ್ತದೆ. ಇದು ಸಂವಹನ (ಇಮೇಲ್ಗಳು) ನ ನಕಲುಗೆ ಕಾರಣವಾಗಬಹುದು." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},ಕೊನೆಯದಾಗಿ ಸಿಂಕ್ ಮಾಡಲಾಗಿದೆ {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,ಶಿರೋಲೇಖ ವಿಷಯವನ್ನು ಬದಲಾಯಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,ಸಲ್ಲಿಕೆಯ ನಂತರ {0} ಬದಲಾಯಿಸಲು ಅನುಮತಿಸಲಾಗಿಲ್ಲ apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ಹೊಸ ಆವೃತ್ತಿಗೆ ನವೀಕರಿಸಲಾಗಿದೆ, ದಯವಿಟ್ಟು ಈ ಪುಟವನ್ನು ರಿಫ್ರೆಶ್ ಮಾಡಿ" DocType: User,User Image,ಬಳಕೆದಾರ ಚಿತ್ರ @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},{0} apps/frappe/frappe/public/js/frappe/chat.js,Discard,ತಿರಸ್ಕರಿಸಿ DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,ಅತ್ಯುತ್ತಮ ಫಲಿತಾಂಶಗಳಿಗಾಗಿ ಪಾರದರ್ಶಕ ಹಿನ್ನೆಲೆ ಹೊಂದಿರುವ ಸುಮಾರು 150px ಇಮೇಜ್ ಅನ್ನು ಆಯ್ಕೆಮಾಡಿ. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,ರಿಲ್ಯಾಪ್ಡ್ +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} ಮೌಲ್ಯಗಳನ್ನು ಆಯ್ಕೆ ಮಾಡಲಾಗಿದೆ DocType: Blog Post,Email Sent,ಇಮೇಲ್ ಕಳುಹಿಸಲಾಗಿದೆ DocType: Communication,Read by Recipient On,ಸ್ವೀಕರಿಸುವವರ ಮೂಲಕ ಓದಿ DocType: User,Allow user to login only after this hour (0-24),ಈ ಗಂಟೆಯ ನಂತರ ಮಾತ್ರ ಬಳಕೆದಾರರನ್ನು ಲಾಗಿನ್ ಮಾಡಲು ಅನುಮತಿಸಿ (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,ಮಾಡ್ಯೂಲ್ ಟು ಎಕ್ಸ್ಪೋರ್ಟ್ DocType: DocType,Fields,ಕ್ಷೇತ್ರಗಳು -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,ಈ ಡಾಕ್ಯುಮೆಂಟ್ ಅನ್ನು ಮುದ್ರಿಸಲು ನಿಮಗೆ ಅನುಮತಿ ಇಲ್ಲ +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,ಈ ಡಾಕ್ಯುಮೆಂಟ್ ಅನ್ನು ಮುದ್ರಿಸಲು ನಿಮಗೆ ಅನುಮತಿ ಇಲ್ಲ apps/frappe/frappe/public/js/frappe/model/model.js,Parent,ಪೋಷಕ apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","ನಿಮ್ಮ ಅಧಿವೇಶನವು ಮುಗಿದಿದೆ, ದಯವಿಟ್ಟು ಮುಂದುವರಿಸಲು ಮತ್ತೆ ಲಾಗಿನ್ ಮಾಡಿ." DocType: Assignment Rule,Priority,ಆದ್ಯತೆ @@ -368,6 +373,7 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,OTP ರಹಸ್ DocType: DocType,UPPER CASE,ಗರಿಷ್ಠ ಸಂದರ್ಭದಲ್ಲಿ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,ದಯವಿಟ್ಟು ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ಹೊಂದಿಸಿ DocType: Communication,Marked As Spam,ಸ್ಪ್ಯಾಮ್ ಎಂದು ಗುರುತಿಸಲಾಗಿದೆ +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Google ಸಂಪರ್ಕಗಳನ್ನು ಸಿಂಕ್ ಮಾಡಬೇಕಾದ ಇಮೇಲ್ ವಿಳಾಸ. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,ಆಮದು ಚಂದಾದಾರರು apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,ಫಿಲ್ಟರ್ ಉಳಿಸಿ DocType: Address,Preferred Shipping Address,ಮೆಚ್ಚಿನ ಶಿಪ್ಪಿಂಗ್ ವಿಳಾಸ @@ -388,6 +394,7 @@ DocType: Web Page,Insert Code,ಕೋಡ್ ಸೇರಿಸಿ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,ಅಲ್ಲ DocType: Auto Repeat,Start Date,ಪ್ರಾರಂಭ ದಿನಾಂಕ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,ಚಾರ್ಟ್ ಅನ್ನು ಹೊಂದಿಸಿ +DocType: Website Theme,Theme JSON,ಥೀಮ್ JSON apps/frappe/frappe/www/list.py,My Account,ನನ್ನ ಖಾತೆ DocType: DocType,Is Published Field,ಪ್ರಕಟಿತ ಕ್ಷೇತ್ರ DocType: DocField,Set non-standard precision for a Float or Currency field,ಫ್ಲೋಟ್ ಅಥವಾ ಕರೆನ್ಸಿ ಕ್ಷೇತ್ರಕ್ಕೆ ಸ್ಟಾಂಡರ್ಡ್ ಅಲ್ಲದ ನಿಖರತೆ ಹೊಂದಿಸಿ @@ -398,7 +405,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Reference: {{ reference_doctype }} {{ reference_name }} ಸೇರಿಸಿ Reference: {{ reference_doctype }} {{ reference_name }} ಡಾಕ್ಯುಮೆಂಟ್ ಉಲ್ಲೇಖವನ್ನು ಕಳುಹಿಸಲು Reference: {{ reference_doctype }} {{ reference_name }} DocType: LDAP Settings,LDAP First Name Field,LDAP ಮೊದಲ ಹೆಸರು ಕ್ಷೇತ್ರ apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,ಡೀಫಾಲ್ಟ್ ಕಳುಹಿಸಲಾಗುತ್ತಿದೆ ಮತ್ತು ಇನ್ಬಾಕ್ಸ್ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,ಸೆಟಪ್> ಫಾರ್ಮ್ ಅನ್ನು ಕಸ್ಟಮೈಸ್ ಮಾಡಿ apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.","ನವೀಕರಿಸಲು, ನೀವು ಆಯ್ದ ಕಾಲಮ್ಗಳನ್ನು ಮಾತ್ರ ನವೀಕರಿಸಬಹುದು." apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1','ಚೆಕ್' ಕ್ಷೇತ್ರದ ಡೀಫಾಲ್ಟ್ '0' ಅಥವಾ '1' ಆಗಿರಬೇಕು. apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,ಈ ಡಾಕ್ಯುಮೆಂಟ್ನೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ @@ -428,6 +434,7 @@ apps/frappe/frappe/public/js/frappe/roles_editor.js,Role Permissions,ಪಾತ DocType: Event,Sent/Received Email,ಕಳುಹಿಸಲಾಗಿದೆ / ಸ್ವೀಕರಿಸಿದ ಇಮೇಲ್ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Permission Levels,ಅನುಮತಿ ಮಟ್ಟಗಳು apps/frappe/frappe/templates/includes/comments/comments.html,Add Another Comment,ಮತ್ತೊಂದು ಕಾಮೆಂಟ್ ಸೇರಿಸಿ +apps/frappe/frappe/core/page/usage_info/usage_info.html,You have {0} days left in your subscription,ನಿಮ್ಮ ಚಂದಾದಾರಿಕೆಯಲ್ಲಿ ನಿಮಗೆ {0} ದಿನಗಳು ಉಳಿದಿವೆ DocType: DocType,"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.","ಸಲ್ಲಿಸಿದ ನಂತರ, ಸಲ್ಲಿಸಬಹುದಾದ ದಾಖಲೆಗಳನ್ನು ಬದಲಾಯಿಸಲಾಗುವುದಿಲ್ಲ. ಅವರು ಮಾತ್ರ ರದ್ದುಗೊಳಿಸಬಹುದು ಮತ್ತು ತಿದ್ದುಪಡಿ ಮಾಡಬಹುದು." DocType: Workflow Transition,Allow approval for creator of the document,ಡಾಕ್ಯುಮೆಂಟ್ನ ರಚನೆಕಾರರಿಗೆ ಅನುಮೋದನೆಯನ್ನು ಅನುಮತಿಸಿ apps/frappe/frappe/www/complete_signup.html,Complete,ಪೂರ್ಣಗೊಳಿಸಿ @@ -441,16 +448,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,ಡೊಮೇನ್ಗಳ HTML DocType: Blog Settings,Blog Settings,ಬ್ಲಾಗ್ ಸೆಟ್ಟಿಂಗ್ಗಳು apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","ಡಾಕ್ ಟೈಪ್ನ ಹೆಸರು ಪತ್ರದೊಂದಿಗೆ ಪ್ರಾರಂಭವಾಗಬೇಕು ಮತ್ತು ಅದು ಅಕ್ಷರಗಳು, ಸಂಖ್ಯೆಗಳು, ಸ್ಥಳಗಳು ಮತ್ತು ಅಂಡರ್ಸ್ಕೋರ್ಗಳನ್ನು ಮಾತ್ರ ಒಳಗೊಂಡಿರುತ್ತದೆ" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ಸೆಟಪ್> ಬಳಕೆದಾರರ ಅನುಮತಿಗಳು DocType: Communication,Integrations can use this field to set email delivery status,ಇಮೇಲ್ ವಿತರಣಾ ಸ್ಥಿತಿಯನ್ನು ಹೊಂದಿಸಲು ಏಕೀಕರಣವು ಈ ಕ್ಷೇತ್ರವನ್ನು ಬಳಸಬಹುದು apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,ಪಟ್ಟಿ ಪಾವತಿ ಗೇಟ್ವೇ ಸೆಟ್ಟಿಂಗ್ಗಳು DocType: Print Settings,Fonts,ಫಾಂಟ್ಗಳು DocType: Notification,Channel,ಚಾನಲ್ DocType: Communication,Opened,ತೆರೆಯಲಾಗಿದೆ DocType: Workflow Transition,Conditions,ನಿಯಮಗಳು +apps/frappe/frappe/config/website.py,A user who posts blogs.,ಬ್ಲಾಗ್‌ಗಳನ್ನು ಪೋಸ್ಟ್ ಮಾಡುವ ಬಳಕೆದಾರ. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,ಖಾತೆಯನ್ನು ಹೊಂದಿಲ್ಲವೇ? ಸೈನ್ ಅಪ್ ಮಾಡಿ apps/frappe/frappe/utils/file_manager.py,Added {0},{0} ಸೇರಿಸಲಾಗಿದೆ DocType: Newsletter,Create and Send Newsletters,ರಚಿಸಿ ಮತ್ತು ಸುದ್ದಿಪತ್ರಗಳನ್ನು ಕಳುಹಿಸಿ DocType: Website Settings,Footer Items,ಅಡಿಟಿಪ್ಪಣಿ ಐಟಂಗಳು +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,ದಯವಿಟ್ಟು ಸೆಟಪ್> ಇಮೇಲ್> ಇಮೇಲ್ ಖಾತೆಯಿಂದ ಡೀಫಾಲ್ಟ್ ಇಮೇಲ್ ಖಾತೆಯನ್ನು ಹೊಂದಿಸಿ DocType: Website Slideshow Item,Website Slideshow Item,ವೆಬ್ಸೈಟ್ ಸ್ಲೈಡ್ಶೋ ಐಟಂ apps/frappe/frappe/config/integrations.py,Register OAuth Client App,OAuth ಕ್ಲೈಂಟ್ ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ನೋಂದಾಯಿಸಿ DocType: Error Snapshot,Frames,ಫ್ರೇಮ್ಗಳು @@ -491,7 +501,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","ಮಟ್ಟದ 0 ಡಾಕ್ಯುಮೆಂಟ್ ಮಟ್ಟದ ಅನುಮತಿಗಳಿಗಾಗಿ ಆಗಿದೆ, ಕ್ಷೇತ್ರ ಮಟ್ಟದ ಅನುಮತಿಗಳಿಗೆ \ ಉನ್ನತ ಮಟ್ಟಗಳು." DocType: Address,City/Town,ನಗರ / ಪಟ್ಟಣ DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","ಇದು ನಿಮ್ಮ ಪ್ರಸ್ತುತ ಥೀಮ್ ಅನ್ನು ಮರುಹೊಂದಿಸುತ್ತದೆ, ನೀವು ಮುಂದುವರೆಯಲು ಖಚಿತವಾಗಿ ಬಯಸುವಿರಾ?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},{0} ನಲ್ಲಿ ಅಗತ್ಯವಾದ ಕಡ್ಡಾಯ ಕ್ಷೇತ್ರಗಳು apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},ಇಮೇಲ್ ಖಾತೆಗೆ ಸಂಪರ್ಕಿಸುವಾಗ ದೋಷ {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,ಮರುಕಳಿಸುವಿಕೆಯನ್ನು ರಚಿಸುವಾಗ ದೋಷ ಸಂಭವಿಸಿದೆ @@ -527,7 +536,7 @@ DocType: Event,Event Category,ಈವೆಂಟ್ ವರ್ಗ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,ಅಂಕಣಗಳನ್ನು ಆಧರಿಸಿ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,ಶೀರ್ಷಿಕೆ ಸಂಪಾದಿಸಿ DocType: Communication,Received,ಸ್ವೀಕರಿಸಲಾಗಿದೆ -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,ಈ ಪುಟವನ್ನು ಪ್ರವೇಶಿಸಲು ನಿಮಗೆ ಅನುಮತಿ ಇಲ್ಲ. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,ಈ ಪುಟವನ್ನು ಪ್ರವೇಶಿಸಲು ನಿಮಗೆ ಅನುಮತಿ ಇಲ್ಲ. DocType: User Social Login,User Social Login,ಬಳಕೆದಾರ ಸಮಾಜ ಲಾಗಿನ್ apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,ಒಂದೇ ಉಳಿಸಿದ ಫೋಲ್ಡರ್ನಲ್ಲಿ ಪೈಥಾನ್ ಫೈಲ್ ಅನ್ನು ಬರೆದು ಕಾಲಮ್ ಮತ್ತು ಫಲಿತಾಂಶವನ್ನು ಹಿಂದಿರುಗಿಸಿ. DocType: Contact,Purchase Manager,ಖರೀದಿ ವ್ಯವಸ್ಥಾಪಕ @@ -580,7 +589,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,ಚ apps/frappe/frappe/utils/data.py,Operator must be one of {0},ಆಪರೇಟರ್ {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,ಮಾಲೀಕರಾಗಿದ್ದರೆ DocType: Data Migration Run,Trigger Name,ಟ್ರಿಗರ್ ಹೆಸರು -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,ನಿಮ್ಮ ಬ್ಲಾಗ್ಗೆ ಶೀರ್ಷಿಕೆಗಳು ಮತ್ತು ಪರಿಚಯಗಳನ್ನು ಬರೆಯಿರಿ. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,ಫೀಲ್ಡ್ ತೆಗೆದುಹಾಕಿ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,ಎಲ್ಲವನ್ನು ಸಂಕುಚಿಸಿ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,ಹಿನ್ನೆಲೆ ಬಣ್ಣ @@ -630,6 +638,7 @@ DocType: Dashboard Chart,Bar,ಬಾರ್ DocType: SMS Settings,Enter url parameter for message,ಸಂದೇಶಕ್ಕಾಗಿ url ಪ್ಯಾರಾಮೀಟರ್ ನಮೂದಿಸಿ apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,ಹೊಸ ಕಸ್ಟಮ್ ಮುದ್ರಣ ಸ್ವರೂಪ apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} ಈಗಾಗಲೇ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ +DocType: Workflow Document State,Is Optional State,ಐಚ್ al ಿಕ ರಾಜ್ಯ DocType: Address,Purchase User,ಬಳಕೆದಾರರನ್ನು ಖರೀದಿಸಿ DocType: Data Migration Run,Insert,ಸೇರಿಸಿ DocType: Web Form,Route to Success Link,ಯಶಸ್ಸಿನ ಲಿಂಕ್ಗೆ ಮಾರ್ಗ @@ -637,13 +646,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,ಬಳ DocType: File,Is Home Folder,ಮುಖಪುಟ ಫೋಲ್ಡರ್ ಆಗಿದೆ apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,ಮಾದರಿ: DocType: Post,Is Pinned,ಪಿನ್ ಮಾಡಲಾಗಿದೆ -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},'{0}' ಗೆ {1} ಅನುಮತಿ ಇಲ್ಲ +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},'{0}' ಗೆ {1} ಅನುಮತಿ ಇಲ್ಲ DocType: Patch Log,Patch Log,ಪ್ಯಾಚ್ ಲಾಗ್ DocType: Print Format,Print Format Builder,ಮುದ್ರಣ ಸ್ವರೂಪ ಬಿಲ್ಡರ್ 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 ವಿಳಾಸದಿಂದ ಲಾಗಿನ್ ಮಾಡಬಹುದು. ಬಳಕೆದಾರ ಪುಟದಲ್ಲಿ ನಿರ್ದಿಷ್ಟ ಬಳಕೆದಾರರಿಗೆ ಮಾತ್ರ ಇದನ್ನು ಹೊಂದಿಸಬಹುದು" apps/frappe/frappe/utils/data.py,only.,ಮಾತ್ರ. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,ಕಂಡಿಶನ್ '{0}' ಅಮಾನ್ಯವಾಗಿದೆ DocType: Auto Email Report,Day of Week,ವಾರದ ದಿನ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Google ಸೆಟ್ಟಿಂಗ್‌ಗಳಲ್ಲಿ Google API ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ. DocType: DocField,Text Editor,ಪಠ್ಯ ಸಂಪಾದಕ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,ಕತ್ತರಿಸಿ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,ಆದೇಶವನ್ನು ಹುಡುಕಿ ಅಥವಾ ಟೈಪ್ ಮಾಡಿ @@ -651,6 +661,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,ಡಿಬಿ ಬ್ಯಾಕಪ್ಗಳ ಸಂಖ್ಯೆ 1 ಕ್ಕಿಂತ ಕಡಿಮೆ ಇರುವಂತಿಲ್ಲ DocType: Workflow State,ban-circle,ನಿಷೇಧ-ವಲಯ DocType: Data Export,Excel,ಎಕ್ಸೆಲ್ +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","ಶಿರೋಲೇಖ, ಬ್ರೆಡ್ ಮತ್ತು ಮೆಟಾ ಟ್ಯಾಗ್ಗಳು" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ನಿರ್ದಿಷ್ಟಪಡಿಸಿಲ್ಲ DocType: Comment,Published,ಪ್ರಕಟಿಸಲಾಗಿದೆ DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","ಗಮನಿಸಿ: ಅತ್ಯುತ್ತಮ ಫಲಿತಾಂಶಗಳಿಗಾಗಿ, ಚಿತ್ರಗಳನ್ನು ಒಂದೇ ಗಾತ್ರದ ಮತ್ತು ಅಗಲವು ಎತ್ತರಕ್ಕಿಂತ ಹೆಚ್ಚಿನದಾಗಿರಬೇಕು." @@ -741,6 +752,7 @@ DocType: System Settings,Scheduler Last Event,ಶೆಡ್ಯೂಲರ್ ಕೊ apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,ಎಲ್ಲಾ ಡಾಕ್ಯುಮೆಂಟ್ ಷೇರುಗಳ ವರದಿ DocType: Website Sidebar Item,Website Sidebar Item,ವೆಬ್ಸೈಟ್ ಪಾರ್ಶ್ವಪಟ್ಟಿ ಐಟಂ apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,ಮಾಡಬೇಕಾದದ್ದು +DocType: Google Settings,Google Settings,Google ಸೆಟ್ಟಿಂಗ್‌ಗಳು apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","ನಿಮ್ಮ ದೇಶ, ಸಮಯ ವಲಯ ಮತ್ತು ಕರೆನ್ಸಿ ಆಯ್ಕೆಮಾಡಿ" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","ಇಲ್ಲಿ ಸ್ಥಿರ url ನಿಯತಾಂಕಗಳನ್ನು ನಮೂದಿಸಿ (ಉದಾ. ಕಳುಹಿಸುವವರ = ಇಆರ್ಪಿ ನೆಕ್ಸ್ಟ್, ಬಳಕೆದಾರ ಹೆಸರು = ಇಆರ್ಪಿಎಕ್ಸ್ಟ್, ಪಾಸ್ವರ್ಡ್ = 1234 ಇತ್ಯಾದಿ.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,ಯಾವುದೇ ಇಮೇಲ್ ಖಾತೆ ಇಲ್ಲ @@ -794,6 +806,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,ಓಆಥ್ ಬಿಯರ್ರ ಟೋಕನ್ ,Setup Wizard,ಸೆಟಪ್ ವಿಝಾರ್ಡ್ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,ಟಾಗಲ್ ಚಾರ್ಟ್ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,ಸಿಂಕ್ ಮಾಡಲಾಗುತ್ತಿದೆ DocType: Data Migration Run,Current Mapping Action,ಪ್ರಸ್ತುತ ಮ್ಯಾಪಿಂಗ್ ಕ್ರಿಯೆ DocType: Email Account,Initial Sync Count,ಆರಂಭಿಕ ಸಿಂಕ್ ಕೌಂಟ್ apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,ನಮ್ಮನ್ನು ಪುಟ ಸಂಪರ್ಕಿಸಿ. @@ -833,6 +846,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,ಮುದ್ರಣ ಸ್ವರೂಪದ ಪ್ರಕಾರ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,ಈ ಮಾನದಂಡಗಳಿಗೆ ಅನುಮತಿಗಳನ್ನು ಹೊಂದಿಸಿಲ್ಲ. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,ಎಲ್ಲವನ್ನು ವಿಸ್ತರಿಸು +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ಡೀಫಾಲ್ಟ್ ವಿಳಾಸ ಟೆಂಪ್ಲೇಟ್ ಕಂಡುಬಂದಿಲ್ಲ. ದಯವಿಟ್ಟು ಸೆಟಪ್> ಪ್ರಿಂಟಿಂಗ್ ಮತ್ತು ಬ್ರ್ಯಾಂಡಿಂಗ್> ವಿಳಾಸ ಟೆಂಪ್ಲೇಟ್‌ನಿಂದ ಹೊಸದನ್ನು ರಚಿಸಿ. DocType: Tag Doc Category,Tag Doc Category,ಟ್ಯಾಗ್ ಡಾಕ್ ವರ್ಗ DocType: Data Import,Generated File,ರಚಿಸಿದ ಫೈಲ್ apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,ಟಿಪ್ಪಣಿಗಳು @@ -840,7 +854,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,ಟೈಮ್ಲೈನ್ ಕ್ಷೇತ್ರವು ಲಿಂಕ್ ಅಥವಾ ಡೈನಮಿಕ್ ಲಿಂಕ್ ಆಗಿರಬೇಕು DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,ಈ ಹೊರಹೋಗುವ ಸರ್ವರ್ನಿಂದ ಅಧಿಸೂಚನೆಗಳು ಮತ್ತು ಬೃಹತ್ ಮೇಲ್ಗಳನ್ನು ಕಳುಹಿಸಲಾಗುತ್ತದೆ. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,ಇದು ಅಗ್ರ 100 ಸಾಮಾನ್ಯ ಪಾಸ್ವರ್ಡ್ ಆಗಿದೆ. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,ಶಾಶ್ವತವಾಗಿ {0} ಸಲ್ಲಿಸಿ? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,ಶಾಶ್ವತವಾಗಿ {0} ಸಲ್ಲಿಸಿ? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ, ವಿಲೀನಗೊಳ್ಳಲು ಹೊಸ ಗುರಿಯನ್ನು ಆಯ್ಕೆ ಮಾಡಿ" DocType: Energy Point Rule,Multiplier Field,ಮಲ್ಟಿಪ್ಲೈಯರ್ ಫೀಲ್ಡ್ DocType: Workflow,Workflow State Field,ವರ್ಕ್ಫ್ಲೊ ಸ್ಟೇಟ್ ಫೀಲ್ಡ್ @@ -880,6 +894,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} {2} ಪಾಯಿಂಟ್ಗಳೊಂದಿಗೆ {1} ನಿಮ್ಮ ಕೆಲಸವನ್ನು ಪ್ರಶಂಸಿಸಲಾಗಿದೆ DocType: Auto Email Report,Zero means send records updated at anytime,ಶೂನ್ಯ ಎಂದರೆ ಎಂದರೆ ಯಾವುದೇ ಸಮಯದಲ್ಲಿ ದಾಖಲೆಗಳನ್ನು ಕಳುಹಿಸಬಹುದು apps/frappe/frappe/model/document.py,Value cannot be changed for {0},{0} ಗೆ ಮೌಲ್ಯವನ್ನು ಬದಲಾಯಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ +apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API ಸೆಟ್ಟಿಂಗ್‌ಗಳು. DocType: System Settings,Force User to Reset Password,ಬಳಕೆದಾರರನ್ನು ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸಲು ಒತ್ತಾಯಿಸಿ apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,ವರದಿ ಬಿಲ್ಡರ್ ವರದಿಗಳನ್ನು ವರದಿ ಬಿಲ್ಡರ್ ನೇರವಾಗಿ ನಿರ್ವಹಿಸುತ್ತದೆ. ಮಾಡಲು ಏನೂ ಇಲ್ಲ. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,ಫಿಲ್ಟರ್ ಅನ್ನು ಸಂಪಾದಿಸಿ @@ -933,7 +948,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,ಫ DocType: S3 Backup Settings,eu-north-1,eu-north-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: ಒಂದೇ ಪಾತ್ರ, ಮಟ್ಟ ಮತ್ತು {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,ಈ ವೆಬ್ ಫಾರ್ಮ್ ಡಾಕ್ಯುಮೆಂಟ್ ಅನ್ನು ನವೀಕರಿಸಲು ನಿಮಗೆ ಅನುಮತಿ ಇಲ್ಲ -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,ಈ ದಾಖಲೆಗೆ ಗರಿಷ್ಠ ಲಗತ್ತು ಮಿತಿಯನ್ನು ತಲುಪಿದೆ. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,ಈ ದಾಖಲೆಗೆ ಗರಿಷ್ಠ ಲಗತ್ತು ಮಿತಿಯನ್ನು ತಲುಪಿದೆ. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,ದಯವಿಟ್ಟು ಉಲ್ಲೇಖ ಸಂವಹನ ಡಾಕ್ಸ್ ವೃತ್ತಾಕಾರದ ಸಂಬಂಧವಿಲ್ಲ ಎಂದು ಖಚಿತಪಡಿಸಿಕೊಳ್ಳಿ. DocType: DocField,Allow in Quick Entry,ತ್ವರಿತ ಪ್ರವೇಶದಲ್ಲಿ ಅನುಮತಿಸಿ DocType: Error Snapshot,Locals,ಸ್ಥಳೀಯರು @@ -965,7 +980,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,ವಿನಾಯಿತಿ ಪ್ರಕಾರ apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},{0} {1} ಅನ್ನು {2} {3} {4} ನೊಂದಿಗೆ ಲಿಂಕ್ ಮಾಡಲಾಗಿದೆ ಏಕೆಂದರೆ ಅಳಿಸಲು ಅಥವಾ ರದ್ದುಗೊಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTP ರಹಸ್ಯವನ್ನು ನಿರ್ವಾಹಕರಿಂದ ಮಾತ್ರ ಮರುಹೊಂದಿಸಬಹುದು. -DocType: Web Form Field,Page Break,ಪುಟ ಬ್ರೇಕ್ DocType: Website Script,Website Script,ವೆಬ್ಸೈಟ್ ಸ್ಕ್ರಿಪ್ಟ್ DocType: Integration Request,Subscription Notification,ಚಂದಾದಾರಿಕೆ ಅಧಿಸೂಚನೆ DocType: DocType,Quick Entry,ತ್ವರಿತ ನಮೂದು @@ -982,6 +996,7 @@ DocType: Notification,Set Property After Alert,ಎಚ್ಚರಿಕೆ ನಂ apps/frappe/frappe/__init__.py,Thank you,ಧನ್ಯವಾದ apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,ಆಂತರಿಕ ಏಕೀಕರಣಕ್ಕಾಗಿ ಸ್ಲಾಕ್ ವೆಬ್ಹೂಕ್ಸ್ apps/frappe/frappe/config/settings.py,Import Data,ಆಮದು ಡೇಟಾ +DocType: Translation,Contributed Translation Doctype Name,ಕೊಡುಗೆ ಅನುವಾದ ಡಾಕ್ಟೈಪ್ ಹೆಸರು DocType: Social Login Key,Office 365,ಕಚೇರಿ 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID DocType: Review Level,Review Level,ವಿಮರ್ಶೆ ಮಟ್ಟ @@ -1000,7 +1015,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,ಯಶಸ್ವಿಯಾಗಿ ಮುಗಿದಿದೆ apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} ಪಟ್ಟಿ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,ಪ್ರಶಂಸಿಸುತ್ತೇವೆ -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),ಹೊಸ {0} (Ctrl + B) DocType: Contact,Is Primary Contact,ಪ್ರಾಥಮಿಕ ಸಂಪರ್ಕ DocType: Print Format,Raw Commands,ರಾ ಕಮಾಂಡ್ಗಳು apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,ಮುದ್ರಣ ಸ್ವರೂಪಗಳಿಗಾಗಿ ಸ್ಟೈಲ್ಶೀಟ್ಗಳು @@ -1041,6 +1055,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,ಹಿನ್ನೆ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},{1} ನಲ್ಲಿ {0} ಹುಡುಕಿ DocType: Email Account,Use SSL,SSL ಬಳಸಿ DocType: DocField,In Standard Filter,ಸ್ಟ್ಯಾಂಡರ್ಡ್ ಫಿಲ್ಟರ್ನಲ್ಲಿ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,ಸಿಂಕ್ ಮಾಡಲು ಯಾವುದೇ Google ಸಂಪರ್ಕಗಳಿಲ್ಲ. DocType: Data Migration Run,Total Pages,ಒಟ್ಟು ಪುಟಗಳು apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: ಅನನ್ಯವಾದ ಮೌಲ್ಯಗಳನ್ನು ಹೊಂದಿರುವ ಕ್ಷೇತ್ರ '{1}' ಅನನ್ಯ ಎಂದು ಹೊಂದಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","ಸಕ್ರಿಯಗೊಳಿಸಿದರೆ, ಅವರು ಲಾಗಿನ್ ಮಾಡುವ ಪ್ರತಿ ಬಾರಿ ಬಳಕೆದಾರರಿಗೆ ಸೂಚನೆ ನೀಡಲಾಗುತ್ತದೆ. ಸಕ್ರಿಯಗೊಳಿಸದಿದ್ದರೆ, ಬಳಕೆದಾರರು ಒಮ್ಮೆ ಮಾತ್ರ ಸೂಚಿಸಲಾಗುತ್ತದೆ." @@ -1061,7 +1076,7 @@ DocType: Assignment Rule,Automation,ಆಟೊಮೇಷನ್ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,ಫೈಲ್ಗಳನ್ನು ಅನ್ಜಿಪ್ಪ್ ಮಾಡಲಾಗುತ್ತಿದೆ ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}','{0}' ಗಾಗಿ ಹುಡುಕಿ apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,ಏನೋ ತಪ್ಪಾಗಿದೆ -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,ಲಗತ್ತಿಸುವ ಮೊದಲು ಉಳಿಸಿ. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,ಲಗತ್ತಿಸುವ ಮೊದಲು ಉಳಿಸಿ. DocType: Version,Table HTML,ಟೇಬಲ್ ಎಚ್ಟಿಎಮ್ಎಲ್ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,ಕೇಂದ್ರ DocType: Page,Standard,ಸ್ಟ್ಯಾಂಡರ್ಡ್ @@ -1139,12 +1154,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,ಫಲಿ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} ದಾಖಲೆಗಳನ್ನು ಅಳಿಸಲಾಗಿದೆ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,ಡ್ರಾಪ್ಬಾಕ್ಸ್ ಪ್ರವೇಶ ಟೋಕನ್ ಅನ್ನು ರಚಿಸುವಾಗ ಯಾವುದೋ ತಪ್ಪು ಸಂಭವಿಸಿದೆ. ಹೆಚ್ಚಿನ ವಿವರಗಳಿಗಾಗಿ ದಯವಿಟ್ಟು ದೋಷ ಲಾಗ್ ಪರಿಶೀಲಿಸಿ. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,ವಂಶಸ್ಥರು -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ಡೀಫಾಲ್ಟ್ ವಿಳಾಸ ಟೆಂಪ್ಲೆಟ್ ಕಂಡುಬಂದಿಲ್ಲ. ದಯವಿಟ್ಟು ಸೆಟಪ್> ಮುದ್ರಣ ಮತ್ತು ಬ್ರ್ಯಾಂಡಿಂಗ್> ವಿಳಾಸ ಟೆಂಪ್ಲೆಟ್ನಿಂದ ಹೊಸದನ್ನು ರಚಿಸಿ. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google ಸಂಪರ್ಕಗಳನ್ನು ಕಾನ್ಫಿಗರ್ ಮಾಡಲಾಗಿದೆ. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,ವಿವರಗಳನ್ನು ಮರೆಮಾಡಿ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,ಫಾಂಟ್ ಸ್ಟೈಲ್ಸ್ apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,ನಿಮ್ಮ ಚಂದಾದಾರಿಕೆಯು {0} ರಂದು ಮುಕ್ತಾಯಗೊಳ್ಳುತ್ತದೆ. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},ಇಮೇಲ್ ಖಾತೆ {0} ನಿಂದ ಇಮೇಲ್ಗಳನ್ನು ಸ್ವೀಕರಿಸುವಾಗ ದೃಢೀಕರಣ ವಿಫಲವಾಗಿದೆ. ಸರ್ವರ್ನಿಂದ ಸಂದೇಶ: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),ಕಳೆದ ವಾರ ಪ್ರದರ್ಶನದ ಆಧಾರದ ಮೇಲೆ ಅಂಕಿಅಂಶಗಳು ({0} ನಿಂದ {1} ವರೆಗೆ) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,ಒಳಬರುವಿಕೆಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿದರೆ ಮಾತ್ರ ಸ್ವಯಂಚಾಲಿತ ಲಿಂಕ್ ಅನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಬಹುದು. DocType: Website Settings,Title Prefix,ಶೀರ್ಷಿಕೆ ಪೂರ್ವಪ್ರತ್ಯಯ apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,ನೀವು ಬಳಸಬಹುದಾದ ದೃಢೀಕರಣ ಅಪ್ಲಿಕೇಶನ್ಗಳು: DocType: Bulk Update,Max 500 records at a time,ಒಂದು ಸಮಯದಲ್ಲಿ ಮ್ಯಾಕ್ಸ್ 500 ದಾಖಲೆಗಳು @@ -1177,7 +1193,7 @@ DocType: Auto Email Report,Report Filters,ಫಿಲ್ಟರ್ಗಳನ್ನ apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,ಕಾಲಮ್ಗಳನ್ನು ಆಯ್ಕೆಮಾಡಿ DocType: Event,Participants,ಭಾಗವಹಿಸುವವರು DocType: Auto Repeat,Amended From,ತಿದ್ದುಪಡಿ ಮಾಡಲಾಗಿದೆ -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,ನಿಮ್ಮ ಮಾಹಿತಿಯನ್ನು ಸಲ್ಲಿಸಲಾಗಿದೆ +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,ನಿಮ್ಮ ಮಾಹಿತಿಯನ್ನು ಸಲ್ಲಿಸಲಾಗಿದೆ DocType: Help Category,Help Category,ಸಹಾಯ ವರ್ಗ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 ತಿಂಗಳು apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,ಹೊಸ ಸ್ವರೂಪವನ್ನು ಸಂಪಾದಿಸಲು ಅಥವಾ ಪ್ರಾರಂಭಿಸಲು ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಸ್ವರೂಪವನ್ನು ಆಯ್ಕೆಮಾಡಿ. @@ -1224,7 +1240,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,ಟ್ರ್ಯಾಕ್ ಮಾಡಲು ಕ್ಷೇತ್ರ DocType: User,Generate Keys,ಕೀಗಳನ್ನು ರಚಿಸಿ DocType: Comment,Unshared,ಹಂಚದ -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,ಉಳಿಸಲಾಗಿದೆ +DocType: Translation,Saved,ಉಳಿಸಲಾಗಿದೆ DocType: OAuth Client,OAuth Client,OAuth ಕ್ಲೈಂಟ್ DocType: System Settings,Disable Standard Email Footer,ಸ್ಟ್ಯಾಂಡರ್ಡ್ ಇಮೇಲ್ ಅಡಿಟಿಪ್ಪಣಿ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,ಮುದ್ರಣ ಸ್ವರೂಪ {0} ಅನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ @@ -1255,6 +1271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,ಕೊನೆ DocType: Data Import,Action,ಕ್ರಿಯೆ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,ಕ್ಲೈಂಟ್ ಕೀ ಅಗತ್ಯವಿದೆ DocType: Chat Profile,Notifications,ಅಧಿಸೂಚನೆಗಳು +DocType: Translation,Contributed,ಕೊಡುಗೆ DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy DocType: Report,Custom Report,ಕಸ್ಟಮ್ ವರದಿ DocType: Workflow State,info-sign,ಮಾಹಿತಿ-ಚಿಹ್ನೆ @@ -1271,6 +1288,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,ಸಂಪರ್ಕಿಸಿ DocType: LDAP Settings,LDAP Username Field,LDAP ಬಳಕೆದಾರಹೆಸರು ಕ್ಷೇತ್ರ apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",{0} ಕ್ಷೇತ್ರವನ್ನು ಅನನ್ಯವಾಗಿ ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಮೌಲ್ಯಗಳನ್ನು ಹೊಂದಿರುವಂತೆ {1} ನಲ್ಲಿ ಅನನ್ಯವಾಗಿ ಹೊಂದಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,ಸೆಟಪ್> ಫಾರ್ಮ್ ಅನ್ನು ಕಸ್ಟಮೈಸ್ ಮಾಡಿ DocType: User,Social Logins,ಸಾಮಾಜಿಕ ಲಾಗಿನ್ಸ್ DocType: Workflow State,Trash,ಅನುಪಯುಕ್ತ DocType: Stripe Settings,Secret Key,ಸೀಕ್ರೆಟ್ ಕೀ @@ -1328,6 +1346,7 @@ DocType: DocType,Title Field,ಶೀರ್ಷಿಕೆ ಕ್ಷೇತ್ರ apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,ಹೊರಹೋಗುವ ಇಮೇಲ್ ಸರ್ವರ್ಗೆ ಸಂಪರ್ಕಿಸಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ DocType: File,File URL,ಫೈಲ್ URL DocType: Help Article,Likes,ಇಷ್ಟಗಳು +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google ಸಂಪರ್ಕಗಳ ಸಂಯೋಜನೆಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,ಬ್ಯಾಕ್ಅಪ್ಗಳನ್ನು ಪ್ರವೇಶಿಸಲು ನೀವು ಲಾಗ್ ಇನ್ ಮಾಡಬೇಕಾಗುತ್ತದೆ ಮತ್ತು ಸಿಸ್ಟಮ್ ಮ್ಯಾನೇಜರ್ ಪಾತ್ರವನ್ನು ಹೊಂದಿರಬೇಕು. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,ಮೊದಲ ಹಂತ DocType: Blogger,Short Name,ಚಿಕ್ಕ ಹೆಸರು @@ -1345,13 +1364,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,ಆಮದು ಜಿಪ್ DocType: Contact,Gender,ಲಿಂಗ DocType: Workflow State,thumbs-down,ಥಂಬ್ಸ್-ಡೌನ್ -DocType: Web Page,SEO,ಎಸ್ಇಒ apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},ಕ್ಯೂ {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},ಡಾಕ್ಯುಮೆಂಟ್ ಪ್ರಕಾರದಲ್ಲಿ ಅಧಿಸೂಚನೆ ಹೊಂದಿಸಲಾಗುವುದಿಲ್ಲ {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,ಈ ಬಳಕೆದಾರರಿಗೆ ಸಿಸ್ಟಮ್ ಮ್ಯಾನೇಜರ್ ಅನ್ನು ಸೇರಿಸುವುದು ಒಂದು ಸಿಸ್ಟಮ್ ಮ್ಯಾನೇಜರ್ ಆಗಿರಬೇಕು apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,ಸ್ವಾಗತ ಇಮೇಲ್ ಕಳುಹಿಸಲಾಗಿದೆ DocType: Transaction Log,Chaining Hash,ಚೇಸಿಂಗ್ ಹ್ಯಾಶ್ DocType: Contact,Maintenance Manager,ನಿರ್ವಹಣಾ ವ್ಯವಸ್ಥಾಪಕರು +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","ಹೋಲಿಕೆಗಾಗಿ,> 5, <10 ಅಥವಾ = 324 ಬಳಸಿ. ಶ್ರೇಣಿಗಳಿಗಾಗಿ, 5:10 ಬಳಸಿ (5 ಮತ್ತು 10 ರ ನಡುವಿನ ಮೌಲ್ಯಗಳಿಗೆ)." apps/frappe/frappe/utils/bot.py,show,ತೋರಿಸು apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URL ಹಂಚಿಕೊಳ್ಳಿ apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,ಬೆಂಬಲಿಸದ ಫೈಲ್ ಫಾರ್ಮ್ಯಾಟ್ @@ -1373,7 +1392,7 @@ DocType: Communication,Notification,ಅಧಿಸೂಚನೆ DocType: Data Import,Show only errors,ದೋಷಗಳನ್ನು ಮಾತ್ರ ತೋರಿಸು DocType: Energy Point Log,Review,ವಿಮರ್ಶೆ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,ಸಾಲುಗಳನ್ನು ತೆಗೆದುಹಾಕಲಾಗಿದೆ -DocType: GSuite Settings,Google Credentials,ಗೂಗಲ್ ರುಜುವಾತುಗಳು +DocType: Google Settings,Google Credentials,ಗೂಗಲ್ ರುಜುವಾತುಗಳು apps/frappe/frappe/www/login.html,Or login with,ಅಥವಾ ಲಾಗಿನ್ ಮಾಡಿ apps/frappe/frappe/model/document.py,Record does not exist,ರೆಕಾರ್ಡ್ ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,ಹೊಸ ವರದಿ ಹೆಸರು @@ -1398,6 +1417,7 @@ DocType: Desktop Icon,List,ಪಟ್ಟಿ DocType: Workflow State,th-large,ನೇ ದೊಡ್ಡ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: ಸಲ್ಲಿಕೆ ಮಾಡಬಾರದೆಂದು ಸಲ್ಲಿಸುವಾಗ ನಿಗದಿಪಡಿಸಲಾಗಿಲ್ಲ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,ಯಾವುದೇ ದಾಖಲೆಗೆ ಲಿಂಕ್ ಮಾಡಲಾಗಿಲ್ಲ +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZ ಟ್ರೇ ಅಪ್ಲಿಕೇಶನ್‌ಗೆ ಸಂಪರ್ಕಿಸುವಲ್ಲಿ ದೋಷ ...

ಕಚ್ಚಾ ಮುದ್ರಣ ವೈಶಿಷ್ಟ್ಯವನ್ನು ಬಳಸಲು ನೀವು QZ ಟ್ರೇ ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ಸ್ಥಾಪಿಸಿ ಚಾಲನೆಯಲ್ಲಿರಬೇಕು.

QZ ಟ್ರೇ ಅನ್ನು ಡೌನ್‌ಲೋಡ್ ಮಾಡಲು ಮತ್ತು ಸ್ಥಾಪಿಸಲು ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ .
ಕಚ್ಚಾ ಮುದ್ರಣದ ಬಗ್ಗೆ ಇನ್ನಷ್ಟು ತಿಳಿದುಕೊಳ್ಳಲು ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ ." DocType: Chat Message,Content,ವಿಷಯ DocType: Workflow Transition,Allow Self Approval,ಸ್ವಯಂ ಅನುಮೋದನೆಯನ್ನು ಅನುಮತಿಸಿ apps/frappe/frappe/www/qrcode.py,Page has expired!,ಪುಟವು ಮುಗಿದಿದೆ! @@ -1414,6 +1434,7 @@ DocType: Workflow State,hand-right,ಕೈ ಬಲ DocType: Website Settings,Banner is above the Top Menu Bar.,ಬ್ಯಾನರ್ ಟಾಪ್ ಮೆನು ಬಾರ್ ಮೇಲೆ. apps/frappe/frappe/www/update-password.html,Invalid Password,ಅಮಾನ್ಯವಾದ ಪಾಸ್ವರ್ಡ್ apps/frappe/frappe/utils/data.py,1 month ago,1 ತಿಂಗಳ ಹಿಂದೆ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Google ಸಂಪರ್ಕಗಳ ಪ್ರವೇಶವನ್ನು ಅನುಮತಿಸಿ DocType: OAuth Client,App Client ID,ಅಪ್ಲಿಕೇಶನ್ ಕ್ಲೈಂಟ್ ID DocType: DocField,Currency,ಕರೆನ್ಸಿ DocType: Website Settings,Banner,ಬ್ಯಾನರ್ @@ -1425,7 +1446,7 @@ apps/frappe/frappe/utils/goal.py,Goal,ಗುರಿ DocType: Print Style,CSS,ಸಿಎಸ್ಎಸ್ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","ಹಂತ 0 ರಲ್ಲಿ ಪಾತ್ರವು ಪ್ರವೇಶವನ್ನು ಹೊಂದಿಲ್ಲದಿದ್ದರೆ, ಉನ್ನತ ಮಟ್ಟದ ಅರ್ಥಹೀನತೆ." DocType: ToDo,Reference Type,ಉಲ್ಲೇಖದ ಪ್ರಕಾರ -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","ಡಾಕ್ಟೈಪ್, ಡಾಕ್ ಟೈಪ್ ಅನ್ನು ಅನುಮತಿಸಲಾಗುತ್ತಿದೆ. ಜಾಗರೂಕರಾಗಿರಿ!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","ಡಾಕ್ಟೈಪ್, ಡಾಕ್ ಟೈಪ್ ಅನ್ನು ಅನುಮತಿಸಲಾಗುತ್ತಿದೆ. ಜಾಗರೂಕರಾಗಿರಿ!" DocType: Domain Settings,Domain Settings,ಡೊಮೇನ್ ಸೆಟ್ಟಿಂಗ್ಗಳು DocType: Auto Email Report,Dynamic Report Filters,ಡೈನಾಮಿಕ್ ವರದಿ ಶೋಧಕಗಳು DocType: Energy Point Log,Appreciation,ಮೆಚ್ಚುಗೆ @@ -1467,6 +1488,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,ನಮಗೆ-ಪಶ್ಚಿಮ -2 DocType: DocType,Is Single,ಏಕೈಕ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,ಹೊಸ ಸ್ವರೂಪವನ್ನು ರಚಿಸಿ +DocType: Google Contacts,Authorize Google Contacts Access,Google ಸಂಪರ್ಕಗಳ ಪ್ರವೇಶವನ್ನು ಅಧಿಕೃತಗೊಳಿಸಿ DocType: S3 Backup Settings,Endpoint URL,ಎಂಡ್ಪೋಯಿಂಟ್ URL DocType: Social Login Key,Google,ಗೂಗಲ್ DocType: Contact,Department,ಇಲಾಖೆ @@ -1481,7 +1503,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,ನಿಯೊ DocType: List Filter,List Filter,ಪಟ್ಟಿ ಫಿಲ್ಟರ್ DocType: Dashboard Chart Link,Chart,ಚಾರ್ಟ್ apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,ತೆಗೆದುಹಾಕುವುದಿಲ್ಲ -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,ದೃಢೀಕರಿಸಲು ಈ ಡಾಕ್ಯುಮೆಂಟ್ ಅನ್ನು ಸಲ್ಲಿಸಿ +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,ದೃಢೀಕರಿಸಲು ಈ ಡಾಕ್ಯುಮೆಂಟ್ ಅನ್ನು ಸಲ್ಲಿಸಿ apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} ಈಗಾಗಲೇ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ. ಮತ್ತೊಂದು ಹೆಸರನ್ನು ಆಯ್ಕೆ ಮಾಡಿ apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,ಈ ಫಾರ್ಮ್ನಲ್ಲಿ ನೀವು ಉಳಿಸದ ಬದಲಾವಣೆಗಳನ್ನು ಹೊಂದಿರುವಿರಿ. ನೀವು ಮುಂದುವರಿಯುವ ಮೊದಲು ದಯವಿಟ್ಟು ಉಳಿಸಿ. apps/frappe/frappe/model/document.py,Action Failed,ಕ್ರಿಯೆ ವಿಫಲವಾಗಿದೆ @@ -1507,6 +1529,7 @@ DocType: Milestone,Milestone Tracker,ಮೈಲಿಗಲ್ಲು ಟ್ರ್ಯ apps/frappe/frappe/limits.py,Your subscription will expire tomorrow.,ನಿಮ್ಮ ಚಂದಾದಾರಿಕೆಯು ನಾಳೆ ಅಂತ್ಯಗೊಳ್ಳುತ್ತದೆ. DocType: Address,Address Title,ವಿಳಾಸ ಶೀರ್ಷಿಕೆ DocType: SMS Settings,Message Parameter,ಸಂದೇಶ ಪ್ಯಾರಾಮೀಟರ್ +apps/frappe/frappe/public/js/frappe/request.js,File size exceeded the maximum allowed size of {0} MB,ಫೈಲ್ ಗಾತ್ರವು ಅನುಮತಿಸಲಾದ ಗರಿಷ್ಠ ಗಾತ್ರ {0} MB ಅನ್ನು ಮೀರಿದೆ apps/frappe/frappe/templates/emails/new_message.html,Login and view in Browser,ಲಾಗಿನ್ ಮತ್ತು ಬ್ರೌಸರ್ನಲ್ಲಿ ವೀಕ್ಷಿಸಿ apps/frappe/frappe/config/settings.py,Define workflows for forms.,ಫಾರ್ಮ್ಗಳಿಗಾಗಿ ಕೆಲಸದ ಹರಿವನ್ನು ವಿವರಿಸಿ. DocType: Workflow State,Music,ಸಂಗೀತ @@ -1562,6 +1585,7 @@ DocType: DocField,Display,ಪ್ರದರ್ಶಿಸು apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,ಎಲ್ಲರಿಗೂ ಉತ್ತರಿಸಿ DocType: Calendar View,Subject Field,ವಿಷಯ ಕ್ಷೇತ್ರ apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},ಸೆಷನ್ ಅವಧಿ ರೂಪದಲ್ಲಿರಬೇಕು {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},ಅನ್ವಯಿಸಲಾಗುತ್ತಿದೆ: {0} DocType: Workflow State,zoom-in,ಇನ್ನು ಹತ್ತಿರವಾಗಿಸಿ apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,ಸರ್ವರ್ಗೆ ಸಂಪರ್ಕಿಸಲು ವಿಫಲವಾಗಿದೆ apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},ದಿನಾಂಕ {0} ಸ್ವರೂಪದಲ್ಲಿರಬೇಕು: {1} @@ -1573,8 +1597,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,ಟೆಸ್ಟ್_ಫೊಲ್ಡರ್ DocType: Workflow State,Icon will appear on the button,ಐಕಾನ್ ಬಟನ್ ಮೇಲೆ ಕಾಣಿಸುತ್ತದೆ DocType: Role Permission for Page and Report,Set Role For,ಪಾತ್ರವನ್ನು ಹೊಂದಿಸಿ +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,ಸ್ವಯಂಚಾಲಿತ ಲಿಂಕ್ ಅನ್ನು ಒಂದು ಇಮೇಲ್ ಖಾತೆಗೆ ಮಾತ್ರ ಸಕ್ರಿಯಗೊಳಿಸಬಹುದು. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,ಯಾವುದೇ ಇಮೇಲ್ ಖಾತೆಗಳು ನಿಗದಿಪಡಿಸಲಾಗಿಲ್ಲ +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ಇಮೇಲ್ ಖಾತೆಯನ್ನು ಹೊಂದಿಸಲಾಗಿಲ್ಲ. ಸೆಟಪ್> ಇಮೇಲ್> ಇಮೇಲ್ ಖಾತೆಯಿಂದ ದಯವಿಟ್ಟು ಹೊಸ ಇಮೇಲ್ ಖಾತೆಯನ್ನು ರಚಿಸಿ apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,ನಿಯೋಜನೆ +DocType: Google Contacts,Last Sync On,ಕೊನೆಯ ಸಿಂಕ್ ಆನ್ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},ಸ್ವಯಂಚಾಲಿತ ನಿಯಮ {1} ಮೂಲಕ {0} ಪಡೆಯಲಾಗಿದೆ apps/frappe/frappe/config/website.py,Portal,ಪೋರ್ಟಲ್ apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,ನಿಮ್ಮ ಇ - ಅಂಚೆಗಾಗಿ ಧನ್ಯವಾದಗಳು @@ -1595,7 +1622,6 @@ DocType: GSuite Settings,GSuite Settings,ಜಿಸ್ಯೈಟ್ ಸೆಟ್ DocType: Integration Request,Remote,ರಿಮೋಟ್ DocType: File,Thumbnail URL,ಥಂಬ್ನೇಲ್ URL apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,ವರದಿ ಡೌನ್ಲೋಡ್ ಮಾಡಿ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,ಸೆಟಪ್> ಬಳಕೆದಾರ apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},{0} ಗೆ ರಫ್ತು ಮಾಡಲಾದ ಗ್ರಾಹಕೀಕರಣಗಳು:
{1} DocType: GCalendar Account,Calendar Name,ಕ್ಯಾಲೆಂಡರ್ ಹೆಸರು apps/frappe/frappe/templates/emails/new_user.html,Your login id is,ನಿಮ್ಮ ಲಾಗಿನ್ ಐಡಿ ಆಗಿದೆ @@ -1645,6 +1671,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},{0} apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,ಚಿತ್ರ ಕ್ಷೇತ್ರವು ಮಾನ್ಯ ಕ್ಷೇತ್ರದ ಹೆಸರುಯಾಗಿರಬೇಕು apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,ಈ ಪುಟವನ್ನು ಪ್ರವೇಶಿಸಲು ನೀವು ಲಾಗ್ ಇನ್ ಮಾಡಬೇಕಾಗಿದೆ DocType: Assignment Rule,Example: {{ subject }},ಉದಾಹರಣೆ: {{ವಿಷಯ}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,ಫೀಲ್ಡ್ನಾೇಮ್ {0} ಅನ್ನು ನಿರ್ಬಂಧಿಸಲಾಗಿದೆ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},ಕ್ಷೇತ್ರಕ್ಕಾಗಿ {0} ನಿಮಗೆ 'ಓದಲು ಮಾತ್ರ' ಹೊಂದಿಸಲಾಗುವುದಿಲ್ಲ DocType: Social Login Key,Enable Social Login,ಸಮಾಜ ಲಾಗಿನ್ ಸಕ್ರಿಯಗೊಳಿಸಿ DocType: Workflow,Rules defining transition of state in the workflow.,ವರ್ಕ್ಫ್ಲೋನಲ್ಲಿ ರಾಜ್ಯದ ಸ್ಥಿತ್ಯಂತರವನ್ನು ವ್ಯಾಖ್ಯಾನಿಸುವ ನಿಯಮಗಳು. @@ -1665,10 +1692,10 @@ DocType: Website Settings,Route Redirects,ಮಾರ್ಗ ಮರುನಿರ್ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ಇಮೇಲ್ ಇನ್ಬಾಕ್ಸ್ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},{0} {1} ಆಗಿ ಮರುಸ್ಥಾಪಿಸಲಾಗಿದೆ DocType: Assignment Rule,Automatically Assign Documents to Users,ಬಳಕೆದಾರರಿಗೆ ಡಾಕ್ಯುಮೆಂಟ್ಗಳನ್ನು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ನಿಯೋಜಿಸಿ +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,ಅದ್ಭುತ ಬಾರ್ ತೆರೆಯಿರಿ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,ಸಾಮಾನ್ಯ ಪ್ರಶ್ನೆಗಳಿಗೆ ಇಮೇಲ್ ಟೆಂಪ್ಲೇಟ್ಗಳು. DocType: Letter Head,Letter Head Based On,ಲೆಟರ್ ಹೆಡ್ ಆಧರಿಸಿ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,ದಯವಿಟ್ಟು ಈ ವಿಂಡೋವನ್ನು ಮುಚ್ಚಿ -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,ಪಾವತಿ ಪೂರ್ಣಗೊಂಡಿದೆ DocType: Contact,Designation,ಸ್ಥಾನೀಕರಣ DocType: Webhook,Webhook,ವೆಬ್ಹೂಕ್ DocType: Website Route Meta,Meta Tags,ಮೆಟಾ ಟ್ಯಾಗ್ಗಳು @@ -1707,6 +1734,7 @@ DocType: System Settings,Choose authentication method to be used by all users, DocType: Error Snapshot,Parent Error Snapshot,ಪೋಷಕ ದೋಷ ಸ್ನ್ಯಾಪ್ಶಾಟ್ DocType: GCalendar Account,GCalendar Account,ಜಿಕಾಲೆಂಡರ್ ಖಾತೆ DocType: Language,Language Name,ಭಾಷಾ ಹೆಸರು +DocType: Workflow Document State,Workflow Action is not created for optional states,ಐಚ್ al ಿಕ ರಾಜ್ಯಗಳಿಗಾಗಿ ವರ್ಕ್ಫ್ಲೋ ಕ್ರಿಯೆಯನ್ನು ರಚಿಸಲಾಗಿಲ್ಲ DocType: Customize Form,Customize Form,ಫಾರ್ಮ್ ಕಸ್ಟಮೈಸ್ DocType: DocType,Image Field,ಚಿತ್ರ ಕ್ಷೇತ್ರ apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),{0} ಸೇರಿಸಲಾಗಿದೆ ({1}) @@ -1748,6 +1776,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,ಬಳಕೆದಾರರು ಮಾಲೀಕರಾಗಿದ್ದರೆ ಈ ನಿಯಮವನ್ನು ಅನ್ವಯಿಸಿ DocType: About Us Settings,Org History Heading,ಆರ್ಗ್ ಇತಿಹಾಸ ಶಿರೋನಾಮೆ apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,ಸರ್ವರ್ ದೋಷ +DocType: Contact,Google Contacts Description,Google ಸಂಪರ್ಕಗಳ ವಿವರಣೆ apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,ಸ್ಟ್ಯಾಂಡರ್ಡ್ ಪಾತ್ರಗಳನ್ನು ಮರುಹೆಸರಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ DocType: Review Level,Review Points,ವಿಮರ್ಶೆ ಪಾಯಿಂಟುಗಳು apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,ಕಾಣೆಯಾಗಿದೆ ಪ್ಯಾರಾಮೀಟರ್ ಕನ್ಬಾನ್ ಬೋರ್ಡ್ ಹೆಸರು @@ -1765,7 +1794,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,ಡೆವಲಪರ್ ಮೋಡ್ನಲ್ಲಿಲ್ಲ! Site_config.json ನಲ್ಲಿ ಹೊಂದಿಸಿ ಅಥವಾ 'ಕಸ್ಟಮ್' ಡಾಕ್ಟೈಪ್ ಮಾಡಿ. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,{0} ಅಂಕಗಳನ್ನು ಪಡೆಯಲಾಗಿದೆ DocType: Web Form,Success Message,ಯಶಸ್ಸು ಸಂದೇಶ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","ಹೋಲಿಕೆಗಾಗಿ, 5> <10 ಅಥವಾ = 324 ಬಳಸಿ. ಶ್ರೇಣಿಗಳಿಗಾಗಿ, 5:10 (5 ಮತ್ತು 10 ರ ನಡುವಿನ ಮೌಲ್ಯಗಳಿಗಾಗಿ) ಬಳಸಿ." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","ಸರಳ ಪಠ್ಯದಲ್ಲಿ, ಸಾಲುಗಳ ಕೇವಲ ಒಂದೆರಡು ಪಟ್ಟಿಯಲ್ಲಿ ಪಟ್ಟಿಗಾಗಿ ವಿವರಣೆ. (ಗರಿಷ್ಟ 140 ಅಕ್ಷರಗಳು)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,ಅನುಮತಿಗಳನ್ನು ತೋರಿಸಿ DocType: DocType,Restrict To Domain,ಡೊಮೇನ್ಗೆ ನಿರ್ಬಂಧಿಸಿ @@ -1787,6 +1815,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,ಪೂ apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,ಪ್ರಮಾಣವನ್ನು ಹೊಂದಿಸಿ DocType: Auto Repeat,End Date,ಅಂತಿಮ ದಿನಾಂಕ DocType: Workflow Transition,Next State,ಮುಂದಿನ ರಾಜ್ಯ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Google ಸಂಪರ್ಕಗಳನ್ನು ಸಿಂಕ್ ಮಾಡಲಾಗಿದೆ. DocType: System Settings,Is First Startup,ಮೊದಲ ಪ್ರಾರಂಭವಾಗಿದೆ apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},{0} ಗೆ ನವೀಕರಿಸಲಾಗಿದೆ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,ಸರಿಸು @@ -1836,6 +1865,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} ಕ್ಯಾಲೆಂಡರ್ apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,ಡೇಟಾ ಆಮದು ಟೆಂಪ್ಲೇಟು DocType: Workflow State,hand-left,ಕೈ ಎಡಕ್ಕೆ +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,ಬಹು ಪಟ್ಟಿ ವಸ್ತುಗಳನ್ನು ಆಯ್ಕೆಮಾಡಿ apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,ಬ್ಯಾಕಪ್ ಗಾತ್ರ: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},{0} ನೊಂದಿಗೆ ಲಿಂಕ್ ಮಾಡಲಾಗಿದೆ DocType: Braintree Settings,Private Key,ಖಾಸಗಿ ಕೀಲಿ @@ -1878,13 +1908,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,ಆಸಕ್ತಿ DocType: Bulk Update,Limit,ಮಿತಿ DocType: Print Settings,Print taxes with zero amount,ಶೂನ್ಯ ಮೊತ್ತದೊಂದಿಗೆ ಪ್ರಿಂಟ್ ತೆರಿಗೆಗಳು -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ಇಮೇಲ್ ಖಾತೆ ಸೆಟಪ್ ಆಗಿಲ್ಲ. ದಯವಿಟ್ಟು ಸೆಟಪ್> ಇಮೇಲ್> ಇಮೇಲ್ ಖಾತೆಯಿಂದ ಹೊಸ ಇಮೇಲ್ ಖಾತೆಯನ್ನು ರಚಿಸಿ DocType: Workflow State,Book,ಪುಸ್ತಕ DocType: S3 Backup Settings,Access Key ID,ಪ್ರವೇಶ ಕೀ ID DocType: Chat Message,URLs,URL ಗಳು apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,ಹೆಸರುಗಳು ಮತ್ತು ಉಪನಾಮಗಳು ಸ್ವತಃ ಊಹಿಸಲು ಸುಲಭ. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},ವರದಿಮಾಡಿ {0} DocType: About Us Settings,Team Members Heading,ತಂಡದ ಸದಸ್ಯರು ಶಿರೋನಾಮೆ +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,ಪಟ್ಟಿ ಐಟಂ ಆಯ್ಕೆಮಾಡಿ apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},ಡಾಕ್ಯುಮೆಂಟ್ {0} ಅನ್ನು {1} {2} ನಿಂದ ರಾಜ್ಯಕ್ಕೆ ಹೊಂದಿಸಲಾಗಿದೆ DocType: Address Template,Address Template,ವಿಳಾಸ ಟೆಂಪ್ಲೇಟು DocType: Workflow State,step-backward,ಹಂತ-ಹಿಂದುಳಿದ @@ -1908,6 +1938,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,ಕಸ್ಟಮ್ ಅನುಮತಿಗಳನ್ನು ರಫ್ತು ಮಾಡಿ apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,ಯಾವುದೂ ಇಲ್ಲ: ವರ್ಕ್ಫ್ಲೋ ಅಂತ್ಯ DocType: Version,Version,ಆವೃತ್ತಿ +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,ಪಟ್ಟಿ ಐಟಂ ತೆರೆಯಿರಿ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 ತಿಂಗಳು DocType: Chat Message,Group,ಗುಂಪು apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},ಫೈಲ್ url ನಲ್ಲಿ ಕೆಲವು ಸಮಸ್ಯೆ ಇದೆ: {0} @@ -1963,6 +1994,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 ವರ್ಷ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} ನಿಮ್ಮ ಅಂಕಗಳನ್ನು {1} ನಲ್ಲಿ ಹಿಂತಿರುಗಿಸಿದೆ DocType: Workflow State,arrow-down,ಬಾಣದ-ಕೆಳಗೆ DocType: Data Import,Ignore encoding errors,ಎನ್ಕೋಡಿಂಗ್ ದೋಷಗಳನ್ನು ನಿರ್ಲಕ್ಷಿಸಿ +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,ಭೂದೃಶ್ಯ DocType: Letter Head,Letter Head Name,ಲೆಟರ್ ಹೆಡ್ ಹೆಸರು DocType: Web Form,Client Script,ಕ್ಲೈಂಟ್ ಸ್ಕ್ರಿಪ್ಟ್ DocType: Assignment Rule,Higher priority rule will be applied first,ಉನ್ನತ ಆದ್ಯತೆಯ ನಿಯಮವನ್ನು ಮೊದಲು ಅನ್ವಯಿಸಲಾಗುತ್ತದೆ @@ -2007,6 +2039,7 @@ DocType: Kanban Board Column,Green,ಹಸಿರು apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,ಹೊಸ ದಾಖಲೆಗಳಿಗಾಗಿ ಮಾತ್ರ ಕಡ್ಡಾಯವಾದ ಜಾಗ ಅಗತ್ಯ. ನೀವು ಬಯಸಿದಲ್ಲಿ ನೀವು ಕಡ್ಡಾಯವಾಗಿಲ್ಲದ ಕಾಲಮ್ಗಳನ್ನು ಅಳಿಸಬಹುದು. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} ಪತ್ರದೊಂದಿಗೆ ಆರಂಭಗೊಳ್ಳಬೇಕು ಮತ್ತು ಕೊನೆಗೊಳ್ಳಬೇಕು ಮತ್ತು ಅಕ್ಷರಗಳು, ಹೈಫನ್ ಅಥವಾ ಅಂಡರ್ಸ್ಕೋರ್ಗಳನ್ನು ಮಾತ್ರ ಹೊಂದಿರಬೇಕು." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,ಪ್ರಾಥಮಿಕ ಕ್ರಿಯೆಯನ್ನು ಪ್ರಚೋದಿಸಿ apps/frappe/frappe/core/doctype/user/user.js,Create User Email,ಬಳಕೆದಾರ ಇಮೇಲ್ ರಚಿಸಿ apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,ವಿಂಗಡಣಾ ಕ್ಷೇತ್ರ {0} ಮಾನ್ಯ ಕ್ಷೇತ್ರದ ಹೆಸರುಯಾಗಿರಬೇಕು DocType: Auto Email Report,Filter Meta,ಫಿಲ್ಟರ್ ಮೆಟಾ @@ -2036,6 +2069,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,ಟೈಮ್ಲೈನ್ ಫೀಲ್ಡ್ apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,ಲೋಡ್ ಆಗುತ್ತಿದೆ ... DocType: Auto Email Report,Half Yearly,ಹಾಫ್ ವಾರ್ಷಿಕ +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,ಸ್ವ ಭೂಮಿಕೆ apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,ಕೊನೆಯ ಮಾರ್ಪಡಿಸಿದ ದಿನಾಂಕ DocType: Contact,First Name,ಮೊದಲ ಹೆಸರು DocType: Post,Comments,ಪ್ರತಿಕ್ರಿಯೆಗಳು @@ -2058,6 +2092,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,ವಿಷಯ ಹ್ಯಾಶ್ apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},{0} ಪೋಸ್ಟ್ಗಳು apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} ನಿಯೋಜಿಸಲಾಗಿದೆ {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,ಯಾವುದೇ ಹೊಸ Google ಸಂಪರ್ಕಗಳನ್ನು ಸಿಂಕ್ ಮಾಡಿಲ್ಲ. DocType: Workflow State,globe,ಗ್ಲೋಬ್ apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},{0} ಸರಾಸರಿ apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,ಸ್ಪಷ್ಟ ದೋಷ ದಾಖಲೆಗಳು @@ -2066,6 +2101,7 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name DocType: Workflow State,Filter,ಫಿಲ್ಟರ್ DocType: Auto Email Report,No of Rows (Max 500),ಸಾಲುಗಳ ಸಂಖ್ಯೆ (ಗರಿಷ್ಠ 500) DocType: Comment,Label,ಲೇಬಲ್ +apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಲಾಕ್ ಮಾಡಲಾಗಿದೆ ಮತ್ತು {0} ಸೆಕೆಂಡುಗಳ ನಂತರ ಪುನರಾರಂಭಗೊಳ್ಳುತ್ತದೆ DocType: Workflow State,indent-left,ಇಂಡೆಂಟ್-ಎಡ DocType: Social Login Key,Identity Details,ಗುರುತಿನ ವಿವರಗಳು DocType: Chat Message,Visitor,ಸಂದರ್ಶಕ @@ -2083,6 +2119,8 @@ DocType: Workflow State,Inverse,ವಿಲೋಮ DocType: Activity Log,Closed,ಮುಚ್ಚಲಾಗಿದೆ DocType: Report,Query,ಪ್ರಶ್ನೆ DocType: Notification,Days After,ದಿನಗಳ ನಂತರ +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,ಪುಟ ಶಾರ್ಟ್‌ಕಟ್‌ಗಳು +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,ಭಾವಚಿತ್ರ apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,ಸಮಯ ಮೀರಿದೆ ವಿನಂತಿಸಿ DocType: System Settings,Email Footer Address,ಇಮೇಲ್ ಅಡಿಟಿಪ್ಪಣಿ ವಿಳಾಸ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,ಎನರ್ಜಿ ಪಾಯಿಂಟ್ ಅಪ್ಡೇಟ್ @@ -2110,6 +2148,7 @@ For Select, enter list of Options, each on a new line.","ಲಿಂಕ್ಗಳ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 ನಿಮಿಷ ಹಿಂದೆ apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,ಯಾವುದೇ ಸಕ್ರಿಯ ಸೆಷನ್ಸ್ ಇಲ್ಲ apps/frappe/frappe/model/base_document.py,Row,ಸಾಲು +DocType: Contact,Middle Name,ಮಧ್ಯದ ಹೆಸರು apps/frappe/frappe/public/js/frappe/request.js,Please try again,ದಯವಿಟ್ಟು ಪುನಃ ಪ್ರಯತ್ನಿಸಿ DocType: Dashboard Chart,Chart Options,ಚಾರ್ಟ್ ಆಯ್ಕೆಗಳು DocType: Data Migration Run,Push Failed,ಪುಶ್ ವಿಫಲವಾಗಿದೆ @@ -2138,6 +2177,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,ಸಣ್ಣ ಗಾತ್ರ ಬದಲಾವಣೆ DocType: Comment,Relinked,ಮರುಕಳಿಸಲಾಗಿದೆ DocType: Role Permission for Page and Report,Roles HTML,ಪಾತ್ರಗಳು ಎಚ್ಟಿಎಮ್ಎಲ್ +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,ಹೋಗಿ apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,ವರ್ಕ್ಫ್ಲೋ ಉಳಿಸಿದ ನಂತರ ಪ್ರಾರಂಭವಾಗುತ್ತದೆ. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","ನಿಮ್ಮ ಡೇಟಾ ಎಚ್ಟಿಎಮ್ಎಲ್ನಲ್ಲಿದ್ದರೆ, ದಯವಿಟ್ಟು ಟ್ಯಾಗ್ಗಳೊಂದಿಗೆ ನಿಖರ HTML ಕೋಡ್ ಅನ್ನು ನಕಲಿಸಿ." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,ದಿನಾಂಕಗಳು ಊಹಿಸಲು ಸುಲಭವಾಗಿದೆ. @@ -2166,7 +2206,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,ಡೆಸ್ಕ್ಟಾಪ್ ಐಕಾನ್ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,ಈ ಡಾಕ್ಯುಮೆಂಟ್ ಅನ್ನು ರದ್ದುಗೊಳಿಸಲಾಗಿದೆ apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,ದಿನಾಂಕ ಶ್ರೇಣಿ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ಸೆಟಪ್> ಬಳಕೆದಾರ ಅನುಮತಿಗಳು apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} ಮೆಚ್ಚುಗೆಯಾಗಿದೆ {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,ಮೌಲ್ಯಗಳು ಬದಲಾಗಿದೆ apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,ಅಧಿಸೂಚನೆಯಲ್ಲಿ ದೋಷ @@ -2231,6 +2270,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,ದೊಡ್ಡ ಅಳತೆ DocType: DocShare,Document Name,ಡಾಕ್ಯುಮೆಂಟ್ ಹೆಸರು apps/frappe/frappe/config/customization.py,Add your own translations,ನಿಮ್ಮ ಸ್ವಂತ ಅನುವಾದಗಳನ್ನು ಸೇರಿಸಿ +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,ಪಟ್ಟಿಯನ್ನು ಕೆಳಗೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ DocType: S3 Backup Settings,eu-central-1,ಇಯು-ಕೇಂದ್ರ 1 DocType: Auto Repeat,Yearly,ವಾರ್ಷಿಕ apps/frappe/frappe/public/js/frappe/model/model.js,Rename,ಮರುಹೆಸರಿಸು @@ -2254,6 +2294,7 @@ DocType: Webhook Header,Webhook Header,ವೆಬ್ಹುಕ್ ಶಿರೋಲ DocType: GSuite Settings,Allow GSuite access,GSuite ಪ್ರವೇಶವನ್ನು ಅನುಮತಿಸಿ apps/frappe/frappe/email/doctype/email_group/email_group.js,New Newsletter,ಹೊಸ ಸುದ್ದಿಪತ್ರ apps/frappe/frappe/public/js/frappe/desk.js,Updated To New Version,ಹೊಸ ಆವೃತ್ತಿಗೆ ನವೀಕರಿಸಲಾಗಿದೆ +apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No {0} mail,ಇಲ್ಲ {0} ಮೇಲ್ apps/frappe/frappe/core/doctype/user/user.py,Password Reset,ಗುಪ್ತಪದ ಮರುಹೊಂದಿಸಿ DocType: Communication,From Full Name,ಪೂರ್ಣ ಹೆಸರಿನಿಂದ DocType: Newsletter,Newsletter,ಸುದ್ದಿಪತ್ರ @@ -2280,6 +2321,7 @@ DocType: Workflow State,plane,ವಿಮಾನ apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,ನೆಸ್ಟೆಡ್ ಸೆಟ್ ದೋಷ. ದಯವಿಟ್ಟು ನಿರ್ವಾಹಕರನ್ನು ಸಂಪರ್ಕಿಸಿ. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,ವರದಿ ತೋರಿಸು DocType: Auto Repeat,Auto Repeat Schedule,ಸ್ವಯಂ ಪುನರಾವರ್ತನೆ ವೇಳಾಪಟ್ಟಿ +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,ಉಲ್ಲೇಖ ವೀಕ್ಷಿಸಿ DocType: Address,Office,ಕಚೇರಿ DocType: LDAP Settings,StartTLS,ಪ್ರಾರಂಭ ಟಿಎಲ್ಎಸ್ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} ದಿನಗಳ ಹಿಂದೆ @@ -2312,7 +2354,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required, apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,ನನ್ನ ಸೆಟ್ಟಿಂಗ್ಗಳು apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,ಗುಂಪು ಹೆಸರು ಖಾಲಿ ಇರುವಂತಿಲ್ಲ. DocType: Workflow State,road,ರಸ್ತೆ -DocType: Website Route Redirect,Source,ಮೂಲ +DocType: Contact,Source,ಮೂಲ apps/frappe/frappe/www/third_party_apps.html,Active Sessions,ಸಕ್ರಿಯ ಸೆಷನ್ಸ್ apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,ಒಂದು ರೂಪದಲ್ಲಿ ಕೇವಲ ಒಂದು ಪಟ್ಟು ಇರುತ್ತದೆ apps/frappe/frappe/public/js/frappe/chat.js,New Chat,ಹೊಸ ಚಾಟ್ @@ -2358,6 +2400,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,ಬಳಕೆದಾರರ ಪುಟದಿಂದ ಬಳಕೆದಾರರಿಗೆ ಪಾತ್ರಗಳನ್ನು ಹೊಂದಿಸಬಹುದು. DocType: Website Settings,Include Search in Top Bar,ಟಾಪ್ ಬಾರ್ನಲ್ಲಿ ಹುಡುಕಾಟವನ್ನು ಸೇರಿಸಿ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[ತುರ್ತು]% s ಗಾಗಿ ಮರುಕಳಿಸುವ% s ಅನ್ನು ರಚಿಸುವಾಗ ದೋಷ ಸಂಭವಿಸಿದೆ +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,ಜಾಗತಿಕ ಶಾರ್ಟ್‌ಕಟ್‌ಗಳು DocType: Help Article,Author,ಲೇಖಕ DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,ಕೊಟ್ಟಿರುವ ಶೋಧಕಗಳಿಗೆ ಯಾವುದೇ ಡಾಕ್ಯುಮೆಂಟ್ ಕಂಡುಬಂದಿಲ್ಲ @@ -2393,10 +2436,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, ಸಾಲು {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","ನೀವು ಹೊಸ ದಾಖಲೆಗಳನ್ನು ಅಪ್ಲೋಡ್ ಮಾಡುತ್ತಿದ್ದರೆ, "ನಾಮಕರಣ ಸರಣಿ" ಕಡ್ಡಾಯವಾಗಿ ಕಂಡುಬಂದರೆ, ಪ್ರಸ್ತುತ ಇದ್ದಲ್ಲಿ." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,ಗುಣಲಕ್ಷಣಗಳನ್ನು ಸಂಪಾದಿಸಿ -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,ಅದರ {0} ತೆರೆದಾಗ ಉದಾಹರಣೆಗೆ ತೆರೆಯಲು ಸಾಧ್ಯವಿಲ್ಲ +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,ಅದರ {0} ತೆರೆದಾಗ ಉದಾಹರಣೆಗೆ ತೆರೆಯಲು ಸಾಧ್ಯವಿಲ್ಲ DocType: Activity Log,Timeline Name,ಟೈಮ್ಲೈನ್ ಹೆಸರು DocType: Comment,Workflow,ವರ್ಕ್ಫ್ಲೋ apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Frappe ಗಾಗಿ ಸಾಮಾಜಿಕ ಲಾಗಿನ್ ಕೀಲಿಯಲ್ಲಿ ಮೂಲ URL ಅನ್ನು ದಯವಿಟ್ಟು ಹೊಂದಿಸಿ +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,ಕೀಬೋರ್ಡ್ ಶಾರ್ಟ್‌ಕಟ್‌ಗಳು DocType: Portal Settings,Custom Menu Items,ಕಸ್ಟಮ್ ಮೆನು ಐಟಂಗಳು apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,{0} ನ ಉದ್ದವು 1 ರಿಂದ 1000 ರ ನಡುವೆ ಇರಬೇಕು apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,ಸಂಪರ್ಕ ಕಳೆದುಹೋಗಿದೆ. ಕೆಲವು ವೈಶಿಷ್ಟ್ಯಗಳು ಕಾರ್ಯನಿರ್ವಹಿಸದೇ ಇರಬಹುದು. @@ -2459,6 +2503,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,ಸಾಲ DocType: DocType,Setup,ಸೆಟಪ್ apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} ಯಶಸ್ವಿಯಾಗಿ ರಚಿಸಲಾಗಿದೆ apps/frappe/frappe/www/update-password.html,New Password,ಹೊಸ ಪಾಸ್ವರ್ಡ್ +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,ಕ್ಷೇತ್ರ ಆಯ್ಕೆಮಾಡಿ apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,ಈ ಸಂವಾದವನ್ನು ಬಿಡಿ DocType: About Us Settings,Team Members,ತಂಡದ ಸದಸ್ಯರು DocType: Blog Settings,Writers Introduction,ರೈಟರ್ಸ್ ಪರಿಚಯ @@ -2528,13 +2573,12 @@ DocType: Chat Room,Name,ಹೆಸರು DocType: Communication,Email Template,ಇಮೇಲ್ ಟೆಂಪ್ಲೇಟು DocType: Energy Point Settings,Review Levels,ವಿಮರ್ಶೆ ಹಂತಗಳು DocType: Print Format,Raw Printing,ರಾ ಪ್ರಿಂಟಿಂಗ್ -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,ಅದರ ಉದಾಹರಣೆ ತೆರೆದಿರುವಾಗ {0} ತೆರೆಯಲು ಸಾಧ್ಯವಿಲ್ಲ +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,ಅದರ ಉದಾಹರಣೆ ತೆರೆದಿರುವಾಗ {0} ತೆರೆಯಲು ಸಾಧ್ಯವಿಲ್ಲ DocType: DocType,"Make ""name"" searchable in Global Search",ಗ್ಲೋಬಲ್ ಸರ್ಚ್ನಲ್ಲಿ "ಹೆಸರು" ಅನ್ನು ಹುಡುಕಬಹುದು DocType: Data Migration Mapping,Data Migration Mapping,ಡೇಟಾ ವಲಸೆ ಮ್ಯಾಪಿಂಗ್ DocType: Data Import,Partially Successful,ಭಾಗಶಃ ಯಶಸ್ವಿ DocType: Communication,Error,ದೋಷ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},ಫೀಲ್ಡ್ಟೈಪ್ನ್ನು {0} ರಿಂದ {1} ವರೆಗೆ ಸಾಲು {2} ನಿಂದ ಬದಲಾಯಿಸಲಾಗುವುದಿಲ್ಲ -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZ ಟ್ರೇ ಅನ್ವಯಕ್ಕೆ ಸಂಪರ್ಕಿಸುವಲ್ಲಿ ದೋಷ ...

ರಾ ಪ್ರಿಂಟ್ ವೈಶಿಷ್ಟ್ಯವನ್ನು ಬಳಸಲು ನೀವು QZ ಟ್ರೇ ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ಸ್ಥಾಪಿಸಿ ಮತ್ತು ಚಾಲನೆಯಲ್ಲಿರುವ ಅಗತ್ಯವಿದೆ.

QZ ಟ್ರೇ ಅನ್ನು ಡೌನ್ಲೋಡ್ ಮಾಡಲು ಮತ್ತು ಸ್ಥಾಪಿಸಲು ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ .
ರಾ ಪ್ರಿಂಟಿಂಗ್ ಬಗ್ಗೆ ಇನ್ನಷ್ಟು ತಿಳಿಯಲು ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,ಭಾವಚಿತ್ರವನ್ನು ತೆಗಿರಿ apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,ನಿಮ್ಮೊಂದಿಗೆ ಸಂಬಂಧಿಸಿರುವ ವರ್ಷಗಳನ್ನು ತಪ್ಪಿಸಿ. DocType: Web Form,Allow Incomplete Forms,ಅಪೂರ್ಣ ಫಾರ್ಮ್ಗಳನ್ನು ಅನುಮತಿಸಿ @@ -2630,7 +2674,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",ಹೊಸ ಪುಟದಲ್ಲಿ ತೆರೆಯಲು ಗುರಿ = "_blank" ಅನ್ನು ಆಯ್ಕೆಮಾಡಿ. DocType: Portal Settings,Portal Menu,ಪೋರ್ಟಲ್ ಮೆನು DocType: Website Settings,Landing Page,ಲ್ಯಾಂಡಿಂಗ್ ಪುಟ -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,ದಯವಿಟ್ಟು ಸೈನ್-ಅಪ್ ಮಾಡಿ ಅಥವಾ ಪ್ರಾರಂಭಿಸಲು ಲಾಗಿನ್ ಮಾಡಿ DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","ಸಂಪರ್ಕ ಸಾಲುಗಳೆಂದರೆ "ಮಾರಾಟದ ಪ್ರಶ್ನೆ, ಬೆಂಬಲ ಪ್ರಶ್ನೆ" ಇತ್ಯಾದಿ ಹೊಸ ಸಾಲಿನಲ್ಲಿ ಅಥವಾ ಕಾಮಾಗಳಿಂದ ಬೇರ್ಪಡಿಸಲ್ಪಟ್ಟಿವೆ." apps/frappe/frappe/twofactor.py,Verfication Code,ಪರಿಶೀಲನಾ ಕೋಡ್ apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} ಈಗಾಗಲೇ ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್ ಮಾಡಲಾಗಿದೆ @@ -2716,6 +2759,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,ಡೇಟಾ DocType: Address,Sales User,ಮಾರಾಟದ ಬಳಕೆದಾರ apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","ಕ್ಷೇತ್ರ ಗುಣಲಕ್ಷಣಗಳನ್ನು ಬದಲಾಯಿಸಿ (ಮರೆಮಾಡಿ, ಓದಲು ಮಾತ್ರ, ಅನುಮತಿ ಇತ್ಯಾದಿ.)" DocType: Property Setter,Field Name,ಕ್ಷೇತ್ರದ ಹೆಸರು +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,ಗ್ರಾಹಕರು DocType: Print Settings,Font Size,ಅಕ್ಷರ ಗಾತ್ರ DocType: User,Last Password Reset Date,ಕೊನೆಯ ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸುವ ದಿನಾಂಕ DocType: System Settings,Date and Number Format,ದಿನಾಂಕ ಮತ್ತು ಸಂಖ್ಯೆ ಸ್ವರೂಪ @@ -2780,6 +2824,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,ಗುಂಪು apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ವಿಲೀನ DocType: Blog Post,Blog Intro,ಬ್ಲಾಗ್ ಪರಿಚಯ apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,ಹೊಸ ಉಲ್ಲೇಖ +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,ಕ್ಷೇತ್ರಕ್ಕೆ ಹೋಗು DocType: Prepared Report,Report Name,ವರದಿ ಮಾಡಿ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,ಇತ್ತೀಚಿನ ಡಾಕ್ಯುಮೆಂಟ್ ಪಡೆಯಲು ದಯವಿಟ್ಟು ರಿಫ್ರೆಶ್ ಮಾಡಿ. apps/frappe/frappe/core/doctype/communication/communication.js,Close,ಮುಚ್ಚಿ @@ -2789,10 +2834,12 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,ಈವೆಂಟ್ DocType: Social Login Key,Access Token URL,ಪ್ರವೇಶ ಟೋಕನ್ URL apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,ದಯವಿಟ್ಟು ನಿಮ್ಮ ಸೈಟ್ ಸಂರಚನೆಯಲ್ಲಿ ಡ್ರಾಪ್ಬಾಕ್ಸ್ ಪ್ರವೇಶ ಕೀಲಿಗಳನ್ನು ಹೊಂದಿಸಿ +DocType: Google Contacts,Google Contacts,Google ಸಂಪರ್ಕಗಳು DocType: User,Reset Password Key,ಪಾಸ್ವರ್ಡ್ ಕೀ ಮರುಹೊಂದಿಸಿ apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,ಮಾರ್ಪಡಿಸಲಾಗಿದೆ DocType: User,Bio,ಬಯೋ apps/frappe/frappe/limits.py,"To renew, {0}.","ನವೀಕರಿಸಲು, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,ಯಶಸ್ವಿಯಾಗಿ ಉಳಿಸಲಾಗಿದೆ DocType: File,Folder,ಫೋಲ್ಡರ್ DocType: DocField,Perm Level,ಪೆರ್ಮ್ ಲೆವೆಲ್ DocType: Print Settings,Page Settings,ಪುಟ ಸೆಟ್ಟಿಂಗ್ಗಳು @@ -2822,6 +2869,7 @@ DocType: Workflow State,remove-sign,ತೆಗೆದುಹಾಕುವುದು DocType: Dashboard Chart,Full,ಪೂರ್ಣ DocType: DocType,User Cannot Create,ಬಳಕೆದಾರ ರಚಿಸಲಾಗುವುದಿಲ್ಲ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,ನೀವು {0} ಪಾಯಿಂಟ್ ಪಡೆದುಕೊಂಡಿದ್ದೀರಿ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,ಸೆಟಪ್> ಬಳಕೆದಾರ DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","ನೀವು ಇದನ್ನು ಹೊಂದಿಸಿದರೆ, ಆಯ್ಕೆಮಾಡಿದ ಪೋಷಕರ ಅಡಿಯಲ್ಲಿ ಈ ಐಟಂ ಡ್ರಾಪ್-ಡೌನ್ನಲ್ಲಿ ಬರುತ್ತದೆ." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,ಯಾವುದೇ ಇಮೇಲ್ಗಳಿಲ್ಲ apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,ಕೆಳಗಿನ ಕ್ಷೇತ್ರಗಳು ಕಾಣೆಯಾಗಿವೆ: @@ -2835,13 +2883,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,ಕ DocType: Web Form,Web Form Fields,ವೆಬ್ ಫಾರ್ಮ್ ಫೀಲ್ಡ್ಸ್ DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,ವೆಬ್ಸೈಟ್ನಲ್ಲಿ ಬಳಕೆದಾರ ಸಂಪಾದಿಸಬಹುದಾದ ರೂಪ. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,ಶಾಶ್ವತವಾಗಿ ರದ್ದುಮಾಡಿ {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,ಶಾಶ್ವತವಾಗಿ ರದ್ದುಮಾಡಿ {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,ಆಯ್ಕೆ 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,ಒಟ್ಟು apps/frappe/frappe/utils/password_strength.py,This is a very common password.,ಇದು ತುಂಬಾ ಸಾಮಾನ್ಯ ಪಾಸ್ವರ್ಡ್ ಆಗಿದೆ. DocType: Personal Data Deletion Request,Pending Approval,ಒಪ್ಪಿಗೆಗಾಗಿ ಕಾದಿರುವ apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,ಡಾಕ್ಯುಮೆಂಟ್ ಅನ್ನು ಸರಿಯಾಗಿ ನಿಗದಿಪಡಿಸಲಾಗಲಿಲ್ಲ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{0} ಗೆ ಅನುಮತಿಸಲಾಗಿಲ್ಲ: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,ತೋರಿಸಲು ಮೌಲ್ಯಗಳು ಇಲ್ಲ DocType: Personal Data Download Request,Personal Data Download Request,ವೈಯಕ್ತಿಕ ಡೇಟಾ ಡೌನ್ಲೋಡ್ ವಿನಂತಿ apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} ಈ ಡಾಕ್ಯುಮೆಂಟ್ {1} ನೊಂದಿಗೆ ಹಂಚಿಕೊಂಡಿದೆ apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},{0} ಆಯ್ಕೆಮಾಡಿ @@ -2857,7 +2906,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},ಈ ಇಮೇಲ್ ಅನ್ನು {0} ಗೆ ಕಳುಹಿಸಲಾಗಿದೆ ಮತ್ತು {1} ಗೆ ನಕಲು ಮಾಡಲಾಗಿದೆ apps/frappe/frappe/email/smtp.py,Invalid login or password,ಅಮಾನ್ಯ ಲಾಗಿನ್ ಅಥವಾ ಪಾಸ್ವರ್ಡ್ DocType: Social Login Key,Social Login Key,ಸಾಮಾಜಿಕ ಲಾಗಿನ್ ಕೀ -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,ದಯವಿಟ್ಟು ಸೆಟಪ್> ಇಮೇಲ್> ಇಮೇಲ್ ಖಾತೆಯಿಂದ ಡೀಫಾಲ್ಟ್ ಇಮೇಲ್ ಖಾತೆಯನ್ನು ಹೊಂದಿಸಿ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,ಫಿಲ್ಟರ್ಗಳು ಉಳಿಸಲಾಗಿದೆ DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","ಈ ಕರೆನ್ಸಿ ಅನ್ನು ಹೇಗೆ ಫಾರ್ಮಾಟ್ ಮಾಡಬೇಕು? ಹೊಂದಿಸದೆ ಇದ್ದಲ್ಲಿ, ಸಿಸ್ಟಮ್ ಡೀಫಾಲ್ಟ್ಗಳನ್ನು ಬಳಸುತ್ತದೆ" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} ಅನ್ನು ರಾಜ್ಯಕ್ಕೆ ಹೊಂದಿಸಲಾಗಿದೆ {2} @@ -2982,6 +3030,7 @@ DocType: User,Location,ಸ್ಥಳ apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,ಮಾಹಿತಿ ಇಲ್ಲ DocType: Website Meta Tag,Website Meta Tag,ವೆಬ್ಸೈಟ್ ಮೆಟಾ ಟ್ಯಾಗ್ DocType: Workflow State,film,ಚಲನಚಿತ್ರ +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,ಕ್ಲಿಪ್‌ಬೋರ್ಡ್‌ಗೆ ನಕಲಿಸಲಾಗಿದೆ. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} ಸೆಟ್ಟಿಂಗ್ಗಳು ಕಂಡುಬಂದಿಲ್ಲ apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,ಲೇಬಲ್ ಕಡ್ಡಾಯವಾಗಿದೆ DocType: Webhook,Webhook Headers,ವೆಬ್ಹುಕ್ ಹೆಡರ್ಸ್ @@ -3190,7 +3239,7 @@ DocType: Address,Address Line 1,ವಿಳಾಸ ಸಾಲು 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,ಡಾಕ್ಯುಮೆಂಟ್ ಪ್ರಕಾರಕ್ಕಾಗಿ apps/frappe/frappe/model/base_document.py,Data missing in table,ಡೇಟಾದಲ್ಲಿ ಡೇಟಾ ಇಲ್ಲ apps/frappe/frappe/utils/bot.py,Could not identify {0},{0} ಗುರುತಿಸಲಾಗಲಿಲ್ಲ -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,ನೀವು ಲೋಡ್ ಮಾಡಿದ ನಂತರ ಈ ಫಾರ್ಮ್ ಅನ್ನು ಮಾರ್ಪಡಿಸಲಾಗಿದೆ +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,ನೀವು ಲೋಡ್ ಮಾಡಿದ ನಂತರ ಈ ಫಾರ್ಮ್ ಅನ್ನು ಮಾರ್ಪಡಿಸಲಾಗಿದೆ apps/frappe/frappe/www/login.html,Back to Login,ಲಾಗಿನ್ಗೆ ಹಿಂತಿರುಗಿ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,ಹೊಂದಿಸಿಲ್ಲ DocType: Data Migration Mapping,Pull,ಪುಲ್ @@ -3258,6 +3307,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,ಚೈಲ್ಡ್ apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,ಇಮೇಲ್ ಖಾತೆ ಸೆಟಪ್ ದಯವಿಟ್ಟು ನಿಮ್ಮ ಪಾಸ್ವರ್ಡ್ ಅನ್ನು ನಮೂದಿಸಿ: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,ಒಂದು ವಿನಂತಿಯಲ್ಲಿ ಬಹಳಷ್ಟು ಮಂದಿ ಬರೆಯುತ್ತಾರೆ. ದಯವಿಟ್ಟು ಚಿಕ್ಕ ವಿನಂತಿಗಳನ್ನು ಕಳುಹಿಸಿ DocType: Social Login Key,Salesforce,ಸೇಲ್ಸ್ಫೋರ್ಸ್ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{1} ರಲ್ಲಿ {0} ಆಮದು ಮಾಡಲಾಗುತ್ತಿದೆ DocType: User,Tile,ಟೈಲ್ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} ಕೋಣೆಗೆ ಕನಿಷ್ಠ ಒಂದು ಬಳಕೆದಾರ ಇರಬೇಕು. DocType: Email Rule,Is Spam,ಸ್ಪ್ಯಾಮ್ ಆಗಿದೆ @@ -3295,7 +3345,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,ಫೋಲ್ಡರ್ ಹತ್ತಿರ DocType: Data Migration Run,Pull Update,ಪುಲ್ ಅಪ್ಡೇಟ್ apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},{0} ಅನ್ನು {1} ಗೆ ವಿಲೀನಗೊಳಿಸಲಾಗಿದೆ -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

DocType: SMS Settings,Enter url parameter for receiver nos,ರಿಸೀವರ್ ನೋಸ್ಗಾಗಿ url ನಿಯತಾಂಕವನ್ನು ನಮೂದಿಸಿ apps/frappe/frappe/utils/jinja.py,Syntax error in template,ಟೆಂಪ್ಲೆಟ್ನಲ್ಲಿ ಸಿಂಟ್ಯಾಕ್ಸ್ ದೋಷ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,ವರದಿ ಫಿಲ್ಟರ್ ಟೇಬಲ್ನಲ್ಲಿ ಫಿಲ್ಟರ್ಗಳ ಮೌಲ್ಯವನ್ನು ದಯವಿಟ್ಟು ಹೊಂದಿಸಿ. @@ -3308,6 +3357,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","ಕ್ಷ DocType: System Settings,In Days,ದಿನಗಳಲ್ಲಿ DocType: Report,Add Total Row,ಒಟ್ಟು ಸಾಲು ಸೇರಿಸಿ apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,ಸೆಷನ್ ಪ್ರಾರಂಭ ವಿಫಲವಾಗಿದೆ +DocType: Translation,Verified,ಪರಿಶೀಲಿಸಲಾಗಿದೆ DocType: Print Format,Custom HTML Help,ಕಸ್ಟಮ್ HTML ಸಹಾಯ DocType: Address,Preferred Billing Address,ಇಷ್ಟವಾದ ಬಿಲ್ಲಿಂಗ್ ವಿಳಾಸ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,ನಿಯೋಜಿಸಲಾಗಿದೆ @@ -3322,7 +3372,6 @@ DocType: Help Article,Intermediate,ಮಧ್ಯಂತರ DocType: Module Def,Module Name,ಮಾಡ್ಯೂಲ್ ಹೆಸರು DocType: OAuth Authorization Code,Expiration time,ಮುಕ್ತಾಯ ಸಮಯ apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","ಪೂರ್ವನಿಯೋಜಿತ ಸ್ವರೂಪ, ಪುಟದ ಗಾತ್ರ, ಮುದ್ರಣ ಶೈಲಿಯನ್ನು ಹೊಂದಿಸಿ." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,ನೀವು ರಚಿಸಿದ ಏನಾದರೂ ನಿಮಗೆ ಇಷ್ಟವಾಗುವುದಿಲ್ಲ DocType: System Settings,Session Expiry,ಸೆಷನ್ ಅವಧಿ DocType: DocType,Auto Name,ಆಟೋ ಹೆಸರು apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,ಲಗತ್ತುಗಳನ್ನು ಆಯ್ಕೆಮಾಡಿ @@ -3350,6 +3399,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,ಸಿಸ್ಟಮ್ ಪುಟ DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,ಗಮನಿಸಿ: ವಿಫಲವಾದ ಬ್ಯಾಕ್ಅಪ್ಗಳಿಗಾಗಿ ಡೀಫಾಲ್ಟ್ ಇಮೇಲ್ಗಳ ಮೂಲಕ ಕಳುಹಿಸಲಾಗುತ್ತದೆ. DocType: Custom DocPerm,Custom DocPerm,ಕಸ್ಟಮ್ ಡಾಕ್ಪರ್ಮ +DocType: Translation,PR sent,ಪಿಆರ್ ಕಳುಹಿಸಲಾಗಿದೆ DocType: Tag Doc Category,Doctype to Assign Tags,ಟ್ಯಾಗ್ಗಳನ್ನು ನಿಯೋಜಿಸಲು ಡಾಕ್ಟೈಪ್ DocType: Address,Warehouse,ವೇರ್ಹೌಸ್ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,ಡ್ರಾಪ್ಬಾಕ್ಸ್ ಸೆಟಪ್ @@ -3417,7 +3467,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,ಕಾಮೆಂಟ್ ಸೇರಿಸಲು Ctrl + Enter apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,ಕ್ಷೇತ್ರ {0} ಅನ್ನು ಆಯ್ಕೆ ಮಾಡಲಾಗುವುದಿಲ್ಲ. DocType: User,Birth Date,ಹುಟ್ಟಿದ ದಿನಾಂಕ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,ಗುಂಪು ಇಂಡೆಂಟೇಷನ್ ಜೊತೆ DocType: List View Setting,Disable Count,ಕೌಂಟ್ ಅನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ DocType: Contact Us Settings,Email ID,ಇಮೇಲ್ ID apps/frappe/frappe/utils/password.py,Incorrect User or Password,ತಪ್ಪಾದ ಬಳಕೆದಾರ ಅಥವಾ ಪಾಸ್ವರ್ಡ್ @@ -3452,6 +3501,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,ಬಳಕೆದಾರರಿಗೆ ಈ ಪಾತ್ರವು ಬಳಕೆದಾರರ ಅನುಮತಿಗಳನ್ನು ನವೀಕರಿಸುತ್ತದೆ DocType: Website Theme,Theme,ಥೀಮ್ DocType: Web Form,Show Sidebar,ಪಾರ್ಶ್ವಪಟ್ಟಿ ತೋರಿಸಿ +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google ಸಂಪರ್ಕಗಳ ಏಕೀಕರಣ. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,ಡೀಫಾಲ್ಟ್ ಇನ್ಬಾಕ್ಸ್ apps/frappe/frappe/www/login.py,Invalid Login Token,ಅಮಾನ್ಯ ಲಾಗಿನ್ ಟೋಕನ್ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,ಮೊದಲ ಹೆಸರನ್ನು ಹೊಂದಿಸಿ ಮತ್ತು ದಾಖಲೆಯನ್ನು ಉಳಿಸಿ. @@ -3479,7 +3529,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,ದಯವಿಟ್ಟು ಸರಿಪಡಿಸಿ DocType: Top Bar Item,Top Bar Item,ಟಾಪ್ ಬಾರ್ ಐಟಂ ,Role Permissions Manager,ಪಾತ್ರ ಅನುಮತಿಗಳ ನಿರ್ವಾಹಕ -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,ದೋಷಗಳು ಇದ್ದವು. ದಯವಿಟ್ಟು ಇದನ್ನು ವರದಿ ಮಾಡಿ. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ವರ್ಷ (ಗಳು) ಹಿಂದೆ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,ಸ್ತ್ರೀ DocType: System Settings,OTP Issuer Name,OTP ನೀಡುವವರ ಹೆಸರು apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,ಮಾಡಲು ಸೇರಿಸಿ @@ -3579,6 +3629,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","ಭಾ apps/frappe/frappe/model/document.py,none of,ಯಾವುದೂ ಇಲ್ಲ DocType: Desktop Icon,Page,ಪುಟ DocType: Workflow State,plus-sign,ಪ್ಲಸ್-ಸೈನ್ +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,ಸಂಗ್ರಹವನ್ನು ತೆರವುಗೊಳಿಸಿ ಮತ್ತು ಮರುಲೋಡ್ ಮಾಡಿ apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,ಅಪ್ಡೇಟ್ ಮಾಡಲಾಗುವುದಿಲ್ಲ: ತಪ್ಪಾದ / ಮುಕ್ತಾಯಗೊಂಡ ಲಿಂಕ್. DocType: Kanban Board Column,Yellow,ಹಳದಿ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),ಗ್ರಿಡ್ನಲ್ಲಿನ ಕ್ಷೇತ್ರಕ್ಕಾಗಿ ಕಾಲಮ್ಗಳ ಸಂಖ್ಯೆ (ಗ್ರಿಡ್ನಲ್ಲಿನ ಒಟ್ಟು ಕಾಲಮ್ಗಳು 11 ಕ್ಕಿಂತ ಕಡಿಮೆ ಇರಬೇಕು) @@ -3593,6 +3644,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,ಹ DocType: Activity Log,Date,ದಿನಾಂಕ DocType: Communication,Communication Type,ಸಂವಹನ ಕೌಟುಂಬಿಕತೆ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,ಪೋಷಕ ಪಟ್ಟಿ +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,ಪಟ್ಟಿಯನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,ಪೂರ್ಣ ದೋಷವನ್ನು ತೋರಿಸು ಮತ್ತು ಡೆವಲಪರ್ಗೆ ಸಮಸ್ಯೆಗಳ ವರದಿ ಮಾಡುವಿಕೆಯನ್ನು ಅನುಮತಿಸಿ DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3614,7 +3666,6 @@ DocType: Notification Recipient,Email By Role,ಪಾತ್ರದ ಮೂಲಕ apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,ದಯವಿಟ್ಟು {0} ಕ್ಕಿಂತ ಹೆಚ್ಚು ಚಂದಾದಾರರನ್ನು ಸೇರಿಸಲು ಅಪ್ಗ್ರೇಡ್ ಮಾಡಿ apps/frappe/frappe/email/queue.py,This email was sent to {0},ಈ ಇಮೇಲ್ ಅನ್ನು {0} DocType: User,Represents a User in the system.,ವ್ಯವಸ್ಥೆಯಲ್ಲಿ ಬಳಕೆದಾರನನ್ನು ಪ್ರತಿನಿಧಿಸುತ್ತದೆ. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},ಪುಟ {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,ಹೊಸ ಸ್ವರೂಪವನ್ನು ಪ್ರಾರಂಭಿಸಿ apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,ಕಾಮೆಂಟ್ ಸೇರಿಸಿ apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{1} ನ {0} diff --git a/frappe/translations/ko.csv b/frappe/translations/ko.csv index 53aa4db4c1..e954251e5d 100644 --- a/frappe/translations/ko.csv +++ b/frappe/translations/ko.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,그라디언트 사용 DocType: DocType,Default Sort Order,기본 정렬 순서 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,보고서의 숫자 필드 만 표시 +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,메뉴 및 사이드 바에서 추가 단축키를 실행하려면 Alt 키를 누릅니다. DocType: Workflow State,folder-open,폴더 열기 DocType: Customize Form,Is Table,표 apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,첨부 파일을 열 수 없습니다. CSV로 내보내기 했습니까? DocType: DocField,No Copy,복사 안함 DocType: Custom Field,Default Value,기본값 apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,추가는 수신 메일에 필수입니다. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,연락처 동기화 DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,데이터 마이그레이션 매핑 세부 정보 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,팔로우 해제 apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.","Raw Print"를 통한 PDF 인쇄는 아직 지원되지 않습니다. 프린터 설정에서 프린터 매핑을 제거하고 다시 시도하십시오. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} 및 {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,필터를 저장하는 중 오류가 발생했습니다. apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,비밀번호를 입력하십시오. apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,홈 및 첨부 파일 폴더를 삭제할 수 없습니다. +DocType: Email Account,Enable Automatic Linking in Documents,문서에서 자동 링크 사용 DocType: Contact Us Settings,Settings for Contact Us Page,연락처 페이지 설정 DocType: Social Login Key,Social Login Provider,소셜 로그인 공급자 +DocType: Email Account,"For more information, click here.","자세한 내용은 여기를 클릭하십시오 ." DocType: Transaction Log,Previous Hash,이전 해시 DocType: Notification,Value Changed,값 변경됨 DocType: Report,Report Type,보고서 유형 @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,에너지 포인트 규칙 apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,소셜 로그인을 사용하도록 설정하기 전에 클라이언트 ID를 입력하십시오. DocType: Communication,Has Attachment,첨부 파일 있음 DocType: User,Email Signature,전자 메일 서명 -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} 년 전 ,Addresses And Contacts,주소 및 연락처 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,이 Kanban Board는 비공개입니다. DocType: Data Migration Run,Current Mapping,현재 매핑 @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).",Sync Option을 ALL로 선택하면 서버에서 읽지 않은 모든 메시지와 읽지 않은 메시지가 다시 동기화됩니다. 이것은 또한 의사 소통 (이메일)의 중복을 일으킬 수 있습니다. apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},마지막 동기화 된 {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,헤더 내용을 변경할 수 없습니다. +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,제출 후 {0}을 (를) 변경할 수 없습니다. apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page",응용 프로그램이 새 버전으로 업데이트되었습니다.이 페이지를 새로 고침하십시오. DocType: User,User Image,사용자 이미지 @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},{0} ( apps/frappe/frappe/public/js/frappe/chat.js,Discard,포기 DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,최상의 결과를 위해 투명한 배경으로 약 150px의 이미지를 선택하십시오. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,재발 +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} 값이 선택되었습니다. DocType: Blog Post,Email Sent,보낸 이메일 DocType: Communication,Read by Recipient On,수신자가 읽음 DocType: User,Allow user to login only after this hour (0-24),이 시간 이후에만 사용자 로그인 허용 (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,내보낼 모듈 DocType: DocType,Fields,전지 -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,이 문서를 인쇄 할 수 없습니다. +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,이 문서를 인쇄 할 수 없습니다. apps/frappe/frappe/public/js/frappe/model/model.js,Parent,부모의 apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.",세션이 만료되었습니다. 계속하려면 다시 로그인하십시오. DocType: Assignment Rule,Priority,우선 순위 @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,OTP 비밀 재설 DocType: DocType,UPPER CASE,대문자 apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,이메일 주소를 설정하십시오. DocType: Communication,Marked As Spam,스팸으로 표시됨 +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Google 주소록을 동기화 할 이메일 주소입니다. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,구독자 가져 오기 apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,필터 저장 DocType: Address,Preferred Shipping Address,기본 배송지 주소 DocType: GCalendar Account,The name that will appear in Google Calendar,Google 캘린더에 표시 될 이름입니다. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,새로 고침 토큰을 생성하려면 {0}을 (를) 클릭하십시오. DocType: Email Account,Disable SMTP server authentication,SMTP 서버 인증 사용 안 함 DocType: Email Account,Total number of emails to sync in initial sync process ,초기 동기화 프로세스에서 동기화 할 전자 메일의 총 수 DocType: System Settings,Enable Password Policy,암호 정책 사용 @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,코드를 입력하세요 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,있음 없음 DocType: Auto Repeat,Start Date,시작 날짜 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,차트 설정 +DocType: Website Theme,Theme JSON,테마 JSON apps/frappe/frappe/www/list.py,My Account,내 계정 DocType: DocType,Is Published Field,게시 된 필드 DocType: DocField,Set non-standard precision for a Float or Currency field,Float 또는 Currency 필드에 대해 비표준 정밀도 설정 @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip : Reference: {{ reference_doctype }} {{ reference_name }} 추가 Reference: {{ reference_doctype }} {{ reference_name }} 은 문서 참조를 보냅니다. DocType: LDAP Settings,LDAP First Name Field,LDAP 이름 필드 apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,기본 발신 및받은 편지함 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,설정> 양식 사용자 정의 apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",업데이트의 경우 선택적 열만 업데이트 할 수 있습니다. apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1','확인'필드의 기본값은 '0'또는 '1'이어야합니다. apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,함께이 문서 공유 @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,도메인 HTML DocType: Blog Settings,Blog Settings,블로그 설정 apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DocType의 이름은 문자로 시작해야하며 문자, 숫자, 공백 및 밑줄로만 구성 될 수 있습니다." +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,설정> 사용자 권한 DocType: Communication,Integrations can use this field to set email delivery status,통합은이 필드를 사용하여 전자 메일 배달 상태를 설정할 수 있습니다. apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,스트라이프 결제 게이트웨이 설정 DocType: Print Settings,Fonts,글꼴 DocType: Notification,Channel,채널 DocType: Communication,Opened,열린 DocType: Workflow Transition,Conditions,정황 +apps/frappe/frappe/config/website.py,A user who posts blogs.,블로그를 게시하는 사용자. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,계정이 없습니까? 가입 apps/frappe/frappe/utils/file_manager.py,Added {0},추가 된 {0} DocType: Newsletter,Create and Send Newsletters,뉴스 레터 작성 및 보내기 DocType: Website Settings,Footer Items,꼬리말 항목 +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,설정> 이메일> 이메일 계정에서 기본 이메일 계정을 설정하십시오. DocType: Website Slideshow Item,Website Slideshow Item,웹 사이트 슬라이드 쇼 항목 apps/frappe/frappe/config/integrations.py,Register OAuth Client App,OAuth 클라이언트 앱 등록 DocType: Error Snapshot,Frames,프레임 @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.",레벨 0은. 서 레벨 권한 용이고 필드 레벨 권한 용 상위 레벨입니다. DocType: Address,City/Town,도시 / 마을 DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?",그러면 현재 테마가 재설정되며 계속 하시겠습니까? apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},{0}에 필수 입력란 필요 apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},이메일 계정 {0}에 연결하는 동안 오류가 발생했습니다. apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,되풀이를 만드는 동안 오류가 발생했습니다. @@ -528,7 +537,7 @@ DocType: Event,Event Category,이벤트 카테고리 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,다음을 기반으로하는 열 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,제목 편집 DocType: Communication,Received,받은 -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,이 페이지에 액세스하는 것은 허용되지 않습니다. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,이 페이지에 액세스하는 것은 허용되지 않습니다. DocType: User Social Login,User Social Login,사용자 소셜 로그인 apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,이 파일이 저장된 폴더에 Python 파일을 작성하고 열과 결과를 반환하십시오. DocType: Contact,Purchase Manager,구매 관리자 @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,차 apps/frappe/frappe/utils/data.py,Operator must be one of {0},연산자는 {0} 중 하나 여야합니다. apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,소유자 인 경우 DocType: Data Migration Run,Trigger Name,트리거 이름 -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,블로그에 제목 및 소개를 작성하십시오. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,필드 삭제 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,모든 축소 apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,배경색 @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,바 DocType: SMS Settings,Enter url parameter for message,메시지에 url 매개 변수를 입력하십시오. apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,새 사용자 정의 인쇄 형식 apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1}은 (는) 이미 존재합니다. +DocType: Workflow Document State,Is Optional State,선택적 상태입니다. DocType: Address,Purchase User,구매 사용자 DocType: Data Migration Run,Insert,끼워 넣다 DocType: Web Form,Route to Success Link,성공 링크로 연결 @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,사용 DocType: File,Is Home Folder,홈 폴더 apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,유형: DocType: Post,Is Pinned,고정됨 -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},'{0}'{1}에 대한 권한이 없습니다. +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},'{0}'{1}에 대한 권한이 없습니다. DocType: Patch Log,Patch Log,패치 로그 DocType: Print Format,Print Format Builder,인쇄 포맷 빌더 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",활성화 된 경우 모든 사용자는 Two Factor Auth를 사용하여 모든 IP 주소에서 로그인 할 수 있습니다. 사용자 페이지의 특정 사용자에 대해서만 설정할 수도 있습니다. apps/frappe/frappe/utils/data.py,only.,만. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,조건 '{0}'이 (가) 유효하지 않습니다. DocType: Auto Email Report,Day of Week,요일 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Google 설정에서 Google API를 사용하도록 설정합니다. DocType: DocField,Text Editor,텍스트 에디터 apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,절단 apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,명령 검색 또는 입력 @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,DB 백업 수는 1보다 작을 수 없습니다. DocType: Workflow State,ban-circle,금지 원 DocType: Data Export,Excel,뛰어나다 +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","헤더, 빵 부스러기 및 메타 태그" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,지원 이메일 주소가 지정되지 않았습니다. DocType: Comment,Published,게시 됨 DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.",참고 : 최상의 결과를 얻으려면 이미지의 크기가 동일해야하며 폭은 높이보다 커야합니다. @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,스케줄러 마지막 이벤트 apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,모든 문서 공유 보고서 DocType: Website Sidebar Item,Website Sidebar Item,웹 사이트 사이드 바 항목 apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,할 것 +DocType: Google Settings,Google Settings,Google 설정 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","국가, 시간대 및 통화 선택" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","여기에 정적 URL 매개 변수를 입력하십시오 (예 : sender = ERPNext, username = ERPNext, password = 1234 등)." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,이메일 계정 없음 @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth 무기명 토큰 ,Setup Wizard,설치 마법사 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,차트 전환 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,동기화 중 DocType: Data Migration Run,Current Mapping Action,현재 매핑 작업 DocType: Email Account,Initial Sync Count,초기 동기화 횟수 apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,문의하기 페이지 설정. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,인쇄 형식 유형 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,이 기준에 대한 사용 권한이 설정되지 않았습니다. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,모두 확장 +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,기본 주소 템플릿이 없습니다. 설정> 인쇄 및 브랜딩> 주소 템플릿에서 새 것을 만드십시오. DocType: Tag Doc Category,Tag Doc Category,태그 닥 카테고리 DocType: Data Import,Generated File,생성 된 파일 apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,노트 @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,타임 라인 필드는 링크 또는 동적 링크 여야합니다. DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,알림 및 대량 메일은 발신 서버에서 전송됩니다. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,이것은 상위 100 개의 공통 암호입니다. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,{0}을 영구적으로 제출 하시겠습니까? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,{0}을 영구적으로 제출 하시겠습니까? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge",{0} {1}이 (가) 존재하지 않으므로 병합 할 새 대상을 선택하십시오. DocType: Energy Point Rule,Multiplier Field,배율기 필드 DocType: Workflow,Workflow State Field,워크 플로 상태 필드 @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0}이 (가) {1}에 대한 귀하의 노력을 {2} 점으로 평가했습니다. DocType: Auto Email Report,Zero means send records updated at anytime,0은 언제든지 레코드를 업데이트 함을 의미합니다. apps/frappe/frappe/model/document.py,Value cannot be changed for {0},{0}의 값을 변경할 수 없습니다. +apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API 설정. DocType: System Settings,Force User to Reset Password,사용자가 암호를 다시 설정하도록 강요하십시오 apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,보고서 작성기 보고서는 보고서 작성기에서 직접 관리합니다. 할 것이 없다. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,필터 편집 @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,그 DocType: S3 Backup Settings,eu-north-1,서북 1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0} : 동일한 역할, 레벨 및 {1}에 대해 하나의 규칙 만 허용되었습니다." apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,이 웹 양식 문서를 업데이트 할 수 없습니다. -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,이 레코드의 최대 첨부 파일 한도에 도달했습니다. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,이 레코드의 최대 첨부 파일 한도에 도달했습니다. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,참조 커뮤니케이션 문서가 순환 링크되지 않았는지 확인하십시오. DocType: DocField,Allow in Quick Entry,빠른 입력 허용 DocType: Error Snapshot,Locals,지역 주민 @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,예외 유형 apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},{0} {1}이 (가) {2} {3} {4}에 연결되어있어 삭제하거나 취소 할 수 없습니다. apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTP 암호는 관리자 만 재설정 할 수 있습니다. -DocType: Web Form Field,Page Break,페이지 나누기 DocType: Website Script,Website Script,웹 사이트 스크립트 DocType: Integration Request,Subscription Notification,구독 알림 DocType: DocType,Quick Entry,빠른 입력 @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,경고 후 속성 설정 apps/frappe/frappe/__init__.py,Thank you,고맙습니다 apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,내부 통합을위한 Webhooks의 여유 apps/frappe/frappe/config/settings.py,Import Data,데이터 가져 오기 +DocType: Translation,Contributed Translation Doctype Name,제공된 번역 Doctype 이름 DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,신분증 DocType: Review Level,Review Level,검토 수준 @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,성공적으로 완료되었습니다. apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} 목록 apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,고맙다 -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),새로운 {0} (Ctrl + B) DocType: Contact,Is Primary Contact,기본 연락처 DocType: Print Format,Raw Commands,원시 명령 apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,인쇄 형식 스타일 시트 @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,백그라운드 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},{1}에서 {0}을 (를) 찾으십시오. DocType: Email Account,Use SSL,SSL 사용 DocType: DocField,In Standard Filter,표준 필터에서 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,동기화 할 Google 주소록이 없습니다. DocType: Data Migration Run,Total Pages,총 페이지 수 apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0} : 필드 '{1}'이 고유하지 않은 값을 가지기 때문에 고유로 설정할 수 없습니다. DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.",사용하도록 설정하면 로그인 할 때마다 사용자에게 알림이 전송됩니다. 사용하도록 설정하지 않으면 사용자에게 한 번만 알립니다. @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,오토메이션 apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,파일 압축 해제 중 ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}','{0}'검색 apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,문제가 발생했습니다. -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,첨부하기 전에 보관하십시오. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,첨부하기 전에 보관하십시오. DocType: Version,Table HTML,표 HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,바퀴통 DocType: Page,Standard,표준 @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,결과 없 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} 개의 레코드가 삭제되었습니다. apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,보관 용 계정 액세스 토큰을 생성하는 동안 문제가 발생했습니다. 자세한 내용은 오류 로그를 확인하십시오. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,자손의 -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,기본 주소 템플릿이 없습니다. 설정> 인쇄 및 브랜딩> 주소 템플릿에서 새 것을 만드십시오. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google 연락처가 구성되었습니다. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,세부 정보 숨기기 apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,글꼴 스타일 apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,구독은 {0}에 만료됩니다. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},전자 메일 계정 {0}에서 전자 메일을받는 동안 인증에 실패했습니다. 서버의 메시지 : {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),지난 주 실적 ({0}에서 {1}까지)에 기반한 통계 +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,자동 연결은 수신이 활성화 된 경우에만 활성화 할 수 있습니다. DocType: Website Settings,Title Prefix,제목 접두사 apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,인증 응용 프로그램은 다음과 같습니다. DocType: Bulk Update,Max 500 records at a time,한 번에 최대 500 개의 레코드 @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,보고서 필터 apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,열 선택 DocType: Event,Participants,참가자 DocType: Auto Repeat,Amended From,수정 된 날짜 -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,귀하의 정보가 제출되었습니다. +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,귀하의 정보가 제출되었습니다. DocType: Help Category,Help Category,도움말 카테고리 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 개월 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,편집 할 기존 형식을 선택하거나 새 형식을 시작하십시오. @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,추적 할 필드 DocType: User,Generate Keys,키 생성 DocType: Comment,Unshared,비공개 -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,저장 됨 +DocType: Translation,Saved,저장 됨 DocType: OAuth Client,OAuth Client,OAuth 클라이언트 DocType: System Settings,Disable Standard Email Footer,표준 이메일 바닥 글 사용 중지 apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,인쇄 형식 {0}이 (가) 사용 중지되었습니다. @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,마지막 업 DocType: Data Import,Action,동작 apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,클라이언트 키가 필요합니다. DocType: Chat Profile,Notifications,알림 +DocType: Translation,Contributed,기여한 DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy DocType: Report,Custom Report,맞춤 보고서 DocType: Workflow State,info-sign,정보 표시 @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,접촉 DocType: LDAP Settings,LDAP Username Field,LDAP 사용자 이름 필드 apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",고유하지 않은 기존 값이 있으므로 {1}에서 {0} 필드를 고유 한 것으로 설정할 수 없습니다. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,설정> 양식 사용자 정의 DocType: User,Social Logins,소셜 로그인 DocType: Workflow State,Trash,폐물 DocType: Stripe Settings,Secret Key,비밀 키 @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,제목 입력란 apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,보내는 전자 메일 서버에 연결할 수 없습니다. DocType: File,File URL,파일 URL DocType: Help Article,Likes,좋아요 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google 주소록 통합이 사용 중지되었습니다. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,백업에 액세스하려면 로그인하고 System Manager 역할이 있어야합니다. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,1 급 DocType: Blogger,Short Name,짧은 이름 @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,우편 번호 가져 오기 DocType: Contact,Gender,성별 DocType: Workflow State,thumbs-down,엄지 아래로 -DocType: Web Page,SEO,서재응 apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},대기열은 {0} 중 하나 여야합니다. apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},문서 유형 {0}에 대한 알림을 설정할 수 없습니다. apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,적어도 하나의 시스템 관리자가 있어야하므로이 사용자에게 시스템 관리자 추가 apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,환영 전자 메일을 보냈습니다. DocType: Transaction Log,Chaining Hash,체이닝 해시 DocType: Contact,Maintenance Manager,유지 보수 관리자 +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","비교를 위해> 5, <10 또는 = 324를 사용하십시오. 범위의 경우 5시 10 분 (5와 10 사이의 값에 대해)을 사용하십시오." apps/frappe/frappe/utils/bot.py,show,보여 주다 apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,공유 URL apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,지원되지 않는 파일 형식 @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,공고 DocType: Data Import,Show only errors,오류 만 표시 DocType: Energy Point Log,Review,리뷰 apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,제거 된 행 -DocType: GSuite Settings,Google Credentials,Google 자격증 명 +DocType: Google Settings,Google Credentials,Google 자격증 명 apps/frappe/frappe/www/login.html,Or login with,또는으로 로그인 apps/frappe/frappe/model/document.py,Record does not exist,레코드가 존재하지 않습니다. apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,새 보고서 이름 @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,명부 DocType: Workflow State,th-large,th-large apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0} : 제출 가능하지 않으면 할당 제출을 설정할 수 없습니다. apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,모든 레코드에 연결되지 않음 +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZ 트레이 응용 프로그램에 연결하는 중 오류가 발생했습니다 ...

Raw Print 기능을 사용하려면 QZ 트레이 응용 프로그램을 설치하고 실행해야합니다.

QZ 트레이를 다운로드하여 설치하려면 여기를 클릭하십시오 .
Raw Printing에 대한 자세한 내용을 보려면 여기를 클릭하십시오 ." DocType: Chat Message,Content,함유량 DocType: Workflow Transition,Allow Self Approval,자체 승인 허용 apps/frappe/frappe/www/qrcode.py,Page has expired!,페이지가 만료되었습니다. @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,오른 손잡이 DocType: Website Settings,Banner is above the Top Menu Bar.,배너가 톱 메뉴 바 위에 있습니다. apps/frappe/frappe/www/update-password.html,Invalid Password,잘못된 비밀번호 apps/frappe/frappe/utils/data.py,1 month ago,1 개월 전 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Google 주소록 액세스 허용 DocType: OAuth Client,App Client ID,앱 클라이언트 ID DocType: DocField,Currency,통화 DocType: Website Settings,Banner,기치 @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,골 DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.",역할에 수준 0의 액세스 권한이없는 경우 상위 수준은 의미가 없습니다. DocType: ToDo,Reference Type,참조 유형 -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DocType, DocType 허용. 조심해!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","DocType, DocType 허용. 조심해!" DocType: Domain Settings,Domain Settings,도메인 설정 DocType: Auto Email Report,Dynamic Report Filters,동적 보고서 필터 DocType: Energy Point Log,Appreciation,감사 @@ -1468,6 +1489,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,우리 - 서쪽 -2 DocType: DocType,Is Single,싱글 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,새 형식 만들기 +DocType: Google Contacts,Authorize Google Contacts Access,Google 주소록 액세스 권한 부여 DocType: S3 Backup Settings,Endpoint URL,엔드 포인트 URL DocType: Social Login Key,Google,Google DocType: Contact,Department,학과 @@ -1482,7 +1504,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,할당 대상 DocType: List Filter,List Filter,목록 필터 DocType: Dashboard Chart Link,Chart,차트 apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,제거 할 수 없음 -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,확인을 위해이 문서를 제출하십시오. +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,확인을 위해이 문서를 제출하십시오. apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0}이 (가) 이미 있습니다. 다른 이름 선택 apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,이 양식에 변경 사항을 저장하지 않았습니다. 계속하기 전에 저장하십시오. apps/frappe/frappe/model/document.py,Action Failed,작업 실패 @@ -1564,6 +1586,7 @@ DocType: DocField,Display,디스플레이 apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,모든 응답 DocType: Calendar View,Subject Field,제목 필드 apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},세션 만기는 {0} 형식이어야합니다. +apps/frappe/frappe/model/workflow.py,Applying: {0},적용 : {0} DocType: Workflow State,zoom-in,확대 apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,서버에 연결하지 못했습니다 apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},{0} 날짜는 {1} 형식이어야합니다. @@ -1575,8 +1598,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,버튼에 아이콘이 나타납니다. DocType: Role Permission for Page and Report,Set Role For,설정 역할 +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,자동 연결은 하나의 전자 메일 계정에 대해서만 활성화 할 수 있습니다. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,지정된 이메일 계정 없음 +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,이메일 계정이 설정되지 않았습니다. 설정> 이메일> 이메일 계정에서 새 이메일 계정을 만드십시오. apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,할당 +DocType: Google Contacts,Last Sync On,마지막 동기화 apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},자동 규칙 {1}을 (를) 통해 {0}에 의해 획득되었습니다. apps/frappe/frappe/config/website.py,Portal,문 apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,이메일을 보내 주셔서 감사합니다 @@ -1597,7 +1623,6 @@ DocType: GSuite Settings,GSuite Settings,GSuite 설정 DocType: Integration Request,Remote,먼 DocType: File,Thumbnail URL,미리보기 이미지 URL apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,보고서 다운로드 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,설정> 사용자 apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},{0}의 사용자 정의를 내 보낸 위치 :
{1} DocType: GCalendar Account,Calendar Name,캘린더 이름 apps/frappe/frappe/templates/emails/new_user.html,Your login id is,로그인 ID : @@ -1647,6 +1672,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},{0} ( apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,이미지 필드는 유효한 필드 이름이어야합니다. apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,이 페이지에 액세스하려면 로그인해야합니다. DocType: Assignment Rule,Example: {{ subject }},예 : {{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,필드 이름 {0}이 (가) 제한되어 있습니다. apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},{0} 필드에 대해 '읽기 전용'을 설정 해제 할 수 없습니다. DocType: Social Login Key,Enable Social Login,소셜 로그인 사용 DocType: Workflow,Rules defining transition of state in the workflow.,워크 플로우의 상태 전이를 정의하는 규칙. @@ -1667,10 +1693,10 @@ DocType: Website Settings,Route Redirects,경로 리디렉션 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,이메일받은 편지함 apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},{0}을 (를) {1} (으)로 복원했습니다. DocType: Assignment Rule,Automatically Assign Documents to Users,사용자에게 문서 자동 할당 +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,신난다 열기 apps/frappe/frappe/config/settings.py,Email Templates for common queries.,공통 검색어에 대한 이메일 템플릿. DocType: Letter Head,Letter Head Based On,편지 머리 기준 apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,이 창을 닫으십시오. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,지불 완료 DocType: Contact,Designation,지정 DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,메타 태그 @@ -1709,6 +1735,7 @@ DocType: System Settings,Choose authentication method to be used by all users, DocType: Error Snapshot,Parent Error Snapshot,상위 오류 스냅 샷 DocType: GCalendar Account,GCalendar Account,GCalendar 계정 DocType: Language,Language Name,언어 이름 +DocType: Workflow Document State,Workflow Action is not created for optional states,선택적 상태에 대해 워크 플로 작업이 만들어지지 않습니다. DocType: Customize Form,Customize Form,양식 사용자 정의 DocType: DocType,Image Field,이미지 필드 apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),추가 된 {0} ({1}) @@ -1750,6 +1777,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,사용자가 소유자 인 경우이 규칙 적용 DocType: About Us Settings,Org History Heading,조직도 제목 apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,서버 오류 +DocType: Contact,Google Contacts Description,Google 주소록 설명 apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,표준 역할의 이름을 바꿀 수 없습니다. DocType: Review Level,Review Points,리뷰 포인트 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,누락 된 매개 변수 Kanban 보드 이름 @@ -1767,7 +1795,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,개발자 모드가 아닙니다! site_config.json에서 설정하거나 'Custom'DocType을 만듭니다. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,얻은 {0} 점 DocType: Web Form,Success Message,성공 메시지 -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","비교를 위해> 5, <10 또는 = 324를 사용하십시오. 범위의 경우 5시 10 분 (5와 10 사이의 값에 대해)을 사용하십시오." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",일반 텍스트로 표시된 페이지를 몇 줄만 나열하는 설명입니다. (최대 140 자) apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,권한 표시 DocType: DocType,Restrict To Domain,도메인으로 제한 @@ -1789,6 +1816,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,조상 apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,수량 설정 DocType: Auto Repeat,End Date,종료일 DocType: Workflow Transition,Next State,다음 주 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Google 연락처가 동기화되었습니다. DocType: System Settings,Is First Startup,첫 번째 시동인가? apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},{0} (으)로 업데이트되었습니다. apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,이동 @@ -1838,6 +1866,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} 일정 apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,데이터 가져 오기 템플릿 DocType: Workflow State,hand-left,왼손잡이 +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,여러 목록 항목 선택 apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,백업 크기 : apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},{0}과 (과) 연결됨 DocType: Braintree Settings,Private Key,비공개 키 @@ -1879,13 +1908,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,관심 DocType: Bulk Update,Limit,한도 DocType: Print Settings,Print taxes with zero amount,세금없이 금액을 인쇄하십시오. -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,이메일 계정이 설정되지 않았습니다. 설정> 이메일> 이메일 계정에서 새 이메일 계정을 만드십시오. DocType: Workflow State,Book,책 DocType: S3 Backup Settings,Access Key ID,액세스 키 ID DocType: Chat Message,URLs,URL apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,이름과 성 자체는 쉽게 추측 할 수 있습니다. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},보고서 {0} DocType: About Us Settings,Team Members Heading,팀원 표제 +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,목록 항목 선택 apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},{0} 문서가 {2}에 의해 {1} (으)로 설정되었습니다. DocType: Address Template,Address Template,주소 템플릿 DocType: Workflow State,step-backward,한 걸음 뒤로 @@ -1909,6 +1938,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,사용자 정의 권한 내보내기 apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,없음 : 워크 플로우 종료 DocType: Version,Version,번역 +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,목록 항목 열기 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 개월 DocType: Chat Message,Group,그룹 apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},파일 url에 문제가 있습니다 : {0} @@ -1964,6 +1994,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,일년 apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0}이 (가) {1}에 점수를 되돌 렸습니다. DocType: Workflow State,arrow-down,화살 아래로 DocType: Data Import,Ignore encoding errors,인코딩 오류 무시 +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,경치 DocType: Letter Head,Letter Head Name,편지 머리 이름 DocType: Web Form,Client Script,클라이언트 스크립트 DocType: Assignment Rule,Higher priority rule will be applied first,우선 순위가 높은 규칙이 먼저 적용됩니다. @@ -2008,6 +2039,7 @@ DocType: Kanban Board Column,Green,녹색 apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,새 레코드에는 필수 입력란 만 필요합니다. 필요한 경우 필수가 아닌 열을 삭제할 수 있습니다. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0}은 문자로 시작하고 끝나야하며 문자, 하이픈 또는 밑줄 만 포함 할 수 있습니다." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,트리거 기본 동작 apps/frappe/frappe/core/doctype/user/user.js,Create User Email,사용자 이메일 만들기 apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,정렬 필드 {0}은 (는) 유효한 필드 이름이어야합니다. DocType: Auto Email Report,Filter Meta,필터 메타 @@ -2037,6 +2069,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,타임 라인 필드 apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,로드 중 ... DocType: Auto Email Report,Half Yearly,반년마다 +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,내 프로필 apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,최종 수정일 DocType: Contact,First Name,이름 DocType: Post,Comments,코멘트 @@ -2059,6 +2092,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,콘텐츠 해시 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},{0}의 게시물 apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} 할당 된 {1} : {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,새로운 Google 주소록이 동기화되지 않았습니다. DocType: Workflow State,globe,지구 apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},평균 {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,오류 로그 지우기 @@ -2085,6 +2119,8 @@ DocType: Workflow State,Inverse,역 DocType: Activity Log,Closed,닫은 DocType: Report,Query,질문 DocType: Notification,Days After,후일 +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,페이지 바로 가기 +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,초상화 apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,요청 시간이 초과되었습니다 DocType: System Settings,Email Footer Address,이메일 바닥 글 주소 apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,에너지 포인트 업데이트 @@ -2112,6 +2148,7 @@ For Select, enter list of Options, each on a new line.",링크의 경우 DocType apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 분 전 apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,활성 세션 없음 apps/frappe/frappe/model/base_document.py,Row,열 +DocType: Contact,Middle Name,중간 이름 apps/frappe/frappe/public/js/frappe/request.js,Please try again,다시 시도하십시오. DocType: Dashboard Chart,Chart Options,차트 옵션 DocType: Data Migration Run,Push Failed,푸시 실패 @@ -2140,6 +2177,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,크기가 작은 DocType: Comment,Relinked,다시 연결됨 DocType: Role Permission for Page and Report,Roles HTML,역할 HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,가기 apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,저장 후 워크 플로가 시작됩니다. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.",데이터가 HTML 형식 인 경우 태그와 함께 정확한 HTML 코드를 복사하여 복사하십시오. apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,날짜는 종종 쉽게 추측 할 수 있습니다. @@ -2168,7 +2206,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,데스크탑 아이콘 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,이 문서를 취소 함 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,날짜 범위 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,설정> 사용자 권한 apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} 감사합니다 {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,값 변경됨 apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,알림 오류 @@ -2233,6 +2270,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,대량 삭제 DocType: DocShare,Document Name,문서 이름 apps/frappe/frappe/config/customization.py,Add your own translations,나만의 번역 추가 +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,목록 탐색 DocType: S3 Backup Settings,eu-central-1,유럽 중앙 1 DocType: Auto Repeat,Yearly,매년 apps/frappe/frappe/public/js/frappe/model/model.js,Rename,이름 바꾸기 @@ -2283,6 +2321,7 @@ DocType: Workflow State,plane,평면 apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,중첩 된 세트 오류. 관리자에게 문의하십시오. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,보고서보기 DocType: Auto Repeat,Auto Repeat Schedule,자동 반복 일정 +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Ref를 봅니다. DocType: Address,Office,사무실 DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} 일 전 @@ -2316,7 +2355,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required, apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,내 설정 apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,그룹 이름은 비워 둘 수 없습니다. DocType: Workflow State,road,도로 -DocType: Website Route Redirect,Source,출처 +DocType: Contact,Source,출처 apps/frappe/frappe/www/third_party_apps.html,Active Sessions,활성 세션 apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,폼에는 하나의 Fold 만있을 수 있습니다. apps/frappe/frappe/public/js/frappe/chat.js,New Chat,새 채팅 @@ -2338,6 +2377,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,URL 승인을 입력하십시오. DocType: Email Account,Send Notification to,알림을 님에게 보내기 apps/frappe/frappe/config/integrations.py,Dropbox backup settings,보관 용 백업 설정 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,토큰을 생성하는 동안 문제가 발생했습니다. 새 것을 생성하려면 {0}을 클릭하십시오. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,모든 사용자 정의를 제거 하시겠습니까? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,관리자 만 수정할 수 있습니다. DocType: Auto Repeat,Reference Document,참조 문서 @@ -2362,6 +2402,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,역할은 사용자 페이지에서 사용자에 대해 설정할 수 있습니다. DocType: Website Settings,Include Search in Top Bar,상단 바에서 검색 포함 apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[긴급] 반복되는 % s을 % s에 생성하는 동안 오류가 발생했습니다. +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,글로벌 단축키 DocType: Help Article,Author,저자 DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,주어진 필터에 대한 문서가 없습니다. @@ -2397,10 +2438,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, 행 {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.",새 레코드를 업로드하는 경우 "명명 시리즈"가 있으면 필수 항목이됩니다. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,속성 편집 -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,{0}이 (가) 열려있을 때 인스턴스를 열 수 없습니다. +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,{0}이 (가) 열려있을 때 인스턴스를 열 수 없습니다. DocType: Activity Log,Timeline Name,타임 라인 이름 DocType: Comment,Workflow,워크 플로 apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Frappe의 소셜 로그인 키에 기본 URL을 설정하십시오. +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,키보드 단축키 DocType: Portal Settings,Custom Menu Items,사용자 정의 메뉴 항목 apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,{0}의 길이는 1에서 1000 사이 여야합니다. apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,연결이 끊어졌습니다. 일부 기능이 작동하지 않을 수 있습니다. @@ -2463,6 +2505,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,추가 된 DocType: DocType,Setup,설정 apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0}이 (가) 성공적으로 생성되었습니다. apps/frappe/frappe/www/update-password.html,New Password,새 비밀번호 +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,필드 선택 apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,이 대화를 그만 둡니다. DocType: About Us Settings,Team Members,팀 멤버 DocType: Blog Settings,Writers Introduction,작가 소개 @@ -2532,13 +2575,12 @@ DocType: Chat Room,Name,이름 DocType: Communication,Email Template,이메일 템플릿 DocType: Energy Point Settings,Review Levels,레벨 검토 DocType: Print Format,Raw Printing,원시 인쇄 -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,인스턴스가 열려있을 때 {0}을 (를) 열 수 없습니다. +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,인스턴스가 열려있을 때 {0}을 (를) 열 수 없습니다. DocType: DocType,"Make ""name"" searchable in Global Search",글로벌 검색에서 "이름"검색 가능 DocType: Data Migration Mapping,Data Migration Mapping,데이터 마이그레이션 매핑 DocType: Data Import,Partially Successful,부분 성공 DocType: Communication,Error,오류 apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},필드 유형을 {2} 행의 {0}에서 {1} (으)로 변경할 수 없습니다. -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZ 트레이 응용 프로그램에 연결하는 중 오류가 발생했습니다 ...

Raw Print 기능을 사용하려면 QZ 트레이 응용 프로그램을 설치하고 실행해야합니다.

QZ 트레이를 다운로드하여 설치하려면 여기를 클릭하십시오 .
Raw Printing에 대한 자세한 내용을 보려면 여기를 클릭하십시오 ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,사진을 찍다 apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,당신과 관련된 해를 피하십시오. DocType: Web Form,Allow Incomplete Forms,불완전한 양식 허용 @@ -2634,7 +2676,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",새 페이지에서 열려면 target = "_blank"를 선택하십시오. DocType: Portal Settings,Portal Menu,포털 메뉴 DocType: Website Settings,Landing Page,방문 페이지 -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,시작하려면 가입 또는 로그인하십시오. DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",""영업 질의, 지원 질의"등과 같은 문의 옵션은 각각 새 라인에서 또는 쉼표로 구분됩니다." apps/frappe/frappe/twofactor.py,Verfication Code,확인 코드 apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,이미 구독 취소 된 {0} 명 @@ -2720,6 +2761,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,데이터 마 DocType: Address,Sales User,판매 사용자 apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","필드 속성 변경 (숨김, 읽기 전용, 권한 등)" DocType: Property Setter,Field Name,분야 명 +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,고객 DocType: Print Settings,Font Size,글자 크기 DocType: User,Last Password Reset Date,마지막 비밀번호 재설정 날짜 DocType: System Settings,Date and Number Format,날짜 및 숫자 형식 @@ -2785,6 +2827,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,그룹 노드 apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,기존 항목과 병합 DocType: Blog Post,Blog Intro,블로그 소개 apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,새로운 언급 +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,필드로 이동 DocType: Prepared Report,Report Name,보고서 이름 apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,최신 문서를 보려면 새로 고침하십시오. apps/frappe/frappe/core/doctype/communication/communication.js,Close,닫기 @@ -2794,10 +2837,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,행사 DocType: Social Login Key,Access Token URL,액세스 토큰 URL apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,사이트 구성에 보관 용 액세스 키를 설정하십시오. +DocType: Google Contacts,Google Contacts,Google 주소록 DocType: User,Reset Password Key,비밀번호 재설정 키 apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,수정 자 DocType: User,Bio,바이오 apps/frappe/frappe/limits.py,"To renew, {0}.",갱신하려면 {0}. +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,성공적으로 저장되었다 +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,{0}에 이메일을 보내 여기에 연결하십시오. DocType: File,Folder,폴더 DocType: DocField,Perm Level,페름 레벨 DocType: Print Settings,Page Settings,페이지 설정 @@ -2827,6 +2873,7 @@ DocType: Workflow State,remove-sign,사인 제거 DocType: Dashboard Chart,Full,완전한 DocType: DocType,User Cannot Create,사용자가 만들 수 없음 apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,당신은 {0} 점을 얻었습니다. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,설정> 사용자 DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.",이 항목을 설정하면이 항목이 선택한 상위 항목 아래의 드롭 다운 목록에 나타납니다. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,이메일 없음 apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,다음 입력란이 누락되었습니다. @@ -2840,13 +2887,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,캘 DocType: Web Form,Web Form Fields,웹 양식 필드 DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,웹 사이트에서 사용자가 편집 할 수있는 양식. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,영구적으로 {0}을 취소 하시겠습니까? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,영구적으로 {0}을 취소 하시겠습니까? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,옵션 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,합계 apps/frappe/frappe/utils/password_strength.py,This is a very common password.,이것은 매우 일반적인 암호입니다. DocType: Personal Data Deletion Request,Pending Approval,승인 대기 중 apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,문서를 올바르게 할당 할 수 없습니다. apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{0}에는 사용할 수 없습니다 : {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,표시 할 값이 없습니다. DocType: Personal Data Download Request,Personal Data Download Request,개인 데이터 다운로드 요청 apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0}이 (가)이 문서를 {1}과 공유했습니다. apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},{0}을 (를) 선택하십시오. @@ -2862,7 +2910,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},이 이메일은 {0} (으)로 전송되어 {1} (으)로 복사되었습니다. apps/frappe/frappe/email/smtp.py,Invalid login or password,로그인 또는 비밀번호가 틀립니다 DocType: Social Login Key,Social Login Key,소셜 로그인 키 -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,설정> 이메일> 이메일 계정에서 기본 이메일 계정을 설정하십시오. apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,저장된 필터 DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",이 통화는 어떻게 형식화되어야합니까? 설정하지 않으면 시스템 기본값을 사용합니다. apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0} : {1}은 {2} 상태로 설정됩니다. @@ -2988,6 +3035,7 @@ DocType: User,Location,위치 apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,데이터 없음 DocType: Website Meta Tag,Website Meta Tag,웹 사이트 메타 태그 DocType: Workflow State,film,필름 +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,클립 보드에 복사되었습니다. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} 설정을 찾을 수 없습니다. apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,라벨은 필수 항목입니다. DocType: Webhook,Webhook Headers,Webhook 헤더 @@ -3196,7 +3244,7 @@ DocType: Address,Address Line 1,주소 라인 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,문서 유형 apps/frappe/frappe/model/base_document.py,Data missing in table,표에 누락 된 데이터 apps/frappe/frappe/utils/bot.py,Could not identify {0},{0}을 (를) 식별 할 수 없습니다. -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,이 양식을로드 한 후에 수정되었습니다. +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,이 양식을로드 한 후에 수정되었습니다. apps/frappe/frappe/www/login.html,Back to Login,로그인으로 돌아 가기 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,설정되지 않음 DocType: Data Migration Mapping,Pull,손잡이 @@ -3264,6 +3312,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,하위 테이블 매 apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,이메일 계정 설정 암호를 입력하십시오 : apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,하나의 요청에 쓰기가 너무 많습니다. 작은 요청을 보내주십시오. DocType: Social Login Key,Salesforce,영업 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{1} 중 {0} 가져 오는 중 DocType: User,Tile,타일 apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} 회의실에는 최대 한 명의 사용자가 있어야합니다. DocType: Email Rule,Is Spam,스팸 @@ -3301,7 +3350,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,폴더 닫기 DocType: Data Migration Run,Pull Update,당겨 업데이트 apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},{0}을 (를) {1}에 병합했습니다. -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

DocType: SMS Settings,Enter url parameter for receiver nos,수신기 번호에 url 매개 변수를 입력하십시오. apps/frappe/frappe/utils/jinja.py,Syntax error in template,템플릿의 구문 오류 apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,보고서 필터 표에서 필터 값을 설정하십시오. @@ -3314,6 +3362,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.",죄송합니 DocType: System Settings,In Days,일 중 DocType: Report,Add Total Row,총 행 추가 apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,세션 시작 실패 +DocType: Translation,Verified,검증 됨 DocType: Print Format,Custom HTML Help,사용자 정의 HTML 도움말 DocType: Address,Preferred Billing Address,원하는 청구서 수신 주소 apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,할당 @@ -3328,7 +3377,6 @@ DocType: Help Article,Intermediate,중급 DocType: Module Def,Module Name,모듈 이름 DocType: OAuth Authorization Code,Expiration time,만료 시간 apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","기본 서식, 페이지 크기, 인쇄 스타일 등을 설정하십시오." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,당신이 만든 무언가가 마음에 들지 않아요. DocType: System Settings,Session Expiry,세션 만료 DocType: DocType,Auto Name,자동 이름 apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,첨부 파일 선택 @@ -3356,6 +3404,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,시스템 페이지 DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,참고 : 기본적으로 실패한 백업에 대한 전자 메일이 전송됩니다. DocType: Custom DocPerm,Custom DocPerm,사용자 정의 DocPerm +DocType: Translation,PR sent,홍보 전달 DocType: Tag Doc Category,Doctype to Assign Tags,태그 할당을위한 Doctype DocType: Address,Warehouse,창고 apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,보관 용 설정 @@ -3423,7 +3472,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Enter를 눌러 주석을 추가하십시오. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,필드 {0}을 (를) 선택할 수 없습니다. DocType: User,Birth Date,생일 -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,그룹 들여 쓰기 사용 DocType: List View Setting,Disable Count,개수 비활성화 DocType: Contact Us Settings,Email ID,이메일 주소 apps/frappe/frappe/utils/password.py,Incorrect User or Password,잘못된 사용자 또는 암호 @@ -3458,6 +3506,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,이 역할은 사용자에 대한 사용자 권한을 업데이트합니다. DocType: Website Theme,Theme,테마 DocType: Web Form,Show Sidebar,사이드 바 표시 +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google 주소록 통합. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,기본받은 편지함 apps/frappe/frappe/www/login.py,Invalid Login Token,잘못된 로그인 토큰 apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,먼저 이름을 설정하고 레코드를 저장하십시오. @@ -3485,7 +3534,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,다음을 수정하십시오. DocType: Top Bar Item,Top Bar Item,탑 바 항목 ,Role Permissions Manager,역할 권한 관리자 -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,오류가있었습니다. 이것을보고하십시오. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} 년 전 apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,여자 DocType: System Settings,OTP Issuer Name,OTP 발급자 이름 apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,할 일 목록에 추가 @@ -3585,6 +3634,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","언어 apps/frappe/frappe/model/document.py,none of,해당 사항 없음 DocType: Desktop Icon,Page,페이지 DocType: Workflow State,plus-sign,더하기 부호 +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,캐시 및 재로드 지우기 apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Can not Update : 링크가 잘못되었거나 만료되었습니다. DocType: Kanban Board Column,Yellow,노랑 DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),그리드의 필드에 대한 열 수 (그리드의 총 열은 11보다 작아야 함) @@ -3599,6 +3649,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,새 DocType: Activity Log,Date,날짜 DocType: Communication,Communication Type,통신 유형 apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,학부모 표 +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,목록 탐색 DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,전체 오류 표시 및 개발자에게 문제점보고 허용 DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3620,7 +3671,6 @@ DocType: Notification Recipient,Email By Role,역할 별 이메일 apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,구독자 수가 {0} 명 이상인 경우 업그레이드하십시오. apps/frappe/frappe/email/queue.py,This email was sent to {0},이 이메일은 {0} (으)로 전송되었습니다. DocType: User,Represents a User in the system.,시스템의 사용자를 나타냅니다. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},페이지 {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,새 형식 시작 apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,의견을 추가하다 apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{1} 중 {0} diff --git a/frappe/translations/ku.csv b/frappe/translations/ku.csv index 773e836b47..6e5ce9a720 100644 --- a/frappe/translations/ku.csv +++ b/frappe/translations/ku.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Gradients Enable DocType: DocType,Default Sort Order,Sermaseya Sort Sort apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Tenê zeviyên Numerîk ji raportê têne nîşandan +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Key Key ya çap bike ku ji bo kurt û kurtbaran di mîheng û Menubar de bêhtir kişandin DocType: Workflow State,folder-open,peldanka vekirî DocType: Customize Form,Is Table,Table apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Nikare pelê vekirî vekirî ye. Hûn bi navê CSV vekiriye? DocType: DocField,No Copy,Na Copy DocType: Custom Field,Default Value,Default Value apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Vebijêrin Ji bo peyamên gihîştina mails hene +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Têkilî Têkilî DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Migration Detailed Data Data apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Unfollow apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",Bi çapkirinê PDFê "Raw Print" hê nehatiye piştevanî. Ji kerema xwe peldanka printerê di peldanka çapkirinê de jê rake û dîsa biceribînin. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} û {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Daxuyaniyên tomarkirinê çewtiyek bû apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Şîfreya xwe binivîse apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Destûra malperê û pelên veşartî nikare jêbirin +DocType: Email Account,Enable Automatic Linking in Documents,Di Agahdariyên Xweseriya Xweser de çalak bike DocType: Contact Us Settings,Settings for Contact Us Page,Mîhengên ji bo Peywendiya Me Têkilî DocType: Social Login Key,Social Login Provider,Têkiliya Civakî ya Civakî +DocType: Email Account,"For more information, click here.","Ji bo bêtir agahdariyê, li vir bibînin ." DocType: Transaction Log,Previous Hash,Previous Hash DocType: Notification,Value Changed,Value Changed DocType: Report,Report Type,Tîpa Raportê @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Rule Pointa Enerjiyê apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,Ji kerema xwe ya nasnameya civakî ya berî nasnameya maidenê binivîse DocType: Communication,Has Attachment,Têkilî ye DocType: User,Email Signature,Şîfreya Îmêlê -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} sal (s) berê ,Addresses And Contacts,Navnîşan û Têkilî apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Ev Desteya Kanban ê taybet e DocType: Data Migration Run,Current Mapping,Mapping Current @@ -208,6 +211,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Hûn bijareya hevpeymaniya hemî hemî hilbijêre, Ew ê ji hemî bernameyek veşartî û veguhestina nermalavê veşartin. Ev dikare dibe sedema veguhestina \ Peywendiya (emails)." apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Naveroka sereke nayê guhertin +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,"

Ne encam ji bo '

" apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Destûr nabe ku {0} piştî veguhastinê biguherînin apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Vebijêrk ji bo guhertoya nû ya nû hate guherandin, kerema xwe vê rûpelê nû bike" DocType: User,User Image,Wêne User @@ -317,6 +321,7 @@ DocType: ToDo,Sender,Sender apps/frappe/frappe/public/js/frappe/chat.js,Discard,Bistînin DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Ji bo encamên çêtirîn çêtirîn peldankek nêzîkî 150px peldanka yekser hilbijêre. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,Veguhestin +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Nirxên hilbijartinê {0} DocType: Blog Post,Email Sent,Email Sent DocType: Communication,Read by Recipient On,Ji hêla Recipient Onê bixwîne DocType: User,Allow user to login only after this hour (0-24),Bikaranîna bikarhênerê tenê piştî vê saetan (0-24) @@ -338,7 +343,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Module Export to DocType: DocType,Fields,Qadên -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Hûn nikarin vê belgeyê çap bikin +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Hûn nikarin vê belgeyê çap bikin apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Parent apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Di rûniştina we de derbas bû, kerema xwe berdewam bike û berdewam bikin." DocType: Assignment Rule,Priority,Pêşeyî @@ -364,10 +369,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Guhertina OTP veki DocType: DocType,UPPER CASE,BERSÎVEK apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,Ji kerema xwe ji Navnîşana Îmêlê bişîne DocType: Communication,Marked As Spam,As Spam +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Navnîşana Navnîşana Navnîşa ku têkiliyên Google-ê têne hevrêz kirin. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Import Subscribers apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Filter Filter DocType: Address,Preferred Shipping Address,Navnîşana Veguhêrîna Vegere DocType: GCalendar Account,The name that will appear in Google Calendar,Navê ku dê di Calendar in Google de tête +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Bişkojka {0} ji bo nûvekirina Tokenê hilbijêre. DocType: Email Account,Disable SMTP server authentication,Nerastkirina SMTP serverê nayê kirin DocType: Email Account,Total number of emails to sync in initial sync process ,Gelek hejmara emailên ku di pêvajoyê destpêkê de pêvajoya destpêkê de sync dikin DocType: System Settings,Enable Password Policy,Polîtîkaya Nasnav @@ -384,6 +391,7 @@ DocType: Web Page,Insert Code,Kodê bişînin apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Ne Di DocType: Auto Repeat,Start Date,Dîroka Destpêk apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Chart set +DocType: Website Theme,Theme JSON,JSON apps/frappe/frappe/www/list.py,My Account,Hesabê min DocType: DocType,Is Published Field,Çandî ya Published DocType: DocField,Set non-standard precision for a Float or Currency field,Ji bo Firat an Firotê ya Guhertinê ne standard-ne standard @@ -394,7 +402,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Reference: {{ reference_doctype }} {{ reference_name }} Add Reference: {{ reference_doctype }} {{ reference_name }} refer_doctype Reference: {{ reference_doctype }} {{ reference_name }} ji bo referansa belgeyan bişîne DocType: LDAP Settings,LDAP First Name Field,LDAP First Name Field apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Navekî şandina şîfre û inbox -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Forma Taybetî apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.","Ji bo nûvekirina nûve, hûn dikarin tenê blovên hilbijêrên xwe hilbijêrin." apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',Pêdivî ye ku ji bo 'Check' ya qadê ji bo '0' an '1' apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Vê belgeyê digel hev @@ -438,16 +445,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Navneteweyî HTML DocType: Blog Settings,Blog Settings,Blog Settings apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Navê navnîşa DocType divê bi nameyek dest pê bike û tenê bi nameyên hejmar, hejmar, spî û dakêşan dikare dibe" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup> Bikarhêner Permissions DocType: Communication,Integrations can use this field to set email delivery status,Integrasyon dikare vê qadê bikar bînin ku da ku rewşa xwe ya danûstendinê bişînin apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Settings settings DocType: Print Settings,Fonts,Fonts DocType: Notification,Channel,Qenal DocType: Communication,Opened,Vekir DocType: Workflow Transition,Conditions,Şertên +apps/frappe/frappe/config/website.py,A user who posts blogs.,Bikarhêner bikar anî ku blogan. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Hesab nîne? Tomar kirin apps/frappe/frappe/utils/file_manager.py,Added {0},Added {0} DocType: Newsletter,Create and Send Newsletters,Create and Newsletters bişîne DocType: Website Settings,Footer Items,Footer Items +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Ji kerema xwe ji hesabê E-Mail-ê-ê-yê ji Setup-E-Mail-E-nameya Setup DocType: Website Slideshow Item,Website Slideshow Item,Sîteya Malperê apps/frappe/frappe/config/integrations.py,Register OAuth Client App,OAuth Client App Register DocType: Error Snapshot,Frames,Frames @@ -488,7 +498,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Level 0 ji bo destûrên asta dokumentên pîvanê, \ rêjeya bilindtir ji bo destûra asta qadê ye." DocType: Address,City/Town,Bajar / Bajarê DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Ev dê mijara xwe ya nû ve nûve bike, ma tu bawer bin ku hûn dixwazin berdewam bikin?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Zeviyên mandator di hewceyê {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Dema ku bi hesabê nameya emailê {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Çewtiyek çêkir dema dema veguhestinê de ye @@ -524,7 +533,7 @@ DocType: Event,Event Category,Category Category apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Bingehîn apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Editing DocType: Communication,Received,Qebûl kirin -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Hûn nikarin vê rûpelê bikar bînin. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Hûn nikarin vê rûpelê bikar bînin. DocType: User Social Login,User Social Login,Têketina Civakî ya Civakî apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,Peldanka pelê li heman eynî binivîse ku ew e ku ew xilas kir û dora vegerin û encam. DocType: Contact,Purchase Manager,Rêveberê kirînê @@ -576,7 +585,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Guhe apps/frappe/frappe/utils/data.py,Operator must be one of {0},Operator divê yek ji {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Ger xwedê xwedan DocType: Data Migration Run,Trigger Name,Navê Trigger -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Sernav û şîrove binivîse ku ji blogê re. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Vebijêrin apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Hemû tomar bike apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Rengê paşîn @@ -626,6 +634,7 @@ DocType: Dashboard Chart,Bar,Bar DocType: SMS Settings,Enter url parameter for message,Ji bo mesajê url parameter binivîse apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Forma Nû Print Print Format apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} already exists +DocType: Workflow Document State,Is Optional State,Dewleta Yekbûyî ye DocType: Address,Purchase User,User Purchase DocType: Data Migration Run,Insert,Lêzêdekirin DocType: Web Form,Route to Success Link,Roja Serketina Serkeftinê @@ -633,13 +642,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Navê b DocType: File,Is Home Folder,Peldanka Malê ye apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Awa: DocType: Post,Is Pinned,Pinned -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Tu destûra '{0}' tune {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Tu destûra '{0}' tune {1} DocType: Patch Log,Patch Log,Patch Log DocType: Print Format,Print Format Builder,Builder Format Print 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","Heke çalak kirin, hemî bikarhêner dikarin ji bikarhênerên IP-ê bikar bînin bikar anîna bikarhênerê Du Factor. Ev dikare tenê ji bo bikarhênerên taybet yên di nav Page" apps/frappe/frappe/utils/data.py,only.,bes. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,Rewşa '{0}' ne çewt e DocType: Auto Email Report,Day of Week,Roja hefteyê +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Google Settings in Google Settings. DocType: DocField,Text Editor,Edîtorê Text apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Birrîn apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Vebijêrin an cureyê binivîse @@ -647,6 +657,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,Hejmarên DB-ê nikare kêmtir 1 DocType: Workflow State,ban-circle,ban-circle DocType: Data Export,Excel,Excel +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Header, Breadcrumbs û Meta Tags" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Navnîşana Navnîşa Navnîşan Navnîşan nabe DocType: Comment,Published,Published DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","Têkilî: Ji bo encamên herî baş, wêne divê ji heman rengê be û hebûna çarçûk ji hêja mezintir be." @@ -736,6 +747,7 @@ DocType: System Settings,Scheduler Last Event,Dîroka Scheduleer Dawîn apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Rapora hemî belgeyan DocType: Website Sidebar Item,Website Sidebar Item,Malpera Sidebar apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Kirin +DocType: Google Settings,Google Settings,Google Settings apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Country, Time Zone û Dirêjeya xwe hilbijêrin" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Vîdealên pelên static url binivîse (Eg. Şîfre = ERPNext, navê bikarhêner = ERPNext, şîfreya = 1234.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Hesabê E-nameyê tune @@ -789,6 +801,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token ,Setup Wizard,Wizard Setup apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Toggle Chart +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,Syncing DocType: Data Migration Run,Current Mapping Action,Çalakiya Mapping Current DocType: Email Account,Initial Sync Count,Vebijêrk Sernivîsa Navîn apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Mîhengên ji bo Peywendiya Me Têkilî @@ -828,6 +841,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Format Format Print apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Ti destûrnameyên vê pîvanê danûstandin. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Expand All +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Naveroka Navnîşa Navnîşan nehat dîtin. Ji kerema xwe kerema xwe ji nûveka nû ya Setup> Print û Branding> Navnîşan Navnîşa nû çêke. DocType: Tag Doc Category,Tag Doc Category,Kategoriya Tag Tag DocType: Data Import,Generated File,Pelê çêkirî apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Notes @@ -835,7 +849,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Divê zevê timeline divê girêdana an girêdanek dînamîk be DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Şîfre û firotanên mezin ên dê ji vê serverê veguherin şandin. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Ev şîfreyek herî bilind-100 e. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Permanent Pêvekirin {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Permanent Pêvekirin {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} nîne, hedefek nû nû hilbijêre" DocType: Energy Point Rule,Multiplier Field,Zeviyê Pirrjimar DocType: Workflow,Workflow State Field,Karûbarên Karker a Workflow @@ -874,6 +888,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} karên xwe yên li ser {2} bi {2} pesnê kir DocType: Auto Email Report,Zero means send records updated at anytime,Zero tê wateya ku her roj di raportek nû de şandin apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Nirx nikare ji bo {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,APIs Settings DocType: System Settings,Force User to Reset Password,Pêwîstanê Kontrolê ji bo şîfreyê vekin apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Rapora raporên rapor bi rasterast ji rapora raporê ve tête kirin. Ne tiştek bikî. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Edit Filter @@ -926,7 +941,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,bo DocType: S3 Backup Settings,eu-north-1,eu-north-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Tenê yek desthilatek bi heman demê re Role, Level û {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Hûn nikarin belgeya belgeya Webê nû bikin -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Ji bo vê qeydê gihîştina sînorê Maximum Attachment. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Ji bo vê qeydê gihîştina sînorê Maximum Attachment. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,Ji kerema xwe re bisekinin ku Têkiliya Têkiliya Dokumentên dravî ne girêdayî ye DocType: DocField,Allow in Quick Entry,Destûra Zûtirîn Bilez DocType: Error Snapshot,Locals,Herêm @@ -958,7 +973,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Vebijêrk apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},"Ji ber ku {{}}} {1} {1} ve girêdayî ye, jêbirin an betal bike nikare {2} {3} {4}" apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,Girtîgeha OTP dikare tenê bi rêvebirê veguherîne. -DocType: Web Form Field,Page Break,Page Break DocType: Website Script,Website Script,Vebijêrk Website DocType: Integration Request,Subscription Notification,Agahdariya Mirovan DocType: DocType,Quick Entry,Entry Quick @@ -975,6 +989,7 @@ DocType: Notification,Set Property After Alert,Alert Piştî Xwerûya Xweşîne apps/frappe/frappe/__init__.py,Thank you,Spas dikim apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Ji bo întegrasyona navxweyî ya Slack Webhooks apps/frappe/frappe/config/settings.py,Import Data,Daneyên Import +DocType: Translation,Contributed Translation Doctype Name,Alîkarî Translation Translation Doctype DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,Nasnameya DocType: Review Level,Review Level,Asta Review @@ -993,7 +1008,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Serkeftî apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,Lîsteya {0} apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Rûmetdan -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),New {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Têkilî Serî ye DocType: Print Format,Raw Commands,Fermanên Raw apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Stylesheets for Print Formats @@ -1033,6 +1047,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Guherînên Çalak apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Find {0} in {1} DocType: Email Account,Use SSL,SSL bikar bînin DocType: DocField,In Standard Filter,In Filter Filter +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Ne hevalên têkiliyên Google tune ji bo sync. DocType: Data Migration Run,Total Pages,Total Pages apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: Zevî '{1}' nikare wekî Uniqu be saz kirin wekî ku ew nirxên ne-nîjîk hene DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Heke çalak kirin, bikarhênerên wê her car dema ku têketin agahdar kirin. Heke nayê çalak kirin, bikarhênerên wê tenê carekê agahdar bibin." @@ -1052,7 +1067,7 @@ DocType: Assignment Rule,Automation,Otomatîkî apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Pelên Unzipping ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Ji bo '{0}' lêgerîn apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Tiştek çewt bû -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Ji kerema xwe veşêre berî. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,Ji kerema xwe veşêre berî. DocType: Version,Table HTML,Table HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,hub DocType: Page,Standard,Wek herdem @@ -1128,12 +1143,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Ne encam apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,Daneyên {0} jê jêbirin apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,Heke tiştek xerab bû ku dema hilberandina dorboxê têketinê. Ji kerema xwe ji bo agahiyên bêhtir şîfreya çewtiyê kontrol bikin apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Niştecîhên Of -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Naveroka Navnîşa Navnîşan nehat dîtin. Ji kerema xwe kerema xwe ji nûveka nû ya Setup> Print û Branding> Navnîşan Navnîşa nû çêke. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Têkiliyên Google dihev kirin. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Agahdarî veşêre apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Styles apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Serdana we dê di {0} de derbas bibin. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Vebijêrk dema ku emailsên ji Hesabê Îmêlê bişînin {0} nekir. Peyam ji serverê: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Stats li ser xebata dawîn ya dawîn (ji {0} ji {1} ve girêdayî ye +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,Xwendekarê otomatîk tenê dikare çalak bike ku heger tê vekirî ye. DocType: Website Settings,Title Prefix,Prefix apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Hûn dikarin bi karanîna destnîşan kirin DocType: Bulk Update,Max 500 records at a time,Max 500 tomarî di demekê de @@ -1166,7 +1182,7 @@ DocType: Auto Email Report,Report Filters,Filters Report apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Columns hilbijêrin DocType: Event,Participants,Beşdarvanan DocType: Auto Repeat,Amended From,Amended From -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Agahiyên we hatine şandin +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Agahiyên we hatine şandin DocType: Help Category,Help Category,Kategoriyê apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 Meh apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Forma heyî ya bijartî hilbijêre an guhertina nû ya nû bike. @@ -1213,7 +1229,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Zeviya Track DocType: User,Generate Keys,Keys Generate DocType: Comment,Unshared,Bêhtir -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Saved +DocType: Translation,Saved,Saved DocType: OAuth Client,OAuth Client,OAuth Client DocType: System Settings,Disable Standard Email Footer,Pêveka Standard Email Email apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Çapê çapkirinê {0} qedexekirin @@ -1244,6 +1260,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Dîroka Dawî DocType: Data Import,Action,Çalakî apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Kêşeya mîvan heye DocType: Chat Profile,Notifications,Notifications +DocType: Translation,Contributed,Alîkarî DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy DocType: Report,Custom Report,Raporta Taybet DocType: Workflow State,info-sign,info-sign @@ -1258,6 +1275,8 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,'Recipients' not spec apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are currently viewing this document,{0} niha vê belgeyê bibînin DocType: Contact,Contact,Têkelî DocType: LDAP Settings,LDAP Username Field,Navê LDAP Field Field +apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Qada {0} zehf di binavê yekem de {1} nabe, wekî ku nirxên heyî yên nenas in ne" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Forma Taybetî DocType: User,Social Logins,Logins Social DocType: Workflow State,Trash,Zibil DocType: Stripe Settings,Secret Key,Key Key @@ -1315,6 +1334,7 @@ DocType: DocType,Title Field,Mijara Sernavê apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Dibe ku servera e-nameya derveyî ve girêdayî ne DocType: File,File URL,URL DocType: Help Article,Likes,Likes +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Têkiliya Google-Têkiliya Têkilî qedexekirin. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Divê hûn hewce be ku di navnîşan de tête kirin û Rêveberê Rêveberiya Role ya ku dê bikaribin piştevanîya bilezê bigirin. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Beriya Pêşîn DocType: Blogger,Short Name,Navekî Kurte @@ -1332,13 +1352,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Import Zip DocType: Contact,Gender,Cinsî DocType: Workflow State,thumbs-down,thumbs-down -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Queue divê ji yek ji {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Daxuyaniya Vebijêrk {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Ji bo vê rêveberê Sîstema Sîstema Pergalê zêde dibe ku divê rêveberê Sîstema Yekbûyî be apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,E-peyama xwe bişîne DocType: Transaction Log,Chaining Hash,Chaining Hash DocType: Contact,Maintenance Manager,Gerînendendinê +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Ji berhevkirinê, bikar bînin> 5, <10 an = 324. Ji bo rêzikên, 5:10 bikar bînin (nirxên ji bo 5 û 10)." apps/frappe/frappe/utils/bot.py,show,rêdan apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URL apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Format Format @@ -1360,7 +1380,7 @@ DocType: Communication,Notification,Agahdayin DocType: Data Import,Show only errors,Tenê çewtiyê nîşan bide DocType: Energy Point Log,Review,Axaftin apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Rows -DocType: GSuite Settings,Google Credentials,Krediyên Google +DocType: Google Settings,Google Credentials,Krediyên Google apps/frappe/frappe/www/login.html,Or login with,An jî têkevin apps/frappe/frappe/model/document.py,Record does not exist,Dîrok tune apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Navê nû ya nû @@ -1385,6 +1405,7 @@ DocType: Desktop Icon,List,Rêzok DocType: Workflow State,th-large,mezin apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Heke nexşebûyî nayê destnîşankirin Nabe ku destnîşankirin nabe apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Ne girêdayî lêdanê +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Çewtiya pêwendiya QZ Tray ve girêdayî ...

Hûn hewce ne ku qezenca QZ Trayê saz kirin û barkirinê, ji bo taybetmendiya Raw Print kar bikin.

Li vir qeyd bike ku ji bo QZ Tray Daxistin û saz bike .
Li vir binivîsin Raw Print Print about Raw ." DocType: Chat Message,Content,Dilşad DocType: Workflow Transition,Allow Self Approval,Destûrê Xweser bike apps/frappe/frappe/www/qrcode.py,Page has expired!,Page tim @@ -1401,6 +1422,7 @@ DocType: Workflow State,hand-right,hand-right DocType: Website Settings,Banner is above the Top Menu Bar.,Banner ji barê Top Menu ve ye. apps/frappe/frappe/www/update-password.html,Invalid Password,Şîfreya nederbasdar apps/frappe/frappe/utils/data.py,1 month ago,1 meh berê +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Destûrê bide Têkiliyên Google-ê DocType: OAuth Client,App Client ID,Nasnameyeke Clientê DocType: DocField,Currency,Diravcins DocType: Website Settings,Banner,Banner @@ -1412,7 +1434,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Armanc DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Heke role tune di asta 0-ê de nahêle, hingê pîvanên bilind bê wateya ne." DocType: ToDo,Reference Type,Tîpa Çavkanî -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Destnîşankirina DocType, DocType. Baldar be!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Destnîşankirina DocType, DocType. Baldar be!" DocType: Domain Settings,Domain Settings,Domain Settings DocType: Auto Email Report,Dynamic Report Filters,Fîlmên Raport ên Dînamîk DocType: Energy Point Log,Appreciation,Rûmetdanî @@ -1453,6 +1475,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,us-west-2 DocType: DocType,Is Single,Tenê ye apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Forma Nû ya nû biafirîne +DocType: Google Contacts,Authorize Google Contacts Access,Agahdariya Google Têkiliyên Agahdariyê DocType: S3 Backup Settings,Endpoint URL,URL DocType: Social Login Key,Google,gûgil DocType: Contact,Department,Liq @@ -1467,7 +1490,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Destnîşankirin DocType: List Filter,List Filter,Peldanka Lîsteya DocType: Dashboard Chart Link,Chart,Qebale apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Nabe -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Vê belgeyê ji bo piştrast bikin +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Vê belgeyê ji bo piştrast bikin apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} already exists. Navê din hilbijêre apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Li ser vê formê guhertinên neheqkirî hene. Ji kerema xwe we berdewam bike. apps/frappe/frappe/model/document.py,Action Failed,Çalakiya Failed @@ -1549,6 +1572,7 @@ DocType: DocField,Display,Rêdan apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Bersiva hemiyan bide DocType: Calendar View,Subject Field,Qada mijara apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Divê rûniştinê Divê rûniştinê di binivîse {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},Applying: {0} DocType: Workflow State,zoom-in,zoom-in apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Girêdanê têkildar server apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Dîroka {0} divê di formatê de: {1} @@ -1560,8 +1584,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Icon dê li ser pêlê nîşan bide DocType: Role Permission for Page and Report,Set Role For,Ji bo Roja Çep bikin +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Xwendekarê otomatîk tenê tenê ji bo yek e-nameya Endamê çalak bike. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,No Accounts Accounts Assigned +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Hesabê Îmêlê nayê sazkirin. Ji kerema xwe ji Hesabê E-Mail-E-nameya Hesabê Navnîşek nû ya nû biafirîne apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Danî +DocType: Google Contacts,Last Sync On,Sync Dîroka Dawîn apps/frappe/frappe/config/website.py,Portal,Portal apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Ji bo we ji bo we ji we re spas apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,Pelên / urls têkevin û di sifrê de zêde bikin. @@ -1581,7 +1608,6 @@ DocType: GSuite Settings,GSuite Settings,Sîstema GSuite DocType: Integration Request,Remote,Dûr DocType: File,Thumbnail URL,Thumbnail URL apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Raporta Daxistin -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup> Bikarhêner apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Pêşniyar ji bo {0} vexwendin:
{1} DocType: GCalendar Account,Calendar Name,Navê Peldanka apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Id idê te ye @@ -1630,6 +1656,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Biçe apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Divê zeviya wêneya wêneyê belkî navê navxweyî ye apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,Divê hûn hewce bike ku di vê rûpelê de bikar bînin DocType: Assignment Rule,Example: {{ subject }},Mînak: {{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Fieldname {0} sînor e apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Hûn nikarin 'Bixwe tenê bixwînin' ji bo qada {0} DocType: Social Login Key,Enable Social Login,Têketina Civakî çalak bike DocType: Workflow,Rules defining transition of state in the workflow.,Qanûnên veguherîna veguherîna dewleta di xebata karker de. @@ -1649,10 +1676,10 @@ DocType: Website Settings,Route Redirects,Rastiyên rûpela apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Inbox apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},{0} wekî restore {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Dokumentên xwe bixweber bikarhêneran bidin +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Open Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Templates Email-Ji bo pirsên hevpar. DocType: Letter Head,Letter Head Based On,Navnîşa Serûpelê apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Ji kerema xwe ev paceyê vekin -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Payment Complete DocType: Contact,Designation,Pîrozbahiyê DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Meta Tags @@ -1689,6 +1716,7 @@ DocType: System Settings,Choose authentication method to be used by all users,Ji DocType: Error Snapshot,Parent Error Snapshot,Saziya Parastinê Snapshot DocType: GCalendar Account,GCalendar Account,Account GCalendar DocType: Language,Language Name,Nasname +DocType: Workflow Document State,Workflow Action is not created for optional states,Çalakiya Karflowê ya ji bo alternatîfên alternatîf nayê afirandin DocType: Customize Form,Customize Form,Forma Taybet DocType: DocType,Image Field,Image Field apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Added {0} ({1}) @@ -1730,6 +1758,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,Gava ku bikarhêner bikar xwedane xwediyê vê rêbazê bicîh bikin DocType: About Us Settings,Org History Heading,Dîroka Dîroka Org apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Error Error +DocType: Contact,Google Contacts Description,Agahdarî Têkilî Google apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Rola standard nayê guhertin DocType: Review Level,Review Points,Pirsên Reviewê apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Navê navê Parbanê Kanban @@ -1747,7 +1776,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Ne Di Developer Module Set in site_config.json an 'DocType' binivîse. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,xalên {0} qezenc kirin DocType: Web Form,Success Message,Peyama Serkeftinê -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Ji berhevkirinê, bikar bînin> 5, <10 an = 324. Ji bo rêzikên, 5:10 bikar bînin (nirxên ji bo 5 û 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Pirtûka ji bo lîsteya rûpelê, di nivîskî zelal de, tenê çend çend rêzikan. (max 140 characters)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Permissions Show DocType: DocType,Restrict To Domain,Bixebitin To Domain @@ -1769,6 +1797,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Bavên apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Hilbijêre DocType: Auto Repeat,End Date,Dîroka Dawîn DocType: Workflow Transition,Next State,Dewleta paşîn +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Têkilî Google Têkilandin. DocType: System Settings,Is First Startup,Destpêk Destpêk e apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},updated to {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Birin @@ -1817,6 +1846,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Criticize,Rexnekirin apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,Calendar {0} apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Data Import Template DocType: Workflow State,hand-left,milê çepê +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Hilbijêre gelek lîsteyan hilbijêrin apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Mezinahiya Bikin: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Girêdana {0} DocType: Braintree Settings,Private Key,Key Key @@ -1858,13 +1888,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Zem DocType: Bulk Update,Limit,Sînorkirin DocType: Print Settings,Print taxes with zero amount,Bacê bi mûzek zûtirîn çap bikin -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Hesabê Îmêlê nayê sazkirin. Ji kerema xwe ji Hesabê E-Mail-E-nameya Hesabê Navnîşek nû ya nû biafirîne DocType: Workflow State,Book,Pirtûk DocType: S3 Backup Settings,Access Key ID,Nasnameyeke Key DocType: Chat Message,URLs,URL apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Navên û paşnavên xwe ji hêla texmînan ve hêsan in. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Report {0} DocType: About Us Settings,Team Members Heading,Rêberên Endamê Team +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Lîsteya hilbijêre hilbijêre apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Belgeya {0} hat sazkirin ku {1} bi destê {2} DocType: Address Template,Address Template,Navnîşana Navnîşê DocType: Workflow State,step-backward,gavê paşde @@ -1888,6 +1918,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Destûra Custom Custom Exportissions apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Ne: End-End Workflow DocType: Version,Version,Awa +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Lîsteya vekirî veke apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 mehan DocType: Chat Message,Group,Kom apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Pirsgirêka pelê heye hin pirsgirêk heye: {0} @@ -1943,6 +1974,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 sal apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} xalên xwe li ser {1} DocType: Workflow State,arrow-down,arrow-down DocType: Data Import,Ignore encoding errors,Çewtiyên şîfrekirinê bibînin +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Dorhalî DocType: Letter Head,Letter Head Name,Navê Navekî Navîn DocType: Web Form,Client Script,Lîsteya Client DocType: Assignment Rule,Higher priority rule will be applied first,Hukumeta bilind a pêşîn be @@ -1987,6 +2019,7 @@ DocType: Kanban Board Column,Green,Kesk apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Tenê qeydên nû yên pêwîst ne pêwîst e. Heke hûn bixwazin hûn dikarin kûreyên ne-mandal bikujin. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} divê di destpêkê de nameyek destpê bike û dawî bibe û dikare tenê nameyên hûrgel, nehf an jî dakêşin." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Çalakiya Primer Trigger apps/frappe/frappe/core/doctype/user/user.js,Create User Email,E-Mailê biafirîne apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Peldanka cureyê {0} divê peldanka yekane be DocType: Auto Email Report,Filter Meta,Meta Filter @@ -2016,6 +2049,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Demjimêran apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Loading ... DocType: Auto Email Report,Half Yearly,Half Yearly +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Profîla min apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Guherandinên Dawîn DocType: Contact,First Name,Nav DocType: Post,Comments,Comments @@ -2038,6 +2072,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Content Hash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Posts by {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} diyar kir {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Têkilî Google Nexşeyên nû veguherandin. DocType: Workflow State,globe,dinyagog apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Navîn {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Logs Error Error @@ -2064,6 +2099,8 @@ DocType: Workflow State,Inverse,Inverse DocType: Activity Log,Closed,Girtî DocType: Report,Query,Pirs DocType: Notification,Days After,Rojan piştî +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Shortcuts Page +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portrait apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Serdana Demjimêr DocType: System Settings,Email Footer Address,Navnîşana Footer Email apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Nûjenkirina enerjiyê @@ -2091,6 +2128,7 @@ For Select, enter list of Options, each on a new line.","Ji bo Girêdanên, DocT apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 minute ago apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Sessions Çalakî Nîne apps/frappe/frappe/model/base_document.py,Row,Dor +DocType: Contact,Middle Name,Navê navbendî apps/frappe/frappe/public/js/frappe/request.js,Please try again,Ji kerema xwe dîsa biceribînin DocType: Dashboard Chart,Chart Options,Hilbijêre Hilbijêre DocType: Data Migration Run,Push Failed,Pel têkçûn @@ -2119,6 +2157,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,resize-biçûk DocType: Comment,Relinked,Ve girêdayî ye DocType: Role Permission for Page and Report,Roles HTML,Roles HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Çûyin apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Workflow dê piştî tomarkirinê dest pê bikin. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Heke ku daneyên we di HTML-ê de, kerema xwe bi kodê HTML-ê bi pelan re bişopînin." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Dates gelek caran hêsantir dikin. @@ -2147,7 +2186,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Icon Desktop apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,vê belgeyê betal kir apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Range Dîrok -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup> Bikarhêner Permissions apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} pesnê {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Nirxên guhertin apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Çewtiya Nasnameyê @@ -2210,6 +2248,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Vebijêrk Bigere DocType: DocShare,Document Name,Navê Belgeyê apps/frappe/frappe/config/customization.py,Add your own translations,Wergerandin +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Lîsteya navîgasyonê binivîse DocType: S3 Backup Settings,eu-central-1,eu-central-1 DocType: Auto Repeat,Yearly,Salê apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Rename @@ -2259,6 +2298,7 @@ DocType: Workflow State,plane,balafir apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Çewtiyek nested. Ji kerema xwe birêvebirê têkilî bikin. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Report Report DocType: Auto Repeat,Auto Repeat Schedule,Auto Repeat Schedule +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Ref Ref DocType: Address,Office,Dayre DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} roj berê @@ -2292,7 +2332,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Ni apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Mîhengên Min apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Navê navnîşê vala nebe. DocType: Workflow State,road,rê -DocType: Website Route Redirect,Source,Kanî +DocType: Contact,Source,Kanî apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Session Çalak apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Dibe ku tenê di yek formek de binivîse apps/frappe/frappe/public/js/frappe/chat.js,New Chat,New Chat @@ -2314,6 +2354,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Ji kerema xwe URL-authorî binivîse DocType: Email Account,Send Notification to,Agahdarî bişîne da apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Setupên Dropboxê +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,Di dema hilberîna nimûne de tiştek xirab bû. Click on {0} ji nû ve nû bike. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Ji hemî hûrgelan veşartin? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Tenê Rêveberê tenê dikare biguherînî DocType: Auto Repeat,Reference Document,Belgeya Dokumentê @@ -2337,6 +2378,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Roles dikarin ji bo bikarhênerên xwe ji rûpelê bikarhêneran bidin saz kirin. DocType: Website Settings,Include Search in Top Bar,Lêgerînê li Top Bar apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Bêguman] Di dema destpêkirina% s ji bo% s de çewtî +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Shortcuts Global DocType: Help Article,Author,Nivîskar DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Dokumentek ji bo felterên nayê dîtin nehat dîtin @@ -2375,6 +2417,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Ed DocType: Activity Log,Timeline Name,Navê Timeline DocType: Comment,Workflow,Workflow apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Ji kerema xwe li Navnîşana Bingehê ya Keyeya Têketina Civakî ya Frappe bike +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Shortcuts Keyboard DocType: Portal Settings,Custom Menu Items,Menu Menu apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,Length of {0} divê di navbera 1 û 1000 de be apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Têkilî winda kir. Hin taybetmendiyên ku ne kar dikin. @@ -2437,6 +2480,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Rows Added DocType: DocType,Setup,Damezirandin apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} bi serkeftî çêkir apps/frappe/frappe/www/update-password.html,New Password,Şîfreya nû +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Select field apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Vê nîqaş binivîse DocType: About Us Settings,Team Members,Endamên Team DocType: Blog Settings,Writers Introduction,Pirtûka Nivîskaran @@ -2506,13 +2550,12 @@ DocType: Chat Room,Name,Nav DocType: Communication,Email Template,Şablon DocType: Energy Point Settings,Review Levels,Pîvana Dîtin DocType: Print Format,Raw Printing,Raw Printing -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Dema ku nimûne ev vekirî ye {0} vekirî ne +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,Dema ku nimûne ev vekirî ye {0} vekirî ne DocType: DocType,"Make ""name"" searchable in Global Search",Di "Global Search" de lêgerîn "navê" bibîne DocType: Data Migration Mapping,Data Migration Mapping,Migration Mapping DocType: Data Import,Partially Successful,Tevger Serkeftî DocType: Communication,Error,Şaşî apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype nikare ji alîyê {0} ji {1} ve di nav rêza {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Çewtiya pêwendiya QZ Tray ve girêdayî ...

Hûn hewce ne ku qezenca QZ Trayê saz kirin û barkirinê, ji bo taybetmendiya Raw Print kar bikin.

Li vir qeyd bike ku ji bo QZ Tray Daxistin û saz bike .
Li vir binivîsin Raw Print Print about Raw ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Wêne bikişînin apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,Salan ku ji we re girêdayî nebin. DocType: Web Form,Allow Incomplete Forms,Destûrên Niştecîh bikin @@ -2608,7 +2651,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Hilbijêre target = "_blank" ji bo peldanka nû de vekin. DocType: Portal Settings,Portal Menu,Peldanka Pergalê DocType: Website Settings,Landing Page,Rûpela armanckirî -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,Ji kerema xwe veguhestinê an jî dest pê bike DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Vebijêrkên Têkilî, wek "Sales Sales, Support Query" etc. her kes li ser rêzek nû ya an jî bi komas ve vekir." apps/frappe/frappe/twofactor.py,Verfication Code,Kodê Verfication apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} ji berî betal kirin @@ -2693,6 +2735,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Mapping Plan Ma DocType: Address,Sales User,Bikaranîna Bikarhêner apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Guhertina xwerûyan (Guherandin, xwendinê, destûra etc.)" DocType: Property Setter,Field Name,Navê Navnîşê +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Miştirî DocType: Print Settings,Font Size,Size Size DocType: User,Last Password Reset Date,Şîfreya Dawîn Reset Dîroka Dawîn DocType: System Settings,Date and Number Format,Dîrok û Nimreya Format @@ -2758,6 +2801,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Node Group apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Bi vekirî vebikin DocType: Blog Post,Blog Intro,Blog Intro apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Mîhengek nû +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Here cem DocType: Prepared Report,Report Name,Navê Navnîşan apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Ji kerema xwe belgeya nû ya nû bibînin. apps/frappe/frappe/core/doctype/communication/communication.js,Close,Nêzîkî @@ -2767,10 +2811,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Bûyer DocType: Social Login Key,Access Token URL,URL apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Ji kerema xwe veguhastina malpera we ya Dropboxê destnîşan bikin +DocType: Google Contacts,Google Contacts,Têkiliyên Google DocType: User,Reset Password Key,Vebijêrtina Key Key apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Modified By DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.","Ji nûvekirina nûve, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Bi Serkeftî Saved +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,E-nameyek ji {0} bişînin ku li vir ve girêdayî ye. DocType: File,Folder,Pêçek DocType: DocField,Perm Level,Perm Level DocType: Print Settings,Page Settings,Mîhengên Rûpelê @@ -2800,6 +2847,7 @@ DocType: Workflow State,remove-sign,derxistin DocType: Dashboard Chart,Full,Tije DocType: DocType,User Cannot Create,Bikarhêner Nabe apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Te xala {0} +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup> Bikarhêner DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Heke hûn vê yekê dipejirînin, ev tişt dê di bin drav-jêr de dêûbavên bijartî werin." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Na Emails apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Pevçûnan winda ne: @@ -2813,13 +2861,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Cal DocType: Web Form,Web Form Fields,Field Fields Fields DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Forma serastkirinê ya bikarhêner li ser malperê. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Permankirina Cancel {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Permankirina Cancel {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Option 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,Totals apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Ev şîfreyeke gelemper e. DocType: Personal Data Deletion Request,Pending Approval,Destûra Pending Destpêk apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Daxuyanî nikare rast nabe apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Ji bo {0}: {1} nayê destûr kirin +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Ne nirxên nîşanî nîşan bide DocType: Personal Data Download Request,Personal Data Download Request,Daxistina Personal Data Request apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} ev belgeyê bi {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},{0} hilbijêre @@ -2835,7 +2884,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Ev e-nameyê ji bo {0} hat şandin û li ser {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,Têketin an şîfreya çewt DocType: Social Login Key,Social Login Key,Key Keyeya Civakî -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Ji kerema xwe ji hesabê E-Mail-ê-ê-yê ji Setup-E-Mail-E-nameya Setup apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filters rizgar kirin DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Divê ev dirav bête kirin? Heke neyê danîn, dê dê pergalên pergalê bikar bînin" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} destnîşan dike ku dewlet {2} @@ -2961,6 +3009,7 @@ DocType: User,Location,Cîh apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Agahdarî tune DocType: Website Meta Tag,Website Meta Tag,Malpera Meta Tag DocType: Workflow State,film,fîlm +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Kopîkirin clipboard. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Sîsteyên peyda nehat dîtin apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Label pêwîst e DocType: Webhook,Webhook Headers,Webhook Headers @@ -3168,7 +3217,7 @@ DocType: Address,Address Line 1,Navnîşa Navnîşan 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Ji bo Tîpa Belgeyê apps/frappe/frappe/model/base_document.py,Data missing in table,Daneyên di tableê de winda kirin apps/frappe/frappe/utils/bot.py,Could not identify {0},Nayê naskirin {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Ev formê piştî ku we rahiştiye guherîn hate guherandin +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Ev formê piştî ku we rahiştiye guherîn hate guherandin apps/frappe/frappe/www/login.html,Back to Login,Vegere Têketinê apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Not Set DocType: Data Migration Mapping,Pull,Kişandin @@ -3236,6 +3285,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Zarokê Mifteya Mappi apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Sazkirina Hesabê Îmêlê ji kerema xwe re şîfreya xwe bikevê apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Di gelek daxwazekê de gelek pir têne nivîsîn. Ji kerema xwe daxwazên biçûk bişînin DocType: Social Login Key,Salesforce,Salesforce +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Import {0} ji {1} DocType: User,Tile,Tile apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,Odeya {0} hema hema yek bikarhêner e. DocType: Email Rule,Is Spam,Spam ye @@ -3271,7 +3321,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,peldanka-nêzîk DocType: Data Migration Run,Pull Update,Update Update apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},{0} veguherîn {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,"

Ne encam ji bo '

" DocType: SMS Settings,Enter url parameter for receiver nos,Ji bo radyoya nirxê url binivîse nos apps/frappe/frappe/utils/jinja.py,Syntax error in template,Error in Syntax apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Ji kerema xwe re paqijkirina mifteya felterê ya nirxên fîlmê bişîne @@ -3284,6 +3333,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Ji kerema x DocType: System Settings,In Days,Di rojan de DocType: Report,Add Total Row,Bi tevahî Row apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Session Destpêk Failed +DocType: Translation,Verified,Verified DocType: Print Format,Custom HTML Help,Alîkariya HTML-ê DocType: Address,Preferred Billing Address,Navnîşana Billing Preferred apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Destnîşankirin To @@ -3298,7 +3348,6 @@ DocType: Help Article,Intermediate,Di nav DocType: Module Def,Module Name,Navê Module DocType: OAuth Authorization Code,Expiration time,Demjimêran apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Forma pêşnivîsî, pîvana rûpelê, stylesa çapkirinê." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,Hûn nikarin tiştek ku hûn çêkirine hez nakin DocType: System Settings,Session Expiry,Session Expired DocType: DocType,Auto Name,Nav Name apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Hilbijêre hilbijêre @@ -3326,6 +3375,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Pergalê Page DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Têbînî: Ji hêla şîfreyên nayê veguhastin veguhastin bişînin. DocType: Custom DocPerm,Custom DocPerm,DocPerm +DocType: Translation,PR sent,PR şandin DocType: Tag Doc Category,Doctype to Assign Tags,Doktype tagên destnîşankirin DocType: Address,Warehouse,Embar apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Dropbox Setup @@ -3391,7 +3441,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Enter to comment add apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Zevî {0} hilbijêre ne. DocType: User,Birth Date,Dîroka Jidayikbûnê -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Bi Komela Girtîgehê DocType: List View Setting,Disable Count,Vebijêrk DocType: Contact Us Settings,Email ID,Nasnameya Îmêlê apps/frappe/frappe/utils/password.py,Incorrect User or Password,Bikarhêner û Nasnameya çewt @@ -3426,6 +3475,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Ev rola rojnameyê ji bo bikarhênerên bikarhêneran bikar bîne DocType: Website Theme,Theme,Mijad DocType: Web Form,Show Sidebar,Sidebar Show +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Têkiliyên Google-Têkilî. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Default Inbox apps/frappe/frappe/www/login.py,Invalid Login Token,Têketina çewt a Token apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Yekemîn navê xwe danîne û tomar bike. @@ -3453,7 +3503,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Ji kerema xwe rast bikin DocType: Top Bar Item,Top Bar Item,Top Bar Item ,Role Permissions Manager,Rêveberê Role Permissions -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,Çewtiyê bûn. Ji kerema xwe ev rapor bikin. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} sal (s) berê apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Mê DocType: System Settings,OTP Issuer Name,Navnîşana OTP Issuer apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Add to To Do @@ -3552,6 +3602,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Mîhen apps/frappe/frappe/model/document.py,none of,yek ji DocType: Desktop Icon,Page,Rûpel DocType: Workflow State,plus-sign,plus-sign +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Cache û Reş apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Agahdar nabe: Girêdana çewt / derbasdar. DocType: Kanban Board Column,Yellow,Zer DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Hejmara kolonên ji bo qada Gundê (Hemû Kolomên di nav girekê de bêtir ji 11 anîn) @@ -3566,6 +3617,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Dest DocType: Activity Log,Date,Rojek DocType: Communication,Communication Type,Tîpa Peywendiyê apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Parêzgeha Parêzgehê +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Lîsteya navîgasyon hilbijêre DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Pirtûka Serkeftinê ya Pêşveçûna Daxuyaniya Tevahî û Destnîşankirina Tevahiya Dawiyê nîşan bide DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3587,7 +3639,6 @@ DocType: Notification Recipient,Email By Role,E-Serê Role apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,Ji kerema xwe ji nûçegihanên {0} zêdetir zêde bike apps/frappe/frappe/email/queue.py,This email was sent to {0},Ev e-nameyê şandin {0} DocType: User,Represents a User in the system.,Li ser pergala bikarhênerê bişîne. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Page {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Forma nû ya nû bike apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Şîrove bike apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} ji {1} diff --git a/frappe/translations/lo.csv b/frappe/translations/lo.csv index a540f17fbe..36704b8946 100644 --- a/frappe/translations/lo.csv +++ b/frappe/translations/lo.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,ເປີດຕົວ Gradients DocType: DocType,Default Sort Order,Default Order Order apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,ສະແດງໃຫ້ເຫັນພຽງແຕ່ທົ່ງພຽງ Numeric ຈາກລາຍງານ +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,ກົດ Alt Key ເພື່ອເລັ່ງລັດທາງລັດເພີ່ມໃນ Menu ແລະ Sidebar DocType: Workflow State,folder-open,ໂຟເດີເປີດ DocType: Customize Form,Is Table,ແມ່ນຕາຕະລາງ apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,ບໍ່ສາມາດເປີດໄຟລ໌ແນບໄດ້. ທ່ານໄດ້ສົ່ງອອກມັນເປັນ CSV ບໍ? DocType: DocField,No Copy,No Copy DocType: Custom Field,Default Value,ຄ່າເລີ່ມຕົ້ນ apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Append To ແມ່ນຈໍາເປັນສໍາລັບການເຂົ້າມາ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Sync Contacts DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,ລາຍະລະອຽດແຜນທີ່ການຍ້າຍຖິ່ນຖານຂໍ້ມູນ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Unfollow apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",ຍັງບໍ່ໄດ້ສະຫນັບສະຫນູນການພິມ PDF ຜ່ານ "ພິມດິບ". ກະລຸນາເອົາແຜນການພິມເຄື່ອງໃນການຕັ້ງຄ່າເຄື່ອງພິມແລະລອງອີກຄັ້ງ. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} ແລະ {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,ມີຂໍ້ຜິດພາດທີ່ບັນທຶກການກັ່ນຕອງ apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,ໃສ່ລະຫັດຜ່ານຂອງທ່ານ apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,ບໍ່ສາມາດລຶບໂຟນເດີ Home ແລະ Attachments +DocType: Email Account,Enable Automatic Linking in Documents,ເປີດການເຊື່ອມຕໍ່ອັດຕະໂນມັດໃນເອກະສານ DocType: Contact Us Settings,Settings for Contact Us Page,Settings for Contact Us Page DocType: Social Login Key,Social Login Provider,ຜູ້ໃຫ້ບໍລິການສັງຄົມ +DocType: Email Account,"For more information, click here.","ສໍາລັບຂໍ້ມູນເພີ່ມເຕີມ, ຄລິກທີ່ນີ້ ." DocType: Transaction Log,Previous Hash,Previous Hash DocType: Notification,Value Changed,ມູນຄ່າການປ່ຽນແປງ DocType: Report,Report Type,ປະເພດລາຍງານ @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Energy Point Rule apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,ກະລຸນາໃສ່ ID ລູກຄ້າກ່ອນທີ່ຈະເຂົ້າສູ່ລະບົບສັງກະສີ DocType: Communication,Has Attachment,ມີເອກະສານຕິດຄັດ DocType: User,Email Signature,Email Signature -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ປີທີ່ຜ່ານມາ ,Addresses And Contacts,ທີ່ຢູ່ແລະຕິດຕໍ່ພົວພັນ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,ກະດານ Kanban ນີ້ຈະເປັນສ່ວນຕົວ DocType: Data Migration Run,Current Mapping,Current Mapping @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","ທ່ານກໍາລັງເລືອກເອົາ Sync Option ເປັນ ALL, ມັນຈະ resync ທັງຫມົດ \ ອ່ານເຊັ່ນດຽວກັນກັບຂໍ້ຄວາມທີ່ບໍ່ໄດ້ອ່ານຈາກເຄື່ອງແມ່ຂ່າຍ. ນີ້ອາດກໍ່ໃຫ້ເກີດການຊ້ໍາ \ ຂອງການສື່ສານ (ອີເມວ)." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},ທີ່ຖືກ synced ສຸດທ້າຍ {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,ບໍ່ສາມາດປ່ຽນເນື້ອຫາຫົວຂໍ້ +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,ບໍ່ອະນຸຍາດໃຫ້ປ່ຽນແປງ {0} ຫຼັງຈາກການຍື່ນສະເຫນີ apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","ຄໍາຮ້ອງສະຫມັກໄດ້ຖືກປັບປຸງໃຫ້ເປັນເວີຊັນໃຫມ່, ກະລຸນາໂຫຼດຫນ້ານີ້ໃຫມ່" DocType: User,User Image,User Image @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Mark apps/frappe/frappe/public/js/frappe/chat.js,Discard,ຖິ້ມ DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,ເລືອກຮູບພາບປະມານ 150px width ທີ່ມີພື້ນຫລັງໂປ່ງໃສສໍາລັບຜົນໄດ້ຮັບທີ່ດີທີ່ສຸດ. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,Relapsed +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} ຄ່າທີ່ເລືອກ DocType: Blog Post,Email Sent,Email Sent DocType: Communication,Read by Recipient On,ອ່ານໂດຍຜູ້ຮັບ DocType: User,Allow user to login only after this hour (0-24),ອະນຸຍາດໃຫ້ຜູ້ໃຊ້ເຂົ້າສູ່ລະບົບໄດ້ພຽງແຕ່ຫຼັງຈາກເວລານີ້ (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Module to Export DocType: DocType,Fields,Fields -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,ທ່ານບໍ່ໄດ້ຮັບອະນຸຍາດໃຫ້ພິມເອກະສານນີ້ +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,ທ່ານບໍ່ໄດ້ຮັບອະນຸຍາດໃຫ້ພິມເອກະສານນີ້ apps/frappe/frappe/public/js/frappe/model/model.js,Parent,ພໍ່ແມ່ apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","ກອງປະຊຸມຂອງທ່ານຫມົດອາຍຸ, ກະລຸນາເຂົ້າສູ່ລະບົບອີກເທື່ອຫນຶ່ງເພື່ອສືບຕໍ່." DocType: Assignment Rule,Priority,ຄວາມສໍາຄັນ @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Reset OTP Secret DocType: DocType,UPPER CASE,UPPER CASE apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,ກະລຸນາຕັ້ງອີເມວ DocType: Communication,Marked As Spam,Marked As Spam +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,ທີ່ຢູ່ອີເມວທີ່ຕິດຕໍ່ Google ຈະຕ້ອງຖືກ sync. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Import Subscribers apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,ບັນທຶກກັ່ນຕອງ DocType: Address,Preferred Shipping Address,ທີ່ຢູ່ສົ່ງອອກທີ່ຕ້ອງການ DocType: GCalendar Account,The name that will appear in Google Calendar,ຊື່ທີ່ຈະປາກົດໃນ Google Calendar +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,ໃຫ້ຄລິກໃສ່ {0} ເພື່ອສ້າງເຕືອນການຟື້ນຟູ. DocType: Email Account,Disable SMTP server authentication,ປິດການກວດສອບຄວາມຖືກຕ້ອງຂອງເຄື່ອງແມ່ຂ່າຍ SMTP DocType: Email Account,Total number of emails to sync in initial sync process ,ຈໍານວນອີເມວທີ່ຕ້ອງການທີ່ຈະ sync ໃນຂະບວນການປະສານງານເບື້ອງຕົ້ນ DocType: System Settings,Enable Password Policy,ເປີດໃຊ້ນະໂຍບາຍລະຫັດຜ່ານ @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,ໃສ່ລະຫັດ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,ບໍ່ຢູ່ DocType: Auto Repeat,Start Date,ວັນທີ່ເລີ່ມ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,ກໍານົດຕາຕະລາງ +DocType: Website Theme,Theme JSON,ຫົວຂໍ້ JSON apps/frappe/frappe/www/list.py,My Account,ບັນຊີຂອງຂ້ອຍ DocType: DocType,Is Published Field,ແມ່ນການເຜີຍແຜ່ພາກສະຫນາມ DocType: DocField,Set non-standard precision for a Float or Currency field,ກໍານົດຄວາມຖືກຕ້ອງທີ່ບໍ່ແມ່ນມາດຕະຖານສໍາລັບທົ່ງ Flat or Currency @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} ເພື່ອສົ່ງການອ້າງອິງເອກະສານ DocType: LDAP Settings,LDAP First Name Field,LDAP First Name Field apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,ການສົ່ງອີເມວແບບ Default ແລະ Inbox -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Customize Form apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.","ສໍາລັບການປັບປຸງ, ທ່ານສາມາດປັບປຸງພຽງແຕ່ຄໍລໍາເລືອກໄດ້." apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',ມາດຕະຖານສໍາລັບການປະເພດ 'ກວດເບິ່ງ' ຂອງພາກສະຫນາມຈະຕ້ອງ '0' ຫຼື '1' apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,ແບ່ງປັນເອກະສານນີ້ດ້ວຍ @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,ໂດເມນ HTML DocType: Blog Settings,Blog Settings,Blog Settings apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","ຊື່ DocType ຄວນເລີ່ມຕົ້ນດ້ວຍຈົດຫມາຍແລະມັນສາມາດປະກອບດ້ວຍຕົວອັກສອນ, ຕົວເລກ, ສະຖານທີ່ແລະເລິກ" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup> User Permissions DocType: Communication,Integrations can use this field to set email delivery status,ການເຊື່ອມໂຍງສາມາດໃຊ້ພາກສະຫນາມນີ້ເພື່ອກໍານົດສະຖານະການສົ່ງອີເມວ apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,ການຕັ້ງຄ່າການຈ່າຍເງິນຂອງເສັ້ນຜ່າສູນກາງ DocType: Print Settings,Fonts,Fonts DocType: Notification,Channel,Channel DocType: Communication,Opened,ໄດ້ເປີດ DocType: Workflow Transition,Conditions,ເງື່ອນໄຂ +apps/frappe/frappe/config/website.py,A user who posts blogs.,ຜູ້ໃຊ້ຜູ້ໂພດບລັອກ. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,ບໍ່ມີບັນຊີ? ລົງທະບຽນ apps/frappe/frappe/utils/file_manager.py,Added {0},ເພີ່ມ {0} DocType: Newsletter,Create and Send Newsletters,ສ້າງແລະສົ່ງຈົດຫມາຍຂ່າວ DocType: Website Settings,Footer Items,Footer Items +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,ກະລຸນາຕັ້ງຄ່າບັນຊີ Email ທີ່ຖືກຕ້ອງຈາກ Setup> Email> Account Email DocType: Website Slideshow Item,Website Slideshow Item,Website Slideshow Item apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Register OAuth Client App DocType: Error Snapshot,Frames,ເຟຣມ @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","ລະດັບ 0 ແມ່ນສໍາລັບການອະນຸຍາດລະດັບຂໍ້ຄວາມ, ລະດັບສູງສໍາລັບການອະນຸຍາດໃນລະດັບພາກສະຫນາມ." DocType: Address,City/Town,ເມືອງ / ເມືອງ DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","ນີ້ຈະກໍານົດຫົວຂໍ້ປະຈຸບັນຂອງທ່ານ, ທ່ານແນ່ໃຈວ່າທ່ານຕ້ອງການສືບຕໍ່?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},ທົ່ງບັງຄັບທີ່ຕ້ອງການໃນ {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},ຂໍ້ຜິດພາດໃນຂະນະທີ່ເຊື່ອມຕໍ່ກັບບັນຊີອີເມວ {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,ຂໍ້ຜິດພາດເກີດຂື້ນໃນຂະນະທີ່ການສ້າງຄວາມຖີ່ @@ -528,7 +537,7 @@ DocType: Event,Event Category,ຫມວດຫມູ່ເຫດການ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Columns based on apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,ແກ້ໄຂຫົວຂໍ້ DocType: Communication,Received,ໄດ້ຮັບ -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,ທ່ານບໍ່ໄດ້ຮັບອະນຸຍາດໃຫ້ເຂົ້າເຖິງຫນ້ານີ້. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,ທ່ານບໍ່ໄດ້ຮັບອະນຸຍາດໃຫ້ເຂົ້າເຖິງຫນ້ານີ້. DocType: User Social Login,User Social Login,User Login Social apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,ຂຽນໄຟລ໌ Python ຢູ່ໃນໂຟນເດີດຽວກັນບ່ອນທີ່ມັນຖືກບັນທຶກແລະສົ່ງກັບຄໍລໍາແລະຜົນໄດ້ຮັບ. DocType: Contact,Purchase Manager,Purchase Manager @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Conf apps/frappe/frappe/utils/data.py,Operator must be one of {0},ຜູ້ປະຕິບັດງານຕ້ອງເປັນຫນຶ່ງໃນ {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,ຖ້າເຈົ້າຂອງ DocType: Data Migration Run,Trigger Name,Trigger Name -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,ຂຽນຫົວຂໍ້ແລະແນະນໍາໃຫ້ກັບ blog ຂອງທ່ານ. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,ເອົາເຂດຂໍ້ມູນອອກ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,ຍຸບທັງຫມົດ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,ສີພື້ນຫລັງ @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,ບາ DocType: SMS Settings,Enter url parameter for message,ກະລຸນາໃສ່ຂໍ້ກໍານົດ url ສໍາລັບຂໍ້ຄວາມ apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,ຮູບແບບການພິມແບບລູກຄ້າໃຫມ່ apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} ມີຢູ່ແລ້ວ +DocType: Workflow Document State,Is Optional State,ແມ່ນລັດທີ່ເລືອກ DocType: Address,Purchase User,ຜູ້ຊື້ຊື້ DocType: Data Migration Run,Insert,ໃສ່ DocType: Web Form,Route to Success Link,Route to Success Link @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,ຊື DocType: File,Is Home Folder,ແມ່ນຫນ້າທໍາອິດຂອງໂຟນເດີ apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,ປະເພດ: DocType: Post,Is Pinned,ຖືກຕິດຂັດ -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},ບໍ່ມີການອະນຸຍາດໃຫ້ '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},ບໍ່ມີການອະນຸຍາດໃຫ້ '{0}' {1} DocType: Patch Log,Patch Log,Patch Log DocType: Print Format,Print Format Builder,Print Builder ແບບຟອມ 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. ນີ້ຍັງສາມາດຕັ້ງຄ່າສໍາລັບຜູ້ໃຊ້ສະເພາະໃນຫນ້າຜູ້ໃຊ້" apps/frappe/frappe/utils/data.py,only.,ພຽງແຕ່. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,ເງື່ອນໄຂ '{0}' ບໍ່ຖືກຕ້ອງ DocType: Auto Email Report,Day of Week,ວັນຂອງອາທິດ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,ເປີດ Google API ໃນ Google Settings. DocType: DocField,Text Editor,Text Editor apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,ຕັດ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,ຄົ້ນຫາຫຼືພິມຄໍາສັ່ງ @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,ຈໍານວນການສໍາຮອງຂໍ້ມູນ DB ບໍ່ສາມາດນ້ອຍກວ່າ 1 DocType: Workflow State,ban-circle,ban-circle DocType: Data Export,Excel,Excel +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Header, Breadcrumbs ແລະ Meta Tags" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,ສະຫນັບສະຫນູນທີ່ຢູ່ອີເມວບໍ່ໄດ້ກໍານົດ DocType: Comment,Published,ເຜີຍແຜ່ DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","ຫມາຍເຫດ: ສໍາລັບຜົນໄດ້ຮັບທີ່ດີທີ່ສຸດ, ຮູບພາບຕ້ອງມີຂະຫນາດແລະຄວາມກວ້າງດຽວກັນຕ້ອງສູງກວ່າລະດັບຄວາມສູງ." @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Scheduler Last event apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,ລາຍງານຂອງເອກະສານທັງຫມົດ DocType: Website Sidebar Item,Website Sidebar Item,ລາຍຊື່ Sidebar ເວັບໄຊທ໌ apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,ການເຮັດ +DocType: Google Settings,Google Settings,Google Settings apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","ເລືອກປະເທດ, ເຂດເວລາແລະສະກຸນເງິນຂອງທ່ານ" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","ໃສ່ໂປແກມ url ທີ່ຢູ່ທີ່ນີ້ (ເຊັ່ນ: sender = ERPNext, username = ERPNext, password = 1234, etc. )" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,ບໍ່ມີອີເມວບັນຊີ @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token ,Setup Wizard,Setup Wizard apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Toggle Chart +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,Syncing DocType: Data Migration Run,Current Mapping Action,ປະຈຸບັນການປະຕິບັດແຜນທີ່ DocType: Email Account,Initial Sync Count,ເລີ່ມຕົ້ນ Sync Count apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Settings for Contact Us Page. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,ພິມແບບພິມປະເພດ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,ບໍ່ມີກໍານົດສໍາລັບເງື່ອນໄຂນີ້. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,ຂະຫຍາຍທັງຫມົດ +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ບໍ່ມີແມ່ແບບທີ່ຢູ່ໃນຕອນຕົ້ນທີ່ພົບ. ກະລຸນາສ້າງໃຫມ່ຈາກ Setup> ການພິມແລະການສ້າງ Branding> Template Address. DocType: Tag Doc Category,Tag Doc Category,Tag Doc Category DocType: Data Import,Generated File,ສ້າງໄຟລ໌ apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,ຫມາຍເຫດ @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,ສະຫນາມເວລາຕ້ອງເປັນການເຊື່ອມໂຍງຫຼືການເຊື່ອມໂຍງແບບເຄື່ອນໄຫວ DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,ການແຈ້ງເຕືອນແລະຂໍ້ຄວາມຫຼາຍຈະຖືກສົ່ງມາຈາກເຄື່ອງແມ່ຂ່າຍລາຍຈ່າຍນີ້. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,ນີ້ແມ່ນລະຫັດຜ່ານແບບທົ່ວໄປເທິງ 100. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,ສົ່ງແບບຖາວອນ {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,ສົ່ງແບບຖາວອນ {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","ບໍ່ມີ {0} {1}, ເລືອກເປົ້າຫມາຍໃຫມ່ທີ່ຈະສົມທົບ" DocType: Energy Point Rule,Multiplier Field,Multiplier Field DocType: Workflow,Workflow State Field,Workflow State Field @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} ຮູ້ການເຮັດວຽກຂອງທ່ານກ່ຽວກັບ {1} ກັບ {2} ຈຸດ DocType: Auto Email Report,Zero means send records updated at anytime,ສູນແມ່ນຫມາຍເຖິງການສົ່ງບັນທຶກການປັບປຸງໄດ້ທຸກເວລາ apps/frappe/frappe/model/document.py,Value cannot be changed for {0},ບໍ່ສາມາດປ່ຽນຄ່າຂອງ {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API Settings. DocType: System Settings,Force User to Reset Password,Force ຜູ້ໃຊ້ເພື່ອຕັ້ງລະຫັດຜ່ານໃຫມ່ apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,ລາຍງານ Report Builder ແມ່ນຄຸ້ມຄອງໂດຍກົງໂດຍຜູ້ສ້າງລາຍງານ. ບໍ່ມີຫຍັງເຮັດ. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Edit Filter @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,ສ DocType: S3 Backup Settings,eu-north-1,eu-north-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: ມີພຽງແຕ່ກົດລະບຽບທີ່ຖືກອະນຸຍາດໃຫ້ມີສ່ວນດຽວກັນ, ລະດັບແລະ {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,ທ່ານບໍ່ໄດ້ຮັບອະນຸຍາດໃຫ້ອັບເດດເອກສານແບບຟອມເວັບນີ້ -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,ຂໍ້ຈໍາກັດສູງສຸດຂອງໄຟລ໌ສໍາລັບການບັນທຶກນີ້ໄດ້ບັນລຸ. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,ຂໍ້ຈໍາກັດສູງສຸດຂອງໄຟລ໌ສໍາລັບການບັນທຶກນີ້ໄດ້ບັນລຸ. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,ກະລຸນາໃຫ້ແນ່ໃຈວ່າເອກະສານການສື່ສານເອກະສານອ້າງອີງບໍ່ໄດ້ຖືກເຊື່ອມໂຍງຢ່າງກວ້າງຂວາງ. DocType: DocField,Allow in Quick Entry,ອະນຸຍາດໃຫ້ເຂົ້າດ່ວນ DocType: Error Snapshot,Locals,ທ້ອງຖິ່ນ @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,ປະເພດການຍົກເວັ້ນ apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},ບໍ່ສາມາດລຶບຫຼືຍົກເລີກໄດ້ເພາະ {0} {1} ຖືກເຊື່ອມໂຍງກັບ {2} {3} {4} apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,ຄວາມລັບ OTP ສາມາດຖືກປັບໂດຍ Administrator ເທົ່ານັ້ນ. -DocType: Web Form Field,Page Break,Page Break DocType: Website Script,Website Script,Website Script DocType: Integration Request,Subscription Notification,Notification Subscription DocType: DocType,Quick Entry,Quick Entry @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,ກໍານົດຊັບສິ apps/frappe/frappe/__init__.py,Thank you,ຂອບໃຈ apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks ສໍາລັບການເຊື່ອມໂຍງພາຍໃນ apps/frappe/frappe/config/settings.py,Import Data,ນໍາເຂົ້າຂໍ້ມູນ +DocType: Translation,Contributed Translation Doctype Name,ຄໍາແປສັບປະກອບຄໍາແປສັບ DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID DocType: Review Level,Review Level,ລະດັບການທົບທວນຄືນ @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Successfully Done apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} ລາຍຊື່ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,ຂອບໃຈ -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),ໃຫມ່ {0} (Ctrl + B) DocType: Contact,Is Primary Contact,ເປັນຕົ້ນຕໍຕິດຕໍ່ DocType: Print Format,Raw Commands,Raw Commands apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,ຮູບແບບຄໍລໍາສໍາລັບຮູບແບບການພິມ @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,ຂໍ້ຜິດ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},ຊອກຫາ {0} ໃນ {1} DocType: Email Account,Use SSL,ໃຊ້ SSL DocType: DocField,In Standard Filter,ໃນຕົວກອງມາດຕະຖານ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,ບໍ່ມີລາຍຊື່ Google ນໍາສະເຫນີເພື່ອຊິ້ງຂໍ້ມູນ. DocType: Data Migration Run,Total Pages,ຫນ້າທັງຫມົດ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: ເຂດຂໍ້ມູນ '{1}' ບໍ່ສາມາດກໍານົດເປັນເອກະລັກເທົ່າທີ່ມັນມີຄຸນຄ່າທີ່ບໍ່ແມ່ນເອກະລັກ DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","ຖ້າເປີດໃຊ້, ຜູ້ໃຊ້ຈະໄດ້ຮັບການແຈ້ງເຕືອນທຸກຄັ້ງທີ່ພວກເຂົາເຂົ້າສູ່ລະບົບ. ຖ້າບໍ່ເປີດໃຊ້, ຜູ້ໃຊ້ຈະຖືກແຈ້ງເຕືອນເທົ່ານັ້ນ." @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,ອັດຕະໂນມັດ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Unzipping files ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',ຄົ້ນຫາ '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,ບາງສິ່ງບາງຢ່າງໄດ້ຜິດ -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,ກະລຸນາປະຫຍັດກ່ອນທີ່ຈະແນບ. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,ກະລຸນາປະຫຍັດກ່ອນທີ່ຈະແນບ. DocType: Version,Table HTML,ຕາລາງ HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,hub DocType: Page,Standard,ມາດຕະຖານ @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,ບໍ່ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} ບັນທຶກຖືກລຶບ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,ບາງສິ່ງບາງຢ່າງທີ່ຜິດພາດໃນຂະນະທີ່ສ້າງໂຕ້ຕອບການເຂົ້າເຖິງ dropbox. ກະລຸນາກວດເບິ່ງຂໍ້ຜິດພາດສໍາລັບລາຍລະອຽດເພີ່ມເຕີມ. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Descendants Of -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ບໍ່ມີແມ່ແບບທີ່ຢູ່ໃນຕອນຕົ້ນທີ່ພົບ. ກະລຸນາສ້າງໃຫມ່ຈາກ Setup> ການພິມແລະການສ້າງ Branding> Template Address. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Contacts has been configured. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,ຊ່ອນລາຍະລະອຽດ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Font Styles apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,ການສະຫມັກຂອງທ່ານຈະຫມົດອາຍຸໃນ {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},ການຢືນຢັນໄດ້ລົ້ມເຫລວໃນຂະນະທີ່ໄດ້ຮັບອີເມວຈາກບັນຊີ Email {0}. ຂໍ້ຄວາມຈາກເຊີຟເວີ: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),ສະຖິຕິອີງໃສ່ການປະຕິບັດງານຂອງອາທິດຜ່ານມາ (ຈາກ {0} ກັບ {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,ການເຊື່ອມໂຍງອັດຕະໂນມັດສາມາດເປີດໃຊ້ໄດ້ຖ້າຫາກວ່າ Incoming ຖືກເປີດໃຊ້. DocType: Website Settings,Title Prefix,Prefix ຫົວຂໍ້ apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,ແອັບຯການຢືນຢັນທີ່ທ່ານສາມາດໃຊ້ໄດ້ຄື: DocType: Bulk Update,Max 500 records at a time,ສູງສຸດ 500 ບັນທຶກໃນແຕ່ລະຄັ້ງ @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,Report Filters apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,ເລືອກຄໍລໍາ DocType: Event,Participants,ຜູ້ເຂົ້າຮ່ວມ DocType: Auto Repeat,Amended From,ແກ້ໄຂຈາກ -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,ຂໍ້ມູນຂອງທ່ານຖືກສົ່ງໄປແລ້ວ +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,ຂໍ້ມູນຂອງທ່ານຖືກສົ່ງໄປແລ້ວ DocType: Help Category,Help Category,ຫມວດຫມູ່ຊ່ວຍເຫຼືອ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 ເດືອນ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,ເລືອກຮູບແບບທີ່ມີຢູ່ແລ້ວເພື່ອດັດແກ້ຫຼືເລີ່ມຮູບແບບໃຫມ່. @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Field to Track DocType: User,Generate Keys,ສ້າງຄີ DocType: Comment,Unshared,ບໍ່ໄດ້ແລກປ່ຽນ -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,ບັນທຶກໄວ້ +DocType: Translation,Saved,ບັນທຶກໄວ້ DocType: OAuth Client,OAuth Client,OAuth Client DocType: System Settings,Disable Standard Email Footer,ປິດການໃຊ້ງານອີເມວມາດຕະຖານ apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,ຮູບແບບພິມ {0} ຖືກປິດໃຊ້ງານ @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Last Updated DocType: Data Import,Action,ການປະຕິບັດ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,ລູກຄ້າຕ້ອງມີຄີ DocType: Chat Profile,Notifications,ແຈ້ງການ +DocType: Translation,Contributed,ປະກອບສ່ວນ DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy DocType: Report,Custom Report,ລາຍການລູກຄ້າ DocType: Workflow State,info-sign,info-sign @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,ຕິດຕໍ່ DocType: LDAP Settings,LDAP Username Field,LDAP Username Field apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","ພາກສະຫນາມ {0} ບໍ່ສາມາດຕັ້ງຄ່າເປັນເອກະລັກໃນ {1}, ຍ້ອນວ່າມີຄ່າທີ່ມີຢູ່ບໍ່ມີເສີຍໆ" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Customize Form DocType: User,Social Logins,Social Logins DocType: Workflow State,Trash,ຂີ້ເຫຍື້ອ DocType: Stripe Settings,Secret Key,Secret Key @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,Title Field apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,ບໍ່ສາມາດເຊື່ອມຕໍ່ກັບເຄື່ອງອີເມລ໌ທີ່ກໍາລັງອອກໄປ DocType: File,File URL,File URL DocType: Help Article,Likes,Likes +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,ການເຊື່ອມໂຍງຂອງ Google Contacts ຖືກປິດໃຊ້ງານ. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,ທ່ານຈໍາເປັນຕ້ອງເຂົ້າສູ່ລະບົບແລະມີລະບົບຈັດການລະບົບເພື່ອສາມາດເຂົ້າເຖິງການສໍາຮອງຂໍ້ມູນໄດ້. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,First Level DocType: Blogger,Short Name,ຊື່ສັ້ນ @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,ນໍາເຂົ້າ Zip DocType: Contact,Gender,ເພດ DocType: Workflow State,thumbs-down,thumbs-down -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},ແຖວຄວນເປັນຫນຶ່ງໃນ {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},ບໍ່ສາມາດກໍານົດການແຈ້ງເຕືອນກ່ຽວກັບເອກະສານແບບ {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,ເພີ່ມຜູ້ຈັດການລະບົບໃຫ້ກັບຜູ້ໃຊ້ນີ້ເພາະຕ້ອງມີລະບົບການຈັດການລະບົບຢ່າງຫນ້ອຍຫນຶ່ງລະບົບ apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,ອີເມວຍິນດີຕ້ອນຮັບ DocType: Transaction Log,Chaining Hash,Chaining Hash DocType: Contact,Maintenance Manager,Maintenance Manager +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","ສໍາລັບການປຽບທຽບ, ໃຫ້ໃຊ້> 5, <10 ຫຼື = 324. ສໍາລັບຊ່ວງ, ໃຫ້ໃຊ້ 5:10 (ສໍາລັບຄ່າລະຫວ່າງ 5 ແລະ 10)." apps/frappe/frappe/utils/bot.py,show,ສະແດງໃຫ້ເຫັນ apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Share URL apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,ຮູບແບບທີ່ບໍ່ໄດ້ຮັບການສະຫນັບສະຫນູນ @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,ແຈ້ງການ DocType: Data Import,Show only errors,ສະແດງຂໍ້ຜິດພາດເທົ່ານັ້ນ DocType: Energy Point Log,Review,ການທົບທວນຄືນ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Rows Removed -DocType: GSuite Settings,Google Credentials,Google Credentials +DocType: Google Settings,Google Credentials,Google Credentials apps/frappe/frappe/www/login.html,Or login with,ຫລືເຂົ້າສູ່ລະບົບດ້ວຍ apps/frappe/frappe/model/document.py,Record does not exist,ບັນທຶກບໍ່ມີຢູ່ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,ຊື່ລາຍຊື່ໃຫມ່ @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,ບັນຊີລາຍຊື່ DocType: Workflow State,th-large,th-large apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: ບໍ່ສາມາດຕັ້ງ Assign Submit ຖ້າບໍ່ສາມາດສົ່ງໄດ້ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,ບໍ່ເຊື່ອມໂຍງກັບບັນທຶກໃດໆ +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","ຂໍ້ຜິດພາດທີ່ເຊື່ອມຕໍ່ຫາຄໍາຮ້ອງຂໍຖາດ QZ ...

ທ່ານຈໍາເປັນຕ້ອງມີຄໍາຮ້ອງສະຫມັກ QZ Tray ຕິດຕັ້ງແລະແລ່ນ, ເພື່ອໃຊ້ຄຸນນະສົມບັດ Raw Print.

ກົດທີ່ນີ້ເພື່ອດາວໂຫລດແລະຕິດຕັ້ງຖາດ QZ .
ຄລິກທີ່ນີ້ເພື່ອຮຽນຮູ້ເພີ່ມເຕີມກ່ຽວກັບການພິມດິບ ." DocType: Chat Message,Content,ເນື້ອຫາ DocType: Workflow Transition,Allow Self Approval,ອະນຸຍາດໃຫ້ອະນຸມັດຕົນເອງ apps/frappe/frappe/www/qrcode.py,Page has expired!,Page has expired! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,ມືຂວາ DocType: Website Settings,Banner is above the Top Menu Bar.,ປ້າຍໂຄສະນາແມ່ນຢູ່ຂ້າງເທິງແຖບເມນູ. apps/frappe/frappe/www/update-password.html,Invalid Password,ລະຫັດຜ່ານບໍ່ຖືກຕ້ອງ apps/frappe/frappe/utils/data.py,1 month ago,1 ເດືອນກ່ອນ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,ອະນຸຍາດໃຫ້ເຂົ້າເຖິງ Contacts ຂອງ Google DocType: OAuth Client,App Client ID,App Client ID DocType: DocField,Currency,ສະກຸນເງິນ DocType: Website Settings,Banner,ປ້າຍໂຄສະນາ @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,ເປົ້າຫມາຍ DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","ຖ້າພາລະບົດບາດບໍ່ສາມາດເຂົ້າເຖິງລະດັບ 0, ຫຼັງຈາກນັ້ນລະດັບສູງກວ່າຈະບໍ່ມີຄວາມຫມາຍ." DocType: ToDo,Reference Type,ປະເພດອ້າງອີງ -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","ອະນຸຍາດໃຫ້ DocType, DocType. ລະມັດລະວັງ!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","ອະນຸຍາດໃຫ້ DocType, DocType. ລະມັດລະວັງ!" DocType: Domain Settings,Domain Settings,Domain Settings DocType: Auto Email Report,Dynamic Report Filters,Dynamic Report Filters DocType: Energy Point Log,Appreciation,Appreciation @@ -1468,6 +1489,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,us-west-2 DocType: DocType,Is Single,ແມ່ນໂສດ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,ສ້າງຮູບແບບໃຫມ່ +DocType: Google Contacts,Authorize Google Contacts Access,ອະນຸຍາດໃຫ້ເຂົ້າເຖິງ Google Contacts DocType: S3 Backup Settings,Endpoint URL,Endpoint URL DocType: Social Login Key,Google,Google DocType: Contact,Department,ກົມ @@ -1482,7 +1504,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Assign To DocType: List Filter,List Filter,List Filter DocType: Dashboard Chart Link,Chart,ຕາຕະລາງ apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,ບໍ່ສາມາດເອົາອອກ -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,ສົ່ງເອກສານນີ້ເພື່ອຍືນຍັນ +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,ສົ່ງເອກສານນີ້ເພື່ອຍືນຍັນ apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} ມີຢູ່ແລ້ວ. ເລືອກຊື່ອື່ນ apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,ທ່ານມີການປ່ຽນແປງທີ່ບໍ່ໄດ້ບັນທຶກໃນແບບຟອມນີ້. ກະລຸນາຊ່ວຍປະຢັດກ່ອນທີ່ທ່ານຈະສືບຕໍ່. apps/frappe/frappe/model/document.py,Action Failed,Action Failed @@ -1564,6 +1586,7 @@ DocType: DocField,Display,ສະແດງ apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Reply All DocType: Calendar View,Subject Field,Subject Field apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},ການສິ້ນສຸດໄລຍະເວລາຕ້ອງຢູ່ໃນຮູບແບບ {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},ການສະຫມັກ: {0} DocType: Workflow State,zoom-in,ຂະຫຍາຍເຂົ້າ apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,ບໍ່ສາມາດເຊື່ອມຕໍ່ກັບເຄື່ອງແມ່ຂ່າຍ apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},ວັນ {0} ຕ້ອງຢູ່ໃນຮູບແບບ: {1} @@ -1575,8 +1598,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,ໄອຄອນຈະປາກົດເທິງປຸ່ມ DocType: Role Permission for Page and Report,Set Role For,Set Role For +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,ການເຊື່ອມຕໍ່ແບບອັດຕະໂນມັດສາມາດເປີດໃຊ້ໄດ້ສໍາລັບບັນຊີອີເມວດຽວເທົ່ານັ້ນ. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,ບໍ່ມີບັນຊີອີເມວຖືກມອບຫມາຍ +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ບັນຊີອີເມວບໍ່ໄດ້ຕັ້ງຄ່າ. ກະລຸນາສ້າງບັນຊີ Email ໃຫມ່ຈາກ Setup> Email> Account Email apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,ການມອບຫມາຍ +DocType: Google Contacts,Last Sync On,Last Sync On apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},ໄດ້ຮັບໂດຍ {0} ຜ່ານກົດລະບຽບອັດຕະໂນມັດ {1} apps/frappe/frappe/config/website.py,Portal,Portal apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,ຂອບໃຈສໍາລັບອີເມວຂອງທ່ານ @@ -1597,7 +1623,6 @@ DocType: GSuite Settings,GSuite Settings,GSuite Settings DocType: Integration Request,Remote,ໄລຍະໄກ DocType: File,Thumbnail URL,Thumbnail URL apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,ດາວໂຫລດລາຍງານ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup> User apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},ການປັບແຕ່ງສໍາລັບ {0} ສົ່ງອອກໄປຫາ:
{1} DocType: GCalendar Account,Calendar Name,ຊື່ປະຕິທິນ apps/frappe/frappe/templates/emails/new_user.html,Your login id is,id login ຂອງທ່ານແມ່ນ @@ -1647,6 +1672,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},ໄ apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,ຊ່ອງຮູບພາບຕ້ອງເປັນຊື່ສະຫນາມຊື່ທີ່ຖືກຕ້ອງ apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,ທ່ານຈໍາເປັນຕ້ອງເຂົ້າສູ່ລະບົບເພື່ອເຂົ້າເບິ່ງຫນ້ານີ້ DocType: Assignment Rule,Example: {{ subject }},ຕົວຢ່າງ: {{ຫົວຂໍ້}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Fieldname {0} ຖືກຈໍາກັດ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},ທ່ານບໍ່ສາມາດກໍານົດ 'ອ່ານພຽງແຕ່' ສໍາລັບເຂດ {0} DocType: Social Login Key,Enable Social Login,ເປີດການເຂົ້າສູ່ລະບົບສັງຄົມ DocType: Workflow,Rules defining transition of state in the workflow.,ກົດລະບຽບກໍານົດການຫັນປ່ຽນຂອງລັດໃນຂະບວນການເຮັດວຽກ. @@ -1667,10 +1693,10 @@ DocType: Website Settings,Route Redirects,Route Redirects apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Email Inbox apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},ການຟື້ນຟູ {0} ເປັນ {1} DocType: Assignment Rule,Automatically Assign Documents to Users,ອັດຕະໂນມັດກໍານົດເອກະສານໃຫ້ຜູ້ຊົມໃຊ້ +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,ເປີດຫນ້າ Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,ແບບອີເມວສໍາລັບການສອບຖາມທົ່ວໄປ. DocType: Letter Head,Letter Head Based On,ຫົວຈົດຫມາຍອີງໃສ່ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,ກະລຸນາປິດຫນ້າຕ່າງນີ້ -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Payment Complete DocType: Contact,Designation,ການອອກແບບ DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Meta Tags @@ -1709,6 +1735,7 @@ DocType: System Settings,Choose authentication method to be used by all users, DocType: Error Snapshot,Parent Error Snapshot,ຄອບຄົວຂໍ້ມູນຄວາມຜິດພາດ DocType: GCalendar Account,GCalendar Account,ບັນຊີ GCalendar DocType: Language,Language Name,ຊື່ພາສາ +DocType: Workflow Document State,Workflow Action is not created for optional states,ການປະຕິບັດງານຂອງ Workflow ບໍ່ໄດ້ຖືກສ້າງຂື້ນໃນລັດຕ່າງໆ DocType: Customize Form,Customize Form,Customize Form DocType: DocType,Image Field,Image Field apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),ເພີ່ມ {0} ({1}) @@ -1750,6 +1777,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,ໃຊ້ກົດນີ້ຖ້າຜູ້ໃຊ້ເປັນເຈົ້າຂອງ DocType: About Us Settings,Org History Heading,Org History Header apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Server Error +DocType: Contact,Google Contacts Description,ລາຍຊື່ Google Contacts apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,ບໍ່ສາມາດປ່ຽນຊື່ພາລະບົດບາດມາດຕະຖານໄດ້ DocType: Review Level,Review Points,ຈຸດທົບທວນ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Missing parameter Kanban Board Name @@ -1767,7 +1795,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,ບໍ່ຢູ່ໃນໂຫມດນັກພັດທະນາ! ຕັ້ງຢູ່ໃນ site_config.json ຫຼືເຮັດ DocType 'Custom'. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,ໄດ້ຮັບ {0} ຈຸດ DocType: Web Form,Success Message,ຂໍ້ຄວາມຄວາມສໍາເລັດ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","ສໍາລັບການປຽບທຽບ, ໃຫ້ໃຊ້> 5, <10 ຫຼື = 324. ສໍາລັບຊ່ວງ, ໃຫ້ໃຊ້ 5:10 (ສໍາລັບຄ່າລະຫວ່າງ 5 ແລະ 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","ລາຍລະອຽດສໍາລັບລາຍການຫນ້າ, ໃນຂໍ້ຄວາມທໍາມະດາ, ພຽງແຕ່ສອງສາມເສັ້ນ. (ສູງສຸດ 140 ຕົວອັກສອນ)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Show permissions DocType: DocType,Restrict To Domain,ຈໍາກັດການໂດເມນ @@ -1789,6 +1816,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Not An apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,ກໍານົດຈໍານວນ DocType: Auto Repeat,End Date,ວັນສິ້ນສຸດ DocType: Workflow Transition,Next State,Next State +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} ທີ່ຕິດຕໍ່ Google Contacts. DocType: System Settings,Is First Startup,ແມ່ນການເລີ່ມຕົ້ນຄັ້ງທໍາອິດ apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},ອັບເດດກັບ {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,ຍ້າຍໄປ @@ -1838,6 +1866,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} ປະຕິທິນ apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,ແມ່ແບບນໍາເຂົ້າຂໍ້ມູນ DocType: Workflow State,hand-left,ມືຊ້າຍ +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,ເລືອກລາຍການລາຍການຫຼາຍ apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,ຂະຫນາດຂອງການສໍາຮອງ: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},ເຊື່ອມໂຍງກັບ {0} DocType: Braintree Settings,Private Key,ຄີເອກກະຊົນ @@ -1880,13 +1909,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,ຄວາມສົນໃຈ DocType: Bulk Update,Limit,ຈໍາກັດ DocType: Print Settings,Print taxes with zero amount,ພິມພາສີທີ່ມີຈໍານວນເງິນບໍ່ -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ບັນຊີອີເມວບໍ່ໄດ້ຕັ້ງຄ່າ. ກະລຸນາສ້າງບັນຊີ Email ໃຫມ່ຈາກ Setup> Email> Account Email DocType: Workflow State,Book,Book DocType: S3 Backup Settings,Access Key ID,Access Key ID DocType: Chat Message,URLs,URLs apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,ຊື່ແລະນາມສະກຸນຕົວເອງແມ່ນງ່າຍທີ່ຈະເດົາ. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},ລາຍວຽກ {0} DocType: About Us Settings,Team Members Heading,ທີມທີມຫົວຂໍ້ +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,ເລືອກລາຍການລາຍການ apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},ເອກະສານ {0} ໄດ້ຖືກກໍານົດໃຫ້ສະຖານະ {1} ໂດຍ {2} DocType: Address Template,Address Template,ແມ່ແບບທີ່ຢູ່ DocType: Workflow State,step-backward,ກ້າວຫນ້າ @@ -1910,6 +1939,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Export Custom Permissions apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,ບໍ່ມີ: End of Workflow DocType: Version,Version,ຮຸ່ນ +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,ເປີດບັນຊີລາຍການລາຍການ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 ເດືອນ DocType: Chat Message,Group,ກຸ່ມ apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},ມີບັນຫາກັບ url ໄຟລ໌: {0} @@ -1965,6 +1995,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 ປີ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} ສົ່ງຄືນຈຸດຂອງທ່ານໃນ {1} DocType: Workflow State,arrow-down,ລູກສອນລົງ DocType: Data Import,Ignore encoding errors,Ignore error encoding +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,ພູມສັນຖານ DocType: Letter Head,Letter Head Name,Letter Head Name DocType: Web Form,Client Script,Client Script DocType: Assignment Rule,Higher priority rule will be applied first,ລະບຽບການບູລິມະສິດທີ່ສູງຂຶ້ນຈະຖືກນໍາໃຊ້ກ່ອນ @@ -2009,6 +2040,7 @@ DocType: Kanban Board Column,Green,ສີຂຽວ apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,ພຽງແຕ່ພາກສະຫນາມຈໍາເປັນຕ້ອງມີການບັນທຶກໃຫມ່. ທ່ານສາມາດລຶບຄໍລໍາທີ່ບໍ່ຈໍາເປັນຕ້ອງບັງຄັບຖ້າທ່ານຕ້ອງການ. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} ຕ້ອງເລີ່ມຕົ້ນແລະສິ້ນສຸດລົງດ້ວຍຈົດຫມາຍສະບັບແລະສາມາດມີຕົວອັກສອນ, ຍັດຫຼືຍີນ." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,ກະຕຸ້ນການປະຕິບັດປະຖົມ apps/frappe/frappe/core/doctype/user/user.js,Create User Email,ສ້າງ Email ຜູ້ໃຊ້ apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,ຂຽນເຂດ {0} ຕ້ອງເປັນຊື່ທີ່ຖືກຕ້ອງ DocType: Auto Email Report,Filter Meta,Filter Meta @@ -2038,6 +2070,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Timeline Field apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,ກໍາລັງໂຫລດ DocType: Auto Email Report,Half Yearly,Half Yearly +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,My Profile apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Date Modified Last DocType: Contact,First Name,ຊື່ແທ້ DocType: Post,Comments,ຄວາມຄິດເຫັນ @@ -2060,6 +2093,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Content Hash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},ໂພດໂດຍ {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} assigned {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,ບໍ່ມີການຕິດຕໍ່ Google Contacts ໃຫມ່. DocType: Workflow State,globe,ໂລກ apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},ຄ່າເສລີ່ຍຂອງ {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Clear Error Logs @@ -2086,6 +2120,8 @@ DocType: Workflow State,Inverse,Inverse DocType: Activity Log,Closed,ປິດ DocType: Report,Query,ການສອບຖາມ DocType: Notification,Days After,Days After +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Page Shortcuts +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portrait apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Request Timed Out DocType: System Settings,Email Footer Address,Email Footer Address apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,ການປັບປຸງຈຸດພະລັງງານ @@ -2113,6 +2149,7 @@ For Select, enter list of Options, each on a new line.","ສໍາລັບກ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 ນາທີກ່ອນຫນ້ານີ້ apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,ບໍ່ມີ Active Sessions apps/frappe/frappe/model/base_document.py,Row,Row +DocType: Contact,Middle Name,ຊື່ກາງ apps/frappe/frappe/public/js/frappe/request.js,Please try again,ກະລຸນາລອງອີກເທື່ອຫນຶ່ງ DocType: Dashboard Chart,Chart Options,ຕົວເລືອກ Chart DocType: Data Migration Run,Push Failed,Push Failed @@ -2141,6 +2178,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,resize-small DocType: Comment,Relinked,Relinked DocType: Role Permission for Page and Report,Roles HTML,Roles HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,ໄປ apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Workflow ຈະເລີ່ມຕົ້ນຫຼັງຈາກການບັນທຶກ. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","ຖ້າຂໍ້ມູນຂອງທ່ານແມ່ນຢູ່ໃນ HTML, ກະລຸນາຄັດລອກໂຄ້ດ HTML ແນ່ນອນດ້ວຍແທັກ." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,ວັນທີມັກຈະງ່າຍທີ່ຈະເດົາ. @@ -2169,7 +2207,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Desktop Icon apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,ຍົກເລີກເອກະສານນີ້ apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Date Range -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup> User Permissions apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} ຮູ້ຈັກ {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Values Changed apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,ຂໍ້ຜິດພາດໃນການແຈ້ງເຕືອນ @@ -2234,6 +2271,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Bulk Delete DocType: DocShare,Document Name,ຊື່ເອກສານ apps/frappe/frappe/config/customization.py,Add your own translations,ເພີ່ມການແປພາສາຂອງທ່ານເອງ +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,ຄົ້ນຫາລາຍການລົງ DocType: S3 Backup Settings,eu-central-1,eu-central-1 DocType: Auto Repeat,Yearly,ປະຈໍາປີ apps/frappe/frappe/public/js/frappe/model/model.js,Rename,ປ່ຽນຊື່ @@ -2284,6 +2322,7 @@ DocType: Workflow State,plane,plane apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,ຂໍ້ຜິດພະລາດທີ່ກໍານົດໄວ້ໃນຮັງ ກະລຸນາຕິດຕໍ່ເຈົ້າຫນ້າທີ່. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,ສະແດງບົດລາຍງານ DocType: Auto Repeat,Auto Repeat Schedule,ຕາລາງເວລາອັດຕະໂນມັດ +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,ເບິ່ງການອ້າງອິງ DocType: Address,Office,Office DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} ມື້ກ່ອນຫນ້ານີ້ @@ -2317,7 +2356,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required, apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,ການຕັ້ງຄ່າຂອງຂ້ອຍ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,ຊື່ກຸ່ມບໍ່ສາມາດເປົ່າໄດ້. DocType: Workflow State,road,ເສັ້ນທາງ -DocType: Website Route Redirect,Source,ແຫຼ່ງຂໍ້ມູນ +DocType: Contact,Source,ແຫຼ່ງຂໍ້ມູນ apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Active Sessions apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,ມີພຽງແຕ່ຫນຶ່ງເທົ່າໃນແບບຟອມ apps/frappe/frappe/public/js/frappe/chat.js,New Chat,New Chat @@ -2339,6 +2378,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,ກະລຸນາໃສ່ Authorize URL DocType: Email Account,Send Notification to,ສົ່ງແຈ້ງການກັບ apps/frappe/frappe/config/integrations.py,Dropbox backup settings,ການຕັ້ງຄ່າສໍາຮອງ Dropbox +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,ບາງສິ່ງບາງຢ່າງທີ່ຜິດພາດໃນລະຫວ່າງການຜະລິດໂຕ້ຕອບ. ໃຫ້ຄລິກໃສ່ {0} ເພື່ອສ້າງຊື່ໃຫມ່. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,ລົບການກໍາຫນົດຄ່າທັງຫມົດ? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,ພຽງແຕ່ຜູ້ເບິ່ງແຍງສາມາດແກ້ໄຂ DocType: Auto Repeat,Reference Document,ເອກະສານອ້າງອີງ @@ -2363,6 +2403,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,ສາມາດກໍານົດພາລະບົດບາດສໍາລັບຜູ້ໃຊ້ຈາກຫນ້າຜູ້ໃຊ້ຂອງເຂົາເຈົ້າ. DocType: Website Settings,Include Search in Top Bar,ລວມເອົາການຊອກຫາໃນແຖບທາງເທີງ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Urgent] Error while creating recurring% s ສໍາລັບ% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Global Shortcuts DocType: Help Article,Author,ຜູ້ຂຽນ DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,ບໍ່ພົບເອກະສານສໍາລັບການກັ່ນຕອງໃຫ້ @@ -2398,10 +2439,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, ແຖວ {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","ຖ້າທ່ານກໍາລັງອັບໂຫລດບັນທຶກໃຫມ່, "Naming Series" ຈະຕ້ອງບັງຄັບຖ້າມີ." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,ແກ້ໄຂຄຸນສົມບັດ -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,ບໍ່ສາມາດເປີດຕົວຕົວຢ່າງໄດ້ເມື່ອ {0} ເປີດ +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,ບໍ່ສາມາດເປີດຕົວຕົວຢ່າງໄດ້ເມື່ອ {0} ເປີດ DocType: Activity Log,Timeline Name,Timeline Name DocType: Comment,Workflow,Workflow apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,ກະລຸນາຕັ້ງ URL ຖານຢູ່ໃນລະບົບເຂົ້າສູ່ລະບົບສັງຄົມສໍາລັບ Frappe +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Keyboard Shortcuts DocType: Portal Settings,Custom Menu Items,Custom Menu Items apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,ຄວາມຍາວຂອງ {0} ຄວນຢູ່ລະຫວ່າງ 1 ຫາ 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,ການເຊື່ອມຕໍ່ສູນເສຍ. ບາງຄຸນສົມບັດອາດຈະບໍ່ເຮັດວຽກ. @@ -2464,6 +2506,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,ແຖວ DocType: DocType,Setup,ຕັ້ງຄ່າ apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} ສ້າງແລ້ວສົບຜົນສໍາເລັດ apps/frappe/frappe/www/update-password.html,New Password,ລະຫັດຜ່ານໃຫມ່ +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,ເລືອກເຂດຂໍ້ມູນ apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,ອອກຈາກການສົນທະນານີ້ DocType: About Us Settings,Team Members,ທີມງານສະມາຊິກ DocType: Blog Settings,Writers Introduction,ການຂຽນບົດນໍາ @@ -2533,13 +2576,12 @@ DocType: Chat Room,Name,ຊື່ DocType: Communication,Email Template,ແບບອີເມວ DocType: Energy Point Settings,Review Levels,ລະດັບການທົບທວນຄືນ DocType: Print Format,Raw Printing,Raw Printing -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,ບໍ່ສາມາດເປີດ {0} ເມື່ອຕົວຢ່າງຂອງມັນເປີດ +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,ບໍ່ສາມາດເປີດ {0} ເມື່ອຕົວຢ່າງຂອງມັນເປີດ DocType: DocType,"Make ""name"" searchable in Global Search",ເຮັດ "ຊື່" ສາມາດຄົ້ນຫາໄດ້ໃນການຊອກຫາທົ່ວໂລກ DocType: Data Migration Mapping,Data Migration Mapping,Mapping Migration Data DocType: Data Import,Partially Successful,ບາງສ່ວນສໍາເລັດຜົນ DocType: Communication,Error,ຂໍ້ຜິດພາດ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},ບໍ່ສາມາດປ່ຽນແປ້ນພິມຈາກ {0} ກັບ {1} ໃນແຖວ {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","ຂໍ້ຜິດພາດທີ່ເຊື່ອມຕໍ່ຫາຄໍາຮ້ອງຂໍຖາດ QZ ...

ທ່ານຈໍາເປັນຕ້ອງມີຄໍາຮ້ອງສະຫມັກ QZ Tray ຕິດຕັ້ງແລະແລ່ນ, ເພື່ອໃຊ້ຄຸນນະສົມບັດ Raw Print.

ກົດທີ່ນີ້ເພື່ອດາວໂຫລດແລະຕິດຕັ້ງຖາດ QZ .
ຄລິກທີ່ນີ້ເພື່ອຮຽນຮູ້ເພີ່ມເຕີມກ່ຽວກັບການພິມດິບ ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,ຖ່າຍຮູບ apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,ຫຼີກເວັ້ນປີທີ່ພົວພັນກັບທ່ານ. DocType: Web Form,Allow Incomplete Forms,ອະນຸຍາດໃຫ້ແບບຟອມບໍ່ຄົບຖ້ວນ @@ -2635,7 +2677,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",ເລືອກເປົ້າຫມາຍ = "_blank" ເພື່ອເປີດໃນຫນ້າໃຫມ່. DocType: Portal Settings,Portal Menu,Menu Portal DocType: Website Settings,Landing Page,Landing Page -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,ກະລຸນາລົງທະບຽນຫຼືເຂົ້າສູ່ລະບົບເພື່ອເລີ່ມຕົ້ນ DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","ຕົວເລືອກຕິດຕໍ່, ເຊັ່ນ: "Query Sales, ການສະຫນັບສະຫນູນການສອບຖາມ", etc ແຕ່ລະຄົນຢູ່ໃນເສັ້ນໃຫມ່ຫຼືຖືກແຍກໂດຍຫຍໍ້." apps/frappe/frappe/twofactor.py,Verfication Code,Verfication Code apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} ແລ້ວບໍ່ໄດ້ຈອງ @@ -2721,6 +2762,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,ການວາ DocType: Address,Sales User,Sales User apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","ປ່ຽນຄຸນສົມບັດພາກສະຫນາມ (ເຊື່ອງ, ອ່ານ, ອະນຸຍາດ, ແລະອື່ນໆ)" DocType: Property Setter,Field Name,ຊື່ພາກສະຫນາມ +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,ລູກຄ້າ DocType: Print Settings,Font Size,Font Size DocType: User,Last Password Reset Date,Password Last Reset Date DocType: System Settings,Date and Number Format,ຮູບແບບວັນທີແລະຈໍານວນ @@ -2786,6 +2828,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Group Node apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,ສົມທົບກັບທີ່ມີຢູ່ແລ້ວ DocType: Blog Post,Blog Intro,Blog Intro apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,New Mention +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,ໄປຫາພາກສະຫນາມ DocType: Prepared Report,Report Name,ລາຍຊື່ຊື່ apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,ກະລຸນາ refresh ເພື່ອໃຫ້ໄດ້ເອກະສານຫຼ້າສຸດ. apps/frappe/frappe/core/doctype/communication/communication.js,Close,ປິດ @@ -2795,10 +2838,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,ເຫດການ DocType: Social Login Key,Access Token URL,Access Token URL apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,ກະລຸນາຕັ້ງຄ່າການເຂົ້າໃຊ້ Dropbox ໃນເວັບໄຊທ໌ຂອງທ່ານ +DocType: Google Contacts,Google Contacts,Google Contacts DocType: User,Reset Password Key,Reset Key Password apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,ແກ້ໄຂໂດຍ DocType: User,Bio,ຊີວະປະວັດ apps/frappe/frappe/limits.py,"To renew, {0}.","ເພື່ອຕໍ່ໃຫມ່, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Saved Successfully +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,ສົ່ງອີເມວໄປທີ່ {0} ເພື່ອເຊື່ອມຕໍ່ມັນຢູ່ທີ່ນີ້. DocType: File,Folder,ໂຟເດີ DocType: DocField,Perm Level,Perm Level DocType: Print Settings,Page Settings,Page Settings @@ -2828,6 +2874,7 @@ DocType: Workflow State,remove-sign,ເອົາອອກ DocType: Dashboard Chart,Full,ເຕັມ DocType: DocType,User Cannot Create,ຜູ້ໃຊ້ບໍ່ສາມາດສ້າງ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,ທ່ານໄດ້ຮັບຈຸດ {0} +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup> User DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","ຖ້າທ່ານຕັ້ງຄ່ານີ້, ເອກະສານນີ້ຈະມາໃນແຖບເລື່ອນລົງພາຍໃຕ້ພໍ່ແມ່ທີ່ເລືອກ." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,ບໍ່ມີອີເມວ apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,ບັນດາເຂດທີ່ຍັງບໍ່ມີ: @@ -2841,13 +2888,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,ສ DocType: Web Form,Web Form Fields,Web Field Forms DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,ແບບຟອມດັດແກ້ຂອງຜູ້ໃຊ້ໃນເວັບໄຊທ໌. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,ຍົກເລີກຖາວອນ {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,ຍົກເລີກຖາວອນ {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,ທາງເລືອກທີ່ 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,ຈໍານວນທັງຫມົດ apps/frappe/frappe/utils/password_strength.py,This is a very common password.,ນີ້ແມ່ນລະຫັດຜ່ານທົ່ວໄປຫຼາຍ. DocType: Personal Data Deletion Request,Pending Approval,Pending Approval apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,ເອກະສານບໍ່ສາມາດຖືກມອບຫມາຍໃຫ້ຖືກຕ້ອງ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},ບໍ່ໄດ້ຮັບອະນຸຍາດສໍາລັບ {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,ບໍ່ມີຄ່າທີ່ຈະສະແດງ DocType: Personal Data Download Request,Personal Data Download Request,ຂໍ້ມູນສ່ວນຕົວດາວໂຫລດຂໍ້ມູນ apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} ແບ່ງປັນເອກະສານນີ້ດ້ວຍ {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},ເລືອກ {0} @@ -2863,7 +2911,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},ອີເມວນີ້ຖືກສົ່ງໄປຫາ {0} ແລະຖືກຄັດລອກໄປທີ່ {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,ການເຂົ້າລະຫັດຫລືລະຫັດຜ່ານທີ່ບໍ່ຖືກຕ້ອງ DocType: Social Login Key,Social Login Key,Social Key Key -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,ກະລຸນາຕັ້ງຄ່າບັນຊີ Email ທີ່ຖືກຕ້ອງຈາກ Setup> Email> Account Email apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,ການກັ່ນຕອງໄດ້ຖືກບັນທືກ DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","ສະກຸນເງິນນີ້ຄວນຖືກສ້າງຕັ້ງຂຶ້ນແນວໃດ? ຖ້າບໍ່ໄດ້ກໍານົດ, ຈະໃຊ້ຄ່າເລີ່ມຕົ້ນຂອງລະບົບ" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} ຖືກຕັ້ງຄ່າໃຫ້ລັດ {2} @@ -2989,6 +3036,7 @@ DocType: User,Location,ສະຖານທີ່ apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,ບໍ່ມີຂໍ້ມູນ DocType: Website Meta Tag,Website Meta Tag,Meta Tag ເວັບໄຊທ໌ DocType: Workflow State,film,film +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,ຄັດລອກໄປຍັງຄລິບບອດ. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} ບໍ່ພົບການຕັ້ງຄ່າ apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,ປ້າຍກໍາກັບແມ່ນບັງຄັບ DocType: Webhook,Webhook Headers,Webhook Headers @@ -3197,7 +3245,7 @@ DocType: Address,Address Line 1,Address Line 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,ສໍາລັບປະເພດເອກະສານ apps/frappe/frappe/model/base_document.py,Data missing in table,ຂໍ້ມູນທີ່ຂາດຫາຍໄປໃນຕາຕະລາງ apps/frappe/frappe/utils/bot.py,Could not identify {0},ບໍ່ສາມາດກໍານົດ {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,ແບບຟອມນີ້ໄດ້ຖືກດັດແກ້ຫຼັງຈາກທີ່ທ່ານໄດ້ໂຫລດມັນ +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,ແບບຟອມນີ້ໄດ້ຖືກດັດແກ້ຫຼັງຈາກທີ່ທ່ານໄດ້ໂຫລດມັນ apps/frappe/frappe/www/login.html,Back to Login,ກັບເຂົ້າສູ່ລະບົບ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,ບໍ່ກໍານົດ DocType: Data Migration Mapping,Pull,ດຶງ @@ -3264,6 +3312,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,ຕາຕະລາງ apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,ກະລຸນາໃສ່ລະຫັດຜ່ານຂອງທ່ານເພື່ອ: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,ຫຼາຍເກີນໄປຂຽນໃນຄໍາຂໍຫນຶ່ງ. ກະລຸນາສົ່ງຄໍາຮ້ອງຂໍຂະຫນາດນ້ອຍກວ່າ DocType: Social Login Key,Salesforce,Salesforce +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},ການນໍາເຂົ້າ {0} ຂອງ {1} DocType: User,Tile,ກະເບື້ອງ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} ຫ້ອງຕ້ອງມີຜູ້ໃຊ້ຫນຶ່ງຄົນສຸດທ້າຍ. DocType: Email Rule,Is Spam,Is Spam @@ -3301,7 +3350,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,ໂຟເດີປິດ DocType: Data Migration Run,Pull Update,ດຶງປັບປຸງ apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},merged {0} into {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

DocType: SMS Settings,Enter url parameter for receiver nos,ກະລຸນາໃສ່ລະຫັດ url ສໍາລັບ receiver nos apps/frappe/frappe/utils/jinja.py,Syntax error in template,ຂໍ້ຜິດພາດຂອງຄໍາສັບໃນແບບຟອມ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,ກະລຸນາຕັ້ງຄ່າຕົວກອງໃນຕາຕະລາງກ່ອງລາຍງານ. @@ -3314,6 +3362,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","ຂໍອ DocType: System Settings,In Days,ໃນມື້ DocType: Report,Add Total Row,ເພີ່ມແຖວທັງຫມົດ apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Session Start Failed +DocType: Translation,Verified,Verified DocType: Print Format,Custom HTML Help,Custom HTML Help DocType: Address,Preferred Billing Address,ທີ່ຢູ່ເບື້ອງຊອງທີ່ຕ້ອງການ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,ການມອບຫມາຍໃຫ້ @@ -3328,7 +3377,6 @@ DocType: Help Article,Intermediate,ລະດັບກາງ DocType: Module Def,Module Name,ຊື່ໂມດູນ DocType: OAuth Authorization Code,Expiration time,ເວລາຫມົດອາຍຸ apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","ກໍານົດຮູບແບບທີ່ຖືກຕ້ອງ, ຂະຫນາດຫນ້າ, ແບບພິມ, ອື່ນໆ." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,ທ່ານບໍ່ສາມາດຢາກສິ່ງທີ່ທ່ານສ້າງໄດ້ DocType: System Settings,Session Expiry,Session Expiry DocType: DocType,Auto Name,ຊື່ອັດຕະໂນມັດ apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,ເລືອກເອກະສານຕິດຄັດ @@ -3356,6 +3404,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,System Page DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,ຫມາຍເຫດ: ໂດຍອີເມວສໍາລັບການສໍາຮອງຂໍ້ມູນທີ່ລົ້ມເຫລວຖືກສົ່ງໄປແລ້ວ. DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm +DocType: Translation,PR sent,PR sent DocType: Tag Doc Category,Doctype to Assign Tags,Doctype to Assign Tags DocType: Address,Warehouse,Warehouse apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,ການຕັ້ງຄ່າ Dropbox @@ -3423,7 +3472,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Enter ເພື່ອເພີ່ມຄວາມຄິດເຫັນ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,ເຂດ {0} ບໍ່ສາມາດເລືອກໄດ້. DocType: User,Birth Date,ວັນເກີດ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,ມີການເຂົ້າຮ່ວມກຸ່ມ DocType: List View Setting,Disable Count,Disable Count DocType: Contact Us Settings,Email ID,Email ID apps/frappe/frappe/utils/password.py,Incorrect User or Password,ຜູ້ໃຊ້ທີ່ບໍ່ຖືກຕ້ອງຫຼືລະຫັດຜ່ານ @@ -3458,6 +3506,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,ການອະນຸຍາດຜູ້ໃຊ້ສໍາລັບການປັບປຸງບົດບາດນີ້ສໍາລັບຜູ້ໃຊ້ DocType: Website Theme,Theme,ຫົວຂໍ້ DocType: Web Form,Show Sidebar,ສະແດງ Sidebar +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,ການເຊື່ອມໂຍງຂອງ Google Contacts. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Default Inbox apps/frappe/frappe/www/login.py,Invalid Login Token,Invalid Login Token apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,ທໍາອິດກໍານົດຊື່ແລະບັນທຶກການບັນທຶກ. @@ -3485,7 +3534,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,ກະລຸນາແກ້ໄຂ DocType: Top Bar Item,Top Bar Item,Top Bar Item ,Role Permissions Manager,Role Permissions Manager -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,ມີຂໍ້ຜິດພາດ. ກະລຸນາລາຍງານນີ້. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ປີທີ່ຜ່ານມາ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,ຍິງ DocType: System Settings,OTP Issuer Name,ຊື່ຜູ້ອອກຂອງ OTP apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,ຕື່ມການເພື່ອເຮັດ @@ -3585,6 +3634,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","ກາ apps/frappe/frappe/model/document.py,none of,none of DocType: Desktop Icon,Page,ຫນ້າ DocType: Workflow State,plus-sign,ບວກລົງ +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Clear Cache and Reload apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,ບໍ່ສາມາດປັບປຸງ: ການເຊື່ອມຕໍ່ທີ່ບໍ່ຖືກຕ້ອງ / ທີ່ຫມົດອາຍຸ. DocType: Kanban Board Column,Yellow,ສີເຫຼືອງ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),ຈໍານວນຄໍລໍາສໍາລັບເຂດຂໍ້ມູນໃນຕາຂ່າຍໄຟຟ້າ (ຈໍານວນຄໍລໍາລວມຢູ່ໃນຕາຂ່າຍໄຟຟ້າຄວນນ້ອຍກວ່າ 11) @@ -3599,6 +3649,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,New DocType: Activity Log,Date,Date DocType: Communication,Communication Type,ປະເພດການສື່ສານ apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,ຕາຕະລາງແມ່ບົດ +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,ຄົ້ນຫາບັນຊີຂຶ້ນ DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,ສະແດງຂໍ້ຜິດພາດຢ່າງເຕັມທີ່ແລະອະນຸຍາດໃຫ້ລາຍງານບັນຫາສໍາລັບນັກພັດທະນາ DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3620,7 +3671,6 @@ DocType: Notification Recipient,Email By Role,Email By Role apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,ກະລຸນາອັບເກດເພື່ອເພີ່ມຫຼາຍກວ່າ {0} ຈອງ apps/frappe/frappe/email/queue.py,This email was sent to {0},ອີເມວນີ້ຖືກສົ່ງໄປຫາ {0} DocType: User,Represents a User in the system.,ສະແດງຕົວຜູ້ໃຊ້ໃນລະບົບ. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},ຫນ້າ {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,ເລີ່ມຮູບແບບໃຫມ່ apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Add a comment apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} ຂອງ {1} diff --git a/frappe/translations/lt.csv b/frappe/translations/lt.csv index bf03324c3b..7cb4967cac 100644 --- a/frappe/translations/lt.csv +++ b/frappe/translations/lt.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Įgalinti gradientus DocType: DocType,Default Sort Order,Numatytoji rūšiavimo tvarka apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Rodomi tik skaitmeniniai laukai iš ataskaitos +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,"Paspauskite Alt klavišą, kad įjungtumėte papildomus sparčiuosius klavišus meniu ir šoninėje juostoje" DocType: Workflow State,folder-open,atidarytas aplankas DocType: Customize Form,Is Table,Ar lentelė apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Nepavyko atidaryti pridėto failo. Ar eksportavote jį kaip CSV? DocType: DocField,No Copy,Nėra kopijos DocType: Custom Field,Default Value,Numatytoji reikšmė apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Pridėta laiškai yra privalomi gaunamiems laiškams +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Sinchronizuoti kontaktus DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Duomenų migracijos duomenų rinkimo informacija apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Atšaukti apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",PDF spausdinimas per „Raw Print“ dar nepalaikomas. Pašalinkite spausdintuvo atvaizdavimą spausdintuvo nustatymuose ir bandykite dar kartą. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} ir {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Išsaugant filtrus įvyko klaida apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Įveskite savo slaptažodį apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Negalima ištrinti namų ir priedų aplankų +DocType: Email Account,Enable Automatic Linking in Documents,Įgalinti automatinį susiejimą dokumentuose DocType: Contact Us Settings,Settings for Contact Us Page,„Contact Us“ puslapio nustatymai DocType: Social Login Key,Social Login Provider,Socialinio prisijungimo teikėjas +DocType: Email Account,"For more information, click here.","Daugiau informacijos rasite čia ." DocType: Transaction Log,Previous Hash,Ankstesnis Hash DocType: Notification,Value Changed,Pakeista vertė DocType: Report,Report Type,Ataskaitos tipas @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Energijos taško taisyklė apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,"Prašome įvesti Kliento ID, prieš įgalinant socialinį prisijungimą" DocType: Communication,Has Attachment,Turi priedą DocType: User,Email Signature,El. Pašto parašas -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} metus (-us) ,Addresses And Contacts,Adresai ir kontaktai apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Ši „Kanban“ valdyba bus privati DocType: Data Migration Run,Current Mapping,Dabartinis žemėlapis @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Jūs pasirinksite „Sync Option“ kaip „ALL“, ji bus iš naujo sinchronizuota su serveriu Tai taip pat gali sukelti komunikacijos (el. Laiškų) dubliavimą." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Paskutinė sinchronizuota {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Negalima pakeisti antraštės turinio +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Nerasta rezultatų

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Negalima keisti {0} po pateikimo apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Programa atnaujinta į naują versiją, atnaujinkite šį puslapį" DocType: User,User Image,Vartotojo vaizdas @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Pažy apps/frappe/frappe/public/js/frappe/chat.js,Discard,Išmeskite DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,"Norėdami gauti geriausius rezultatus, pasirinkite vaizdą, kurio plotis yra maždaug 150 pikselių." apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,Atnaujinta +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Pasirinktos {0} vertės DocType: Blog Post,Email Sent,Laiškas išsiųstas DocType: Communication,Read by Recipient On,Skaitykite gavėju DocType: User,Allow user to login only after this hour (0-24),Leisti vartotojui prisijungti tik po šios valandos (0–24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Modulis eksportuoti DocType: DocType,Fields,Laukai -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Negalima spausdinti šio dokumento +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Negalima spausdinti šio dokumento apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Tėvų apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Pasibaigus sesijai, prisijunkite, kad galėtumėte tęsti." DocType: Assignment Rule,Priority,Prioritetas @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Atstatyti „OTP S DocType: DocType,UPPER CASE,PAGRINDINIS BYLAS apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,Prašome nustatyti el. Pašto adresą DocType: Communication,Marked As Spam,Pažymėta kaip šlamštas +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"El. Pašto adresas, kurio „Google“ kontaktai turi būti sinchronizuojami." apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Importuoti prenumeratorius apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Išsaugoti filtrą DocType: Address,Preferred Shipping Address,Pageidaujamas pristatymo adresas DocType: GCalendar Account,The name that will appear in Google Calendar,"Pavadinimas, kuris bus rodomas „Google“ kalendoriuje" +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,"Spustelėkite {0}, kad generuotumėte Atnaujinimo raktą." DocType: Email Account,Disable SMTP server authentication,Išjungti SMTP serverio autentifikavimą DocType: Email Account,Total number of emails to sync in initial sync process ,Iš viso sinchronizuojamų el. Laiškų pradiniame sinchronizavimo procese DocType: System Settings,Enable Password Policy,Įgalinti slaptažodžių politiką @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Įveskite kodą apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Ne DocType: Auto Repeat,Start Date,Pradžios data apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Nustatyti diagramą +DocType: Website Theme,Theme JSON,Tema JSON apps/frappe/frappe/www/list.py,My Account,Mano sąskaita DocType: DocType,Is Published Field,Ar paskelbtas laukas DocType: DocField,Set non-standard precision for a Float or Currency field,Nustatykite nestandartinį tikslumą plūdės ar valiutos laukui @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,„ProTip“: pridėkite Reference: {{ reference_doctype }} {{ reference_name }} norite siųsti dokumento nuorodą DocType: LDAP Settings,LDAP First Name Field,LDAP pirmojo vardo laukas apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Numatytasis siuntimas ir gautieji -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Sąranka> Tinkinti formą apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.","Jei norite atnaujinti, galite atnaujinti tik selektyvius stulpelius." apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',Lauko „Tikrinti“ numatytoji reikšmė turi būti „0“ arba „1“ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Bendrinkite šį dokumentą su @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Domenai HTML DocType: Blog Settings,Blog Settings,Tinklaraščio nustatymai apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","„DocType“ pavadinimas turėtų prasidėti nuo raidės ir gali būti sudarytas tik iš raidžių, skaičių, tarpų ir pabraukimų" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Sąranka> Vartotojo leidimai DocType: Communication,Integrations can use this field to set email delivery status,Integracija gali naudoti šį lauką el. Pašto pristatymo būsenai nustatyti apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,„Stripe“ mokėjimo šliuzo nustatymai DocType: Print Settings,Fonts,Šriftai DocType: Notification,Channel,Kanalas DocType: Communication,Opened,Atidarytas DocType: Workflow Transition,Conditions,Sąlygos +apps/frappe/frappe/config/website.py,A user who posts blogs.,"Vartotojas, skelbiantis tinklaraščius." apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Ar neturite paskyros? Registruotis apps/frappe/frappe/utils/file_manager.py,Added {0},Pridėta {0} DocType: Newsletter,Create and Send Newsletters,Sukurti ir siųsti naujienlaiškius DocType: Website Settings,Footer Items,Poraštės elementai +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Nustatykite numatytąją el. Pašto paskyrą iš sąrankos> El. Paštas> El. Pašto paskyra DocType: Website Slideshow Item,Website Slideshow Item,Svetainės skaidrių demonstravimo elementas apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Užregistruokite „OAuth Client App“ DocType: Error Snapshot,Frames,Rėmeliai @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","0 lygis skirtas dokumentų lygmens leidimams, aukštesnio lygmens lauko lygmens leidimams." DocType: Address,City/Town,Miestas miestelis DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Tai atkurs jūsų dabartinę temą, ar tikrai norite tęsti?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},"Privalomi laukai, nurodyti {0}" apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Klaida prisijungiant prie el. Pašto paskyros {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Kuriant pasikartojantį įvyko klaida @@ -527,7 +536,7 @@ DocType: Event,Event Category,Įvykių kategorija apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Stulpeliai pagal apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Redaguoti antraštę DocType: Communication,Received,Gauta -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Neleidžiama pasiekti šio puslapio. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Neleidžiama pasiekti šio puslapio. DocType: User Social Login,User Social Login,Vartotojo socialinis prisijungimas apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,"Į tą patį aplanką įrašykite „Python“ failą, kuriame tai išsaugota, ir grąžinkite stulpelį bei rezultatą." DocType: Contact,Purchase Manager,Pirkimų vadybininkas @@ -580,7 +589,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konf apps/frappe/frappe/utils/data.py,Operator must be one of {0},Operatorius turi būti vienas iš {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Jei savininkas DocType: Data Migration Run,Trigger Name,Trigger pavadinimas -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Savo dienoraštyje rašykite pavadinimus ir įvadas. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Pašalinti lauką apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Sutraukti viską apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Fono spalva @@ -629,6 +637,7 @@ DocType: Dashboard Chart,Bar,Baras DocType: SMS Settings,Enter url parameter for message,Įveskite pranešimo URL parametrą apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Naujas individualaus spausdinimo formatas apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} jau yra +DocType: Workflow Document State,Is Optional State,Yra neprivaloma valstybė DocType: Address,Purchase User,Pirkimo vartotojas DocType: Data Migration Run,Insert,Įdėti DocType: Web Form,Route to Success Link,Maršrutas į sėkmės nuorodą @@ -636,13 +645,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Vartoto DocType: File,Is Home Folder,Ar namų aplankas apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Tipas: DocType: Post,Is Pinned,Yra pritvirtintas -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Nėra leidimo „{0}“ {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Nėra leidimo „{0}“ {1} DocType: Patch Log,Patch Log,Pataisos žurnalas DocType: Print Format,Print Format Builder,Spausdinimo formato kūrėjas 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","Jei įjungta, visi vartotojai gali prisijungti iš bet kurio IP adreso, naudodami du veiksnius. Tai taip pat galima nustatyti tik konkrečiam naudotojui (-ams) naudotojo puslapyje" apps/frappe/frappe/utils/data.py,only.,tik. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,Sąlyga „{0}“ neteisinga DocType: Auto Email Report,Day of Week,Savaitės diena +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Įgalinkite „Google“ API „Google“ nustatymuose. DocType: DocField,Text Editor,Teksto redaktorius apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Iškirpti apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Ieškokite arba įveskite komandą @@ -650,6 +660,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,DB atsarginių kopijų skaičius negali būti mažesnis nei 1 DocType: Workflow State,ban-circle,uždarymo ratą DocType: Data Export,Excel,„Excel“ +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Antraštė, Breadcrumbs ir meta žymos" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Palaikymas El. Pašto adresas nenurodytas DocType: Comment,Published,Paskelbta DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","Pastaba: geriausiems rezultatams vaizdai turi būti tokio pat dydžio ir pločio, kad jie būtų didesni nei aukštis." @@ -740,6 +751,7 @@ DocType: System Settings,Scheduler Last Event,Paskutinis renginio planuotojas apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Ataskaita apie visas dokumentų dalis DocType: Website Sidebar Item,Website Sidebar Item,Svetainės šoninės juostos elementas apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Daryti +DocType: Google Settings,Google Settings,„Google“ nustatymai apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Pasirinkite savo šalį, laiko juostą ir valiutą" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Čia įveskite statinius URL parametrus (pvz., Siuntėjas = ERPNext, vartotojo vardas = ERPNext, slaptažodis = 1234 ir tt)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Nėra el. Pašto paskyros @@ -793,6 +805,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,„OAuth“ nešiklio ženklas ,Setup Wizard,Sąrankos vedlys apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Perjungti diagramą +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,Sinchronizavimas DocType: Data Migration Run,Current Mapping Action,Dabartinis atvaizdavimo veiksmas DocType: Email Account,Initial Sync Count,Pradinis sinchronizavimo skaičius apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,„Contact Us“ puslapio nustatymai. @@ -832,6 +845,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Spausdinimo formato tipas apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Šiems kriterijams nėra nustatyti leidimai. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Išplėsti viską +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nerasta jokių numatytų adresų šablonų. Sukurkite naują iš sąrankos> Spausdinimas ir prekės ženklas> Adreso šablonas. DocType: Tag Doc Category,Tag Doc Category,„Tag Doc“ kategorija DocType: Data Import,Generated File,Sukurtas failas apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Pastabos @@ -839,7 +853,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Laiko juosta turi būti Nuoroda arba Dinaminė nuoroda DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Pranešimai ir masiniai laiškai bus siunčiami iš šio išeinančio serverio. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Tai 100 geriausių bendrų slaptažodžių. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Nuolat pateikite {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Nuolat pateikite {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} neegzistuoja, pasirinkite naują taikinį, kurį norite sujungti" DocType: Energy Point Rule,Multiplier Field,Daugiklio laukas DocType: Workflow,Workflow State Field,Darbo eigos būsena @@ -879,6 +893,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} įvertino jūsų darbą {1} su {2} taškais DocType: Auto Email Report,Zero means send records updated at anytime,Nulis reiškia bet kuriuo metu atnaujintų įrašų siuntimą apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Vertę {0} negalima keisti +apps/frappe/frappe/config/integrations.py,Google API Settings.,„Google API“ nustatymai. DocType: System Settings,Force User to Reset Password,Priversti vartotoją iš naujo nustatyti slaptažodį apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Ataskaitų kūrimo ataskaitas tiesiogiai valdo ataskaitos kūrėjas. Nėra ką veikti. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Redaguoti filtrą @@ -932,7 +947,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,už DocType: S3 Backup Settings,eu-north-1,eu-north-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: leidžiama naudoti tik vieną taisyklę su tuo pačiu vaidmeniu, lygiu ir {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Negalite atnaujinti šio žiniatinklio formos dokumento -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Didžiausias šio įrašo apribojimas pasiekiamas. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Didžiausias šio įrašo apribojimas pasiekiamas. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,"Įsitikinkite, kad nuorodos komunikacijos dokumentai nėra tarpusavyje susiję." DocType: DocField,Allow in Quick Entry,Leisti greitai įvesti DocType: Error Snapshot,Locals,Vietiniai @@ -964,7 +979,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Išimties tipas apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},"Negalima ištrinti ar atšaukti, nes {0} {1} susieta su {2} {3} {4}" apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTP slaptumą gali iš naujo nustatyti tik administratorius. -DocType: Web Form Field,Page Break,Puslapio lūžis DocType: Website Script,Website Script,Svetainės scenarijus DocType: Integration Request,Subscription Notification,Pranešimas apie prenumeratą DocType: DocType,Quick Entry,Greitas įėjimas @@ -981,6 +995,7 @@ DocType: Notification,Set Property After Alert,Nustatyti po įspėjimo turtą apps/frappe/frappe/__init__.py,Thank you,Ačiū apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Atlaisvinkite tinklo jungtis vidinei integracijai apps/frappe/frappe/config/settings.py,Import Data,Importuoti duomenis +DocType: Translation,Contributed Translation Doctype Name,Padedamas vertimas Doctype pavadinimas DocType: Social Login Key,Office 365,„Office 365“ apps/frappe/frappe/desk/report/todo/todo.py,ID,ID DocType: Review Level,Review Level,Peržiūros lygis @@ -999,7 +1014,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Sėkmingai baigta apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Sąrašas apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Įvertink -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Naujas {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Ar pagrindinis kontaktas DocType: Print Format,Raw Commands,Žalios komandos apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Spausdinimo formatų stilių lentelės @@ -1040,6 +1054,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Fono įvykių klai apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Ieškoti {0} {1} DocType: Email Account,Use SSL,Naudokite SSL DocType: DocField,In Standard Filter,Standartinis filtras +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Nėra „Google“ kontaktų sinchronizuoti. DocType: Data Migration Run,Total Pages,Iš viso puslapių apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,"{0}: laukas „{1}“ negali būti nustatytas kaip unikalus, nes jis turi unikalias reikšmes" DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Jei įgalinta, naudotojai bus informuojami kiekvieną kartą prisijungus. Jei neįmanoma, naudotojai bus informuoti tik vieną kartą." @@ -1060,7 +1075,7 @@ DocType: Assignment Rule,Automation,Automatika apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Ištrinti failus ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Ieškoti „{0}“ apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Kažkas negerai -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Išsaugokite prieš tvirtindami. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,Išsaugokite prieš tvirtindami. DocType: Version,Table HTML,Lentelė HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,centras DocType: Page,Standard,Standartinis @@ -1138,12 +1153,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Jokių rezu apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} įrašai ištrinti apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,"Kurdami „dropbox“ prieigos raktą, kažkas negerai. Jei norite gauti daugiau informacijos, patikrinkite klaidų žurnalą." apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Palikuonys -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nerasta jokio numatytojo adreso šablono. Sukurkite naują iš sąrankos> Spausdinimas ir prekės ženklas> Adreso šablonas. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,„Google“ kontaktai buvo sukonfigūruoti. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Paslėpti detales apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Šrifto stiliai apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Jūsų prenumerata baigsis {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Autentifikavimas nepavyko gauti el. Laiškus iš el. Pašto paskyros {0}. Pranešimas iš serverio: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Statistika pagal praėjusios savaitės našumą (nuo {0} iki {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,"Automatinis susiejimas gali būti įjungtas tik tada, kai įjungta įjungta." DocType: Website Settings,Title Prefix,Pavadinimo prefiksas apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,"Autentifikavimo programos, kurias galite naudoti, yra:" DocType: Bulk Update,Max 500 records at a time,Maksimalus 500 įrašų vienu metu @@ -1176,7 +1192,7 @@ DocType: Auto Email Report,Report Filters,Pranešti apie filtrus apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Pasirinkite stulpelius DocType: Event,Participants,Dalyviai DocType: Auto Repeat,Amended From,Iš dalies pakeistas -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Jūsų informacija buvo pateikta +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Jūsų informacija buvo pateikta DocType: Help Category,Help Category,Pagalbos kategorija apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 mėn apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,"Pasirinkite esamą formatą, kad galėtumėte redaguoti arba pradėti naują formatą." @@ -1223,7 +1239,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Laukas į sekti DocType: User,Generate Keys,Sukurti raktus DocType: Comment,Unshared,Nepanaikinta -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Išsaugota +DocType: Translation,Saved,Išsaugota DocType: OAuth Client,OAuth Client,„OAuth“ klientas DocType: System Settings,Disable Standard Email Footer,Išjungti standartinę el apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Spausdinimo formatas {0} yra išjungtas @@ -1254,6 +1270,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Paskutinį ka DocType: Data Import,Action,Veiksmas apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Būtinas kliento raktas DocType: Chat Profile,Notifications,Pranešimai +DocType: Translation,Contributed,Prisidėjo DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy DocType: Report,Custom Report,Individuali ataskaita DocType: Workflow State,info-sign,informacinis ženklas @@ -1270,6 +1287,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,kontaktas DocType: LDAP Settings,LDAP Username Field,LDAP naudotojo laukas apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} laukas negali būti nustatytas kaip unikalus {1}, nes yra unikalių esamų vertybių" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Sąranka> Tinkinti formą DocType: User,Social Logins,Socialiniai prisijungimai DocType: Workflow State,Trash,Šiukšliadėžė DocType: Stripe Settings,Secret Key,Slaptas raktas @@ -1327,6 +1345,7 @@ DocType: DocType,Title Field,Pavadinimo laukas apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Nepavyko prisijungti prie siunčiamo el. Pašto serverio DocType: File,File URL,Failo URL DocType: Help Article,Likes,Mėgsta +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,„Google“ kontaktai Integracija yra išjungta. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,"Kad galėtumėte pasiekti atsargines kopijas, turite prisijungti ir turėti „System Manager Role“." apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Pirmasis lygis DocType: Blogger,Short Name,Trumpas vardas @@ -1344,13 +1363,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Importuoti „Zip“ DocType: Contact,Gender,Lytis DocType: Workflow State,thumbs-down,nepatinka -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Eilė turėtų būti viena iš {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Negalima nustatyti pranešimo apie dokumento tipą {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Sistemos tvarkyklės įtraukimas į šį naudotoją, nes turi būti bent vienas sistemos valdytojas" apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Išsiųstas sveikinimo el. Laiškas DocType: Transaction Log,Chaining Hash,Chaining Hash DocType: Contact,Maintenance Manager,Priežiūros vadybininkas +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Palyginimui naudokite> 5, <10 arba = 324. Jei naudojate intervalus, naudokite 5:10 (reikšmėms nuo 5 iki 10)." apps/frappe/frappe/utils/bot.py,show,Rodyti apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Bendrinkite URL apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Nepalaikomas failo formatas @@ -1372,7 +1391,7 @@ DocType: Communication,Notification,Pranešimas DocType: Data Import,Show only errors,Rodyti tik klaidas DocType: Energy Point Log,Review,Peržiūra apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Pašalintos eilutės -DocType: GSuite Settings,Google Credentials,„Google“ kredencialai +DocType: Google Settings,Google Credentials,„Google“ kredencialai apps/frappe/frappe/www/login.html,Or login with,Arba prisijunkite apps/frappe/frappe/model/document.py,Record does not exist,Įrašų nėra apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Naujas ataskaitos pavadinimas @@ -1397,6 +1416,7 @@ DocType: Desktop Icon,List,Sąrašas DocType: Workflow State,th-large,th-large apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,"{0}: Negalima nustatyti Priskirti pateikti, jei nepateikiama" apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Nėra susieta su jokiu įrašu +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Jungiantis prie QZ dėklo programos įvyko klaida ...

Kad galėtumėte naudoti žaliavinio spausdinimo funkciją, turite įdiegti ir paleisti QZ dėklo programą.

Spustelėkite čia, jei norite atsisiųsti ir įdiegti QZ dėklo .
Jei norite sužinoti daugiau apie žaliavinį spausdinimą, spustelėkite čia ." DocType: Chat Message,Content,Turinys DocType: Workflow Transition,Allow Self Approval,Leisti savęs patvirtinimą apps/frappe/frappe/www/qrcode.py,Page has expired!,Puslapis baigėsi! @@ -1413,6 +1433,7 @@ DocType: Workflow State,hand-right,į dešinę DocType: Website Settings,Banner is above the Top Menu Bar.,Baneris yra virš viršutinės meniu juostos. apps/frappe/frappe/www/update-password.html,Invalid Password,Neteisingas slaptažodis apps/frappe/frappe/utils/data.py,1 month ago,prieš 1 mėnesį +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Leisti „Google“ kontaktų prieigą DocType: OAuth Client,App Client ID,Programos kliento ID DocType: DocField,Currency,Valiuta DocType: Website Settings,Banner,Reklaminis skydelis @@ -1424,7 +1445,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Tikslas DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Jei vaidmuo neturi 0 lygio, tada aukštesni lygiai yra beprasmiški." DocType: ToDo,Reference Type,Nuorodos tipas -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Leidžiant „DocType“, „DocType“. Būk atsargus!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Leidžiant „DocType“, „DocType“. Būk atsargus!" DocType: Domain Settings,Domain Settings,Domeno nustatymai DocType: Auto Email Report,Dynamic Report Filters,Dinaminiai ataskaitų filtrai DocType: Energy Point Log,Appreciation,Įvertinimas @@ -1466,6 +1487,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,us-west-2 DocType: DocType,Is Single,Yra vienišas apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Sukurkite naują formatą +DocType: Google Contacts,Authorize Google Contacts Access,Įgalinkite „Google“ kontaktų prieigą DocType: S3 Backup Settings,Endpoint URL,Pabaigos URL DocType: Social Login Key,Google,„Google“ DocType: Contact,Department,Departamentas @@ -1480,7 +1502,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Priskirti DocType: List Filter,List Filter,Sąrašas filtras DocType: Dashboard Chart Link,Chart,Diagrama apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Negalima pašalinti -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Patvirtinti pateikite šį dokumentą +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Patvirtinti pateikite šį dokumentą apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} jau yra. Pasirinkite kitą pavadinimą apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Šioje formoje jūs turite neišsaugotų pakeitimų. Išsaugokite prieš tęsdami. apps/frappe/frappe/model/document.py,Action Failed,Veiksmas nepavyko @@ -1562,6 +1584,7 @@ DocType: DocField,Display,Ekranas apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Atsakyti visiems DocType: Calendar View,Subject Field,Dalyko laukas apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Sesijos galiojimo laikas turi būti {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},Taikymas: {0} DocType: Workflow State,zoom-in,priartinti apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Nepavyko prisijungti prie serverio apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Data {0} turi būti formatu: {1} @@ -1573,8 +1596,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Mygtuke pasirodys piktograma DocType: Role Permission for Page and Report,Set Role For,Nustatyti vaidmenį +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Automatinis susiejimas gali būti įjungtas tik vienai el. Pašto paskyrai. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Nėra priskirtos el. Pašto paskyros +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,El. Pašto paskyra nenustatyta. Sukurkite naują el. Pašto paskyrą iš sąrankos> El. Paštas> El. Pašto paskyra apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Priskyrimas +DocType: Google Contacts,Last Sync On,Paskutinis sinchronizavimas apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},{0} pasiekė automatinė taisyklė {1} apps/frappe/frappe/config/website.py,Portal,Portalas apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Ačiu už tavo elektroninį laišką @@ -1595,7 +1621,6 @@ DocType: GSuite Settings,GSuite Settings,GSuite nustatymai DocType: Integration Request,Remote,Nuotolinis DocType: File,Thumbnail URL,Miniatiūros URL apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Atsisiųsti ataskaitą -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Sąranka> Vartotojas apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},{0} eksportuoti į:
{1} DocType: GCalendar Account,Calendar Name,Kalendoriaus pavadinimas apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Jūsų prisijungimo ID yra @@ -1645,6 +1670,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Eikit apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Vaizdo laukas turi būti galiojantis lauko pavadinimas apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,"Kad galėtumėte pasiekti šį puslapį, turite prisijungti" DocType: Assignment Rule,Example: {{ subject }},Pavyzdys: {{tema}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Lauko pavadinimas {0} yra apribotas apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Laukui {0} negalite išjungti „Tik skaityti“ DocType: Social Login Key,Enable Social Login,Įgalinti socialinį prisijungimą DocType: Workflow,Rules defining transition of state in the workflow.,"Taisyklės, apibrėžiančios būsenos perėjimą į darbo eigą." @@ -1665,10 +1691,10 @@ DocType: Website Settings,Route Redirects,Maršruto peradresavimas apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,El. Pašto dėžutė apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},atkurta {0} kaip {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Automatiškai priskirti dokumentus vartotojams +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Atidarykite „Awesomebar“ apps/frappe/frappe/config/settings.py,Email Templates for common queries.,El. Laiškų šablonai bendroms užklausoms. DocType: Letter Head,Letter Head Based On,Laiškas ant pagrindo apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Uždarykite šį langą -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Mokėjimas baigtas DocType: Contact,Designation,Pavadinimas DocType: Webhook,Webhook,„Webhook“ DocType: Website Route Meta,Meta Tags,Meta žymos @@ -1707,6 +1733,7 @@ DocType: System Settings,Choose authentication method to be used by all users,"P DocType: Error Snapshot,Parent Error Snapshot,Tėvų klaida Snapshot DocType: GCalendar Account,GCalendar Account,„GCalendar“ paskyra DocType: Language,Language Name,Kalbos pavadinimas +DocType: Workflow Document State,Workflow Action is not created for optional states,Darbų srauto veiksmas nėra sukurtas pasirinktinėms valstybėms DocType: Customize Form,Customize Form,Tinkinti formą DocType: DocType,Image Field,Vaizdo laukas apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Pridėta {0} ({1}) @@ -1748,6 +1775,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Taikyti šią taisyklę, jei vartotojas yra savininkas" DocType: About Us Settings,Org History Heading,„Org“ istorijos antraštė apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,serverio klaida +DocType: Contact,Google Contacts Description,„Google“ kontaktų aprašymas apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Standartinis vaidmuo negali būti pervadintas DocType: Review Level,Review Points,Peržiūros taškai apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Trūksta parametro „Kanban“ valdybos pavadinimas @@ -1765,7 +1793,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Ne kūrėjo režime! Nustatykite site_config.json arba sukurkite „Custom“ DocType. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,gavo {0} taškų DocType: Web Form,Success Message,Sėkmės pranešimas -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Palyginimui naudokite> 5, <10 arba = 324. Jei naudojate intervalus, naudokite 5:10 (reikšmėms nuo 5 iki 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Aprašymo puslapis, paprastas tekstas, tik keletas eilučių. (daugiausia 140 simbolių)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Rodyti leidimus DocType: DocType,Restrict To Domain,Apriboti prie domeno @@ -1787,6 +1814,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Ne pro apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Nustatyti kiekį DocType: Auto Repeat,End Date,Pabaigos data DocType: Workflow Transition,Next State,Kita valstybė +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} „Google“ kontaktai sinchronizuoti. DocType: System Settings,Is First Startup,Pirmasis paleidimas apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},atnaujinta į {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Pereiti prie @@ -1836,6 +1864,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Kalendorius apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Duomenų importo šablonas DocType: Workflow State,hand-left,į kairę +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Pasirinkite kelis sąrašo elementus apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Atsarginės kopijos dydis: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Susieta su {0} DocType: Braintree Settings,Private Key,Privatus raktas @@ -1878,13 +1907,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Palūkanos DocType: Bulk Update,Limit,Riba DocType: Print Settings,Print taxes with zero amount,Atspausdinkite mokesčius nuliniu dydžiu -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,El. Pašto paskyra nenustatyta. Sukurkite naują el. Pašto paskyrą iš sąrankos> El. Paštas> El. Pašto paskyra DocType: Workflow State,Book,Knyga DocType: S3 Backup Settings,Access Key ID,Prieigos raktų ID DocType: Chat Message,URLs,URL apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Vardus ir pavardes galima lengvai atspėti. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Pranešti {0} DocType: About Us Settings,Team Members Heading,Komandos nariai +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Pasirinkite sąrašo elementą apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},{2} dokumentas {0} nustatytas {2} DocType: Address Template,Address Template,Adreso šablonas DocType: Workflow State,step-backward,žingsnis atgal @@ -1908,6 +1937,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Eksportuoti priskirtus leidimus apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Nėra: Darbo eigos pabaiga DocType: Version,Version,Versija +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Atidaryti sąrašo elementą apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 mėnesiai DocType: Chat Message,Group,Grupė apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Yra tam tikra problema su failo URL: {0} @@ -1963,6 +1993,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 metai apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} grąžino taškus {1} DocType: Workflow State,arrow-down,rodyklė žemyn DocType: Data Import,Ignore encoding errors,Nepaisykite kodavimo klaidų +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Kraštovaizdis DocType: Letter Head,Letter Head Name,Laiško pavadinimo pavadinimas DocType: Web Form,Client Script,Kliento scenarijus DocType: Assignment Rule,Higher priority rule will be applied first,Pirmiausia bus taikoma aukštesnio prioriteto taisyklė @@ -2007,6 +2038,7 @@ DocType: Kanban Board Column,Green,Žalias apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Nauji įrašai yra būtini tik privalomiems laukams. Jei norite, galite ištrinti neprivalomas stulpelius." apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} turi prasidėti ir baigti laišku, jame gali būti tik raidės, brūkšnelis arba pabraukimas." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Trigger pirminis veiksmas apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Sukurti vartotojo el apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Rūšiavimo laukas {0} turi būti galiojantis lauko pavadinimas DocType: Auto Email Report,Filter Meta,Filtruoti metą @@ -2036,6 +2068,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Laiko juosta apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Įkeliama ... DocType: Auto Email Report,Half Yearly,Pusę metų +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Mano profilis apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Paskutinė modifikavimo data DocType: Contact,First Name,Pirmas vardas DocType: Post,Comments,Komentarai @@ -2058,6 +2091,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Turinio Hash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Žinutės pagal {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} priskirtas {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Nėra naujų „Google“ kontaktų sinchronizavimo. DocType: Workflow State,globe,gaublys apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Vidutinis {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Išvalyti klaidų žurnalus @@ -2084,6 +2118,8 @@ DocType: Workflow State,Inverse,Inversinis DocType: Activity Log,Closed,Uždaryta DocType: Report,Query,Užklausa DocType: Notification,Days After,Po dienos +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Puslapio nuorodos +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portretas apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Užklausa baigta DocType: System Settings,Email Footer Address,El. Pašto poraštės adresas apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energijos taškų atnaujinimas @@ -2111,6 +2147,7 @@ For Select, enter list of Options, each on a new line.","Nuorodose įveskite „ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,Prieš 1 minutę apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Nėra aktyvių sesijų apps/frappe/frappe/model/base_document.py,Row,Eilutė +DocType: Contact,Middle Name,Antras vardas apps/frappe/frappe/public/js/frappe/request.js,Please try again,"Prašau, pabandykite dar kartą" DocType: Dashboard Chart,Chart Options,Diagramos parinktys DocType: Data Migration Run,Push Failed,Push nepavyko @@ -2139,6 +2176,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,keisti dydį DocType: Comment,Relinked,Relinked DocType: Role Permission for Page and Report,Roles HTML,HTML vaidmenys +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Eik apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Darbo išsaugojimas prasidės po įrašymo. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Jei jūsų duomenys yra HTML, nukopijuokite tikslią HTML kodą su žymėmis." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Datos dažnai yra lengvai atspėti. @@ -2167,7 +2205,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Darbalaukio piktograma apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,atšaukė šį dokumentą apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Data asortimentas -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Sąranka> Vartotojo leidimai apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} įvertino {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Pakeistos vertės apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Pranešimo klaida @@ -2232,6 +2269,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Masinis ištrynimas DocType: DocShare,Document Name,Dokumento pavadinimas apps/frappe/frappe/config/customization.py,Add your own translations,Pridėkite savo vertimus +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Naršykite sąrašą žemyn DocType: S3 Backup Settings,eu-central-1,eu-central-1 DocType: Auto Repeat,Yearly,Kasmet apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Pervardyti @@ -2282,6 +2320,7 @@ DocType: Workflow State,plane,plokštuma apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Įdėta nustatyta klaida. Prašome susisiekti su administratoriumi. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Rodyti ataskaitą DocType: Auto Repeat,Auto Repeat Schedule,Auto Repeat Schedule +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Žiūrėti nuorodą DocType: Address,Office,Biuras DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,Prieš {0} dienas @@ -2315,7 +2354,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Re apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Mano nustatymai apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Grupės pavadinimas negali būti tuščias. DocType: Workflow State,road,kelias -DocType: Website Route Redirect,Source,Šaltinis +DocType: Contact,Source,Šaltinis apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Aktyvios sesijos apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Gali būti tik viena sulankstoma forma apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Naujas pokalbis @@ -2337,6 +2376,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Įveskite autorizavimo URL DocType: Email Account,Send Notification to,Siųsti pranešimą apps/frappe/frappe/config/integrations.py,Dropbox backup settings,„Dropbox“ atsarginių kopijų nustatymai +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,"Kažkas negerai ženklo generavimo metu. Jei norite sukurti naują, spustelėkite {0}." apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Pašalinti visus pritaikymus? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Tik administratorius gali redaguoti DocType: Auto Repeat,Reference Document,Dokumentas @@ -2361,6 +2401,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Vartotojams gali būti nustatytos jų naudotojo puslapio funkcijos. DocType: Website Settings,Include Search in Top Bar,Įtraukti paiešką į viršų juostą apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Skubus] Klaida kuriant pasikartojančias% s% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Pasaulinės nuorodos DocType: Help Article,Author,Autorius DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Nurodytų filtrų nėra @@ -2396,10 +2437,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, eilutė {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Jei įkeliate naujus įrašus, „Naming Series“ tampa privaloma, jei yra." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Redaguoti ypatybes -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,"Negalima atidaryti pavyzdžio, kai jo {0} yra atidarytas" +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,"Negalima atidaryti pavyzdžio, kai jo {0} yra atidarytas" DocType: Activity Log,Timeline Name,Laiko juostos pavadinimas DocType: Comment,Workflow,Darbo eiga apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,„Frappe“ socialinio prisijungimo rakte nustatykite bazinį URL +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Klaviatūros nuorodos DocType: Portal Settings,Custom Menu Items,Pasirinktiniai meniu elementai apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,{0} ilgis turi būti nuo 1 iki 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Nutrūko ryšys. Kai kurios funkcijos gali neveikti. @@ -2462,6 +2504,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Pridėtos e DocType: DocType,Setup,Sąranka apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} sukurta sėkmingai apps/frappe/frappe/www/update-password.html,New Password,Naujas Slaptažodis +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Pasirinkite lauką apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Palikite šį pokalbį DocType: About Us Settings,Team Members,Komandos nariai DocType: Blog Settings,Writers Introduction,Rašytojų įvadas @@ -2531,13 +2574,12 @@ DocType: Chat Room,Name,vardas DocType: Communication,Email Template,El. Pašto šablonas DocType: Energy Point Settings,Review Levels,Peržiūros lygiai DocType: Print Format,Raw Printing,Žalias spausdinimas -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,"Negalima atidaryti {0}, kai jo egzempliorius yra atidarytas" +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,"Negalima atidaryti {0}, kai jo egzempliorius yra atidarytas" DocType: DocType,"Make ""name"" searchable in Global Search",Padarykite „vardą“ paieškai visuotinėje paieškoje DocType: Data Migration Mapping,Data Migration Mapping,Duomenų perkėlimo žemėlapis DocType: Data Import,Partially Successful,Iš dalies sėkmingas DocType: Communication,Error,Klaida apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Lauko tipas negali būti keičiamas iš {0} į {1} eilutėje {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Jungiantis prie QZ dėklo programos įvyko klaida ...

Kad galėtumėte naudoti žaliavinio spausdinimo funkciją, turite įdiegti ir paleisti QZ dėklo programą.

Spustelėkite čia, jei norite atsisiųsti ir įdiegti QZ dėklo .
Jei norite sužinoti daugiau apie žaliavinį spausdinimą, spustelėkite čia ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Nufotografuoti apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,"Venkite metų, kurie yra susiję su jumis." DocType: Web Form,Allow Incomplete Forms,Leisti nebaigtas formas @@ -2633,7 +2675,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Pasirinkite target = "_blank", kad atidarytumėte naują puslapį." DocType: Portal Settings,Portal Menu,Portalo meniu DocType: Website Settings,Landing Page,Nukreipimo puslapis -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,"Jei norite pradėti, prisiregistruokite arba prisijunkite" DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontaktų parinktys, pvz., „Pardavimų užklausa, palaikymo užklausa“ ir tt kiekviena nauja linija arba atskirtos kableliais." apps/frappe/frappe/twofactor.py,Verfication Code,Verifikavimo kodas apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} jau atsisakyta @@ -2719,6 +2760,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Duomenų perkė DocType: Address,Sales User,Pardavimų vartotojas apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Keisti lauko savybes (paslėpti, skaityti, leidimą ir tt)" DocType: Property Setter,Field Name,Lauko pavadinimas +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Klientas DocType: Print Settings,Font Size,Šrifto dydis DocType: User,Last Password Reset Date,Paskutinio slaptažodžio nustatymo data DocType: System Settings,Date and Number Format,Data ir numeris @@ -2784,6 +2826,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Grupės mazgas apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Sujungti su esama DocType: Blog Post,Blog Intro,Dienoraščio intro apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Naujas paminėjimas +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Peršokti į lauką DocType: Prepared Report,Report Name,Ataskaitos pavadinimas apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Jei norite gauti naujausią dokumentą, atnaujinkite." apps/frappe/frappe/core/doctype/communication/communication.js,Close,Uždaryti @@ -2793,10 +2836,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Įvykis DocType: Social Login Key,Access Token URL,Prieigos prie Token URL apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Nustatykite „Dropbox“ prieigos raktus į savo svetainės konfigūraciją +DocType: Google Contacts,Google Contacts,„Google“ kontaktai DocType: User,Reset Password Key,Iš naujo nustatyti slaptažodį apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Modifikuotas pagal DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.","Norėdami atnaujinti, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Išsaugota sėkmingai +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,"Siųsti nuorodą į {0}, kad susietumėte jį čia." DocType: File,Folder,Aplankas DocType: DocField,Perm Level,Permo lygis DocType: Print Settings,Page Settings,Puslapio nustatymai @@ -2826,6 +2872,7 @@ DocType: Workflow State,remove-sign,pašalinti-ženklas DocType: Dashboard Chart,Full,Pilnas DocType: DocType,User Cannot Create,Vartotojas negali sukurti apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Jūs pasiekėte {0} tašką +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Sąranka> Vartotojas DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Jei tai nustatysite, šis elementas bus rodomas išskleidžiamajame meniu pagal pasirinktą tėvą." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Nėra el. Laiškų apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Trūksta šių laukų: @@ -2839,13 +2886,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Rod DocType: Web Form,Web Form Fields,Žiniatinklio formos laukai DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Naudotojo redaguojama forma svetainėje. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Nuolat atšaukti {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Nuolat atšaukti {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,3 galimybė apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,Iš viso apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Tai labai dažnas slaptažodis. DocType: Personal Data Deletion Request,Pending Approval,Laukiama patvirtinimo apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Dokumentas negali būti teisingai priskirtas apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Neleidžiama {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Nėra rodomų vertybių DocType: Personal Data Download Request,Personal Data Download Request,Asmens duomenų atsisiuntimo užklausa apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} bendrino šį dokumentą su {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Pasirinkite {0} @@ -2861,7 +2909,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Šis el. Laiškas buvo išsiųstas į {0} ir nukopijuotas į {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,Netinkamas prisijungimo vardas arba slaptažodis DocType: Social Login Key,Social Login Key,Socialinio prisijungimo raktas -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Nustatykite numatytąją el. Pašto paskyrą iš sąrankos> El. Paštas> El. Pašto paskyra apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filtrai išsaugoti DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Kaip suformuluoti šią valiutą? Jei nebus nustatyta, naudos sistemos numatytuosius nustatymus" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} nustatytas kaip {2} @@ -2986,6 +3033,7 @@ DocType: User,Location,Vieta apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Nėra duomenų DocType: Website Meta Tag,Website Meta Tag,Svetainės meta žymeklis DocType: Workflow State,film,filmas +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Kopijuojama į iškarpinę. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Nustatymai nerastas apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Etiketė yra privaloma DocType: Webhook,Webhook Headers,„Webhook“ antraštės @@ -3192,7 +3240,7 @@ DocType: Address,Address Line 1,Adreso eilutė 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Dokumento tipui apps/frappe/frappe/model/base_document.py,Data missing in table,Duomenų trūksta lentelėje apps/frappe/frappe/utils/bot.py,Could not identify {0},Nepavyko nustatyti {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Ši forma buvo pakeista įkėlus ją +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Ši forma buvo pakeista įkėlus ją apps/frappe/frappe/www/login.html,Back to Login,Atgal į prisijungimą apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Nenustatyta DocType: Data Migration Mapping,Pull,Ištraukite @@ -3259,6 +3307,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Vaikų lentelės žem apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,El. Pašto paskyros sąranka įveskite savo slaptažodį: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Per vieną užklausą rašoma per daug. Prašome siųsti mažesnius prašymus DocType: Social Login Key,Salesforce,Pardavimų galia +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{0} importavimas iš {1} DocType: User,Tile,Plytelių apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} kambaryje turi būti vienas vartotojas. DocType: Email Rule,Is Spam,Ar šlamštas @@ -3296,7 +3345,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,aplankas-uždaryti DocType: Data Migration Run,Pull Update,Patraukite naujinimą apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},sujungė {0} į {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Nerasta rezultatų

DocType: SMS Settings,Enter url parameter for receiver nos,Įveskite imtuvo nr apps/frappe/frappe/utils/jinja.py,Syntax error in template,Sintaksės klaida šablone apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Nustatykite filtrų reikšmę ataskaitos filtro lentelėje. @@ -3309,6 +3357,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Atsiprašom DocType: System Settings,In Days,Dienos DocType: Report,Add Total Row,Pridėti bendrą eilutę apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Sesijos pradžia nepavyko +DocType: Translation,Verified,Patvirtinta DocType: Print Format,Custom HTML Help,Individuali HTML pagalba DocType: Address,Preferred Billing Address,Pageidaujamas atsiskaitymo adresas apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Priskirtas @@ -3323,7 +3372,6 @@ DocType: Help Article,Intermediate,Tarpinis DocType: Module Def,Module Name,Modulio pavadinimas DocType: OAuth Authorization Code,Expiration time,Galiojimo laikas apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Nustatyti numatytąjį formatą, puslapio dydį, spausdinimo stilių ir kt." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,"Jūs negalite patinka kažkas, ką sukūrėte" DocType: System Settings,Session Expiry,Sesijos pabaiga DocType: DocType,Auto Name,Automatinis pavadinimas apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Pasirinkite Priedai @@ -3351,6 +3399,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Sistemos puslapis DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Pastaba: Pagal numatytuosius laiškus siunčiami nepavykusių atsarginių kopijų siuntimai. DocType: Custom DocPerm,Custom DocPerm,„Custom DocPerm“ +DocType: Translation,PR sent,PR siunčiama DocType: Tag Doc Category,Doctype to Assign Tags,"„Doctype“, kad priskirtumėte žymes" DocType: Address,Warehouse,Sandėlis apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,„Dropbox“ sąranka @@ -3418,7 +3467,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,"Ctrl + Enter, jei norite pridėti komentarą" apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,{0} laukas negali būti pasirinktas. DocType: User,Birth Date,Gimimo data -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Su grupe DocType: List View Setting,Disable Count,Išjungti skaičiavimą DocType: Contact Us Settings,Email ID,Elektroninio pašto ID apps/frappe/frappe/utils/password.py,Incorrect User or Password,Netinkamas naudotojas arba slaptažodis @@ -3452,6 +3500,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Šis vaidmuo atnaujina naudotojo teises naudotojui DocType: Website Theme,Theme,Tema DocType: Web Form,Show Sidebar,Rodyti šoninę juostą +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,„Google“ kontaktų integracija. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Numatytasis gautieji apps/frappe/frappe/www/login.py,Invalid Login Token,Neteisingas prisijungimo raktas apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Pirmiausia nustatykite pavadinimą ir įrašykite įrašą. @@ -3479,7 +3528,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Ištaisykite DocType: Top Bar Item,Top Bar Item,Į viršų įtrauktas elementas ,Role Permissions Manager,Vaidmenų leidimų tvarkyklė -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,Buvo klaidų. Praneškite apie tai. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} metus (-us) apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Moteris DocType: System Settings,OTP Issuer Name,OTP emitento pavadinimas apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Pridėti prie darbų @@ -3579,6 +3628,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Kalba, apps/frappe/frappe/model/document.py,none of,nė vienas iš DocType: Desktop Icon,Page,Puslapis DocType: Workflow State,plus-sign,pliuso ženklas +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Išvalyti talpyklą ir įkelti iš naujo apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Negalima atnaujinti: neteisinga / pasibaigusi nuoroda. DocType: Kanban Board Column,Yellow,Geltona DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Lauko stulpelių skaičius tinklelyje (iš viso stulpelių tinklelyje turi būti mažesnis nei 11) @@ -3593,6 +3643,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Nauj DocType: Activity Log,Date,Data DocType: Communication,Communication Type,Ryšio tipas apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Tėvų lentelė +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Naršykite sąrašą aukštyn DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Rodyti visą klaidą ir leisti kūrėjams pranešti apie problemas DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3614,7 +3665,6 @@ DocType: Notification Recipient,Email By Role,El. Paštas pagal vaidmenį apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,"Atnaujinkite, jei norite pridėti daugiau nei {0} abonentų" apps/frappe/frappe/email/queue.py,This email was sent to {0},Šis el. Laiškas buvo išsiųstas į {0} DocType: User,Represents a User in the system.,Atstovauja vartotojui sistemoje. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Puslapis {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Pradėkite naują formatą apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Pridėti komentarą apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} iš {1} diff --git a/frappe/translations/lv.csv b/frappe/translations/lv.csv index 4d2ace0b91..494871c54b 100644 --- a/frappe/translations/lv.csv +++ b/frappe/translations/lv.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Iespējot gradientus DocType: DocType,Default Sort Order,Noklusējuma kārtošanas secība apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Rāda tikai skaitliskos laukus no atskaites +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,"Nospiediet taustiņu Alt, lai aktivizētu papildu īsceļus izvēlnē un sānjoslā" DocType: Workflow State,folder-open,mapes atvēršana DocType: Customize Form,Is Table,Ir tabula apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Nevar atvērt pievienoto failu. Vai eksportējat to kā CSV? DocType: DocField,No Copy,Nav kopiju DocType: Custom Field,Default Value,Noklusējuma vērtība apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Pievienošana ir obligāta ienākošajām vēstulēm +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Sinhronizēt kontaktus DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Datu migrācijas kartēšana apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Atsakieties apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.","PDF drukāšana, izmantojot "Raw Print", vēl nav atbalstīta. Lūdzu, noņemiet printera kartēšanu printera iestatījumos un mēģiniet vēlreiz." @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} un {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,"Saglabājot filtrus, radās kļūda" apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Ievadiet savu paroli apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Nevar izdzēst mājas un pielikumu mapes +DocType: Email Account,Enable Automatic Linking in Documents,Iespējot automātisko sasaisti dokumentos DocType: Contact Us Settings,Settings for Contact Us Page,Kontakta lapas iestatījumi DocType: Social Login Key,Social Login Provider,Social Login Provider +DocType: Email Account,"For more information, click here.","Lai iegūtu vairāk informācijas, noklikšķiniet šeit ." DocType: Transaction Log,Previous Hash,Iepriekšējā haša DocType: Notification,Value Changed,Mainīta vērtība DocType: Report,Report Type,Ziņojuma veids @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Enerģijas punkta noteikums apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,"Lūdzu, ievadiet klienta ID, pirms sociālā pieteikšanās ir iespējota" DocType: Communication,Has Attachment,Ir pielikums DocType: User,Email Signature,E-pasta paraksts -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} gads (-i) atpakaļ ,Addresses And Contacts,Adreses un kontakti apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Šī Kanban valde būs privāta DocType: Data Migration Run,Current Mapping,Pašreizējā kartēšana @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Jūs izvēlaties Sync Option kā ALL, tā atkal sinhronizēs visu lasīto un nelasīto ziņojumu no servera. Tas var izraisīt arī komunikācijas (e-pasta) dublēšanos." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Pēdējais sinhronizēts {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Nevar mainīt galvenes saturu +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Nav atrasts neviens rezultāts

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Pēc iesniegšanas nav atļauts mainīt {0} apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Programma ir atjaunināta uz jaunu versiju, lūdzu, atsvaidziniet šo lapu" DocType: User,User Image,Lietotāja attēls @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Atzī apps/frappe/frappe/public/js/frappe/chat.js,Discard,Izmest DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,"Lai iegūtu vislabākos rezultātus, atlasiet attēlu, kura platums ir 150 piks." apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,Atjaunots +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Atlasītas {0} vērtības DocType: Blog Post,Email Sent,Epasts nosūtīts DocType: Communication,Read by Recipient On,Lasiet saņēmējam DocType: User,Allow user to login only after this hour (0-24),Ļauj lietotājam pieteikties tikai pēc šīs stundas (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Eksporta modulis DocType: DocType,Fields,Lauki -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Jums nav atļauts drukāt šo dokumentu +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Jums nav atļauts drukāt šo dokumentu apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Vecāks apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Jūsu sesija ir beigusies, lūdzu, piesakieties vēlreiz, lai turpinātu." DocType: Assignment Rule,Priority,Prioritāte @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Atiestatīt OTP no DocType: DocType,UPPER CASE,LIELIE BURTI apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,"Lūdzu, iestatiet e-pasta adresi" DocType: Communication,Marked As Spam,Atzīmēts kā mēstule +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"E-pasta adrese, kuras Google kontaktpersonas jāsinhronizē." apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Importēt abonentus apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Saglabāt filtru DocType: Address,Preferred Shipping Address,Vēlamā piegādes adrese DocType: GCalendar Account,The name that will appear in Google Calendar,"Nosaukums, kas tiks parādīts Google kalendārā" +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,"Noklikšķiniet uz {0}, lai ģenerētu atsvaidzināšanas žetonu." DocType: Email Account,Disable SMTP server authentication,Atspējot SMTP servera autentifikāciju DocType: Email Account,Total number of emails to sync in initial sync process ,Kopējais sinhronizējamo e-pasta ziņojumu skaits sākotnējā sinhronizācijas procesā DocType: System Settings,Enable Password Policy,Iespējot paroles politiku @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Ievadiet kodu apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Nav iekšā DocType: Auto Repeat,Start Date,Sākuma datums apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Iestatīt diagrammu +DocType: Website Theme,Theme JSON,Tēma JSON apps/frappe/frappe/www/list.py,My Account,Mans Konts DocType: DocType,Is Published Field,Ir publicēts lauks DocType: DocField,Set non-standard precision for a Float or Currency field,Iestatiet nestandarta precizitāti pludiņa vai valūtas laukam @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: pievienojiet Reference: {{ reference_doctype }} {{ reference_name }} lai nosūtītu dokumenta atsauci DocType: LDAP Settings,LDAP First Name Field,LDAP vārda lauks apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Noklusējuma sūtīšana un iesūtne -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Iestatīšana> Pielāgot veidlapu apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",Atjaunināšanai varat atjaunināt tikai selektīvās slejas. apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',Lauka “Pārbaudīt” noklusējumam jābūt “0” vai “1” apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Koplietojiet šo dokumentu ar @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Domēni HTML DocType: Blog Settings,Blog Settings,Emuāra iestatījumi apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DocType nosaukumam jāsākas ar burtu, un tas var sastāvēt tikai no burtiem, cipariem, atstarpēm un pasvītrojumiem" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Iestatīšana> Lietotāja atļaujas DocType: Communication,Integrations can use this field to set email delivery status,"Integrācija var izmantot šo lauku, lai iestatītu e-pasta piegādes statusu" apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Svītru maksājumu vārtejas iestatījumi DocType: Print Settings,Fonts,Fonti DocType: Notification,Channel,Kanāls DocType: Communication,Opened,Atvērts DocType: Workflow Transition,Conditions,Nosacījumi +apps/frappe/frappe/config/website.py,A user who posts blogs.,"Lietotājs, kas publicē emuārus." apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Nav konta? Pierakstīties apps/frappe/frappe/utils/file_manager.py,Added {0},Pievienots {0} DocType: Newsletter,Create and Send Newsletters,Izveidot un nosūtīt jaunumus DocType: Website Settings,Footer Items,Kājenes vienumi +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,"Lūdzu, iestatiet noklusējuma e-pasta kontu no iestatīšanas> E-pasts> E-pasta konts" DocType: Website Slideshow Item,Website Slideshow Item,Vietnes slaidrādes vienums apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Reģistrējiet OAuth Client App DocType: Error Snapshot,Frames,Rāmji @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","0. līmenis ir dokumentu līmeņa atļaujām, augstākiem līmeņiem lauka līmeņa atļaujām." DocType: Address,City/Town,Pilsēta / pilsēta DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Tas atiestatīs jūsu pašreizējo tēmu, vai tiešām vēlaties turpināt?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},{0} obligātie lauki apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},"Kļūda, veidojot savienojumu ar e-pasta kontu {0}" apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,"Veidojot atkārtošanos, radās kļūda" @@ -528,7 +537,7 @@ DocType: Event,Event Category,Notikumu kategorija apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Kolonnas balstās uz apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Rediģēt virsrakstu DocType: Communication,Received,Saņemts -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Jums nav atļauts piekļūt šai lapai. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Jums nav atļauts piekļūt šai lapai. DocType: User Social Login,User Social Login,Lietotāja sociālā pieteikšanās apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,"Ierakstiet Python failu tajā pašā mapē, kur tas ir saglabāts, un atgriezt kolonnu un rezultātu." DocType: Contact,Purchase Manager,Pirkuma vadītājs @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Diag apps/frappe/frappe/utils/data.py,Operator must be one of {0},Operatoram jābūt vienam no {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Ja īpašnieks DocType: Data Migration Run,Trigger Name,Trigger nosaukums -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Rakstiet virsrakstus un ievadus savā emuārā. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Noņemt lauku apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Sakļaut visu apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Fona krāsa @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,Bārs DocType: SMS Settings,Enter url parameter for message,Ievadiet ziņojuma url parametru apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Jauns pielāgotā drukas formāts apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} jau pastāv +DocType: Workflow Document State,Is Optional State,Vai nav obligāta valsts DocType: Address,Purchase User,Pirkuma lietotājs DocType: Data Migration Run,Insert,Ievietot DocType: Web Form,Route to Success Link,Maršruts līdz veiksmīgai saitei @@ -644,6 +653,7 @@ DocType: System Settings,"If enabled, all users can login from any IP Address us apps/frappe/frappe/utils/data.py,only.,tikai. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,Nosacījums “{0}” ir nederīgs DocType: Auto Email Report,Day of Week,Nedēļas diena +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Iespējot Google API Google iestatījumos. DocType: DocField,Text Editor,Teksta redaktors apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Griezt apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Meklēt vai ierakstiet komandu @@ -651,6 +661,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,DB dublējumu skaits nedrīkst būt mazāks par 1 DocType: Workflow State,ban-circle,aizliegums DocType: Data Export,Excel,Excel +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Header, Breadcrumbs un Meta Tags" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Atbalsts E-pasta adrese nav norādīta DocType: Comment,Published,Publicēts DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","Piezīme: Lai iegūtu vislabākos rezultātus, attēliem jābūt vienāda izmēra un platuma lielumam, kas ir lielāks par augstumu." @@ -741,6 +752,7 @@ DocType: System Settings,Scheduler Last Event,Plānotāja pēdējais notikums apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Ziņojums par visām dokumentu daļām DocType: Website Sidebar Item,Website Sidebar Item,Vietnes sānjoslas vienums apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Darīt +DocType: Google Settings,Google Settings,Google iestatījumi apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Izvēlieties savu valsti, laika joslu un valūtu" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Šeit ievadiet statiskos url parametrus (piemēram, sūtītājs = ERPNext, lietotājvārds = ERPNext, parole = 1234 utt.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Nav e-pasta konta @@ -794,6 +806,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth nesējs ,Setup Wizard,Uzstādīšanas palīgs apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Pārslēgt diagrammu +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,Sinhronizēšana DocType: Data Migration Run,Current Mapping Action,Pašreizējā kartēšanas darbība DocType: Email Account,Initial Sync Count,Sākotnējais sinhronizācijas skaits apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Kontakta lapas iestatījumi. @@ -833,6 +846,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Drukas formāta veids apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Šiem kritērijiem nav iestatītas atļaujas. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Paplašināt visu +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Netika atrasts noklusējuma adrešu veidnes. Lūdzu, izveidojiet jaunu no Iestatīšanas> Drukāšana un zīmola> Adreses veidne." DocType: Tag Doc Category,Tag Doc Category,Tag Doc kategorija DocType: Data Import,Generated File,Radīts fails apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Piezīmes @@ -840,7 +854,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Laika skalas laukam jābūt saitei vai dinamiskai saitei DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,No šī izejošā servera tiks nosūtīti paziņojumi un lielapjoma vēstules. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Šī ir populārākā parole 100. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Vai pastāvīgi iesniegt {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Vai pastāvīgi iesniegt {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} nepastāv, atlasiet jaunu mērķi, lai apvienotos" DocType: Energy Point Rule,Multiplier Field,Reizinātāja lauks DocType: Workflow,Workflow State Field,Darbplūsmas stāvokļa lauks @@ -880,6 +894,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} novērtēja jūsu darbu {1} ar {2} punktiem DocType: Auto Email Report,Zero means send records updated at anytime,"Nulle nozīmē, ka jebkurā laikā tiek atjaunināti ieraksti" apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Vērtību {0} nevar mainīt +apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API iestatījumi. DocType: System Settings,Force User to Reset Password,"Piespiediet lietotāju, lai atiestatītu paroli" apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Ziņojumu veidotāja pārskatus pārvalda tieši atskaites veidotājs. Nav ko darīt. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Rediģēt filtru @@ -933,7 +948,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,priek DocType: S3 Backup Settings,eu-north-1,eu-north-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: atļauts tikai viens noteikums ar to pašu lomu, līmeni un {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Jums nav atļauts atjaunināt šo tīmekļa veidlapas dokumentu -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Maksimālais pielikumu ierobežojums šim ierakstam sasniegts. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Maksimālais pielikumu ierobežojums šim ierakstam sasniegts. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,"Lūdzu, pārliecinieties, ka atsauces komunikācijas dokumenti nav cirkulāri saistīti." DocType: DocField,Allow in Quick Entry,Atļaut ātrā ierakstā DocType: Error Snapshot,Locals,Vietējie iedzīvotāji @@ -965,7 +980,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Izņēmuma veids apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},"Nevar izdzēst vai atcelt, jo {0} {1} ir saistīts ar {2} {3} {4}" apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTP noslēpumu var atjaunot tikai administrators. -DocType: Web Form Field,Page Break,Lapas pārtraukums DocType: Website Script,Website Script,Vietnes skripts DocType: Integration Request,Subscription Notification,Paziņojums par abonēšanu DocType: DocType,Quick Entry,Ātrā ievadīšana @@ -982,6 +996,7 @@ DocType: Notification,Set Property After Alert,Iestatiet īpašumu pēc brīdin apps/frappe/frappe/__init__.py,Thank you,Paldies apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Palaidiet Webhooks iekšējai integrācijai apps/frappe/frappe/config/settings.py,Import Data,Importēt datus +DocType: Translation,Contributed Translation Doctype Name,Veicinātā tulkošana Doctype Name DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID DocType: Review Level,Review Level,Pārskatīšanas līmenis @@ -1000,7 +1015,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Veiksmīgi pabeigta apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Saraksts apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Novērtējiet -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Jauns {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Vai primārais kontakts DocType: Print Format,Raw Commands,Neapstrādātas komandas apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Drukas formātu stilu @@ -1041,6 +1055,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Kļūdas fona noti apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Atrodiet {0} {1} DocType: Email Account,Use SSL,Izmantojiet SSL DocType: DocField,In Standard Filter,Standarta filtrā +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Nav sinhronizējamu Google kontaktpersonu. DocType: Data Migration Run,Total Pages,Kopā lapas apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,"{0}: lauciņu “{1}” nevar iestatīt kā unikālu, jo tajā ir ne unikālas vērtības" DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Ja tas ir iespējots, lietotāji tiks informēti katru reizi, kad tie piesakās. Ja tas nav iespējots, lietotāji tiks informēti tikai vienu reizi." @@ -1061,7 +1076,7 @@ DocType: Assignment Rule,Automation,Automatizācija apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Failu izņemšana ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Meklēt “{0}” apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Kaut kas nogāja greizi -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,"Lūdzu, saglabājiet to pirms pievienošanas." +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,"Lūdzu, saglabājiet to pirms pievienošanas." DocType: Version,Table HTML,Tabulas HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,centrs DocType: Page,Standard,Standarta @@ -1138,12 +1153,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Nav rezult apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,Dzēsti {0} ieraksti apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,"Kaut kas neizdevās, izveidojot dropbox piekļuves pilnvaru. Lūdzu, pārbaudiet kļūdu žurnālu, lai iegūtu sīkāku informāciju." apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Pēcnācēji -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Netika atrasts noklusējuma adrešu veidnes. Lūdzu, izveidojiet jaunu no Iestatīšanas> Drukāšana un zīmola> Adreses veidne." +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google kontakti ir konfigurēti. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Slēpt detaļas apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Fonta stili apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Jūsu abonements beidzas {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},"Autentifikācija neizdevās, saņemot e-pasta ziņojumus no {0}. Ziņojums no servera: {1}" apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),"Statistika, pamatojoties uz pagājušās nedēļas sniegumu (no {0} līdz {1})" +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,"Automātisko sasaisti var aktivizēt tikai tad, ja ir iespējots Ienākošais." DocType: Website Settings,Title Prefix,Nosaukuma prefikss apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,"Autentifikācijas lietotnes, ko varat izmantot, ir:" DocType: Bulk Update,Max 500 records at a time,Maksimāli 500 ieraksti vienlaicīgi @@ -1176,7 +1192,7 @@ DocType: Auto Email Report,Report Filters,Ziņot par filtriem apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Atlasiet kolonnas DocType: Event,Participants,Dalībnieki DocType: Auto Repeat,Amended From,Grozīts no -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Jūsu informācija ir iesniegta +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Jūsu informācija ir iesniegta DocType: Help Category,Help Category,Palīdzības kategorija apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 mēnesis apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,"Izvēlieties esošu formātu, lai rediģētu vai sāktu jaunu formātu." @@ -1223,7 +1239,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Lauka uzskaite DocType: User,Generate Keys,Izveidot atslēgas DocType: Comment,Unshared,Nesadalīta -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Saglabāts +DocType: Translation,Saved,Saglabāts DocType: OAuth Client,OAuth Client,OAuth klients DocType: System Settings,Disable Standard Email Footer,Atspējot standarta e-pasta kājeni apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Drukas formāts {0} ir atspējots @@ -1254,6 +1270,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Pēdējo reiz DocType: Data Import,Action,Rīcība apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Ir nepieciešama klienta atslēga DocType: Chat Profile,Notifications,Paziņojumi +DocType: Translation,Contributed,Ieguldījums DocType: System Settings,mm/dd/yyyy,mm / dd / gggg DocType: Report,Custom Report,Pielāgots pārskats DocType: Workflow State,info-sign,info-zīme @@ -1270,6 +1287,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Kontakti DocType: LDAP Settings,LDAP Username Field,LDAP lietotājvārds lauks apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Lauku {0} nevar iestatīt kā unikālu {1}, jo pastāv neatkārtojamas esošās vērtības" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Iestatīšana> Pielāgot veidlapu DocType: User,Social Logins,Sociālās pieteikšanās DocType: Workflow State,Trash,Atkritumi DocType: Stripe Settings,Secret Key,Noslēpuma atslēga @@ -1327,6 +1345,7 @@ DocType: DocType,Title Field,Nosaukuma lauks apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Nevarēja izveidot savienojumu ar izejošo e-pasta serveri DocType: File,File URL,Faila URL DocType: Help Article,Likes,Patīk +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google kontaktpersonas Integrācija ir atspējota. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,"Lai varētu piekļūt dublējumkopijām, jums ir jābūt reģistrētam un sistēmas vadītāja lomai." apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Pirmais līmenis DocType: Blogger,Short Name,Īss vārds @@ -1344,13 +1363,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Importēt Zip DocType: Contact,Gender,Dzimums DocType: Workflow State,thumbs-down,īķšķi lejā -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Rindai jābūt vienai no {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Nevar iestatīt paziņojumu par dokumenta veidu {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Sistēmas pārvaldnieka pievienošana šim lietotājam, jo ir jābūt vismaz vienam sistēmas pārvaldniekam" apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Nosūtīts sveiciena e-pasts DocType: Transaction Log,Chaining Hash,Ķēdes Hash DocType: Contact,Maintenance Manager,Apkopes pārvaldnieks +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Salīdzinājumam izmantojiet> 5, <10 vai = 324. Diapazonā izmantojiet 5:10 (vērtībām starp 5 un 10)." apps/frappe/frappe/utils/bot.py,show,parādīt apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Koplietot URL apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Neatbalstīts failu formāts @@ -1372,7 +1391,7 @@ DocType: Communication,Notification,Paziņojums DocType: Data Import,Show only errors,Rādīt tikai kļūdas DocType: Energy Point Log,Review,Pārskatīšana apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Noņemtās rindas -DocType: GSuite Settings,Google Credentials,Google pilnvaras +DocType: Google Settings,Google Credentials,Google pilnvaras apps/frappe/frappe/www/login.html,Or login with,Vai arī piesakieties apps/frappe/frappe/model/document.py,Record does not exist,Ieraksts nav apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Jauns pārskata nosaukums @@ -1397,6 +1416,7 @@ DocType: Desktop Icon,List,Saraksts DocType: Workflow State,th-large,th-large apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,"{0}: nevar iestatīt Piešķirt Iesniegt, ja nav Iesniedzams" apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Nav saistīts ar jebkuru ierakstu +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Pievienojoties QZ paplātes lietojumprogrammai, radās kļūda ...

Lai izmantotu izejvielu drukas funkciju, ir jāinstalē un jāinstalē programma QZ Tray.

Noklikšķiniet šeit, lai lejupielādētu un instalētu QZ paplāti .
Noklikšķiniet šeit, lai uzzinātu vairāk par izejvielu drukāšanu ." DocType: Chat Message,Content,Saturs DocType: Workflow Transition,Allow Self Approval,Atļaut pašregulāciju apps/frappe/frappe/www/qrcode.py,Page has expired!,Lapa ir beigusies! @@ -1413,6 +1433,7 @@ DocType: Workflow State,hand-right,labajā pusē DocType: Website Settings,Banner is above the Top Menu Bar.,Reklāmkarogs ir virs augšējā izvēlnes joslas. apps/frappe/frappe/www/update-password.html,Invalid Password,Nepareiza parole apps/frappe/frappe/utils/data.py,1 month ago,Pirms 1 mēneša +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Atļaut Google kontaktpersonu piekļuvi DocType: OAuth Client,App Client ID,Lietotnes klienta ID DocType: DocField,Currency,Valūta DocType: Website Settings,Banner,Reklāmkarogs @@ -1424,7 +1445,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Mērķis DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Ja lomai nav piekļuves 0 līmenī, tad augstāki līmeņi ir bezjēdzīgi." DocType: ToDo,Reference Type,Atsauces tips -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Ļaujot DocType, DocType. Esi uzmanīgs!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Ļaujot DocType, DocType. Esi uzmanīgs!" DocType: Domain Settings,Domain Settings,Domēna iestatījumi DocType: Auto Email Report,Dynamic Report Filters,Dinamiskie atskaites filtri DocType: Energy Point Log,Appreciation,Novērtēšana @@ -1464,6 +1485,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,us-west-2 DocType: DocType,Is Single,Ir Single apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Izveidojiet jaunu formātu +DocType: Google Contacts,Authorize Google Contacts Access,Autorizējiet Google kontaktpersonu piekļuvi DocType: S3 Backup Settings,Endpoint URL,Gala parametra URL DocType: Social Login Key,Google,Google DocType: Contact,Department,nodaļa @@ -1478,7 +1500,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Piešķirt DocType: List Filter,List Filter,Saraksta filtrs DocType: Dashboard Chart Link,Chart,Diagramma apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Nevar noņemt -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,"Iesniedziet šo dokumentu, lai to apstiprinātu" +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,"Iesniedziet šo dokumentu, lai to apstiprinātu" apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} jau pastāv. Izvēlieties citu nosaukumu apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,"Šajā veidlapā ir nesaglabātas izmaiņas. Lūdzu, saglabājiet, pirms turpināt." apps/frappe/frappe/model/document.py,Action Failed,Darbība neizdevās @@ -1560,6 +1582,7 @@ DocType: DocField,Display,Displejs apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Atbildēt visiem DocType: Calendar View,Subject Field,Tēmas lauks apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Sesijas beigu termiņam jābūt {0} formātā +apps/frappe/frappe/model/workflow.py,Applying: {0},Piemērošana: {0} DocType: Workflow State,zoom-in,pietuvināt apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Neizdevās izveidot savienojumu ar serveri apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Datumam {0} jābūt formātā: {1} @@ -1571,8 +1594,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Uz pogas parādīsies ikona DocType: Role Permission for Page and Report,Set Role For,Iestatīt lomu +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Automātisko sasaisti var aktivizēt tikai vienam e-pasta kontam. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Nav piešķirti e-pasta konti +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"E-pasta konts nav iestatīts. Lūdzu, izveidojiet jaunu e-pasta kontu no iestatīšanas> E-pasts> E-pasta konts" apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Piešķiršana +DocType: Google Contacts,Last Sync On,Pēdējā sinhronizācija ieslēgta apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},"{0}, izmantojot automātisko noteikumu {1}" apps/frappe/frappe/config/website.py,Portal,Portāls apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Paldies par jūsu e-pastu @@ -1593,7 +1619,6 @@ DocType: GSuite Settings,GSuite Settings,GSuite iestatījumi DocType: Integration Request,Remote,Tālvadība DocType: File,Thumbnail URL,Sīktēlu URL apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Lejupielādēt pārskatu -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Iestatīšana> Lietotājs apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},{0} eksportētie pielāgojumi:
{1} DocType: GCalendar Account,Calendar Name,Kalendāra nosaukums apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Jūsu pieteikšanās ID ir @@ -1643,6 +1668,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Dotie apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Attēla laukam jābūt derīgam lauka nosaukumam apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,"Lai piekļūtu šai lapai, jums jābūt reģistrētam" DocType: Assignment Rule,Example: {{ subject }},Piemērs: {{topic}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Lauka nosaukums {0} ir ierobežots apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Laukam {0} nevar atiestatīt 'tikai lasāmu' DocType: Social Login Key,Enable Social Login,Iespējot sociālo pieteikšanos DocType: Workflow,Rules defining transition of state in the workflow.,"Noteikumi, kas nosaka valsts pāreju darbplūsmā." @@ -1663,10 +1689,10 @@ DocType: Website Settings,Route Redirects,Maršruta novirzīšana apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,E-pasta iesūtne apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},atjaunots {0} kā {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Automātiski piešķiriet dokumentus lietotājiem +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Atveriet Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,E-pasta veidnes parastajiem vaicājumiem. DocType: Letter Head,Letter Head Based On,Vēstules galva balstās uz apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,"Lūdzu, aizveriet šo logu" -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Maksājums ir pabeigts DocType: Contact,Designation,Apzīmējums DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Meta Tags @@ -1705,6 +1731,7 @@ DocType: System Settings,Choose authentication method to be used by all users,"I DocType: Error Snapshot,Parent Error Snapshot,Vecāku kļūdas momentuzņēmums DocType: GCalendar Account,GCalendar Account,GCalendar konts DocType: Language,Language Name,Valodas nosaukums +DocType: Workflow Document State,Workflow Action is not created for optional states,Darbplūsmas darbība nav izveidota neobligātām valstīm DocType: Customize Form,Customize Form,Pielāgot veidlapu DocType: DocType,Image Field,Attēla lauks apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Pievienots {0} ({1}) @@ -1746,6 +1773,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Lietot šo noteikumu, ja lietotājs ir īpašnieks" DocType: About Us Settings,Org History Heading,Org vēstures virsraksts apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,servera kļūda +DocType: Contact,Google Contacts Description,Google kontaktu apraksts apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Standarta lomas nevar pārdēvēt DocType: Review Level,Review Points,Pārskatīšanas punkti apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Trūkst parametra Kanban Board Name @@ -1763,7 +1791,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Ne Izstrādātāja režīmā! Iestatiet site_config.json vai izveidojiet 'Custom' DocType. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,ieguva {0} punktus DocType: Web Form,Success Message,Veiksmes ziņojums -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Salīdzinājumam izmantojiet> 5, <10 vai = 324. Diapazonā izmantojiet 5:10 (vērtībām starp 5 un 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Lapas saraksta apraksts vienkāršā tekstā, tikai pāris rindas. (ne vairāk kā 140 rakstzīmes)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Rādīt atļaujas DocType: DocType,Restrict To Domain,Ierobežot līdz domēnam @@ -1785,6 +1812,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Ne Sen apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Iestatīt daudzumu DocType: Auto Repeat,End Date,Beigu datums DocType: Workflow Transition,Next State,Nākamā valsts +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,Sinhronizēti {0} Google kontakti. DocType: System Settings,Is First Startup,Ir pirmais palaišana apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},atjaunināts uz {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Pārvietot uz @@ -1834,6 +1862,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Kalendārs apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Datu importēšanas veidne DocType: Workflow State,hand-left,roku pa kreisi +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Atlasiet vairākus saraksta vienumus apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Dublējuma lielums: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Saistīts ar {0} DocType: Braintree Settings,Private Key,Privātā atslēga @@ -1876,13 +1905,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Interese DocType: Bulk Update,Limit,Robeža DocType: Print Settings,Print taxes with zero amount,Drukāt nodokļus ar nulles summu -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"E-pasta konts nav iestatīts. Lūdzu, izveidojiet jaunu e-pasta kontu no iestatīšanas> E-pasts> E-pasta konts" DocType: Workflow State,Book,Grāmatu DocType: S3 Backup Settings,Access Key ID,Piekļuves atslēgas ID DocType: Chat Message,URLs,URL apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Vārdus un uzvārdus paši ir viegli uzminēt. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Ziņot {0} DocType: About Us Settings,Team Members Heading,Komandas locekļi Virsraksts +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Atlasiet saraksta vienumu DocType: Address Template,Address Template,Adrese veidne DocType: Workflow State,step-backward,soli atpakaļ apps/frappe/frappe/public/js/frappe/request.js,Not Found,Nav atrasts @@ -1905,6 +1934,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Eksportēt pielāgotās atļaujas apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Nav: Darbplūsmas beigas DocType: Version,Version,Versija +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Atvērt saraksta vienumu apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 mēneši DocType: Chat Message,Group,Grupa apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Ir problēma ar faila URL: {0} @@ -1960,6 +1990,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 gads apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} atgriezās jūsu punktos {1} DocType: Workflow State,arrow-down,bultiņa uz leju DocType: Data Import,Ignore encoding errors,Ignorēt kodēšanas kļūdas +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Ainava DocType: Letter Head,Letter Head Name,Vēstules nosaukums DocType: Web Form,Client Script,Klienta skripts DocType: Assignment Rule,Higher priority rule will be applied first,Vispirms tiks piemērots augstāks prioritātes noteikums @@ -2004,6 +2035,7 @@ DocType: Kanban Board Column,Green,Zaļš apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Jauniem ierakstiem ir nepieciešami tikai obligātie lauki. Ja vēlaties, varat dzēst neobligātas slejas." apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} jāsāk un jāslēdz ar burtu, un tajā var būt tikai burti, defise vai pasvītrojums." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Palaist primāro darbību apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Izveidot lietotāja e-pastu apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Kārtošanas laukam {0} jābūt derīgam lauka nosaukumam DocType: Auto Email Report,Filter Meta,Filtrēt Meta @@ -2033,6 +2065,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Laika skalas lauks apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Notiek ielāde ... DocType: Auto Email Report,Half Yearly,Pusgads +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Mans profils apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Pēdējais grozītais datums DocType: Contact,First Name,Vārds DocType: Post,Comments,Komentāri @@ -2055,6 +2088,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Saturs Hash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Ziņojumi ar {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} piešķirts {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Nav sinhronizēti jauni Google kontakti. DocType: Workflow State,globe,pasaulē apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Vidējais {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Notīrīt kļūdu žurnālus @@ -2081,6 +2115,8 @@ DocType: Workflow State,Inverse,Apgrieztā DocType: Activity Log,Closed,Slēgts DocType: Report,Query,Vaicājums DocType: Notification,Days After,Dienas pēc +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Lapas saīsnes +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portrets apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Pieprasījums ir beidzies DocType: System Settings,Email Footer Address,E-pasta kājenes adrese apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Enerģijas punkta atjaunināšana @@ -2108,6 +2144,7 @@ For Select, enter list of Options, each on a new line.","Par saitēm ievadiet di apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,Pirms 1 minūtes apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Nav aktīvo sesiju apps/frappe/frappe/model/base_document.py,Row,Rinda +DocType: Contact,Middle Name,Otrais vārds apps/frappe/frappe/public/js/frappe/request.js,Please try again,Lūdzu mēģiniet vēlreiz DocType: Dashboard Chart,Chart Options,Diagrammas opcijas DocType: Data Migration Run,Push Failed,Push neizdevās @@ -2136,6 +2173,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,maza izmēra maiņa DocType: Comment,Relinked,Atjaunots DocType: Role Permission for Page and Report,Roles HTML,Lomas HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Iet apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Darbplūsma sāksies pēc saglabāšanas. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Ja jūsu dati ir HTML, lūdzu, iekopējiet precīzu HTML kodu ar tagiem." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Dati bieži ir viegli uzminēt. @@ -2164,7 +2202,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Darbvirsmas ikona apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,atcēla šo dokumentu apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Datumu diapazons -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Iestatīšana> Lietotāja atļaujas apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} appreciated {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Mainītas vērtības apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Kļūda paziņojumā @@ -2229,6 +2266,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Masveida dzēšana DocType: DocShare,Document Name,Dokumenta nosaukums apps/frappe/frappe/config/customization.py,Add your own translations,Pievienojiet savus tulkojumus +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Pārvietojieties sarakstā uz leju DocType: S3 Backup Settings,eu-central-1,eu-central-1 DocType: Auto Repeat,Yearly,Ik gadu apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Pārdēvēt @@ -2279,6 +2317,7 @@ DocType: Workflow State,plane,plakne apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,"Iekļauta iestatīta kļūda. Lūdzu, sazinieties ar administratoru." apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Rādīt pārskatu DocType: Auto Repeat,Auto Repeat Schedule,Automātiskā atkārtošanas grafiks +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Skatīt Ref DocType: Address,Office,Birojs DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,Pirms {0} dienām @@ -2312,7 +2351,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Ne apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Mani iestatījumi apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Grupas nosaukums nevar būt tukšs. DocType: Workflow State,road,ceļš -DocType: Website Route Redirect,Source,Avots +DocType: Contact,Source,Avots apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Aktīvās sesijas apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Veidlapā var būt tikai viens locījums apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Jauna tērzēšana @@ -2334,6 +2373,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,"Lūdzu, ievadiet autorizācijas URL" DocType: Email Account,Send Notification to,Nosūtīt paziņojumu apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox rezerves iestatījumi +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,"Kaut kas nepareizi zīmes ģenerēšanas laikā. Noklikšķiniet uz {0}, lai izveidotu jaunu." apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Vai noņemt visus pielāgojumus? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Tikai administrators var rediģēt DocType: Auto Repeat,Reference Document,Atsauces dokuments @@ -2358,6 +2398,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Lomas var iestatīt lietotājiem no viņu Lietotāja lapas. DocType: Website Settings,Include Search in Top Bar,Iekļaut meklēšanu augšējā joslā apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,"[Steidzams] Kļūda, veidojot atkārtotu% s% s" +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globālie īsceļi DocType: Help Article,Author,Autors DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Dotajiem filtriem nav atrasts neviens dokuments @@ -2393,10 +2434,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, rinda {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Ja augšupielādējat jaunus ierakstus, "Nosaukumu sērija" kļūst obligāta, ja tā ir." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Rediģēt rekvizītus -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,"Nevar atvērt piemēru, kad tā {0} ir atvērts" +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,"Nevar atvērt piemēru, kad tā {0} ir atvērts" DocType: Activity Log,Timeline Name,Laika skalas nosaukums DocType: Comment,Workflow,Darbplūsma apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,"Lūdzu, iestatiet bāzes URL sociālajā pieteikšanās atslēgā Frappe" +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Tastatūras īsceļi DocType: Portal Settings,Custom Menu Items,Pielāgotās izvēlnes vienumi apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,{0} garumam jābūt starp 1 un 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Savienojums ir zaudēts. Dažas funkcijas var nedarboties. @@ -2459,6 +2501,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Pievienotā DocType: DocType,Setup,Uzstādīt apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} izveidots veiksmīgi apps/frappe/frappe/www/update-password.html,New Password,jauna parole +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Atlasiet Lauks apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Atstājiet šo sarunu DocType: About Us Settings,Team Members,Komandas dalībnieki DocType: Blog Settings,Writers Introduction,Rakstnieki Ievads @@ -2528,13 +2571,12 @@ DocType: Chat Room,Name,Nosaukums DocType: Communication,Email Template,E-pasta veidne DocType: Energy Point Settings,Review Levels,Pārskatīšanas līmeņi DocType: Print Format,Raw Printing,Neapstrādāta drukāšana -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,"Nevar atvērt {0}, kad tās eksemplārs ir atvērts" +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,"Nevar atvērt {0}, kad tās eksemplārs ir atvērts" DocType: DocType,"Make ""name"" searchable in Global Search",Veiciet meklēšanu meklēšanā globālajā meklēšanā DocType: Data Migration Mapping,Data Migration Mapping,Datu migrācijas kartēšana DocType: Data Import,Partially Successful,Daļēji veiksmīga DocType: Communication,Error,Kļūda apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Lauka veidu nevar mainīt no {0} uz {1} rindā {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Pievienojoties QZ paplātes lietojumprogrammai, radās kļūda ...

Lai izmantotu izejvielu drukas funkciju, ir jāinstalē un jāinstalē programma QZ Tray.

Noklikšķiniet šeit, lai lejupielādētu un instalētu QZ paplāti .
Noklikšķiniet šeit, lai uzzinātu vairāk par izejvielu drukāšanu ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Uzņemt bildi apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,"Izvairieties no gadiem, kas ir saistīti ar jums." DocType: Web Form,Allow Incomplete Forms,Atļaut nepilnīgas veidlapas @@ -2630,7 +2672,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Izvēlieties target = "_blank", lai atvērtu jaunu lapu." DocType: Portal Settings,Portal Menu,Portāla izvēlne DocType: Website Settings,Landing Page,Galvenā lapa -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,"Lūdzu, pierakstieties vai piesakieties, lai sāktu" DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontaktu iespējas, piemēram, "Pārdošanas vaicājums, atbalsta vaicājums" utt. Katrā jaunā rindā vai atdalītas ar komatiem." apps/frappe/frappe/twofactor.py,Verfication Code,Verifikācijas kods apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} jau ir atcelts @@ -2716,6 +2757,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Datu migrācija DocType: Address,Sales User,Pārdošanas lietotājs apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Mainīt lauka rekvizītus (slēpt, lasīt, saņemt atļauju utt.)" DocType: Property Setter,Field Name,Lauka nosaukums +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Klients DocType: Print Settings,Font Size,Fonta izmērs DocType: User,Last Password Reset Date,Pēdējais paroles atiestatīšanas datums DocType: System Settings,Date and Number Format,Datums un numura formāts @@ -2781,6 +2823,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Grupas mezgls apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Apvienot ar esošo DocType: Blog Post,Blog Intro,Blog Intro apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Jauna norāde +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Pārlēkt uz lauku DocType: Prepared Report,Report Name,Ziņojuma nosaukums apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Lūdzu, atsvaidziniet, lai iegūtu jaunāko dokumentu." apps/frappe/frappe/core/doctype/communication/communication.js,Close,Aizvērt @@ -2790,10 +2833,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Notikums DocType: Social Login Key,Access Token URL,Piekļūstiet Token URL apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,"Lūdzu, iestatiet Dropbox piekļuves taustiņus savā vietnes konfigurācijā" +DocType: Google Contacts,Google Contacts,Google kontakti DocType: User,Reset Password Key,Atiestatīt paroli apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Modificēts ar DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.","Lai atjaunotu, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Saglabāts veiksmīgi +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,"Sūtiet e-pastu uz adresi {0}, lai to saistītu šeit." DocType: File,Folder,Mape DocType: DocField,Perm Level,Permas līmenis DocType: Print Settings,Page Settings,Lapas iestatījumi @@ -2823,6 +2869,7 @@ DocType: Workflow State,remove-sign,noņemt zīmi DocType: Dashboard Chart,Full,Pilna DocType: DocType,User Cannot Create,Lietotājs nevar izveidot apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Jūs ieguvāt {0} punktu +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Iestatīšana> Lietotājs DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Ja to iestatīsiet, šis vienums nonāks nolaižamajā izvēlnē zem atlasītā vecāka." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Nav e-pasta ziņojumu apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Trūkst šādu lauku: @@ -2836,13 +2883,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Rā DocType: Web Form,Web Form Fields,Web veidlapu lauki DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Lietotāja rediģējama veidlapa vietnē. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Vai pastāvīgi atcelt {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Vai pastāvīgi atcelt {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,3. risinājums apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,Kopsummas apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Šī ir ļoti izplatīta parole. DocType: Personal Data Deletion Request,Pending Approval,Gaida apstiprinājumu apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Dokumentu nevarēja pareizi piešķirt apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Nav atļauts {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Nav rādītāju DocType: Personal Data Download Request,Personal Data Download Request,Personas datu lejupielādes pieprasījums apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} kopīgoja šo dokumentu ar {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Atlasiet {0} @@ -2858,7 +2906,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Šis e-pasts tika nosūtīts uz {0} un nokopēts uz {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,Nederīgs pieteikumvārds vai parole DocType: Social Login Key,Social Login Key,Sociālā pieteikšanās atslēga -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,"Lūdzu, iestatiet noklusējuma e-pasta kontu no iestatīšanas> E-pasts> E-pasta konts" apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filtri saglabāti DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Kā būtu jāformatē šī valūta? Ja tā nav iestatīta, izmantos sistēmas noklusējumus" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} ir iestatīts stāvoklī {2} @@ -2983,6 +3030,7 @@ DocType: User,Location,Atrašanās vieta apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Nav datu DocType: Website Meta Tag,Website Meta Tag,Vietnes meta atzīme DocType: Workflow State,film,filmu +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Kopēts starpliktuvē. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Iestatījumi nav atrasti apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Etiķete ir obligāta DocType: Webhook,Webhook Headers,Webhook galvenes @@ -3190,7 +3238,7 @@ DocType: Address,Address Line 1,Adrese 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Dokumenta tipam apps/frappe/frappe/model/base_document.py,Data missing in table,Dati trūkst tabulā apps/frappe/frappe/utils/bot.py,Could not identify {0},Nevarēja identificēt {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Šī veidlapa ir mainīta pēc ielādes +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Šī veidlapa ir mainīta pēc ielādes apps/frappe/frappe/www/login.html,Back to Login,Atpakaļ uz pieteikšanos apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Nav uzstādīts DocType: Data Migration Mapping,Pull,Pavelciet @@ -3257,6 +3305,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Bērnu galda kartēš apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,"E-pasta konta iestatīšana, lūdzu, ievadiet savu paroli:" apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,"Vienā pieprasījumā pārāk daudz raksta. Lūdzu, sūtiet mazākus pieprasījumus" DocType: Social Login Key,Salesforce,Salesforce +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{0} importēšana no {1} DocType: User,Tile,Flīžu apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} istabā jābūt gandrīz vienam lietotājam. DocType: Email Rule,Is Spam,Vai surogātpasts @@ -3294,7 +3343,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,mapes aizvērt DocType: Data Migration Run,Pull Update,Pavelciet atjauninājumu apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},apvienoja {0} uz {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Nav atrasts neviens rezultāts

DocType: SMS Settings,Enter url parameter for receiver nos,Ievadiet uztvērēja nr apps/frappe/frappe/utils/jinja.py,Syntax error in template,Sintakses kļūda veidnē apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,"Lūdzu, iestatiet filtru vērtību tabulas Ziņojumu filtrā." @@ -3307,6 +3355,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.",Diemžēl j DocType: System Settings,In Days,Dienas DocType: Report,Add Total Row,Pievienot kopējo rindu apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Sesijas sākums neizdevās +DocType: Translation,Verified,Verificēts DocType: Print Format,Custom HTML Help,Pielāgota HTML palīdzība DocType: Address,Preferred Billing Address,Vēlamā norēķinu adrese apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Piešķirts @@ -3321,7 +3370,6 @@ DocType: Help Article,Intermediate,Starpnieks DocType: Module Def,Module Name,Moduļa nosaukums DocType: OAuth Authorization Code,Expiration time,Derīguma termiņš apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Iestatīt noklusējuma formātu, lappuses izmēru, drukas stilu utt." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,"Jūs nevarat, piemēram, kaut ko, ko izveidojāt" DocType: System Settings,Session Expiry,Sesijas beigas DocType: DocType,Auto Name,Automātiskais nosaukums apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Atlasiet Pielikumi @@ -3349,6 +3397,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Sistēmas lapa DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Piezīme. Pēc noklusējuma tiek nosūtīti e-pasta ziņojumi par neveiksmīgiem dublējumiem. DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm +DocType: Translation,PR sent,PR nosūtīts DocType: Tag Doc Category,Doctype to Assign Tags,"Dokumenta tips, lai piešķirtu atzīmes" DocType: Address,Warehouse,Noliktava apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Dropbox iestatīšana @@ -3416,7 +3465,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,"Ctrl + Enter, lai pievienotu komentāru" apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Lauks {0} nav atlasāms. DocType: User,Birth Date,Dzimšanas datums -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Ar grupas ievilkumu DocType: List View Setting,Disable Count,Atspējot skaitli DocType: Contact Us Settings,Email ID,E-pasta ID apps/frappe/frappe/utils/password.py,Incorrect User or Password,Nepareizs lietotājs vai parole @@ -3451,6 +3499,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Šī loma atjaunina lietotāja atļaujas lietotājam DocType: Website Theme,Theme,Tēma DocType: Web Form,Show Sidebar,Rādīt sānjoslu +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google kontaktu integrācija. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Noklusējuma iesūtne apps/frappe/frappe/www/login.py,Invalid Login Token,Nederīgs pieteikšanās žetons apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Vispirms iestatiet nosaukumu un saglabājiet ierakstu. @@ -3478,7 +3527,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,"Lūdzu, izlabojiet" DocType: Top Bar Item,Top Bar Item,Augšējā josla vienums ,Role Permissions Manager,Lomu atļaujas pārvaldnieks -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,"Bija kļūdas. Lūdzu, ziņojiet par to." +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} gads (-i) atpakaļ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Sieviete DocType: System Settings,OTP Issuer Name,OTP emitenta nosaukums apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Pievienot darbam @@ -3578,6 +3627,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Valoda apps/frappe/frappe/model/document.py,none of,neviens no DocType: Desktop Icon,Page,Lappuse DocType: Workflow State,plus-sign,plus zīme +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Notīrīt kešatmiņu un pārlādēt apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Nevar atjaunināt: nepareiza / izbeigta saite. DocType: Kanban Board Column,Yellow,Dzeltens DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Kolonnu skaits laukā režģī (kopējā kolonnu tīklam jābūt mazākam par 11) @@ -3592,6 +3642,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Jaun DocType: Activity Log,Date,Datums DocType: Communication,Communication Type,Komunikācijas veids apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Vecāku tabula +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Virzieties sarakstā DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Rādīt pilnu kļūdu un ļaut izstrādātājiem ziņot par problēmām DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3613,7 +3664,6 @@ DocType: Notification Recipient,Email By Role,E-pasts pēc lomas apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,"Lūdzu, jauniniet, lai pievienotu vairāk nekā {0} abonentus" apps/frappe/frappe/email/queue.py,This email was sent to {0},Šis e-pasts tika nosūtīts uz {0} DocType: User,Represents a User in the system.,Pārstāv lietotāju sistēmā. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Lapa {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Sāciet jaunu formātu apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Pievieno komentāru apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} no {1} diff --git a/frappe/translations/mk.csv b/frappe/translations/mk.csv index 253d0084a1..d1525edea9 100644 --- a/frappe/translations/mk.csv +++ b/frappe/translations/mk.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Овозможи градиенти DocType: DocType,Default Sort Order,Стандарден редослед на редот apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Прикажани се само Нумерички полиња од Извештај +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Притиснете Alt Key за да активирате дополнителни кратенки во менито и страничната лента DocType: Workflow State,folder-open,отворена папка DocType: Customize Form,Is Table,Е Табела apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Не може да се отвори приложената датотека. Дали го извезувате како CSV? DocType: DocField,No Copy,Нема копија DocType: Custom Field,Default Value,Стандардна вредност apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Додај To е задолжително за дојдовни пораки +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Sync Contacts DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Детално пресликување на податоци за миграција apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Откажете apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",Печатењето PDF преку "Raw Print" сеуште не е поддржано. Ве молиме отстранете го мапирањето на печатачот во Printer Settings и обидете се повторно. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} и {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Се појави грешка при зачувување на филтрите apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Внесете ја вашата лозинка apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Не можам да ги избришам папките за дома и додатоци +DocType: Email Account,Enable Automatic Linking in Documents,Овозможи автоматско поврзување во документи DocType: Contact Us Settings,Settings for Contact Us Page,Подесувања за контакт со нас DocType: Social Login Key,Social Login Provider,Провајдер за социјални најавувања +DocType: Email Account,"For more information, click here.","За повеќе информации, кликнете овде ." DocType: Transaction Log,Previous Hash,Претходна Hash DocType: Notification,Value Changed,Промена на вредноста DocType: Report,Report Type,Тип на извештај @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Правило за енергет apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,Ве молиме внесете ID на клиентот пред да биде овозможено социјалното најавување DocType: Communication,Has Attachment,Има прилог DocType: User,Email Signature,Е-пошта потпис -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} година (а) ,Addresses And Contacts,Адреси и контакти apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Овој Одбор Канбан ќе биде приватен DocType: Data Migration Run,Current Mapping,Тековно мапирање @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Избирате Опција за синхронизација како СИТЕ, Таа ќе ја ресинхронизира сите \ читање, како и непрочитаната порака од серверот. Ова, исто така, може да предизвика дуплирање на комуникацијата (пораки)." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Последно синхронизирано {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Не може да се смени содржината на заглавието +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Не смее да се промени {0} по поднесувањето apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Апликацијата е ажурирана во нова верзија, ве молиме освежете ја оваа страница" DocType: User,User Image,Корисничка слика @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Оз apps/frappe/frappe/public/js/frappe/chat.js,Discard,Отфрли DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Изберете слика од приближно ширина 150px со транспарентна позадина за најдобри резултати. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,Рецидивирани +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} избрани вредности DocType: Blog Post,Email Sent,Испратена е-пошта DocType: Communication,Read by Recipient On,Прочитајте од Примачот DocType: User,Allow user to login only after this hour (0-24),Дозволете му на корисникот да се најави само по овој час (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Модул за извоз DocType: DocType,Fields,Полиња -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Не ви е дозволено да го испечатите овој документ +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Не ви е дозволено да го испечатите овој документ apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Родител apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Вашата сесија е истечена, ве молиме пријавете се повторно за да продолжите." DocType: Assignment Rule,Priority,Приоритет @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Ресетирај DocType: DocType,UPPER CASE,ГОРЕ СЛУЧАЈ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,Ве молиме поставете е-пошта DocType: Communication,Marked As Spam,Означени како спам +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Е-мејл адреса чии контакти на Google треба да се синхронизираат. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Увези претплатници apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Зачувај филтер DocType: Address,Preferred Shipping Address,Преферираната адреса за испорака DocType: GCalendar Account,The name that will appear in Google Calendar,Името што ќе се појави во Google Календар +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Кликнете на {0} за да генерирате Токен за освежување. DocType: Email Account,Disable SMTP server authentication,Оневозможи автентикација на SMTP серверот DocType: Email Account,Total number of emails to sync in initial sync process ,Вкупен број на пораки што ќе се синхронизираат во почетната синхронизација DocType: System Settings,Enable Password Policy,Овозможи политика за лозинка @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Внеси го кодот apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Не е во DocType: Auto Repeat,Start Date,Почетен датум apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Поставете ја табелата +DocType: Website Theme,Theme JSON,Тема JSON apps/frappe/frappe/www/list.py,My Account,Мојот акаунт DocType: DocType,Is Published Field,Е објавено поле DocType: DocField,Set non-standard precision for a Float or Currency field,Поставете нестандардна прецизност за полето Float или Валута @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Додај Reference: {{ reference_doctype }} {{ reference_name }} за испраќање референца за документ DocType: LDAP Settings,LDAP First Name Field,LDAP Име на полето apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Стандардно испраќање и Влезно сандаче -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Поставување> Прилагоди ја формата apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.","За ажурирање, можете да ажурирате само селективни колони." apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',Стандардната вредност за полето за проверка "мора да биде или" 0 "или" 1 " apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Сподели го овој документ со @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Домени HTML DocType: Blog Settings,Blog Settings,Поставки за блог apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Името на DocType треба да започне со писмо и може да се состои само од букви, броеви, празни места и долни црти" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Поставување> Кориснички дозволи DocType: Communication,Integrations can use this field to set email delivery status,Интеграции може да го користат ова поле за да го поставите статусот за испорака на е-пошта apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Постелни поставувања за исплата за исплата DocType: Print Settings,Fonts,Фонтови DocType: Notification,Channel,Канал DocType: Communication,Opened,Отворено DocType: Workflow Transition,Conditions,Услови +apps/frappe/frappe/config/website.py,A user who posts blogs.,Корисник кој објавува блогови. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Немате сметка? Пријавете се apps/frappe/frappe/utils/file_manager.py,Added {0},Додадено {0} DocType: Newsletter,Create and Send Newsletters,Креирај и испрати билтени DocType: Website Settings,Footer Items,Поднови на подножјето +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Те молам постави стандардна Email сметка од Setup> Email> Email Account DocType: Website Slideshow Item,Website Slideshow Item,Ставка на слајдшоу на веб-страница apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Регистрирајте ја апликацијата за клиенти на OAuth DocType: Error Snapshot,Frames,Рамки @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Ниво 0 е за дозволи на ниво на документ, \ повисоки нивоа за дозволи на ниво на поле." DocType: Address,City/Town,Град / град DocType: Email Account,GMail,Гмајл -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Ова ќе ја ресетира вашата тековна тема, дали сте сигурни дека сакате да продолжите?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Задолжителни полиња се потребни во {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Грешка при поврзувањето со е-пошта {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Се појави грешка при создавање на периодични @@ -528,7 +537,7 @@ DocType: Event,Event Category,Категорија на настани apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Колони базирани на apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Уреди наслов DocType: Communication,Received,Примена -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Не Ви е дозволено да пристапите на оваа страница. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Не Ви е дозволено да пристапите на оваа страница. DocType: User Social Login,User Social Login,Кориснички социјален најава apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,Напишете ја Python-датотеката во истата папка каде што е зачувана и вратете ја колоната и резултатот. DocType: Contact,Purchase Manager,Купувач @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Ко apps/frappe/frappe/utils/data.py,Operator must be one of {0},Операторот мора да биде еден од {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Ако сопственикот DocType: Data Migration Run,Trigger Name,Активирај го името -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Напиши наслови и вовед во вашиот блог. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Отстрани го полето apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Скрши ги сите apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Боја на позадина @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,Бар DocType: SMS Settings,Enter url parameter for message,Внеси параметар за URL за порака apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Нов формат на прилагодено печатење apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} веќе постои +DocType: Workflow Document State,Is Optional State,Е факултативна држава DocType: Address,Purchase User,Набави корисник DocType: Data Migration Run,Insert,Вметни DocType: Web Form,Route to Success Link,Пат до успешна врска @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Кор DocType: File,Is Home Folder,Е домашна папка apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Тип: DocType: Post,Is Pinned,Е закачен -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Нема дозвола за '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Нема дозвола за '{0}' {1} DocType: Patch Log,Patch Log,Печ логирање DocType: Print Format,Print Format Builder,Печатач формат Градител 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. Ова исто така може да се постави само за специфични корисници во Корисничката страница" apps/frappe/frappe/utils/data.py,only.,само. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,Состојбата "{0}" е невалидна DocType: Auto Email Report,Day of Week,Ден на неделата +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Овозможете Google API во поставките на Google. DocType: DocField,Text Editor,Уредувач на текст apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Исечи apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Пребарувајте или напишете команда @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,Бројот на DB резервните копии не може да биде помал од 1 DocType: Workflow State,ban-circle,забрана круг DocType: Data Export,Excel,Excel +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Наслов, брошури и мета тагови" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Е-пошта за поддршка не е одредена DocType: Comment,Published,Објавено DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","Забелешка: За најдобри резултати, сликите мора да бидат со иста големина и ширината мора да биде поголема од висината." @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Последен настан apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Извештај за сите документи на документот DocType: Website Sidebar Item,Website Sidebar Item,Точка на лента на веб-страницата apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Да направиш +DocType: Google Settings,Google Settings,Подесувања на Google apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Изберете ја вашата земја, временска зона и валута" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Внесете параметри за статички URL тука (на пр. Испраќач = ERPNext, корисничко име = ERPNext, лозинка = 1234 итн.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Нема е-пошта @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,Носител на ОАут Носител ,Setup Wizard,Волшебник за поставување apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Вклучи ја табелата +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,Синхронизирање DocType: Data Migration Run,Current Mapping Action,Тековна акција за мапирање DocType: Email Account,Initial Sync Count,Првична синхронизација apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Подесувања за контакт со нас. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Тип на печатење за печатење apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Не се дозволени дозволи за овој критериум. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Проширете ги сите +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Не е пронајден стандарден образец за адреси. Ве молиме креирајте нова од Setup> Printing and Branding> Template Template. DocType: Tag Doc Category,Tag Doc Category,Категорија на документи за ознаки DocType: Data Import,Generated File,Генерирана датотека apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Белешки @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Полето на временската линија мора да биде линк или динамичка врска DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Известувања и масовни пораки ќе бидат испратени од овој заминување сервер. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Ова е топ-100 заедничка лозинка. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Трајно поднеси {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Трајно поднеси {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} не постои, изберете нова целна за спојување" DocType: Energy Point Rule,Multiplier Field,Поле за множење DocType: Workflow,Workflow State Field,State Field полето за работа @@ -880,6 +894,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New {0},Ново apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} ја ценеше вашата работа на {1} со {2} поени DocType: Auto Email Report,Zero means send records updated at anytime,Нулта значи испраќање записи во секое време apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Вредноста не може да се промени за {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Подесувања на Google API. DocType: System Settings,Force User to Reset Password,Принудете го корисникот да ја ресетира лозинката apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Извештаите на Градителот на извештаи се управуваат директно од градителот на извештаи. Нема што да се прави. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Уредување на филтер @@ -933,7 +948,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,за DocType: S3 Backup Settings,eu-north-1,еу-север-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Само едно правило е дозволено со иста Улога, Ниво и {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Не ви е дозволено да го ажурирате овој веб-образец за документи -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Достигнато е максимално ограничување на прилогот за овој запис. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Достигнато е максимално ограничување на прилогот за овој запис. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,Ве молиме проверете дали Референтните Документи за комуникација не се кружно поврзани. DocType: DocField,Allow in Quick Entry,Дозволи во брз внес DocType: Error Snapshot,Locals,Локални @@ -965,7 +980,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Тип на исклучок apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},Не може да се избрише или откаже бидејќи {0} {1} е поврзан со {2} {3} {4} apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,ОТП тајната може да се ресетира само од администраторот. -DocType: Web Form Field,Page Break,Страница пауза DocType: Website Script,Website Script,Веб-сценарио DocType: Integration Request,Subscription Notification,Известување за претплата DocType: DocType,Quick Entry,Брз влез @@ -982,6 +996,7 @@ DocType: Notification,Set Property After Alert,Постави својство apps/frappe/frappe/__init__.py,Thank you,Ви благодарам apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Слак Webhooks за внатрешна интеграција apps/frappe/frappe/config/settings.py,Import Data,Увези податоци +DocType: Translation,Contributed Translation Doctype Name,Придонесот на името на доктрината за превод DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ИД DocType: Review Level,Review Level,Ниво на преглед @@ -1000,7 +1015,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Успешно завршено apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Листа apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Цени -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Ново {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Е примарен контакт DocType: Print Format,Raw Commands,Raw команди apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Стилови за формати за печатење @@ -1041,6 +1055,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Грешки во apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Најдете {0} во {1} DocType: Email Account,Use SSL,Користете SSL DocType: DocField,In Standard Filter,Во стандарден филтер +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Нема контакти на Google да се синхронизираат. DocType: Data Migration Run,Total Pages,Вкупно страници apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: Полето "{1}" не може да се постави како Единствено бидејќи има не-уникатни вредности DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Ако е овозможено, корисниците ќе бидат известени секојпат кога ќе се најават. Ако не е овозможено, корисниците ќе бидат известени само еднаш." @@ -1061,7 +1076,7 @@ DocType: Assignment Rule,Automation,Автоматизација apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Отповикување на датотеки ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Пребарај за '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Нешто тргна наопаку -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Те молам снимете пред да додадете. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,Те молам снимете пред да додадете. DocType: Version,Table HTML,Табела HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,центар DocType: Page,Standard,Стандарден @@ -1139,12 +1154,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Нема р apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} евиденција е избришана apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,Нешто не е во ред додека генерира токен за пристап до dropbox. Ве молиме проверете го дневникот за грешки за повеќе детали. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Потомци на -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Не е пронајден стандарден образец за адреси. Ве молиме креирајте нова од Setup> Printing and Branding> Template Template. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Контактите на Google се конфигурирани. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Сокриј детали apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Стилови на фонт apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Вашата претплата ќе истече на {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Проверката за автентикација не успеа при примањето е-пошта од сметката за е-пошта {0}. Порака од серверот: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Статистика врз основа на перформансите минатата недела (од {0} до {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,Автоматското поврзување може да се активира само ако е овозможено Incoming. DocType: Website Settings,Title Prefix,Наслов префикс apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Апликациите за автентикација кои можете да ги користите се: DocType: Bulk Update,Max 500 records at a time,Максимум 500 записи во исто време @@ -1177,7 +1193,7 @@ DocType: Auto Email Report,Report Filters,Филтри за извештај apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Изберете колони DocType: Event,Participants,Учесници DocType: Auto Repeat,Amended From,Изменета од -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Вашите податоци се доставени +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Вашите податоци се доставени DocType: Help Category,Help Category,Категорија на помош apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 месец apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Изберете постоечки формат за уредување или започнување на нов формат. @@ -1224,7 +1240,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Поле за следење DocType: User,Generate Keys,Генерирање клучеви DocType: Comment,Unshared,Unelect -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Зачувани +DocType: Translation,Saved,Зачувани DocType: OAuth Client,OAuth Client,Клиент на OAuth DocType: System Settings,Disable Standard Email Footer,Оневозможи стандардно поштенско сандаче apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Формат за печатење {0} е оневозможен @@ -1255,6 +1271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Послед DocType: Data Import,Action,Акција apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Потребен е клучен клуч DocType: Chat Profile,Notifications,Известувања +DocType: Translation,Contributed,Придонесено DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy DocType: Report,Custom Report,Прилагодено извештај DocType: Workflow State,info-sign,инфо-знак @@ -1271,6 +1288,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Контакт DocType: LDAP Settings,LDAP Username Field,Поле за корисничко име ЛДАП apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} полето не може да се постави како единствено во {1}, бидејќи постојат не-уникатни постоечки вредности" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Поставување> Прилагоди ја формата DocType: User,Social Logins,Социјални најави DocType: Workflow State,Trash,Ѓубре DocType: Stripe Settings,Secret Key,Таен клуч @@ -1328,6 +1346,7 @@ DocType: DocType,Title Field,Поле за наслов apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Не можам да се поврзам со појдовниот сервер за е-пошта DocType: File,File URL,URL на датотеката DocType: Help Article,Likes,Сака +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Интеграцијата на Google Контактите е оневозможена. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Треба да бидете најавени и да имате улога на Управувач на системот за да може да пристапите до бекап. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Прво ниво DocType: Blogger,Short Name,Кратко име @@ -1345,13 +1364,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Увези поштенски код DocType: Contact,Gender,Пол DocType: Workflow State,thumbs-down,палците надолу -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Редицата треба да биде една од {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Не може да се постави известување за тип на документ {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Додавање на менаџер на системот на овој корисник, бидејќи мора да има барем еден менаџер на системот" apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Испратена e-mail порака DocType: Transaction Log,Chaining Hash,Управување со хаш DocType: Contact,Maintenance Manager,Менаџер за одржување +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","За споредба, користете> 5, <10 или = 324. За опсег, користете 5:10 (за вредности помеѓу 5 и 10)." apps/frappe/frappe/utils/bot.py,show,шоу apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Удели URL apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Неподдржан формат на датотека @@ -1373,7 +1392,7 @@ DocType: Communication,Notification,Известување DocType: Data Import,Show only errors,Прикажи само грешки DocType: Energy Point Log,Review,Преглед apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Редови отстранети -DocType: GSuite Settings,Google Credentials,Google Credentials +DocType: Google Settings,Google Credentials,Google Credentials apps/frappe/frappe/www/login.html,Or login with,Или најавете се со apps/frappe/frappe/model/document.py,Record does not exist,Рекорд не постои apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Ново име на извештај @@ -1398,6 +1417,7 @@ DocType: Desktop Icon,List,Листа DocType: Workflow State,th-large,th-large apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Не може да се постави Додели поднеси ако не е поднесено apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Не е поврзано со ниеден запис +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Грешка при поврзување со апликацијата QZ Tray ...

Треба да ја инсталирате и да ја користите апликацијата QZ Tray за да ја користите функцијата Raw Print.

Кликни тука за да преземете и инсталирате QZ лента .
Кликни тука за да дознаете повеќе за суровини за печатење ." DocType: Chat Message,Content,содржина DocType: Workflow Transition,Allow Self Approval,Дозволи автоматско одобрување apps/frappe/frappe/www/qrcode.py,Page has expired!,Страната е истечена! @@ -1414,6 +1434,7 @@ DocType: Workflow State,hand-right,рака-десно DocType: Website Settings,Banner is above the Top Menu Bar.,Банерот е над горната лента со мени. apps/frappe/frappe/www/update-password.html,Invalid Password,невалидна лозинка apps/frappe/frappe/utils/data.py,1 month ago,пред 1 месец +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Дозволи го пристапот за контакти со Google DocType: OAuth Client,App Client ID,ID на клиентот на апликацијата DocType: DocField,Currency,Валута DocType: Website Settings,Banner,Банер @@ -1425,7 +1446,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Цел DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Ако Улогата нема пристап до ниво 0, тогаш повисоките нивоа се бесмислени." DocType: ToDo,Reference Type,Тип на референца -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Дозволувајќи DocType, DocType. Внимавај!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Дозволувајќи DocType, DocType. Внимавај!" DocType: Domain Settings,Domain Settings,Подесувања на домен DocType: Auto Email Report,Dynamic Report Filters,Динамички филтри за извештаи DocType: Energy Point Log,Appreciation,Благодарност @@ -1467,6 +1488,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,нас-запад-2 DocType: DocType,Is Single,Е еден apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Креирај нов формат +DocType: Google Contacts,Authorize Google Contacts Access,Овластете го пристапот за контакти на Google DocType: S3 Backup Settings,Endpoint URL,URL на крајната точка DocType: Social Login Key,Google,Google DocType: Contact,Department,оддел @@ -1481,7 +1503,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Доделете DocType: List Filter,List Filter,Филтер со листа DocType: Dashboard Chart Link,Chart,Табела apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Не може да се отстрани -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Поднесете го овој документ за да потврдите +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Поднесете го овој документ за да потврдите apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} веќе постои. Изберете друго име apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Имате незачувани промени во оваа форма. Ве молиме зачувајте пред да продолжите. apps/frappe/frappe/model/document.py,Action Failed,Дејството не успеа @@ -1563,6 +1585,7 @@ DocType: DocField,Display,Прикажи apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Одговори на сите DocType: Calendar View,Subject Field,Предметно поле apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Истекот на сесијата мора да биде во формат {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},Примена: {0} DocType: Workflow State,zoom-in,Зумирај apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Не можам да се поврзам на серверот apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Датумот {0} мора да биде во формат: {1} @@ -1574,8 +1597,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Иконата ќе се појави на копчето DocType: Role Permission for Page and Report,Set Role For,Поставете ја улогата за +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Автоматското поврзување може да се активира само за една сметка за е-пошта. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Нема доделени e-mail сметки +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Е-пошта не е подесена. Ве молиме креирајте нова сметка за е-пошта од Setup> E-mail> Email account apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Доделување +DocType: Google Contacts,Last Sync On,Последно синхронизирање е вклучено apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},добиени со {0} преку автоматско правило {1} apps/frappe/frappe/config/website.py,Portal,Портал apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Ви благодариме за вашата е-пошта @@ -1596,7 +1622,6 @@ DocType: GSuite Settings,GSuite Settings,Подесувања на GSuite DocType: Integration Request,Remote,Далечински управувач DocType: File,Thumbnail URL,УРЛ на сликичка apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Преземи извештај -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup> User apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Прилагодувањата за {0} се извезуваат во:
{1} DocType: GCalendar Account,Calendar Name,Име на календарот apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Вашиот ID за најава е @@ -1646,6 +1671,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Од apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Полето за слика мора да биде валидно поле apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,Треба да бидете најавени за да пристапите на оваа страница DocType: Assignment Rule,Example: {{ subject }},Пример: {{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Името на полето {0} е ограничено apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Не можете да го исклучите 'Само за читање' за полето {0} DocType: Social Login Key,Enable Social Login,Овозможи социјална најава DocType: Workflow,Rules defining transition of state in the workflow.,Правила за дефинирање на транзицијата на државата во работниот тек. @@ -1666,10 +1692,10 @@ DocType: Website Settings,Route Redirects,Пат пренасочувања apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Е-поштенско сандаче apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},вратена {0} како {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Автоматски доделите документи до корисниците +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Отвори Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Шаблони за е-пошта за вообичаени пребарувања. DocType: Letter Head,Letter Head Based On,Писмото глава врз основа на apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Те молам затворете го овој прозорец -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Целосно плаќање DocType: Contact,Designation,Означување DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Мета тагови @@ -1707,6 +1733,7 @@ DocType: System Settings,Choose authentication method to be used by all users,И DocType: Error Snapshot,Parent Error Snapshot,Слика за грешка при грешка DocType: GCalendar Account,GCalendar Account,GCalendar сметка DocType: Language,Language Name,Име на јазик +DocType: Workflow Document State,Workflow Action is not created for optional states,Акцијата за работниот тек не е создадена за опционални состојби DocType: Customize Form,Customize Form,Прилагоди ја формата DocType: DocType,Image Field,Поле за слики apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Додадено {0} ({1}) @@ -1748,6 +1775,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,Примени го ова правило ако Корисникот е Сопственик DocType: About Us Settings,Org History Heading,Org Историја Заглавие apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,грешка во серверот +DocType: Contact,Google Contacts Description,Опис на контактот на Google apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Стандардните улоги не можат да се преименуваат DocType: Review Level,Review Points,Преглед поени apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Недостасува параметар Kanban Board Name @@ -1765,7 +1793,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Не во режим на програмери! Поставете во site_config.json или направете "Custom" DocType. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,добиени {0} поени DocType: Web Form,Success Message,Порака за успех -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","За споредба, користете> 5, <10 или = 324. За опсег, користете 5:10 (за вредности помеѓу 5 и 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Опис за страната за објавување, во обичен текст, само неколку линии. (максимум 140 знаци)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Прикажи дозволи DocType: DocType,Restrict To Domain,Ограничи до домен @@ -1787,6 +1814,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Не apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Постави количество DocType: Auto Repeat,End Date,Крајна дата DocType: Workflow Transition,Next State,Следна држава +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Синхронизирани Google Contacts. DocType: System Settings,Is First Startup,Е прв стартување apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},ажуриран до {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Премести @@ -1836,6 +1864,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Календар apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Шаблон за увоз на податоци DocType: Workflow State,hand-left,рака-лево +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Изберете повеќе елементи од листата apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Големина на резервна копија: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Поврзан со {0} DocType: Braintree Settings,Private Key,Приватен клуч @@ -1878,13 +1907,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Интерес DocType: Bulk Update,Limit,Граница DocType: Print Settings,Print taxes with zero amount,Печати даноци со нула -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Е-пошта не е подесена. Ве молиме креирајте нова сметка за е-пошта од Setup> E-mail> Email account DocType: Workflow State,Book,Книга DocType: S3 Backup Settings,Access Key ID,Пристапете на клучниот ID DocType: Chat Message,URLs,URL адреси apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Имиња и презимиња сами по себе лесно може да се погоди. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Извештај {0} DocType: About Us Settings,Team Members Heading,Наслов на членовите на тимот +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Изберете ставка од листата apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Документот {0} е поставен да напише {1} за {2} DocType: Address Template,Address Template,Образец за адреси DocType: Workflow State,step-backward,чекор назад @@ -1908,6 +1937,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Извези дозволи за дозволи apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Никој: крај на работниот тек DocType: Version,Version,Верзија +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Отвори ја ставката за листа apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 месеци DocType: Chat Message,Group,Група apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Има некој проблем со url-датотеката: {0} @@ -1963,6 +1993,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 година apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} ги преврти своите точки на {1} DocType: Workflow State,arrow-down,стрелка-надолу DocType: Data Import,Ignore encoding errors,Игнорирај грешки при кодирање +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Пејзаж DocType: Letter Head,Letter Head Name,Писмото на главата Име DocType: Web Form,Client Script,Клиентско сценарио DocType: Assignment Rule,Higher priority rule will be applied first,Прво ќе се применува правилото за повисок приоритет @@ -2007,6 +2038,7 @@ DocType: Kanban Board Column,Green,Зелена apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"За новите записи се неопходни само задолжителни полиња. Ако сакате, можете да ги избришете необврзувачките колони." apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} мора да започне и да заврши со буква и може да содржи само букви, цртички или долни црти." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Активирај примарна акција apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Креирај корисничка е-пошта apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Полето сортирања {0} мора да биде валидно поле DocType: Auto Email Report,Filter Meta,Филтер Мета @@ -2036,6 +2068,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Полето на временската линија apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Се вчитува ... DocType: Auto Email Report,Half Yearly,Половина Годишно +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Мој Профил apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Последен пат изменето DocType: Contact,First Name,Име DocType: Post,Comments,Коментари @@ -2058,6 +2091,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Content Hash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Мислења од {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} доделен {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Нема нови синхронизирани нови контакти со Google. DocType: Workflow State,globe,свет apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Просек на {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Исчисти логови за грешки @@ -2084,6 +2118,8 @@ DocType: Workflow State,Inverse,Обратно DocType: Activity Log,Closed,Затворено DocType: Report,Query,Барањето DocType: Notification,Days After,Денови потоа +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Кратенки на страница +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Портрет apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Барање замислено DocType: System Settings,Email Footer Address,Адреса со е-пошта apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Ажурирање на енергетската точка @@ -2111,6 +2147,7 @@ For Select, enter list of Options, each on a new line.","За Линкови, в apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,Пред 1 минута apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Нема активни сесии apps/frappe/frappe/model/base_document.py,Row,Ред +DocType: Contact,Middle Name,Средно име apps/frappe/frappe/public/js/frappe/request.js,Please try again,Обидете се повторно DocType: Dashboard Chart,Chart Options,Опции на табели DocType: Data Migration Run,Push Failed,Притисни не успеа @@ -2139,6 +2176,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,големина-мала DocType: Comment,Relinked,Реингиниран DocType: Role Permission for Page and Report,Roles HTML,Улоги HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Оди apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Работен тек ќе започне по зачувувањето. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Доколку вашите податоци се во HTML, ве молиме копирајте го точниот HTML код со ознаките." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Датумите често се лесно да се погодат. @@ -2167,7 +2205,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Икона на работната површина apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,го откажа овој документ apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Датумски опсег -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Поставување> Кориснички дозволи apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} ценети {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Променети вредности apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Грешка во известувањето @@ -2232,6 +2269,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Масовно бришење DocType: DocShare,Document Name,Име на документ apps/frappe/frappe/config/customization.py,Add your own translations,Додај свои преводи +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Одете до листата DocType: S3 Backup Settings,eu-central-1,eu-central-1 DocType: Auto Repeat,Yearly,Годишно apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Преименувај @@ -2282,6 +2320,7 @@ DocType: Workflow State,plane,рамнина apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Грешка во вгнездениот налог. Ве молиме контактирајте го администраторот. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Прикажи го извештајот DocType: Auto Repeat,Auto Repeat Schedule,Автоматско повторување на распоред +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Преглед на реф DocType: Address,Office,Канцеларија DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} дена пред @@ -2315,7 +2354,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,П apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Мои подесувања apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Името на групата не може да биде празна. DocType: Workflow State,road,патот -DocType: Website Route Redirect,Source,Извор +DocType: Contact,Source,Извор apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Активни сесии apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Може да има само еден преклопен во форма apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Нов разговор @@ -2337,6 +2376,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Ве молиме внесете URL на овластување DocType: Email Account,Send Notification to,Испрати известување до apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Поставки на резервната копија Dropbox +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,Нешто не беше во ред за време на генерацијата. Кликнете на {0} за да генерирате нова. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Отстрани ги сите прилагодувања? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Само администраторот може да уредува DocType: Auto Repeat,Reference Document,Референтен документ @@ -2361,6 +2401,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Улогите можат да бидат поставени за корисниците од нивната Корисничка страница. DocType: Website Settings,Include Search in Top Bar,Вклучете пребарување во горната лента apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Итно] Грешка при создавање на повторувачки% s за% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Глобални кратенки DocType: Help Article,Author,Автор DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Не е пронајден документ за дадени филтри @@ -2396,10 +2437,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, ред {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Ако ставате нови записи, "Серијата на имиња" станува задолжителна, доколку е присутна." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Уредете ги својствата -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Не може да се отвори инстанца кога нејзината {0} е отворена +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,Не може да се отвори инстанца кога нејзината {0} е отворена DocType: Activity Log,Timeline Name,Име на временската линија DocType: Comment,Workflow,Работен процес apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Ве молиме поставете база на URL-то во клучот за социјална најава за Frappe +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Кратенки за тастатура DocType: Portal Settings,Custom Menu Items,Прилагодени ставки на мени apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,Должината на {0} треба да биде помеѓу 1 и 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Изгубена конекција. Некои функции можеби нема да работат. @@ -2462,6 +2504,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Додад DocType: DocType,Setup,Поставување apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} успешно креиран apps/frappe/frappe/www/update-password.html,New Password,нова лозинка +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Изберете поле apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Остави го овој разговор DocType: About Us Settings,Team Members,Членови на тимот DocType: Blog Settings,Writers Introduction,Писатели Вовед @@ -2531,13 +2574,12 @@ DocType: Chat Room,Name,Име DocType: Communication,Email Template,Е-пошта Шаблон DocType: Energy Point Settings,Review Levels,Нивоа на преглед DocType: Print Format,Raw Printing,Сурово печатење -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Не може да се отвори {0} кога нејзината инстанца е отворена +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,Не може да се отвори {0} кога нејзината инстанца е отворена DocType: DocType,"Make ""name"" searchable in Global Search",Направете "име" за пребарување во Глобално пребарување DocType: Data Migration Mapping,Data Migration Mapping,Мапирање на миграција на податоци DocType: Data Import,Partially Successful,Делумно успешен DocType: Communication,Error,Грешка apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype не може да се промени од {0} до {1} во ред {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Грешка при поврзување со апликацијата QZ Tray ...

Треба да ја инсталирате и да ја користите апликацијата QZ Tray за да ја користите функцијата Raw Print.

Кликни тука за да преземете и инсталирате QZ лента .
Кликни тука за да дознаете повеќе за суровини за печатење ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Сликај apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,Избегнувајте години кои се поврзани со вас. DocType: Web Form,Allow Incomplete Forms,Дозволи нецелосни форми @@ -2633,7 +2675,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Изберете target = "_blank" за да се отвори на нова страница. DocType: Portal Settings,Portal Menu,Порта мени DocType: Website Settings,Landing Page,Целна страница -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,Пријавете се или пријавете се за да започнете DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Контакт опции, како "Продај барањето, поддршка за пребарување" и сл секој на нова линија или одделени со запирки." apps/frappe/frappe/twofactor.py,Verfication Code,Код за проверка apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} веќе одјавена @@ -2719,6 +2760,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Мапирањ DocType: Address,Sales User,Продај корисник apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Промени ги својствата на полето (скриј, само за читање, дозвола, итн.)" DocType: Property Setter,Field Name,Име на полето +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Клиент DocType: Print Settings,Font Size,Големина на фонтот DocType: User,Last Password Reset Date,Последен број за ресетирање на лозинката DocType: System Settings,Date and Number Format,Датум и формат на број @@ -2784,6 +2826,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Група ја apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Спојување со постоечки DocType: Blog Post,Blog Intro,Блог Intro apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Ново споменување +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Скокни на поле DocType: Prepared Report,Report Name,Пријавете име apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Ве молиме освежете за да го добиете најновиот документ. apps/frappe/frappe/core/doctype/communication/communication.js,Close,Затвори @@ -2793,10 +2836,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Настан DocType: Social Login Key,Access Token URL,Пристапете до URL токенот apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Ве молиме поставете Dropbox пристапни копчиња во конфигурацијата на вашиот сајт +DocType: Google Contacts,Google Contacts,Google Контакти DocType: User,Reset Password Key,Ресетирај го лозинката apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Модифицирано од DocType: User,Bio,Био apps/frappe/frappe/limits.py,"To renew, {0}.","Да се обнови, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Успешно зачувано +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Испратете е-пошта до {0} за да ја поврзете овде. DocType: File,Folder,Папка DocType: DocField,Perm Level,Ниво на Перм DocType: Print Settings,Page Settings,Подесувања на страница @@ -2826,6 +2872,7 @@ DocType: Workflow State,remove-sign,отстрани-знак DocType: Dashboard Chart,Full,Целосно DocType: DocType,User Cannot Create,Корисникот не може да креира apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Добив {0} точка +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup> User DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Ако го поставите ова, оваа ставка ќе дојде во опаѓачкото мени под избраниот родител." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Нема пораки apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Недостасуваат следниве полиња: @@ -2839,13 +2886,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,П DocType: Web Form,Web Form Fields,Поле на веб-форма DocType: Desktop Icon,_doctype,_доктор apps/frappe/frappe/config/website.py,User editable form on Website.,Кориснички уредувачки формулар на веб-страницата. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Трајно Откажи {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Трајно Откажи {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Опција 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,Вкупно apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Ова е многу честа лозинка. DocType: Personal Data Deletion Request,Pending Approval,Се чека одобрување apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Документот не може да биде правилно доделен apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Не е дозволено за {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Нема вредности за прикажување DocType: Personal Data Download Request,Personal Data Download Request,Барање за преземање на лични податоци apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} го споделија овој документ со {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Изберете {0} @@ -2861,7 +2909,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Оваа е-пошта беше испратена до {0} и копирана на {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,Невалиден најава или лозинка DocType: Social Login Key,Social Login Key,Клучен клуч за пријавување -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Те молам постави стандардна Email сметка од Setup> Email> Email Account apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Филтрите се зачувани DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Како треба да се форматира оваа валута? Ако не е поставено, ќе користи системски стандардни вредности" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} е поставено да се напише {2} @@ -2987,6 +3034,7 @@ DocType: User,Location,Локација apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Нема податок DocType: Website Meta Tag,Website Meta Tag,Веб-страница на мета таг DocType: Workflow State,film,филм +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Копирано на таблата со исечоци. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Не се пронајдени поставувања apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Етикетата е задолжителна DocType: Webhook,Webhook Headers,Заглавија на веб-горе @@ -3195,7 +3243,7 @@ DocType: Address,Address Line 1,Адреса Линија 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,За тип на документ apps/frappe/frappe/model/base_document.py,Data missing in table,Податоците недостигаат во табелата apps/frappe/frappe/utils/bot.py,Could not identify {0},Не можеше да се идентификува {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Оваа форма е модифицирана откако ќе ја вчитате +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Оваа форма е модифицирана откако ќе ја вчитате apps/frappe/frappe/www/login.html,Back to Login,Назад кон најавување apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Не е поставен DocType: Data Migration Mapping,Pull,Повлечете @@ -3263,6 +3311,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Мапирање та apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Подесување на е-пошта внесете ја вашата лозинка за: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Премногу пишува во едно барање. Ве молиме пратете помали барања DocType: Social Login Key,Salesforce,Salesforce +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Внесување на {0} на {1} DocType: User,Tile,Плочка apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} соба мора да има барем еден корисник. DocType: Email Rule,Is Spam,Е спам @@ -3300,7 +3349,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,папката-затвори DocType: Data Migration Run,Pull Update,Повлечете го ажурирањето apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},се спои {0} во {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

DocType: SMS Settings,Enter url parameter for receiver nos,Внесете го параметарот на URL-то за приемникот бр apps/frappe/frappe/utils/jinja.py,Syntax error in template,Грешка во синтаксата во дефиниција apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Внесете вредност на филтерот во табелата Филтер за извештаи. @@ -3313,6 +3361,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","За жал DocType: System Settings,In Days,Во деновите DocType: Report,Add Total Row,Додај вкупно ред apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Почетокот на сесијата не успеа +DocType: Translation,Verified,Потврден DocType: Print Format,Custom HTML Help,Приспособена HTML Help DocType: Address,Preferred Billing Address,Претпочитана Адреса за фактурирање apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Доделен @@ -3327,7 +3376,6 @@ DocType: Help Article,Intermediate,Средно DocType: Module Def,Module Name,Име на модулот DocType: OAuth Authorization Code,Expiration time,Време на истекување apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Поставете стандардниот формат, големина на страница, стил на печатење итн." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,Не може да ви се допадне нешто што сте го создале DocType: System Settings,Session Expiry,Истекување на сесијата DocType: DocType,Auto Name,Автоматско име apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Изберете прилози @@ -3355,6 +3403,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Системска страница DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Забелешка: Стандардно се испраќаат пораки за неуспешни копии. DocType: Custom DocPerm,Custom DocPerm,Прилагодено DocPerm +DocType: Translation,PR sent,ПР испратен DocType: Tag Doc Category,Doctype to Assign Tags,Doctype за доделување на ознаки DocType: Address,Warehouse,Магацин apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Поставување Dropbox @@ -3422,7 +3471,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Enter за да додадете коментар apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Полето {0} не може да се одбере. DocType: User,Birth Date,Датум на раѓање -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Со група внесување DocType: List View Setting,Disable Count,Оневозможи го бројот DocType: Contact Us Settings,Email ID,Е-маил проект apps/frappe/frappe/utils/password.py,Incorrect User or Password,Неточен корисник или лозинка @@ -3457,6 +3505,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Оваа улога ги ажурира корисничките дозволи за корисникот DocType: Website Theme,Theme,Тема DocType: Web Form,Show Sidebar,Прикажи ја страничната лента +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Интеграција на Google Contacts. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Стандардно сандаче apps/frappe/frappe/www/login.py,Invalid Login Token,Невалиден најавен знак apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Прво поставете го името и зачувајте го рекордот. @@ -3484,7 +3533,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Те молам поправете DocType: Top Bar Item,Top Bar Item,Точка на врвот ,Role Permissions Manager,Управник за дозволи за улоги -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,Имаше грешки. Ве молиме пријавете го ова. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} година (а) apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Женски DocType: System Settings,OTP Issuer Name,ОТП Име на издавачот apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Додај за да се направи @@ -3584,6 +3633,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Пос apps/frappe/frappe/model/document.py,none of,ниту еден од DocType: Desktop Icon,Page,Страница DocType: Workflow State,plus-sign,плус-знак +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Исчисти го кешот и вчитај apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Не може да се ажурира: Неточна / истекна линк. DocType: Kanban Board Column,Yellow,Жолта DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Број на колони за поле во мрежа (Вкупно колони во решетка треба да бидат помали од 11) @@ -3598,6 +3648,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Но DocType: Activity Log,Date,Датум DocType: Communication,Communication Type,Тип на комуникација apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Табела за родители +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Одете до списокот DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Покажи целосна грешка и дозволете известување за проблемите до развивачот DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3619,7 +3670,6 @@ DocType: Notification Recipient,Email By Role,Е-пошта по улога apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,Ве молиме надградба за да додадете повеќе од {0} претплатници apps/frappe/frappe/email/queue.py,This email was sent to {0},Оваа е-пошта беше испратена до {0} DocType: User,Represents a User in the system.,Претставува корисник во системот. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Страница {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Започни нов формат apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Додај коментар apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} на {1} diff --git a/frappe/translations/ml.csv b/frappe/translations/ml.csv index c70f290b8c..2e276718bd 100644 --- a/frappe/translations/ml.csv +++ b/frappe/translations/ml.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,ഗ്രേഡിയന്റുകൾ പ്രാപ്തമാക്കുക DocType: DocType,Default Sort Order,സ്ഥിരസ്ഥിതി അടുക്കി ഓർഡർ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,റിപ്പോർട്ടിനിൽ നിന്ന് സംഖ്യാശാസ്ത്ര ഫീൽഡുകൾ മാത്രം കാണിക്കുന്നു +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,മെനുവിലും സൈഡ്‌ബാറിലും അധിക കുറുക്കുവഴികൾ പ്രവർത്തനക്ഷമമാക്കാൻ Alt കീ അമർത്തുക DocType: Workflow State,folder-open,ഫോൾഡർ ഓപ്പൺ DocType: Customize Form,Is Table,പട്ടിക apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,അറ്റാച്ചുചെയ്ത ഫയൽ തുറക്കാനായില്ല. നിങ്ങൾ ഇത് CSV ആയി എക്സ്പോർട്ടുമാക്കിയോ? DocType: DocField,No Copy,പകർപ്പെടുക്കുക DocType: Custom Field,Default Value,സ്ഥിര മൂല്യം apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,ഇൻകമിംഗ് മെയിലുകൾ ചേർക്കുന്നത് നിർബന്ധമാണ് +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,കോൺ‌ടാക്റ്റുകൾ സമന്വയിപ്പിക്കുക DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,ഡാറ്റ മൈഗ്രേഷൻ മാപ്പിംഗ് വിശദാംശം apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,പിന്തുടരാതിരിക്കുക apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.","റോ പ്രിന്റ്" വഴി PDF പ്രിന്റിംഗ് ഇതുവരെ പിന്തുണച്ചിട്ടില്ല. പ്രിന്റർ ക്രമീകരണങ്ങളിലെ പ്രിന്റർ മാപ്പിംഗ് നീക്കംചെയ്ത് വീണ്ടും ശ്രമിക്കുക. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} കൂടാതെ {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,ഫിൽട്ടറുകൾ സംരക്ഷിക്കുന്നതിൽ ഒരു പിശകുണ്ടായിരുന്നു apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,നിങ്ങളുടെ പാസ്വേഡ് നൽകുക apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,"ഹോം, അറ്റാച്ചുമെന്റുകൾ ഫോൾഡറുകൾ ഇല്ലാതാക്കാൻ കഴിയില്ല" +DocType: Email Account,Enable Automatic Linking in Documents,പ്രമാണങ്ങളിൽ യാന്ത്രിക ലിങ്കിംഗ് പ്രാപ്തമാക്കുക DocType: Contact Us Settings,Settings for Contact Us Page,ഞങ്ങളെ ബന്ധപ്പെടുക എന്ന താളിലെ ക്രമീകരണങ്ങൾ DocType: Social Login Key,Social Login Provider,സാമൂഹിക ലോഗിൻ ദാതാവ് +DocType: Email Account,"For more information, click here.","കൂടുതൽ വിവരങ്ങൾക്ക്, ഇവിടെ ക്ലിക്കുചെയ്യുക ." DocType: Transaction Log,Previous Hash,മുമ്പത്തെ ഹാഷ് DocType: Notification,Value Changed,മൂല്യം മാറ്റി DocType: Report,Report Type,റിപ്പോർട്ട് ഇനം @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,എനർജി പോയിന് apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,സോഷ്യൽ ലോഗിൻ പ്രാപ്തമാക്കി മുമ്പ് ക്ലയന്റ് ID നൽകുക DocType: Communication,Has Attachment,അറ്റാച്ചുമെന്റ് ഉണ്ട് DocType: User,Email Signature,ഇമെയിൽ ഒപ്പ് -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} വർഷം (ങ്ങൾ) മുമ്പ് ,Addresses And Contacts,വിലാസങ്ങളും കോൺടാക്റ്റുകളും apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,ഈ കാബൺ ബോർഡ് സ്വകാര്യമായിരിക്കും DocType: Data Migration Run,Current Mapping,നിലവിലെ മാപ്പിംഗ് @@ -208,6 +211,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","നിങ്ങൾ സമന്വയ ഓപ്ഷൻ ALL ആയി തിരഞ്ഞെടുക്കുന്നു, ഇത് സെർവറിൽ നിന്ന് വായിക്കുന്നതും വായിക്കാത്തതുമായ എല്ലാ സന്ദേശങ്ങളും പുനസജ്ജമാക്കും. ആശയവിനിമയത്തിന്റെ (ഇ-മെയിലുകൾ) പകർപ്പിനും ഇത് കാരണമാകാം." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},അവസാനം സമന്വയിപ്പിച്ചത് {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,ശീർഷക ഉള്ളടക്കം മാറ്റാൻ കഴിയില്ല +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,സമർപ്പിച്ചതിനുശേഷം {0} മാറ്റാൻ അനുവദിച്ചിട്ടില്ല apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","അപ്ലിക്കേഷൻ ഒരു പുതിയ പതിപ്പിലേക്ക് അപ്ഡേറ്റുചെയ്തു, ദയവായി ഈ പേജ് പുതുക്കുക" DocType: User,User Image,ഉപയോക്താവിന്റെ ചിത്രം @@ -318,6 +322,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},{0} apps/frappe/frappe/public/js/frappe/chat.js,Discard,നിരാകരിക്കുക DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,മികച്ച ഫലത്തിനായി സുതാര്യമായ പശ്ചാത്തലത്തോടുകൂടിയ ഏകദേശം വീതി 150px- യുടെ ഒരു ചിത്രം തിരഞ്ഞെടുക്കുക. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,വീണ്ടും പഴയത് +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} മൂല്യങ്ങൾ തിരഞ്ഞെടുത്തു DocType: Blog Post,Email Sent,ഇമെയിൽ അയച്ചു DocType: Communication,Read by Recipient On,സ്വീകർത്താവ് ഓൺ ചെയ്യുക വഴി വായിക്കുക DocType: User,Allow user to login only after this hour (0-24),ഈ മണിക്കൂറിന് ശേഷം ഉപയോക്താവിന് പ്രവേശിക്കാൻ അനുവദിക്കുക (0-24) @@ -339,7 +344,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,എക്സ്പോർട്ട് ചെയ്യുന്നതിനുള്ള മൊഡ്യൂൾ DocType: DocType,Fields,ഫീൽഡുകൾ -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,ഈ പ്രമാണം അച്ചടിക്കാൻ നിങ്ങൾക്ക് അനുവാദമില്ല +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,ഈ പ്രമാണം അച്ചടിക്കാൻ നിങ്ങൾക്ക് അനുവാദമില്ല apps/frappe/frappe/public/js/frappe/model/model.js,Parent,പാരന്റ് apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","നിങ്ങളുടെ സെഷൻ കാലഹരണപ്പെട്ടു, ദയവായി തുടരാൻ വീണ്ടും ലോഗിൻ ചെയ്യുക." DocType: Assignment Rule,Priority,മുൻഗണന @@ -365,6 +370,7 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,OTP രഹസ് DocType: DocType,UPPER CASE,UPPER CASE apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,ദയവായി ഇമെയിൽ വിലാസം സജ്ജീകരിക്കുക DocType: Communication,Marked As Spam,സ്പാം എന്ന് അടയാളപ്പെടുത്തി +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Google കോൺ‌ടാക്റ്റുകൾ സമന്വയിപ്പിക്കേണ്ട ഇമെയിൽ വിലാസം. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,ഇറക്കുമതി സബ്സ്ക്രൈബർമാർ apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,ഫിൽട്ടർ സംരക്ഷിക്കുക DocType: Address,Preferred Shipping Address,തിരഞ്ഞെടുത്ത ഷിപ്പിംഗ് വിലാസം @@ -385,6 +391,7 @@ DocType: Web Page,Insert Code,കോഡ് ചേർക്കുക apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,ഇല്ല DocType: Auto Repeat,Start Date,തുടങ്ങുന്ന ദിവസം apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,ചാർട്ട് സജ്ജമാക്കുക +DocType: Website Theme,Theme JSON,തീം JSON apps/frappe/frappe/www/list.py,My Account,എന്റെ അക്കൗണ്ട് DocType: DocType,Is Published Field,പ്രസിദ്ധീകരിച്ച ഫീൽഡ് ആണ് DocType: DocField,Set non-standard precision for a Float or Currency field,ഫ്ലോട്ട് അല്ലെങ്കിൽ കറൻസി ഫീൽഡിനായി നോൺ-സ്റ്റാൻഡേർഡ് പ്രിസിഷൻ സജ്ജമാക്കുക @@ -395,7 +402,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Reference: {{ reference_doctype }} {{ reference_name }} ചേർക്കുക Reference: {{ reference_doctype }} {{ reference_name }} പ്രമാണ റഫറൻസ് അയക്കുന്നതിന് Reference: {{ reference_doctype }} {{ reference_name }} DocType: LDAP Settings,LDAP First Name Field,LDAP ഫസ്റ്റ് നെയിം ഫീൽഡ് apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,സ്ഥിരസ്ഥിതി അയയ്ക്കുന്നതും ഇൻബോക്സും -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,സെറ്റപ്പ്> ഫോം ഇഷ്ടാനുസൃതമാക്കുക apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.","അപ്ഡേറ്റുചെയ്യുന്നതിന്, നിങ്ങൾക്ക് തിരഞ്ഞെടുത്ത നിരകൾ മാത്രമേ അപ്ഡേറ്റ് ചെയ്യാൻ കഴിയൂ." apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1','പരിശോധന' എന്ന ഫീൽഡിന്റെ സ്ഥിരസ്ഥിതി '0' അല്ലെങ്കിൽ '1' apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,ഈ പ്രമാണം പങ്കുവയ്ക്കുക @@ -435,19 +441,23 @@ DocType: Notification,Print Settings,പ്രിന്റ് ക്രമീക apps/frappe/frappe/config/website.py,Categorize blog posts.,ബ്ലോഗ് പോസ്റ്റുകൾ വർഗ്ഗീകരിക്കുക. DocType: User,Last IP,അവസാന ഐപി apps/frappe/frappe/model/document.py,One of,ഒന്ന് +apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,ഈ ഇമെയിൽ അയയ്ക്കാൻ കഴിയില്ല. ഈ മാസത്തേക്ക് നിങ്ങൾ {0} ഇമെയിലുകൾ അയയ്ക്കുന്ന പരിധി മറികടന്നു. DocType: Domain Settings,Domains HTML,ഡൊമെയ്നുകളുടെ HTML DocType: Blog Settings,Blog Settings,ബ്ലോഗ് ക്രമീകരണങ്ങൾ apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","ഡോക്ടൈപ്പിന്റെ പേര് ഒരു കത്ത് ഉപയോഗിച്ച് ആരംഭിക്കണം, ഇതിന് അക്ഷരങ്ങൾ, അക്കങ്ങൾ, സ്പെയ്സുകൾ, അടിവരകൾ എന്നിവ മാത്രമേ ഉണ്ടാകാവൂ" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,സജ്ജീകരണം> ഉപയോക്തൃ അനുമതികൾ DocType: Communication,Integrations can use this field to set email delivery status,ഇമെയിൽ ഡെലിവറി സ്റ്റാറ്റസ് സജ്ജമാക്കുന്നതിന് സംയോജനങ്ങൾ ഈ ഫീൽഡ് ഉപയോഗിക്കാനാവും apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,സ്ട്രിംഗ് പേയ്മെന്റ് ഗേറ്റ്വേ ക്രമീകരണങ്ങൾ DocType: Print Settings,Fonts,ഫോണ്ടുകൾ DocType: Notification,Channel,ചാനൽ DocType: Communication,Opened,തുറന്നു DocType: Workflow Transition,Conditions,വ്യവസ്ഥകൾ +apps/frappe/frappe/config/website.py,A user who posts blogs.,ബ്ലോഗുകൾ പോസ്റ്റുചെയ്യുന്ന ഒരു ഉപയോക്താവ്. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,ഒരു അക്കൗണ്ട് ഇല്ലേ? സൈൻ അപ്പ് ചെയ്യുക apps/frappe/frappe/utils/file_manager.py,Added {0},{0} ചേർത്തു DocType: Newsletter,Create and Send Newsletters,വാർത്താക്കുറിപ്പുകൾ സൃഷ്ടിക്കുകയും അയയ്ക്കുകയും ചെയ്യുക DocType: Website Settings,Footer Items,ഫൂട്ടർ ഇനങ്ങൾ +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,സജ്ജീകരണം> ഇമെയിൽ> ഇമെയിൽ അക്ക from ണ്ടിൽ നിന്ന് സ്ഥിരസ്ഥിതി ഇമെയിൽ അക്കൗണ്ട് സജ്ജമാക്കുക DocType: Website Slideshow Item,Website Slideshow Item,വെബ്സൈറ്റ് സ്ലൈഡ്ഷോ ഇനം apps/frappe/frappe/config/integrations.py,Register OAuth Client App,OAuth ക്ലയന്റ് അപ്ലിക്കേഷൻ രജിസ്റ്റർ ചെയ്യുക DocType: Error Snapshot,Frames,ഫ്രെയിംസ് @@ -476,6 +486,7 @@ DocType: File,Lft,Lft DocType: Workflow State,align-justify,വിന്യസിക്കുക apps/frappe/frappe/public/js/frappe/form/quick_entry.js,Saving...,സംരക്ഷിക്കുന്നത്... apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html,Error Report,പിശക് റിപ്പോർട്ട് +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} changed {1} to {2},{0} {1} നെ {2} ലേക്ക് മാറ്റി apps/frappe/frappe/core/doctype/user/user_list.js,Active,സജീവമാണ് apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Export Report: {0},കയറ്റുമതി റിപ്പോർട്ട്: {0} apps/frappe/frappe/twofactor.py,"Login session expired, refresh page to retry","ലോഗിൻ സെഷൻ കാലഹരണപ്പെട്ടു, വീണ്ടും ശ്രമിക്കാൻ പേജ് പുതുക്കുക" @@ -486,7 +497,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.",ഫീൽഡ് ലെവൽ പെർമിഷനുകൾക്കായുള്ള ലെവൽ ലെവൽ പെർമിഷുകൾക്കായുള്ള ലെവൽ 0 ആണ്. DocType: Address,City/Town,നഗരം / പട്ടണം DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","ഇത് നിങ്ങളുടെ നിലവിലെ തീം റീസെറ്റ് ചെയ്യും, തുടരണമെന്ന് തീർച്ചയാണോ?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},{0} ൽ ആവശ്യമായ നിർബന്ധിത ഫീൽഡുകൾ apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},ഇമെയിൽ അക്കൌണ്ടിലേക്ക് ബന്ധിപ്പിക്കുന്നതിൽ പിശക് {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,ആവർത്തന സൃഷ്ടിക്കുന്നതിനിടയിൽ ഒരു പിശക് സംഭവിച്ചു @@ -522,7 +532,7 @@ DocType: Event,Event Category,ഇവന്റ് വിഭാഗം apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,അടിസ്ഥാനമാക്കിയുള്ള നിരകൾ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,തലക്കെട്ട് എഡിറ്റുചെയ്യുക DocType: Communication,Received,ലഭിച്ചു -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,ഈ പേജ് ആക്സസ് ചെയ്യുന്നതിനുള്ള അനുമതി നിങ്ങൾക്കില്ല. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,ഈ പേജ് ആക്സസ് ചെയ്യുന്നതിനുള്ള അനുമതി നിങ്ങൾക്കില്ല. DocType: User Social Login,User Social Login,ഉപയോക്തൃ സോഷ്യൽ ലോഗിൻ apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,ഇത് സൂക്ഷിച്ച അതേ ഫോൾഡറിൽ ഒരു പൈഥൺ ഫയൽ എഴുതുകയും നിരയും ഫലവും തിരികെ വരികയും ചെയ്യുക. DocType: Contact,Purchase Manager,പർച്ചേസ് മാനേജർ @@ -575,7 +585,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,ച apps/frappe/frappe/utils/data.py,Operator must be one of {0},ഓപ്പറേറ്റർ {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,ഉടമസ്ഥൻ DocType: Data Migration Run,Trigger Name,ട്രിഗ്ഗർ പേര് -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,നിങ്ങളുടെ ബ്ലോഗിലേക്ക് ശീർഷകങ്ങളും ആമുഖങ്ങളും എഴുതുക. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,ഫീൽഡ് നീക്കംചെയ്യുക apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,എല്ലാം സങ്കോചിപ്പിക്കുക apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,പശ്ചാത്തല നിറം @@ -624,6 +633,7 @@ DocType: Dashboard Chart,Bar,ബാർ DocType: SMS Settings,Enter url parameter for message,സന്ദേശത്തിനുള്ള url പാരാമീറ്റർ നൽകുക apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,പുതിയ കസ്റ്റം പ്രിന്റ് ഫോർമാറ്റ് apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} ഇതിനകം നിലവിലുണ്ട് +DocType: Workflow Document State,Is Optional State,ഓപ്ഷണൽ സ്റ്റേറ്റ് ആണ് DocType: Address,Purchase User,വാങ്ങൽ ഉപയോക്താവ് DocType: Data Migration Run,Insert,തിരുകുക DocType: Web Form,Route to Success Link,വിജയത്തിലേക്കുള്ള ലിങ്ക് ലേക്കുള്ള റൂട്ട് @@ -631,13 +641,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,ഉപ DocType: File,Is Home Folder,ഹോം ഫോൾഡർ ആണ് apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,തരം: DocType: Post,Is Pinned,പിൻ ചെയ്തിരിക്കുന്നു -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},'{0}' {1} എന്നതിന് അനുമതിയില്ല +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},'{0}' {1} എന്നതിന് അനുമതിയില്ല DocType: Patch Log,Patch Log,പാച്ച് ലോഗ് DocType: Print Format,Print Format Builder,ഫോർമാറ്റ് ബിൽഡർ അച്ചടിക്കുക 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 വിലാസത്തിൽ നിന്ന് പ്രവേശിക്കാൻ കഴിയും. ഉപയോക്താവിനുള്ളിൽ ഉപയോക്താവിനുള്ള പ്രത്യേക ഉപയോക്താവിനായി മാത്രം സജ്ജമാക്കാം" apps/frappe/frappe/utils/data.py,only.,മാത്രം. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,അവസ്ഥ '{0}' അസാധുവാണ് DocType: Auto Email Report,Day of Week,ആഴ്ചയിലെ ദിവസം +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Google ക്രമീകരണങ്ങളിൽ Google API പ്രവർത്തനക്ഷമമാക്കുക. DocType: DocField,Text Editor,ടെക്സ്റ്റ് എഡിറ്റർ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,മുറിക്കുക apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,ഒരു ആജ്ഞ തിരയുക അല്ലെങ്കിൽ ടൈപ്പുചെയ്യുക @@ -645,6 +656,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,ഡിബി ബാക്കപ്പുകളുടെ എണ്ണം 1 ൽ കുറവായിരിക്കരുത് DocType: Workflow State,ban-circle,നിരോധനം DocType: Data Export,Excel,Excel +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","തലക്കെട്ട്, ബ്രെഡ്ക്രംബുകൾ, മെറ്റാ ടാഗുകൾ" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,പിന്തുണ ഇമെയിൽ വിലാസം വ്യക്തമല്ല DocType: Comment,Published,പ്രസിദ്ധീകരിച്ചു DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","കുറിപ്പ്: മികച്ച ഫലം ലഭിക്കുന്നതിന്, ഇമേജുകൾ അതേ വലുപ്പത്തിലായിരിക്കണം, വീതി ഉയരത്തേക്കാൾ വലുതായിരിക്കണം." @@ -734,6 +746,7 @@ DocType: System Settings,Scheduler Last Event,ഷെഡ്യൂളർ അവസ apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,എല്ലാ പ്രമാണ ഷെയറുകളുടെയും റിപ്പോർട്ട് DocType: Website Sidebar Item,Website Sidebar Item,വെബ്സൈറ്റ് സൈഡ്ബാർ ഇനം apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,ചെയ്യാൻ +DocType: Google Settings,Google Settings,Google ക്രമീകരണങ്ങൾ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","നിങ്ങളുടെ രാജ്യം, സമയ മേഖല, കറൻസി എന്നിവ തിരഞ്ഞെടുക്കുക" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","ഇവിടെ സ്റ്റാറ്റിക് url പരാമീറ്ററുകൾ നൽകുക (ഉദാഹരണം = ERPNext, ഉപയോക്തൃനാമം = ERPNext, password = 1234 മുതലായവ)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,ഇമെയിൽ അക്കൌണ്ട് ഇല്ല @@ -785,6 +798,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth ബാരർ ടോക്കൺ ,Setup Wizard,സെറ്റപ്പ് വിസാർഡ് apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,ചാർട്ട് ടോഗിൾ ചെയ്യുക +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,സമന്വയിപ്പിക്കുന്നു DocType: Data Migration Run,Current Mapping Action,നിലവിലെ മാപ്പിംഗ് ആക്ഷൻ DocType: Email Account,Initial Sync Count,പ്രാരംഭ സമന്വയ എണ്ണം apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,ഞങ്ങളെ ബന്ധപ്പെടുക എന്ന താളിലെ ക്രമീകരണങ്ങൾ. @@ -823,6 +837,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,പ്രിന്റ് ഫോർമാറ്റ് തരം apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,ഈ മാനദണ്ഡത്തിനായി അനുമതികളൊന്നും സജ്ജീകരിച്ചിട്ടില്ല. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,എല്ലാം വികസിപ്പിക്കുക +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"സ്ഥിരസ്ഥിതി വിലാസ ടെംപ്ലേറ്റൊന്നും കണ്ടെത്തിയില്ല. സജ്ജീകരണം> അച്ചടി, ബ്രാൻഡിംഗ്> വിലാസ ടെംപ്ലേറ്റിൽ നിന്ന് പുതിയൊരെണ്ണം സൃഷ്ടിക്കുക." DocType: Tag Doc Category,Tag Doc Category,ടാപ്പ് വിഭാഗം ടാഗ് ചെയ്യുക DocType: Data Import,Generated File,സൃഷ്ടിച്ച ഫയൽ apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,കുറിപ്പുകൾ @@ -830,7 +845,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,ടൈംലൈൻ ഫീൽഡ് ഒരു ലിങ്ക് അല്ലെങ്കിൽ ഡൈനാമിക് ലിങ്ക് ആയിരിക്കണം DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,ഈ ഔട്ട്ഗോയിംഗ് സെർവറിൽ നിന്ന് അറിയിപ്പുകളും ബൾക്ക് മെയിലുകളും അയയ്ക്കും. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,ഇത് ഒരു മികച്ച 100 സാധാരണ പാസ്വേഡാണ്. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,{0} എന്നേക്കുമായി സമർപ്പിക്കണോ? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,{0} എന്നേക്കുമായി സമർപ്പിക്കണോ? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} നിലവിലില്ല, ലയിപ്പിക്കാൻ ഒരു പുതിയ ലക്ഷ്യം തിരഞ്ഞെടുക്കുക" DocType: Energy Point Rule,Multiplier Field,ഗുണിത ഫീൽഡ് DocType: Workflow,Workflow State Field,വർക്ക്ഫ്ലോ സ്റ്റേറ്റ് ഫീൽഡ് @@ -868,6 +883,7 @@ DocType: Address,Current,നിലവിലുള്ളത് apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New {0},പുതിയത് {0} DocType: Auto Email Report,Zero means send records updated at anytime,പൂജ്യം എന്നത് എപ്പോൾ വേണമെങ്കിലും അപ്ഡേറ്റ് ചെയ്ത രേഖകൾ എന്നാണ് apps/frappe/frappe/model/document.py,Value cannot be changed for {0},{0} എന്നതിനായി മൂല്യം മാറ്റാനാവില്ല +apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API ക്രമീകരണങ്ങൾ. DocType: System Settings,Force User to Reset Password,പാസ്വേഡ് പുനഃസജ്ജമാക്കാൻ പാസ്വേഡ് നിർബന്ധിക്കുക apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,റിപ്പോർട്ട് ബിൽഡർ റിപ്പോർട്ടുകൾ നേരിട്ട് റിപ്പോർട്ട് ബിൽഡർ കൈകാര്യം ചെയ്യുന്നു. ഒന്നും ചെയ്യാനില്ല. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,ഫിൽട്ടർ എഡിറ്റ് ചെയ്യൂ @@ -920,7 +936,7 @@ DocType: Chat Room,Message Count,സന്ദേശത്തിന്റെ എ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,വേണ്ടി DocType: S3 Backup Settings,eu-north-1,eu-north-1 apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,ഈ വെബ് ഫോം പ്രമാണം അപ്ഡേറ്റ് ചെയ്യാൻ നിങ്ങൾക്ക് അനുവാദമില്ല -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,ഈ റെക്കോർഡിലെ പരമാവധി അറ്റാച്ചുമെന്റ് പരിധി എത്തി. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,ഈ റെക്കോർഡിലെ പരമാവധി അറ്റാച്ചുമെന്റ് പരിധി എത്തി. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,റഫറൻസ് കമ്മ്യൂണിക്സ് ഡോക്സ് വൃത്താകൃതിയിലുള്ളവയല്ലെന്ന് ദയവായി ഉറപ്പുവരുത്തുക. DocType: DocField,Allow in Quick Entry,ദ്രുത പ്രവേശനത്തിൽ അനുവദിക്കുക DocType: Error Snapshot,Locals,പ്രാദേശികവാസികൾ @@ -951,7 +967,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,ഒഴിവാക്കൽ തരം apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},{2} {3} {3} {4} ഉപയോഗിച്ച് {0} ലിങ്കുചെയ്തിരിക്കുന്നതിനാൽ ഇല്ലാതാക്കാനോ റദ്ദാക്കാനോ കഴിയില്ല apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTP രഹസ്യവാക്ക് അഡ്മിനിസ്ട്രേറ്റർ മാത്രമേ പുനസജ്ജീകരിക്കാൻ കഴിയൂ. -DocType: Web Form Field,Page Break,പേജ് ബ്രേക്ക് DocType: Website Script,Website Script,വെബ്സൈറ്റ് സ്ക്രിപ്റ്റ് DocType: Integration Request,Subscription Notification,സബ്സ്ക്രിപ്ഷൻ അറിയിപ്പ് DocType: DocType,Quick Entry,ദ്രുത എൻട്രി @@ -968,6 +983,7 @@ DocType: Notification,Set Property After Alert,അലർട്ട് ശേഷ apps/frappe/frappe/__init__.py,Thank you,നന്ദി apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,ഇന്റഗ്രേഷൻ ഇന്റഗ്രേഷൻ വേണ്ടി സ്മാക്ക് വെബ്ഷൂപ്പുകൾ apps/frappe/frappe/config/settings.py,Import Data,ഡാറ്റ ഇറക്കുമതി ചെയ്യുക +DocType: Translation,Contributed Translation Doctype Name,സംഭാവന ചെയ്ത വിവർത്തന ഡോക്റ്റൈപ്പ് പേര് DocType: Social Login Key,Office 365,ഓഫീസ് 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID DocType: Review Level,Review Level,നില അവലോകനം ചെയ്യുക @@ -986,7 +1002,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,വിജയകരമായി ചെയ്തു apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} ലിസ്റ്റ് apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,അഭിനന്ദിക്കുക -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),പുതിയ {0} (Ctrl + B) DocType: Contact,Is Primary Contact,പ്രാഥമിക കോൺടാക്റ്റ് ആണോ DocType: Print Format,Raw Commands,റോ കമാൻഡുകൾ apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,പ്രിന്റ് ഫോർമാറ്റുകളുടെ സ്റ്റൈൽഷീറ്റ് @@ -1027,6 +1042,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,പശ്ചാത apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},{0} ൽ {0} കണ്ടെത്തുക DocType: Email Account,Use SSL,എസ്എസ്എൽ ഉപയോഗിക്കുക DocType: DocField,In Standard Filter,സ്റ്റാൻഡേർഡ് ഫിൽട്ടർ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,സമന്വയിപ്പിക്കുന്നതിന് Google കോൺ‌ടാക്റ്റുകളൊന്നും നിലവിലില്ല. DocType: Data Migration Run,Total Pages,ആകെ പേജുകൾ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: ഫീൽഡ് '{1}' അതുല്യമായ മൂല്യങ്ങൾ ഉള്ളതിനാൽ അതിനെ തനതായി സജ്ജമാക്കാൻ കഴിയില്ല DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","പ്രവർത്തനക്ഷമമാക്കിയാൽ, അവർ ലോഗിൻ ചെയ്യുന്ന ഓരോ സമയത്തും ഉപയോക്താക്കളെ അറിയിക്കും. പ്രാപ്തമാക്കിയിട്ടില്ലെങ്കിൽ, ഉപയോക്താക്കൾക്ക് ഒരു തവണ മാത്രമേ അറിയിപ്പ് നൽകൂ." @@ -1047,7 +1063,7 @@ DocType: Assignment Rule,Automation,ഓട്ടോമേഷൻ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,ഫയലുകൾ അൺസിപ്പ് ചെയ്യുന്നു ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}','{0}' എന്നതിനായി തിരയുക apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,എന്തോ കുഴപ്പം സംഭവിച്ചു -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,അറ്റാച്ചുചെയ്യുന്നതിന് മുമ്പ് സംരക്ഷിക്കുക. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,അറ്റാച്ചുചെയ്യുന്നതിന് മുമ്പ് സംരക്ഷിക്കുക. DocType: Version,Table HTML,പട്ടിക HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,ഹബ് DocType: Page,Standard,സ്റ്റാൻഡേർഡ് @@ -1124,12 +1140,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,ഫലങ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} റെക്കോർഡുകൾ ഇല്ലാതാക്കി apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,ഡ്രോപ്പ്ബോക്സ് ആക്സസ് ടോക്കൺ സൃഷ്ടിക്കുമ്പോൾ എന്തോ കുഴപ്പം സംഭവിച്ചു. കൂടുതൽ വിവരങ്ങൾക്ക് ദയവായി പിശക് ലോഗിന് പരിശോധിക്കുക. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,അഭിലാഷ് -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"സ്ഥിര വിലാസമൊന്നും കണ്ടെത്തിയില്ല. സജ്ജീകരണം> പ്രിന്റിംഗ്, ബ്രാൻഡിംഗ്> വിലാസ ടെംപ്ലേറ്റിൽ നിന്ന് പുതിയതൊന്ന് സൃഷ്ടിക്കുക." +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google കോൺ‌ടാക്റ്റുകൾ‌ ക്രമീകരിച്ചു. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,വിശദാംശങ്ങൾ മറയ്ക്കുക apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,ഫോണ്ട് സ്റ്റൈലുകൾ apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,നിങ്ങളുടെ സബ്സ്ക്രിപ്ഷൻ {0} ന് കാലഹരണപ്പെടും. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},ഇമെയിൽ അക്കൗണ്ടിൽ നിന്നുള്ള ഇമെയിലുകൾ ലഭിക്കുമ്പോൾ പ്രാമാണീകരണം പരാജയപ്പെട്ടു {0}. സെർവറിൽ നിന്നുള്ള സന്ദേശം: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),കഴിഞ്ഞ ആഴ്ചയിലെ പ്രകടനത്തെ അടിസ്ഥാനമാക്കിയുള്ള സ്ഥിതിവിവരക്കണക്കുകൾ ({0} മുതൽ {1} വരെ) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,ഇൻകമിംഗ് പ്രവർത്തനക്ഷമമാക്കിയിട്ടുണ്ടെങ്കിൽ മാത്രമേ യാന്ത്രിക ലിങ്കിംഗ് സജീവമാക്കാനാകൂ. DocType: Website Settings,Title Prefix,ശീർഷക പ്രിഫിക്സ് apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,നിങ്ങൾ ഉപയോഗിക്കാൻ കഴിയുന്ന പ്രാമാണീകരണ അപ്ലിക്കേഷനുകൾ ഇവയാണ്: DocType: Bulk Update,Max 500 records at a time,ഒരു സമയം 500 റെക്കോർഡുകൾ പരമാവധി @@ -1162,7 +1179,7 @@ DocType: Auto Email Report,Report Filters,ഫിൽട്ടറുകൾ റി apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,നിരകൾ തിരഞ്ഞെടുക്കുക DocType: Event,Participants,പങ്കെടുക്കുന്നവർ DocType: Auto Repeat,Amended From,ഭേദഗതി വരുത്തിയത് -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,നിങ്ങളുടെ വിവരങ്ങൾ സമർപ്പിച്ചു +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,നിങ്ങളുടെ വിവരങ്ങൾ സമർപ്പിച്ചു DocType: Help Category,Help Category,സഹായ വിഭാഗം apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 മാസം apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,ഒരു പുതിയ ഫോർമാറ്റ് എഡിറ്റുചെയ്യാൻ അല്ലെങ്കിൽ ആരംഭിക്കാൻ നിലവിലുള്ള ഫോർമാറ്റ് തിരഞ്ഞെടുക്കുക. @@ -1209,7 +1226,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,ട്രെൻഡ് ചെയ്യാൻ ഫീൽഡ് DocType: User,Generate Keys,കീകൾ സൃഷ്ടിക്കുക DocType: Comment,Unshared,അൺഷെയർ ചെയ്തത് -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,സംരക്ഷിച്ചു +DocType: Translation,Saved,സംരക്ഷിച്ചു DocType: OAuth Client,OAuth Client,OAuth ക്ലയന്റ് DocType: System Settings,Disable Standard Email Footer,സാധാരണ ഇമെയിൽ അടിക്കുറിപ്പ് പ്രവർത്തനരഹിതമാക്കുക apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,പ്രിന്റ് ഫോർമാറ്റ് {0} പ്രവർത്തനരഹിതമാക്കി @@ -1240,6 +1257,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,അവസാ DocType: Data Import,Action,പ്രവർത്തനം apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,ക്ലയന്റ് കീ ആവശ്യമാണ് DocType: Chat Profile,Notifications,അറിയിപ്പുകൾ +DocType: Translation,Contributed,സംഭാവന ചെയ്തു DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy DocType: Report,Custom Report,ഇഷ്ടാനുസൃത റിപ്പോർട്ട് DocType: Workflow State,info-sign,വിവര-ചിഹ്നം @@ -1256,6 +1274,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,കോൺടാക്റ്റ് DocType: LDAP Settings,LDAP Username Field,LDAP ഉപയോക്തൃനാമം ഫീൽഡ് apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} ഫീൽഡ് {1} ലെ അദ്വിതീയമായി സജ്ജമാക്കാൻ കഴിയില്ല, കാരണം നിലവിലുള്ള അദ്വിതീയമല്ലാത്ത മൂല്യങ്ങൾ ഉണ്ട്" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,സജ്ജീകരണം> ഫോം ഇച്ഛാനുസൃതമാക്കുക DocType: User,Social Logins,സോഷ്യൽ ലോഗിനുകൾ DocType: Workflow State,Trash,ട്രാഷ് DocType: Stripe Settings,Secret Key,രഹസ്യ കീ @@ -1313,6 +1332,7 @@ DocType: DocType,Title Field,ശീർഷക ഫീൽഡ് apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,ഔട്ട്ഗോയിംഗ് ഇമെയിൽ സെർവറിലേക്ക് കണക്റ്റുചെയ്യാനായില്ല DocType: File,File URL,ഫയൽ URL DocType: Help Article,Likes,ഇഷ്ടങ്ങൾ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google കോൺടാക്റ്റുകളുടെ സംയോജനം പ്രവർത്തനരഹിതമാക്കി. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,ബാക്കപ്പുകൾ ആക്സസ് ചെയ്യാൻ നിങ്ങൾ സിസ്റ്റം ലോഗിൻ മാനേജർ റോൾ ഉപയോഗിക്കേണ്ടതുണ്ട്. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,ആദ്യ ലെവൽ DocType: Blogger,Short Name,ഷോർട്ട് നെയിം @@ -1330,13 +1350,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Zip ഇംപോർട്ട് ചെയ്യുക DocType: Contact,Gender,ലിംഗഭേദം DocType: Workflow State,thumbs-down,തംബ്സ്-ഡൌൺ -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},ക്യൂ {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},പ്രമാണ തരം {0} എന്നതിൽ അറിയിപ്പ് സജ്ജമാക്കാൻ കഴിയില്ല apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,ഒരു സിസ്റ്റം മാനേജർ ഉണ്ടായിരിക്കണം കാരണം ഈ ഉപയോക്താവിനുള്ള സിസ്റ്റം മാനേജർ ചേർക്കുന്നു apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,സ്വാഗത ഇമെയിൽ അയച്ചു DocType: Transaction Log,Chaining Hash,ഹാഷുചെയ്യുക DocType: Contact,Maintenance Manager,അറ്റകുറ്റപണി മേധാവി +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","താരതമ്യത്തിന്,> 5, <10 അല്ലെങ്കിൽ = 324 ഉപയോഗിക്കുക. ശ്രേണികൾക്കായി, 5:10 ഉപയോഗിക്കുക (5 നും 10 നും ഇടയിലുള്ള മൂല്യങ്ങൾക്ക്)." apps/frappe/frappe/utils/bot.py,show,കാണിക്കുക apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URL പങ്കിടുക apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,പിന്തുണയ്ക്കാത്ത ഫയൽ ഫോർമാറ്റ് @@ -1358,7 +1378,7 @@ DocType: Communication,Notification,അറിയിപ്പ് DocType: Data Import,Show only errors,പിശകുകൾ മാത്രം കാണിക്കുക DocType: Energy Point Log,Review,അവലോകനം ചെയ്യുക apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,വരികൾ നീക്കംചെയ്തു -DocType: GSuite Settings,Google Credentials,ഗൂഗിൾ ക്രെഡെൻഷ്യലുകൾ +DocType: Google Settings,Google Credentials,ഗൂഗിൾ ക്രെഡെൻഷ്യലുകൾ apps/frappe/frappe/www/login.html,Or login with,അല്ലെങ്കിൽ ലോഗിൻ ചെയ്യുക apps/frappe/frappe/model/document.py,Record does not exist,റെക്കോർഡ് നിലവിലില്ല apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,പുതിയ റിപ്പോർട്ടിന്റെ പേര് @@ -1383,6 +1403,7 @@ DocType: Desktop Icon,List,പട്ടിക DocType: Workflow State,th-large,വലിയ-വലിയ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: സമർപ്പിക്കാനാകില്ലെങ്കിൽ സമർപ്പിക്കുക സമർപ്പിക്കാൻ കഴിയില്ല apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,ഒരു റെക്കോർഡിലേക്ക് ലിങ്കുചെയ്തിട്ടില്ല +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZ ട്രേ അപ്ലിക്കേഷനിലേക്ക് കണക്റ്റുചെയ്യുന്നതിൽ പിശക് ...

അസംസ്കൃത പ്രിന്റ് സവിശേഷത ഉപയോഗിക്കുന്നതിന് നിങ്ങൾ QZ ട്രേ ആപ്ലിക്കേഷൻ ഇൻസ്റ്റാൾ ചെയ്ത് പ്രവർത്തിപ്പിക്കേണ്ടതുണ്ട്.

QZ ട്രേ ഡ Download ൺലോഡ് ചെയ്ത് ഇൻസ്റ്റാൾ ചെയ്യുന്നതിന് ഇവിടെ ക്ലിക്കുചെയ്യുക .
അസംസ്കൃത പ്രിന്റിംഗിനെക്കുറിച്ച് കൂടുതലറിയാൻ ഇവിടെ ക്ലിക്കുചെയ്യുക ." DocType: Chat Message,Content,ഉള്ളടക്കം DocType: Workflow Transition,Allow Self Approval,സ്വയം അംഗീകാരം നൽകുക apps/frappe/frappe/www/qrcode.py,Page has expired!,പേജ് കാലഹരണപ്പെട്ടു! @@ -1399,6 +1420,7 @@ DocType: Workflow State,hand-right,കൈ-വലത് DocType: Website Settings,Banner is above the Top Menu Bar.,ബാനർ മുകളിലുള്ള മെനു ബാർ മുകളിലാണ്. apps/frappe/frappe/www/update-password.html,Invalid Password,പാസ്വേഡ് അസാധുവാണ് apps/frappe/frappe/utils/data.py,1 month ago,1 മാസം മുമ്പ് +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Google കോൺ‌ടാക്റ്റ് ആക്സസ് അനുവദിക്കുക DocType: OAuth Client,App Client ID,അപ്ലിക്കേഷൻ ക്ലയന്റ് ഐഡി DocType: DocField,Currency,കറൻസി DocType: Website Settings,Banner,ബാനർ @@ -1410,7 +1432,7 @@ apps/frappe/frappe/utils/goal.py,Goal,ലക്ഷ്യം DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","ലെവൽ 0 ൽ ഒരു റോൾ ലഭ്യമല്ലെങ്കിൽ, ഉയർന്ന അളവുകൾ അർത്ഥമില്ലാത്തവയാണ്." DocType: ToDo,Reference Type,റെഫറൻസ് തരം -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DocType അനുവദിക്കുന്നത്, DocType. ശ്രദ്ധാലുവായിരിക്കുക!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","DocType അനുവദിക്കുന്നത്, DocType. ശ്രദ്ധാലുവായിരിക്കുക!" DocType: Domain Settings,Domain Settings,ഡൊമെയ്ൻ സജ്ജീകരണങ്ങൾ DocType: Auto Email Report,Dynamic Report Filters,ചലനാത്മക റിപ്പോർട്ട് ഫിൽട്ടറുകൾ DocType: Energy Point Log,Appreciation,അഭിനന്ദനം @@ -1418,6 +1440,7 @@ apps/frappe/frappe/model/base_document.py,{0} must be set first,{0} ആദ്യ DocType: Website Settings,Chat Room Name,ചാറ്റ് റൂമിന്റെ പേര് apps/frappe/frappe/core/doctype/communication/communication.js,Res: {0},Res: {0} apps/frappe/frappe/config/website.py,Single Post (article).,സിംഗിൾ പോസ്റ്റ് (ലേഖനം). +apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipped {0} files,അൺസിപ്പ് ചെയ്ത {0} ഫയലുകൾ DocType: Report,Report Manager,റിപ്പോർട്ട് മാനേജർ DocType: Communication Link,Link Title,ലിങ്ക് ശീർഷകം apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py,Failed while amending subscription,സബ്സ്ക്രിപ്ഷൻ മാറ്റുന്നതിനിടെ പരാജയപ്പെട്ടു @@ -1451,6 +1474,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,us-west-2 DocType: DocType,Is Single,സിംഗിൾ ആണ് apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,ഒരു പുതിയ ഫോർമാറ്റ് സൃഷ്ടിക്കുക +DocType: Google Contacts,Authorize Google Contacts Access,Google കോൺ‌ടാക്റ്റ് ആക്സസ് അംഗീകരിക്കുക DocType: S3 Backup Settings,Endpoint URL,എൻഡ്പോയിന്റ് URL DocType: Social Login Key,Google,Google DocType: Contact,Department,വകുപ്പ് @@ -1465,7 +1489,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,നിയോഗ DocType: List Filter,List Filter,ലിസ്റ്റ് ഫിൽട്ടർ DocType: Dashboard Chart Link,Chart,ചാർട്ട് apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,നീക്കംചെയ്യാൻ കഴിയില്ല -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,സ്ഥിരീകരിക്കാൻ ഈ പ്രമാണം സമർപ്പിക്കുക +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,സ്ഥിരീകരിക്കാൻ ഈ പ്രമാണം സമർപ്പിക്കുക apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} ഇതിനകം നിലവിലുണ്ട്. മറ്റൊരു പേര് തിരഞ്ഞെടുക്കുക apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,ഈ ഫോമിൽ നിങ്ങൾക്ക് സംരക്ഷിക്കാത്ത മാറ്റങ്ങൾ ഉണ്ട്. നിങ്ങൾ തുടരുന്നതിന് മുമ്പ് സംരക്ഷിക്കുക. apps/frappe/frappe/model/document.py,Action Failed,പ്രവർത്തനം പരാജയപ്പെട്ടു @@ -1547,6 +1571,7 @@ DocType: DocField,Display,പ്രദർശനം apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,എല്ലാവർക്കും മറുപടി DocType: Calendar View,Subject Field,വിഷയ ഫീൽഡ് apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},സെഷൻ കാലഹരണപ്പെടൽ {0} ഫോർമാറ്റിൽ ആയിരിക്കണം +apps/frappe/frappe/model/workflow.py,Applying: {0},പ്രയോഗിക്കുന്നു: {0} DocType: Workflow State,zoom-in,വലുതാക്കുക apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,സെര്വറുമായി കണക്റ്റ് ചെയ്യാനായില്ല apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},{0} തീയതി ഫോർമാറ്റിൽ ആയിരിക്കണം: {1} @@ -1558,8 +1583,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,ഐക്കണിൽ ബട്ടണിൽ ദൃശ്യമാകും DocType: Role Permission for Page and Report,Set Role For,വേണ്ടി പങ്ക് സജ്ജമാക്കുക +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,ഒരു ഇമെയിൽ അക്കൗണ്ടിനായി മാത്രമേ യാന്ത്രിക ലിങ്കിംഗ് സജീവമാക്കാനാകൂ. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,ഇമെയിൽ അക്കൗണ്ടുകൾ ഒന്നും നൽകിയിട്ടില്ല +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ഇമെയിൽ അക്കൗണ്ട് സജ്ജീകരിക്കുന്നില്ല. സജ്ജീകരണം> ഇമെയിൽ> ഇമെയിൽ അക്ക from ണ്ടിൽ നിന്ന് ഒരു പുതിയ ഇമെയിൽ അക്ക create ണ്ട് സൃഷ്ടിക്കുക apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,അസൈൻമെന്റ് +DocType: Google Contacts,Last Sync On,അവസാനം സമന്വയിപ്പിക്കൽ ഓണാണ് apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},{0} സ്വപ്രേരിത നിയമത്തിലൂടെ {1} നേടിയത് apps/frappe/frappe/config/website.py,Portal,പോർട്ടൽ apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,നിങ്ങളുടെ ഇമെയിലിനു നന്ദി @@ -1580,7 +1608,6 @@ DocType: GSuite Settings,GSuite Settings,GSuite ക്രമീകരണങ് DocType: Integration Request,Remote,റിമോട്ട് DocType: File,Thumbnail URL,ലഘുചിത്ര URL apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,റിപ്പോർട്ട് ഡൗൺലോഡ് ചെയ്യുക -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,സജ്ജമാക്കുക> ഉപയോക്താവ് apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},{0} എന്നതിനുള്ള ഇഷ്ടാനുസൃതമാക്കലുകൾ ഇതിലേക്ക് എക്സ്പോർട്ടുചെയ്തു:
{1} DocType: GCalendar Account,Calendar Name,കലണ്ടർ പേര് apps/frappe/frappe/templates/emails/new_user.html,Your login id is,നിങ്ങളുടെ പ്രവേശന ഐഡി @@ -1649,13 +1676,14 @@ DocType: Website Settings,Route Redirects,വഴി റീഡയറക്ട് apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ഇമെയിൽ ഇൻബോക്സ് apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},{0} എന്ന രീതിയിൽ {0} പുനഃസ്ഥാപിച്ചു DocType: Assignment Rule,Automatically Assign Documents to Users,ഉപയോക്താക്കൾക്ക് സ്വപ്രേരിതമായി പ്രമാണങ്ങൾ നിർണ്ണയിക്കുക +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,ആകർഷണീയ ബാർ തുറക്കുക apps/frappe/frappe/config/settings.py,Email Templates for common queries.,സാധാരണ ചോദ്യങ്ങൾക്കുള്ള ഇമെയിൽ ടെംപ്ലേറ്റുകൾ. DocType: Letter Head,Letter Head Based On,ലെറ്റർ ഹെഡ് ബേസ്ഡ് ഓൺ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,ദയവായി ഈ ജാലകം അടയ്ക്കുക -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,പേയ്മെന്റ് പൂർത്തിയായി DocType: Contact,Designation,പദവി DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,മെറ്റാ ടാഗുകൾ +apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Fieldname {1} appears multiple times in rows {2},{0}: ഫീൽഡ് നാമം {1} വരികളിൽ ഒന്നിലധികം തവണ പ്രത്യക്ഷപ്പെടുന്നു {2} apps/frappe/frappe/automation/doctype/assignment_rule/assignment_rule.js,Assign to the one who has the least assignments,കുറഞ്ഞത് നിയമനമുള്ള ഒരാളെ ഏൽപ്പിക്കുക apps/frappe/frappe/core/doctype/file/file.py,Folder {0} does not exist,ഫോൾഡർ {0} നിലവിലില്ല apps/frappe/frappe/core/doctype/user/user.js,Reset Password,പാസ്വേഡ് പുനഃസജ്ജമാക്കുക @@ -1688,6 +1716,7 @@ DocType: System Settings,Choose authentication method to be used by all users, DocType: Error Snapshot,Parent Error Snapshot,രക്ഷാകർതൃ സ്നാപ്പ്ഷോട്ട് DocType: GCalendar Account,GCalendar Account,GCalendar അക്കൗണ്ട് DocType: Language,Language Name,ഭാഷാ പേര് +DocType: Workflow Document State,Workflow Action is not created for optional states,ഓപ്ഷണൽ സ്റ്റേറ്റുകളിൽ വർക്ക്ഫ്ലോ ആക്ഷൻ സൃഷ്ടിച്ചിട്ടില്ല DocType: Customize Form,Customize Form,ഫോം ഇച്ഛാനുസൃതമാക്കുക DocType: DocType,Image Field,ഇമേജ് ഫീൽഡ് apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),{0} ({1}) ചേർത്തു @@ -1728,6 +1757,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,ഉപയോക്താവ് ഉടമസ്ഥൻ ആണെങ്കിൽ ഈ നിയമം പ്രയോഗിക്കുക DocType: About Us Settings,Org History Heading,ഓര്ഗ് ഹിസ്റ്ററി ഹെഡിംഗ് apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,സെർവർ തകരാർ +DocType: Contact,Google Contacts Description,Google കോൺ‌ടാക്റ്റ് വിവരണം apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,സ്റ്റാൻഡേർഡ് റോളുകൾക്ക് പുനർനാമകരണം ചെയ്യാൻ കഴിയില്ല DocType: Review Level,Review Points,റിവ്യൂ പോയിന്റുകൾ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,കാണാത്ത പാരാമീറ്റർ കാബൻ ബോർഡ് പേര് @@ -1744,7 +1774,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,ഡവലപ്പർ മോഡിലല്ല! Site_config.json ൽ സജ്ജമാക്കുക അല്ലെങ്കിൽ 'ഇഷ്ടം' ഡോക്ടൈപ്പ് ചെയ്യുക. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,{0} പോയിന്റുകൾ നേടി DocType: Web Form,Success Message,വിജയകരമായ സന്ദേശം -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","താരതമ്യത്തിനായി, ഉപയോഗിക്കേണ്ടത് 5, <10 അല്ലെങ്കിൽ = 324. ശ്രേണികൾക്കായി, 5:10 ഉപയോഗിക്കുക (5 മുതൽ 10 വരെ മൂല്യങ്ങൾക്കായി)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","ലിസ്റ്റിംഗ് പേജിനുള്ള വിവരണം, പ്ലെയിൻ ടെക്സ്റ്റിൽ, ലൈനുകളുടെ രണ്ട് വരി മാത്രം. (പരമാവധി 140 പ്രതീകങ്ങൾ)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,അനുമതികൾ കാണിക്കുക DocType: DocType,Restrict To Domain,ഡൊമെയ്നിൽ നിയന്ത്രിക്കുക @@ -1766,6 +1795,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,പൂ apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,അളവ് സജ്ജീകരിക്കുക DocType: Auto Repeat,End Date,അവസാന ദിവസം DocType: Workflow Transition,Next State,അടുത്ത സംസ്ഥാനം +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Google കോൺടാക്റ്റുകൾ സമന്വയിപ്പിച്ചു. DocType: System Settings,Is First Startup,ആദ്യ സ്റ്റാർട്ടപ്പ് ആണോ? apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},{0} ലേക്ക് അപ്ഡേറ്റുചെയ്തു apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,നീങ്ങുക @@ -1815,6 +1845,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} കലണ്ടർ apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,ഡാറ്റാ ഇറക്കുമതി ടെംപ്ലേറ്റ് DocType: Workflow State,hand-left,കൈ ഇടത് +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,ഒന്നിലധികം ലിസ്റ്റ് ഇനങ്ങൾ തിരഞ്ഞെടുക്കുക apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,ബാക്കപ്പ് വലുപ്പം: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},{0} ഉപയോഗിച്ച് ലിങ്കുചെയ്തു DocType: Braintree Settings,Private Key,സ്വകാര്യ കീ @@ -1856,13 +1887,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,താത്പര്യം DocType: Bulk Update,Limit,പരിധി DocType: Print Settings,Print taxes with zero amount,പൂജ്യം തുക ഉപയോഗിച്ച് നികുതികൾ അച്ചടിക്കുക -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ഇമെയിൽ അക്കൗണ്ട് സജ്ജമാക്കിയിട്ടില്ല. സജ്ജീകരണം> ഇമെയിൽ> ഇമെയിൽ അക്കൌണ്ടിൽ നിന്ന് ഒരു പുതിയ ഇമെയിൽ അക്കൌണ്ട് സൃഷ്ടിക്കുക DocType: Workflow State,Book,പുസ്തകം DocType: S3 Backup Settings,Access Key ID,കീ ഐഡി ആക്സസ്സുചെയ്യുക DocType: Chat Message,URLs,URL കൾ apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,പേരുകളും ഗാർഹിക നാമങ്ങളും ഊഹിക്കാൻ വളരെ എളുപ്പമാണ്. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},റിപ്പോർട്ടുചെയ്യുക {0} DocType: About Us Settings,Team Members Heading,ടീം അംഗങ്ങളുടെ തലക്കെട്ട് +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,ലിസ്റ്റ് ഇനം തിരഞ്ഞെടുക്കുക DocType: Address Template,Address Template,വിലാസ ടെംപ്ലേറ്റ് DocType: Workflow State,step-backward,പിന്നിലേക്ക് apps/frappe/frappe/public/js/frappe/request.js,Not Found,കാണ്മാനില്ല @@ -1885,6 +1916,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,ഇഷ്ടാനുസൃത അനുമതികൾ എക്സ്പോർട്ടുചെയ്യുക apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,ഒന്നുമില്ല: വർക്ക്ഫ്ലോയുടെ അവസാനം DocType: Version,Version,പതിപ്പ് +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,ലിസ്റ്റ് ഇനം തുറക്കുക apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 മാസം DocType: Chat Message,Group,ഗ്രൂപ്പ് apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},ഫയൽ url ൽ ചില പ്രശ്നങ്ങളുണ്ട്: {0} @@ -1921,6 +1953,7 @@ DocType: Contact,Unsubscribed,അൺസബ്സ്ക്രൈബ് ചെയ DocType: DocPerm,DocPerm,DocPerm apps/frappe/frappe/core/doctype/doctype/doctype.py,Fold can not be at the end of the form,ഫോമിന്റെ അവസാനം മടക്കാനാവില്ല DocType: Print Settings,Server IP,സെർവർ IP +apps/frappe/frappe/public/js/frappe/views/treeview.js,{0} Tree,{0} മരം apps/frappe/frappe/www/login.html,Send Password,പാസ്വേഡ് അയയ്ക്കുക DocType: Event,All Day,ദിവസം മുഴുവൻ apps/frappe/frappe/core/doctype/data_export/exporter.py,Parent is the name of the document to which the data will get added to.,ഡാറ്റ കൂട്ടിച്ചേർക്കേണ്ട പ്രമാണംയുടെ പേര് മാതാപിതാക്കൾ ആണ്. @@ -1938,6 +1971,7 @@ DocType: User,Third Party Authentication,മൂന്നാം കക്ഷി apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 വർഷം DocType: Workflow State,arrow-down,അമ്പടയാളം DocType: Data Import,Ignore encoding errors,എൻകോഡിംഗ് പിശകുകൾ അവഗണിക്കുക +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,ലാൻഡ്സ്കേപ്പ് DocType: Letter Head,Letter Head Name,ഹെഡ് ഹെഡ് നെയിം DocType: Web Form,Client Script,ക്ലയന്റ് സ്ക്രിപ്റ്റ് DocType: Assignment Rule,Higher priority rule will be applied first,ഉയർന്ന മുൻഗണന നിയമം ആദ്യം പ്രയോഗിക്കും @@ -1982,6 +2016,7 @@ DocType: Kanban Board Column,Green,പച്ച apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,പുതിയ രേഖകൾക്കായി നിർബന്ധിത ഫീൽഡുകൾ മാത്രം ആവശ്യമാണ്. നിങ്ങൾക്ക് വേണമെങ്കിൽ അനുവദനീയമല്ലാത്ത നിരകൾ ഇല്ലാതാക്കാം. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} ആരംഭിച്ച് ഒരു അക്ഷരത്തിൽ അവസാനിക്കുകയും അക്ഷരങ്ങൾ, ഹൈഫൻ അല്ലെങ്കിൽ അടിവരയിടുകയും ചെയ്യാം." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,പ്രാഥമിക പ്രവർത്തനം ട്രിഗർ ചെയ്യുക apps/frappe/frappe/core/doctype/user/user.js,Create User Email,ഉപയോക്തൃ ഇമെയിൽ സൃഷ്ടിക്കുക apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Sort field {0} ഒരു സാധുവായ ഫീൽഡ് നാമം ആയിരിക്കണം DocType: Auto Email Report,Filter Meta,മെറ്റാ ഫിൽട്ടർ ചെയ്യുക @@ -1993,6 +2028,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This featur DocType: S3 Backup Settings,S3 Backup Settings,S3 ബാക്കപ്പ് ക്രമീകരണങ്ങൾ apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,കാണുന്നില്ല apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,ഇഷ്ടമല്ല +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","ഇഷ്‌ടാനുസൃത ഫീൽഡിൽ സൂചിപ്പിച്ചിരിക്കുന്ന '{0}' ഫീൽഡിന് ശേഷം ചേർക്കുക '{1}', '{2}' ലേബലിനൊപ്പം നിലവിലില്ല" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,ഫോം പുതുക്കുക DocType: DocType,MyISAM,MyISAM apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,കൂടുതൽ മാറുന്ന ദൈർഘ്യമുള്ള കീബോർഡ് പാറ്റേൺ ഉപയോഗിക്കുന്നത് പരീക്ഷിക്കുക @@ -2009,6 +2045,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,ടൈംലൈൻ ഫീൽഡ് apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,ലോഡിംഗ്... DocType: Auto Email Report,Half Yearly,അർധ വാർഷികം +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,എന്റെ പ്രൊഫൈൽ apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,അവസാനം പരിഷ്കരിച്ച തീയതി DocType: Contact,First Name,പേരിന്റെ ആദ്യഭാഗം DocType: Post,Comments,അഭിപ്രായങ്ങൾ @@ -2031,6 +2068,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,ഉള്ളടക്ക ഹാഷ് apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},{0} എന്നയാളുടെ പോസ്റ്റുകൾ apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} നിയുക്തൻ {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,പുതിയ Google കോൺ‌ടാക്റ്റുകളൊന്നും സമന്വയിപ്പിച്ചിട്ടില്ല. DocType: Workflow State,globe,ഭൂഗോളം apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},{0} ന്റെ ശരാശരി apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,പിശക് ലോഗുകൾ മായ്ക്കുക @@ -2039,6 +2077,7 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name DocType: Workflow State,Filter,ഫിൽറ്റർ ചെയ്യുക DocType: Auto Email Report,No of Rows (Max 500),വരികളുടെ എണ്ണം (പരമാവധി 500) DocType: Comment,Label,ലേബൽ +apps/frappe/frappe/auth.py,Your account has been locked and will resume after {0} seconds,"നിങ്ങളുടെ അക്കൗണ്ട് ലോക്കുചെയ്‌തു, {0} സെക്കൻഡിനുശേഷം പുനരാരംഭിക്കും" DocType: Workflow State,indent-left,ഇൻഡെന്റ്-ഇടത് DocType: Social Login Key,Identity Details,ഐഡന്റിറ്റി വിശദാംശങ്ങൾ DocType: Chat Message,Visitor,സന്ദർശകൻ @@ -2056,6 +2095,8 @@ DocType: Workflow State,Inverse,വിപരീതം DocType: Activity Log,Closed,അടച്ചു DocType: Report,Query,ചോദ്യം DocType: Notification,Days After,ദിവസങ്ങൾക്കുള്ളിൽ +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,പേജ് കുറുക്കുവഴികൾ +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,ഛായാചിത്രം apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,അഭ്യർത്ഥന കാലഹരണപ്പെട്ടു DocType: System Settings,Email Footer Address,ഇമെയിൽ അടിക്കുറിപ്പ് വിലാസം apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,ഊർജ്ജ പോയിന്റ് അപ്ഡേറ്റ് @@ -2082,6 +2123,7 @@ For Select, enter list of Options, each on a new line.","ലിങ്കുക apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 മിനിറ്റ് മുമ്പ് apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,സജീവ സെഷനുകളൊന്നുമില്ല apps/frappe/frappe/model/base_document.py,Row,വരി +DocType: Contact,Middle Name,പേരിന്റെ മധ്യഭാഗം apps/frappe/frappe/public/js/frappe/request.js,Please try again,വീണ്ടും ശ്രമിക്കുക DocType: Dashboard Chart,Chart Options,ചാർട്ട് ഓപ്ഷനുകൾ DocType: Data Migration Run,Push Failed,പുഷ് പരാജയപ്പെട്ടു @@ -2110,6 +2152,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,ചെറുതാക്കുക-ചെറുത് DocType: Comment,Relinked,വീണ്ടും അടിച്ചു DocType: Role Permission for Page and Report,Roles HTML,എച് +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,പോകൂ apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,സംരക്ഷിച്ചതിനുശേഷം വർക്ക്ഫ്ലോ ആരംഭിക്കും. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","നിങ്ങളുടെ ഡാറ്റ HTML ൽ ആണെങ്കിൽ, ടാഗുകൾ ഉപയോഗിച്ച് കൃത്യമായ HTML കോഡ് പകർത്തി ദയവായി പകർത്തുക." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,തീയതി പലപ്പോഴും ഊഹിക്കാൻ എളുപ്പമാണ്. @@ -2138,7 +2181,7 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,ഡെസ്ക്ടോപ്പ് ഐക്കൺ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,ഈ പ്രമാണം റദ്ദാക്കി apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,തീയതി പരിധി -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,സജ്ജമാക്കുക> ഉപയോക്തൃ അനുമതികൾ +apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} അഭിനന്ദിച്ചു {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,മൂല്യങ്ങൾ മാറ്റി apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,അറിയിപ്പിൽ പിശക് apps/frappe/frappe/core/doctype/report/report.js,Enable Report,റിപ്പോർട്ട് പ്രാപ്തമാക്കുക @@ -2202,6 +2245,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,ബൾക്ക് ഇല്ലാതാക്കുക DocType: DocShare,Document Name,പ്രമാണ നാമം apps/frappe/frappe/config/customization.py,Add your own translations,നിങ്ങളുടെ സ്വന്തം വിവർത്തനങ്ങൾ ചേർക്കുക +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,പട്ടിക താഴേക്ക് നാവിഗേറ്റുചെയ്യുക DocType: S3 Backup Settings,eu-central-1,eu-central-1 DocType: Auto Repeat,Yearly,വാർഷികം apps/frappe/frappe/public/js/frappe/model/model.js,Rename,പേരുമാറ്റുക @@ -2252,6 +2296,7 @@ DocType: Workflow State,plane,വിമാനം apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,നെസ്റ്റഡ് സെറ്റ് പിശക്. ദയവായി രക്ഷാധികാരിയെ ബന്ധപ്പെടുക. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,റിപ്പോർട്ട് കാണിക്കുക DocType: Auto Repeat,Auto Repeat Schedule,സ്വയം ആവർത്തിക്കുന്ന ഷെഡ്യൂൾ +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Ref കാണുക DocType: Address,Office,ഓഫീസ് DocType: LDAP Settings,StartTLS,ആരംഭിച്ചു apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} ദിവസങ്ങൾക്ക് മുമ്പ് @@ -2284,7 +2329,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required, apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,എന്റെ ക്രമീകരണങ്ങൾ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,ഗ്രൂപ്പ് നാമം ശൂന്യമായിരിക്കരുത്. DocType: Workflow State,road,റോഡ് -DocType: Website Route Redirect,Source,ഉറവിടം +DocType: Contact,Source,ഉറവിടം apps/frappe/frappe/www/third_party_apps.html,Active Sessions,സജീവ സെഷനുകൾ apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,ഒരു രൂപത്തിൽ ഒരു മടക്കവുമില്ല apps/frappe/frappe/public/js/frappe/chat.js,New Chat,പുതിയ ചാറ്റ് @@ -2329,6 +2374,7 @@ DocType: Tag Category,Tag Category,ടാഗു വിഭാഗം apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,ഉപയോക്താക്കൾക്ക് അവരുടെ ഉപയോക്തൃ പേജിൽ നിന്ന് റോളുകൾ സജ്ജമാക്കാൻ കഴിയും. DocType: Website Settings,Include Search in Top Bar,തിരയൽ ബാറിൽ മുകളിൽ ഉൾപ്പെടുത്തുക apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,% S എന്നതിനായുള്ള ആവർത്തിച്ചുള്ള% s സൃഷ്ടിക്കുന്നതിനിടയിൽ [തീർന്നു] പിശക് +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,ആഗോള കുറുക്കുവഴികൾ DocType: Help Article,Author,രചയിതാവ് DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,തന്നിരിക്കുന്ന ഫിൽട്ടറുകൾക്ക് പ്രമാണമൊന്നും കണ്ടെത്തിയില്ല @@ -2367,6 +2413,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Ed DocType: Activity Log,Timeline Name,ടൈംലൈൻ പേര് DocType: Comment,Workflow,വർക്ക്ഫ്ലോ apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Frappe നായുള്ള സോഷ്യൽ ലോഗിൻ കീയിൽ അടിസ്ഥാന URL സജ്ജീകരിക്കുക +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,കീബോർഡ് കുറുക്കുവഴികൾ DocType: Portal Settings,Custom Menu Items,ഇഷ്ടാനുസൃത മെനു ഇനങ്ങൾ apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,{0} ദൈർഘ്യം 1-നും 1000-നും ഇടയിലായിരിക്കണം apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,ബന്ധം വിച്ഛേദിക്കപ്പെട്ടു. ചില സവിശേഷതകൾ പ്രവർത്തിച്ചേക്കില്ല. @@ -2429,6 +2476,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,വരി DocType: DocType,Setup,സജ്ജമാക്കുക apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} വിജയകരമായി സൃഷ്ടിച്ചു apps/frappe/frappe/www/update-password.html,New Password,പുതിയ പാസ്വേഡ് +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,ഫീൽഡ് തിരഞ്ഞെടുക്കുക apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,ഈ സംഭാഷണം വിടുക DocType: About Us Settings,Team Members,ടീം അംഗങ്ങൾ DocType: Blog Settings,Writers Introduction,എഴുത്തുകാർ ആമുഖം @@ -2439,6 +2487,7 @@ DocType: Dashboard Chart Source,Timeseries,സമയ പരമ്പര apps/frappe/frappe/www/login.html,Forgot Password?,പാസ്വേഡ് മറന്നോ? DocType: Top Bar Item,For top bar,മുകളിലെ ബാറിനായി apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,From Document Type,പ്രമാണ തരം മുതൽ +apps/frappe/frappe/printing/doctype/print_format/print_format.py,{0} is now default print format for {1} doctype,{0} ഇപ്പോൾ {1} ഡോക്റ്റൈപ്പിനായുള്ള സ്ഥിരസ്ഥിതി പ്രിന്റ് ഫോർമാറ്റാണ് apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Save filters,ഫിൽട്ടറുകൾ സംരക്ഷിക്കുക apps/frappe/frappe/core/doctype/data_import/data_import.js,Start Import,ഇറക്കുമതി ആരംഭിക്കുക DocType: Portal Settings,Standard Sidebar Menu,സ്റ്റാൻഡേർഡ് സൈഡ്ബാർ മെനു @@ -2497,13 +2546,12 @@ DocType: Chat Room,Name,പേര് DocType: Communication,Email Template,ഇമെയിൽ ടെംപ്ലേറ്റ് DocType: Energy Point Settings,Review Levels,അവലോകന നിലകൾ DocType: Print Format,Raw Printing,റോ പ്രിന്റിങ് -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,അതിന്റെ സന്ദർഭം തുറക്കുമ്പോൾ {0} തുറക്കാൻ കഴിയുന്നില്ല +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,അതിന്റെ സന്ദർഭം തുറക്കുമ്പോൾ {0} തുറക്കാൻ കഴിയുന്നില്ല DocType: DocType,"Make ""name"" searchable in Global Search",ആഗോള തിരയൽ എന്നതിൽ "പേര്" തിരയാനാവൂ DocType: Data Migration Mapping,Data Migration Mapping,ഡാറ്റ മൈഗ്രേഷൻ മാപ്പിംഗ് DocType: Data Import,Partially Successful,ഭാഗികമായി വിജയിച്ചു DocType: Communication,Error,പിശക് apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},{0} മുതൽ {1} വരിയിൽ {0} എന്ന ഫീൽഡ് ടൈപ്പ് മാറ്റാൻ കഴിയില്ല -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZ ട്രേ അപ്ലിക്കേഷൻ കണക്റ്റുചെയ്യുന്നതിൽ പിശക് ...

റോ പ്രിന്റ് സവിശേഷത ഉപയോഗിക്കാൻ ക്യുഎസ് ട്രേ അപ്ലിക്കേഷൻ ഇൻസ്റ്റാൾ ചെയ്യുകയും പ്രവർത്തിപ്പിക്കുകയും വേണം.

QZ ട്രേ ഡൌണ്ലോഡ് ചെയ്ത് ഇന്സ്റ്റാള് ചെയ്യുന്നതിന് ഇവിടെ ക്ലിക്ക് ചെയ്യുക .
റോ പ്രിന്റിംഗിനെക്കുറിച്ച് കൂടുതലറിയാൻ ഇവിടെ ക്ലിക്കുചെയ്യുക ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,ഫോട്ടോ എടുക്കുക apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,നിങ്ങളുമായി ബന്ധപ്പെട്ട വർഷങ്ങളിൽ ഒഴിവാക്കുക. DocType: Web Form,Allow Incomplete Forms,അപൂർണ്ണമായ ഫോമുകൾ അനുവദിക്കുക @@ -2598,7 +2646,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",ഒരു പുതിയ പേജിൽ തുറക്കാൻ target = "_blank" തിരഞ്ഞെടുക്കുക. DocType: Portal Settings,Portal Menu,പോർട്ടൽ മെനു DocType: Website Settings,Landing Page,ലാൻഡിംഗ് പേജ് -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,ദയവായി സൈൻ അപ്പ് ചെയ്യുക അല്ലെങ്കിൽ തുടങ്ങാൻ ലോഗിൻ ചെയ്യുക DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","ഒരു പുതിയ വരിയിൽ ഓരോന്നും അല്ലെങ്കിൽ "കോമയിട്ട് വേർതിരിച്ച്" "കോൾ സെർച്ചർ, സേർച്ച് ക്വിറി" തുടങ്ങിയ കോണ്ടാക്ട് ഓപ്ഷനുകൾ." apps/frappe/frappe/twofactor.py,Verfication Code,Verification Code apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} ഇതിനകം അൺസബ്സ്ക്രൈബ് ചെയ്തു @@ -2684,6 +2731,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,ഡാറ്റ DocType: Address,Sales User,സെയിൽസ് ഉപയോക്താവ് apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","ഫീൽഡ് പ്രോപ്പർട്ടികൾ മാറ്റുക (മറയ്ക്കുക, വായന മാത്രം, അനുമതി തുടങ്ങിയവ)" DocType: Property Setter,Field Name,ഫീല്ഡിന്റെ പേര് +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,ഉപഭോക്താവ് DocType: Print Settings,Font Size,അക്ഷര വലിപ്പം DocType: User,Last Password Reset Date,അവസാന രഹസ്യവാക്ക് പുനസജ്ജീകരിക്കൽ തീയതി DocType: System Settings,Date and Number Format,"തീയതി, അക്ക ഫോർമാറ്റ്" @@ -2747,6 +2795,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,ഗ്രൂപ apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,നിലവിലുള്ളതുമായി ലയിപ്പിക്കുക DocType: Blog Post,Blog Intro,ബ്ലോഗ് ആമുഖം apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,പുതിയ പരാമർശം +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,ഫീൽഡിലേക്ക് പോകുക DocType: Prepared Report,Report Name,പേര് റിപ്പോർട്ട് ചെയ്യുക apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,ഏറ്റവും പുതിയ പ്രമാണം ലഭിക്കാൻ ദയവായി പുതുക്കുക. apps/frappe/frappe/core/doctype/communication/communication.js,Close,അടയ്ക്കുക @@ -2756,10 +2805,12 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,ഇവന്റ് DocType: Social Login Key,Access Token URL,ആക്സസ്സ് ടോക്കൺ URL apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,നിങ്ങളുടെ സൈറ്റിന്റെ കോൺഫിഗറേഷന്റെ ഡ്രോപ്പ്ബോക്സ് ആക്സസ് കീകൾ സജ്ജമാക്കുക +DocType: Google Contacts,Google Contacts,Google കോൺടാക്റ്റുകൾ DocType: User,Reset Password Key,പാസ്വേഡ് കീ പുനഃക്രമീകരിക്കുക apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,പരിഷ്ക്കരിച്ചത് DocType: User,Bio,ബയോ apps/frappe/frappe/limits.py,"To renew, {0}.","പുതുക്കുന്നതിന്, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,വിജയകരമായി സംരക്ഷിച്ചു DocType: File,Folder,ഫോൾഡർ DocType: DocField,Perm Level,പെർം ലെവൽ DocType: Print Settings,Page Settings,പേജ് ക്രമീകരണങ്ങൾ @@ -2788,6 +2839,7 @@ DocType: Workflow State,remove-sign,നീക്കം-അടയാളം DocType: Dashboard Chart,Full,പൂർണ്ണമായ DocType: DocType,User Cannot Create,ഉപയോക്താവിനെ സൃഷ്ടിക്കാൻ കഴിയില്ല apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,നിങ്ങൾ {0} പോയിന്റ് നേടി +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,സജ്ജീകരണം> ഉപയോക്താവ് DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","നിങ്ങൾ ഇത് സജ്ജമാക്കുകയാണെങ്കിൽ, ഈ ഇനം തിരഞ്ഞെടുത്ത പാരന്ററിനു കീഴിൽ ഒരു ഡ്രോപ്പ് ഡൌണിൽ വരും." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,ഇമെയിലുകളൊന്നുമില്ല apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,പിന്തുടരുന്ന ഫീൽഡുകൾ കാണുന്നില്ല: @@ -2801,13 +2853,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,ക DocType: Web Form,Web Form Fields,വെബ് ഫോം ഫീൽഡുകൾ DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,വെബ്സൈറ്റിൽ ഉപയോക്തൃ എഡിറ്റബിൾ ഫോം. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,{0} ശാശ്വതമായി റദ്ദാക്കണോ? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,{0} ശാശ്വതമായി റദ്ദാക്കണോ? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,ഓപ്ഷൻ 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,ആകെ apps/frappe/frappe/utils/password_strength.py,This is a very common password.,ഇതൊരു സാധാരണ പാസ്വേഡാണ്. DocType: Personal Data Deletion Request,Pending Approval,അംഗീകാരം തീർപ്പാക്കിയിട്ടില്ല apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,പ്രമാണം ശരിയായി നിശ്ചയിക്കാനായില്ല apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{0} എന്നതിനായി അനുവദിച്ചിട്ടില്ല: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,കാണിക്കാൻ മൂല്യങ്ങളില്ല DocType: Personal Data Download Request,Personal Data Download Request,വ്യക്തിഗത ഡാറ്റാ ഡൌൺലോഡ് അഭ്യർത്ഥന apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} ഈ പ്രമാണം പങ്കിട്ടു {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},{0} തിരഞ്ഞെടുക്കുക @@ -2823,7 +2876,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},"ഈ ഇമെയിൽ {0} ലേക്ക് അയച്ചു, {1} ലേക്ക് പകർത്തി" apps/frappe/frappe/email/smtp.py,Invalid login or password,അസാധുവായ ലോഗിൻ അല്ലെങ്കിൽ പാസ്വേഡ് DocType: Social Login Key,Social Login Key,സോഷ്യൽ ലോഗിൻ കീ -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,സജ്ജീകരണം> ഇമെയിൽ> ഇമെയിൽ അക്കൌണ്ടിൽ നിന്ന് സ്ഥിരസ്ഥിതി ഇമെയിൽ അക്കൗണ്ട് സജ്ജീകരിക്കുക apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,ഫിൽട്ടറുകൾ സംരക്ഷിച്ചു DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","ഈ കറൻസി എങ്ങനെ ഫോർമാറ്റ് ചെയ്യണം? സജ്ജമാക്കിയില്ലെങ്കിൽ, സിസ്റ്റം സ്ഥിരസ്ഥിതികൾ ഉപയോഗിക്കും" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} സംസ്ഥാനം {2} ആയി സജ്ജീകരിച്ചു @@ -2935,6 +2987,7 @@ DocType: Custom Field,Select the label after which you want to insert new field. DocType: Payment Gateway,Gateway Controller,ഗേറ്റ്വേ കൺട്രോളർ apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.js,New Connection,പുതിയ ബന്ധം apps/frappe/frappe/public/js/frappe/views/interaction.js,New Activity,പുതിയ പ്രവർത്തനം +apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Unable to find attachment {0},അറ്റാച്ചുമെന്റ് കണ്ടെത്താനായില്ല {0} DocType: Data Export,Fields Multicheck,ഫീൽഡുകൾ മൾട്ടിചാക്ക് DocType: Error Snapshot,Timestamp,ടൈംസ്റ്റാമ്പ് DocType: Website Settings,Website Theme,വെബ്സൈറ്റ് തീം @@ -2948,6 +3001,7 @@ DocType: User,Location,സ്ഥലം apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,ഡാറ്റാ ഇല്ല DocType: Website Meta Tag,Website Meta Tag,വെബ്സൈറ്റ് മെറ്റാ ടാഗ് DocType: Workflow State,film,സിനിമ +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,ക്ലിപ്പ്ബോർഡിലേക്ക് പകർത്തി. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} ക്രമീകരണങ്ങൾ കണ്ടെത്തിയില്ല apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,ലേബൽ നിർബന്ധമാണ് DocType: Webhook,Webhook Headers,Webhook ഹെഡ്ഡറുകൾ @@ -3153,7 +3207,7 @@ DocType: Address,Address Line 1,വിലാസ ലൈൻ 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,പ്രമാണത്തിന്റെ തരം apps/frappe/frappe/model/base_document.py,Data missing in table,പട്ടികയിൽ ഡാറ്റ നഷ്ടമായി apps/frappe/frappe/utils/bot.py,Could not identify {0},{0} തിരിച്ചറിയാൻ കഴിഞ്ഞില്ല -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,നിങ്ങൾ ഇത് ലോഡുചെയ്തതിനുശേഷം ഈ ഫോം പരിഷ്ക്കരിച്ചു +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,നിങ്ങൾ ഇത് ലോഡുചെയ്തതിനുശേഷം ഈ ഫോം പരിഷ്ക്കരിച്ചു apps/frappe/frappe/www/login.html,Back to Login,ലോഗിൻ ചെയ്യുക apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,സജ്ജമാക്കിയില്ല DocType: Data Migration Mapping,Pull,വലിക്കുക @@ -3170,6 +3224,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js,GSuit DocType: Email Group,Email Group,ഇമെയിൽ ഗ്രൂപ്പ് apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,വരി {0}: സ്റ്റാൻഡേർഡ് ഫീൽഡുകളിൽ നിർബന്ധിതം പ്രവർത്തനരഹിതമാക്കാൻ അനുവദിച്ചിട്ടില്ല DocType: Braintree Settings,Braintree Settings,ബ്രെയിൻട്രീ ക്രമീകരണം +apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the sending limit of {0} emails for this day.,ഈ ഇമെയിൽ അയയ്ക്കാൻ കഴിയില്ല. ഈ ദിവസത്തേക്ക് നിങ്ങൾ {0} ഇമെയിലുകൾ അയയ്ക്കുന്ന പരിധി മറികടന്നു. DocType: Workflow State,fast-backward,വേഗത്തിൽ പിറകിൽ DocType: Website Settings,Copyright,പകർപ്പവകാശം DocType: Assignment Rule,Description,വിവരണം @@ -3220,6 +3275,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,കുട്ടിക apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,ഇമെയിൽ അക്കൌണ്ട് സജ്ജീകരണം ദയവായി നിങ്ങളുടെ രഹസ്യവാക്ക് നൽകൂ: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,ഒരു അഭ്യർത്ഥനയിൽ വളരെയധികം എഴുതുന്നു. ചെറിയ അഭ്യർത്ഥനകൾ അയയ്ക്കുക DocType: Social Login Key,Salesforce,സെല്ലർഫോർസ് +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{1} ന്റെ {0} DocType: User,Tile,ടൈൽ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} ഇടത്തിൽ ഒരു ഉപയോക്താവു് ഏറ്റവും കൂടുതലുണ്ടായിരിക്കണം. DocType: Email Rule,Is Spam,സ്പാം ആണ് @@ -3256,7 +3312,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,ഫോൾഡർ അടയ്ക്കുക DocType: Data Migration Run,Pull Update,പുൾ അപ്ഡേറ്റ് apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},{0} {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

ഫലങ്ങൾക്കായി '

DocType: SMS Settings,Enter url parameter for receiver nos,റിസീവർ നമ്പറുകൾക്കായി url പാരാമീറ്റർ നൽകുക apps/frappe/frappe/utils/jinja.py,Syntax error in template,ടെംപ്ലേറ്റിൽ സിന്റാക്സ് പിശക് apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,റിപ്പോർട്ട് ഫിൽട്ടർ ടേബിളിൽ ഫിൽട്ടറുകൾ മൂല്യം ക്രമീകരിക്കുക. @@ -3269,6 +3324,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","ക്ഷ DocType: System Settings,In Days,ദിവസങ്ങളിൽ DocType: Report,Add Total Row,മൊത്തം വരി ചേർക്കുക apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,സെഷൻ ആരംഭിക്കൽ പരാജയപ്പെട്ടു +DocType: Translation,Verified,പരിശോധിച്ചുറപ്പിച്ചു DocType: Print Format,Custom HTML Help,ഇഷ്ടാനുസൃത HTML സഹായം DocType: Address,Preferred Billing Address,തിരഞ്ഞെടുത്ത ബില്ലിംഗ് വിലാസം apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,നിയോഗിച്ചിട്ടുള്ള @@ -3283,7 +3339,6 @@ DocType: Help Article,Intermediate,ഇന്റർമീഡിയറ്റ് DocType: Module Def,Module Name,മോഡൽ പേര് DocType: OAuth Authorization Code,Expiration time,കാലഹരണപ്പെടൽ സമയം apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","സ്ഥിരസ്ഥിതി ഫോർമാറ്റ്, പേജ് വലുപ്പം, അച്ചടി സ്റ്റൈൽ തുടങ്ങിയവ സജ്ജമാക്കുക." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,നിങ്ങൾ സൃഷ്ടിച്ച ഒരു കാര്യം നിങ്ങൾക്ക് ഇഷ്ടമായില്ല DocType: System Settings,Session Expiry,സെഷൻ കാലഹരണപ്പെടൽ DocType: DocType,Auto Name,യാന്ത്രിക പേര് apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,അറ്റാച്ചുമെന്റുകൾ തിരഞ്ഞെടുക്കുക @@ -3310,11 +3365,13 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,സിസ്റ്റം പേജ് DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,കുറിപ്പ്: പരാജയപ്പെട്ട ബാക്കപ്പുകളുടെ സ്ഥിരസ്ഥിതി ഇമെയിലുകൾ അയച്ചു. DocType: Custom DocPerm,Custom DocPerm,ഇഷ്ടാനുസൃത DocPerm +DocType: Translation,PR sent,PR അയച്ചു DocType: Tag Doc Category,Doctype to Assign Tags,ടാഗുകൾ അസൈൻ ചെയ്യാൻ ഡോക് ടൈപ്പ് DocType: Address,Warehouse,വെയർഹൗസ് apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,ഡ്രോപ്പ്ബോക്സ് സെറ്റപ്പ് apps/frappe/frappe/utils/data.py,Zero,പൂജ്യം apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Add a New Role,ഒരു പുതിയ റോൾ ചേർക്കുക +apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed for {1} {2},{0} ഇതിനകം സബ്‌സ്‌ക്രൈബുചെയ്‌തിട്ടില്ല {1} {2} DocType: DocType,Editable Grid,എഡിറ്റുചെയ്യാവുന്ന ഗ്രിഡ് apps/frappe/frappe/config/settings.py,Export Data,ഡാറ്റ എക്സ്പോർട്ട് ചെയ്യുക apps/frappe/frappe/config/settings.py,Enable / Disable Domains,ഡൊമെയ്നുകൾ പ്രാപ്തമാക്കുക / അപ്രാപ്തമാക്കുക @@ -3376,7 +3433,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,അഭിപ്രായം ചേർക്കാൻ Ctrl + Enter ചെയ്യുക apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,ഫീൽഡ് {0} തിരഞ്ഞെടുക്കാവുന്നതല്ല. DocType: User,Birth Date,ജനിച്ച ദിവസം -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,ഗ്രൂപ്പ് ഇൻഡെൻറേഷൻ ഉപയോഗിച്ച് DocType: List View Setting,Disable Count,എണ്ണം അപ്രാപ്തമാക്കുക DocType: Contact Us Settings,Email ID,ഇ - മെയിൽ ഐഡി apps/frappe/frappe/utils/password.py,Incorrect User or Password,തെറ്റായ ഉപയോക്താവും പാസ്വേഡും @@ -3410,6 +3466,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,ഒരു ഉപയോക്താവിനുള്ള ഈ റോൾ യൂസർ അനുമതികൾ അപ്ഡേറ്റ് ചെയ്യുക DocType: Website Theme,Theme,തീം DocType: Web Form,Show Sidebar,സൈഡ്ബാർ കാണിക്കുക +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google കോൺടാക്റ്റുകളുടെ സംയോജനം. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,സ്ഥിര ഇൻബോക്സ് apps/frappe/frappe/www/login.py,Invalid Login Token,അസാധുവായ ലോഗിൻ ടോക്കൺ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,ആദ്യം പേര് സജ്ജീകരിച്ച് റെക്കോർഡ് സംരക്ഷിക്കുക. @@ -3437,7 +3494,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,ദയവായി അത് ശരിയാക്കുക DocType: Top Bar Item,Top Bar Item,മുകളിലെ ബാഡ് ഇനം ,Role Permissions Manager,റോൾ അനുമതികൾ മാനേജർ -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,പിശകുകൾ ഉണ്ടായിരുന്നു. ദയവായി ഇത് റിപ്പോർട്ടുചെയ്യുക. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} വർഷം (ങ്ങൾ) മുമ്പ് apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,സ്ത്രീ DocType: System Settings,OTP Issuer Name,OTP ഇഷ്യൂവർ പേര് apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,ചെയ്യേണ്ടത് എന്നതിലേക്ക് ചേർക്കുക @@ -3537,6 +3594,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","ഭാ apps/frappe/frappe/model/document.py,none of,ആരും DocType: Desktop Icon,Page,പേജ് DocType: Workflow State,plus-sign,പ്ലസ്-അടയാളം +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,കാഷെ മായ്‌ച്ച് വീണ്ടും ലോഡുചെയ്യുക apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,അപ്ഡേറ്റുചെയ്യാൻ കഴിയില്ല: തെറ്റായ / കാലഹരണപ്പെട്ട ലിങ്ക്. DocType: Kanban Board Column,Yellow,മഞ്ഞ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),ഒരു ഗ്രിഡിലെ ഫീൽഡിനുള്ള നിരകളുടെ എണ്ണം (ഒരു ഗ്രിഡിലെ മൊത്തം നിരകൾ 11 ൽ കുറവായിരിക്കണം) @@ -3551,6 +3609,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,ന DocType: Activity Log,Date,തീയതി DocType: Communication,Communication Type,ആശയവിനിമയ തരം apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,പാരന്റ് ടേബിൾ +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,പട്ടിക മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,പൂർണ്ണ പിശക് കാണിച്ച് ഡെവലപ്പർക്ക് പ്രശ്നങ്ങൾ റിപ്പോർട്ടുചെയ്യാൻ അനുവദിക്കുക DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3572,9 +3631,9 @@ DocType: Notification Recipient,Email By Role,ഇമെയിൽ വഴി റ apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,{0} വരിക്കാരിൽ കൂടുതൽ ചേർക്കാൻ അപ്ഗ്രേഡ് ചെയ്യുക apps/frappe/frappe/email/queue.py,This email was sent to {0},ഈ ഇമെയിൽ {0} DocType: User,Represents a User in the system.,സിസ്റ്റത്തിൽ ഒരു ഉപയോക്താവിനെ പ്രതിനിധീകരിക്കുന്നു. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},പേജ് {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,പുതിയ ഫോർമാറ്റ് ആരംഭിക്കുക apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,ഒരു അഭിപ്രായം ചേർക്കുക +apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{1} ന്റെ {0} apps/frappe/frappe/desk/page/backups/backups.html,Size,വലുപ്പം apps/frappe/frappe/desk/doctype/event/event.js,Add Participants,പങ്കെടുക്കുന്നവരെ ചേർക്കുക apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,Select or drag across time slots to create a new event.,ഒരു പുതിയ ഇവന്റ് സൃഷ്ടിക്കുന്നതിന് സമയമേഖലകളിലുടനീളം തിരഞ്ഞെടുക്കുക അല്ലെങ്കിൽ ഇഴയ്ക്കുക. diff --git a/frappe/translations/mr.csv b/frappe/translations/mr.csv index c74790af07..2048211e6e 100644 --- a/frappe/translations/mr.csv +++ b/frappe/translations/mr.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,ग्रेडियंट सक्षम करा DocType: DocType,Default Sort Order,डीफॉल्ट क्रमवारी ऑर्डर apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,अहवालातून फक्त संख्यात्मक फील्ड दर्शवित आहे +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,मेनू आणि साइडबारमध्ये अतिरिक्त शॉर्टकट ट्रिगर करण्यासाठी Alt की दाबा DocType: Workflow State,folder-open,फोल्डर-उघडा DocType: Customize Form,Is Table,टेबल आहे apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,संलग्न फाइल उघडण्यात अक्षम. आपण ते CSV म्हणून निर्यात केले? DocType: DocField,No Copy,नाही कॉपी DocType: Custom Field,Default Value,डीफॉल्ट मूल्य apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,येणार्या मेलसाठी अनिवार्य करणे संलग्न करा +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,संपर्क समक्रमित करा DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,डेटा माइग्रेशन मॅपिंग तपशील apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,अनुसरण करणे रद्द करा apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.","रॉ प्रिंट" मार्गे पीडीएफ प्रिंटिंग अद्याप समर्थित नाही. कृपया प्रिंटर सेटिंग्जमध्ये प्रिंटर मॅपिंग काढा आणि पुन्हा प्रयत्न करा. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} आणि {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,फिल्टर जतन करताना एक त्रुटी आली apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,तुमचा पासवर्ड भरा apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,घर आणि संलग्नक फोल्डर हटवू शकत नाही +DocType: Email Account,Enable Automatic Linking in Documents,दस्तऐवजांमध्ये स्वयंचलित दुवा साधणे सक्षम करा DocType: Contact Us Settings,Settings for Contact Us Page,आमच्याशी संपर्क साधा पेजसाठी सेटिंग्ज DocType: Social Login Key,Social Login Provider,सोशल लॉग इन प्रोव्हायडर +DocType: Email Account,"For more information, click here.","अधिक माहितीसाठी येथे क्लिक करा ." DocType: Transaction Log,Previous Hash,मागील हॅश DocType: Notification,Value Changed,मूल्य बदलले DocType: Report,Report Type,अहवालाचा प्रकार @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,एनर्जी पॉईंट apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,कृपया सामाजिक लॉगिन सक्षम करण्यापूर्वी ग्राहक आयडी प्रविष्ट करा DocType: Communication,Has Attachment,संलग्न आहे DocType: User,Email Signature,ईमेल स्वाक्षरी -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} वर्ष (र्) पूर्वी ,Addresses And Contacts,पत्ते आणि संपर्क apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,हा कानबान बोर्ड खाजगी असेल DocType: Data Migration Run,Current Mapping,करंट मॅपिंग @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","आपण सर्व म्हणून सिंक पर्याय निवडत आहात, ते सर्व \ वाचन तसेच सर्व्हरवरील न वाचलेले संदेश पुनर्संचयित करेल. यामुळे कदाचित संप्रेषणाची (ईमेल) डुप्लीकेट होऊ शकते." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},शेवटचे समक्रमित {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,शीर्षलेख सामग्री बदलू शकत नाही +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,सबमिशननंतर {0} बदलण्याची परवानगी नाही apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","अनुप्रयोग नवीन आवृत्तीवर अद्यतनित केला गेला आहे, कृपया हे पृष्ठ रिफ्रेश करा" DocType: User,User Image,वापरकर्ता प्रतिमा @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},{0} apps/frappe/frappe/public/js/frappe/chat.js,Discard,टाकून द्या DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,सर्वोत्तम परिणामांसाठी पारदर्शक पार्श्वभूमीसह अंदाजे रुंदी 150px ची एक प्रतिमा निवडा. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,पुन्हा ढकलले +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} मूल्य निवडले DocType: Blog Post,Email Sent,ईमेल पाठविला DocType: Communication,Read by Recipient On,प्राप्तकर्त्याकडून वाचा DocType: User,Allow user to login only after this hour (0-24),या तासानंतरच केवळ लॉगिन करण्याची परवानगी द्या (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,निर्यात करण्यासाठी मॉड्यूल DocType: DocType,Fields,फील्ड -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,आपल्याला हा कागदजत्र मुद्रित करण्याची परवानगी नाही +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,आपल्याला हा कागदजत्र मुद्रित करण्याची परवानगी नाही apps/frappe/frappe/public/js/frappe/model/model.js,Parent,पालक apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","आपला सत्र कालबाह्य झाला आहे, कृपया सुरू ठेवण्यासाठी पुन्हा लॉगिन करा." DocType: Assignment Rule,Priority,प्राधान्य @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,ओटीपी DocType: DocType,UPPER CASE,अप्पर केस apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,कृपया ईमेल पत्ता सेट करा DocType: Communication,Marked As Spam,स्पॅम म्हणून चिन्हांकित केले +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,ईमेल पत्ता ज्यांचे Google संपर्क समक्रमित करणे आहे. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,सदस्यांना आयात करा apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,फिल्टर जतन करा DocType: Address,Preferred Shipping Address,पसंतीचे शिपिंग पत्ता DocType: GCalendar Account,The name that will appear in Google Calendar,Google कॅलेंडरमध्ये दिसेल ते नाव +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,रीफ्रेश टोकन तयार करण्यासाठी {0} वर क्लिक करा. DocType: Email Account,Disable SMTP server authentication,एसएमटीपी सर्व्हर प्रमाणीकरण अक्षम करा DocType: Email Account,Total number of emails to sync in initial sync process ,प्रारंभिक समक्रमण प्रक्रियेत समक्रमित करण्यासाठी ईमेलची एकूण संख्या DocType: System Settings,Enable Password Policy,पासवर्ड धोरण सक्षम करा @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,कोड समाविष्ट करा apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,नाही DocType: Auto Repeat,Start Date,प्रारंभ तारीख apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,चार्ट सेट करा +DocType: Website Theme,Theme JSON,थीम JSON apps/frappe/frappe/www/list.py,My Account,माझे खाते DocType: DocType,Is Published Field,प्रकाशित फील्ड आहे DocType: DocField,Set non-standard precision for a Float or Currency field,फ्लोट किंवा चलन क्षेत्रासाठी नॉन-स्टँडर्ड परिशुद्धता सेट करा @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Reference: {{ reference_doctype }} {{ reference_name }} पाठविण्यासाठी Reference: {{ reference_doctype }} {{ reference_name }} जोडा DocType: LDAP Settings,LDAP First Name Field,एलडीएपी प्रथम नाव फील्ड apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,डीफॉल्ट पाठविणे आणि इनबॉक्स -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,सेटअप> सानुकूलित फॉर्म apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.","अद्यतनासाठी, आपण फक्त निवडक स्तंभ अद्यतनित करू शकता." apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1','चेक' फील्डचे डीफॉल्ट एकतर '0' किंवा '1' असणे आवश्यक आहे. apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,हा कागदजत्र सामायिक करा @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,डोमेन एचटीएमएल DocType: Blog Settings,Blog Settings,ब्लॉग सेटिंग्ज apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","डॉकटाइपचे नाव एका अक्षराने प्रारंभ होणे आवश्यक आहे आणि यात केवळ अक्षरे, संख्या, स्पेस आणि अंडरस्कोअर असू शकतात" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,सेटअप> वापरकर्ता परवानग्या DocType: Communication,Integrations can use this field to set email delivery status,ईमेल वितरण स्थिती सेट करण्यासाठी समाकलन या फील्डचा वापर करु शकतात apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,फसवणूक पेमेंट गेटवे सेटिंग्ज DocType: Print Settings,Fonts,फॉन्ट DocType: Notification,Channel,चॅनेल DocType: Communication,Opened,उघडले DocType: Workflow Transition,Conditions,परिस्थिती +apps/frappe/frappe/config/website.py,A user who posts blogs.,ब्लॉग पोस्ट करणारे एक वापरकर्ता. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,खाते नाही? साइन अप करा apps/frappe/frappe/utils/file_manager.py,Added {0},जोडले {0} DocType: Newsletter,Create and Send Newsletters,तयार करा आणि वृत्तपत्र पाठवा DocType: Website Settings,Footer Items,तळटीप आयटम +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,कृपया सेटअप> ईमेल> ईमेल खाते पासून डीफॉल्ट ईमेल खाते सेट करा DocType: Website Slideshow Item,Website Slideshow Item,वेबसाइट स्लाइडशो आयटम apps/frappe/frappe/config/integrations.py,Register OAuth Client App,ओथ क्लायंट ऍप नोंदणी करा DocType: Error Snapshot,Frames,फ्रेम्स @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","स्तर 0 दस्तऐवज स्तर परवानग्या, फील्ड स्तर परवानग्यांसाठी \ उच्च स्तरांसाठी आहे." DocType: Address,City/Town,शहर / नगर DocType: Email Account,GMail,जीमेल -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","हे आपली वर्तमान थीम रीसेट करेल, आपल्याला खात्री आहे की आपण पुढे चालू ठेवू इच्छिता?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},अनिवार्य फील्ड {0} मध्ये आवश्यक apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},ईमेल खात्याशी कनेक्ट करताना त्रुटी {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,आवर्ती तयार करताना एक त्रुटी आली @@ -528,7 +537,7 @@ DocType: Event,Event Category,कार्यक्रम वर्ग apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,वर आधारित स्तंभ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,शीर्षक संपादित करा DocType: Communication,Received,मिळाले -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,आपल्याला या पृष्ठात प्रवेश करण्याची परवानगी नाही. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,आपल्याला या पृष्ठात प्रवेश करण्याची परवानगी नाही. DocType: User Social Login,User Social Login,वापरकर्ता सामाजिक लॉगिन apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,Python फाइल त्याच फोल्डरमध्ये लिहा जेथे ती सेव्ह केली जाते आणि कॉलम आणि परिणाम मिळवते. DocType: Contact,Purchase Manager,खरेदी व्यवस्थापक @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,च apps/frappe/frappe/utils/data.py,Operator must be one of {0},ऑपरेटर {0} मधील एक असणे आवश्यक आहे apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,मालक असल्यास DocType: Data Migration Run,Trigger Name,ट्रिगर नाव -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,आपल्या ब्लॉगवर शीर्षक आणि परिचय लिहा. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,फील्ड काढा apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,सर्व संकुचित करा apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,पार्श्वभूमी रंग @@ -630,6 +638,7 @@ DocType: Dashboard Chart,Bar,बार DocType: SMS Settings,Enter url parameter for message,संदेशासाठी url पॅरामीटर प्रविष्ट करा apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,नवीन सानुकूल मुद्रण स्वरूप apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} आधीच अस्तित्वात आहे +DocType: Workflow Document State,Is Optional State,पर्यायी राज्य आहे DocType: Address,Purchase User,खरेदी वापरकर्ता DocType: Data Migration Run,Insert,घाला DocType: Web Form,Route to Success Link,यशस्वी दुवा मार्ग @@ -637,13 +646,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,वा DocType: File,Is Home Folder,मुख्यपृष्ठ फोल्डर आहे apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,टाइप कराः DocType: Post,Is Pinned,पिन केले आहे -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},'{0}' ला परवानगी नाही {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},'{0}' ला परवानगी नाही {1} DocType: Patch Log,Patch Log,पॅच लॉग DocType: Print Format,Print Format Builder,प्रिंट स्वरूप बिल्डर 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 पत्त्यावरुन लॉगिन करू शकतात. हे केवळ वापरकर्ता पृष्ठामध्ये विशिष्ट वापरकर्त्यांसाठी सेट केले जाऊ शकते" apps/frappe/frappe/utils/data.py,only.,फक्त apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,अट '{0}' अवैध आहे DocType: Auto Email Report,Day of Week,आठवड्याचा दिवस +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Google सेटिंग्जमध्ये Google API सक्षम करा. DocType: DocField,Text Editor,मजकूर संपादक apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,कट apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,शोधा किंवा कमांड टाइप करा @@ -651,6 +661,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,डीबी बॅकअपची संख्या 1 पेक्षा कमी असू शकत नाही DocType: Workflow State,ban-circle,बंदी-मंडळ DocType: Data Export,Excel,एक्सेल +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","शीर्षलेख, ब्रेडक्रंब आणि मेटा टॅग" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,समर्थन ईमेल पत्ता निर्दिष्ट नाही DocType: Comment,Published,प्रकाशित DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","टीप: सर्वोत्तम परिणामांसाठी, प्रतिमा समान आकाराचे असणे आवश्यक आहे आणि रुंदी उंचीपेक्षा मोठी असणे आवश्यक आहे." @@ -741,6 +752,7 @@ DocType: System Settings,Scheduler Last Event,शेड्यूलर शेव apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,सर्व दस्तऐवज समभागांची तक्रार DocType: Website Sidebar Item,Website Sidebar Item,वेबसाइट साइडबार आयटम apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,करण्यासाठी +DocType: Google Settings,Google Settings,Google सेटिंग्ज apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","आपला देश, वेळ क्षेत्र आणि चलन निवडा" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","येथे स्थिर url पॅरामीटर्स प्रविष्ट करा (उदा. प्रेषक = ERPNext, वापरकर्तानाव = ERPNext, संकेतशब्द = 1234 इ.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,नाही ईमेल खाते @@ -794,6 +806,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,ओथ बेरर टोकन ,Setup Wizard,सेटअप विझार्ड apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,चार्ट टॉगल करा +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,संकालन DocType: Data Migration Run,Current Mapping Action,करंट मॅपिंग ऍक्शन DocType: Email Account,Initial Sync Count,आरंभिक सिंक गणना apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,आमच्याशी संपर्क साधा पेजसाठी सेटिंग्ज. @@ -833,6 +846,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,प्रिंट स्वरूप प्रकार apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,या निकषांसाठी कोणत्याही परवानग्या सेट नाहीत. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,सर्व विस्तृत करा +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,कोणताही डीफॉल्ट पत्ता टेम्पलेट आढळला नाही. कृपया सेटअप> मुद्रण आणि ब्रँडिंग> पत्ता टेम्पलेट वरून नवीन तयार करा. DocType: Tag Doc Category,Tag Doc Category,टॅग डॉक श्रेणी DocType: Data Import,Generated File,व्युत्पन्न फाइल apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,नोट्स @@ -840,7 +854,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,टाइमलाइन फील्ड एक दुवा किंवा डायनॅमिक दुवा असणे आवश्यक आहे DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,या आउटगोइंग सर्व्हरवरून सूचना आणि मोठ्या मेल पाठविले जातील. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,हा एक शीर्ष -100 सामान्य संकेतशब्द आहे. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,कायमचे सबमिट {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,कायमचे सबमिट {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} अस्तित्वात नाही, विलीन करण्यासाठी एक नवीन लक्ष्य निवडा" DocType: Energy Point Rule,Multiplier Field,गुणक फील्ड DocType: Workflow,Workflow State Field,वर्कफ्लो राज्य फील्ड @@ -878,6 +892,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New {0},नवी apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto Repeat in the doctype {0},सानुकूल फील्ड सानुकूल फील्डमध्ये स्वयं पुनरावृत्ती जोडा {0} DocType: Auto Email Report,Zero means send records updated at anytime,शून्य म्हणजे कोणत्याही वेळी अद्यतनित केलेले रेकॉर्ड पाठवा apps/frappe/frappe/model/document.py,Value cannot be changed for {0},{0} साठी मूल्य बदलला जाऊ शकत नाही +apps/frappe/frappe/config/integrations.py,Google API Settings.,गूगल एपीआय सेटिंग्ज DocType: System Settings,Force User to Reset Password,पासवर्ड रीसेट करण्यासाठी वापरकर्त्याला सक्ती करा apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,रिपोर्ट बिल्डरकडून अहवाल बिल्डर अहवाल थेट व्यवस्थापित केला जातो. काही करायला नाही. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,फिल्टर संपादित करा @@ -931,7 +946,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,स DocType: S3 Backup Settings,eu-north-1,ई-उत्तर -1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: समान भूमिका, स्तर आणि {1} सह केवळ एक नियम अनुमती आहे" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,आपल्याला हा वेब फॉर्म दस्तऐवज अद्यतनित करण्याची परवानगी नाही -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,या रेकॉर्डसाठी कमाल संलग्नक मर्यादा गाठली. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,या रेकॉर्डसाठी कमाल संलग्नक मर्यादा गाठली. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,कृपया खात्री करा की रेफरेंस कम्युनिकेशन डॉक्स परिपत्रिकदृष्ट्या लिंक केलेले नाहीत. DocType: DocField,Allow in Quick Entry,त्वरित प्रवेशास परवानगी द्या DocType: Error Snapshot,Locals,स्थानिक @@ -963,7 +978,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,अपवाद प्रकार apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},हटविणे किंवा रद्द करणे शक्य नाही कारण {0} {1} {2} {3} {4} शी जोडलेले आहे apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,ओटीपी गुप्त फक्त प्रशासकाद्वारे रीसेट केले जाऊ शकते. -DocType: Web Form Field,Page Break,पृष्ठ खंड DocType: Website Script,Website Script,वेबसाइट स्क्रिप्ट DocType: Integration Request,Subscription Notification,सदस्यता अधिसूचना DocType: DocType,Quick Entry,जलद प्रवेश @@ -980,6 +994,7 @@ DocType: Notification,Set Property After Alert,अलर्ट नंतर म apps/frappe/frappe/__init__.py,Thank you,धन्यवाद apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,अंतर्गत एकत्रीकरणासाठी स्लॅक वेबहूक apps/frappe/frappe/config/settings.py,Import Data,डेटा आयात करा +DocType: Translation,Contributed Translation Doctype Name,योगदान अनुवाद डॉटकटाइप नाव DocType: Social Login Key,Office 365,कार्यालय 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,आयडी DocType: Review Level,Review Level,पुनरावलोकन स्तर @@ -998,7 +1013,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,यशस्वीरित्या पूर्ण झाले apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} यादी apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,कृतज्ञता -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),नवीन {0} (Ctrl + बी) DocType: Contact,Is Primary Contact,प्राथमिक संपर्क आहे DocType: Print Format,Raw Commands,रॉ कमांड apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,प्रिंट स्वरूपनांसाठी शैलीपत्रके @@ -1039,6 +1053,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,पार्श् apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},{1} मध्ये {0} शोधा DocType: Email Account,Use SSL,एसएसएल वापरा DocType: DocField,In Standard Filter,मानक फिल्टरमध्ये +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,समक्रमण करण्यासाठी कोणतेही Google संपर्क उपस्थित नाहीत. DocType: Data Migration Run,Total Pages,एकूण पृष्ठे apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: फील्ड '{1}' अनन्य म्हणून सेट केले जाऊ शकत नाही कारण त्याच्याकडे अद्वितीय नसलेले मूल्य आहेत DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","सक्षम असल्यास, वापरकर्त्यांनी प्रत्येक वेळी लॉगिन केल्याची सूचना दिली जाईल. सक्षम नसल्यास, वापरकर्त्यांना केवळ एकदाच सूचित केले जाईल." @@ -1059,7 +1074,7 @@ DocType: Assignment Rule,Automation,ऑटोमेशन apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,फायली अनझिप करीत आहे ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}','{0}' साठी शोधा apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,काहीतरी चूक झाली -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,संलग्न करण्यापूर्वी कृपया जतन करा. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,संलग्न करण्यापूर्वी कृपया जतन करा. DocType: Version,Table HTML,सारणी HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,हब DocType: Page,Standard,मानक @@ -1136,12 +1151,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,परि apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} रेकॉर्ड हटवले apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,ड्रॉपबॉक्स प्रवेश टोकन व्युत्पन्न करताना काहीतरी चूक झाली. कृपया अधिक तपशीलांसाठी त्रुटी लॉग तपासा. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,च्या वंशज -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,कोणताही डीफॉल्ट पत्ता टेम्पलेट आढळला नाही. कृपया सेटअप> मुद्रण आणि ब्रँडिंग> पत्ता टेम्पलेट वरून नवीन तयार करा. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google संपर्क कॉन्फिगर केले गेले आहे. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,माहिती लपवा apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,फॉन्ट शैली apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,आपली सदस्यता {0} रोजी कालबाह्य होईल. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},ईमेल खात्यातून ईमेल प्राप्त करताना प्रमाणीकरण अयशस्वी {0}. सर्व्हरकडून संदेशः {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),मागील आठवड्याच्या कामगिरीवर आधारित ({0} ते {1}) आकडेवारी +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,इनकमिंग सक्षम असल्यास स्वयंचलित लिंकिंग सक्रिय केले जाऊ शकते. DocType: Website Settings,Title Prefix,शीर्षक प्रत्यय apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,आपण वापरु शकता असे प्रमाणीकरण अॅप्सः DocType: Bulk Update,Max 500 records at a time,एका वेळी कमाल 500 रेकॉर्ड @@ -1174,7 +1190,7 @@ DocType: Auto Email Report,Report Filters,फिल्टरचा अहवा apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,स्तंभ निवडा DocType: Event,Participants,सहभागी DocType: Auto Repeat,Amended From,पासून दुरुस्त -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,आपली माहिती सादर केली गेली आहे +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,आपली माहिती सादर केली गेली आहे DocType: Help Category,Help Category,मदत श्रेणी apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 महिना apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,एक नवीन स्वरूपन संपादित किंवा प्रारंभ करण्यासाठी विद्यमान स्वरूप निवडा. @@ -1220,7 +1236,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,ट्रॅक करण्यासाठी फील्ड DocType: User,Generate Keys,की व्युत्पन्न करा DocType: Comment,Unshared,असंघटित -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,जतन +DocType: Translation,Saved,जतन DocType: OAuth Client,OAuth Client,ओथ क्लायंट DocType: System Settings,Disable Standard Email Footer,मानक ईमेल तळटीप अक्षम करा apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,प्रिंट स्वरूप {0} अक्षम आहे @@ -1251,6 +1267,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,अखेर DocType: Data Import,Action,क्रिया apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,क्लायंट की आवश्यक आहे DocType: Chat Profile,Notifications,अधिसूचना +DocType: Translation,Contributed,योगदान दिले DocType: System Settings,mm/dd/yyyy,मिमी / डीडी / याय DocType: Report,Custom Report,सानुकूल अहवाल DocType: Workflow State,info-sign,माहिती-चिन्ह @@ -1267,6 +1284,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,संपर्क DocType: LDAP Settings,LDAP Username Field,एलडीएपी वापरकर्तानाव फील्ड apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} फील्ड {1} मध्ये अद्वितीय म्हणून सेट केले जाऊ शकत नाही, कारण तेथे अनन्य विद्यमान मूल्ये आहेत" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,सेटअप> सानुकूलित फॉर्म DocType: User,Social Logins,सामाजिक लॉगिन DocType: Workflow State,Trash,कचरा DocType: Stripe Settings,Secret Key,गुप्त की @@ -1324,6 +1342,7 @@ DocType: DocType,Title Field,शीर्षक फील्ड apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,आउटगोइंग ईमेल सर्व्हरशी कनेक्ट करू शकलो नाही DocType: File,File URL,फाइल यूआरएल DocType: Help Article,Likes,आवडी +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google संपर्क एकत्रीकरण अक्षम केले आहे. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,बॅकअपमध्ये प्रवेश करण्यासाठी आपल्याला लॉग इन करणे आणि सिस्टम मॅनेजर रोल असणे आवश्यक आहे. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,प्रथम स्तर DocType: Blogger,Short Name,संक्षिप्त नाव @@ -1341,13 +1360,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,झिप आयात करा DocType: Contact,Gender,लिंग DocType: Workflow State,thumbs-down,असमर्थन -DocType: Web Page,SEO,एसईओ apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},रांग {0} पैकी एक असावी apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},दस्तऐवज प्रकार {0} वर सूचना सेट करू शकत नाही apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,या वापरकर्त्यास सिस्टम मॅनेजर जोडणे कारण किमान एक सिस्टम व्यवस्थापक असणे आवश्यक आहे apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,स्वागत ईमेल पाठविले DocType: Transaction Log,Chaining Hash,चेनिंग हॅश DocType: Contact,Maintenance Manager,देखभाल व्यवस्थापक +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","तुलना करण्यासाठी,> 5, <10 किंवा = 324 वापरा. श्रेण्यांसाठी, 5:10 (5 आणि 10 मधील मूल्यांसाठी) वापरा." apps/frappe/frappe/utils/bot.py,show,दाखवा apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,यूआरएल सामायिक करा apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,असमर्थित फाइल स्वरूप @@ -1369,7 +1388,7 @@ DocType: Communication,Notification,अधिसूचना DocType: Data Import,Show only errors,केवळ चुका दाखवा DocType: Energy Point Log,Review,पुनरावलोकन apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,पंक्ती काढल्या -DocType: GSuite Settings,Google Credentials,Google क्रेडेन्शियल +DocType: Google Settings,Google Credentials,Google क्रेडेन्शियल apps/frappe/frappe/www/login.html,Or login with,किंवा लॉगिन करा apps/frappe/frappe/model/document.py,Record does not exist,रेकॉर्ड अस्तित्वात नाही apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,नवीन अहवाल नाव @@ -1394,6 +1413,7 @@ DocType: Desktop Icon,List,यादी DocType: Workflow State,th-large,मोठा apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: सबमिट न केल्यास सबमिट सबमिट करू शकत नाही apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,कोणत्याही रेकॉर्डशी दुवा साधला नाही +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","क्यूझे ट्रे अनुप्रयोगाशी कनेक्ट करताना त्रुटी ...

रॉ प्रिंट वैशिष्ट्य वापरण्यासाठी आपल्याकडे QZ ट्रे अनुप्रयोग स्थापित आणि चालू असणे आवश्यक आहे.

QZ ट्रे डाउनलोड आणि स्थापित करण्यासाठी येथे क्लिक करा .
रॉ प्रिंटिंगबद्दल अधिक जाणून घेण्यासाठी येथे क्लिक करा ." DocType: Chat Message,Content,सामग्री DocType: Workflow Transition,Allow Self Approval,स्वत: ची मंजुरी द्या apps/frappe/frappe/www/qrcode.py,Page has expired!,पृष्ठ कालबाह्य झाले आहे! @@ -1410,6 +1430,7 @@ DocType: Workflow State,hand-right,हात DocType: Website Settings,Banner is above the Top Menu Bar.,बॅनर शीर्ष मेनू बार वर आहे. apps/frappe/frappe/www/update-password.html,Invalid Password,अवैध पासवर्ड apps/frappe/frappe/utils/data.py,1 month ago,1 महिन्यापूर्वी +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Google संपर्क प्रवेशास परवानगी द्या DocType: OAuth Client,App Client ID,अॅप क्लायंट आयडी DocType: DocField,Currency,चलन DocType: Website Settings,Banner,बॅनर @@ -1421,7 +1442,7 @@ apps/frappe/frappe/utils/goal.py,Goal,गोल DocType: Print Style,CSS,सीएसएस apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","एखाद्या भूमिकेला लेव्हल 0 वर प्रवेश नसल्यास, उच्च पातळी अर्थहीन आहे." DocType: ToDo,Reference Type,संदर्भ प्रकार -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","डॉकटाइप, डॉकटाइपला परवानगी देत आहे. काळजी घ्या!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","डॉकटाइप, डॉकटाइपला परवानगी देत आहे. काळजी घ्या!" DocType: Domain Settings,Domain Settings,डोमेन सेटिंग्ज DocType: Auto Email Report,Dynamic Report Filters,गतिशील अहवाल फिल्टर DocType: Energy Point Log,Appreciation,कौतुक @@ -1463,6 +1484,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,आम्हाला-पश्चिम -2 DocType: DocType,Is Single,सिंगल apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,एक नवीन स्वरूप तयार करा +DocType: Google Contacts,Authorize Google Contacts Access,Google संपर्क प्रवेश अधिकृत करा DocType: S3 Backup Settings,Endpoint URL,एंडपॉइंट यूआरएल DocType: Social Login Key,Google,गुगल DocType: Contact,Department,विभाग @@ -1477,7 +1499,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,यांना DocType: List Filter,List Filter,यादी फिल्टर DocType: Dashboard Chart Link,Chart,चार्ट apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,काढू शकत नाही -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,पुष्टी करण्यासाठी हा कागदजत्र सबमिट करा +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,पुष्टी करण्यासाठी हा कागदजत्र सबमिट करा apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} आधीपासून अस्तित्वात आहे. दुसरे नाव निवडा apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,आपल्याकडे या फॉर्ममध्ये जतन न केलेले बदल आहेत. कृपया आपण सुरू ठेवण्यापूर्वी जतन करा. apps/frappe/frappe/model/document.py,Action Failed,कार्य अयशस्वी @@ -1559,6 +1581,7 @@ DocType: DocField,Display,प्रदर्शन apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,सर्वांना उत्तर द्या DocType: Calendar View,Subject Field,विषय फील्ड apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},सत्र कालबाह्यता फॉर्मेटमध्ये असणे आवश्यक आहे {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},अर्ज करीत आहे: {0} DocType: Workflow State,zoom-in,प्रतिमेचे दृष्य रूप मोठे करा apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,सर्व्हरशी जोडण्यास असमर्थ apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},तारीख {0} स्वरूप स्वरूपात असणे आवश्यक आहे: {1} @@ -1570,8 +1593,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_folder DocType: Workflow State,Icon will appear on the button,बटणावर बटण दिसेल DocType: Role Permission for Page and Report,Set Role For,साठी भूमिका सेट करा +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,स्वयंचलित लिंकिंग केवळ एका ईमेल खात्यासाठीच सक्रिय केले जाऊ शकते. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,नाही ईमेल खाती नियुक्त +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ईमेल खाते सेटअप नाही. कृपया सेटअप> ईमेल> ईमेल खाते पासून एक नवीन ईमेल खाते तयार करा apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,असाइनमेंट +DocType: Google Contacts,Last Sync On,चालू सिंक चालू apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},स्वयंचलित नियम {0} द्वारे {0} प्राप्त केला apps/frappe/frappe/config/website.py,Portal,पोर्टल apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,आपल्या ईमेलबद्दल धन्यवाद @@ -1592,7 +1618,6 @@ DocType: GSuite Settings,GSuite Settings,जीएसईईटी सेटि DocType: Integration Request,Remote,दूरस्थ DocType: File,Thumbnail URL,लघुप्रतिमा URL apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,अहवाल डाउनलोड करा -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,सेटअप> वापरकर्ता apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},{0} ची निर्यात करण्यासाठी सानुकूलनेः
{1} DocType: GCalendar Account,Calendar Name,कॅलेंडर नाव apps/frappe/frappe/templates/emails/new_user.html,Your login id is,तुमचा लॉगइन आयडी आहे @@ -1642,6 +1667,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},{0} apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,प्रतिमा फील्ड वैध फील्ड नाव असणे आवश्यक आहे apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,या पृष्ठात प्रवेश करण्यासाठी आपल्याला लॉग इन करणे आवश्यक आहे DocType: Assignment Rule,Example: {{ subject }},उदाहरण: {{विषय}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,फील्डनेम {0} प्रतिबंधित आहे apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},आपण फील्डसाठी 'केवळ वाचनीय' सेट करू शकत नाही {0} DocType: Social Login Key,Enable Social Login,सामाजिक लॉगिन सक्षम करा DocType: Workflow,Rules defining transition of state in the workflow.,वर्कफ्लोमध्ये स्थितीचे संक्रमण परिभाषित करणारे नियम. @@ -1662,10 +1688,10 @@ DocType: Website Settings,Route Redirects,मार्ग पुनर्नि apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ईमेल इनबॉक्स apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},{0} म्हणून पुनर्संचयित {1} DocType: Assignment Rule,Automatically Assign Documents to Users,वापरकर्त्यांना दस्तऐवज स्वयंचलितपणे असाइन करा +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,ओपन Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,सामान्य प्रश्नांसाठी ईमेल टेम्पलेट्स. DocType: Letter Head,Letter Head Based On,पत्र प्रमुख आधारीत apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,कृपया ही विंडो बंद करा -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,भरणा पूर्ण DocType: Contact,Designation,पदनाम DocType: Webhook,Webhook,वेबहूक DocType: Website Route Meta,Meta Tags,मेटा टॅग @@ -1704,6 +1730,7 @@ DocType: System Settings,Choose authentication method to be used by all users, DocType: Error Snapshot,Parent Error Snapshot,पालक त्रुटी स्नॅपशॉट DocType: GCalendar Account,GCalendar Account,जीकेलेंडर खाते DocType: Language,Language Name,भाषा नाव +DocType: Workflow Document State,Workflow Action is not created for optional states,वर्कफ्लो क्रिया वैकल्पिक पर्यायांसाठी तयार केली गेली नाही DocType: Customize Form,Customize Form,सानुकूलित फॉर्म DocType: DocType,Image Field,प्रतिमा फील्ड apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),जोडलेले {0} ({1}) @@ -1744,6 +1771,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,जर वापरकर्ता मालक असेल तर हा नियम लागू करा DocType: About Us Settings,Org History Heading,ऑर्गे हिस्ट्री हेडिंग apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,सर्व्हर त्रुटी +DocType: Contact,Google Contacts Description,Google संपर्क वर्णन apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,मानक भूमिका पुनर्नामित करणे शक्य नाही DocType: Review Level,Review Points,पुनरावलोकन गुण apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,गहाळ मापदंड कानबान बोर्ड नाव @@ -1761,7 +1789,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,विकसक मोडमध्ये नाही! Site_config.json मध्ये सेट करा किंवा 'सानुकूल' डॉक टाइप करा. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,{0} गुण प्राप्त केले DocType: Web Form,Success Message,यशस्वी संदेश -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","तुलना करण्यासाठी,> 5, <10 किंवा = 324 वापरा. श्रेण्यांसाठी, 5:10 (5 आणि 10 मधील मूल्यांसाठी) वापरा." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","पृष्ठ सूचीसाठी, साध्या मजकूरासाठी वर्णन, केवळ दोन ओळी. (जास्तीत जास्त 140 वर्ण)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,परवानगी दर्शवा DocType: DocType,Restrict To Domain,डोमेनवर प्रतिबंधित करा @@ -1783,6 +1810,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,पू apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,प्रमाण निर्धारित करा DocType: Auto Repeat,End Date,शेवटची तारीख DocType: Workflow Transition,Next State,पुढील राज्य +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Google संपर्क समक्रमित. DocType: System Settings,Is First Startup,प्रथम स्टार्टअप आहे apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},अद्यतनित केले {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,पुढे व्हा @@ -1832,6 +1860,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} कॅलेंडर apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,डेटा आयात टेम्पलेट DocType: Workflow State,hand-left,हात डावीकडे +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,एकाधिक सूची आयटम निवडा apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,बॅकअप आकारः apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},{0} शी दुवा साधला DocType: Braintree Settings,Private Key,खासगी की @@ -1874,13 +1903,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,व्याज DocType: Bulk Update,Limit,मर्यादा DocType: Print Settings,Print taxes with zero amount,शून्य रकमेसह कर मुद्रित करा -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ईमेल खाते सेटअप नाही. कृपया सेटअप> ईमेल> ईमेल खाते पासून एक नवीन ईमेल खाते तयार करा DocType: Workflow State,Book,पुस्तक DocType: S3 Backup Settings,Access Key ID,प्रवेश की आयडी DocType: Chat Message,URLs,यूआरएल apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,स्वतःचे नाव आणि आडनाव अंदाज करणे सोपे आहे. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},अहवाल {0} DocType: About Us Settings,Team Members Heading,संघाचे सदस्य शीर्षक +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,सूची आयटम निवडा apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},दस्तऐवज {0} हे {1} द्वारे {2} राज्य करण्यासाठी सेट केले गेले आहे DocType: Address Template,Address Template,पत्ता टेम्पलेट DocType: Workflow State,step-backward,पाऊल मागे @@ -1904,6 +1933,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,सानुकूल परवानग्या निर्यात करा apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,काहीही नाही: वर्कफ्लोचा शेवट DocType: Version,Version,आवृत्ती +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,सूची यादी उघडा apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 महिने DocType: Chat Message,Group,गट apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},फाइल url सह काही समस्या आहे: {0} @@ -1958,6 +1988,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 वर्ष apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} ने आपले पॉइंट परत केले {1} DocType: Workflow State,arrow-down,बाण खाली DocType: Data Import,Ignore encoding errors,एन्कोडिंग त्रुटीकडे दुर्लक्ष करा +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,लँडस्केप DocType: Letter Head,Letter Head Name,पत्र प्रमुख नाव DocType: Web Form,Client Script,क्लायंट स्क्रिप्ट DocType: Assignment Rule,Higher priority rule will be applied first,उच्च प्राथमिकता नियम प्रथम लागू केला जाईल @@ -2002,6 +2033,7 @@ DocType: Kanban Board Column,Green,ग्रीन apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,नवीन नोंदींसाठी फक्त अनिवार्य फील्ड आवश्यक आहेत. आपण इच्छित असल्यास आपण अनिवार्य स्तंभ हटवू शकता. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} ने लेटरसह प्रारंभ करणे आणि समाप्त करणे आवश्यक आहे आणि केवळ अक्षरे, हायफेन किंवा अंडरस्कोर असू शकतात." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,ट्रिगर प्राथमिक क्रिया apps/frappe/frappe/core/doctype/user/user.js,Create User Email,वापरकर्ता ईमेल तयार करा apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,क्रमवारी फील्ड {0} वैध फील्ड नाव असणे आवश्यक आहे DocType: Auto Email Report,Filter Meta,फिल्टर मेटा @@ -2031,6 +2063,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,टाइमलाइन फील्ड apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,लोड करीत आहे ... DocType: Auto Email Report,Half Yearly,अर्धवार्षिक +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,माझे प्रोफाइल apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,शेवटची सुधारित तारीख DocType: Contact,First Name,पहिले नाव DocType: Post,Comments,टिप्पण्या @@ -2053,6 +2086,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,सामग्री हॅश apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},{0} द्वारा पोस्ट apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} नियुक्त {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,कोणतेही नवीन Google संपर्क समक्रमित केले नाही. DocType: Workflow State,globe,जग apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},{0} ची सरासरी apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,स्पष्ट त्रुटी लॉग्ज @@ -2079,6 +2113,8 @@ DocType: Workflow State,Inverse,व्यस्त DocType: Activity Log,Closed,बंद DocType: Report,Query,प्रश्न DocType: Notification,Days After,दिवस नंतर +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,पृष्ठ शॉर्टकट +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,पोर्ट्रेट apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,विनंती कालबाह्य DocType: System Settings,Email Footer Address,ईमेल तळटीप पत्ता apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,ऊर्जा बिंदू अद्ययावत @@ -2106,6 +2142,7 @@ For Select, enter list of Options, each on a new line.","दुव्यां apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 मिनिटांपूर्वी apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,कोणतेही सक्रिय सत्र नाहीत apps/frappe/frappe/model/base_document.py,Row,पंक्ती +DocType: Contact,Middle Name,मधले नाव apps/frappe/frappe/public/js/frappe/request.js,Please try again,कृपया पुन्हा प्रयत्न करा DocType: Dashboard Chart,Chart Options,चार्ट पर्याय DocType: Data Migration Run,Push Failed,पुश अयशस्वी @@ -2134,6 +2171,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,आकार बदलून लहान DocType: Comment,Relinked,पुन्हा जोडले DocType: Role Permission for Page and Report,Roles HTML,भूमिका एचटीएमएल +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,जा apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,कार्यप्रवाह जतन केल्यानंतर सुरू होईल. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","आपला डेटा HTML मध्ये असल्यास, कृपया टॅग्जसह अचूक HTML कोड पेस्ट करा." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,अंदाज सहजपणे अनुमानित असतात. @@ -2162,7 +2200,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,डेस्कटॉप चिन्ह apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,हा कागदपत्र रद्द केला apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,तारीख श्रेणी -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,सेटअप> वापरकर्ता परवानग्या apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} कौतुक केले {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,मूल्ये बदलली apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,अधिसूचनात त्रुटी @@ -2227,6 +2264,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,बल्क हटवा DocType: DocShare,Document Name,कागदजत्र नाव apps/frappe/frappe/config/customization.py,Add your own translations,आपले स्वतःचे भाषांतर जोडा +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,यादी खाली नेव्हिगेट DocType: S3 Backup Settings,eu-central-1,यू-सेंट्रल -1 DocType: Auto Repeat,Yearly,वार्षिक apps/frappe/frappe/public/js/frappe/model/model.js,Rename,पुनर्नामित करा @@ -2277,6 +2315,7 @@ DocType: Workflow State,plane,विमान apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,नेस्टेड सेट त्रुटी. कृपया प्रशासकाशी संपर्क साधा. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,अहवाल दर्शवा DocType: Auto Repeat,Auto Repeat Schedule,ऑटो पुनरावृत्ती वेळापत्रक +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,रेफरी पहा DocType: Address,Office,कार्यालय DocType: LDAP Settings,StartTLS,स्टार्ट टीएलएस apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} दिवसांपूर्वी @@ -2310,7 +2349,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required, apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,माझी सेटिंग्ज apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,गट नाव रिक्त असू शकत नाही. DocType: Workflow State,road,रस्ता -DocType: Website Route Redirect,Source,स्त्रोत +DocType: Contact,Source,स्त्रोत apps/frappe/frappe/www/third_party_apps.html,Active Sessions,सक्रिय सत्रे apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,एका फॉर्ममध्ये फक्त एक फोल्ड असू शकते apps/frappe/frappe/public/js/frappe/chat.js,New Chat,नवीन गप्पा @@ -2332,6 +2371,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,कृपया अधिकृत URL प्रविष्ट करा DocType: Email Account,Send Notification to,अधिसूचना पाठवा apps/frappe/frappe/config/integrations.py,Dropbox backup settings,ड्रॉपबॉक्स बॅकअप सेटिंग्ज +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,टोकन जनरेशन दरम्यान काहीतरी चूक झाली. नवीन तयार करण्यासाठी {0} वर क्लिक करा. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,सर्व सानुकूलने काढायचे? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,केवळ प्रशासक संपादन करू शकतात DocType: Auto Repeat,Reference Document,संदर्भ दस्तऐवज @@ -2356,6 +2396,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,भूमिका वापरकर्त्यांसाठी त्यांच्या वापरकर्त्याच्या पृष्ठावरून सेट केली जाऊ शकते. DocType: Website Settings,Include Search in Top Bar,टॉप बारमध्ये शोध समाविष्ट करा apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[तात्काळ]% s साठी आवर्ती% s तयार करताना त्रुटी +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,ग्लोबल शॉर्टकट DocType: Help Article,Author,लेखक DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,दिलेल्या फिल्टरसाठी कोणताही दस्तऐवज सापडला नाही @@ -2391,10 +2432,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, पंक्ती {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","आपण नवीन रेकॉर्ड अपलोड करत असल्यास, "नामांकन मालिका" जर उपस्थित असेल तर अनिवार्य होते." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,गुणधर्म संपादित करा -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,त्याचे {0} उघडे असताना उदाहरण उघडू शकत नाही +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,त्याचे {0} उघडे असताना उदाहरण उघडू शकत नाही DocType: Activity Log,Timeline Name,टाइमलाइन नाव DocType: Comment,Workflow,वर्कफ्लो apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,कृपया फ्रेपेसाठी सोशल लॉग इन की मध्ये बेस यूआरएल सेट करा +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,कीबोर्ड शॉर्टकट DocType: Portal Settings,Custom Menu Items,सानुकूल मेनू आयटम apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,{0} ची लांबी 1 आणि 1000 दरम्यान असावी apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,संपर्क तूटला. काही वैशिष्ट्ये कदाचित कार्य करू शकत नाहीत. @@ -2457,6 +2499,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,पंक DocType: DocType,Setup,सेटअप apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} यशस्वीरित्या तयार केले apps/frappe/frappe/www/update-password.html,New Password,नवीन पासवर्ड +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,फील्ड निवडा apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,हे संभाषण सोडा DocType: About Us Settings,Team Members,संघ सदस्य DocType: Blog Settings,Writers Introduction,लेखक परिचय @@ -2525,13 +2568,12 @@ DocType: Chat Room,Name,नाव DocType: Communication,Email Template,ईमेल टेम्पलेट DocType: Energy Point Settings,Review Levels,पुनरावलोकन स्तर DocType: Print Format,Raw Printing,रॉ प्रिंटिंग -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,त्याचे उदाहरण उघडल्यास {0} उघडू शकत नाही +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,त्याचे उदाहरण उघडल्यास {0} उघडू शकत नाही DocType: DocType,"Make ""name"" searchable in Global Search",ग्लोबल सर्चमध्ये "नाव" शोधण्यायोग्य बनवा DocType: Data Migration Mapping,Data Migration Mapping,डेटा माइग्रेशन मॅपिंग DocType: Data Import,Partially Successful,अंशतः यशस्वी DocType: Communication,Error,त्रुटी apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},रांगेत {0} ते {1} फील्ड प्रकार बदलले जाऊ शकत नाही {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","क्यूझे ट्रे अनुप्रयोगाशी कनेक्ट करताना त्रुटी ...

रॉ प्रिंट वैशिष्ट्य वापरण्यासाठी आपल्याकडे QZ ट्रे अनुप्रयोग स्थापित आणि चालू असणे आवश्यक आहे.

QZ ट्रे डाउनलोड आणि स्थापित करण्यासाठी येथे क्लिक करा .
रॉ प्रिंटिंगबद्दल अधिक जाणून घेण्यासाठी येथे क्लिक करा ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,छायाचित्र घे apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,आपल्याशी संबंधित वर्षे टाळा. DocType: Web Form,Allow Incomplete Forms,अपूर्ण फॉर्म परवानगी द्या @@ -2627,7 +2669,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",नवीन पृष्ठात उघडण्यासाठी लक्ष्य = "_blank" निवडा. DocType: Portal Settings,Portal Menu,पोर्टल मेनू DocType: Website Settings,Landing Page,लँडिंग पृष्ठ -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,कृपया साइन-अप करा किंवा सुरू करण्यासाठी लॉगिन करा DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","संपर्क पर्याया, जसे की "विक्री क्वेरी, समर्थन क्वेरी" इ. प्रत्येक नवीन ओळवर किंवा स्वल्पविरामाद्वारे विभक्त." apps/frappe/frappe/twofactor.py,Verfication Code,सत्यापन कोड apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} आधीपासून सदस्यता रद्द केली आहे @@ -2712,6 +2753,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,डेटा DocType: Address,Sales User,विक्री वापरकर्ता apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","फील्ड गुणधर्म बदला (लपवा, वाचनीय, परवानगी इ.)" DocType: Property Setter,Field Name,फील्ड नाव +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,ग्राहक DocType: Print Settings,Font Size,अक्षराचा आकार DocType: User,Last Password Reset Date,अंतिम पासवर्ड रीसेट तारीख DocType: System Settings,Date and Number Format,तारीख आणि संख्या स्वरूप @@ -2776,6 +2818,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,गट नो apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,विद्यमान विलीन करा DocType: Blog Post,Blog Intro,ब्लॉग परिचय apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,नवीन उल्लेख +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,फील्ड वर जा DocType: Prepared Report,Report Name,नाव नोंदवा apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,नवीनतम दस्तऐवज मिळविण्यासाठी रीफ्रेश करा. apps/frappe/frappe/core/doctype/communication/communication.js,Close,बंद @@ -2785,10 +2828,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,कार्यक्रम DocType: Social Login Key,Access Token URL,टोकन URL मध्ये प्रवेश करा apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,कृपया आपल्या साइट कॉन्फिगरेशनमध्ये ड्रॉपबॉक्स प्रवेश की सेट करा +DocType: Google Contacts,Google Contacts,Google संपर्क DocType: User,Reset Password Key,संकेतशब्द की रीसेट करा apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,द्वारा सुधारित DocType: User,Bio,बायो apps/frappe/frappe/limits.py,"To renew, {0}.","नूतनीकरण करण्यासाठी, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,यशस्वीरित्या जतन केले +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,येथे दुवा साधण्यासाठी {0} वर एक ईमेल पाठवा. DocType: File,Folder,फोल्डर DocType: DocField,Perm Level,पर्म स्तर DocType: Print Settings,Page Settings,पृष्ठ सेटिंग्ज @@ -2817,6 +2863,7 @@ DocType: Workflow State,remove-sign,काढून टाका DocType: Dashboard Chart,Full,पूर्ण DocType: DocType,User Cannot Create,वापरकर्ता तयार करू शकत नाही apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,आपण {0} पॉइंट प्राप्त केला +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,सेटअप> वापरकर्ता DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","आपण हे सेट केल्यास, हे आयटम निवडलेल्या पालकांखाली ड्रॉप-डाउनमध्ये येईल." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,नाही ईमेल apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,खालील फील्ड गहाळ आहेत: @@ -2830,13 +2877,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,क DocType: Web Form,Web Form Fields,वेब फॉर्म फील्ड्स DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,वेबसाइटवर वापरकर्ता संपादनयोग्य फॉर्म. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,{0} कायमचे रद्द करायचे? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,{0} कायमचे रद्द करायचे? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,पर्याय 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,टोटलस apps/frappe/frappe/utils/password_strength.py,This is a very common password.,हा एक सामान्य संकेतशब्द आहे. DocType: Personal Data Deletion Request,Pending Approval,मंजूरीसाठी प्रलंबित apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,कागदजत्र योग्यरित्या नियुक्त केला जाऊ शकला नाही apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{0}: {1} साठी परवानगी नाही +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,दर्शविण्यासाठी कोणतेही मूल्य नाही DocType: Personal Data Download Request,Personal Data Download Request,वैयक्तिक डेटा डाउनलोड विनंती apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} हा दस्तऐवज {1} सह सामायिक केला apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},{0} निवडा @@ -2852,7 +2900,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},हे ईमेल {0} वर पाठविले आणि कॉपी केले {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,अवैध लॉगिन किंवा पासवर्ड DocType: Social Login Key,Social Login Key,सोशल लॉग इन की -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,कृपया सेटअप> ईमेल> ईमेल खाते पासून डीफॉल्ट ईमेल खाते सेट करा apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,फिल्टर जतन केले DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","ही चलन कशी स्वरुपित करावी? सेट न केल्यास, सिस्टम डीफॉल्ट वापरेल" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} हे निर्धारित करण्यास सेट आहे {2} @@ -2978,6 +3025,7 @@ DocType: User,Location,स्थान apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,माहिती उपलब्ध नाही DocType: Website Meta Tag,Website Meta Tag,वेबसाइट मेटा टॅग DocType: Workflow State,film,चित्रपट +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,क्लिपबोर्डवर कॉपी केले. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} सेटिंग्ज सापडली नाहीत apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,लेबल अनिवार्य आहे DocType: Webhook,Webhook Headers,वेबहूक हेडर @@ -3184,7 +3232,7 @@ DocType: Address,Address Line 1,पत्ता ओळ 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,दस्तऐवज प्रकारासाठी apps/frappe/frappe/model/base_document.py,Data missing in table,सारणीमध्ये डेटा गहाळ आहे apps/frappe/frappe/utils/bot.py,Could not identify {0},ओळखणे शक्य नाही {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,हे फॉर्म आपण लोड केल्यानंतर सुधारित केले गेले आहे +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,हे फॉर्म आपण लोड केल्यानंतर सुधारित केले गेले आहे apps/frappe/frappe/www/login.html,Back to Login,लॉग इन वर परत apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,सेट नाही DocType: Data Migration Mapping,Pull,पुल @@ -3252,6 +3300,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,चाइल्ड apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,ईमेल खाते सेटअपसाठी कृपया आपला संकेतशब्द प्रविष्ट करा: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,एका विनंतीमध्ये बरेच लोक लिहित आहेत. कृपया लहान विनंत्या पाठवा DocType: Social Login Key,Salesforce,सेल्सफोर्स +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{1} ची {0} आयात करीत आहे DocType: User,Tile,टाइल apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} खोलीत जवळजवळ एक वापरकर्ता असणे आवश्यक आहे. DocType: Email Rule,Is Spam,स्पॅम आहे @@ -3289,7 +3338,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,फोल्डर बंद DocType: Data Migration Run,Pull Update,पुल अद्यतन करा apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},विलीन {0} मध्ये {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

DocType: SMS Settings,Enter url parameter for receiver nos,रिसीवर नंबरसाठी url पॅरामीटर प्रविष्ट करा apps/frappe/frappe/utils/jinja.py,Syntax error in template,टेम्पलेटमध्ये सिंटॅक्स त्रुटी apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,कृपया फिल्टर फिल्टर सारणीमध्ये फिल्टर मूल्य सेट करा. @@ -3302,6 +3350,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","क्ष DocType: System Settings,In Days,दिवसात DocType: Report,Add Total Row,एकूण पंक्ती जोडा apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,सत्र प्रारंभ अयशस्वी +DocType: Translation,Verified,सत्यापित DocType: Print Format,Custom HTML Help,सानुकूल HTML मदत DocType: Address,Preferred Billing Address,पसंतीचे बिलिंग पत्ता apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,नियुक्त @@ -3316,7 +3365,6 @@ DocType: Help Article,Intermediate,इंटरमीडिएट DocType: Module Def,Module Name,मॉड्यूल नाव DocType: OAuth Authorization Code,Expiration time,कालबाह्यता वेळ apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","डीफॉल्ट स्वरूप, पृष्ठ आकार, मुद्रण शैली इ. सेट करा." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,आपण तयार केलेली एखादी गोष्ट आपल्याला आवडत नाही DocType: System Settings,Session Expiry,सत्र कालबाह्य DocType: DocType,Auto Name,स्वयं नाव apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,संलग्नक निवडा @@ -3344,6 +3392,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,सिस्टम पृष्ठ DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,टीपः अयशस्वी बॅकअपसाठी डिफॉल्ट ईमेल पाठविल्या जातात. DocType: Custom DocPerm,Custom DocPerm,कस्टम डॉकप्रिम +DocType: Translation,PR sent,पीआर पाठविला DocType: Tag Doc Category,Doctype to Assign Tags,टॅग्ज नियुक्त करण्यासाठी Doctype DocType: Address,Warehouse,वेअरहाऊस apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,ड्रॉपबॉक्स सेटअप @@ -3411,7 +3460,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,टिप्पणी जोडण्यासाठी Ctrl + Enter apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,फील्ड {0} निवडण्यायोग्य नाही. DocType: User,Birth Date,जन्मदिनांक -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,ग्रुप इंडेंटेशनसह DocType: List View Setting,Disable Count,अक्षम करा DocType: Contact Us Settings,Email ID,ई - मेल आयडी apps/frappe/frappe/utils/password.py,Incorrect User or Password,चुकीचा वापरकर्ता किंवा संकेतशब्द @@ -3444,6 +3492,7 @@ DocType: Website Settings,<head> HTML,<हेड> एचटीएम DocType: Custom DocPerm,This role update User Permissions for a user,ही भूमिका वापरकर्त्यासाठी वापरकर्ता परवानग्या अद्यतनित करा DocType: Website Theme,Theme,थीम DocType: Web Form,Show Sidebar,साइडबार दर्शवा +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google संपर्क एकत्रीकरण. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,डिफॉल्ट इनबॉक्स apps/frappe/frappe/www/login.py,Invalid Login Token,अवैध लॉगिन टोकन apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,प्रथम नाव सेट करा आणि रेकॉर्ड जतन करा. @@ -3471,7 +3520,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,कृपया दुरुस्त करा DocType: Top Bar Item,Top Bar Item,शीर्ष बार आयटम ,Role Permissions Manager,भूमिका परवानगी व्यवस्थापक -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,तेथे त्रुटी होत्या. कृपया याची तक्रार करा. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} वर्ष (र्) पूर्वी apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,स्त्री DocType: System Settings,OTP Issuer Name,ओटीपी जारीकर्ता नाव apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,ते करू जोडा @@ -3571,6 +3620,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","भा apps/frappe/frappe/model/document.py,none of,एक पण नाही DocType: Desktop Icon,Page,पृष्ठ DocType: Workflow State,plus-sign,प्लस-चिन्ह +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,स्वच्छ कॅशे आणि रीलोड apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,अद्यतन करू शकत नाही: चुकीचा / कालबाह्य दुवा. DocType: Kanban Board Column,Yellow,पिवळा DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),ग्रिडमधील एका फील्डसाठी स्तंभांची संख्या (ग्रिडमधील एकूण स्तंभ 11 पेक्षा कमी असले पाहिजेत) @@ -3584,6 +3634,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,न DocType: Activity Log,Date,तारीख DocType: Communication,Communication Type,संप्रेषण प्रकार apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,पालकांची टेबल +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,सूची नेव्हिगेट करा DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,संपूर्ण त्रुटी दर्शवा आणि विकसकांच्या समस्येची तक्रार करण्याची परवानगी द्या DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3605,7 +3656,6 @@ DocType: Notification Recipient,Email By Role,भूमिका करून apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,कृपया {0} पेक्षा अधिक सदस्य जोडण्यासाठी श्रेणीसुधारित करा apps/frappe/frappe/email/queue.py,This email was sent to {0},हे ईमेल {0} वर पाठविले गेले DocType: User,Represents a User in the system.,प्रणालीमध्ये वापरकर्त्याचे प्रतिनिधित्व करते. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},पृष्ठ {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,नवीन स्वरूपन सुरू करा apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,एक टिप्पणी जोडा apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} पैकी {0} diff --git a/frappe/translations/ms.csv b/frappe/translations/ms.csv index 71fee5f165..08754d9165 100644 --- a/frappe/translations/ms.csv +++ b/frappe/translations/ms.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Dayakan Gradien DocType: DocType,Default Sort Order,Pesalah Susut Lalai apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Menunjukkan hanya medan Nombor dari Laporan +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Tekan Alt Utama untuk mencetuskan jalan pintas tambahan dalam Menu dan Sidebar DocType: Workflow State,folder-open,folder terbuka DocType: Customize Form,Is Table,Adakah Jadual apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Tidak dapat membuka fail yang dilampirkan. Adakah anda mengeksportnya sebagai CSV? DocType: DocField,No Copy,Tiada Salinan DocType: Custom Field,Default Value,Nilai asal apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Append To adalah mandatori untuk mel masuk +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Menyegerakkan Kenalan DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Detil Pemetaan Migrasi Data apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Unfollow apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",Percetakan PDF melalui "Raw Print" belum disokong. Sila alih keluar pemetaan pencetak dalam Tetapan Pencetak dan cuba lagi. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} dan {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Terdapat ralat menyimpan penjimatan apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Masukkan kata laluan anda apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Tidak dapat memadam folder Rumah dan Lampiran +DocType: Email Account,Enable Automatic Linking in Documents,Dayakan Paut Automatik dalam Dokumen DocType: Contact Us Settings,Settings for Contact Us Page,Tetapan untuk Hubungi Kami DocType: Social Login Key,Social Login Provider,Penyedia Log Masuk Sosial +DocType: Email Account,"For more information, click here.","Untuk maklumat lanjut, klik di sini ." DocType: Transaction Log,Previous Hash,Hash sebelumnya DocType: Notification,Value Changed,Nilai Berubah DocType: Report,Report Type,Jenis laporan @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Peraturan Tenaga Tenaga apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,Sila masukkan ID Klien sebelum kemasukan sosial diaktifkan DocType: Communication,Has Attachment,Mempunyai lampiran DocType: User,Email Signature,Tandatangan E-mel -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} tahun yang lalu ,Addresses And Contacts,Alamat Dan Kenalan apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Lembaga Kanban ini akan menjadi peribadi DocType: Data Migration Run,Current Mapping,Pemetaan Semasa @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Anda memilih Pilihan Penyegerakan sebagai SEMUA, Ia akan menghidupkan semula semua \ membaca serta mesej belum dibaca dari pelayan. Ini juga boleh menyebabkan pertindihan \ komunikasi (e-mel)." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Terakhir disegerakkan {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Tidak boleh menukar kandungan header +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Tiada hasil ditemui untuk '

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Tidak dibenarkan menukar {0} selepas penyerahan apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Permohonan telah dikemaskini kepada versi baru, sila muat semula halaman ini" DocType: User,User Image,Imej Pengguna @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Tanda apps/frappe/frappe/public/js/frappe/chat.js,Discard,Buang DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Pilih imej lebar kira-kira 150px dengan latar belakang telus untuk hasil terbaik. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,Relapsed +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Nilai {0} dipilih DocType: Blog Post,Email Sent,Emel dihantar DocType: Communication,Read by Recipient On,Baca oleh Penerima Pada DocType: User,Allow user to login only after this hour (0-24),Benarkan pengguna log masuk hanya selepas jam ini (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Modul untuk Eksport DocType: DocType,Fields,Medan -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Anda tidak dibenarkan mencetak dokumen ini +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Anda tidak dibenarkan mencetak dokumen ini apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Ibu bapa apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Sesi anda telah tamat, sila log masuk semula untuk meneruskan." DocType: Assignment Rule,Priority,Keutamaan @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Tetapkan semula Ra DocType: DocType,UPPER CASE,KAD UPPER apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,Sila tetapkan Alamat E-mel DocType: Communication,Marked As Spam,Ditandakan sebagai spam +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Alamat E-mel yang Kenalan Googlenya akan disegerakkan. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Import Pelanggan apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Simpan Penapis DocType: Address,Preferred Shipping Address,Alamat Penghantaran Pilihan DocType: GCalendar Account,The name that will appear in Google Calendar,Nama yang akan muncul dalam Kalendar Google +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Klik pada {0} untuk menghasilkan Token Refresh. DocType: Email Account,Disable SMTP server authentication,Lumpuhkan pengesahan pelayan SMTP DocType: Email Account,Total number of emails to sync in initial sync process ,Jumlah e-mel yang disegerakkan dalam proses penyegerakan awal DocType: System Settings,Enable Password Policy,Dayakan Dasar Kata Laluan @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Masukkan kod apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Tidak masuk DocType: Auto Repeat,Start Date,Tarikh mula apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Tetapkan Carta +DocType: Website Theme,Theme JSON,JSON Tema apps/frappe/frappe/www/list.py,My Account,Akaun saya DocType: DocType,Is Published Field,Adakah Bidang Terbitan DocType: DocField,Set non-standard precision for a Float or Currency field,Tetapkan ketepatan tidak standard untuk medan Float atau Mata Wang @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Tambah Reference: {{ reference_doctype }} {{ reference_name }} untuk menghantar rujukan dokumen DocType: LDAP Settings,LDAP First Name Field,LDAP Field Name First apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Pengiriman lalai dan Peti masuk -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Persediaan> Peribadikan Borang apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.","Untuk mengemas kini, anda boleh mengemas kini lajur hanya pilihan." apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',Default untuk 'Semak' jenis medan mestilah sama ada '0' atau '1' apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Kongsi dokumen ini dengan @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Domain HTML DocType: Blog Settings,Blog Settings,Tetapan Blog apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Nama DocType hendaklah bermula dengan huruf dan ia hanya boleh terdiri daripada huruf, nombor, ruang dan garis bawah" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Persediaan> Kebenaran Pengguna DocType: Communication,Integrations can use this field to set email delivery status,Integrasi boleh menggunakan medan ini untuk menetapkan status penghantaran e-mel apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Tetapan gerbang pembayaran jalur DocType: Print Settings,Fonts,Font DocType: Notification,Channel,Saluran DocType: Communication,Opened,Dibuka DocType: Workflow Transition,Conditions,Syarat-syarat +apps/frappe/frappe/config/website.py,A user who posts blogs.,Seorang pengguna yang menyiarkan blog. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Tidak mempunyai akaun? Daftar apps/frappe/frappe/utils/file_manager.py,Added {0},Ditambah {0} DocType: Newsletter,Create and Send Newsletters,Buat dan Hantar Surat Berita DocType: Website Settings,Footer Items,Item Footer +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Sila persiapkan Akaun E-mel lalai dari Persediaan> E-mel> Akaun E-mel DocType: Website Slideshow Item,Website Slideshow Item,Item Slaid Laman web apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Daftar App Pelanggan OAuth DocType: Error Snapshot,Frames,Bingkai @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Tahap 0 adalah untuk keizinan tahap dokumen, tahap yang lebih tinggi untuk kebenaran peringkat lapangan." DocType: Address,City/Town,Bandar / Bandar DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Ini akan menetapkan semula tema semasa anda, adakah anda pasti mahu teruskan?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Bidang mandatori yang diperlukan dalam {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Ralat semasa menyambung ke akaun e-mel {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Ralat berlaku semasa membuat berulang @@ -528,7 +537,7 @@ DocType: Event,Event Category,Kategori Acara apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Lajur berdasarkan apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Edit Tajuk DocType: Communication,Received,Menerima -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Anda tidak dibenarkan mengakses halaman ini. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Anda tidak dibenarkan mengakses halaman ini. DocType: User Social Login,User Social Login,Masuk Sosial Pengguna apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,Tulis fail Python dalam folder yang sama di mana ini disimpan dan kembali lajur dan hasilnya. DocType: Contact,Purchase Manager,Pengurus pembelian @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Meng apps/frappe/frappe/utils/data.py,Operator must be one of {0},Pengendali mestilah salah satu {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Jika Pemilik DocType: Data Migration Run,Trigger Name,Mencetuskan nama -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Tulis tajuk dan perkenalan ke blog anda. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Buang Medan apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Runtuhkan Semua apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Warna latar belakang @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,Bar DocType: SMS Settings,Enter url parameter for message,Masukkan parameter url untuk mesej apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Format Cetak Khas Baru apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} sudah wujud +DocType: Workflow Document State,Is Optional State,Adakah Pilihan Negeri DocType: Address,Purchase User,Pembelian Pengguna DocType: Data Migration Run,Insert,Masukkan DocType: Web Form,Route to Success Link,Laluan ke Laluan Kejayaan @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Nama pe DocType: File,Is Home Folder,Adakah Folder Laman Utama apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Jenis: DocType: Post,Is Pinned,Telah disematkan -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Tiada kebenaran untuk '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Tiada kebenaran untuk '{0}' {1} DocType: Patch Log,Patch Log,Log Patch DocType: Print Format,Print Format Builder,Pembuat Format Cetak 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","Jika diaktifkan, semua pengguna boleh log masuk dari mana-mana Alamat IP menggunakan Two Factor Auth. Ini juga boleh ditetapkan hanya untuk pengguna tertentu dalam Halaman Pengguna" apps/frappe/frappe/utils/data.py,only.,sahaja. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,Syarat '{0}' tidak sah DocType: Auto Email Report,Day of Week,Hari dalam seminggu +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Dayakan API Google dalam Tetapan Google. DocType: DocField,Text Editor,Editor Teks apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Potong apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Cari atau taipkan arahan @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,Nombor dulang DB tidak boleh kurang daripada 1 DocType: Workflow State,ban-circle,larangan larangan DocType: Data Export,Excel,Excel +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Tandukan, Breadcrumbs dan Meta Tags" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Sokongan Alamat E-mel Tidak ditentukan DocType: Comment,Published,Diterbitkan DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","Nota: Untuk hasil yang terbaik, imej mesti mempunyai saiz dan lebar yang sama mestilah lebih besar daripada ketinggian." @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Peristiwa Terakhir Penjadual apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Laporan semua saham dokumen DocType: Website Sidebar Item,Website Sidebar Item,Bar sisi laman web apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,To Do +DocType: Google Settings,Google Settings,Tetapan Google apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Pilih Negara, Zon Waktu dan Mata Wang anda" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Masukkan parameter url statik di sini (Contoh: penghantar = ERPNext, nama pengguna = ERPNext, kata laluan = 1234 dsb.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Tiada Akaun E-mel @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token ,Setup Wizard,Wizard Persediaan apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Togol Carta +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,Penyelarasan DocType: Data Migration Run,Current Mapping Action,Tindakan Pemetaan Semasa DocType: Email Account,Initial Sync Count,Count Sync Awal apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Tetapan untuk Hubungi Kami. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Jenis Format Cetak apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Tiada Kebenaran yang ditetapkan untuk kriteria ini. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Kembangkan Semua +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Tiada Templat Alamat lalai yang ditemui. Sila buat yang baru dari Persediaan> Percetakan dan Penjenamaan> Template Alamat. DocType: Tag Doc Category,Tag Doc Category,Kategori Dok Tag DocType: Data Import,Generated File,Fail Dibina apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Nota @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Medan garis masa mesti Pautan atau Pautan Dinamik DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Pemberitahuan dan mel pukal akan dihantar dari pelayan keluar ini. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Ini adalah kata laluan umum yang teratas. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Hantar secara terus {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Hantar secara terus {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} tidak wujud, pilih sasaran baru untuk bergabung" DocType: Energy Point Rule,Multiplier Field,Field Multiplier DocType: Workflow,Workflow State Field,Medan Kerja Aliran Kerja @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} menghargai kerja anda pada {1} dengan {2} mata DocType: Auto Email Report,Zero means send records updated at anytime,Zero bermakna menghantar rekod dikemas kini pada bila-bila masa apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Nilai tidak boleh ditukar untuk {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Tetapan API Google. DocType: System Settings,Force User to Reset Password,Angkatan Pengguna untuk Menetapkan Kata Laluan apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Laporan Laporan Builder diuruskan secara langsung oleh pembina laporan. Tiada apa-apa yang perlu dilakukan. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Edit Penapis @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,untuk DocType: S3 Backup Settings,eu-north-1,eu-utara-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Hanya satu peraturan yang dibenarkan dengan Peranan yang sama, Tahap dan {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Anda tidak dibenarkan mengemaskini Dokumen Borang Web ini -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Had Lampiran Maksimum untuk rekod ini dicapai. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Had Lampiran Maksimum untuk rekod ini dicapai. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,Sila pastikan Dokumen Komunikasi Rujukan tidak dipautkan. DocType: DocField,Allow in Quick Entry,Benarkan Entri Pantas DocType: Error Snapshot,Locals,Penduduk tempatan @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Jenis Pengecualian apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},Tidak boleh memadam atau membatalkan kerana {0} {1} dikaitkan dengan {2} {3} {4} apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,Rahsia OTP hanya boleh diset semula oleh Pentadbir. -DocType: Web Form Field,Page Break,Pemisah halaman DocType: Website Script,Website Script,Skrip Laman Web DocType: Integration Request,Subscription Notification,Pemberitahuan Langganan DocType: DocType,Quick Entry,Kemasukan Pantas @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,Tetapkan Harta Selepas Pemberitah apps/frappe/frappe/__init__.py,Thank you,Terima kasih apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks untuk integrasi dalaman apps/frappe/frappe/config/settings.py,Import Data,Import Data +DocType: Translation,Contributed Translation Doctype Name,Terjemahan Terjemahan Doktor DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID DocType: Review Level,Review Level,Tahap Semakan @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Berjaya Selesai apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Senarai apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Menghargai -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Baru {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Adakah Kenalan Utama DocType: Print Format,Raw Commands,Perintah Mentah apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Stylesheet untuk Format Cetak @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Kesilapan dalam Pe apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Cari {0} di {1} DocType: Email Account,Use SSL,Gunakan SSL DocType: DocField,In Standard Filter,Dalam Penapis Standard +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Tiada Kenalan Google hadir untuk disegerakkan. DocType: Data Migration Run,Total Pages,Jumlah Halaman apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: Bidang '{1}' tidak boleh ditetapkan sebagai Unik kerana ia mempunyai nilai yang tidak unik DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Jika diaktifkan, pengguna akan dimaklumkan setiap kali mereka log masuk. Jika tidak didayakan, pengguna hanya akan diberitahu sekali sahaja." @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,Automasi apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Unzipping files ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Cari '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Ada yang salah -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Sila simpan sebelum dilampirkan. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,Sila simpan sebelum dilampirkan. DocType: Version,Table HTML,Jadual HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,hab DocType: Page,Standard,Standard @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Tiada keput apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} rekod dipadam apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,Ada masalah semasa menjana token akses dropbox. Sila periksa log ralat untuk maklumat lanjut. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Keturunan Daripada -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Tiada Templat Alamat lalai yang ditemui. Sila buat yang baru dari Persediaan> Percetakan dan Penjenamaan> Template Alamat. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Kenalan Google telah dikonfigurasikan. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Sembunyikan butiran apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Gaya Fon apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Langganan anda akan tamat pada {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Pengesahan gagal semasa menerima e-mel daripada Akaun E-mel {0}. Mesej dari pelayan: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Statistik berdasarkan prestasi minggu lepas (dari {0} hingga {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,Pemaut automatik boleh diaktifkan hanya jika masuk didayakan. DocType: Website Settings,Title Prefix,Awalan Tajuk apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Aplikasi pengesahan yang boleh anda gunakan adalah: DocType: Bulk Update,Max 500 records at a time,Max 500 rekod pada satu masa @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,Laporkan Penapis apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Pilih Lajur DocType: Event,Participants,Peserta DocType: Auto Repeat,Amended From,Diubah Dari -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Maklumat anda telah dihantar +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Maklumat anda telah dihantar DocType: Help Category,Help Category,Kategori Bantuan apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 bulan apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Pilih format sedia ada untuk mengedit atau memulakan format baru. @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Field to Track DocType: User,Generate Keys,Menjana Kunci DocType: Comment,Unshared,Tidak dikongsi -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Disimpan +DocType: Translation,Saved,Disimpan DocType: OAuth Client,OAuth Client,Klien OAuth DocType: System Settings,Disable Standard Email Footer,Lumpuhkan Footer E-mel Standard apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Format Cetak {0} dilumpuhkan @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Terakhir Dike DocType: Data Import,Action,Tindakan apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Kunci klien diperlukan DocType: Chat Profile,Notifications,Pemberitahuan +DocType: Translation,Contributed,Sumbangan DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy DocType: Report,Custom Report,Laporan Kastam DocType: Workflow State,info-sign,tanda maklumat @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Hubungi DocType: LDAP Settings,LDAP Username Field,Bidang Nama Pengguna LDAP apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} medan tidak boleh ditetapkan sebagai unik dalam {1}, kerana terdapat nilai yang tidak unik yang ada" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Persediaan> Peribadikan Borang DocType: User,Social Logins,Log Masuk Sosial DocType: Workflow State,Trash,Sampah DocType: Stripe Settings,Secret Key,Kunci Rahsia @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,Tajuk Bidang apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Tidak dapat menyambung ke pelayan e-mel keluar DocType: File,File URL,URL fail DocType: Help Article,Likes,Suka +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Integrasi Kenalan Google dilumpuhkan. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Anda perlu log masuk dan mempunyai Peranan Pengurus Sistem untuk dapat mengakses sandaran. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Tahap pertama DocType: Blogger,Short Name,Nama pendek @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Import Zip DocType: Contact,Gender,Jantina DocType: Workflow State,thumbs-down,tak bagus -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Beratur harus menjadi salah satu daripada {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Tidak dapat menetapkan Pemberitahuan Mengenai Jenis Dokumen {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Menambah Pengurus Sistem untuk Pengguna ini kerana mesti ada satu Pengurus Sistem apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,E-mel sambutan dihantar DocType: Transaction Log,Chaining Hash,Chaining Hash DocType: Contact,Maintenance Manager,Pengurus Penyelenggaraan +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Sebagai perbandingan, gunakan> 5, <10 atau = 324. Untuk julat, gunakan 5:10 (untuk nilai antara 5 & 10)." apps/frappe/frappe/utils/bot.py,show,tunjukkan apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Kongsi URL apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Format Fail Tidak Disokong @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,Pemberitahuan DocType: Data Import,Show only errors,Tunjukkan ralat sahaja DocType: Energy Point Log,Review,Tinjauan apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Baris Dihapuskan -DocType: GSuite Settings,Google Credentials,Kredensial Google +DocType: Google Settings,Google Credentials,Kredensial Google apps/frappe/frappe/www/login.html,Or login with,Atau log masuk dengan apps/frappe/frappe/model/document.py,Record does not exist,Rekod tidak wujud apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Nama Laporan Baru @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,Senarai DocType: Workflow State,th-large,th-besar apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Tidak dapat menetapkan Berikan Penyerahan jika tidak dapat Dihantar apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Tidak Berkaitan dengan sebarang rekod +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Kesalahan menyambung ke Aplikasi QZ Tray ...

Anda perlu memasang dan menjalankan aplikasi QZ Tray, untuk menggunakan ciri Cetak Raw.

Klik di sini untuk Muat turun dan pasang QZ Tray .
Klik di sini untuk mengetahui lebih lanjut mengenai Percetakan Raw ." DocType: Chat Message,Content,Kandungan DocType: Workflow Transition,Allow Self Approval,Benarkan Kelulusan Diri apps/frappe/frappe/www/qrcode.py,Page has expired!,Halaman telah tamat tempoh! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,tangan kanan DocType: Website Settings,Banner is above the Top Menu Bar.,Banner berada di atas Bar Menu Teratas. apps/frappe/frappe/www/update-password.html,Invalid Password,kata laluan tidak sah apps/frappe/frappe/utils/data.py,1 month ago,1 bulan yang lepas +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Benarkan Akses Kenalan Google DocType: OAuth Client,App Client ID,ID Pelanggan Apl DocType: DocField,Currency,Mata wang DocType: Website Settings,Banner,Banner @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Matlamat DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Sekiranya Peranan tidak mempunyai akses pada Aras 0, maka tahap yang lebih tinggi adalah tidak bererti." DocType: ToDo,Reference Type,Jenis Rujukan -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Membenarkan DocType, DocType. Berhati-hati!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Membenarkan DocType, DocType. Berhati-hati!" DocType: Domain Settings,Domain Settings,Tetapan Domain DocType: Auto Email Report,Dynamic Report Filters,Penapis Laporan Dinamik DocType: Energy Point Log,Appreciation,Penghargaan @@ -1468,6 +1489,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,us-west-2 DocType: DocType,Is Single,Masih bujang apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Buat Format Baru +DocType: Google Contacts,Authorize Google Contacts Access,Mengotorkan Akses Kenalan Google DocType: S3 Backup Settings,Endpoint URL,URL titik akhir DocType: Social Login Key,Google,Google DocType: Contact,Department,Jabatan @@ -1482,7 +1504,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Berikan Kepada DocType: List Filter,List Filter,Senaraikan Penapis DocType: Dashboard Chart Link,Chart,Carta apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Tidak boleh Buang -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Hantar dokumen ini untuk mengesahkan +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Hantar dokumen ini untuk mengesahkan apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} sudah wujud. Pilih nama lain apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Anda mempunyai perubahan yang tidak disimpan dalam borang ini. Sila simpan sebelum anda meneruskan. apps/frappe/frappe/model/document.py,Action Failed,Tindakan Gagal @@ -1564,6 +1586,7 @@ DocType: DocField,Display,Paparan apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Membalas semua DocType: Calendar View,Subject Field,Bidang Subjek apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Tamat Sesi mestilah dalam format {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},Memohon: {0} DocType: Workflow State,zoom-in,mengezum masuk apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Gagal menyambung ke pelayan apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Tarikh {0} mesti dalam bentuk: {1} @@ -1575,8 +1598,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Ikon akan muncul pada butang DocType: Role Permission for Page and Report,Set Role For,Tetapkan Peranan +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Pemaut automatik boleh diaktifkan hanya untuk satu Akaun E-mel. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Tiada Akaun E-mel yang Ditugaskan +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Akaun E-mel bukan persediaan. Sila buat Akaun E-mel baru dari Persediaan> E-mel> Akaun E-mel apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Tugasan +DocType: Google Contacts,Last Sync On,Penyegerakan Terakhir apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},diperolehi oleh {0} melalui peraturan automatik {1} apps/frappe/frappe/config/website.py,Portal,Portal apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Terima kasih atas e-mel anda @@ -1597,7 +1623,6 @@ DocType: GSuite Settings,GSuite Settings,Tetapan GSuite DocType: Integration Request,Remote,Jauh DocType: File,Thumbnail URL,URL petak kecil apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Muat turun Laporan -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Persediaan> Pengguna apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Pengubahsuaian untuk {0} dieksport ke:
{1} DocType: GCalendar Account,Calendar Name,Nama Kalendar apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Id log anda ialah @@ -1647,6 +1672,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Pergi apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Medan imej mestilah nama lapangan yang sah apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,Anda perlu log masuk untuk mengakses halaman ini DocType: Assignment Rule,Example: {{ subject }},Contoh: {{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Nama lapangan {0} adalah terhad apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Anda tidak boleh menyusun 'Baca Sahaja' untuk medan {0} DocType: Social Login Key,Enable Social Login,Dayakan Login Sosial DocType: Workflow,Rules defining transition of state in the workflow.,Peraturan menentukan peralihan negeri dalam alur kerja. @@ -1667,10 +1693,10 @@ DocType: Website Settings,Route Redirects,Pengalihan Laluan apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Peti Masuk E-mel apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},dipulihkan {0} sebagai {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Menugaskan Dokumen secara automatik kepada Pengguna +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Buka Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Templat E-mel untuk pertanyaan umum. DocType: Letter Head,Letter Head Based On,Ketua Surat Berasaskan Pada apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Sila tutup tetingkap ini -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Bayaran lengkap DocType: Contact,Designation,Jawatan DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Meta Tags @@ -1709,6 +1735,7 @@ DocType: System Settings,Choose authentication method to be used by all users,Pi DocType: Error Snapshot,Parent Error Snapshot,Tangkapan Ralat Ibu Bapa DocType: GCalendar Account,GCalendar Account,Akaun GCalendar DocType: Language,Language Name,Nama bahasa +DocType: Workflow Document State,Workflow Action is not created for optional states,Tindakan Aliran Kerja tidak dibuat untuk keadaan pilihan DocType: Customize Form,Customize Form,Sesuaikan Borang DocType: DocType,Image Field,Medan Imej apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Ditambah {0} ({1}) @@ -1750,6 +1777,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,Gunakan peraturan ini jika Pengguna adalah Pemilik DocType: About Us Settings,Org History Heading,Tajuk Org Sejarah apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Ralat Pelayan +DocType: Contact,Google Contacts Description,Perihal Kenalan Google apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Peranan standard tidak boleh dinamakan semula DocType: Review Level,Review Points,Semak Mata apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Nama Parameter Kanban yang tiada @@ -1767,7 +1795,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Tidak dalam Mod Pemaju! Tetapkan di site_config.json atau buat 'Custom' DocType. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,mendapat {0} mata DocType: Web Form,Success Message,Mesej Kejayaan -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Sebagai perbandingan, gunakan> 5, <10 atau = 324. Untuk julat, gunakan 5:10 (untuk nilai antara 5 & 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Penerangan untuk halaman penyenaraian, dalam teks biasa, hanya beberapa baris. (maks 140 aksara)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Tunjukkan Kebenaran DocType: DocType,Restrict To Domain,Hadkan Domain @@ -1789,6 +1816,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Bukan apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Tetapkan Kuantiti DocType: Auto Repeat,End Date,Tarikh tamat DocType: Workflow Transition,Next State,Negeri Seterusnya +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Kenalan Google disegerakkan. DocType: System Settings,Is First Startup,Adakah Permulaan Pertama apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},dikemaskini kepada {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Berpindah ke @@ -1838,6 +1866,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Kalendar apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Templat Import Data DocType: Workflow State,hand-left,tangan kiri +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Pilih beberapa item senarai apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Saiz Cadangan: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Dihubungkan dengan {0} DocType: Braintree Settings,Private Key,Kunci Persendirian @@ -1880,13 +1909,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Faedah DocType: Bulk Update,Limit,Had DocType: Print Settings,Print taxes with zero amount,Cetak cukai dengan jumlah sifar -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Akaun E-mel bukan persediaan. Sila buat Akaun E-mel baru dari Persediaan> E-mel> Akaun E-mel DocType: Workflow State,Book,Buku DocType: S3 Backup Settings,Access Key ID,ID Kunci Akses DocType: Chat Message,URLs,URL apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Nama dan nama keluarga sendiri mudah ditebak. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Laporan {0} DocType: About Us Settings,Team Members Heading,Tajuk Pasukan Pasukan +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Pilih item senarai apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Dokumen {0} telah ditetapkan untuk menyatakan {1} oleh {2} DocType: Address Template,Address Template,Alamat Templat DocType: Workflow State,step-backward,langkah mundur @@ -1910,6 +1939,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Eksport Hak Cipta Eksport apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Tiada: Akhir Aliran Kerja DocType: Version,Version,Versi +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Item senarai terbuka apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 bulan DocType: Chat Message,Group,Kumpulan apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Terdapat beberapa masalah dengan url fail: {0} @@ -1965,6 +1995,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 tahun apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} mengembalikan mata anda pada {1} DocType: Workflow State,arrow-down,panah ke bawah DocType: Data Import,Ignore encoding errors,Abaikan ralat pengekodan +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Landskap DocType: Letter Head,Letter Head Name,Nama Ketua Surat DocType: Web Form,Client Script,Skrip Pelanggan DocType: Assignment Rule,Higher priority rule will be applied first,Peraturan keutamaan yang lebih tinggi akan digunakan terlebih dahulu @@ -2009,6 +2040,7 @@ DocType: Kanban Board Column,Green,Hijau apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Hanya bidang mandatori yang diperlukan untuk rekod baru. Anda boleh memadamkan lajur yang tidak wajib jika anda mahu. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} mesti bermula dan tamat dengan huruf dan hanya boleh mengandungi huruf, tanda hubung atau garis bawah." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Main Tindakan Utama apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Buat E-mel Pengguna apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Bidang Isih {0} mestilah nama lapangan yang sah DocType: Auto Email Report,Filter Meta,Tapis Meta @@ -2038,6 +2070,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Bidang Garis Masa apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Memuatkan ... DocType: Auto Email Report,Half Yearly,Separuh Tahunan +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Profil saya apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Tarikh diubah suai yang terakhir DocType: Contact,First Name,Nama pertama DocType: Post,Comments,Komen @@ -2060,6 +2093,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Kandungan Hash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Siaran oleh {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} diberikan {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Tiada kenalan Google baharu yang disegerakkan. DocType: Workflow State,globe,dunia apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Purata {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Padam Log Ralat @@ -2086,6 +2120,8 @@ DocType: Workflow State,Inverse,Songsang DocType: Activity Log,Closed,Tertutup DocType: Report,Query,Pertanyaan DocType: Notification,Days After,Hari Selepas +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Pintasan Halaman +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Potret apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Permintaan Dibetulkan DocType: System Settings,Email Footer Address,Alamat Footer E-mel apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Kemas kini titik tenaga @@ -2113,6 +2149,7 @@ For Select, enter list of Options, each on a new line.","Untuk Pautan, masukkan apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 minit yang lalu apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Tiada Sesi Aktif apps/frappe/frappe/model/base_document.py,Row,Row +DocType: Contact,Middle Name,Nama tengah apps/frappe/frappe/public/js/frappe/request.js,Please try again,Sila cuba lagi DocType: Dashboard Chart,Chart Options,Pilihan Carta DocType: Data Migration Run,Push Failed,Tolak Gagal @@ -2141,6 +2178,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,saiz semula kecil DocType: Comment,Relinked,Melayari DocType: Role Permission for Page and Report,Roles HTML,Peranan HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Pergi apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Aliran kerja akan bermula selepas menyimpan. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Sekiranya data anda dalam HTML, sila salin kod HTML yang tepat dengan tag." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Tarikh sering mudah ditebak. @@ -2169,7 +2207,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Ikon muka layar apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,membatalkan dokumen ini apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Julat Tarikh -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Persediaan> Kebenaran Pengguna apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} dihargai {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Nilai berubah apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Ralat Pemberitahuan @@ -2234,6 +2271,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Padam Bulk DocType: DocShare,Document Name,Nama Dokumen apps/frappe/frappe/config/customization.py,Add your own translations,Tambah terjemahan anda sendiri +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Navigasi senarai ke bawah DocType: S3 Backup Settings,eu-central-1,eu-central-1 DocType: Auto Repeat,Yearly,Setiap tahun apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Namakan semula @@ -2284,6 +2322,7 @@ DocType: Workflow State,plane,pesawat apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Kesalahan set bersarang. Sila hubungi Pentadbir. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Tunjukkan Laporan DocType: Auto Repeat,Auto Repeat Schedule,Jadual Ulang Auto +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Lihat Ref DocType: Address,Office,Pejabat DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} hari lalu @@ -2317,7 +2356,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Ni apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Tetapan saya apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Nama kumpulan tidak boleh kosong. DocType: Workflow State,road,jalan raya -DocType: Website Route Redirect,Source,Sumber +DocType: Contact,Source,Sumber apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Sesi Aktif apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Terdapat hanya satu kali Lipat dalam bentuk apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Sembang Baru @@ -2339,6 +2378,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Sila masukkan URL Pengarang DocType: Email Account,Send Notification to,Hantar Pemberitahuan kepada apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Tetapan sandaran Dropbox +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,Sesuatu yang berlaku semasa generasi token. Klik pada {0} untuk menghasilkan yang baru. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Alih keluar semua penyesuaian? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Hanya Pentadbir sahaja yang boleh diedit DocType: Auto Repeat,Reference Document,Dokumen rujukan @@ -2363,6 +2403,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Peranan boleh ditetapkan untuk pengguna dari laman Pengguna mereka. DocType: Website Settings,Include Search in Top Bar,Termasuk Cari di Bar Teratas apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,Ralat [Urgent] semasa mencipta% s berulang untuk% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Pintasan Global DocType: Help Article,Author,Pengarang DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Tiada dokumen ditemui untuk penapis yang diberikan @@ -2398,10 +2439,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, Baris {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Jika anda memuat naik rekod baru, "Naming Series" menjadi wajib, jika ada." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Edit Properties -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Tidak dapat membuka contoh apabila {0} dibuka +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,Tidak dapat membuka contoh apabila {0} dibuka DocType: Activity Log,Timeline Name,Nama garis masa DocType: Comment,Workflow,Aliran Kerja apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Sila tetapkan URL Asas dalam Kunci Masuk Sosial untuk Frappe +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Pintasan papan kekunci DocType: Portal Settings,Custom Menu Items,Item Menu Kustom apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,Panjang {0} mestilah antara 1 dan 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Sambungan hilang. Sesetengah ciri mungkin tidak berfungsi. @@ -2464,6 +2506,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Baris Ditam DocType: DocType,Setup,Persediaan apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} berjaya dicipta apps/frappe/frappe/www/update-password.html,New Password,Kata laluan baharu +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Pilih Medan apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Tinggalkan perbualan ini DocType: About Us Settings,Team Members,Anggota kumpulan DocType: Blog Settings,Writers Introduction,Pengenalan Penulis @@ -2533,13 +2576,12 @@ DocType: Chat Room,Name,Nama DocType: Communication,Email Template,Templat E-mel DocType: Energy Point Settings,Review Levels,Tahap Semakan DocType: Print Format,Raw Printing,Percetakan mentah -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Tidak dapat membuka {0} apabila contohnya terbuka +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,Tidak dapat membuka {0} apabila contohnya terbuka DocType: DocType,"Make ""name"" searchable in Global Search",Jadikan "nama" dicari dalam Carian Global DocType: Data Migration Mapping,Data Migration Mapping,Pemetaan Migrasi Data DocType: Data Import,Partially Successful,Sebahagian besar berjaya DocType: Communication,Error,Ralat apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype tidak boleh diubah dari {0} ke {1} dalam baris {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Kesalahan menyambung ke Aplikasi QZ Tray ...

Anda perlu memasang dan menjalankan aplikasi QZ Tray, untuk menggunakan ciri Cetak Raw.

Klik di sini untuk Muat turun dan pasang QZ Tray .
Klik di sini untuk mengetahui lebih lanjut mengenai Percetakan Raw ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Mengambil gambar apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,Elakkan tahun yang dikaitkan dengan anda. DocType: Web Form,Allow Incomplete Forms,Benarkan Borang Tidak Selesai @@ -2635,7 +2677,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Pilih target = "_blank" untuk membuka halaman baru. DocType: Portal Settings,Portal Menu,Menu Portal DocType: Website Settings,Landing Page,Halaman arahan -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,Sila log masuk atau log masuk untuk bermula DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Pilihan kenalan, seperti "Pertanyaan Jualan, Pertanyaan Sokongan" dan sebagainya masing-masing pada baris baru atau dipisahkan oleh koma." apps/frappe/frappe/twofactor.py,Verfication Code,Kod Verfication apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} sudah berhenti berlangganan @@ -2721,6 +2762,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Pemetaan Pelan DocType: Address,Sales User,Pengguna Jualan apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Tukar sifat medan (bersembunyi, readonly, kebenaran dan lain-lain)" DocType: Property Setter,Field Name,Nama Field +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Pelanggan DocType: Print Settings,Font Size,Saiz huruf DocType: User,Last Password Reset Date,Tarikh Reset Kata Laluan Terakhir DocType: System Settings,Date and Number Format,Tarikh dan Format Nombor @@ -2786,6 +2828,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Node Kumpulan apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Bergabung dengan yang sedia ada DocType: Blog Post,Blog Intro,Pengenalan Blog apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Sebut Baharu +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Lompat ke medan DocType: Prepared Report,Report Name,Laporkan Nama apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Sila muat semula untuk mendapatkan dokumen terkini. apps/frappe/frappe/core/doctype/communication/communication.js,Close,Tutup @@ -2795,10 +2838,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Acara DocType: Social Login Key,Access Token URL,URL Token Akses apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Sila tetapkan kunci akses Dropbox dalam konfigurasi tapak anda +DocType: Google Contacts,Google Contacts,Kenalan Google DocType: User,Reset Password Key,Reset Kata Laluan Kata Kunci apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Diubah oleh DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.","Untuk memperbaharui, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Berjaya disimpan +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Hantar e-mel ke {0} untuk memautnya di sini. DocType: File,Folder,Folder DocType: DocField,Perm Level,Tahap Perm DocType: Print Settings,Page Settings,Tetapan Halaman @@ -2828,6 +2874,7 @@ DocType: Workflow State,remove-sign,tanda keluarkan DocType: Dashboard Chart,Full,Penuh DocType: DocType,User Cannot Create,Pengguna tidak boleh membuat apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Anda mendapat titik {0} +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Persediaan> Pengguna DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Jika anda menetapkan ini, Item ini akan muncul dalam lungsur bawah ibu bapa yang dipilih." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Tiada E-mel apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Bidang berikut telah hilang: @@ -2841,13 +2888,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Tun DocType: Web Form,Web Form Fields,Bidang Borang Web DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Borang disunting pengguna di Laman Web. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Selesai Batal {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Selesai Batal {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Pilihan 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,Jumlah apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Ini adalah kata laluan yang sangat biasa. DocType: Personal Data Deletion Request,Pending Approval,Kelulusan yang sedang menunggu apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Dokumen tersebut tidak dapat diberikan dengan betul apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Tidak dibenarkan untuk {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Tiada nilai untuk dipaparkan DocType: Personal Data Download Request,Personal Data Download Request,Permintaan Muat turun Data Peribadi apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} berkongsi dokumen ini dengan {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Pilih {0} @@ -2863,7 +2911,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},E-mel ini dihantar ke {0} dan disalin ke {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,Katakunci atau kata laluan tidak sah DocType: Social Login Key,Social Login Key,Kunci Masuk Sosial -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Sila persiapkan Akaun E-mel lalai dari Persediaan> E-mel> Akaun E-mel apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Penapis disimpan DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Bagaimanakah mata wang ini akan diformatkan? Jika tidak ditetapkan, akan menggunakan kegagalan sistem" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} ditetapkan untuk menyatakan {2} @@ -2989,6 +3036,7 @@ DocType: User,Location,Lokasi apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Tiada data DocType: Website Meta Tag,Website Meta Tag,Meta Tag Laman Web DocType: Workflow State,film,filem +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Disalin ke papan keratan. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Tetapan tidak dijumpai apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Label wajib DocType: Webhook,Webhook Headers,Webhook Headers @@ -3197,7 +3245,7 @@ DocType: Address,Address Line 1,Alamat Baris 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Untuk Jenis Dokumen apps/frappe/frappe/model/base_document.py,Data missing in table,Data hilang dalam jadual apps/frappe/frappe/utils/bot.py,Could not identify {0},Tidak dapat mengenal pasti {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Borang ini telah diubah suai selepas anda memuatkannya +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Borang ini telah diubah suai selepas anda memuatkannya apps/frappe/frappe/www/login.html,Back to Login,Kembali ke Log masuk apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Tidak ditetapkan DocType: Data Migration Mapping,Pull,Tarik @@ -3265,6 +3313,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Pemetaan Jadual Kanak apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Persediaan Akaun E-mel sila masukkan kata laluan anda untuk: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Terlalu banyak menulis dalam satu permintaan. Sila hantar permintaan yang lebih kecil DocType: Social Login Key,Salesforce,Pasukan jualan +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Mengimport {0} daripada {1} DocType: User,Tile,Jubin apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,Bilik {0} mesti mempunyai sekurang-kurangnya satu pengguna. DocType: Email Rule,Is Spam,Adakah Spam @@ -3302,7 +3351,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,folder-tutup DocType: Data Migration Run,Pull Update,Tarik Kemas Kini apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},digabungkan {0} ke {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Tiada hasil ditemui untuk '

DocType: SMS Settings,Enter url parameter for receiver nos,Masukkan parameter url untuk nombor penerima apps/frappe/frappe/utils/jinja.py,Syntax error in template,Kesilapan sintaks dalam templat apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Sila tetapkan nilai penapis dalam jadual Penapis Laporan. @@ -3315,6 +3363,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Maaf, anda DocType: System Settings,In Days,Dalam Hari DocType: Report,Add Total Row,Tambah jumlah baris apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Mula Sesi Gagal +DocType: Translation,Verified,Disahkan DocType: Print Format,Custom HTML Help,Bantuan HTML Tersuai DocType: Address,Preferred Billing Address,Alamat Bil Pilihan apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Ditugaskan untuk @@ -3329,7 +3378,6 @@ DocType: Help Article,Intermediate,Perantaraan DocType: Module Def,Module Name,Nama Modul DocType: OAuth Authorization Code,Expiration time,Masa tamat tempoh apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Tetapkan format lalai, saiz halaman, gaya cetakan dan lain-lain" -apps/frappe/frappe/desk/like.py,You cannot like something that you created,Anda tidak boleh menyukai sesuatu yang anda buat DocType: System Settings,Session Expiry,Tamat Sesi DocType: DocType,Auto Name,Nama Auto apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Pilih Lampiran @@ -3357,6 +3405,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Halaman Sistem DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Nota: Secara e-mel lalai untuk backup gagal dihantar. DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm +DocType: Translation,PR sent,PR dihantar DocType: Tag Doc Category,Doctype to Assign Tags,Doctype to Assign Tags DocType: Address,Warehouse,Gudang apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Persediaan Dropbox @@ -3424,7 +3473,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Enter untuk menambah komen apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Bidang {0} tidak boleh dipilih. DocType: User,Birth Date,Tarikh lahir -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Dengan Indentasi Kumpulan DocType: List View Setting,Disable Count,Lumpuhkan Count DocType: Contact Us Settings,Email ID,ID emel apps/frappe/frappe/utils/password.py,Incorrect User or Password,Pengguna atau Kata Laluan yang salah @@ -3459,6 +3507,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Peranan ini mengemas kini Kebenaran Pengguna untuk pengguna DocType: Website Theme,Theme,Tema DocType: Web Form,Show Sidebar,Tunjukkan Sidebar +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Integrasi Kenalan Google. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Kotak masuk lalai apps/frappe/frappe/www/login.py,Invalid Login Token,Token Masuk Tidak Sah apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Mula-mula tetapkan nama dan simpan rekod. @@ -3486,7 +3535,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Sila betulkan DocType: Top Bar Item,Top Bar Item,Item Bar Teratas ,Role Permissions Manager,Pengurus kebenaran peranan -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,Terdapat ralat. Sila laporkan ini. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} tahun yang lalu apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Perempuan DocType: System Settings,OTP Issuer Name,Nama Penerbit OTP apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Tambah untuk Dilakukan @@ -3586,6 +3635,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Tetapa apps/frappe/frappe/model/document.py,none of,tidak ada DocType: Desktop Icon,Page,Halaman DocType: Workflow State,plus-sign,tambah tanda +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Cache Clear and Reload apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Tidak boleh Kemas Kini: Pautan yang Tidak Benar / Terakhir. DocType: Kanban Board Column,Yellow,Kuning DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Bilangan lajur untuk medan dalam Grid (Jumlah Lajur dalam grid mestilah kurang daripada 11) @@ -3600,6 +3650,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Lemb DocType: Activity Log,Date,Tarikh DocType: Communication,Communication Type,Jenis Komunikasi apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Jadual Ibu Bapa +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Navigasi senarai DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Tunjukkan Kesalahan Penuh dan Benarkan Laporan Isu kepada Pembangun DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3621,7 +3672,6 @@ DocType: Notification Recipient,Email By Role,E-mel Oleh Peranan apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,Sila naik taraf untuk menambah lebih daripada {0} pelanggan apps/frappe/frappe/email/queue.py,This email was sent to {0},E-mel ini dihantar ke {0} DocType: User,Represents a User in the system.,Merupakan Pengguna dalam sistem. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Halaman {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Mulakan Format baharu apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Tambah komen apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} daripada {1} diff --git a/frappe/translations/my.csv b/frappe/translations/my.csv index 556a09be6c..537929a8d1 100644 --- a/frappe/translations/my.csv +++ b/frappe/translations/my.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,gradient Enable DocType: DocType,Default Sort Order,default စီအမိန့် apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,အစီရင်ခံစာထဲကနေမှသာကိန်းဂဏန်းလယ်ကွင်းဖေါ်ပြသည် +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Menu ကိုနှင့် Sidebar အတွက်အပိုဆောင်း shortcuts တွေကိုဖြစ်ပေါ်အောင်စာနယ်ဇင်း Alt Key ကို DocType: Workflow State,folder-open,folder ကို-ပွင့်လင်း DocType: Customize Form,Is Table,စားပွဲတင် Is apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,ပူးတွဲဖိုင်ဖွင့်နိုင်ဘူး။ သငျသညျ CSV ဖိုင်အဖြစ်တင်ပို့ခဲ့သလား DocType: DocField,No Copy,အဘယ်သူမျှမကူးပါ DocType: Custom Field,Default Value,မူလတန်ဖိုး apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,ဖြည့်စွက်ရန်အဝင်မေးလ်တွေအတွက်မဖြစ်မနေဖြစ်ပါသည် +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Sync ကိုဆက်သွယ်ရန် DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,ဒေတာကိုရွှေ့ပြောင်းမြေပုံအသေးစိတ် apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,လိုက်အောင် apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.","ရော်ပုံနှိပ်ပါ" မှတဆင့် PDF ကိုပုံနှိပ်ခြင်းမရှိသေးပါမပံ့ပိုးပါ။ ပရင်တာက Settings ထဲမှာပရင်တာမြေပုံဖယ်ရှားထပ်ကြိုးစားပါ။ @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} နှင့် {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Filter ကိုချွေတာမှားယွင်းမှုတစ်ခုရှိခဲ့သည် apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,သင့်ရဲ့စကားဝှက်ကိုရိုက်ထည့်ပါ apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Home နဲ့ပူးတွဲပါဖိုင်တွဲများမဖျက်နိုင်ပါ +DocType: Email Account,Enable Automatic Linking in Documents,စာရွက်စာတမ်းများအတွက်အလိုအလျောက်ချိတ်ဆက်ခြင်း Enable DocType: Contact Us Settings,Settings for Contact Us Page,ကြှနျုပျတို့ကိုဆကျသှယျရနျစာမျက်နှာအတွက်ဆက်တင်များ DocType: Social Login Key,Social Login Provider,လူမှုဝင်မည်ပေးသူ +DocType: Email Account,"For more information, click here.","ပိုမိုသိရှိလိုပါက, ဤနေရာကိုကလစ်နှိပ်ပါ ။" DocType: Transaction Log,Previous Hash,ယခင် Hash DocType: Notification,Value Changed,value ကိုပြောင်းလဲ DocType: Report,Report Type,အစီရင်ခံစာအမျိုးအစား @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,စွမ်းအင်ဝန် apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,လူမှုရေးရဲ့ login enabled မီလိုင်း ID ကိုရိုက်ထည့်ပေးပါ DocType: Communication,Has Attachment,နှောင်ကြိုးများကိုရှိပါတယ် DocType: User,Email Signature,အီးမေးလ်ပို့ရန်ထိုးမြဲလက်မှတ် -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} တစ်နှစ် (s) ကိုလွန်ခဲ့သည့် ,Addresses And Contacts,လိပ်စာနှင့်ဆက်သွယ်ရန် apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,ဤသည် Kanban ဘုတ်အဖွဲ့ပုဂ္ဂလိကဖြစ်လိမ့်မည် DocType: Data Migration Run,Current Mapping,လက်ရှိမြေပုံ @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","သင်တို့ရှိသမျှသည်အဖြစ် Sync ကို Option ကိုရွေးချယ်ခြင်းဖြစ်ကြောင်း, ဒါဟာအားလုံးကိုဖတ်အဖြစ် server မှမဖတ်ရသေးသောသတင်းစကား \ ပြန်ဆင့်ခ်လုပ်နေသည်ပါလိမ့်မယ်။ ဤသည်ကိုလည်းဆက်သွယ်ရေး (အီးမေးလ်များ) ၏ပုံတူ \ ဖြစ်ပေါ်စေနိုင်ပါတယ်။" apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},နောက်ဆုံး {0} တစ်ပြိုင်တည်းချိန်ကိုက် apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,ခေါင်းစဉ်အကြောင်းအရာမပြောင်းနိုင်သလား +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,တင်သွင်းခဲ့တဲ့ပြီးနောက် {0} ကိုပြောင်းလဲခွင့်မပြု apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","အဆိုပါလျှောက်လွှာအသစ်တခုဗားရှင်း update လုပ်ထားပြီး, ဒီစာမျက်နှာ refresh ကျေးဇူးပြုပြီး" DocType: User,User Image,အသုံးပြုသူကို Image @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},{0} apps/frappe/frappe/public/js/frappe/chat.js,Discard,စွန့်ပစ် DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,အကောင်းဆုံးရလဒ်တွေကိုတစ်ပွင့်လင်းနောက်ခံနှင့်အတူခန့်အကျယ် 150px ၏ပုံရိပ်တစ်ခုရွေးချယ်ပါ။ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,ပြန်ရောက်သွားတယ် +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,ရှေးခယျြထား {0} တန်ဖိုးများ DocType: Blog Post,Email Sent,အီးမေးလ်ပို့ရန် Sent DocType: Communication,Read by Recipient On,တွင်လက်ခံသူများက Read DocType: User,Allow user to login only after this hour (0-24),(0-24) အသုံးပြုသူသာဒီနာရီအကြာတွင် login မှ Allow @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,ပို့ကုန်မှ module DocType: DocType,Fields,လယ်ကွင်းများ -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,သငျသညျဤစာရွက်စာတမ်း print ထုတ်ခွင့်ပြုခဲ့ကြသည်မဟုတ် +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,သငျသညျဤစာရွက်စာတမ်း print ထုတ်ခွင့်ပြုခဲ့ကြသည်မဟုတ် apps/frappe/frappe/public/js/frappe/model/model.js,Parent,မိဘ apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","သင့်ရဲ့ session ကိုသက်တမ်းကုန်သွားပြီ, ဆက်လက်တဖန် login ပါ။" DocType: Assignment Rule,Priority,ဦးစားပေး @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,OTP လျှိ DocType: DocType,UPPER CASE,စာလုံးကြီး apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,အီးမေးလ်လိပ်စာသတ်မှတ်ပေးပါ DocType: Communication,Marked As Spam,စပမ်အဖြစ်မှတ် +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,အဘယ်သူ၏ Google အဆက်အသွယ်တစ်ပြိုင်တည်းချိန်ကိုက်ခံရဖို့ရှိပါတယ် Email လိပ်စာ။ apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,သွင်းကုန်စာရင်းပေးသွင်းထားသူများ apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Filter ကို Save DocType: Address,Preferred Shipping Address,ကြိုက်သောသင်္ဘောလိပ်စာ DocType: GCalendar Account,The name that will appear in Google Calendar,Google ကပြက္ခဒိန်၌ထင်ရှားလတံ့သောအမည်ဖြင့် +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Refresh တိုကင်ထုတ်လုပ်ဖို့ {0} ပေါ်တွင်ကလစ်နှိပ်ပါ။ DocType: Email Account,Disable SMTP server authentication,SMTP server ကိုစစ်မှန်ကြောင်းအထောက်အထားပြသခြင်းကို Disable DocType: Email Account,Total number of emails to sync in initial sync process ,ကနဦးထပ်တူပြုခြင်းဖြစ်စဉ်တွင်တစ်ပြိုင်တည်းချိန်ကိုက်ရန်အီးမေးလ်များစုစုပေါင်းအရေအတွက် DocType: System Settings,Enable Password Policy,Password ကိုပေါ်လစီ Enable @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Insert Code ကို apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,မပေးမှာတော့ DocType: Auto Repeat,Start Date,စတင်သည့်ရက်စွဲ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Set ဇယား +DocType: Website Theme,Theme JSON,theme JSON apps/frappe/frappe/www/list.py,My Account,ငါ့အကောင့် DocType: DocType,Is Published Field,ဖျော်ဖြေမှု Published ဖြစ်ပါတယ် DocType: DocField,Set non-standard precision for a Float or Currency field,တစ်ဦး Float သို့မဟုတ်ငွေကြေးလယ်ကွင်းများအတွက် Non-စံတိကျစွာ Set @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} စာရွက်စာတမ်းရည်ညွှန်းပေးပို့ဖို့ DocType: LDAP Settings,LDAP First Name Field,LDAP ပထမအမည်ဖျော်ဖြေမှု apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,default ပေးပို့ခြင်းနှင့် Inbox ထဲမှာ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup ကို> Customize Form ကို apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.","အပ်ဒိတ်မလုပ်ဘို့, သင်သာရွေးချယ်ကော်လံကို update နိုင်ပါတယ်။" apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',လယ်ကွင်း၏ '' Check '' type ကို '0' သို့မဟုတ် '1' 'တစ်ခုခုကိုသူဖြစ်ရမည်များအတွက် default apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,အတူဤစာရွက်စာတမ်း Share @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,domains က HTML DocType: Blog Settings,Blog Settings,ဘလော့ Settings များ apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DOCTYPE ရဲ့နာမညျကိုစာတစ်စောင်နဲ့အတူစတင်သင့်ကြောင့်သာစာလုံး, ဂဏန်း, နေရာများနှင့် underscores ရှိရေးနိုင်ပါတယ်" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup ကို> အသုံးပြုသူခွင့်ပြုချက်များ DocType: Communication,Integrations can use this field to set email delivery status,Integrated ကိုအီးမေးလ်ပေးပို့ status ကိုသတ်မှတ်ထားရန်ဤလယ်ကွင်းကိုသုံးနိုင်သည် apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,အစင်းငွေပေးချေမှုတံခါးပေါက် settings ကို DocType: Print Settings,Fonts,fonts DocType: Notification,Channel,channel DocType: Communication,Opened,ဖွင့်လှစ် DocType: Workflow Transition,Conditions,အခြေအနေများ +apps/frappe/frappe/config/website.py,A user who posts blogs.,ဘလော့ဂ်များရေးသားသူကိုအသုံးပြုသူတစ်ဦး။ apps/frappe/frappe/www/login.html,Don't have an account? Sign up,အကောင့်တစ်ခုရှိသည်မဟုတ်လော ဆိုင်းအပ် apps/frappe/frappe/utils/file_manager.py,Added {0},Added {0} DocType: Newsletter,Create and Send Newsletters,သတင်းလွှာများ ဖန်တီး. Send DocType: Website Settings,Footer Items,footer ပစ္စည်းများ +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Setup ကို> အီးမေးလ်> အီးမေးလ်အကောင့်ကနေ ကျေးဇူးပြု. setup ကို default အနေနဲ့အီးမေးလ်အကောင့်ကို DocType: Website Slideshow Item,Website Slideshow Item,ဝဘ်ဆိုဒ်လိုက်ရှိုး Item apps/frappe/frappe/config/integrations.py,Register OAuth Client App,မှတ်ပုံတင်မည် OAuth လိုင်း App ကို DocType: Error Snapshot,Frames,frames @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","level 0 င်သောလယ်အဆင့်ကိုခွင့်ပြုချက်များအတွက်အဆင့်မြင့် \, စာရွက်စာတမ်းအဆင့်အထိခွင့်ပြုချက်အဘို့ဖြစ်၏။" DocType: Address,City/Town,မြို့တော် / မြို့ DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","ဒါဟာသင့်ရဲ့လက်ရှိဆောင်ပုဒ်ကို reset မည်, သငျသညျကိုဆက်လက်သင်သေချာပြီလားရှိပါသလဲ" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},{0} အတွက်လိုအပ်သည့်မသင်မနေရလယ်ကွင်း apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},{0} အကောင့်အီးမေးလ်ကိုဆက်သွယ်နေစဉ်အမှား apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,ထပ်တလဲလဲကိုစဉ်တွင်အမှားတစ်ခုဖြစ်ပေါ်နေပါသည် @@ -528,7 +537,7 @@ DocType: Event,Event Category,အဖြစ်အပျက် Category: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,အပေါ်အခြေခံပြီးကော်လံ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Edit ကိုဦးခေါင်း DocType: Communication,Received,Received -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,သင်ဤစာမျက်နှာဝင်ရောက်ဖို့ခွင့်ပြုမထားပေ။ +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,သင်ဤစာမျက်နှာဝင်ရောက်ဖို့ခွင့်ပြုမထားပေ။ DocType: User Social Login,User Social Login,အသုံးပြုသူလူမှုဝင်မည် apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,ဒီကယ်တင်ခြင်းသို့ရောက်ကြသည်အဘယ်မှာရှိတူညီတဲ့ folder ထဲမှာတစ်ဦး Python ကိုဖိုင်ကိုရေးရန်နှင့်ကော်လံများနှင့်ရလဒ်ပြန်သွားပါ။ DocType: Contact,Purchase Manager,အရစ်ကျ Manager ကို @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,ဇ apps/frappe/frappe/utils/data.py,Operator must be one of {0},အော်ပရေတာ {0} တဦးဖြစ်ရပါမည် apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,ပိုင်ရှင်ပါလျှင် DocType: Data Migration Run,Trigger Name,ခလုတ်အမည် -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,သင့်ရဲ့ Blog ကိုမှခေါင်းစဉ်နဲ့နိဒါနျးရေးပါ။ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,ဖျော်ဖြေမှု Remove apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,အားလုံးခေါက်သိမ်းရန် apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,နောက်ခံအရောင် @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,ဘား DocType: SMS Settings,Enter url parameter for message,မက်ဆေ့ခ်ျကိုများအတွက် url ကို parameter သည် Enter apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,နယူးစိတ်တိုင်းကျပုံနှိပ်ပါစီစဉ်ဖွဲ့စည်းမှုပုံစံ apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} ပြီးသားတည်ရှိ +DocType: Workflow Document State,Is Optional State,မလုပ်မဖြစ်နိုင်ငံတော်ဖြစ်ပါသည် DocType: Address,Purchase User,ဝယ်ယူအသုံးပြုသူ DocType: Data Migration Run,Insert,ထည့်သွင်း DocType: Web Form,Route to Success Link,အောင်မြင်မှု Link ကိုမှလမ်းကြောင်း @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,usernam DocType: File,Is Home Folder,မူလစာမျက်နှာ Folder ကို Is apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,အမျိုးအစား: DocType: Post,Is Pinned,Pinned ဖြစ်ပါတယ် -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},ရန် '' {0} '{1} ခွင့်ပြုချက်မရှိ +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},ရန် '' {0} '{1} ခွင့်ပြုချက်မရှိ DocType: Patch Log,Patch Log,patch Log in ဝင်ရန် DocType: Print Format,Print Format Builder,ပုံနှိပ်ပါ Format ကို Builder 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","enabled ရှိလျှင်, အားလုံးအသုံးပြုသူများသည်နှစ်ဦး Factor Auth ကိုအသုံးပြုပြီးမည်သည့် IP Address ကိုကနေ login နိုင်ပါတယ်။ ဤသည်ကိုလည်းအသုံးပြုသူစာမျက်နှာများတွင်သာသတ်သတ်မှတ်မှတ်အသုံးပြုသူ (s) ကိုအဘို့သတ်မှတ်နိုင်ပါသည်" apps/frappe/frappe/utils/data.py,only.,သာ။ apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,အဆိုပါအခြေအနေ '' {0} 'မမှန်ကန် DocType: Auto Email Report,Day of Week,အပတ်၏နေ့ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Google က Settings များအတွက် Google က API ကို Enable လုပ်ထားပါ။ DocType: DocField,Text Editor,စာသားမ Editor ကို apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,ဖြတ် apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,command တစ်ခုရှာရန်သို့မဟုတ်ရိုက်ထည့် @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,DB Backup တွေကိုအရေအတွက် 1 ထက်လျော့နည်းမဖွစျနိုငျ DocType: Workflow State,ban-circle,ပိတ်ပင်ထားမှု-စက်ဝိုင်း DocType: Data Export,Excel,Excel +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","header, breadcrumbs နှင့် Meta Tags:" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,မသတ်မှတ်ရသေးပါပံ့ပိုးမှုအီးမေးလ်လိပ်စာ DocType: Comment,Published,Published DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.",မှတ်ချက်: အကောင်းဆုံးရလဒ်များကိုများအတွက်ပုံရိပ်တွေအတူတူပင်အရွယ်အစားနှင့်အကျယ်၏ဖြစ်ရမည်အမြင့်ထက် သာ. ကြီးမြတ်ဖြစ်ရပါမည်။ @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Scheduler ကိုနောက် apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,အားလုံးစာရွက်စာတမ်းရှယ်ယာအစီရင်ခံစာ DocType: Website Sidebar Item,Website Sidebar Item,ဝက်ဘ်ဆိုက် Sidebar Item apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,လုပ်ရန် +DocType: Google Settings,Google Settings,Google ဆက်တင်များ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","သင့်ရဲ့နိုင်ငံ, အချိန်ဇုန်နှင့်ငွေကြေးစနစ်ကို Select လုပ်ပါ" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","ဒီနေရာမှာငြိမ် url parameters များကိုရိုက်ထည့်ပါ (ဥပမာ။ ပေးပို့သူ = ERPNext, အသုံးပြုသူအမည် = ERPNext, စကားဝှက် = 1234 etc)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,အဘယ်သူမျှမအီးမေးလ်အကောင့်ကို @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer တိုကင် ,Setup Wizard,Setup Wizard ' apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,ခလုတ်ဇယား +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,တစ်ပြိုင်တည်းချိန်ကိုက်ခြင်း DocType: Data Migration Run,Current Mapping Action,လက်ရှိမြေပုံလှုပ်ရှားမှု DocType: Email Account,Initial Sync Count,ကနဦး Sync ကိုအရေအတွက် apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,ကြှနျုပျတို့ကိုဆကျသှယျရနျစာမျက်နှာအတွက်ဆက်တင်များ။ @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,ပုံနှိပ်ပါစီစဉ်ဖွဲ့စည်းမှုပုံစံအမျိုးအစား apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,အဘယ်သူမျှမခွင့်ပြုချက်များကဤစံနှုန်းများသတ်မှတ်ထားသည်။ apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,အားလုံး Expand +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,မျှမတွေ့ default အနေနဲ့လိပ်စာ Template ။ Setup ကို> ပုံနှိပ်ခြင်းနှင့်တံဆိပ်တပ်> လိပ်စာ Template ကနေအသစ်တခုဖန်တီးပေးပါ။ DocType: Tag Doc Category,Tag Doc Category,Tag ကို Doc Category: DocType: Data Import,Generated File,generated ဖိုင်မှတ်တမ်း apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,မှတ်စုများ @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Timeline ကိုလယ် Link ကိုသို့မဟုတ် Dynamic Link ကိုသူဖြစ်ရမည် DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,အသိပေးချက်များနှင့်အမြောက်အများမေးလ်ကဒီအထွက် server မှစလှေတျတျောလိမ့်မည်။ apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,ဒါကထိပ်တန်း-100 ဘုံစကားဝှက်ဖြစ်ပါတယ်။ -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,အမြဲတမ်း {0} Submit? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,အမြဲတမ်း {0} Submit? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} ပေါင်းစည်းရန်, တည်ရှိနေသစ်တစ်ခုပစ်မှတ်ကို select ပါဘူး" DocType: Energy Point Rule,Multiplier Field,မြှောက်ကိန်းဖျော်ဖြေမှု DocType: Workflow,Workflow State Field,လုပ်ငန်းအသွားအလာပြည်နယ်ကွင်းဆင်း @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} {2} အချက်များနှင့်အတူ {1} ပေါ်တွင်သင်၏အလုပ်တန်ဖိုးထား DocType: Auto Email Report,Zero means send records updated at anytime,သုညအချိန်မရွေး updated မှတ်တမ်းများပေးပို့ဆိုလိုတယ် apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Value ကို {0} ဘို့မပြောင်းနိုင်ပါ +apps/frappe/frappe/config/integrations.py,Google API Settings.,Google က API ကိုချိန်ညှိမှုများ။ DocType: System Settings,Force User to Reset Password,Password ကို Reset လုပ်ဖို့အသုံးပြုသူအတင်း apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,အစီရင်ခံစာ Builder အစီရင်ခံစာများအစီရင်ခံစာဆောက်ခြင်းဖြင့်တိုက်ရိုက်စီမံခန့်ခွဲရသည်။ လုပ်ဖို့အဘယ်အရာကိုမျှ။ apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Edit ကို Filter ကို @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,အ DocType: S3 Backup Settings,eu-north-1,EU-မြောက်ဘက်-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: သာလျှင်တဦးတည်းအတူတူအခန်းက္ပနှင့်အတူခွင့်ပြုအုပ်စိုးမှု, အဆင့်နှင့် {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,သင်ဤ Web ကို Form ကိုစာရွက်စာတမ်း update လုပ်ဖို့ခွင့်ပြုခဲ့ကြသည်မဟုတ် -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,ဤမှတ်တမ်းများအတွက်အများဆုံးနှောင်ကြိုးများကိုကန့်သတ်ရောက်ရှိခဲ့သည်။ +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,ဤမှတ်တမ်းများအတွက်အများဆုံးနှောင်ကြိုးများကိုကန့်သတ်ရောက်ရှိခဲ့သည်။ apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,အဆိုပါကိုးကားစရာဆက်သွယ်ရေး Docs circularly နှင့်ဆက်စပ်ကြသည်မဟုတ်သေချာအောင်ပေးပါ။ DocType: DocField,Allow in Quick Entry,လျင်မြန်စွာ Entry အတွက် Allow DocType: Error Snapshot,Locals,ဒေသခံတွေ @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,ခြွင်းချက်အမျိုးအစား apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},{0} {1} {2} {3} {4} နှင့်အတူဆက်နွယ်နေသည်ကို ထောက်. delete သို့မဟုတ်မပယ်ဖျက်နိုင် apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTP လျှို့ဝှက်ချက်ကိုသာအုပ်ချုပ်ရေးမှူးအားဖြင့် reset နိုင်ပါသည်။ -DocType: Web Form Field,Page Break,စာမျက်နှာလူငယ်များသို့ DocType: Website Script,Website Script,ဝက်ဘ်ဆိုက် Script DocType: Integration Request,Subscription Notification,subscription သတိပေးချက် DocType: DocType,Quick Entry,quick Entry ' @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,အချက်ပေးပြီ apps/frappe/frappe/__init__.py,Thank you,ကျေးဇူးတင်ပါတယ် apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,ပြည်တွင်းရေးပေါင်းစည်းမှုများအတွက်လျှော့ Webhooks apps/frappe/frappe/config/settings.py,Import Data,သွင်းကုန်ဒေတာများ +DocType: Translation,Contributed Translation Doctype Name,ဘာသာပြန်ခြင်း DOCTYPE အမည်လှူဒါန်းခဲ့ DocType: Social Login Key,Office 365,Office 365 ကို apps/frappe/frappe/desk/report/todo/todo.py,ID,ID ကို DocType: Review Level,Review Level,ဆန်းစစ်ခြင်းအဆင့် @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,အောင်မြင်စွာ Done apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} စာရင်း apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,လေးမွတျ -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),နယူး {0} (Ctrl + B) မှ DocType: Contact,Is Primary Contact,မူလတန်းဆက်သွယ်ရန်ဖြစ်ပါသည် DocType: Print Format,Raw Commands,ကုန်ကြမ်း Commands apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,ပုံနှိပ်ပါ Formats အဘို့ကို Stylesheets @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,နောက်ခ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},{0} {1} အတွက်ရှာပါ DocType: Email Account,Use SSL,SSL ကိုသုံးပါ DocType: DocField,In Standard Filter,စံ Filter ကိုခုနှစ်တွင် +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,ထပ်တူပြုခြင်းမှပစ္စုပ္ပန်မျှမက Google ဆက်သွယ်ရန်။ DocType: Data Migration Run,Total Pages,စုစုပေါင်းစာမျက်နှာများ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: က Non-ထူးခြားသောတန်ဖိုးများရှိပါတယ်အဖြစ်ကွင်းဆင်း '' {1} 'ထူးခြားသောအဖြစ်သတ်မှတ်ထားမရနိုင် DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","enabled လျှင်, အသုံးပြုသူသူတို့ login အခါတိုင်းအကြောင်းကြားပါလိမ့်မည်။ ဖွင့်မလျှင်, အသုံးပြုသူတစ်ခါသာအကြောင်းကြားပါလိမ့်မည်။" @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,အလိုအလြောကျစကျ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Unzipping ဖိုင်တွေ ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}','' {0} 'ရှာရန် apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,တစ်ခုခုမှားသွားတယ် -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,ပူးတွဲမတိုင်မီကယ်တင်ပေးပါ။ +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,ပူးတွဲမတိုင်မီကယ်တင်ပေးပါ။ DocType: Version,Table HTML,စားပွဲတင်က HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,အချက်အချာ DocType: Page,Standard,စံ @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,အဘယ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,ဖျက်ပစ် {0} မှတ်တမ်းများ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,dropbox access ကိုတိုကင်ကိုထုတ်လုပ်နေစဉ်တစ်စုံတစ်ခုမှားယွင်းခဲ့သည်။ အသေးစိတ်ကိုအမှားမှတ်တမ်းစစ်ဆေးပါ။ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,၏သားစဉ်မြေးဆက် -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,မျှမတွေ့ default အနေနဲ့လိပ်စာ Template ။ Setup ကို> ပုံနှိပ်ခြင်းနှင့်တံဆိပ်တပ်> လိပ်စာ Template ကနေအသစ်တခုဖန်တီးပေးပါ။ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google အဆက်အသွယ် configured ခဲ့တာဖြစ်ပါတယ်။ apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,အသေးစိတ်ကို Hide apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,font Styles apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,သင့်စာရင်းပေးသွင်းထား {0} အပေါ်သက်တမ်းကုန်ဆုံးမည်ဖြစ်သည်။ apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},အီးမေးလ်အကောင့် {0} ကနေအီးမေးလ်များကိုလက်ခံရရှိစဉ် authentication မအောင်မြင်ခဲ့ပေ။ server ကနေစာ: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),ပြီးခဲ့သည့်အပတ်ကရဲ့စွမ်းဆောင်ရည်အပေါ်အခြေခံပြီး stats ({0} ကနေ {1} မှ) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,အလိုအလျောက်ချိတ်ဆက်ခြင်းဝင်လာသော enabled သာလျှင် activated နိုင်ပါသည်။ DocType: Website Settings,Title Prefix,ခေါင်းစဉ်ရှေ့စာလုံး apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,သငျသညျကိုသုံးနိုင်သည် authentication Apps ကပနေသောခေါင်းစဉ်: DocType: Bulk Update,Max 500 records at a time,တစ်ကြိမ် max 500 မှတ်တမ်းများ @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,အစီရင်ခံစာစိ apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,ကော်လံများကို Select လုပ်ပါ DocType: Event,Participants,သင်တန်းသားများကို DocType: Auto Repeat,Amended From,မှစ. ပြင်ဆင် -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,သင့်ရဲ့အချက်အလက်တွေကိုတင်ပြပြီးပါပြီ +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,သင့်ရဲ့အချက်အလက်တွေကိုတင်ပြပြီးပါပြီ DocType: Help Category,Help Category,အကူအညီ Category: apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 လ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,အသစ်တစ်ခုကို format ကိုတည်းဖြတ်သို့မဟုတ်စတင်ရန်ရှိပြီးသားပုံစံကိုရွေးချယ်ပါ။ @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,ခြေရာခံဖို့ကွင်းဆင်း DocType: User,Generate Keys,သော့ချက်များ Generate DocType: Comment,Unshared,မျှဝေမ -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,သိမ်းဆည်း +DocType: Translation,Saved,သိမ်းဆည်း DocType: OAuth Client,OAuth Client,OAuth လိုင်း DocType: System Settings,Disable Standard Email Footer,စံအီးမေးလ် Footer ကို Disable apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,ပုံနှိပ်ပါစီစဉ်ဖွဲ့စည်းမှုပုံစံ {0} ကိုပိတ်ထား @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,နောက DocType: Data Import,Action,လှုပ်ရှားမှု apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,client key ကိုလိုအပ်ပါသည် DocType: Chat Profile,Notifications,အသိပေးချက်များ +DocType: Translation,Contributed,လှူဒါန်းခဲ့ DocType: System Settings,mm/dd/yyyy,မီလီမီတာ / dd / yyyy DocType: Report,Custom Report,custom အစီရင်ခံစာ DocType: Workflow State,info-sign,အင်ဖို-နိမိတ်လက္ခဏာ @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,ထိတှေ့ DocType: LDAP Settings,LDAP Username Field,LDAP အသုံးပြုသူအမည်ဖျော်ဖြေမှု apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",Non-ထူးခြားသောလက်ရှိတန်ဖိုးများရှိပါတယ်အဖြစ် {0} လယ်ကွင်း {1} အတွက်ထူးခြားတဲ့အဖြစ်သတ်မှတ်ထားမရနိုင် +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup ကို> Customize Form ကို DocType: User,Social Logins,လူမှု login DocType: Workflow State,Trash,အသုံးမရသောအရာ DocType: Stripe Settings,Secret Key,လျှို့ဝှက် Key ကို @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,ခေါင်းစဉ်ဖျော်ဖြေ apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,အထွက်အီးမေးလ်ဆာဗာမှချိတ်ဆက်မရပါ DocType: File,File URL,file ကို URL ကို DocType: Help Article,Likes,အကြိုက်များ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google အဆက်အသွယ်ပေါင်းစည်းရေးကိုပိတ်ထားသည်။ apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,သင်၌ logged ခံရဖို့လိုအပ်ပါတယ်နှင့်စနစ် Manager ကိုအခန်းက္ပ Backup တွေကိုရယူနိုင်တော့မည်ရန်ရှိသည်။ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,ပထမဦးစွာအဆင့် DocType: Blogger,Short Name,နာမည်အတိုကောက် @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,သွင်းကုန်ဇစ် DocType: Contact,Gender,"ကျား, မ" DocType: Workflow State,thumbs-down,လက်မ-Down -DocType: Web Page,SEO,SEO ဆိုသည်မှာ apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},တန်းစီ {0} ၏တဦးတည်းဖြစ်သင့်တယ် apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},စာရွက်စာတမ်းအမျိုးအစား {0} အပေါ်သတိပေးချက်မသတ်မှတ်နိုင်ပါ apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,atleast တဦးတည်းစနစ် Manager ကအဲဒီမှာသူဖြစ်ရမည်အတိုင်းဤအသုံးပြုသူမှ System ကို Manager ကိုထည့်သွင်းခြင်း apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,ကြိုဆိုပါတယ်ကိုအီးမေးလ်ပို့ DocType: Transaction Log,Chaining Hash,Chaining Hash DocType: Contact,Maintenance Manager,ပြုပြင်ထိန်းသိမ်းရေးမန်နေဂျာ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","နှိုင်းယှဉ်မှုအတွက်> 5, <10 သို့မဟုတ် = 324 အသုံးပြုခြင်း။ အပိုင်းအခြားများအတွက်, (5 & 10 အကြားတန်ဖိုးများကိုများအတွက်) 5:10 သုံးပါ။" apps/frappe/frappe/utils/bot.py,show,ပြသ apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,ဝေမျှမယ် URL ကို apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,မကိုက်ညီသည့် File Format @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,သတိပေးချက် DocType: Data Import,Show only errors,သာအမှားများကိုပြရန် DocType: Energy Point Log,Review,ဆန်းစစ်ခြင်း apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,ဖယ်ရှားပြီးအတန်း -DocType: GSuite Settings,Google Credentials,Google ကသံတမန်ဆောင်ဧည် +DocType: Google Settings,Google Credentials,Google ကသံတမန်ဆောင်ဧည် apps/frappe/frappe/www/login.html,Or login with,သို့မဟုတ်နှင့်အတူ login apps/frappe/frappe/model/document.py,Record does not exist,စံချိန်မတည်ရှိပါဘူး apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,နယူးအစီရင်ခံစာအမည်ဖြင့် @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,စာရင်း DocType: Workflow State,th-large,ကြိမ်မြောက်-ကြီးမားသော apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: တင်ပြသူမဟုတ်ပါလျှင် Assign Submit မသတ်မှတ်နိုင်ပါ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,မည်သည့်စံချိန်တင်ဖို့လင့်ခ်လုပ်ထားသောမဟုတ် +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZ Tray ထဲမှာလျှောက်လွှာချိတ်ဆက်မှုမှားယွင်းနေ ...

သင်ကရော်ပုံနှိပ်ပါအင်္ဂါရပ်ကိုအသုံးပြုရန်, QZ Tray ထဲက application ကို install လုပ်ပြီးသားနှင့်ပြေးရှိသည်ဖို့လိုအပ်ပါတယ်။

QZ Tray ထဲက Download လုပ်ပြီး install ဒီမှာနှိပ်ပါ
ရော်ပုံနှိပ်အကြောင်းပိုမိုလေ့လာသင်ယူရန်ဒီနေရာကိုနှိပ်ပါ ။" DocType: Chat Message,Content,အကြောင်းအရာ DocType: Workflow Transition,Allow Self Approval,ကိုယ်ပိုင်အတည်ပြုချက် Allow apps/frappe/frappe/www/qrcode.py,Page has expired!,စာမျက်နှာကုန်ဆုံးခဲ့သည်! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,လက်ညာ DocType: Website Settings,Banner is above the Top Menu Bar.,နဖူးစည်းစာတန်းထိပ်တန်း Menu ကိုဘားအထက်ဖြစ်ပါတယ်။ apps/frappe/frappe/www/update-password.html,Invalid Password,မှားနေသော Password ကို apps/frappe/frappe/utils/data.py,1 month ago,1 လအကြာက +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Google အဆက်အသွယ် Access ကို Allow DocType: OAuth Client,App Client ID,App ကိုလိုင်း ID ကို DocType: DocField,Currency,ငွေကြေးစနစ် DocType: Website Settings,Banner,နဖူးစည်းစာတမ်း @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,ရည်မှန်းချက် DocType: Print Style,CSS,CSS ကို apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","တစ်ဦးအခန်းက္ပအဆင့် 0 မှာအသုံးပြုခွင့်ရှိသည်မပါဘူးဆိုရင်, ထို့နောက်အဆင့်မြင့်အနတ္တဖြစ်ကြ၏။" DocType: ToDo,Reference Type,ကိုးကားစရာအမျိုးအစား -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DOCTYPE, DOCTYPE ခွင့်ပြုခြင်း။ သတိထားပါ!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","DOCTYPE, DOCTYPE ခွင့်ပြုခြင်း။ သတိထားပါ!" DocType: Domain Settings,Domain Settings,ဒိုမိန်းက Settings DocType: Auto Email Report,Dynamic Report Filters,dynamic အစီရင်ခံစာစိစစ်မှုများ DocType: Energy Point Log,Appreciation,ကြေးဇူးတငျကွောငျး @@ -1468,6 +1489,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,ကျွန်တော်တို့ကို-အနောက်ဘက်-2 DocType: DocType,Is Single,လူပျို Is apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,တစ်ဦးက New Format ကိုဖန်တီးပါ +DocType: Google Contacts,Authorize Google Contacts Access,Google အဆက်အသွယ် Access ကိုခွင့်ပြုရန် DocType: S3 Backup Settings,Endpoint URL,အဆုံးမှတ် URL ကို DocType: Social Login Key,Google,Google က DocType: Contact,Department,ဌါန @@ -1482,7 +1504,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,ရန် assign DocType: List Filter,List Filter,စာရင်း Filter ကို DocType: Dashboard Chart Link,Chart,ဇယား apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Remove မပေးနိုင်သလား -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,အတည်ပြုပေးရန်ဤစာရွက်စာတမ်း Submit +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,အတည်ပြုပေးရန်ဤစာရွက်စာတမ်း Submit apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} ရှိပြီးဖြစ်သည်။ အခြားအမည်တစ်ခုကိုရွေးချယ်ပါ apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,သငျသညျဤပုံစံအတွက်မသိမ်းရသေးသောအပြောင်းအလဲများရှိသည်။ သငျသညျကိုဆက်လက်မတိုင်မီကယ်တင်ပေးပါ။ apps/frappe/frappe/model/document.py,Action Failed,လှုပ်ရှားမှု Failed @@ -1564,6 +1586,7 @@ DocType: DocField,Display,ပြသ apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,အားလုံး Reply DocType: Calendar View,Subject Field,ဘာသာရပ်ဖျော်ဖြေမှု apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},session Expiry format နဲ့ {0} အတွက်ဖြစ်ရပါမည် +apps/frappe/frappe/model/workflow.py,Applying: {0},လျှောက်ထားခြင်း: {0} DocType: Workflow State,zoom-in,zoom ကို-in ကို apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,ဆာဗာချိတ်ဆက်ရန်မအောင်မြင်ခဲ့ပါ apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},နေ့စွဲ {0} format နဲ့သူဖြစ်ရမည်: {1} @@ -1575,8 +1598,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,အိုင်ကွန်ခလုတ်ကိုပေါ်တွင်ပေါ်လာပါလိမ့်မယ် DocType: Role Permission for Page and Report,Set Role For,သည် set အခန်းက္ပ +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,အလိုအလျောက်ချိတ်ဆက်ခြင်းတစ်ဦးတည်းသာအီးမေးလ်အကောင့်အတွက် activated နိုင်ပါသည်။ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Assigned အဘယ်သူမျှမအီးမေးလ်အကောင့် +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,အီးမေးလ်အကောင့်မပေး setup ကို။ Setup ကို> အီးမေးလ်> အီးမေးလ်အကောင့်ကနေအသစ်တခုအီးမေးလ်အကောင့်ကိုဖန်တီးပေးပါ apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,တာဝန်ကျတဲ့နေရာ +DocType: Google Contacts,Last Sync On,နောက်ဆုံး Sync ကိုတွင် apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},အော်တိုအုပ်ချုပ်မှုကိုမှတဆင့် {0} အားဖြင့်ရရှိခဲ့ {1} apps/frappe/frappe/config/website.py,Portal,portal apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,သင့်အီးမေးလ်အတွက်ကျေးဇူးတင်ပါသည် @@ -1597,7 +1623,6 @@ DocType: GSuite Settings,GSuite Settings,GSuite Settings များ DocType: Integration Request,Remote,ဝေးလံသော DocType: File,Thumbnail URL,thumbnail URL ကို apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,ဒေါင်းလုပ်အစီရင်ခံစာ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup ကို> အသုံးပြုသူ apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},တင်ပို့ {0} များအတွက် Custom:
{1} DocType: GCalendar Account,Calendar Name,ပြက္ခဒိန်အမည် apps/frappe/frappe/templates/emails/new_user.html,Your login id is,သင်၏ login အိုင်ဒီဖြစ်ပါသည် @@ -1647,6 +1672,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},{0} apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Image ကိုလယ်ပြင်ခိုင်လုံသော fieldname ဖြစ်ရမည် apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,သင်ဤစာမကျြနှာကိုဝင်ရောက်ဖို့အတွက် logged ခံရဖို့လိုအပ် DocType: Assignment Rule,Example: {{ subject }},ဥပမာ: {{ဘာသာရပ်}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Fieldname {0} ကန့်သတ်တာဖြစ်ပါတယ် apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},သငျသညျအားမသတ်မှတ်ထားမပြုနိုင် {0} လယ်ကွင်းများအတွက် '' သာလျှင် Read '' DocType: Social Login Key,Enable Social Login,လူမှုဝင်မည် Enable DocType: Workflow,Rules defining transition of state in the workflow.,အဆိုပါလုပ်ငန်းအသွားအလာအတွက်ပြည်နယ်၏အကူးအပြောင်း defining စည်းကမ်းများ။ @@ -1667,10 +1693,10 @@ DocType: Website Settings,Route Redirects,လမ်းကြောင်းပ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,အီးမေးလ်ပို့ရန် Inbox ထဲမှာ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},{0} {1} အဖြစ်ပွနျလညျထူထောငျ DocType: Assignment Rule,Automatically Assign Documents to Users,အသုံးပြုသူများမှစာရွက်စာတမ်းများကိုအလိုအလျောက်သတ်မှတ် +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,ပွင့်လင်း Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,ဘုံမေးမြန်းချက်များအတွက်အီးမေးလ် Templates ကို။ DocType: Letter Head,Letter Head Based On,ပေးစာဌာနမှူးအခြေပြုတွင် apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,ဒီဝင်းဒိုးကိုပိတ်လိုက် ကျေးဇူးပြု. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,ငွေပေးချေမှုရမည့်အပြီးအစီး DocType: Contact,Designation,သတ်မှတ်ရေး DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,meta Tags: @@ -1709,6 +1735,7 @@ DocType: System Settings,Choose authentication method to be used by all users, DocType: Error Snapshot,Parent Error Snapshot,မိဘမှားယွင်းနေသည်လျှပ်တစ်ပြက် DocType: GCalendar Account,GCalendar Account,GCalendar အကောင့် DocType: Language,Language Name,ဘာသာစကားအမည် +DocType: Workflow Document State,Workflow Action is not created for optional states,လုပ်ငန်းအသွားအလာလှုပ်ရှားမှု optional ကိုပြည်နယ်များဖန်တီးသည်မဟုတ် DocType: Customize Form,Customize Form,Form ကို Customize DocType: DocType,Image Field,image ကိုကွင်းဆင်း apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Added {0} ({1}) @@ -1750,6 +1777,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,အသုံးပြုသူဟာပိုင်ရှင်လျှင်ဤနည်းဥပဒေ Apply DocType: About Us Settings,Org History Heading,org သမိုင်းဦးခေါင်းကို apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,ဆာဗာမှားယွင်းမှု +DocType: Contact,Google Contacts Description,Google အဆက်အသွယ်ဖျေါပွခကျြ apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,စံအခန်းကဏ္ဍအမည်ပြောင်းမရနိုင် DocType: Review Level,Review Points,ဆန်းစစ်ခြင်းအမှတ် apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,ပျောက်ဆုံးနေ parameter သည် Kanban ဘုတ်အဖွဲ့အမည် @@ -1767,7 +1795,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,မဟုတ်ရေးသားသူ Mode တွင်! site_config.json အတွက် Set သို့မဟုတ် 'စိတ်တိုင်းကျ' 'DOCTYPE ပါစေ။ apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,ရရှိခဲ့ {0} အချက်များ DocType: Web Form,Success Message,အောင်မြင်မှုကို Message -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","နှိုင်းယှဉ်မှုအတွက်> 5, <10 သို့မဟုတ် = 324 အသုံးပြုခြင်း။ အပိုင်းအခြားများအတွက်, (5 & 10 အကြားတန်ဖိုးများကိုများအတွက်) 5:10 သုံးပါ။" DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","လွင်ပြင်စာသား, လိုင်းများကိုသာစုံတွဲတစ်တွဲအတွက်, စာမျက်နှာစာရင်းများအတွက်ဖော်ပြချက်။ (max ကို 140 ဇာတ်ကောင်)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Show ကိုခွင့်ပြုချက်များ DocType: DocType,Restrict To Domain,ဒိုမိန်းစေရန်ကန့်သတ်ရန် @@ -1789,6 +1816,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,မဘ apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Set အရေအတွက် DocType: Auto Repeat,End Date,အဆုံးနေ့စွဲ DocType: Workflow Transition,Next State,next ကိုပြည်နယ် +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Google အဆက်အသွယ်တစ်ပြိုင်တည်းချိန်ကိုက်။ DocType: System Settings,Is First Startup,ပထမဦးစွာ Startup စာမျက်နှာဖြစ်ပါသည် apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},{0} မှ updated apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,ရန်ရွှေ့ @@ -1838,6 +1866,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} ပြက္ခဒိန် apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,ဒေတာများကိုတင်သွင်း Template ကို DocType: Workflow State,hand-left,လက်-left +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,မျိုးစုံစာရင်းကိုပစ္စည်းများကို Select လုပ်ပါ apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Backup ကို Size: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},{0} နှင့်အတူဆက်နွယ်နေ DocType: Braintree Settings,Private Key,ပုဂ္ဂလိက Key ကို @@ -1880,13 +1909,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,စိတ်ဝင်စားမှု DocType: Bulk Update,Limit,ကန့်သတ် DocType: Print Settings,Print taxes with zero amount,သုညငွေပမာဏနှင့်အတူပုံနှိပ်ပါအခွန်များ -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,အီးမေးလ်အကောင့်မပေး setup ကို။ Setup ကို> အီးမေးလ်> အီးမေးလ်အကောင့်ကနေအသစ်တခုအီးမေးလ်အကောင့်ကိုဖန်တီးပေးပါ DocType: Workflow State,Book,စာအုပ် DocType: S3 Backup Settings,Access Key ID,Access ကိုသော့ ID DocType: Chat Message,URLs,URL များကို apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,သူတို့ကိုယ်သူတို့အားဖြင့်အမည်များနှင့်မျိုးရိုးအမည်ခန့်မှန်းဖို့လွယ်ကူပါတယ်။ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},အစီရင်ခံစာ {0} DocType: About Us Settings,Team Members Heading,ရေးအဖွဲ့အဖွဲ့ဝင်များခေါင်းစီး +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,စာရင်း item ကို Select လုပ် apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},စာရွက်စာတမ်း {0} {2} အားဖြင့်ပြည်နယ် {1} ဟုသတ်မှတ်ထားသည် DocType: Address Template,Address Template,လိပ်စာ Template ကို DocType: Workflow State,step-backward,ခြေလှမ်း-နောက်ပြန် @@ -1910,6 +1939,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,ပို့ကုန်စိတ်တိုင်းကျခွင့်ပြုချက်များ apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,အဘယ်သူမျှမ: အသွားအလာ၏နိဂုံး DocType: Version,Version,ဗားရှင်း +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,ပွင့်လင်းစာရင်းကို item apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 လ DocType: Chat Message,Group,Group မှ apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},ဖိုင်ကို url နှင့်အတူအချို့သောပြဿနာရှိပါတယ်: {0} @@ -1965,6 +1995,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 နှစ် apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} {1} ပေါ်တွင်သင်၏မှတ်သို့ပြောင်း DocType: Workflow State,arrow-down,မြှား-Down DocType: Data Import,Ignore encoding errors,encoding ကအမှားများကိုလျစ်လျူရှုပါ +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,ရှုခင်း DocType: Letter Head,Letter Head Name,ပေးစာဌာနမှူးအမည် DocType: Web Form,Client Script,client Script DocType: Assignment Rule,Higher priority rule will be applied first,ပိုမိုမြင့်မားသောဦးစားပေးစည်းမျဉ်းပထမဦးဆုံးလျှောက်ထားပါလိမ့်မည် @@ -2009,6 +2040,7 @@ DocType: Kanban Board Column,Green,စိမ်းလန်းသော apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,သာမဖြစ်မနေလယ်ကွင်းအသစ်များကိုမှတ်တမ်းများများအတွက်လိုအပ်သောဖြစ်ကြသည်။ သင်ဆန္ဒရှိလျှင်သင်သည် non-မဖြစ်မနေကော်လံကိုဖျက်ပစ်နိုင်ပါတယ်။ apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} ကိုစတင်နှင့်စာတစ်စောင်နှင့်အတူအဆုံးသတ်ရန်နှင့်သာအက္ခရာများဆံ့နိုငျသညျ, တုံးတိုသို့မဟုတ် underscore ရမည်ဖြစ်သည်။" +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,ခလုတ်မူလတန်းလှုပ်ရှားမှု apps/frappe/frappe/core/doctype/user/user.js,Create User Email,အသုံးပြုသူအီးမေးလ် Create apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,စီလယ်ကွင်း {0} ခိုင်လုံသော fieldname ဖြစ်ရမည် DocType: Auto Email Report,Filter Meta,Meta Filter @@ -2038,6 +2070,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,timeline ကိုကွင်းဆင်း apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Loading ... DocType: Auto Email Report,Half Yearly,ဝက်နှစ်အလိုက် +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,အကြှနျုပျ၏ကိုယ်ရေးဖိုင် apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,နောက်ဆုံးပြင်ဆင်ထားသောနေ့စွဲ DocType: Contact,First Name,နာမည် DocType: Post,Comments,မှတ်ချက်များ @@ -2060,6 +2093,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,အကြောင်းအရာ Hash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},{0} ရေးသားချက်များ apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{2}: {0} {1} တာဝန်ပေး +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,အဘယ်သူမျှမသစ်ကို Google ကဆက်သွယ်ရန်တစ်ပြိုင်တည်းချိန်ကိုက်။ DocType: Workflow State,globe,ကမ္ဘာလုံး apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},{0} ၏ပျမ်းမျှ apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Clear ကိုမှားယွင်းနေသည်မှတ်တမ်းများ @@ -2086,6 +2120,8 @@ DocType: Workflow State,Inverse,ပြောင်းပြန် DocType: Activity Log,Closed,ပိတ်သိမ်း DocType: Report,Query,မေးခွန်း DocType: Notification,Days After,ပြီးနောက်နေ့ရက်များ +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,စာမျက်နှာ Shortcuts +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,ပုံတူ apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,အချိန်ကိုတောင်းဆို DocType: System Settings,Email Footer Address,အီးမေးလ်ပို့ရန် Footer လိပ်စာ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,စွမ်းအင်ဝန်ကြီးဌာနအမှတ် update ကို @@ -2113,6 +2149,7 @@ For Select, enter list of Options, each on a new line.","Links များအ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 မိနစ်အကြာက apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,အဘယ်သူမျှမတက်ကြွ Sessions apps/frappe/frappe/model/base_document.py,Row,အတန်း +DocType: Contact,Middle Name,အလယ်နာမည် apps/frappe/frappe/public/js/frappe/request.js,Please try again,ထပ်ကြိုးစားပါ DocType: Dashboard Chart,Chart Options,ဇယား Options ကို DocType: Data Migration Run,Push Failed,မှု Push @@ -2141,6 +2178,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,ဆိုဒ်ပြောင်းရန်-သေးငယ်တဲ့ DocType: Comment,Relinked,Relinked DocType: Role Permission for Page and Report,Roles HTML,အခန်းကဏ္ဍက HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Go ကို apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,လုပ်ငန်းအသွားအလာချွေတာအပြီးမစတင်ပါလိမ့်မယ်။ DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","သင့်ရဲ့ဒေတာကို HTML မှာဖြစ်ပါတယ်လျှင်, tags များနှင့်အတူအတိအကျက HTML ကုဒ် paste ကူးယူပါ။" apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,ရက်စွဲများကိုမကြာခဏခန့်မှန်းဖို့လွယ်ကူပါတယ်။ @@ -2169,7 +2207,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,desktop အိုင်ကွန် apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,ဤစာရွက်စာတမ်းဖျက်သိမ်း apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,နေ့စွဲ Range -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup ကို> အသုံးပြုသူခွင့်ပြုချက်များ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} {1} တန်ဖိုးထား apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Changed တန်ဖိုးများ apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,သတိပေးချက်အတွက်မှားယွင်းနေသည် @@ -2234,6 +2271,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,bulk Delete DocType: DocShare,Document Name,စာရွက်စာတမ်းအမည် apps/frappe/frappe/config/customization.py,Add your own translations,သင့်ကိုယ်ပိုင်ဘာသာ Add +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,down list ကိုသွားလာရန် DocType: S3 Backup Settings,eu-central-1,EU-အလယ်ပိုင်း-1 DocType: Auto Repeat,Yearly,နှစ်အလိုက် apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Rename @@ -2284,6 +2322,7 @@ DocType: Workflow State,plane,လေယာဉ် apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,အသိုက် set ကိုအမှား။ အဆိုပါအုပ်ချုပ်ရေးမှူးကိုဆက်သွယ်ပါ။ apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Show ကိုအစီရင်ခံစာ DocType: Auto Repeat,Auto Repeat Schedule,အော်တိုထပ်ဇယား +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,ကြည့်ရန် Ref DocType: Address,Office,ရုံး DocType: LDAP Settings,StartTLS,STARTTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,လွန်ခဲ့တဲ့ {0} ရက်ပေါင်း @@ -2317,7 +2356,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required, apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,My Settings apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,အဖွဲ့အမည်မှာဗလာမဖြစ်နိုင်ပါ။ DocType: Workflow State,road,လမ်း -DocType: Website Route Redirect,Source,အရင်းအမြစ် +DocType: Contact,Source,အရင်းအမြစ် apps/frappe/frappe/www/third_party_apps.html,Active Sessions,active ကို Sessions apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,တစ်ဦး form မှာတစ်ဦးတည်းသာခေါက်ရှိပါတယ်နိုင်ပါတယ် apps/frappe/frappe/public/js/frappe/chat.js,New Chat,နယူး Chat ကို @@ -2339,6 +2378,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Authorize URL ကိုရိုက်ထည့်ပေးပါ DocType: Email Account,Send Notification to,ရန်သတိပေးချက် Send apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox ကို backup လုပ်ထား settings ကို +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,တစ်ခုခုလက္ခဏာသက်သေမျိုးဆက်စဉ်အတွင်းမှားသွားတယ်။ အသစ်တစ်ခုကိုတဦးတည်းကိုထုတ်လုပ်ဖို့ {0} ပေါ်တွင်ကလစ်နှိပ်ပါ။ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,အားလုံးစိတ်ကြိုက်ဖယ်ရှားမလား? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,သာအုပ်ချုပ်ရေးမှူးတည်းဖြတ်နိုင်သည် DocType: Auto Repeat,Reference Document,ကိုးကားစရာစာရွက်စာတမ်း @@ -2363,6 +2403,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,အခန်းကဏ္ဍဟာသူတို့ရဲ့အသုံးပြုသူစာမျက်နှာကနေအသုံးပြုသူများအတွက်သတ်မှတ်နိုင်ပါသည်။ DocType: Website Settings,Include Search in Top Bar,ထိပ်တန်းဘားများတွင်ရှာရန် Include apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,ထပ်တလဲလဲကို% s% များအတွက် s ကိုဖန်တီးနေချိန်တွင် [အရေးပေါ်] မှားယွင်းနေသည် +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,ကမ္ဘာလုံးဆိုင်ရာ Shortcuts DocType: Help Article,Author,စာရေးသူ DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,စာရွက်စာတမ်းပေးထား filter များရှာမတွေ့ပါ @@ -2398,10 +2439,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, Row {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","သငျသညျသစ်ကိုမှတ်တမ်းများကိုအပ်လုတ်နေတယ်ဆိုရင်ပစ္စုပ္ပန်လျှင်, "အမည်ဖြင့်သမုတ်စီးရီး" မဖြစ်မနေဖြစ်လာသည်။" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Edit ကို Properties ကို -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,ယင်း၏ {0} ဖွင့်သည့်အခါဖွင့်လှစ်ဥပမာအားဖြင့်မရနိုင်သလား +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,ယင်း၏ {0} ဖွင့်သည့်အခါဖွင့်လှစ်ဥပမာအားဖြင့်မရနိုင်သလား DocType: Activity Log,Timeline Name,timeline ကိုအမည် DocType: Comment,Workflow,လုပ်ငန်းအသွားအလာ apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Frappe များအတွက်လူမှုဝင်မည် Key ကိုအတွက်အခြေစိုက်စခန်း URL ကိုသတ်မှတ်ပေးပါ +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,keyboard Shortcuts DocType: Portal Settings,Custom Menu Items,custom Menu ကိုပစ္စည်းများ apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,{0} ၏အရှည် 1 နှင့် 1000 အကြားဖြစ်သင့်တယ် apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Connection ကိုဆုံးရှုံးခဲ့ရသည်။ အချို့အင်္ဂါရပ်အလုပ်မဖြစ်ပေလိမ့်မည်။ @@ -2464,6 +2506,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,အတန DocType: DocType,Setup,တည်ဆောက်သည် apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} ကိုအောင်မြင်စွာဖန်တီး apps/frappe/frappe/www/update-password.html,New Password,စကားဝှကိအသစ် +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,ဖျော်ဖြေမှုကိုရွေးချယ်ပါ apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,ဤစကားဝိုင်း Leave DocType: About Us Settings,Team Members,ရေးအဖွဲ့အဖွဲ့ဝင်များ DocType: Blog Settings,Writers Introduction,စာရေးဆရာများနိဒါန်း @@ -2533,13 +2576,12 @@ DocType: Chat Room,Name,အမည် DocType: Communication,Email Template,အီးမေးလ်ပို့ရန် Template ကို DocType: Energy Point Settings,Review Levels,ဆန်းစစ်ခြင်း Levels DocType: Print Format,Raw Printing,ကုန်ကြမ်းပုံနှိပ် -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,ယင်း၏ဥပမာအားဖြင့်ပွင့်လင်းသည့်အခါ {0} ဖွင့်လို့မရပါ +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,ယင်း၏ဥပမာအားဖြင့်ပွင့်လင်းသည့်အခါ {0} ဖွင့်လို့မရပါ DocType: DocType,"Make ""name"" searchable in Global Search",ကမ္တာ့ရှာရန်အတွက် "အမည်" ရှာဖွေ Make DocType: Data Migration Mapping,Data Migration Mapping,ဒေတာကိုရွှေ့ပြောင်းမြေပုံ DocType: Data Import,Partially Successful,တစ်စိတ်တစ်ပိုင်းအောင်မြင်သော DocType: Communication,Error,အမှား apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype {0} {2} အတန်းအတွက် {1} မှမပြောင်းနိုင်ပါ -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZ Tray ထဲမှာလျှောက်လွှာချိတ်ဆက်မှုမှားယွင်းနေ ...

သင်ကရော်ပုံနှိပ်ပါအင်္ဂါရပ်ကိုအသုံးပြုရန်, QZ Tray ထဲက application ကို install လုပ်ပြီးသားနှင့်ပြေးရှိသည်ဖို့လိုအပ်ပါတယ်။

QZ Tray ထဲက Download လုပ်ပြီး install ဒီမှာနှိပ်ပါ
ရော်ပုံနှိပ်အကြောင်းပိုမိုလေ့လာသင်ယူရန်ဒီနေရာကိုနှိပ်ပါ ။" apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,ဓာတ်ပုံကိုယူ apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,သင်နှင့်အတူဆက်နွယ်သည်ဟုနှစ်ပေါင်းရှောင်ကြဉ်ပါ။ DocType: Web Form,Allow Incomplete Forms,မပြည့်စုံ Form များ Allow @@ -2635,7 +2677,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",သစ်တစ်ခုစာမျက်နှာဖွင့်လှစ်ဖို့ကို Select လုပ်ပါပစ်မှတ် = "_blank" ။ DocType: Portal Settings,Portal Menu,portal Menu ကို DocType: Website Settings,Landing Page,ကမ်းတက်စာမျက်နှာ -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,စတင်သို့မဟုတ်ရဲ့ login-sign up ကိုကျေးဇူးပြုပြီး DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",""အရောင်း Query, ပံ့ပိုးမှု Query" စသည်တို့ကဲ့သို့အဆက်သွယ်ပါရွေးချယ်စရာအသစ်တစ်ခုလိုင်းပေါ်တစ်ဦးချင်းစီသို့မဟုတ်ကော်မာကွဲကွာ။" apps/frappe/frappe/twofactor.py,Verfication Code,Verfication Code ကို apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} ပြီးသားနှုတ်ထွက် @@ -2721,6 +2762,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,ဒေတာက DocType: Address,Sales User,အရောင်းအသုံးပြုသူ apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","ပြောင်းလဲမှုကိုလယ်ဂုဏ်သတ္တိများ (ဝှက်, ဖတ်ရန်အတွက်, ခွင့်ပြုချက် etc)" DocType: Property Setter,Field Name,field အမည် +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,ဖောက်သည် DocType: Print Settings,Font Size,font Size ကို DocType: User,Last Password Reset Date,နောက်ဆုံး Password ကို Reset နေ့စွဲ DocType: System Settings,Date and Number Format,ရက်စွဲနှင့်နံပါတ် Format ကို @@ -2786,6 +2828,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Group မှ No apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,တည်ဆဲနှင့်အတူပေါင်းစည်း DocType: Blog Post,Blog Intro,ဘလော့မိတ်ဆက်ခြင်း apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,နယူးဖော်ပြခြင်း +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,လယ်ပြင်ဤနေရာသို့သွားရန် DocType: Prepared Report,Report Name,အစီရင်ခံစာအမည် apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,နောက်ဆုံးပေါ်စာရွက်စာတမ်းရဖို့ refresh ပေးပါ။ apps/frappe/frappe/core/doctype/communication/communication.js,Close,ပိတ် @@ -2795,10 +2838,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,အဖြစ်အပျက် DocType: Social Login Key,Access Token URL,Access ကိုတိုကင် URL ကို apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,သင့်ရဲ့ site ကို config ကိုအတွက် Dropbox ကို access ကိုသော့သတ်မှတ်ပေးပါ +DocType: Google Contacts,Google Contacts,Google အဆက်အသွယ် DocType: User,Reset Password Key,Password ကို Key ကို Reset apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,အားဖြင့်ပြုပြင်ထားသော DocType: User,Bio,ဇီဝ apps/frappe/frappe/limits.py,"To renew, {0}.",{0} သက်တမ်းတိုးဖို့ရန်။ +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,အောင်မြင်စွာသည်ကယ်တင်ခြင်းသို့ရောက် +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,ဒီမှာချိတ်ဆက် {0} အီးမေးလ်ပေးပို့ပါ။ DocType: File,Folder,ဖိုငျတှဲ DocType: DocField,Perm Level,Perm အဆင့် DocType: Print Settings,Page Settings,စာမကျြနှာကိုဆက်တင် @@ -2828,6 +2874,7 @@ DocType: Workflow State,remove-sign,ကိုဖယ်ရှား-နိမိ DocType: Dashboard Chart,Full,ပြည့်သော DocType: DocType,User Cannot Create,အသုံးပြုသူကိုဖန်တီးမပေးနိုင် apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,သင် {0} အမှတ်ရရှိခဲ့ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup ကို> အသုံးပြုသူ DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.",သင်ဤသတ်မှတ်ပါကယခု Item drop-down ရွေးချယ်ထားသောမိဘအောက်မှာအတွက်လာပါလိမ့်မယ်။ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,အဘယ်သူမျှမထားတဲ့အီးမေးလ် apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,အောက်ပါကွက်လပ်များကိုပျောက်ဆုံးနေ: @@ -2841,13 +2888,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Sho DocType: Web Form,Web Form Fields,Web ကို Form ကို Fields DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,ဝက်ဘ်ဆိုက်ပေါ်တွင်အသုံးပြုသူပြုပြင်နိုင်သည့်ပုံစံ။ -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,အမြဲတမ်း {0} Cancel? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,အမြဲတမ်း {0} Cancel? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,option 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,စုစုပေါင်းများ apps/frappe/frappe/utils/password_strength.py,This is a very common password.,ဤအရာသည်အလွန်ဘုံစကားဝှက်ဖြစ်ပါတယ်။ DocType: Personal Data Deletion Request,Pending Approval,ဆိုင်းငံ့ထားအတည်ပြုချက် apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,စာရွက်စာတမ်းမှန်ကန်စွာတာဝန်ပေးမရနိုင်ခြင်း apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{1}: {0} အဘို့အခွင့်မပြုထား +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,ပြသနိုင်ဖို့တန်ဖိုးများကိုအဘယ်သူမျှမ DocType: Personal Data Download Request,Personal Data Download Request,ပုဂ္ဂိုလ်ရေးဒေတာများကိုဒေါင်းလုပ်တောင်းဆိုခြင်း apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} {1} နှင့်အတူဤစာရွက်စာတမ်း shared apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},{0} ကို Select လုပ်ပါ @@ -2863,7 +2911,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},ဤသည်ကိုအီးမေးလ် {0} မှစလှေတျတျောနဲ့ {1} မှကူးယူခဲ့သည် apps/frappe/frappe/email/smtp.py,Invalid login or password,မှားနေသောရဲ့ login သို့မဟုတ်စကားဝှက်ကို DocType: Social Login Key,Social Login Key,လူမှုဝင်မည် Key ကို -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Setup ကို> အီးမေးလ်> အီးမေးလ်အကောင့်ကနေ ကျေးဇူးပြု. setup ကို default အနေနဲ့အီးမေးလ်အကောင့်ကို apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,ကယ်တင်ခြင်းသို့ရောက်သောစိစစ်မှုများ DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","ဘယ်လိုကဒီငွေကြေးကိုချပ်သင့်သနည်း သတ်မှတ်မထားလျှင်, system ကိုမူလပုံစံများကိုအသုံးပြုရန်ပါလိမ့်မယ်" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} ပြည်နယ် {2} ဟုသတ်မှတ်ထား @@ -2989,6 +3036,7 @@ DocType: User,Location,တည်နေရာ apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,အဘယ်သူမျှမဒေတာများ DocType: Website Meta Tag,Website Meta Tag,ဝဘ်ဆိုဒ်တွင် Meta Tag ကို DocType: Workflow State,film,ရုပ်ရှင် +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,clipboard ထံမှကူးယူပါ။ apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} က Settings မတွေ့ရှိ apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,တံဆိပ်မဖြစ်မနေဖြစ်ပါသည် DocType: Webhook,Webhook Headers,Webhook header @@ -3197,7 +3245,7 @@ DocType: Address,Address Line 1,လိပ်စာစာကြောင်း 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,စာရွက်စာတမ်းအမျိုးအစားများအတွက် apps/frappe/frappe/model/base_document.py,Data missing in table,table ထဲမှာပျောက်ဆုံးဒေတာများ apps/frappe/frappe/utils/bot.py,Could not identify {0},{0} ခွဲခြားသတ်မှတ်လို့မရပါ -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,ဤပုံစံကိုသင် loaded ပြီးနောက်ပြုပြင်လိုက်ပါက +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,ဤပုံစံကိုသင် loaded ပြီးနောက်ပြုပြင်လိုက်ပါက apps/frappe/frappe/www/login.html,Back to Login,နောက်ကျောဝင်မည်မှ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Set မဟုတ် DocType: Data Migration Mapping,Pull,ဆွဲပါ @@ -3265,6 +3313,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,ကလေးသူင apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,အီးမေးလ်အကောင့် setup ကိုအဘို့သင့်စကားဝှက်ကိုရိုက်ထည့်ပါ: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,တဦးတည်းတောင်းဆိုချက်အတွက်အလွန်များရေးထားလော့။ သေးငယ်တောင်းဆိုမှုများကိုပေးပို့ပါ DocType: Social Login Key,Salesforce,Salesforce +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},တင်သွင်းခြင်း {0} {1} ၏ DocType: User,Tile,tile apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} အခန်းထဲမှာ atmost အသုံးပြုသူတစ်ဦးရှိရမည်။ DocType: Email Rule,Is Spam,ပမ် Is @@ -3302,7 +3351,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,folder ကို-နီးစပ် DocType: Data Migration Run,Pull Update,Update ကို pull apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},ပေါင်းစည်း {0} {1} သို့ -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

DocType: SMS Settings,Enter url parameter for receiver nos,လက်ခံ nos များအတွက် url ကို parameter သည် Enter apps/frappe/frappe/utils/jinja.py,Syntax error in template,template ကိုအတွက် syntax အမှား apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,အစီရင်ခံစာ Filter ကို table ထဲမှာ filter များတန်ဖိုးကိုသတ်မှတ်ပါ။ @@ -3315,6 +3363,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","ဝမ် DocType: System Settings,In Days,နေ့ရက်များအတွက် DocType: Report,Add Total Row,စုစုပေါင်း Row Add apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,session Start ကို Failed +DocType: Translation,Verified,မှန်ကန်ကြောင်းအတည်ပြု DocType: Print Format,Custom HTML Help,custom က HTML အကူအညီ DocType: Address,Preferred Billing Address,ကြိုက်သောငွေတောင်းခံလွှာလိပ်စာ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,ရန်တာဝန်ပေး @@ -3329,7 +3378,6 @@ DocType: Help Article,Intermediate,ကြားဖြစ်သော DocType: Module Def,Module Name,module အမည် DocType: OAuth Authorization Code,Expiration time,သက်တမ်းကုန်ဆုံးအချိန် apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Set က default format နဲ့, စာမျက်နှာအရွယ်အစား, ပုံနှိပ်စတိုင်စသည်တို့ကို" -apps/frappe/frappe/desk/like.py,You cannot like something that you created,သင်ဖန်တီးသောအရာတစ်ခုခုကိုကြိုက်မနိုင် DocType: System Settings,Session Expiry,session Expiry DocType: DocType,Auto Name,အော်တိုအမည် apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,ပူးတွဲပါကို Select လုပ်ပါ @@ -3357,6 +3405,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,System ကို 's Page DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,မှတ်ချက်: ပုံမှန်အားဖြင့်ပျက်ကွက်ရန်သင့်သိမ်းဆည်းချက်တွေကိုများအတွက်အီးမေးလ်များကိုစလှေတျတျောနေကြသည်။ DocType: Custom DocPerm,Custom DocPerm,custom DocPerm +DocType: Translation,PR sent,PR စနစ်ကိုစေလွှတ် DocType: Tag Doc Category,Doctype to Assign Tags,Tags: သတ်မှတ်ပေးရန် DOCTYPE DocType: Address,Warehouse,ကုနျလှောငျရုံ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Dropbox ကို Setup ကို @@ -3424,7 +3473,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,ကို Ctrl + မှတ်ချက်ကိုထည့်သွင်းဖို့ Enter apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,field {0} ကို select မဟုတ်ပါဘူး။ DocType: User,Birth Date,မွေးရက် -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Group မှ Indent နှင့်အတူ DocType: List View Setting,Disable Count,Disable လုပ်ထားအရေအတွက် DocType: Contact Us Settings,Email ID,အီးမေးလ်ပို့ရန် ID ကို apps/frappe/frappe/utils/password.py,Incorrect User or Password,မှားယွင်းနေအသုံးပြုသူသို့မဟုတ်စကားဝှက် @@ -3459,6 +3507,7 @@ DocType: Website Settings,<head> HTML,<head> HTML ကို DocType: Custom DocPerm,This role update User Permissions for a user,အသုံးပြုသူတစ်ဦးအဘို့ဤအခန်းကဏ္ဍ update ကိုအသုံးပြုသူခွင့်ပြုချက်များ DocType: Website Theme,Theme,အကွောငျး DocType: Web Form,Show Sidebar,Show ကို Sidebar +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google အဆက်အသွယ်ပေါင်းစည်းရေး။ apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,default Inbox ထဲမှာ apps/frappe/frappe/www/login.py,Invalid Login Token,မှားနေသော Login Token apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,ပထမဦးစွာနာမကိုမသတ်မှတ်နှင့်စံချိန်သိမ်းဆည်းပါ။ @@ -3486,7 +3535,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,အဆိုပါပြင်ပေးပါ DocType: Top Bar Item,Top Bar Item,ထိပ်တန်းဘား Item ,Role Permissions Manager,အခန်းက္ပခွင့်ပြုချက်များ Manager ကို -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,အမှားအယွင်းများရှိခဲ့သည်။ ဒီအစီရင်ခံတင်ပြပေးပါ။ +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} တစ်နှစ် (s) ကိုလွန်ခဲ့သည့် apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,အမြိုးသမီး DocType: System Settings,OTP Issuer Name,OTP ထုတ်ပြန်သူအမည် apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,လုပ်ပါရန်ပေါင်းထည့်ရန် @@ -3586,6 +3635,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","ဘာ apps/frappe/frappe/model/document.py,none of,အဘယ်သူအားမျှ DocType: Desktop Icon,Page,စာမျက်နှာ DocType: Workflow State,plus-sign,ပေါင်း-နိမိတ်လက္ခဏာ +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Clear Cache နဲ့ပြန်တင်ရန် apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,ကိုအပ်ဒိတ်လုပ်မပေးနိုင်: မှားယွင်းနေ / သက်တမ်းကုန် Link ကို။ DocType: Kanban Board Column,Yellow,ဝါသော 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 ထက်လျော့နည်းဖြစ်သင့်) @@ -3600,6 +3650,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,န DocType: Activity Log,Date,နေ့စှဲ DocType: Communication,Communication Type,ဆက်သွယ်ရေးအမျိုးအစား apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,မိဘဇယား +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,စာရင်းဖွင့် navigate DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,အပြည့်အဝမှားယွင်းနေသည်ပြရန်နှင့်ရေးသားသူမှကိစ္စများ၏အစီရင်ခံ Allow DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3621,7 +3672,6 @@ DocType: Notification Recipient,Email By Role,အခန်းက္ပအား apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,{0} subscriber များအားထက်ပိုထည့်သွင်းဖို့ Upgrade ကျေးဇူးပြု. apps/frappe/frappe/email/queue.py,This email was sent to {0},{0} အားဤအီးမေးလ်ကိုစလှေတျတျောခဲ့သည် DocType: User,Represents a User in the system.,စနစ်အတွက်အသုံးပြုသူကိုကိုယ်စားပြုတယ်။ -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},စာမျက်နှာ {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,အသစ်ကစီစဉ်ဖွဲ့စည်းမှုပုံစံ Start apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,မှတ်ချက် Add apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} {1} ၏ diff --git a/frappe/translations/nl.csv b/frappe/translations/nl.csv index da5ba29759..d0a51989a0 100644 --- a/frappe/translations/nl.csv +++ b/frappe/translations/nl.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Verhogingen inschakelen DocType: DocType,Default Sort Order,Standaard sorteervolgorde apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Alleen Numerieke velden uit rapport weergeven +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Druk op Alt-toets om extra snelkoppelingen in Menu en zijbalk te activeren DocType: Workflow State,folder-open,folder open DocType: Customize Form,Is Table,Is tafel apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Kan bijlage niet openen. Heb je het geëxporteerd als CSV? DocType: DocField,No Copy,Geen kopie DocType: Custom Field,Default Value,Standaardwaarde apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Append To is verplicht voor inkomende e-mails +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Contacten synchroniseren DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Data Migration Mapping Detail apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Volg niet apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",PDF-afdrukken via "Raw Print" wordt nog niet ondersteund. Verwijder de printertoewijzing in Printerinstellingen en probeer het opnieuw. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} en {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Er is een fout bij het opslaan van filters apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Voer uw wachtwoord in apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Kan de mappen Home en Attachments niet verwijderen +DocType: Email Account,Enable Automatic Linking in Documents,Schakel automatisch koppelen in documenten in DocType: Contact Us Settings,Settings for Contact Us Page,Instellingen voor contactpagina DocType: Social Login Key,Social Login Provider,Social Login Provider +DocType: Email Account,"For more information, click here.","Klik hier voor meer informatie." DocType: Transaction Log,Previous Hash,Vorige hasj DocType: Notification,Value Changed,Waarde veranderd DocType: Report,Report Type,Rapporttype @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Energy Point Rule apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,Voer een client-ID in voordat sociale aanmelding is ingeschakeld DocType: Communication,Has Attachment,Heeft bijlage DocType: User,Email Signature,Email handtekening -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} jaar (jaren) geleden ,Addresses And Contacts,Adressen en contacten apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Dit Kanban-bord is privé DocType: Data Migration Run,Current Mapping,Huidige toewijzing @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","U selecteert Sync Option als ALL, het zal alle \ read en ongelezen berichten van de server opnieuw synchroniseren. Dit kan ook de duplicatie \ van communicatie (e-mails) veroorzaken." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Laatst gesynchroniseerd {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Kan de inhoud van de koptekst niet wijzigen +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Geen resultaten gevonden voor '

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Niet toegestaan om {0} na inzending te wijzigen apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","De applicatie is bijgewerkt naar een nieuwe versie, vernieuw deze pagina" DocType: User,User Image,Gebruikers afbeelding @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Marke apps/frappe/frappe/public/js/frappe/chat.js,Discard,afdanken DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Selecteer een afbeelding van ongeveer 150px breedte met een transparante achtergrond voor het beste resultaat. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,Recidiverend +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} waarden geselecteerd DocType: Blog Post,Email Sent,Email verzonden DocType: Communication,Read by Recipient On,Lezen door ontvanger op DocType: User,Allow user to login only after this hour (0-24),Sta gebruiker toe pas in te loggen na dit uur (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Module om te exporteren DocType: DocType,Fields,Fields -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,U mag dit document niet afdrukken +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,U mag dit document niet afdrukken apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Ouder apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Uw sessie is verlopen, log opnieuw in om verder te gaan." DocType: Assignment Rule,Priority,Prioriteit @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Reset OTP Secret DocType: DocType,UPPER CASE,HOOFDGEVANG apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,Stel alstublieft het e-mailadres in DocType: Communication,Marked As Spam,Gemarkeerd als spam +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,E-mailadres waarvan de Google-contacten moeten worden gesynchroniseerd. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Importeer abonnees apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Filter opslaan DocType: Address,Preferred Shipping Address,Verzendadres voorkeur DocType: GCalendar Account,The name that will appear in Google Calendar,De naam die in Google Agenda wordt weergegeven +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Klik op {0} om Refresh Token te genereren. DocType: Email Account,Disable SMTP server authentication,Schakel SMTP-serververificatie uit DocType: Email Account,Total number of emails to sync in initial sync process ,Totaal aantal e-mails dat moet worden gesynchroniseerd tijdens het eerste synchronisatieproces DocType: System Settings,Enable Password Policy,Schakel wachtwoordbeleid in @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Voeg code in apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Niet in DocType: Auto Repeat,Start Date,Begin datum apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Grafiek instellen +DocType: Website Theme,Theme JSON,Thema JSON apps/frappe/frappe/www/list.py,My Account,Mijn rekening DocType: DocType,Is Published Field,Is gepubliceerd veld DocType: DocField,Set non-standard precision for a Float or Currency field,Stel niet-standaard precisie in voor een float- of valutaveld @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Reference: {{ reference_doctype }} {{ reference_name }} toevoegen Reference: {{ reference_doctype }} {{ reference_name }} om documentreferentie te verzenden DocType: LDAP Settings,LDAP First Name Field,LDAP Voornaam Veld apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Standaard Verzenden en Inbox -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Stel in> Formulier aanpassen apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",Voor het bijwerken kunt u alleen selectieve kolommen bijwerken. apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',Standaard voor 'Check' veldtype moet '0' of '1' zijn apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Deel dit document met @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Domeinen HTML DocType: Blog Settings,Blog Settings,Blog-instellingen apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","De naam van DocType moet beginnen met een letter en deze mag alleen uit letters, cijfers, spaties en underscores bestaan" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Stel in> Gebruikersmachtigingen DocType: Communication,Integrations can use this field to set email delivery status,Integraties kunnen dit veld gebruiken om de e-mailbezorgingsstatus in te stellen apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Stripe payment gateway-instellingen DocType: Print Settings,Fonts,fonts DocType: Notification,Channel,Kanaal DocType: Communication,Opened,geopend DocType: Workflow Transition,Conditions,Voorwaarden +apps/frappe/frappe/config/website.py,A user who posts blogs.,Een gebruiker die blogs plaatst. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Heb je geen account? Inschrijven apps/frappe/frappe/utils/file_manager.py,Added {0},{0} toegevoegd DocType: Newsletter,Create and Send Newsletters,Maak en verstuur nieuwsbrieven DocType: Website Settings,Footer Items,Voettekstitems +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Stel de standaard e-mailaccount in via Instellingen> E-mail> E-mailaccount DocType: Website Slideshow Item,Website Slideshow Item,Website Slideshow Item apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registreer de OAuth Client-app DocType: Error Snapshot,Frames,frames @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Niveau 0 is voor machtigingen op documentniveau, \ hogere niveaus voor machtigingen op veldniveau." DocType: Address,City/Town,Stad / plaats DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Hiermee wordt je huidige thema opnieuw ingesteld, weet je zeker dat je wilt doorgaan?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Verplichte velden vereist in {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Fout tijdens verbinden met e-mailaccount {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Er is een fout opgetreden tijdens het maken van een terugkerende afspraak @@ -528,7 +537,7 @@ DocType: Event,Event Category,Evenement Categorie apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Kolommen gebaseerd op apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Kop bewerken DocType: Communication,Received,Ontvangen -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,U hebt geen toegang tot deze pagina. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,U hebt geen toegang tot deze pagina. DocType: User Social Login,User Social Login,Gebruikers sociale login apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,Schrijf een Python-bestand in dezelfde map waarin dit is opgeslagen en stuur kolom en resultaat terug. DocType: Contact,Purchase Manager,Purchase Manager @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Conf apps/frappe/frappe/utils/data.py,Operator must be one of {0},Operator moet een van {0} zijn apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Als eigenaar DocType: Data Migration Run,Trigger Name,Triggernaam -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Schrijf titels en inleidingen op je blog. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Verwijder veld apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Alles inklappen apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Achtergrond kleur @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,Bar DocType: SMS Settings,Enter url parameter for message,Voer de URL-parameter voor het bericht in apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nieuw aangepast afdrukformaat apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} bestaat al +DocType: Workflow Document State,Is Optional State,Is optionele staat DocType: Address,Purchase User,Aankoop Gebruiker DocType: Data Migration Run,Insert,invoegen DocType: Web Form,Route to Success Link,Route naar succeskoppeling @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Gebruik DocType: File,Is Home Folder,Is de thuismap apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Type: DocType: Post,Is Pinned,Is vastgezet -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Geen toestemming voor '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Geen toestemming voor '{0}' {1} DocType: Patch Log,Patch Log,Patch log DocType: Print Format,Print Format Builder,Print Format Builder 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","Indien ingeschakeld, kunnen alle gebruikers inloggen vanaf elk IP-adres met behulp van Two Factor Auth. Dit kan ook alleen voor specifieke gebruiker (s) in de gebruikerspagina worden ingesteld" apps/frappe/frappe/utils/data.py,only.,enkel en alleen. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,De voorwaarde '{0}' is ongeldig DocType: Auto Email Report,Day of Week,Dag van de week +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Schakel Google API in via Google Instellingen. DocType: DocField,Text Editor,Teksteditor apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Besnoeiing apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Zoek of typ een opdracht @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,Het aantal DB-back-ups mag niet kleiner zijn dan 1 DocType: Workflow State,ban-circle,ban-circle DocType: Data Export,Excel,uitmunten +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Kop, broodkruimels en metatags" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Ondersteund e-mailadres niet gespecificeerd DocType: Comment,Published,Gepubliceerd DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.",Opmerking: voor de beste resultaten moeten afbeeldingen van dezelfde grootte zijn en moet de breedte groter zijn dan de hoogte. @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Laatste evenement van planner apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Rapport van alle documentaandelen DocType: Website Sidebar Item,Website Sidebar Item,Website zijbalkitem apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Te doen +DocType: Google Settings,Google Settings,Google-instellingen apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Selecteer uw land, tijdzone en valuta" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Voer hier de statische URL-parameters in (bijv. Afzender = ERPNext, gebruikersnaam = ERPNext, wachtwoord = 1234 etc.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Geen e-mailaccount @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth-dragertoken ,Setup Wizard,Installatiewizard apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Wissel diagram +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,synchroniseren DocType: Data Migration Run,Current Mapping Action,Huidige toewijzingsactie DocType: Email Account,Initial Sync Count,Initiële synchronisatietelling apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Instellingen voor contactpagina. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Type afdrukformaat apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Geen rechten ingesteld voor dit criterium. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Alles uitvouwen +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Geen standaard adressjabloon gevonden. Maak een nieuwe aan via Instellingen> Afdrukken en branding> Adressjabloon. DocType: Tag Doc Category,Tag Doc Category,Tag Doc Categorie DocType: Data Import,Generated File,Gegenereerd bestand apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Notes @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Tijdlijnveld moet een koppeling of dynamische koppeling zijn DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Meldingen en bulkmails worden verzonden vanaf deze uitgaande server. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Dit is een 100 vaak gebruikt gemeenschappelijk wachtwoord. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Permanent {0} indienen? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Permanent {0} indienen? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} bestaat niet, selecteer een nieuw doel om samen te voegen" DocType: Energy Point Rule,Multiplier Field,Multiplier veld DocType: Workflow,Workflow State Field,Werkstroomstatusveld @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} waardeerde je werk op {1} met {2} punten DocType: Auto Email Report,Zero means send records updated at anytime,Nul betekent dat records op elk moment worden geüpdatet apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Waarde kan niet worden gewijzigd voor {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API-instellingen. DocType: System Settings,Force User to Reset Password,Gebruiker dwingen om wachtwoord te resetten apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Report Builder-rapporten worden rechtstreeks beheerd door de rapportbouwer. Niets te doen. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Bewerk filter @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,voor DocType: S3 Backup Settings,eu-north-1,eu-noord-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: slechts één regel is toegestaan met dezelfde rol, niveau en {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,U mag dit webformulier-document niet bijwerken -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Maximum Attachment Limit voor deze record bereikt. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Maximum Attachment Limit voor deze record bereikt. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,Zorg ervoor dat de referentiecommunicatiedocumenten niet circulair zijn gekoppeld. DocType: DocField,Allow in Quick Entry,Toestaan bij snel invoeren DocType: Error Snapshot,Locals,Lokale bevolking @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Uitzonderingstype apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},Kan niet verwijderen of annuleren omdat {0} {1} is gekoppeld aan {2} {3} {4} apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTP-geheim kan alleen worden gereset door de beheerder. -DocType: Web Form Field,Page Break,Pagina-einde DocType: Website Script,Website Script,Website Script DocType: Integration Request,Subscription Notification,Abonnementsmelding DocType: DocType,Quick Entry,Snelle invoer @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,Eigendom instellen na waarschuwin apps/frappe/frappe/__init__.py,Thank you,Dank je apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks voor interne integratie apps/frappe/frappe/config/settings.py,Import Data,Data importeren +DocType: Translation,Contributed Translation Doctype Name,Toegevoegde vertaling Doctype naam DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID kaart DocType: Review Level,Review Level,Review Level @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Succesvol gedaan apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Lijst apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Waarderen -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Nieuw {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Is primaire contactpersoon DocType: Print Format,Raw Commands,Raw-opdrachten apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Stijlbladen voor afdrukformaten @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Fouten in achtergr apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Zoek {0} in {1} DocType: Email Account,Use SSL,Gebruik SSL DocType: DocField,In Standard Filter,In standaardfilter +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Geen Google-contacten aanwezig om te synchroniseren. DocType: Data Migration Run,Total Pages,Totaal aantal pagina's apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: Veld '{1}' kan niet worden ingesteld als Uniek omdat het niet-unieke waarden heeft DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Indien ingeschakeld, krijgen gebruikers een melding telkens wanneer ze inloggen. Als dit niet is ingeschakeld, worden gebruikers slechts één keer op de hoogte gesteld." @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,Automatisering apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Bestanden uitpakken ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Zoeken naar '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Er is iets fout gegaan -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Bespaar voordat je gaat bevestigen. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,Bespaar voordat je gaat bevestigen. DocType: Version,Table HTML,Tabel HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,naaf DocType: Page,Standard,Standaard @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Geen result apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} records zijn verwijderd apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,Er is iets misgegaan bij het genereren van het token voor de toegang tot de Dropbox-toegang. Controleer het foutenlogboek voor meer informatie. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Nakomelingen van -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Geen standaard adressjabloon gevonden. Maak een nieuwe aan via Instellingen> Afdrukken en branding> Adressjabloon. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Contacten is geconfigureerd. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Verberg details apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Letterstijlen apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Uw abonnement verloopt op {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Verificatie is mislukt tijdens het ontvangen van e-mails van e-mailaccount {0}. Bericht van de server: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Statistieken op basis van de prestaties van vorige week (van {0} tot {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,Automatische koppeling kan alleen worden geactiveerd als Inkomend is ingeschakeld. DocType: Website Settings,Title Prefix,Titelvoorvoegsel apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Verificatie-apps die u kunt gebruiken zijn: DocType: Bulk Update,Max 500 records at a time,Maximaal 500 records tegelijkertijd @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,Filters rapporteren apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Selecteer Kolommen DocType: Event,Participants,Deelnemers DocType: Auto Repeat,Amended From,Gewijzigd van -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Uw informatie is ingediend +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Uw informatie is ingediend DocType: Help Category,Help Category,Help Categorie apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 maand apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Selecteer een bestaande indeling om een nieuwe indeling te bewerken of te starten. @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Field to Track DocType: User,Generate Keys,Genereer sleutels DocType: Comment,Unshared,Niet gedeeld -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,opgeslagen +DocType: Translation,Saved,opgeslagen DocType: OAuth Client,OAuth Client,OAuth-client DocType: System Settings,Disable Standard Email Footer,Schakel standaard e-mail voettekst uit apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Afdrukformaat {0} is uitgeschakeld @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Laatst geupda DocType: Data Import,Action,Actie apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Client-sleutel is vereist DocType: Chat Profile,Notifications,meldingen +DocType: Translation,Contributed,bijgedragen DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy DocType: Report,Custom Report,Aangepast rapport DocType: Workflow State,info-sign,info-sign @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Contact DocType: LDAP Settings,LDAP Username Field,LDAP gebruikersnaam veld apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} veld kan niet worden ingesteld als uniek in {1}, omdat er niet-unieke bestaande waarden zijn" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Stel in> Formulier aanpassen DocType: User,Social Logins,Social logins DocType: Workflow State,Trash,uitschot DocType: Stripe Settings,Secret Key,Geheime sleutel @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,Titelveld apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Kon geen verbinding maken met de uitgaande e-mailserver DocType: File,File URL,Bestands-URL DocType: Help Article,Likes,sympathieën +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google Contacts Integration is uitgeschakeld. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,U moet zijn aangemeld en de rol van systeembeheerder hebben om toegang te krijgen tot back-ups. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Eerste level DocType: Blogger,Short Name,Korte naam @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Zip importeren DocType: Contact,Gender,Geslacht DocType: Workflow State,thumbs-down,duimen omlaag -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Wachtrij moet een van {0} zijn apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Kan melding niet instellen op documenttype {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Systeembeheerder aan deze gebruiker toevoegen, omdat er ten minste één systeembeheerder moet zijn" apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Welkom e-mail verzonden DocType: Transaction Log,Chaining Hash,Hash koppelen DocType: Contact,Maintenance Manager,onderhoudsmanager +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Gebruik voor vergelijking,> 5, <10 of = 324. Gebruik voor reeksen 5:10 (voor waarden tussen 5 en 10)." apps/frappe/frappe/utils/bot.py,show,laten zien apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Deel URL apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Niet ondersteund bestandsformaat @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,Kennisgeving DocType: Data Import,Show only errors,Toon alleen fouten DocType: Energy Point Log,Review,Beoordeling apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Rijen verwijderd -DocType: GSuite Settings,Google Credentials,Google-referenties +DocType: Google Settings,Google Credentials,Google-referenties apps/frappe/frappe/www/login.html,Or login with,Of log in met apps/frappe/frappe/model/document.py,Record does not exist,Record bestaat niet apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Nieuwe rapportnaam @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,Lijst DocType: Workflow State,th-large,th-large apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: kan Assign Submit niet indien Submittable instellen apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Niet gekoppeld aan een record +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Fout bij verbinden met QZ Tray-toepassing ...

U moet de QZ Tray-applicatie geïnstalleerd en actief hebben om de functie Raw Print te gebruiken.

Klik hier om QZ Tray te downloaden en te installeren .
Klik hier voor meer informatie over Raw Printing ." DocType: Chat Message,Content,Inhoud DocType: Workflow Transition,Allow Self Approval,Toestaan zelf-goedkeuring apps/frappe/frappe/www/qrcode.py,Page has expired!,Pagina is verlopen! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,met de hand naar rechts DocType: Website Settings,Banner is above the Top Menu Bar.,De banner bevindt zich boven de bovenste menubalk. apps/frappe/frappe/www/update-password.html,Invalid Password,ongeldig wachtwoord apps/frappe/frappe/utils/data.py,1 month ago,1 maand geleden +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Toegang tot Google-contactpersonen toestaan DocType: OAuth Client,App Client ID,App Client ID DocType: DocField,Currency,Valuta DocType: Website Settings,Banner,banier @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Doel DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Als een rol geen toegang heeft op niveau 0, zijn hogere niveaus zinloos." DocType: ToDo,Reference Type,Referentietype -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DocType toestaan, DocType. Doe voorzichtig!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","DocType toestaan, DocType. Doe voorzichtig!" DocType: Domain Settings,Domain Settings,Domeininstellingen DocType: Auto Email Report,Dynamic Report Filters,Dynamische rapportfilters DocType: Energy Point Log,Appreciation,Waardering @@ -1468,6 +1489,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,us-west-2 DocType: DocType,Is Single,Is vrijgezel apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Maak een nieuw formaat +DocType: Google Contacts,Authorize Google Contacts Access,Toegang via Google-contacten autoriseren DocType: S3 Backup Settings,Endpoint URL,Eindpunt-URL DocType: Social Login Key,Google,Google DocType: Contact,Department,afdeling @@ -1482,7 +1504,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Toewijzen DocType: List Filter,List Filter,Lijst filter DocType: Dashboard Chart Link,Chart,tabel apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Kan niet verwijderen -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Verzend dit document om te bevestigen +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Verzend dit document om te bevestigen apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} bestaat al. Selecteer een andere naam apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,U heeft niet-opgeslagen wijzigingen in dit formulier. Bespaar voordat je verder gaat. apps/frappe/frappe/model/document.py,Action Failed,Actie: mislukt @@ -1564,6 +1586,7 @@ DocType: DocField,Display,tonen apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Allen beantwoorden DocType: Calendar View,Subject Field,Onderwerp veld apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Session Expiry moet de indeling {0} hebben +apps/frappe/frappe/model/workflow.py,Applying: {0},Toepassen: {0} DocType: Workflow State,zoom-in,in zoomen apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Kan geen verbinding maken met de server apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Datum {0} moet de indeling hebben: {1} @@ -1575,8 +1598,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Het pictogram verschijnt op de knop DocType: Role Permission for Page and Report,Set Role For,Rol instellen voor +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Automatische koppeling kan slechts voor één e-mailaccount worden geactiveerd. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Geen e-mailaccounts toegewezen +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mailaccount niet ingesteld. Maak een nieuw e-mailaccount via Instellingen> E-mail> E-mailaccount apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,toewijzing +DocType: Google Contacts,Last Sync On,Last Sync On apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},gewonnen door {0} via automatische regel {1} apps/frappe/frappe/config/website.py,Portal,Portaal apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Bedankt voor je email @@ -1597,7 +1623,6 @@ DocType: GSuite Settings,GSuite Settings,GSuite-instellingen DocType: Integration Request,Remote,afgelegen DocType: File,Thumbnail URL,Miniatuur-URL apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Rapport downloaden -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Stel in> Gebruiker apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Aanpassingen voor {0} geëxporteerd naar:
{1} DocType: GCalendar Account,Calendar Name,Agendanaam apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Uw inlog-ID is @@ -1647,6 +1672,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Ga na apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Het afbeeldingsveld moet een geldige veldnaam zijn apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,U moet ingelogd zijn om deze pagina te openen DocType: Assignment Rule,Example: {{ subject }},Voorbeeld: {{onderwerp}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Veldnaam {0} is beperkt apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},U kunt 'Alleen-lezen' niet uitschakelen voor veld {0} DocType: Social Login Key,Enable Social Login,Sociale aanmelding inschakelen DocType: Workflow,Rules defining transition of state in the workflow.,Regels die de overgang van de status in de workflow definiëren. @@ -1667,10 +1693,10 @@ DocType: Website Settings,Route Redirects,Route omleidingen apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,E-mail inbox apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},herstelde {0} als {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Documenten automatisch toewijzen aan gebruikers +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Open Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,E-mailsjablonen voor veelgestelde vragen. DocType: Letter Head,Letter Head Based On,Briefhoofd gebaseerd op apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Sluit dit venster -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Betaling voltooid DocType: Contact,Designation,Aanwijzing DocType: Webhook,Webhook,webhook DocType: Website Route Meta,Meta Tags,Meta-tags @@ -1709,6 +1735,7 @@ DocType: System Settings,Choose authentication method to be used by all users,Ki DocType: Error Snapshot,Parent Error Snapshot,Parent Error Snapshot DocType: GCalendar Account,GCalendar Account,GCalendar-account DocType: Language,Language Name,Taalnaam +DocType: Workflow Document State,Workflow Action is not created for optional states,Werkstroomactie wordt niet gemaakt voor optionele staten DocType: Customize Form,Customize Form,Formulier aanpassen DocType: DocType,Image Field,Beeldveld apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),{0} ({1}) toegevoegd @@ -1750,6 +1777,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,Pas deze regel toe als de gebruiker de eigenaar is DocType: About Us Settings,Org History Heading,Org History Heading apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Serverfout +DocType: Contact,Google Contacts Description,Beschrijving van Google-contacten apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Standaardrollen kunnen niet worden hernoemd DocType: Review Level,Review Points,Beoordelingspunten apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Ontbrekende parameter Kanban-bordnaam @@ -1767,7 +1795,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Niet in ontwikkelaarsmodus! Stel in site_config.json in of maak 'Aangepast' DocType. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,behaalde {0} punten DocType: Web Form,Success Message,Succesbericht -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Gebruik voor vergelijking,> 5, <10 of = 324. Gebruik voor reeksen 5:10 (voor waarden tussen 5 en 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Beschrijving voor lijstpagina, in platte tekst, slechts een paar regels. (max 140 tekens)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Toon rechten DocType: DocType,Restrict To Domain,Beperken tot domein @@ -1789,6 +1816,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Geen v apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Stel Aantal in DocType: Auto Repeat,End Date,Einddatum DocType: Workflow Transition,Next State,Volgende staat +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Google Contacts gesynchroniseerd. DocType: System Settings,Is First Startup,Is de eerste keer opstarten apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},bijgewerkt naar {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Verplaatsen naar @@ -1838,6 +1866,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Agenda apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Gegevensimportsjabloon DocType: Workflow State,hand-left,Hand left +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Selecteer meerdere lijstitems apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Back-upgrootte: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Gekoppeld met {0} DocType: Braintree Settings,Private Key,Prive sleutel @@ -1880,13 +1909,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Interesseren DocType: Bulk Update,Limit,Begrenzing DocType: Print Settings,Print taxes with zero amount,Druk belastingen zonder bedrag af -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mailaccount niet ingesteld. Maak een nieuw e-mailaccount via Instellingen> E-mail> E-mailaccount DocType: Workflow State,Book,Boek DocType: S3 Backup Settings,Access Key ID,Toegang Key ID DocType: Chat Message,URLs,URL's apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Namen en achternamen op zichzelf zijn gemakkelijk te raden. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Rapport {0} DocType: About Us Settings,Team Members Heading,Teamleden rubriek +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Selecteer een item in de lijst apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Document {0} is ingesteld op {1} voor {2} DocType: Address Template,Address Template,Adres sjabloon DocType: Workflow State,step-backward,stap terug @@ -1910,6 +1939,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Aangepaste machtigingen exporteren apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Geen: einde van de workflow DocType: Version,Version,Versie +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Lijstitem openen apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 maanden DocType: Chat Message,Group,Groep apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Er is een probleem met de bestands-URL: {0} @@ -1965,6 +1995,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 jaar apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} heeft uw punten teruggezet op {1} DocType: Workflow State,arrow-down,pijltje naar beneden DocType: Data Import,Ignore encoding errors,Coderingsfouten negeren +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Landschap DocType: Letter Head,Letter Head Name,Briefhoofdnaam DocType: Web Form,Client Script,Client Script DocType: Assignment Rule,Higher priority rule will be applied first,Regel met hogere prioriteit wordt eerst toegepast @@ -2009,6 +2040,7 @@ DocType: Kanban Board Column,Green,Groen apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Alleen verplichte velden zijn nodig voor nieuwe records. U kunt niet-verplichte kolommen verwijderen als u dat wenst. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} moet beginnen en eindigen met een letter en mag alleen letters, koppeltekens of onderstrepingstekens bevatten." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Primaire actie activeren apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Maak een gebruikersmail aan apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Sorteerveld {0} moet een geldige veldnaam zijn DocType: Auto Email Report,Filter Meta,Filter Meta @@ -2038,6 +2070,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Tijdlijnveld apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Bezig met laden... DocType: Auto Email Report,Half Yearly,Halfjaarlijks +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Mijn profiel apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Laatst gewijzigde datum DocType: Contact,First Name,Voornaam DocType: Post,Comments,Comments @@ -2060,6 +2093,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Inhoud hash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Berichten van {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} heeft {1} toegewezen: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Geen nieuwe Google Contacten gesynchroniseerd. DocType: Workflow State,globe,wereldbol apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Gemiddelde van {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Wis foutlogs @@ -2086,6 +2120,8 @@ DocType: Workflow State,Inverse,omgekeerde DocType: Activity Log,Closed,Gesloten DocType: Report,Query,vraag DocType: Notification,Days After,Dagen daarna +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Sneltoetsen voor pagina's +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portret apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Verzoek Timed Out DocType: System Settings,Email Footer Address,Email Footer Address apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energie punt update @@ -2113,6 +2149,7 @@ For Select, enter list of Options, each on a new line.","Voor Links, voer het Do apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 minuut geleden apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Geen actieve sessies apps/frappe/frappe/model/base_document.py,Row,Rij +DocType: Contact,Middle Name,Midden-naam apps/frappe/frappe/public/js/frappe/request.js,Please try again,Probeer het opnieuw DocType: Dashboard Chart,Chart Options,Grafiek opties DocType: Data Migration Run,Push Failed,Push mislukt @@ -2141,6 +2178,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,resize-small DocType: Comment,Relinked,Relinked DocType: Role Permission for Page and Report,Roles HTML,Rollen HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Gaan apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,De workflow start na het opslaan. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Als uw gegevens in HTML zijn, kopieert u de exacte HTML-code met de tags." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Datums zijn vaak gemakkelijk te raden. @@ -2169,7 +2207,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Bureaublad icoon apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,annuleerde dit document apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Datumbereik -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Stel in> Gebruikersmachtigingen apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} op prijs gesteld {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Waarden veranderd apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Fout in melding @@ -2233,6 +2270,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Bulk verwijderen DocType: DocShare,Document Name,Document Naam apps/frappe/frappe/config/customization.py,Add your own translations,Voeg uw eigen vertalingen toe +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Navigeer door de lijst naar beneden DocType: S3 Backup Settings,eu-central-1,eu-centrale-1 DocType: Auto Repeat,Yearly,jaar- apps/frappe/frappe/public/js/frappe/model/model.js,Rename,andere naam geven @@ -2283,6 +2321,7 @@ DocType: Workflow State,plane,vlak apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Geneste setfout. Neem contact op met de beheerder. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Rapport weergeven DocType: Auto Repeat,Auto Repeat Schedule,Schema automatisch herhalen +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Bekijk Ref DocType: Address,Office,Kantoor DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} dagen geleden @@ -2316,7 +2355,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,On apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Mijn instellingen apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Groepsnaam mag niet leeg zijn. DocType: Workflow State,road,weg -DocType: Website Route Redirect,Source,Bron +DocType: Contact,Source,Bron apps/frappe/frappe/www/third_party_apps.html,Active Sessions,actieve sessies apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Er kan slechts één vouw in een formulier zijn apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Nieuw gesprek @@ -2338,6 +2377,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Voer alstublieft Autoriseer URL in DocType: Email Account,Send Notification to,Stuur bericht naar apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox-back-upinstellingen +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,Er is iets misgegaan tijdens de token-generatie. Klik op {0} om een nieuwe te genereren. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Alle aanpassingen verwijderen? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Alleen beheerder kan bewerken DocType: Auto Repeat,Reference Document,Referentie document @@ -2362,6 +2402,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Rollen kunnen voor gebruikers worden ingesteld vanaf hun gebruikerspagina. DocType: Website Settings,Include Search in Top Bar,Inclusief zoeken in de bovenste balk apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Urgent] Fout tijdens het maken van terugkerende% s voor% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globale snelkoppelingen DocType: Help Article,Author,Schrijver DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Geen document gevonden voor opgegeven filters @@ -2397,10 +2438,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, rij {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Als u nieuwe records uploadt, wordt "Naming Series" verplicht, indien aanwezig." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Eigenschappen bewerken -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Kan exemplaar niet openen wanneer {0} geopend is +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,Kan exemplaar niet openen wanneer {0} geopend is DocType: Activity Log,Timeline Name,Tijdlijn naam DocType: Comment,Workflow,workflow apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Stel de Base URL in Social Login Key voor Frappe in +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Toetsenbord sneltoetsen DocType: Portal Settings,Custom Menu Items,Aangepaste menu-items apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,De lengte van {0} moet tussen 1 en 1000 zijn apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Verbinding verbroken. Sommige functies werken mogelijk niet. @@ -2463,6 +2505,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Rijen toege DocType: DocType,Setup,Opstelling apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} succesvol gemaakt apps/frappe/frappe/www/update-password.html,New Password,nieuw paswoord +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Selecteer veld apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Verlaat dit gesprek DocType: About Us Settings,Team Members,Teamleden DocType: Blog Settings,Writers Introduction,Writers Inleiding @@ -2532,13 +2575,12 @@ DocType: Chat Room,Name,Naam DocType: Communication,Email Template,Email sjabloon DocType: Energy Point Settings,Review Levels,Beoordeel de niveaus DocType: Print Format,Raw Printing,Raw Printing -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Kan {0} niet openen als het exemplaar geopend is +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,Kan {0} niet openen als het exemplaar geopend is DocType: DocType,"Make ""name"" searchable in Global Search",Maak "naam" doorzoekbaar in Global Search DocType: Data Migration Mapping,Data Migration Mapping,Data Migration Mapping DocType: Data Import,Partially Successful,Gedeeltelijk succesvol DocType: Communication,Error,Fout apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Veldtype kan niet worden gewijzigd van {0} in {1} in rij {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Fout bij verbinden met QZ Tray-toepassing ...

U moet de QZ Tray-applicatie geïnstalleerd en actief hebben om de functie Raw Print te gebruiken.

Klik hier om QZ Tray te downloaden en te installeren .
Klik hier voor meer informatie over Raw Printing ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Neem foto apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,Vermijd jaren die met jou zijn geassocieerd. DocType: Web Form,Allow Incomplete Forms,Onvolledige formulieren toestaan @@ -2634,7 +2676,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Selecteer target = "_blank" om te openen op een nieuwe pagina. DocType: Portal Settings,Portal Menu,Portal Menu DocType: Website Settings,Landing Page,Landingspagina -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,Meld u aan of log in om te beginnen DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Contactopties, zoals "Verkoopquery, ondersteuningsquery" enz., Elk op een nieuwe regel of gescheiden door komma's." apps/frappe/frappe/twofactor.py,Verfication Code,Verfication Code apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} is al uitgeschreven @@ -2720,6 +2761,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Data Migration DocType: Address,Sales User,Verkoopgebruiker apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Wijzig veldeigenschappen (verbergen, alleen lezen, toestemming, enz.)" DocType: Property Setter,Field Name,Veldnaam +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Klant DocType: Print Settings,Font Size,Lettertypegrootte DocType: User,Last Password Reset Date,Laatste wachtwoordherinstellingsdatum DocType: System Settings,Date and Number Format,Datum- en getalnotatie @@ -2785,6 +2827,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Groepsnode apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Samenvoegen met bestaande DocType: Blog Post,Blog Intro,Blog Intro apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nieuwe vermelding +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Spring naar veld DocType: Prepared Report,Report Name,Rapportnaam apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Vernieuwen om het nieuwste document te krijgen. apps/frappe/frappe/core/doctype/communication/communication.js,Close,Dichtbij @@ -2794,10 +2837,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Evenement DocType: Social Login Key,Access Token URL,Toegang tot token-URL apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Stel de Dropbox-toegangssleutels in uw site-configuratie in +DocType: Google Contacts,Google Contacts,Google-contacten DocType: User,Reset Password Key,Reset wachtwoordsleutel apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Aangepast door DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.","Vernieuwen, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Met succes opgeslagen +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Stuur een e-mail naar {0} om het hier te koppelen. DocType: File,Folder,Map DocType: DocField,Perm Level,Perm niveau DocType: Print Settings,Page Settings,Pagina-instellingen @@ -2827,6 +2873,7 @@ DocType: Workflow State,remove-sign,remove-teken DocType: Dashboard Chart,Full,vol DocType: DocType,User Cannot Create,Gebruiker kan niet maken apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Je hebt een punt van {0} behaald +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Stel in> Gebruiker DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Als u dit instelt, komt dit item in een vervolgkeuzelijst onder het geselecteerde bovenliggende item." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Geen e-mails apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Volgende velden ontbreken: @@ -2840,13 +2887,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Too DocType: Web Form,Web Form Fields,Webformuliervelden DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Door de gebruiker bewerkbaar formulier op de website. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Permanent annuleren {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Permanent annuleren {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Optie 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,totalen apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Dit is een heel gebruikelijk wachtwoord. DocType: Personal Data Deletion Request,Pending Approval,In afwachting van goedkeuring apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Het document kan niet correct worden toegewezen apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Niet toegestaan voor {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Geen waarden om weer te geven DocType: Personal Data Download Request,Personal Data Download Request,Verzoek tot downloaden van persoonlijke gegevens apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} heeft dit document gedeeld met {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Selecteer {0} @@ -2862,7 +2910,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Deze e-mail is verzonden naar {0} en gekopieerd naar {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,Ongeldige login of wachtwoord DocType: Social Login Key,Social Login Key,Social Login Key -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Stel de standaard e-mailaccount in via Instellingen> E-mail> E-mailaccount apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filters opgeslagen DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Hoe moet deze valuta worden geformatteerd? Als dit niet is ingesteld, worden de systeeminstellingen gebruikt" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} is ingesteld op staat {2} @@ -2988,6 +3035,7 @@ DocType: User,Location,Plaats apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Geen gegevens DocType: Website Meta Tag,Website Meta Tag,Website-metatag DocType: Workflow State,film,film +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Gekopieerd naar het klembord. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Instellingen niet gevonden apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Label is verplicht DocType: Webhook,Webhook Headers,Webhook-headers @@ -3196,7 +3244,7 @@ DocType: Address,Address Line 1,Adres regel 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Voor documenttype apps/frappe/frappe/model/base_document.py,Data missing in table,Gegevens ontbreken in tabel apps/frappe/frappe/utils/bot.py,Could not identify {0},Kon {0} niet identificeren -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Dit formulier is gewijzigd nadat je het hebt geladen +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Dit formulier is gewijzigd nadat je het hebt geladen apps/frappe/frappe/www/login.html,Back to Login,Terug naar Inloggen apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Niet ingesteld DocType: Data Migration Mapping,Pull,Trekken @@ -3264,6 +3312,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Kindentabeltoewijzing apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Instellingen e-mailaccount voer je wachtwoord in voor: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Te veel schrijft in één verzoek. Stuur alstublieft kleinere verzoeken DocType: Social Login Key,Salesforce,Verkoopsteam +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{0} van {1} importeren DocType: User,Tile,Tegel apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} ruimte moet minimaal één gebruiker hebben. DocType: Email Rule,Is Spam,Is spam @@ -3301,7 +3350,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,folder-close DocType: Data Migration Run,Pull Update,Trek aan update apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},samengevoegd {0} in {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Geen resultaten gevonden voor '

DocType: SMS Settings,Enter url parameter for receiver nos,Voer de url-parameter in voor ontvanger nrs apps/frappe/frappe/utils/jinja.py,Syntax error in template,Syntaxisfout in sjabloon apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Stel de waarde van filters in de tabel Rapportfilter in. @@ -3314,6 +3362,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Sorry, u be DocType: System Settings,In Days,In dagen DocType: Report,Add Total Row,Totale rij toevoegen apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Sessie start mislukt +DocType: Translation,Verified,geverifieerd DocType: Print Format,Custom HTML Help,Aangepaste HTML Help DocType: Address,Preferred Billing Address,Voorkeur factuuradres apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Toegewezen aan @@ -3328,7 +3377,6 @@ DocType: Help Article,Intermediate,tussen- DocType: Module Def,Module Name,module naam DocType: OAuth Authorization Code,Expiration time,Vervaltijd apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Stel standaardformaat, paginaformaat, afdrukstijl etc. in" -apps/frappe/frappe/desk/like.py,You cannot like something that you created,Je kunt iets dat je hebt gemaakt niet leuk vinden DocType: System Settings,Session Expiry,Session Expiry DocType: DocType,Auto Name,Auto naam apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Selecteer Bijlagen @@ -3356,6 +3404,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Systeempagina DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Opmerking: standaard worden e-mails voor mislukte back-ups verzonden. DocType: Custom DocPerm,Custom DocPerm,Aangepaste DocPerm +DocType: Translation,PR sent,PR verzonden DocType: Tag Doc Category,Doctype to Assign Tags,Doctype om tags toe te wijzen DocType: Address,Warehouse,Magazijn apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Dropbox instellen @@ -3423,7 +3472,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Enter om commentaar toe te voegen apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Veld {0} kan niet worden geselecteerd. DocType: User,Birth Date,Geboortedatum -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Met groepsinspringen DocType: List View Setting,Disable Count,Schakel tellen uit DocType: Contact Us Settings,Email ID,E-mail identiteit apps/frappe/frappe/utils/password.py,Incorrect User or Password,Onjuiste gebruiker of wachtwoord @@ -3458,6 +3506,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Met deze rol worden gebruikersmachtigingen voor een gebruiker bijgewerkt DocType: Website Theme,Theme,Thema DocType: Web Form,Show Sidebar,Zijbalk tonen +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google Contacts Integration. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Standaard Inbox apps/frappe/frappe/www/login.py,Invalid Login Token,Ongeldige login-token apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Stel eerst de naam in en sla de record op. @@ -3485,7 +3534,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Corrigeer alstublieft de DocType: Top Bar Item,Top Bar Item,Top Bar-item ,Role Permissions Manager,Role Permissions Manager -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,Er waren fouten. Rapporteer dit alstublieft. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} jaar (jaren) geleden apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Vrouw DocType: System Settings,OTP Issuer Name,OTP-uitgevernaam apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Toevoegen aan taken @@ -3585,6 +3634,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Instel apps/frappe/frappe/model/document.py,none of,geen van DocType: Desktop Icon,Page,Pagina DocType: Workflow State,plus-sign,plusteken +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Cache en reload wissen apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Kan niet updaten: onjuiste / verlopen link. DocType: Kanban Board Column,Yellow,Geel DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Aantal kolommen voor een veld in een raster (totale kolommen in een raster moeten kleiner zijn dan 11) @@ -3599,6 +3649,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Nieu DocType: Activity Log,Date,Datum DocType: Communication,Communication Type,Communicatietype apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Bovenliggende tabel +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Navigeer omhoog door de lijst DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Toon de volledige fout en laat rapportage van problemen toe aan de ontwikkelaar DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3620,7 +3671,6 @@ DocType: Notification Recipient,Email By Role,Email per rol apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,Voer een upgrade uit om meer dan {0} abonnees toe te voegen apps/frappe/frappe/email/queue.py,This email was sent to {0},Deze e-mail is verzonden naar {0} DocType: User,Represents a User in the system.,Vertegenwoordigt een gebruiker in het systeem. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Pagina {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Start de nieuwe indeling apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Voeg een reactie toe apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} van {1} diff --git a/frappe/translations/no.csv b/frappe/translations/no.csv index 1574d890ec..bd0591c431 100644 --- a/frappe/translations/no.csv +++ b/frappe/translations/no.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Aktiver gradienter DocType: DocType,Default Sort Order,Standard sorteringsordre apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Viser bare Numeriske felt fra Rapport +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Trykk på Alt-tasten for å utløse flere snarveier i menyen og sidefeltet DocType: Workflow State,folder-open,mappe-open DocType: Customize Form,Is Table,Er tabell apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Kan ikke åpne vedlagt fil. Eksporterte du det som CSV? DocType: DocField,No Copy,Ingen kopi DocType: Custom Field,Default Value,Standardverdi apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Legge til er obligatorisk for innkommende mails +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Synkroniser kontakter DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Data Migrering Kartlegging Detalj apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Slutt å følge apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",PDF-utskrift via "Raw Print" støttes ikke. Vennligst fjern skriverkortet i skriverinnstillinger og prøv igjen. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} og {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Det oppsto en feil ved lagring av filtre apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Skriv inn passordet ditt apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Kan ikke slette mapper for Hjem og Vedlegg +DocType: Email Account,Enable Automatic Linking in Documents,Aktiver automatisk kobling i dokumenter DocType: Contact Us Settings,Settings for Contact Us Page,Innstillinger for Kontakt oss side DocType: Social Login Key,Social Login Provider,Sosial innloggingsleverandør +DocType: Email Account,"For more information, click here.","For mer informasjon, klikk her ." DocType: Transaction Log,Previous Hash,Forrige Hash DocType: Notification,Value Changed,Verdi endret DocType: Report,Report Type,Rapport type @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Energipunktregel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,Vennligst skriv inn kunde-ID før sosial pålogging er aktivert DocType: Communication,Has Attachment,Har vedlegg DocType: User,Email Signature,E-post signatur -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} år siden ,Addresses And Contacts,Adresser og kontakter apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Denne Kanban styret vil være privat DocType: Data Migration Run,Current Mapping,Aktuell kartlegging @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Du velger Synkroniseringsalternativ som ALLE, Det vil resyncere alle \ lese samt ulest melding fra serveren. Dette kan også føre til duplisering av kommunikasjon (e-post)." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Sist synkronisert {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Kan ikke endre topptekstinnhold +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Ingen resultater funnet for '

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Ikke lov til å endre {0} etter innsending apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Søknaden har blitt oppdatert til en ny versjon, oppdater så denne siden" DocType: User,User Image,Brukerbilde @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Merk apps/frappe/frappe/public/js/frappe/chat.js,Discard,kast DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Velg et bilde med en bredde på 150 px med en gjennomsiktig bakgrunn for best resultat. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,tilbakefall +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} verdier valgt DocType: Blog Post,Email Sent,Epost sendt DocType: Communication,Read by Recipient On,Les av mottaker på DocType: User,Allow user to login only after this hour (0-24),Tillat brukeren å logge inn bare etter denne timen (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Modul for eksport DocType: DocType,Fields,Enger -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Du har ikke lov til å skrive ut dette dokumentet +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Du har ikke lov til å skrive ut dette dokumentet apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Parent apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Økten din er utløpt, vennligst logg inn igjen for å fortsette." DocType: Assignment Rule,Priority,Prioritet @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Tilbakestill OTP S DocType: DocType,UPPER CASE,STOR BOKSTAV apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,Vennligst sett inn e-postadresse DocType: Communication,Marked As Spam,Merket som spam +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,E-postadresse hvis Google Kontakter skal synkroniseres. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Importer abonnenter apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Lagre filter DocType: Address,Preferred Shipping Address,Foretrukket fraktadresse DocType: GCalendar Account,The name that will appear in Google Calendar,Navnet som vil vises i Google Kalender +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Klikk på {0} for å generere Refresh Token. DocType: Email Account,Disable SMTP server authentication,Deaktiver SMTP-serverautentisering DocType: Email Account,Total number of emails to sync in initial sync process ,Totalt antall e-poster som skal synkroniseres i første synkroniseringsprosess DocType: System Settings,Enable Password Policy,Aktiver passordspolicy @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Sett inn kode apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Ikke i DocType: Auto Repeat,Start Date,Startdato apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Sett diagram +DocType: Website Theme,Theme JSON,Tema JSON apps/frappe/frappe/www/list.py,My Account,Min konto DocType: DocType,Is Published Field,Er publisert felt DocType: DocField,Set non-standard precision for a Float or Currency field,Angi ikke-standard presisjon for et Float eller Currency-felt @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Legg til Reference: {{ reference_doctype }} {{ reference_name }} å sende dokumentreferanse DocType: LDAP Settings,LDAP First Name Field,LDAP Fornavn Felt apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Standard sending og innboks -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Oppsett> Tilpass skjema apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",For oppdatering kan du bare oppdatere selektive kolonner. apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',Standard for 'Sjekk' type felt må være enten '0' eller '1' apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Del dette dokumentet med @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Domener HTML DocType: Blog Settings,Blog Settings,Blogginnstillinger apps/frappe/frappe/core/doctype/doctype/doctype.py,"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 brev, og det kan bare bestå av bokstaver, tall, mellomrom og understreker" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Oppsett> Brukerrettigheter DocType: Communication,Integrations can use this field to set email delivery status,Integrasjoner kan bruke dette feltet til å angi leveringsstatus for e-post apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Stripe betalings gateway innstillinger DocType: Print Settings,Fonts,fonter DocType: Notification,Channel,Kanal DocType: Communication,Opened,åpnet DocType: Workflow Transition,Conditions,Forhold +apps/frappe/frappe/config/website.py,A user who posts blogs.,En bruker som legger inn blogger. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Har du ikke en konto? Melde deg på apps/frappe/frappe/utils/file_manager.py,Added {0},Lagt til {0} DocType: Newsletter,Create and Send Newsletters,Lag og send nyhetsbrev DocType: Website Settings,Footer Items,Footer-elementer +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Vennligst sett opp standard e-postkonto fra oppsett> e-post> e-postkonto DocType: Website Slideshow Item,Website Slideshow Item,Nettsted Slideshow-artikkel apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registrer OAuth Client App DocType: Error Snapshot,Frames,rammer @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Nivå 0 er for dokumentnivåtillatelser, \ høyere nivåer for feltnivåtillatelser." DocType: Address,City/Town,Sted / by DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Dette vil tilbakestille ditt nåværende tema, er du sikker på at du vil fortsette?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Obligatoriske felt som kreves i {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Feil under tilkobling til e-postkonto {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Det oppsto en feil under oppretting @@ -528,7 +537,7 @@ DocType: Event,Event Category,Hendelse Kategori apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Kolonner basert på apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Rediger overskrift DocType: Communication,Received,Mottatt -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Du har ikke lov til å få tilgang til denne siden. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Du har ikke lov til å få tilgang til denne siden. DocType: User Social Login,User Social Login,Bruker sosial pålogging apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,Skriv en Python-fil i samme mappe der dette er lagret og returner kolonne og resultat. DocType: Contact,Purchase Manager,Innkjøpssjef @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konf apps/frappe/frappe/utils/data.py,Operator must be one of {0},Operatøren må være en av {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Hvis Eier DocType: Data Migration Run,Trigger Name,Utløsernavn -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Skriv titler og introduksjoner til bloggen din. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Fjern felt apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Skjul alt apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Bakgrunnsfarge @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,Bar DocType: SMS Settings,Enter url parameter for message,Angi URL-parameter for melding apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nytt tilpasset utskriftsformat apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} eksisterer allerede +DocType: Workflow Document State,Is Optional State,Er Valgfri Stat DocType: Address,Purchase User,Kjøp bruker DocType: Data Migration Run,Insert,Sett inn DocType: Web Form,Route to Success Link,Rute til suksesslink @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Brukern DocType: File,Is Home Folder,Er hjemmemappe apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Type: DocType: Post,Is Pinned,Er festet -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Ingen tillatelse til '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Ingen tillatelse til '{0}' {1} DocType: Patch Log,Patch Log,Patch Log DocType: Print Format,Print Format Builder,Utskriftsformatbygger 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 aktivert, kan alle brukere logge inn fra en hvilken som helst IP-adresse ved hjelp av Two Factor Auth. Dette kan også settes bare for bestemte bruker (e) i Bruker side" apps/frappe/frappe/utils/data.py,only.,bare. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,Tilstanden '{0}' er ugyldig DocType: Auto Email Report,Day of Week,Ukedag +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Aktiver Google API i Google Innstillinger. DocType: DocField,Text Editor,Tekstredigerer apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Kutte opp apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Søk eller skriv en kommando @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,Antall DB-sikkerhetskopier kan ikke være mindre enn 1 DocType: Workflow State,ban-circle,ban-sirkel DocType: Data Export,Excel,utmerke +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Header, Breadcrumbs og Meta Tags" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Støtte Epostadresse Ikke Spesifisert DocType: Comment,Published,publisert DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.",Merk: For best resultat må bildene være av samme størrelse og bredden må være større enn høyden. @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Scheduler Last Event apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Rapport av alle dokumentaksjer DocType: Website Sidebar Item,Website Sidebar Item,Nettsteds sidepanelelement apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Å gjøre +DocType: Google Settings,Google Settings,Google Innstillinger apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Velg land, tidssone og valuta" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Skriv inn statiske url-parametere her (f.eks. Sender = ERPNext, brukernavn = ERPNext, passord = 1234 etc.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Ingen e-postkonto @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token ,Setup Wizard,Oppsettveiviseren apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Bytt diagram +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,synkronisering DocType: Data Migration Run,Current Mapping Action,Aktuell kartleggingshandling DocType: Email Account,Initial Sync Count,Initial Sync Count apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Innstillinger for Kontakt oss side. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Skriv ut formattype apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Ingen tillatelser angitt for dette kriteriet. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Utvid alle +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ingen standard adressemal funnet. Vennligst opprett en ny fra Oppsett> Utskrift og merkevarebygging> Adressemall. DocType: Tag Doc Category,Tag Doc Category,Tag Doc-kategori DocType: Data Import,Generated File,Generert fil apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Merknader @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Tidslinjefeltet må være en lenke eller dynamisk lenke DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Meldinger og bulkmails vil bli sendt fra denne utgående serveren. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Dette er et topp 100-vanlig passord. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Send Permanent {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Send Permanent {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} eksisterer ikke, velg et nytt mål for å slå sammen" DocType: Energy Point Rule,Multiplier Field,Multiplikatorfelt DocType: Workflow,Workflow State Field,Workflow State Field @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} verdsatt arbeidet ditt på {1} med {2} poeng DocType: Auto Email Report,Zero means send records updated at anytime,Null betyr at send poster oppdateres når som helst apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Verdien kan ikke endres for {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API-innstillinger. DocType: System Settings,Force User to Reset Password,Tving brukeren til å tilbakestille passord apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Rapport Builder-rapporter administreres direkte av rapportbyggeren. Ingenting å gjøre. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Rediger filter @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,for DocType: S3 Backup Settings,eu-north-1,eu-nord-en apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Bare en regel tillatt med samme rolle, nivå og {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Du har ikke lov til å oppdatere dette webskjemaet -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Maksimum vedleggsgrense for denne posten er nådd. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Maksimum vedleggsgrense for denne posten er nådd. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,Vennligst kontroller at referansekommunikasjonsdokumenter ikke er sirkulært knyttet. DocType: DocField,Allow in Quick Entry,Tillat i hurtigoppføring DocType: Error Snapshot,Locals,Lokalbefolkningen @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Unntakstype apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},Kan ikke slette eller avbryte fordi {0} {1} er koblet til {2} {3} {4} apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTP-hemmelig kan bare tilbakestilles av administratoren. -DocType: Web Form Field,Page Break,Sidebrudd DocType: Website Script,Website Script,Nettstedskript DocType: Integration Request,Subscription Notification,Abonnementsvarsling DocType: DocType,Quick Entry,Hurtig oppføring @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,Angi eiendom etter advarsel apps/frappe/frappe/__init__.py,Thank you,Takk skal du ha apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks for intern integrasjon apps/frappe/frappe/config/settings.py,Import Data,Importer data +DocType: Translation,Contributed Translation Doctype Name,Bidragt oversettelse doktypenavn DocType: Social Login Key,Office 365,Kontor 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID DocType: Review Level,Review Level,Review Nivå @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Vellykket ferdig apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Liste apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Sette pris på -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Ny {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Er Primærkontakt DocType: Print Format,Raw Commands,Råkommandoer apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Stilark for utskriftsformater @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Feil i bakgrunnsar apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Finn {0} i {1} DocType: Email Account,Use SSL,Bruk SSL DocType: DocField,In Standard Filter,I Standardfilter +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Ingen Google Kontakter til stede for å synkronisere. DocType: Data Migration Run,Total Pages,Totalt antall sider apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: Felt '{1}' kan ikke settes som unikt som det har ikke-unike verdier DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Hvis aktivert, vil brukerne bli varslet hver gang de logger inn. Hvis ikke aktivert, blir brukerne kun varslet en gang." @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,Automasjon apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Unzipping filer ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Søk etter '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Noe gikk galt -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Vennligst lagre før du legger til. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,Vennligst lagre før du legger til. DocType: Version,Table HTML,Tabell HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,hub DocType: Page,Standard,Standard @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Ingen resul apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} poster slettet apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,Noe gikk galt mens du genererte dropbox-tilgangstoken. Vennligst sjekk feillogg for mer informasjon. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Etterkommere av -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ingen standard adressemal funnet. Vennligst opprett en ny fra Oppsett> Utskrift og merkevarebygging> Adressemall. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Kontakter er konfigurert. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Skjul detaljer apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Font stiler apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Abonnementet ditt utløper på {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Autentisering mislyktes mens du mottok e-post fra e-postkonto {0}. Melding fra server: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Statistikk basert på forrige ukes ytelse (fra {0} til {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,Automatisk kobling kan bare aktiveres hvis Innkommende er aktivert. DocType: Website Settings,Title Prefix,Tittel prefiks apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Autentiseringsprogrammer du kan bruke er: DocType: Bulk Update,Max 500 records at a time,Maks 500 poster om gangen @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,Rapporter filtre apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Velg kolonner DocType: Event,Participants,deltakere DocType: Auto Repeat,Amended From,Endret fra -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Din informasjon er sendt inn +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Din informasjon er sendt inn DocType: Help Category,Help Category,Hjelp kategori apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 måned apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Velg et eksisterende format for å redigere eller starte et nytt format. @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Felt å spore DocType: User,Generate Keys,Generere nøkler DocType: Comment,Unshared,udelte -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,lagret +DocType: Translation,Saved,lagret DocType: OAuth Client,OAuth Client,OAuth Client DocType: System Settings,Disable Standard Email Footer,Deaktiver Standard Email Footer apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Utskriftsformat {0} er deaktivert @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Sist oppdater DocType: Data Import,Action,Handling apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Klient nøkkel er nødvendig DocType: Chat Profile,Notifications,Varsler +DocType: Translation,Contributed,bidratt DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy DocType: Report,Custom Report,Tilpasset rapport DocType: Workflow State,info-sign,info-skilt @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Ta kontakt med DocType: LDAP Settings,LDAP Username Field,LDAP brukernavn felt apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} -feltet kan ikke angis som unikt i {1}, da det finnes ikke-eksisterende eksisterende verdier" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Oppsett> Tilpass skjema DocType: User,Social Logins,Sosiale logins DocType: Workflow State,Trash,Søppel DocType: Stripe Settings,Secret Key,Hemmelig nøkkel @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,Tittelfelt apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Kunne ikke koble til utgående e-postserver DocType: File,File URL,Filadresse DocType: Help Article,Likes,liker +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google Kontakter Integrasjon er deaktivert. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Du må være logget inn og ha System Manager Roll for å kunne få tilgang til sikkerhetskopier. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Første nivå DocType: Blogger,Short Name,Kort navn @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Importer Zip DocType: Contact,Gender,Kjønn DocType: Workflow State,thumbs-down,tommel ned -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Køen bør være en av {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Kan ikke angi varsling på dokumenttype {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Legge til systemadministrator til denne brukeren, da det må være minst en systemadministrator" apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Velkommen e-post sendt DocType: Transaction Log,Chaining Hash,Chaining Hash DocType: Contact,Maintenance Manager,Vedlikeholdsleder +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Til sammenligning bruk> 5, <10 eller = 324. For områder, bruk 5:10 (for verdier mellom 5 og 10)." apps/frappe/frappe/utils/bot.py,show,vise fram apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Del nettadresse apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Ikke-støttet filformat @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,Melding DocType: Data Import,Show only errors,Vis bare feil DocType: Energy Point Log,Review,Anmeldelse apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Rader fjernet -DocType: GSuite Settings,Google Credentials,Google-legitimasjon +DocType: Google Settings,Google Credentials,Google-legitimasjon apps/frappe/frappe/www/login.html,Or login with,Eller logg inn med apps/frappe/frappe/model/document.py,Record does not exist,Posten finnes ikke apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Nytt rapportnavn @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,Liste DocType: Workflow State,th-large,th-large apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Kan ikke angi Tilordne Send inn hvis ikke Submitterbar apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Ikke knyttet til noen post +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Feil ved å koble til QZ-skuffeprogram ...

Du må ha QZ Tray-programmet installert og kjørt, for å bruke Raw Print-funksjonen.

Klikk her for å laste ned og installer QZ skuff .
Klikk her for å lære mer om Raw Printing ." DocType: Chat Message,Content,Innhold DocType: Workflow Transition,Allow Self Approval,Tillat selv godkjenning apps/frappe/frappe/www/qrcode.py,Page has expired!,Siden er utløpt! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,hånd høyre DocType: Website Settings,Banner is above the Top Menu Bar.,Banner er over toppmenyen. apps/frappe/frappe/www/update-password.html,Invalid Password,Ugyldig passord apps/frappe/frappe/utils/data.py,1 month ago,1 måned siden +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Tillat tilgang til Google Kontakter DocType: OAuth Client,App Client ID,App Client ID DocType: DocField,Currency,Valuta DocType: Website Settings,Banner,banner @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Mål DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Hvis en rolle ikke har tilgang på nivå 0, er høyere nivåer meningsløse." DocType: ToDo,Reference Type,Referansetype -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Tillater DocType, DocType. Vær forsiktig!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Tillater DocType, DocType. Vær forsiktig!" DocType: Domain Settings,Domain Settings,Domain Settings DocType: Auto Email Report,Dynamic Report Filters,Dynamiske rapportfiltre DocType: Energy Point Log,Appreciation,Verdsettelse @@ -1468,6 +1489,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,oss-vest-2 DocType: DocType,Is Single,Er singel apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Opprett et nytt format +DocType: Google Contacts,Authorize Google Contacts Access,Tillat tilgang til Google Kontakter DocType: S3 Backup Settings,Endpoint URL,Endpoint-URL DocType: Social Login Key,Google,Google DocType: Contact,Department,Avdeling @@ -1482,7 +1504,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Tilordne til DocType: List Filter,List Filter,Listefilter DocType: Dashboard Chart Link,Chart,Chart apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Kan ikke fjerne -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Send inn dette dokumentet for å bekrefte +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Send inn dette dokumentet for å bekrefte apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} eksisterer allerede. Velg et annet navn apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Du har ubehandlede endringer i dette skjemaet. Vennligst lagre før du fortsetter. apps/frappe/frappe/model/document.py,Action Failed,Handlingen mislyktes @@ -1564,6 +1586,7 @@ DocType: DocField,Display,Vise apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Svar alle DocType: Calendar View,Subject Field,Emnefelt apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Sesjonens utløp må være i format {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},Søknad: {0} DocType: Workflow State,zoom-in,zoom inn apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Kunne ikke koble til serveren apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Dato {0} må være i format: {1} @@ -1575,8 +1598,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Ikonet vises på knappen DocType: Role Permission for Page and Report,Set Role For,Sett rolle for +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Automatisk kobling kan bare aktiveres for en e-postkonto. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Ingen e-postkontoer tildelt +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-postkonto ikke oppsett. Vennligst opprett en ny e-postkonto fra Oppsett> E-post> E-postkonto apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Oppdrag +DocType: Google Contacts,Last Sync On,Siste synkronisering på apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},oppnådd av {0} via automatisk regel {1} apps/frappe/frappe/config/website.py,Portal,Portal apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Takk for din e-post @@ -1597,7 +1623,6 @@ DocType: GSuite Settings,GSuite Settings,GSuite Innstillinger DocType: Integration Request,Remote,Remote DocType: File,Thumbnail URL,Thumbnail URL apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Last ned rapport -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Oppsett> Bruker apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Tilpasninger for {0} eksportert til:
{1} DocType: GCalendar Account,Calendar Name,Kalendernavn apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Ditt påloggings-ID er @@ -1647,6 +1672,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Gå t apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Bildefeltet må være et gyldig feltnavn apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,Du må være logget inn for å få tilgang til denne siden DocType: Assignment Rule,Example: {{ subject }},Eksempel: {{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Feltnavn {0} er begrenset apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Du kan ikke deaktivere 'Read Only' for feltet {0} DocType: Social Login Key,Enable Social Login,Aktiver sosial pålogging DocType: Workflow,Rules defining transition of state in the workflow.,Regler som definerer overgang av stat i arbeidsflyten. @@ -1667,10 +1693,10 @@ DocType: Website Settings,Route Redirects,Rute omadresser apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,E-post innboks apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},gjenopprettet {0} som {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Tilordne dokumenter til brukere automatisk +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Åpne Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,E-postmaler for vanlige spørsmål. DocType: Letter Head,Letter Head Based On,Brevhode basert på apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Vennligst lukk dette vinduet -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Betaling Fullført DocType: Contact,Designation,betegnelse DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Meta Tags @@ -1709,6 +1735,7 @@ DocType: System Settings,Choose authentication method to be used by all users,Ve DocType: Error Snapshot,Parent Error Snapshot,Foreldrefeil-stillbilde DocType: GCalendar Account,GCalendar Account,GCalendar-konto DocType: Language,Language Name,Språknavn +DocType: Workflow Document State,Workflow Action is not created for optional states,Arbeidsflyt Handling er ikke opprettet for valgfrie stater DocType: Customize Form,Customize Form,Tilpass skjema DocType: DocType,Image Field,Bildefelt apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Lagt til {0} ({1}) @@ -1750,6 +1777,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,Bruk denne regelen hvis brukeren er eieren DocType: About Us Settings,Org History Heading,Org Historikk Overskrift apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,serverfeil +DocType: Contact,Google Contacts Description,Google Kontakter Beskrivelse apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Standardroller kan ikke omdøpes DocType: Review Level,Review Points,Gjennomgang poeng apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Manglende parameter Kanban Board Name @@ -1767,7 +1795,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Ikke i utviklingsmodus! Sett inn på site_config.json eller gjør 'Custom' DocType. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,fikk {0} poeng DocType: Web Form,Success Message,Suksessmelding -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Til sammenligning bruk> 5, <10 eller = 324. For områder, bruk 5:10 (for verdier mellom 5 og 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Beskrivelse for oppføringsside, i ren tekst, bare et par linjer. (maks 140 tegn)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Vis tillatelser DocType: DocType,Restrict To Domain,Begrens til domene @@ -1789,6 +1816,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Ikke f apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Sett antall DocType: Auto Repeat,End Date,Sluttdato DocType: Workflow Transition,Next State,Neste stat +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Google Kontakter synkronisert. DocType: System Settings,Is First Startup,Er første oppstart apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},oppdatert til {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Flytte til @@ -1838,6 +1866,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Kalender apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Data Import Template DocType: Workflow State,hand-left,hånd-venstre +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Velg flere listeposter apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Sikkerhetskopieringsstørrelse: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Koblet til {0} DocType: Braintree Settings,Private Key,Privat nøkkel @@ -1880,13 +1909,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Renter DocType: Bulk Update,Limit,Grense DocType: Print Settings,Print taxes with zero amount,Skriv ut avgifter med null beløp -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-postkonto ikke oppsett. Vennligst opprett en ny e-postkonto fra Oppsett> E-post> E-postkonto DocType: Workflow State,Book,Bok DocType: S3 Backup Settings,Access Key ID,Tilgangsnøkkel-ID DocType: Chat Message,URLs,webadresser apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Navn og etternavn av seg selv er lett å gjette. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Rapport {0} DocType: About Us Settings,Team Members Heading,Lagmedlems overskrift +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Velg listen element apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Dokumentet {0} er satt til å angi {1} av {2} DocType: Address Template,Address Template,Adressemall DocType: Workflow State,step-backward,trinn bakover @@ -1910,6 +1939,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Eksporter egendefinerte tillatelser apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Ingen: Slutten av arbeidsflyten DocType: Version,Version,Versjon +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Åpne liste element apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 måneder DocType: Chat Message,Group,Gruppe apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Det er noe problem med filadressen: {0} @@ -1965,6 +1995,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 år apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} vendte om poengene dine på {1} DocType: Workflow State,arrow-down,pil-ned DocType: Data Import,Ignore encoding errors,Ignorer kodingsfeil +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Landskap DocType: Letter Head,Letter Head Name,Brevnavn DocType: Web Form,Client Script,Client Script DocType: Assignment Rule,Higher priority rule will be applied first,Høyere prioritetsregel vil bli brukt først @@ -2009,6 +2040,7 @@ DocType: Kanban Board Column,Green,Grønn apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Bare obligatoriske felt er nødvendige for nye poster. Du kan slette ikke-obligatoriske kolonner hvis du ønsker det. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} må begynne og slutte med et brev og kan bare inneholde bokstaver, bindestrek eller understrek." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Trigger Primary Action apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Opprett bruker e-post apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Sorteringsfelt {0} må være et gyldig feltnavn DocType: Auto Email Report,Filter Meta,Filter Meta @@ -2038,6 +2070,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Tidslinjefelt apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Laster ... DocType: Auto Email Report,Half Yearly,Halvårlig +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Min profil apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Sist endret dato DocType: Contact,First Name,Fornavn DocType: Post,Comments,kommentarer @@ -2060,6 +2093,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Innholdshash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Innlegg av {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} tildelt {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Ingen nye Google-kontakter synkronisert. DocType: Workflow State,globe,kloden apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Gjennomsnittlig for {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Fjern feillogger @@ -2086,6 +2120,8 @@ DocType: Workflow State,Inverse,Omvendt DocType: Activity Log,Closed,Lukket DocType: Report,Query,Spørsmål DocType: Notification,Days After,Dager etter +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Snarveier +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portrett apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Forespørselen ble tidsavbrutt DocType: System Settings,Email Footer Address,E-postadressen til e-postadressen apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energipunkt oppdatering @@ -2113,6 +2149,7 @@ For Select, enter list of Options, each on a new line.","For Lister, skriv inn D apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,For 1 minutt siden apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Ingen aktive økter apps/frappe/frappe/model/base_document.py,Row,Rad +DocType: Contact,Middle Name,Mellomnavn apps/frappe/frappe/public/js/frappe/request.js,Please try again,"Vær så snill, prøv på nytt" DocType: Dashboard Chart,Chart Options,Diagramalternativer DocType: Data Migration Run,Push Failed,Push mislyktes @@ -2141,6 +2178,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,endre størrelse-small DocType: Comment,Relinked,Relinked DocType: Role Permission for Page and Report,Roles HTML,Roller HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Gå apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Workflow starter etter lagring. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Hvis dataene dine er i HTML, vennligst kopier inn den eksakte HTML-koden med kodene." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Datoer er ofte enkle å gjette. @@ -2169,7 +2207,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Skrivebordsikon apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,kansellerte dette dokumentet apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Datointervall -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Oppsett> Brukerrettigheter apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} verdsatt {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Verdiene endret apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Feil i varsling @@ -2234,6 +2271,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Bulk Slett DocType: DocShare,Document Name,Dokumentnavn apps/frappe/frappe/config/customization.py,Add your own translations,Legg til dine egne oversettelser +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Naviger listen ned DocType: S3 Backup Settings,eu-central-1,eu central-1- DocType: Auto Repeat,Yearly,årlig apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Gi nytt navn @@ -2284,6 +2322,7 @@ DocType: Workflow State,plane,fly apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Nestet sett feil. Ta kontakt med administratoren. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Vis rapport DocType: Auto Repeat,Auto Repeat Schedule,Auto Repeat Schedule +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Se Ref DocType: Address,Office,Kontor DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} dager siden @@ -2317,7 +2356,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Ma apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Mine innstillinger apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Gruppens navn kan ikke være tomt. DocType: Workflow State,road,vei -DocType: Website Route Redirect,Source,Kilde +DocType: Contact,Source,Kilde apps/frappe/frappe/www/third_party_apps.html,Active Sessions,aktiv økt apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Det kan bare være én Fold i et skjema apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Ny chat @@ -2339,6 +2378,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Vennligst skriv inn Godkjent nettadresse DocType: Email Account,Send Notification to,Send varsling til apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox-sikkerhetskopieringsinnstillinger +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,Noe gikk galt under token-generasjonen. Klikk på {0} for å generere en ny. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Fjern alle tilpasninger? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Bare administrator kan redigere DocType: Auto Repeat,Reference Document,Referansedokument @@ -2363,6 +2403,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Roller kan settes for brukere fra deres brukerside. DocType: Website Settings,Include Search in Top Bar,Inkluder søk i topplinjen apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Urgent] Feil mens du oppretter tilbakevendende% s for% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globale snarveier DocType: Help Article,Author,Forfatter DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Ingen dokument funnet for gitt filtre @@ -2398,10 +2439,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, rad {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Hvis du laster opp nye poster, blir "Naming Series" obligatorisk, hvis den er til stede." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Rediger egenskaper -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Kan ikke åpne forekomst når {0} er åpen +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,Kan ikke åpne forekomst når {0} er åpen DocType: Activity Log,Timeline Name,Tidslinje navn DocType: Comment,Workflow,arbeidsflyt apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Vennligst sett grunnleggende nettadresse i sosiale innloggingsnøkkel for Frappe +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Tastatursnarveier DocType: Portal Settings,Custom Menu Items,Egendefinerte menyelementer apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,Lengden på {0} bør være mellom 1 og 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Forbindelse mistet. Noen funksjoner fungerer kanskje ikke. @@ -2464,6 +2506,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Rader lagt DocType: DocType,Setup,Setup apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} ble opprettet apps/frappe/frappe/www/update-password.html,New Password,Nytt passord +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Velg felt apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,La denne samtalen gå DocType: About Us Settings,Team Members,Lag medlemmer DocType: Blog Settings,Writers Introduction,Forfattere Innledning @@ -2533,13 +2576,12 @@ DocType: Chat Room,Name,Navn DocType: Communication,Email Template,E-postskjema DocType: Energy Point Settings,Review Levels,Gjennomgå nivåer DocType: Print Format,Raw Printing,Råutskrift -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Kan ikke åpne {0} når forekomsten er åpen +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,Kan ikke åpne {0} når forekomsten er åpen DocType: DocType,"Make ""name"" searchable in Global Search",Lag "navn" søkbare i Global Search DocType: Data Migration Mapping,Data Migration Mapping,Data Migrering Kartlegging DocType: Data Import,Partially Successful,Delvis vellykket DocType: Communication,Error,Feil apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Felttype kan ikke endres fra {0} til {1} i rad {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Feil ved å koble til QZ-skuffeprogram ...

Du må ha QZ Tray-programmet installert og kjørt, for å bruke Raw Print-funksjonen.

Klikk her for å laste ned og installer QZ skuff .
Klikk her for å lære mer om Raw Printing ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Ta bilde apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,Unngå år som er knyttet til deg. DocType: Web Form,Allow Incomplete Forms,Tillat ufullstendige skjemaer @@ -2635,7 +2677,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Velg mål = "_blank" for å åpne på en ny side. DocType: Portal Settings,Portal Menu,Portal Menu DocType: Website Settings,Landing Page,Destinasjonsside -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,Vennligst registrer deg eller logg inn for å begynne DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontaktalternativer, som "Salgsquery, Support Query" osv. Hver på en ny linje eller atskilt med kommaer." apps/frappe/frappe/twofactor.py,Verfication Code,Verfication Code apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} er allerede avmeldt @@ -2721,6 +2762,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Dataoverføring DocType: Address,Sales User,Salg Bruker apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Endre feltegenskaper (skjul, lese, tillatelse etc.)" DocType: Property Setter,Field Name,Feltnavn +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Kunde DocType: Print Settings,Font Size,Skriftstørrelse DocType: User,Last Password Reset Date,Siste passord tilbakestillingsdato DocType: System Settings,Date and Number Format,Dato og nummerformat @@ -2786,6 +2828,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Gruppe Node apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Slå sammen med eksisterende DocType: Blog Post,Blog Intro,Blog Intro apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nytt omtale +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Hopp til feltet DocType: Prepared Report,Report Name,Rapportnavn apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Vennligst oppdatere for å få det nyeste dokumentet. apps/frappe/frappe/core/doctype/communication/communication.js,Close,Lukk @@ -2795,10 +2838,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Begivenhet DocType: Social Login Key,Access Token URL,Tilgangstoken URL apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Vennligst sett inn Dropbox-tilgangsnøkler på nettstedet ditt config +DocType: Google Contacts,Google Contacts,Google Kontakter DocType: User,Reset Password Key,Tilbakestill passordnøkkel apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Modifisert av DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.","For å forny, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Lagret +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Send en epost til {0} for å lenke den her. DocType: File,Folder,Mappe DocType: DocField,Perm Level,Perm nivå DocType: Print Settings,Page Settings,Sideinnstillinger @@ -2828,6 +2874,7 @@ DocType: Workflow State,remove-sign,fjern-skilt DocType: Dashboard Chart,Full,Full DocType: DocType,User Cannot Create,Brukeren kan ikke opprette apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Du har fått {0} poeng +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Oppsett> Bruker DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Hvis du angir dette, kommer denne varen i en rullegardin under den valgte forelder." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Ingen e-post apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Følgende felter mangler: @@ -2841,13 +2888,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Vis DocType: Web Form,Web Form Fields,Webformfelt DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Brukerredigerbar skjema på nettsiden. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Permanent Avbryt {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Permanent Avbryt {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Alternativ 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,Totals apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Dette er et veldig vanlig passord. DocType: Personal Data Deletion Request,Pending Approval,Venter på godkjenning apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Dokumentet kunne ikke tilordnes riktig apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Ikke tillatt for {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Ingen verdier å vise DocType: Personal Data Download Request,Personal Data Download Request,Personlig nedlastingsforespørsel apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} delte dette dokumentet med {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Velg {0} @@ -2863,7 +2911,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Denne e-posten ble sendt til {0} og kopiert til {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,ugyldig brukernavn eller passord DocType: Social Login Key,Social Login Key,Sosial innloggingstast -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Vennligst sett opp standard e-postkonto fra oppsett> e-post> e-postkonto apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filtre lagret DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Hvordan skal denne valutaen formateres? Hvis ikke satt, vil systemet bruke standardinnstillinger" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} er satt til tilstand {2} @@ -2989,6 +3036,7 @@ DocType: User,Location,plassering apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Ingen data DocType: Website Meta Tag,Website Meta Tag,Nettsted Meta Tag DocType: Workflow State,film,film +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Kopiert til utklippstavlen. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Innstillinger ikke funnet apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Etikett er obligatorisk DocType: Webhook,Webhook Headers,Webhook Headers @@ -3197,7 +3245,7 @@ DocType: Address,Address Line 1,Adresselinje 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,For dokumenttype apps/frappe/frappe/model/base_document.py,Data missing in table,Data mangler i tabellen apps/frappe/frappe/utils/bot.py,Could not identify {0},Kunne ikke identifisere {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Dette skjemaet er endret etter at du har lastet det +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Dette skjemaet er endret etter at du har lastet det apps/frappe/frappe/www/login.html,Back to Login,Tilbake til innlogging apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Ikke satt DocType: Data Migration Mapping,Pull,Dra @@ -3265,6 +3313,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Barnbordsmapping apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,"Oppsett av e-postkonto, skriv inn passordet ditt for:" apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,For mange skriver i en forespørsel. Vennligst send mindre forespørsler DocType: Social Login Key,Salesforce,Salesforce +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importerer {0} av {1} DocType: User,Tile,Tile apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} rom må ha minst én bruker. DocType: Email Rule,Is Spam,Er spam @@ -3302,7 +3351,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,mappe-close DocType: Data Migration Run,Pull Update,Pull Update apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},fusjonerte {0} til {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Ingen resultater funnet for '

DocType: SMS Settings,Enter url parameter for receiver nos,Skriv inn url-parameter for mottaker nr apps/frappe/frappe/utils/jinja.py,Syntax error in template,Syntaksfeil i mal apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Vennligst sett filtreverdien i Rapportfilter-tabellen. @@ -3315,6 +3363,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Beklager, d DocType: System Settings,In Days,I dager DocType: Report,Add Total Row,Legg til totalt antall apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Session Start mislyktes +DocType: Translation,Verified,verifisert DocType: Print Format,Custom HTML Help,Egendefinert HTML-hjelp DocType: Address,Preferred Billing Address,Foretrukket faktureringsadresse apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Tilordnet @@ -3329,7 +3378,6 @@ DocType: Help Article,Intermediate,mellom~~POS=TRUNC DocType: Module Def,Module Name,Modulnavn DocType: OAuth Authorization Code,Expiration time,Utløpstid apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Angi standardformat, sidestørrelse, utskriftsstil etc." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,Du kan ikke like noe du opprettet DocType: System Settings,Session Expiry,Sesjonens utløp DocType: DocType,Auto Name,Automatisk navn apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Velg Vedlegg @@ -3357,6 +3405,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,System side DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Merk: Som standard sendes e-postmeldinger for mislykkede sikkerhetskopier. DocType: Custom DocPerm,Custom DocPerm,Tilpasset DocPerm +DocType: Translation,PR sent,PR sendt DocType: Tag Doc Category,Doctype to Assign Tags,Doktype for å tilordne etiketter DocType: Address,Warehouse,Lager apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Dropbox Setup @@ -3424,7 +3473,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Enter for å legge til kommentar apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Felt {0} kan ikke velges. DocType: User,Birth Date,Bursdag -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Med Group Indentation DocType: List View Setting,Disable Count,Deaktiver telle DocType: Contact Us Settings,Email ID,Epost id apps/frappe/frappe/utils/password.py,Incorrect User or Password,Feil bruker eller passord @@ -3459,6 +3507,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Denne rollen oppdaterer brukerrettigheter for en bruker DocType: Website Theme,Theme,Tema DocType: Web Form,Show Sidebar,Vis sidefelt +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google Kontakter Integrasjon. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Standard innboks apps/frappe/frappe/www/login.py,Invalid Login Token,Ugyldig påloggingsattest apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Først angi navnet og lagre posten. @@ -3486,7 +3535,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Vennligst korrigér DocType: Top Bar Item,Top Bar Item,Top Bar Item ,Role Permissions Manager,Rolle Tillatelse Manager -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,Det var feil. Vennligst rapporter dette. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} år siden apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Hunn DocType: System Settings,OTP Issuer Name,OTP Utstedernavn apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Legg til for å gjøre @@ -3586,6 +3635,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Innsti apps/frappe/frappe/model/document.py,none of,ingen av DocType: Desktop Icon,Page,Side DocType: Workflow State,plus-sign,pluss-tegn +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Slett Cache og Oppdater apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Kan ikke oppdatere: Feil / Utløpt Link. DocType: Kanban Board Column,Yellow,Gul DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Antall kolonner for et felt i et rutenett (Totalt kolonner i et rutenett skal være mindre enn 11) @@ -3600,6 +3650,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Nytt DocType: Activity Log,Date,Dato DocType: Communication,Communication Type,Kommunikasjonstype apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Foreldrebord +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Naviger listen opp DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Vis full feil og tillat rapportering av problemer til utvikleren DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3621,7 +3672,6 @@ DocType: Notification Recipient,Email By Role,E-post etter rolle apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,Vennligst oppgrader for å legge til flere enn {0} abonnenter apps/frappe/frappe/email/queue.py,This email was sent to {0},Denne e-posten ble sendt til {0} DocType: User,Represents a User in the system.,Representerer en bruker i systemet. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Side {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Start nytt format apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Legg til en kommentar apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} av {1} diff --git a/frappe/translations/pl.csv b/frappe/translations/pl.csv index aed1bad682..3d0f441dba 100644 --- a/frappe/translations/pl.csv +++ b/frappe/translations/pl.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Włącz gradienty DocType: DocType,Default Sort Order,Domyślny porządek sortowania apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Wyświetlanie tylko pól numerycznych z raportu +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,"Naciśnij klawisz Alt, aby uruchomić dodatkowe skróty w menu i pasku bocznym" DocType: Workflow State,folder-open,folder otwarty DocType: Customize Form,Is Table,Jest tabelą apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Nie można otworzyć załączonego pliku. Czy wyeksportowałeś go jako CSV? DocType: DocField,No Copy,Brak kopii DocType: Custom Field,Default Value,Domyślna wartość apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Dołącz do jest obowiązkowe dla przychodzących wiadomości +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Synchronizacja kontaktów DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Szczegóły mapowania migracji danych apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Nie obserwuj apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",Drukowanie PDF za pomocą „Raw Print” nie jest jeszcze obsługiwane. Usuń mapowanie drukarki w Ustawieniach drukarki i spróbuj ponownie. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} i {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Wystąpił błąd podczas zapisywania filtrów apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Wprowadź hasło apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Nie można usunąć folderów Home i Załączniki +DocType: Email Account,Enable Automatic Linking in Documents,Włącz automatyczne łączenie w dokumentach DocType: Contact Us Settings,Settings for Contact Us Page,Ustawienia kontaktu Strona DocType: Social Login Key,Social Login Provider,Dostawca logowania społecznego +DocType: Email Account,"For more information, click here.","Aby uzyskać więcej informacji, kliknij tutaj ." DocType: Transaction Log,Previous Hash,Poprzedni Hash DocType: Notification,Value Changed,Zmieniono wartość DocType: Report,Report Type,Typ raportu @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Reguła punktu energetycznego apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,Wprowadź identyfikator klienta przed włączeniem logowania społecznościowego DocType: Communication,Has Attachment,Ma załącznik DocType: User,Email Signature,Podpis E-mail -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} rok (lat) temu ,Addresses And Contacts,Adresy i kontakty apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Ta Rada Kanban będzie prywatna DocType: Data Migration Run,Current Mapping,Bieżące mapowanie @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Wybierasz opcję Sync jako WSZYSTKO, ponownie zsynchronizuje wszystkie wiadomości oraz nieprzeczytaną wiadomość z serwera. Może to również powodować powielanie komunikacji (e-maile)." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Ostatnia synchronizacja {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Nie można zmienić treści nagłówka +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Nie znaleziono wyników dla '

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Nie wolno zmieniać {0} po przesłaniu apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page",Aplikacja została zaktualizowana do nowej wersji. Odśwież tę stronę DocType: User,User Image,Obraz użytkownika @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Oznac apps/frappe/frappe/public/js/frappe/chat.js,Discard,Odrzucać DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,"Wybierz obraz o szerokości około 150 pikseli z przezroczystym tłem, aby uzyskać najlepsze wyniki." apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,Nawrócony +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Wybrano wartości {0} DocType: Blog Post,Email Sent,E-mail wysłany DocType: Communication,Read by Recipient On,Przeczytane przez Odbiorcę Wł DocType: User,Allow user to login only after this hour (0-24),Zezwalaj użytkownikowi na logowanie dopiero po tej godzinie (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Moduł do eksportu DocType: DocType,Fields,Pola -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Nie możesz wydrukować tego dokumentu +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Nie możesz wydrukować tego dokumentu apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Rodzic apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Twoja sesja wygasła, zaloguj się ponownie, aby kontynuować." DocType: Assignment Rule,Priority,Priorytet @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Zresetuj OTP Secre DocType: DocType,UPPER CASE,DUŻE LITERY apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,Ustaw adres e-mail DocType: Communication,Marked As Spam,Oznaczono jako spam +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"Adres e-mail, którego kontakty Google mają być synchronizowane." apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Importuj subskrybentów apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Zapisz filtr DocType: Address,Preferred Shipping Address,Preferowany adres wysyłki DocType: GCalendar Account,The name that will appear in Google Calendar,"Nazwa, która pojawi się w Kalendarzu Google" +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,"Kliknij {0}, aby wygenerować Refresh Token." DocType: Email Account,Disable SMTP server authentication,Wyłącz uwierzytelnianie serwera SMTP DocType: Email Account,Total number of emails to sync in initial sync process ,Całkowita liczba wiadomości e-mail do synchronizacji w początkowym procesie synchronizacji DocType: System Settings,Enable Password Policy,Włącz zasady haseł @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Wprowadź kod apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Nie w DocType: Auto Repeat,Start Date,Data rozpoczęcia apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Ustaw wykres +DocType: Website Theme,Theme JSON,Motyw JSON apps/frappe/frappe/www/list.py,My Account,Moje konto DocType: DocType,Is Published Field,Jest publikowane pole DocType: DocField,Set non-standard precision for a Float or Currency field,Ustaw niestandardową precyzję dla pola Pływak lub Waluta @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Dodaj Reference: {{ reference_doctype }} {{ reference_name }} aby wysłać odwołanie do dokumentu DocType: LDAP Settings,LDAP First Name Field,Pole imienia LDAP apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Domyślne wysyłanie i skrzynka odbiorcza -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Konfiguracja> Dostosuj formularz apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",Do aktualizacji można aktualizować tylko selektywne kolumny. apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',Domyślnym typem pola „Sprawdź” musi być „0” lub „1” apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Udostępnij ten dokument za pomocą @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Domeny HTML DocType: Blog Settings,Blog Settings,Ustawienia bloga apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Nazwa DocType powinna zaczynać się od litery i może składać się tylko z liter, cyfr, spacji i podkreśleń" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Konfiguracja> Uprawnienia użytkownika DocType: Communication,Integrations can use this field to set email delivery status,Integracja może użyć tego pola do ustawienia statusu dostarczania wiadomości e-mail apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Ustawienia bramki płatności za paski DocType: Print Settings,Fonts,Czcionki DocType: Notification,Channel,Kanał DocType: Communication,Opened,Otwierany DocType: Workflow Transition,Conditions,Warunki +apps/frappe/frappe/config/website.py,A user who posts blogs.,Użytkownik publikujący blogi. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Nie masz konta? Zapisz się apps/frappe/frappe/utils/file_manager.py,Added {0},Dodano {0} DocType: Newsletter,Create and Send Newsletters,Twórz i wysyłaj biuletyny DocType: Website Settings,Footer Items,Elementy stopki +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Skonfiguruj domyślne konto e-mail z menu Ustawienia> E-mail> Konto e-mail DocType: Website Slideshow Item,Website Slideshow Item,Element pokazu slajdów w witrynie apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Zarejestruj aplikację klienta OAuth DocType: Error Snapshot,Frames,Ramki @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Poziom 0 dotyczy uprawnień na poziomie dokumentu, wyższy poziom uprawnień na poziomie pola." DocType: Address,City/Town,Miasto DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Spowoduje to zresetowanie bieżącego motywu, czy na pewno chcesz kontynuować?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Wymagane pola obowiązkowe w {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Błąd podczas łączenia się z kontem e-mail {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Wystąpił błąd podczas tworzenia cyklicznego @@ -528,7 +537,7 @@ DocType: Event,Event Category,Kategoria wydarzenia apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Kolumny oparte na apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Edytuj nagłówek DocType: Communication,Received,Odebrane -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Nie masz dostępu do tej strony. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Nie masz dostępu do tej strony. DocType: User Social Login,User Social Login,Login społecznościowy użytkownika apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,"Napisz plik Pythona w tym samym folderze, w którym jest zapisany, i zwróć kolumnę i wynik." DocType: Contact,Purchase Manager,Menedżer zakupów @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konf apps/frappe/frappe/utils/data.py,Operator must be one of {0},Operator musi być jednym z {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Jeśli właściciel DocType: Data Migration Run,Trigger Name,Nazwa wyzwalacza -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Napisz tytuły i wprowadzenia do swojego bloga. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Usuń pole apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Zwinąć wszystkie apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Kolor tła @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,Bar DocType: SMS Settings,Enter url parameter for message,Wprowadź parametr url dla wiadomości apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nowy niestandardowy format wydruku apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} już istnieje +DocType: Workflow Document State,Is Optional State,Jest stanem opcjonalnym DocType: Address,Purchase User,Kup użytkownika DocType: Data Migration Run,Insert,Wstawić DocType: Web Form,Route to Success Link,Route to Success Link @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Nazwa u DocType: File,Is Home Folder,Czy katalog domowy apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Rodzaj: DocType: Post,Is Pinned,Jest przypięty -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Brak pozwolenia na „{0}” {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Brak pozwolenia na „{0}” {1} DocType: Patch Log,Patch Log,Dziennik poprawek DocType: Print Format,Print Format Builder,Kreator formatu wydruku 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 ta opcja jest włączona, wszyscy użytkownicy mogą logować się z dowolnego adresu IP przy użyciu uwierzytelniania Two Factor Auth. Można to również ustawić tylko dla określonych użytkowników na stronie użytkownika" apps/frappe/frappe/utils/data.py,only.,tylko. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,Warunek „{0}” jest nieprawidłowy DocType: Auto Email Report,Day of Week,Dzień tygodnia +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Włącz Google API w Ustawieniach Google. DocType: DocField,Text Editor,Edytor tekstu apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Ciąć apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Wyszukaj lub wpisz polecenie @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,Liczba kopii zapasowych DB nie może być mniejsza niż 1 DocType: Workflow State,ban-circle,koło zakazu DocType: Data Export,Excel,Przewyższać +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Header, Breadcrumbs i Meta Tags" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Adres e-mail pomocy technicznej Nie określono DocType: Comment,Published,Opublikowany DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","Uwaga: Aby uzyskać najlepsze wyniki, obrazy muszą być tego samego rozmiaru i szerokości muszą być większe niż wysokość." @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Ostatnie wydarzenie w harmonogrami apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Raport o wszystkich udziałach w dokumentach DocType: Website Sidebar Item,Website Sidebar Item,Element paska bocznego witryny apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Do zrobienia +DocType: Google Settings,Google Settings,Ustawienia Google apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Wybierz swój kraj, strefę czasową i walutę" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Wprowadź tutaj statyczne parametry adresu URL (np. Nadawca = ERPNext, nazwa użytkownika = ERPNext, hasło = 1234 itd.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Brak konta e-mail @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,Token okaziciela OAuth ,Setup Wizard,Kreator konfiguracji apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Przełącz wykres +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,Synchronizacja DocType: Data Migration Run,Current Mapping Action,Bieżące działanie mapowania DocType: Email Account,Initial Sync Count,Początkowa liczba synchronizacji apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Ustawienia kontaktu Strona. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Typ formatu wydruku apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Brak uprawnień dla tego kryterium. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Rozwiń wszystkie +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nie znaleziono domyślnego szablonu adresu. Utwórz nowy z Setup> Printing and Branding> Address Template. DocType: Tag Doc Category,Tag Doc Category,Tag Doc Category DocType: Data Import,Generated File,Wygenerowany plik apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Uwagi @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Pole osi czasu musi być linkiem lub linkiem dynamicznym DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Powiadomienia i masowe wiadomości e-mail będą wysyłane z tego serwera wychodzącego. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,To jest wspólne hasło top-100. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Trwale Prześlij {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Trwale Prześlij {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} nie istnieje, wybierz nowy cel do scalenia" DocType: Energy Point Rule,Multiplier Field,Pole mnożnika DocType: Workflow,Workflow State Field,Pole stanu przepływu pracy @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} doceniło twoją pracę nad {1} z {2} punktami DocType: Auto Email Report,Zero means send records updated at anytime,Zero oznacza wysyłanie rekordów aktualizowanych w dowolnym momencie apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Nie można zmienić wartości dla {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Ustawienia Google API. DocType: System Settings,Force User to Reset Password,Wymuś użytkownikowi zresetowanie hasła apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Raporty Konstruktora raportów są zarządzane bezpośrednio przez narzędzie do tworzenia raportów. Nic do roboty. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Edytuj filtr @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,dla DocType: S3 Backup Settings,eu-north-1,eu-north-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: dozwolona jest tylko jedna reguła z tą samą rolą, poziomem i {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Nie możesz aktualizować tego dokumentu formularza internetowego -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Osiągnięto maksymalny limit dla tego rekordu. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Osiągnięto maksymalny limit dla tego rekordu. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,"Upewnij się, że Dokumenty komunikacji referencyjnej nie są połączone kołowo." DocType: DocField,Allow in Quick Entry,Zezwól na szybkie wprowadzanie DocType: Error Snapshot,Locals,Miejscowi @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Typ wyjątku apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},"Nie można usunąć ani anulować, ponieważ {0} {1} jest powiązane z {2} {3} {4}" apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,Sekret OTP może zostać zresetowany tylko przez administratora. -DocType: Web Form Field,Page Break,Podział strony DocType: Website Script,Website Script,Skrypt witryny DocType: Integration Request,Subscription Notification,Powiadomienie o subskrypcji DocType: DocType,Quick Entry,Szybki wpis @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,Ustaw właściwość po alercie apps/frappe/frappe/__init__.py,Thank you,Dziękuję Ci apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks do wewnętrznej integracji apps/frappe/frappe/config/settings.py,Import Data,Zaimportować dane +DocType: Translation,Contributed Translation Doctype Name,Nazwa udostępnionego tłumaczenia DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID DocType: Review Level,Review Level,Poziom recenzji @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Pomyślnie wykonane apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Lista apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Doceniać -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Nowy {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Jest podstawowym kontaktem DocType: Print Format,Raw Commands,Surowe polecenia apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Arkusze stylów dla formatów wydruku @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Błędy w wydarzen apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Znajdź {0} w {1} DocType: Email Account,Use SSL,Użyj SSL DocType: DocField,In Standard Filter,W filtrze standardowym +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Brak kontaktów Google do synchronizacji. DocType: Data Migration Run,Total Pages,Wszystkie strony apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,"{0}: Pole „{1}” nie może być ustawione jako Unikatowe, ponieważ ma nie unikalne wartości" DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Jeśli jest włączona, użytkownicy będą powiadamiani za każdym razem, gdy się zalogują. Jeśli opcja nie jest włączona, użytkownicy będą powiadamiani tylko raz." @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,Automatyzacja apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Rozpakowywanie plików ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Szukaj „{0}” apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Coś poszło nie tak -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Zapisz przed dołączeniem. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,Zapisz przed dołączeniem. DocType: Version,Table HTML,HTML tabeli apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,centrum DocType: Page,Standard,Standard @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Brak wynik apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} usunięto rekordy apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,"Coś poszło nie tak podczas generowania tokena dostępu do Dropbox. Sprawdź dziennik błędów, aby uzyskać więcej informacji." apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Potomkowie Of -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nie znaleziono domyślnego szablonu adresu. Utwórz nowy z Setup> Printing and Branding> Address Template. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Kontakty Google zostały skonfigurowane. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Ukryj szczegóły apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Style czcionek apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Twoja subskrypcja wygaśnie w dniu {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Uwierzytelnianie nie powiodło się podczas odbierania wiadomości e-mail z konta e-mail {0}. Wiadomość z serwera: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Statystyki oparte na wynikach z ubiegłego tygodnia (od {0} do {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,"Automatyczne łączenie można włączyć tylko wtedy, gdy włączona jest opcja Przychodzące." DocType: Website Settings,Title Prefix,Prefiks tytułu apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,"Aplikacje uwierzytelniające, których możesz użyć, to:" DocType: Bulk Update,Max 500 records at a time,Maksymalnie 500 rekordów na raz @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,Filtry raportów apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Wybierz kolumny DocType: Event,Participants,Uczestnicy DocType: Auto Repeat,Amended From,Zmieniony od -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Twoje informacje zostały zapisane +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Twoje informacje zostały zapisane DocType: Help Category,Help Category,Kategoria pomocy apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 miesiąc apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,"Wybierz istniejący format, aby edytować lub rozpocząć nowy format." @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Pole do śledzenia DocType: User,Generate Keys,Generuj klucze DocType: Comment,Unshared,Unshared -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Zapisane +DocType: Translation,Saved,Zapisane DocType: OAuth Client,OAuth Client,Klient OAuth DocType: System Settings,Disable Standard Email Footer,Wyłącz standardową stopkę e-mail apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Format wydruku {0} jest wyłączony @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Ostatnia aktu DocType: Data Import,Action,Akcja apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Wymagany jest klucz klienta DocType: Chat Profile,Notifications,Powiadomienia +DocType: Translation,Contributed,Przyczynił się DocType: System Settings,mm/dd/yyyy,mm / dd / rrrr DocType: Report,Custom Report,Raport niestandardowy DocType: Workflow State,info-sign,znak informacyjny @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Kontakt DocType: LDAP Settings,LDAP Username Field,Pole nazwy użytkownika LDAP apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Pole {0} nie może być ustawione jako unikalne w {1}, ponieważ istnieją nieunikalne istniejące wartości" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Konfiguracja> Dostosuj formularz DocType: User,Social Logins,Loginy społecznościowe DocType: Workflow State,Trash,Śmieci DocType: Stripe Settings,Secret Key,Sekretny klucz @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,Pole tytułu apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Nie można połączyć się z serwerem poczty wychodzącej DocType: File,File URL,URL pliku DocType: Help Article,Likes,Lubi +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Integracja kontaktów Google jest wyłączona. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,"Musisz być zalogowany i mieć rolę Menedżera systemu, aby mieć dostęp do kopii zapasowych." apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Pierwszy poziom DocType: Blogger,Short Name,Krótkie imię @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Importuj Zip DocType: Contact,Gender,Płeć DocType: Workflow State,thumbs-down,kciuk w dół -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Kolejka powinna być jedną z {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Nie można ustawić powiadomienia dla typu dokumentu {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Dodanie Menedżera systemu do tego użytkownika, ponieważ musi istnieć co najmniej jeden Menedżer systemu" apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Wysłany e-mail powitalny DocType: Transaction Log,Chaining Hash,Chaining Hash DocType: Contact,Maintenance Manager,Menedżer konserwacji +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Dla porównania użyj> 5, <10 lub = 324. Dla zakresów użyj 5:10 (dla wartości od 5 do 10)." apps/frappe/frappe/utils/bot.py,show,pokazać apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Udostępnij adres URL apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Niewspierany format pliku @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,Powiadomienie DocType: Data Import,Show only errors,Pokaż tylko błędy DocType: Energy Point Log,Review,Przejrzeć apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Wiersze usunięte -DocType: GSuite Settings,Google Credentials,Poświadczenia Google +DocType: Google Settings,Google Credentials,Poświadczenia Google apps/frappe/frappe/www/login.html,Or login with,Lub zaloguj się za pomocą apps/frappe/frappe/model/document.py,Record does not exist,Rekord nie istnieje apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Nowa nazwa raportu @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,Lista DocType: Workflow State,th-large,th-large apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,"{0}: Nie można ustawić Assign Submit, jeśli nie można przesłać" apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Nie powiązane z żadnym rekordem +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Błąd połączenia z aplikacją QZ Tray ...

Musisz mieć zainstalowaną i uruchomioną aplikację QZ Tray, aby korzystać z funkcji Raw Print.

Kliknij tutaj, aby pobrać i zainstalować QZ Tray .
Kliknij tutaj, aby dowiedzieć się więcej o Raw Printing ." DocType: Chat Message,Content,Zawartość DocType: Workflow Transition,Allow Self Approval,Zezwól na zatwierdzenie apps/frappe/frappe/www/qrcode.py,Page has expired!,Strona wygasła! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,ręka w prawo DocType: Website Settings,Banner is above the Top Menu Bar.,Baner znajduje się nad paskiem górnego menu. apps/frappe/frappe/www/update-password.html,Invalid Password,nieprawidłowe hasło apps/frappe/frappe/utils/data.py,1 month ago,1 miesiąc temu +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Zezwól na dostęp do kontaktów Google DocType: OAuth Client,App Client ID,Identyfikator klienta aplikacji DocType: DocField,Currency,Waluta DocType: Website Settings,Banner,Transparent @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Cel DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Jeśli rola nie ma dostępu na poziomie 0, wyższe poziomy są bez znaczenia." DocType: ToDo,Reference Type,Typ referencyjny -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Zezwalanie na DocType, DocType. Bądź ostrożny!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Zezwalanie na DocType, DocType. Bądź ostrożny!" DocType: Domain Settings,Domain Settings,Ustawienia domeny DocType: Auto Email Report,Dynamic Report Filters,Dynamiczne filtry raportów DocType: Energy Point Log,Appreciation,Uznanie @@ -1466,6 +1487,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,us-west-2 DocType: DocType,Is Single,Jest singlem apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Utwórz nowy format +DocType: Google Contacts,Authorize Google Contacts Access,Autoryzuj dostęp do kontaktów Google DocType: S3 Backup Settings,Endpoint URL,Adres URL punktu końcowego DocType: Social Login Key,Google,Google DocType: Contact,Department,Departament @@ -1480,7 +1502,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Przypisać do DocType: List Filter,List Filter,Filtr listy DocType: Dashboard Chart Link,Chart,Wykres apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Nie można usunąć -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,"Prześlij ten dokument, aby potwierdzić" +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,"Prześlij ten dokument, aby potwierdzić" apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} już istnieje. Wybierz inną nazwę apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Masz niezapisane zmiany w tym formularzu. Zapisz przed kontynuowaniem. apps/frappe/frappe/model/document.py,Action Failed,Akcja: nieudana @@ -1562,6 +1584,7 @@ DocType: DocField,Display,Pokaz apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Odpowiedz wszystkim DocType: Calendar View,Subject Field,Pole tematu apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Wygaśnięcie sesji musi mieć format {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},Zastosowanie: {0} DocType: Workflow State,zoom-in,zbliżenie apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,błąd połączenia z serwerem apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Data {0} musi mieć format: {1} @@ -1573,8 +1596,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Ikona pojawi się na przycisku DocType: Role Permission for Page and Report,Set Role For,Ustaw Role dla +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Automatyczne łączenie można aktywować tylko dla jednego konta e-mail. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Brak przypisanych kont e-mail +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Konto e-mail nie jest skonfigurowane. Utwórz nowe konto e-mail z poziomu Konfiguracja> E-mail> Konto e-mail apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Zadanie +DocType: Google Contacts,Last Sync On,Ostatnia synchronizacja włączona apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},zdobyte przez {0} za pomocą automatycznej reguły {1} apps/frappe/frappe/config/website.py,Portal,Portal apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Dziekuje za Twoj email @@ -1595,7 +1621,6 @@ DocType: GSuite Settings,GSuite Settings,Ustawienia GSuite DocType: Integration Request,Remote,Zdalny DocType: File,Thumbnail URL,Miniatura URL apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Pobierz raport -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Konfiguracja> Użytkownik apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Dostosowania dla {0} wyeksportowane do:
{1} DocType: GCalendar Account,Calendar Name,Nazwa kalendarza apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Twój login to @@ -1645,6 +1670,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Idź apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Pole obrazu musi być poprawną nazwą pola apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,"Musisz być zalogowany, aby uzyskać dostęp do tej strony" DocType: Assignment Rule,Example: {{ subject }},Przykład: {{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Nazwa pola {0} jest ograniczona apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Nie możesz usunąć ustawienia „Tylko do odczytu” dla pola {0} DocType: Social Login Key,Enable Social Login,Włącz logowanie społecznościowe DocType: Workflow,Rules defining transition of state in the workflow.,Reguły definiujące przejście stanu w przepływie pracy. @@ -1665,10 +1691,10 @@ DocType: Website Settings,Route Redirects,Przekierowania trasy apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Skrzynka odbiorcza e-mail apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},przywrócono {0} jako {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Automatycznie przypisuj dokumenty do użytkowników +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Otwórz Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Szablony e-mail do typowych zapytań. DocType: Letter Head,Letter Head Based On,Szef literowy na podstawie apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Zamknij to okno -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Płatność zakończona DocType: Contact,Designation,Przeznaczenie DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Meta tagi @@ -1707,6 +1733,7 @@ DocType: System Settings,Choose authentication method to be used by all users,"W DocType: Error Snapshot,Parent Error Snapshot,Migawka błędu rodzica DocType: GCalendar Account,GCalendar Account,Konto GCalendar DocType: Language,Language Name,Nazwa języka +DocType: Workflow Document State,Workflow Action is not created for optional states,Działanie przepływu pracy nie jest tworzone dla stanów opcjonalnych DocType: Customize Form,Customize Form,Dostosuj formularz DocType: DocType,Image Field,Pole obrazu apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Dodano {0} ({1}) @@ -1748,6 +1775,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Zastosuj tę zasadę, jeśli użytkownik jest właścicielem" DocType: About Us Settings,Org History Heading,Nagłówek historii Org apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,błąd serwera +DocType: Contact,Google Contacts Description,Opis kontaktów Google apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Nie można zmienić nazw ról standardowych DocType: Review Level,Review Points,Punkty kontrolne apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Brakujący parametr Nazwa tablicy Kanban @@ -1765,7 +1793,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Nie w trybie programisty! Ustaw w site_config.json lub utwórz „Custom” DocType. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,zyskał {0} punktów DocType: Web Form,Success Message,Wiadomość o sukcesie -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Dla porównania użyj> 5, <10 lub = 324. Dla zakresów użyj 5:10 (dla wartości od 5 do 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Opis strony aukcji w postaci zwykłego tekstu, tylko kilka wierszy. (maks. 140 znaków)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Pokaż uprawnienia DocType: DocType,Restrict To Domain,Ogranicz do domeny @@ -1787,6 +1814,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Nie pr apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Ustaw ilość DocType: Auto Repeat,End Date,Data zakonczenia DocType: Workflow Transition,Next State,Następny stan +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Kontakty Google zsynchronizowane. DocType: System Settings,Is First Startup,Jest pierwszym uruchomieniem apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},zaktualizowany do {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Przenieś do @@ -1836,6 +1864,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Kalendarz apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Szablon importu danych DocType: Workflow State,hand-left,ręka w lewo +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Wybierz wiele elementów listy apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Rozmiar kopii zapasowej: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Połączony z {0} DocType: Braintree Settings,Private Key,Prywatny klucz @@ -1878,13 +1907,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Zainteresowanie DocType: Bulk Update,Limit,Limit DocType: Print Settings,Print taxes with zero amount,Wydrukuj podatki z kwotą zerową -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Konto e-mail nie jest skonfigurowane. Utwórz nowe konto e-mail z poziomu Konfiguracja> E-mail> Konto e-mail DocType: Workflow State,Book,Książka DocType: S3 Backup Settings,Access Key ID,Uzyskaj identyfikator klucza DocType: Chat Message,URLs,Adresy URL apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Nazwy i nazwiska same w sobie są łatwe do odgadnięcia. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Zgłoś {0} DocType: About Us Settings,Team Members Heading,Nagłówek członków zespołu +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Wybierz element listy apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Dokument {0} został ustawiony na stan {1} przez {2} DocType: Address Template,Address Template,Szablon adresu DocType: Workflow State,step-backward,krok w tył @@ -1908,6 +1937,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Eksportuj uprawnienia niestandardowe apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Brak: Koniec przepływu pracy DocType: Version,Version,Wersja +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Otwórz element listy apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 miesięcy DocType: Chat Message,Group,Grupa apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Wystąpił problem z adresem URL pliku: {0} @@ -1963,6 +1993,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 rok apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} przywrócił punkty w {1} DocType: Workflow State,arrow-down,strzałka w dół DocType: Data Import,Ignore encoding errors,Ignoruj błędy kodowania +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Krajobraz DocType: Letter Head,Letter Head Name,Nazwisko szefa listu DocType: Web Form,Client Script,Skrypt klienta DocType: Assignment Rule,Higher priority rule will be applied first,Najpierw zostanie zastosowana zasada wyższego priorytetu @@ -2007,6 +2038,7 @@ DocType: Kanban Board Column,Green,Zielony apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Tylko nowe pola obowiązkowe są konieczne dla nowych rekordów. Jeśli chcesz, możesz usunąć nieobowiązkowe kolumny." apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} musi zaczynać się i kończyć literą i może zawierać tylko litery, łącznik lub podkreślnik." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Trigger Primary Action apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Utwórz e-mail użytkownika apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Pole sortowania {0} musi być poprawną nazwą pola DocType: Auto Email Report,Filter Meta,Filtruj Meta @@ -2036,6 +2068,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Pole osi czasu apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Ładuję... DocType: Auto Email Report,Half Yearly,Półroczne +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Mój profil apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Data ostatniej modyfikacji DocType: Contact,First Name,Imię DocType: Post,Comments,Komentarze @@ -2058,6 +2091,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Hash treści apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Posty {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} przypisany {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Nie zsynchronizowano żadnych nowych kontaktów Google. DocType: Workflow State,globe,glob apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Średnia z {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Wyczyść dzienniki błędów @@ -2084,6 +2118,8 @@ DocType: Workflow State,Inverse,Odwrotność DocType: Activity Log,Closed,Zamknięte DocType: Report,Query,Pytanie DocType: Notification,Days After,Dni po +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Skróty do stron +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portret apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Upłynął limit czasu żądania DocType: System Settings,Email Footer Address,Adres stopki e-mail apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Aktualizacja punktu energetycznego @@ -2111,6 +2147,7 @@ For Select, enter list of Options, each on a new line.","W polu Łącza wprowad apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 minuta temu apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Brak aktywnych sesji apps/frappe/frappe/model/base_document.py,Row,Rząd +DocType: Contact,Middle Name,Drugie imię apps/frappe/frappe/public/js/frappe/request.js,Please try again,Proszę spróbuj ponownie DocType: Dashboard Chart,Chart Options,Opcje wykresów DocType: Data Migration Run,Push Failed,Push Failed @@ -2139,6 +2176,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,resize-small DocType: Comment,Relinked,Ponownie połączone DocType: Role Permission for Page and Report,Roles HTML,Role HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Udać się apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Przepływ pracy rozpocznie się po zapisaniu. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Jeśli twoje dane są w HTML, skopiuj wklej dokładny kod HTML z tagami." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Daty są często łatwe do odgadnięcia. @@ -2167,7 +2205,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Ikona pulpitu apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,anulował ten dokument apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Zakres dat -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Konfiguracja> Uprawnienia użytkownika apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} doceniam {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Zmieniono wartości apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Błąd w powiadomieniu @@ -2231,6 +2268,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Usuń zbiorcze DocType: DocShare,Document Name,Nazwa dokumentu apps/frappe/frappe/config/customization.py,Add your own translations,Dodaj własne tłumaczenia +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Przejdź w dół listy DocType: S3 Backup Settings,eu-central-1,eu-central-1 DocType: Auto Repeat,Yearly,Rocznie apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Przemianować @@ -2281,6 +2319,7 @@ DocType: Workflow State,plane,samolot apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Zagnieżdżony błąd zestawu. Skontaktuj się z administratorem. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Pokaż raport DocType: Auto Repeat,Auto Repeat Schedule,Automatyczne powtarzanie harmonogramu +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Zobacz ref DocType: Address,Office,Gabinet DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} dni temu @@ -2314,7 +2353,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Wy apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Moje ustawienia apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Nazwa grupy nie może być pusta. DocType: Workflow State,road,Droga -DocType: Website Route Redirect,Source,Źródło +DocType: Contact,Source,Źródło apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Aktywne Sesje apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,W formularzu może być tylko jeden Fold apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Nowy czat @@ -2336,6 +2375,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Wprowadź autoryzowany adres URL DocType: Email Account,Send Notification to,Wyślij powiadomienie do apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Ustawienia kopii zapasowej Dropbox +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,"Coś poszło nie tak podczas generowania tokena. Kliknij {0}, aby wygenerować nowy." apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Usunąć wszystkie dostosowania? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Tylko Administrator może edytować DocType: Auto Repeat,Reference Document,Dokument referencyjny @@ -2360,6 +2400,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Role można ustawić dla użytkowników ze strony użytkownika. DocType: Website Settings,Include Search in Top Bar,Dołącz wyszukiwanie w górnym pasku apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Pilne] Błąd podczas tworzenia cyklicznych% s dla% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globalne skróty DocType: Help Article,Author,Autor DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Nie znaleziono dokumentu dla danych filtrów @@ -2395,10 +2436,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, wiersz {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Jeśli ładujesz nowe rekordy, „Naming Series” staje się obowiązkowa, jeśli istnieje." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Edytuj właściwości -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,"Nie można otworzyć instancji, gdy jej {0} jest otwarte" +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,"Nie można otworzyć instancji, gdy jej {0} jest otwarte" DocType: Activity Log,Timeline Name,Nazwa osi czasu DocType: Comment,Workflow,Przepływ pracy apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Ustaw podstawowy adres URL w kluczu logowania społecznościowego dla Frappe +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Skróty klawiszowe DocType: Portal Settings,Custom Menu Items,Niestandardowe elementy menu apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,Długość {0} powinna wynosić od 1 do 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Utracono połączenie. Niektóre funkcje mogą nie działać. @@ -2461,6 +2503,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Dodano wier DocType: DocType,Setup,Ustawiać apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} utworzono pomyślnie apps/frappe/frappe/www/update-password.html,New Password,nowe hasło +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Wybierz pole apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Opuść tę rozmowę DocType: About Us Settings,Team Members,Członkowie drużyny DocType: Blog Settings,Writers Introduction,Pisarze Wprowadzenie @@ -2530,13 +2573,12 @@ DocType: Chat Room,Name,Imię DocType: Communication,Email Template,Szablon e-mail DocType: Energy Point Settings,Review Levels,Przejrzyj poziomy DocType: Print Format,Raw Printing,Drukowanie surowe -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,"Nie można otworzyć {0}, gdy jego instancja jest otwarta" +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,"Nie można otworzyć {0}, gdy jego instancja jest otwarta" DocType: DocType,"Make ""name"" searchable in Global Search",Ustaw „nazwę” w wyszukiwarce globalnej DocType: Data Migration Mapping,Data Migration Mapping,Mapowanie migracji danych DocType: Data Import,Partially Successful,Częściowo udany DocType: Communication,Error,Błąd apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Typu pola nie można zmienić z {0} na {1} w wierszu {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Błąd połączenia z aplikacją QZ Tray ...

Musisz mieć zainstalowaną i uruchomioną aplikację QZ Tray, aby korzystać z funkcji Raw Print.

Kliknij tutaj, aby pobrać i zainstalować QZ Tray .
Kliknij tutaj, aby dowiedzieć się więcej o Raw Printing ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Zrobić zdjęcie apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,"Unikaj lat, które są z tobą związane." DocType: Web Form,Allow Incomplete Forms,Zezwalaj na niekompletne formularze @@ -2632,7 +2674,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Wybierz target = "_blank", aby otworzyć nową stronę." DocType: Portal Settings,Portal Menu,Menu portalu DocType: Website Settings,Landing Page,Wstęp -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,"Aby rozpocząć, zaloguj się lub zaloguj" DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opcje kontaktu, takie jak „Zapytanie o sprzedaż, Zapytanie o wsparcie” itp., Każda na nowej linii lub oddzielone przecinkami." apps/frappe/frappe/twofactor.py,Verfication Code,Kod weryfikacyjny apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} już anulowano subskrypcję @@ -2718,6 +2759,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Mapowanie planu DocType: Address,Sales User,Użytkownik sprzedaży apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Zmień właściwości pola (ukryj, tylko do odczytu, pozwolenie itp.)" DocType: Property Setter,Field Name,Nazwa pola +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Klient DocType: Print Settings,Font Size,Rozmiar czcionki DocType: User,Last Password Reset Date,Data ostatniego resetowania hasła DocType: System Settings,Date and Number Format,Format daty i numeru @@ -2783,6 +2825,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Węzeł grupy apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Scal z istniejącym DocType: Blog Post,Blog Intro,Wprowadzenie do blogu apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nowa wzmianka +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Przejdź do pola DocType: Prepared Report,Report Name,Nazwa raportu apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Odśwież, aby uzyskać najnowszy dokument." apps/frappe/frappe/core/doctype/communication/communication.js,Close,Blisko @@ -2792,10 +2835,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Zdarzenie DocType: Social Login Key,Access Token URL,Adres URL tokenu dostępu apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Ustaw klucze dostępu Dropbox w konfiguracji witryny +DocType: Google Contacts,Google Contacts,Kontakty Google DocType: User,Reset Password Key,Zresetuj klucz hasła apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Modyfikowane przez DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.","Aby odnowić, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Zapisano pomyślnie +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,"Wyślij e-mail na adres {0}, aby połączyć go tutaj." DocType: File,Folder,Teczka DocType: DocField,Perm Level,Poziom uprawnień DocType: Print Settings,Page Settings,Ustawienia strony @@ -2825,6 +2871,7 @@ DocType: Workflow State,remove-sign,usuń znak DocType: Dashboard Chart,Full,Pełny DocType: DocType,User Cannot Create,Użytkownik nie może utworzyć apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Zyskałeś punkt {0} +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Konfiguracja> Użytkownik DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Jeśli to ustawisz, ten przedmiot pojawi się w rozwijanym menu pod wybranym rodzicem." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Brak e-maili apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Brakuje następujących pól: @@ -2838,13 +2885,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Pok DocType: Web Form,Web Form Fields,Pola formularza internetowego DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Użytkownik może edytować formularz na stronie internetowej. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Trwale Anuluj {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Trwale Anuluj {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Opcja 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,Sumy apps/frappe/frappe/utils/password_strength.py,This is a very common password.,To bardzo popularne hasło. DocType: Personal Data Deletion Request,Pending Approval,Oczekuje na zatwierdzenie apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Nie można poprawnie przypisać dokumentu apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Niedozwolone dla {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Brak wartości do pokazania DocType: Personal Data Download Request,Personal Data Download Request,Żądanie pobrania danych osobowych apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} udostępnił ten dokument {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Wybierz {0} @@ -2860,7 +2908,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Ten e-mail został wysłany do {0} i skopiowany do {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,niepoprawny login lub hasło DocType: Social Login Key,Social Login Key,Klucz logowania społecznego -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Skonfiguruj domyślne konto e-mail z menu Ustawienia> E-mail> Konto e-mail apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Zapisane filtry DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Jak sformatować tę walutę? Jeśli nie jest ustawiony, użyje domyślnych ustawień systemowych" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} jest ustawione na stan {2} @@ -2986,6 +3033,7 @@ DocType: User,Location,Lokalizacja apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Brak danych DocType: Website Meta Tag,Website Meta Tag,Metatag witryny DocType: Workflow State,film,film +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Skopiowane do schowka. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Nie znaleziono ustawień apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Etykieta jest obowiązkowa DocType: Webhook,Webhook Headers,Nagłówki Webhook @@ -3194,7 +3242,7 @@ DocType: Address,Address Line 1,Linia adresu 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Dla typu dokumentu apps/frappe/frappe/model/base_document.py,Data missing in table,Brak danych w tabeli apps/frappe/frappe/utils/bot.py,Could not identify {0},Nie można zidentyfikować {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Ten formularz został zmodyfikowany po załadowaniu +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Ten formularz został zmodyfikowany po załadowaniu apps/frappe/frappe/www/login.html,Back to Login,Powrót do logowania apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Nie ustawiony DocType: Data Migration Mapping,Pull,Ciągnąć @@ -3262,6 +3310,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Mapowanie tabeli dzie apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Konfiguracja konta e-mailowego Wprowadź hasło dla: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Zbyt wiele pisze w jednym żądaniu. Wyślij mniejsze prośby DocType: Social Login Key,Salesforce,Siły sprzedaży +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importowanie {0} z {1} DocType: User,Tile,Dachówka apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} pokój musi mieć jednego użytkownika. DocType: Email Rule,Is Spam,Czy Spam @@ -3299,7 +3348,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,zamknij folder DocType: Data Migration Run,Pull Update,Wyciągnij aktualizację apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},scalono {0} w {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Nie znaleziono wyników dla '

DocType: SMS Settings,Enter url parameter for receiver nos,Wprowadź parametr url dla odbiornika nos apps/frappe/frappe/utils/jinja.py,Syntax error in template,Błąd składniowy w szablonie apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Ustaw wartość filtrów w tabeli filtrów raportów. @@ -3312,6 +3360,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Przepraszam DocType: System Settings,In Days,W dniach DocType: Report,Add Total Row,Dodaj sumę wierszy apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Niepowodzenie rozpoczęcia sesji +DocType: Translation,Verified,Zweryfikowany DocType: Print Format,Custom HTML Help,Niestandardowa pomoc HTML DocType: Address,Preferred Billing Address,Preferowany adres rozliczeniowy apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Przypisany do @@ -3326,7 +3375,6 @@ DocType: Help Article,Intermediate,Pośredni DocType: Module Def,Module Name,Nazwa modułu DocType: OAuth Authorization Code,Expiration time,Data ważności apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Ustaw domyślny format, rozmiar strony, styl drukowania itp." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,"Nie możesz polubić czegoś, co stworzyłeś" DocType: System Settings,Session Expiry,Wygaśnięcie sesji DocType: DocType,Auto Name,Automatyczna nazwa apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Wybierz Załączniki @@ -3354,6 +3402,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Strona systemowa DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Uwaga: Domyślnie wysyłane są wiadomości e-mail dotyczące nieudanych kopii zapasowych. DocType: Custom DocPerm,Custom DocPerm,Niestandardowe DocPerm +DocType: Translation,PR sent,PR wysłany DocType: Tag Doc Category,Doctype to Assign Tags,"Doctype, aby przypisać tagi" DocType: Address,Warehouse,Magazyn apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Konfiguracja Dropbox @@ -3421,7 +3470,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,"Ctrl + Enter, aby dodać komentarz" apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Pole {0} nie można wybrać. DocType: User,Birth Date,Data urodzenia -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Z wcięciem grupy DocType: List View Setting,Disable Count,Wyłącz liczbę DocType: Contact Us Settings,Email ID,ID e-mail apps/frappe/frappe/utils/password.py,Incorrect User or Password,Nieprawidłowy użytkownik lub hasło @@ -3456,6 +3504,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Ta rola aktualizuje uprawnienia użytkownika dla użytkownika DocType: Website Theme,Theme,Motyw DocType: Web Form,Show Sidebar,Pokaż pasek boczny +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Integracja kontaktów Google. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Domyślna skrzynka odbiorcza apps/frappe/frappe/www/login.py,Invalid Login Token,Nieprawidłowy token logowania apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Najpierw ustaw nazwę i zapisz rekord. @@ -3483,7 +3532,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Popraw DocType: Top Bar Item,Top Bar Item,Top Bar Item ,Role Permissions Manager,Menedżer uprawnień do roli -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,Wystąpiły błędy. Zgłoś to. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} rok (lat) temu apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Płeć żeńska DocType: System Settings,OTP Issuer Name,Nazwa wystawcy OTP apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Dodaj do czynności @@ -3583,6 +3632,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Ustawi apps/frappe/frappe/model/document.py,none of,żaden z DocType: Desktop Icon,Page,Strona DocType: Workflow State,plus-sign,znak plus +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Wyczyść pamięć podręczną i załaduj ponownie apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Nie można zaktualizować: Niepoprawny / wygasły link. DocType: Kanban Board Column,Yellow,Żółty DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Liczba kolumn dla pola w siatce (łączna liczba kolumn w siatce powinna być mniejsza niż 11) @@ -3597,6 +3647,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Nowa DocType: Activity Log,Date,Data DocType: Communication,Communication Type,Typ komunikacji apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Tabela rodziców +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Nawiguj w górę listy DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Pokaż pełny błąd i zezwól na zgłaszanie problemów do programisty DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3618,7 +3669,6 @@ DocType: Notification Recipient,Email By Role,Email przez rolę apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,"Upgrade, aby dodać więcej niż {0} subskrybentów" apps/frappe/frappe/email/queue.py,This email was sent to {0},Ten e-mail został wysłany do {0} DocType: User,Represents a User in the system.,Reprezentuje użytkownika w systemie. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Strona {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Rozpocznij nowy format apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Dodaj komentarz apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} z {1} diff --git a/frappe/translations/ps.csv b/frappe/translations/ps.csv index 9e8a001979..0bd68c664a 100644 --- a/frappe/translations/ps.csv +++ b/frappe/translations/ps.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,ګرديز فعال کړئ DocType: DocType,Default Sort Order,اصلي ترتیب ترتیب apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,د راپور څخه یواځې د شمیرې ساحې ښودل +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,په مینو او سایډ بار کې اضافي شارټ کښته ټکولو لپاره د Alt Alt کیلو فشار DocType: Workflow State,folder-open,پوښۍ پرانستې DocType: Customize Form,Is Table,جدول دی apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,د منلو وړ دوتنې پرانیستلو توان نلري. آیا تاسو دا د CSV په توګه صادر کړی؟ DocType: DocField,No Copy,نه کاپی DocType: Custom Field,Default Value,اصلي ارزښت apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,ضمیمه د راتلونکو میلونو لپاره لازمي ده +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,د اړیکو اړیکې DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,د معلوماتو مهاجرت نقشه توضیحات apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,ناڅاپه apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",د "چاپ پرن" له لارې د پی ډی اف ایل لا تراوسه ملاتړ نه دی شوی. لطفا د پرنټر نقشه اخیستل د پرنټر په ترتیبونو کې لرې کړئ او بیا هڅه وکړئ. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} او {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,د فلټرونو خوندي کولو کې تېروتنه وه apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,خپل پټنوم ورکړه apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,کور او د لاسرسۍ فولډونه ړنګول نشي +DocType: Email Account,Enable Automatic Linking in Documents,په سندونو کې اتوماتیک لینک کول فعال کړئ DocType: Contact Us Settings,Settings for Contact Us Page,د اړیکو د پاڼې لپاره ترتیبات پاڼه DocType: Social Login Key,Social Login Provider,د ټولنی ننوتل چمتو کول +DocType: Email Account,"For more information, click here.","د زیاتو معلوماتو لپاره، دلته کلیک وکړئ ." DocType: Transaction Log,Previous Hash,مخکینی هاش DocType: Notification,Value Changed,ارزښت بدل شوی DocType: Report,Report Type,د راپور ډول @@ -160,7 +164,6 @@ DocType: Energy Point Rule,Energy Point Rule,د انرژي ټکي اصول apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,مهرباني وکړئ د ټولنیز ننوتنې فعالولو دمخه د مراجعینو پیژندنه وليکئ DocType: Communication,Has Attachment,ضمیمه لري DocType: User,Email Signature,د بریښنالیک لاسلیک -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} کال (مخکې) مخکې ,Addresses And Contacts,پته او اړیکې apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,دا دبانبان بورډ به خصوصي وي DocType: Data Migration Run,Current Mapping,اوسنۍ نقشه @@ -208,6 +211,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).",تاسو د ټول په توګه د سي آر سي اختیار انتخاب کوئ، دا به ټول د \ سرور سره د سرور څخه ناڅاپي پیغام بیا بیارغونه کوي. دا کیدی شي د اړیکو \ د اړیکو \ ایمیلونو سبب شي. apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},وروستي هماغه وخت {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,د سرلیک منځپانګې نشي بدلولی +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,"

د '

" apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,د سپارلو وروسته {0} بدلولو اجازه نلري apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page",غوښتنلیک نوی نسخه ته نوي شوی دی، لطفا دا پاڼه ریفریش کړئ DocType: User,User Image,د کارن انځور @@ -333,7 +337,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,د صادراتو ماډل DocType: DocType,Fields,ساحې -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,تاسو ته د دې سند چاپولو اجازه نلري +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,تاسو ته د دې سند چاپولو اجازه نلري apps/frappe/frappe/public/js/frappe/model/model.js,Parent,والدین apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.",ستاسو سیشن ختم شوی، لطفا بیا هم ادامه ورکړئ. DocType: Assignment Rule,Priority,لومړیتوب @@ -359,10 +363,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,د او ټي ټي DocType: DocType,UPPER CASE,تمدید قضیه apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,مهرباني وکړئ د بریښناليک پته ولیکئ DocType: Communication,Marked As Spam,د سپام په څیر نښه شوې +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,د بریښنالیک پته چې د ګوګل اړیکو سره اړیکه لري. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,د واردونکو پیرودونکو apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,فلټر ساتل DocType: Address,Preferred Shipping Address,د غوره لیږد پته DocType: GCalendar Account,The name that will appear in Google Calendar,هغه نوم چې په ګوګل کې کتل کیږي +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,د توکیو تازه کولو لپاره {0} باندې کلیک وکړئ. DocType: Email Account,Disable SMTP server authentication,د SMTP سرور اعتباري ناتوانول DocType: Email Account,Total number of emails to sync in initial sync process ,د ابتدايي موافقتنامې په بهیر کې د موافقت لپاره د برېښلیکونو ټول شمېره DocType: System Settings,Enable Password Policy,د شفر پټنځای فعال کړه @@ -379,6 +385,7 @@ DocType: Web Page,Insert Code,کوډ داخل کړئ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,نه په DocType: Auto Repeat,Start Date,پیل نېټه apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,چارټ ټاکئ +DocType: Website Theme,Theme JSON,موضوع JSON apps/frappe/frappe/www/list.py,My Account,زما حساب DocType: DocType,Is Published Field,د خپریدو ساحه ده DocType: DocField,Set non-standard precision for a Float or Currency field,د فلوټ یا د اسعارو د ساحې لپاره غیر معیاري اصالحات مقرر کړئ @@ -389,7 +396,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,پروپپ: د سند حوالې ته د لیږلو لپاره Reference: {{ reference_doctype }} {{ reference_name }} اضافه کړئ DocType: LDAP Settings,LDAP First Name Field,د LDAP لومړی نوم ډګر apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,اصلي لیږل او انبکس -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,جوړ کړئ> فورمه ګمرک کړئ apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",د تازه کولو لپاره، تاسو کولی شئ یواځې انتخابي کالمونه نوي کړئ. apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',د 'چیک' ډول ډول ډول ساحه باید یا '0' یا '1' وي apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,دا سند شریک کړئ @@ -432,16 +438,19 @@ apps/frappe/frappe/model/document.py,One of,یو له DocType: Domain Settings,Domains HTML,ډومینین ایچ ٹی ایم ایل DocType: Blog Settings,Blog Settings,د بلاګ ترتیبات apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores",د ډاسک ټائپ نوم باید د خط سره پیل شي او دا یوازې د لیکونو، شمېرو، ځایونو او لرې کولو کېدی شي +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,د اپوډیشن کارن کارن اجازه DocType: Communication,Integrations can use this field to set email delivery status,انټرنټيشن کولی شي د دې بریښنا لیک له لارې د بریښنالیک د لیږد حالت وضع کړي apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,د پټه تادیاتو دروازو ترتیبات DocType: Print Settings,Fonts,فکسونه DocType: Notification,Channel,چینل DocType: Communication,Opened,پرانستل شوه DocType: Workflow Transition,Conditions,شرایط +apps/frappe/frappe/config/website.py,A user who posts blogs.,یو کارن چې بلاګ لیکي. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,حساب نه لري؟ ګډون کول apps/frappe/frappe/utils/file_manager.py,Added {0},اضافه شوی {0} DocType: Newsletter,Create and Send Newsletters,خبرلیکونه واستوی او لیږل DocType: Website Settings,Footer Items,د فوټرو توکي +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,مهرباني وکړئ د سایټ اپ> بریښنالیک> ایمیل ادرس څخه د بریښناليک ایمیل حساب ترتیب کړئ DocType: Website Slideshow Item,Website Slideshow Item,د ویب پاڼې سلائیډ شي توکي apps/frappe/frappe/config/integrations.py,Register OAuth Client App,د OAuth کلینیک اپارتمان راجستر کړئ DocType: Error Snapshot,Frames,چوکاټونه @@ -482,7 +491,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.",د کچې کچه د سند کچې د اجازې لپاره دی، د ساحې د کچې اجازه لپاره \ لوړه کچه. DocType: Address,City/Town,ښار / ښار DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?",دا به ستاسو اوسنۍ موضوع بیا وګرځوي، ایا تاسو ډاډه یاست چې غواړئ دوام ومومي؟ apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},اجباري ساحې په {0} کې اړتیا لري apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},د برېښناليک حساب سره د نښلولو پر مهال تېروتنه {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,د بیاجوړولو په وخت کې یوه تېروتنه رامنځته شوه @@ -518,7 +526,7 @@ DocType: Event,Event Category,د پېښې کتګورۍ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,پر بنسټ ولاړ کالمونه apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,سرلیک DocType: Communication,Received,ترلاسه شوی -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,تاسو دې پاڼې ته د لاسرسی اجازه نلرئ. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,تاسو دې پاڼې ته د لاسرسی اجازه نلرئ. DocType: User Social Login,User Social Login,د کارن ټولنیز ننوتل apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,د پیټون فایل په ورته فولډ کې ولیکئ چې دا خوندي شوی او بیرته راستنیدنه او پایله یې. DocType: Contact,Purchase Manager,د پیرود مدیر @@ -570,7 +578,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,چا apps/frappe/frappe/utils/data.py,Operator must be one of {0},چلونکي باید د {0} څخه وي apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,که مالک DocType: Data Migration Run,Trigger Name,د تورګر نوم -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,ستاسو بلاګ ته عنوانونه او تعارف ولیکئ. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,ساحه لیرې کړه apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,ټول کول apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,د شاليد رنګ @@ -620,6 +627,7 @@ DocType: Dashboard Chart,Bar,بار DocType: SMS Settings,Enter url parameter for message,د پیغام لپاره یو آر ایل پیرامیٹر ولیکئ apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,د نوی ګمرک چاپ بڼه apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} لا د مخه شتون لري +DocType: Workflow Document State,Is Optional State,اختیاري دولت دی DocType: Address,Purchase User,د پیرود اخیستل DocType: Data Migration Run,Insert,داخل کړئ DocType: Web Form,Route to Success Link,د بریالیتوب لاره لینک @@ -627,13 +635,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,کار DocType: File,Is Home Folder,د کور فولډ دی apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,ډول: DocType: Post,Is Pinned,دی -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},د {1} '{1} لپاره اجازه نشته +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},د {1} '{1} لپاره اجازه نشته DocType: Patch Log,Patch Log,د پېچ لوډ DocType: Print Format,Print Format Builder,د چاپ شکل جوړونکی 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 پتې څخه ننوتل کولی شي. دا یوازې د ځانګړو کارنانو لپاره هم د کارن پاڼې کې کیدی شي apps/frappe/frappe/utils/data.py,only.,یوازې apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,حالت '{0}' ناباوره دی DocType: Auto Email Report,Day of Week,د اونۍ ورځ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,د ګوګل په ترتیباتو کې د Google API فعالول. DocType: DocField,Text Editor,د متن سمونګر apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,کښته کړئ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,کمانډ ولټوئ یا ټایپ کړئ @@ -641,6 +650,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,د DB بیک اپ شمیره د 1 څخه کم نه وي DocType: Workflow State,ban-circle,بندیز DocType: Data Export,Excel,اېسلسل +DocType: Web Page,"Header, Breadcrumbs and Meta Tags",سرپرست، Breadcrumbs او مټا ټيګ apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,د بریښنالیک پته د ملاتړ ملاتړ نه کوي DocType: Comment,Published,خپور شوی DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.",یادونه: د غوره پایلو لپاره، انځورونه باید د ورته اندازې څخه وي او چوکۍ باید د لوړوالي څخه لوړ وي. @@ -728,6 +738,7 @@ DocType: System Settings,Scheduler Last Event,مهال ویشونکی وروست apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,د ټولو سند ونډو راپور DocType: Website Sidebar Item,Website Sidebar Item,د ویب پاڼې سایډار توکي apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,کول +DocType: Google Settings,Google Settings,د ګوګل امستنې apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency",خپل هیواد، د وخت زون او پیسو انتخاب کړئ DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)",دلته د مستحکم url پیرامیټونه ولیکئ (ایګ Sender = ERPNext، کارن-نوم = ERPNext، پاسورډ = 1234 نور) apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,د برېښناليک حساب نه @@ -780,6 +791,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,د OAuth Bearer Token ,Setup Wizard,د سیٹ اپ جادوګر apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,چارټ ټګ کړئ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,موافقت کول DocType: Data Migration Run,Current Mapping Action,اوسنۍ نقشه ایزه کړنه DocType: Email Account,Initial Sync Count,د ابتدايي سنج شمیره apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,د اړیکو د پاڼې لپاره ترتیبات پاڼه. @@ -819,6 +831,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,د چاپ بڼه ډول apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,د دې معیار لپاره ټاکل شوي اجازه نشته. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,ټول پراخ کړئ +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,د ڈیفالف پته نه دی موندلی. مهرباني وکړئ د سایټ اپ> چاپ او برنامه> د پتې پته د یو نوی جوړ کړئ. DocType: Tag Doc Category,Tag Doc Category,د Tag Doc Category DocType: Data Import,Generated File,تولید شوي دوتنه apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,یادښتونه @@ -826,7 +839,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,د مهال ویش ساحه باید یو لینک یا متحرک لینک وي DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,نوښتونه او لوی برېښلیک به د دې روان روان سرور څخه واستول شي. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,دا د 100 څخه زیات عام پاسورډ دی. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,په دوامداره توګه سپارل {0}؟ +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,په دوامداره توګه سپارل {0}؟ apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge",{0} {1} شتون نلري، د ملګری لپاره یو نوی هدف غوره کړئ DocType: Energy Point Rule,Multiplier Field,د څوکې ډګر DocType: Workflow,Workflow State Field,د کارګاه دولتي ډګر @@ -864,6 +877,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New {0},نوی {0 apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto Repeat in the doctype {0},په doctype {0} کې د دود ساحه بیرته تکرار کړئ DocType: Auto Email Report,Zero means send records updated at anytime,ظرو معنی په هر وخت کې د ریکارډ تازه کولو لیږلی apps/frappe/frappe/model/document.py,Value cannot be changed for {0},ارزښت د {0} لپاره نشي بدلیدای +apps/frappe/frappe/config/integrations.py,Google API Settings.,د ګوګل API ترتیبات. DocType: System Settings,Force User to Reset Password,د شفر د بیا ځای کولو لپاره د ځواک ځواک apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,د راپور جوړونکي راپورونه په مستقیم ډول د راپور جوړونکي لخوا اداره کیږي. هیڅ د کولو نشته. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,فلټر @@ -916,7 +930,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,لپ DocType: S3 Backup Settings,eu-north-1,e-north-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}",{0}: یوازې یو قواعد د ورته رول سره، اجازه او {1} apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,تاسو ته د دې ویب فارم سند نوي کولو اجازه نلري -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,د دې ریکارډ لپاره د رسیدلو زیاتوالی محدودیت. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,د دې ریکارډ لپاره د رسیدلو زیاتوالی محدودیت. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,مهرباني وکړئ ډاډه کړئ چې د ریفورم اړیکو ډاونلوډ سرغړونه ندي. DocType: DocField,Allow in Quick Entry,په فوری ننوتلو کې اجازه ورکړئ DocType: Error Snapshot,Locals,سیمه ایز @@ -948,7 +962,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,د استثنا ډول apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},{0} {1} د {2} {3} {4} سره تړاو لري، ځکه چې ړنګول یا ردول نه شي کولی. apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,د OTP راز یوازې د مدیر لخوا ترتیب کیدی شي. -DocType: Web Form Field,Page Break,د پاڼې ماتول DocType: Website Script,Website Script,د ویب پاڼې سکرېپټ DocType: Integration Request,Subscription Notification,د ګډون سپارل DocType: DocType,Quick Entry,چټک داخلي @@ -965,6 +978,7 @@ DocType: Notification,Set Property After Alert,د خبرتیا وروسته د apps/frappe/frappe/__init__.py,Thank you,مننه apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,د داخلي انضباط لپاره سست ویب پاڼه apps/frappe/frappe/config/settings.py,Import Data,واردات ډاټا +DocType: Translation,Contributed Translation Doctype Name,د ژباړې شوې ژباړې نوم نوم DocType: Social Login Key,Office 365,دفتر 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,شناخت DocType: Review Level,Review Level,د بیاکتنې کچه @@ -982,7 +996,6 @@ DocType: Email Account,Awaiting Password,د شفر انتظار کول apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,پاسورډ نشي کولی تر 100 څخه زیات اوږده لیکونه وي apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,بریالي شو apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,ستاینه وکړئ -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),نوی {0} (Ctrl + B) DocType: Contact,Is Primary Contact,لومړنۍ اړیکه ده DocType: Print Format,Raw Commands,خام فرمانونه apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,د چاپ شکلونو لپاره سټیلیلټونه @@ -1023,6 +1036,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,د پس منظر apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},{0} په {1} کې ومومئ DocType: Email Account,Use SSL,د ایس ایس ایل کارول DocType: DocField,In Standard Filter,په معیاري فلټر کې +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,د ګووګل اړیکو نشتوالی ته حاضر دی. DocType: Data Migration Run,Total Pages,ټولې پاڼې apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: ساحه '{1}' نشي کولی غیرقانوني وي ځکه چې دا غیر غیر معمولي ارزښتونه لري DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.",که چیرې فعال وي نو کاروونکي به هر وخت دوی د ننوتلو خبر ورکړي. که چیرې فعال نه وي، نو کاروونکي به یوازې یو ځل خبر شي. @@ -1042,7 +1056,7 @@ DocType: Assignment Rule,Automation,اتوماتیک apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,دوتنې ناتګول ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',د {0} 'لپاره لټون وکړئ apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,کومه تیروتنه وشوه -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,لطفا د منلو دمخه مخنیوی وکړئ. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,لطفا د منلو دمخه مخنیوی وکړئ. DocType: Version,Table HTML,جدول HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,حب DocType: Page,Standard,معياري @@ -1118,12 +1132,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,هیڅ پا apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} ریکارډونه ړنګ شوي apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,د بکسونو بکسونو لاس ته راوړلو په وخت کې یو څه خراب شو. لطفا د نورو جزئیاتو لپاره د غلطی ټیک وګورئ. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,د -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,د ڈیفالف پته نه دی موندلی. مهرباني وکړئ د سایټ اپ> چاپ او برنامه> د پتې پته د یو نوی جوړ کړئ. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,د ګووګل اړیکو ترتیب شوی دی. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,تفصیلات پټ کړئ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,د فاڼې ډولونه apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,ستاسو ګډون به په {0} پای ته ورسیږي. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},تایید ناکام شو پداسې حال کې چې د بریښناليک حساب لخوا بریښنالیکونه ترلاسه کول {0}. د سرور څخه پیغام: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),د تیرې اوونۍ فعالیت پر بنسټ اعدادوونکي (د {0} څخه {1} څخه +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,اتوماتیک لینک کول یوازې فعال کیدی شي که چیرې راتلونکی وي فعال شي. DocType: Website Settings,Title Prefix,د سر مخفف apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,د تایید کولو هغه کاریالونه چې تاسو یې کارولی شئ دا دي: DocType: Bulk Update,Max 500 records at a time,په یو وخت کې Max 500 ریکارډونه @@ -1155,7 +1170,7 @@ DocType: Auto Email Report,Report Filters,د راپور فلټرونه apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,کالم غوره کړئ DocType: Event,Participants,ګډون کوونکي DocType: Auto Repeat,Amended From,له اصولو څخه -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,ستاسو معلومات سپارل شوي دي +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,ستاسو معلومات سپارل شوي دي DocType: Help Category,Help Category,مرسته کټګوري apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 مياشت apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,د اوسني بڼه ډک کړئ د نوې بڼه سمولو یا پیلولو لپاره. @@ -1201,7 +1216,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,ساحه په لاره اچول DocType: User,Generate Keys,کیلي تولید کړئ DocType: Comment,Unshared,بېشکه -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,خوندي شوی +DocType: Translation,Saved,خوندي شوی DocType: OAuth Client,OAuth Client,د OAuth کلینټ DocType: System Settings,Disable Standard Email Footer,د معياري ای میل فوټر نا معلول apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,چاپ چاپ بڼه {0} نافعال شوی @@ -1232,6 +1247,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,وروستي DocType: Data Import,Action,عمل apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,د مراجعینو کیلي اړین دی DocType: Chat Profile,Notifications,خبرتیاوې +DocType: Translation,Contributed,مرسته شوی DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy DocType: Report,Custom Report,د ګمرک رپوټ DocType: Workflow State,info-sign,معلومات - نښه @@ -1248,6 +1264,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,اړیکه DocType: LDAP Settings,LDAP Username Field,د LDAP د کارن نوم apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",{1} میدان نشي کولی د انفرادي په توګه د {1} په توګه وټاکل شي، ځکه چې د غیر غیر عصري موجوده ارزښتونو شتون شتون نلري +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,جوړ کړئ> فورمه ګمرک کړئ DocType: User,Social Logins,ټولنیز لوژستیکونه DocType: Workflow State,Trash,ټیټش DocType: Stripe Settings,Secret Key,پټ کلیدی @@ -1305,6 +1322,7 @@ DocType: DocType,Title Field,سرلیک ساحه apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,د وتلو بریښناليک سرور سره نښلولی نشی DocType: File,File URL,د دوتنې یو آر ایل DocType: Help Article,Likes,خوښ دي +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,د ګووګل اړیکو انټرنټ معیوب شوی دی. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,تاسو ته اړتیا لرئ چې ننوتل شئ او د سیسټم مدیر رول ولري چې د بیک اپونو ته د لاس رسۍ وړ وي. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,لومړی کچه DocType: Blogger,Short Name,لنډ نوم @@ -1322,13 +1340,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,زېرمه وارد کړه DocType: Contact,Gender,جندر DocType: Workflow State,thumbs-down,ګوتې -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},قطار باید د {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},د سند د ډول په اړه خبرتیا نشو ټاکلای {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,د دې کارن ته د سیسټم مدیر سره په دې کې باید لږترلږه یو سیسټم مدیر وي apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,خوشحاله برېښناليک لېږل DocType: Transaction Log,Chaining Hash,چاین هاش DocType: Contact,Maintenance Manager,د ترمیم مدیر +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",د پرتله کولو لپاره،> 5، <10 یا = 324 کاروئ. د قطارونو لپاره، د 5:10 کارول (د ارزښتونو لپاره د 5 څخه تر 10 پورې). apps/frappe/frappe/utils/bot.py,show,ښودل apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,د شریک یو آر ایل apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,د نامناسب دوتنه بڼه @@ -1350,7 +1368,7 @@ DocType: Communication,Notification,خبرتیا DocType: Data Import,Show only errors,یواځې غلطۍ ښکاره کړئ DocType: Energy Point Log,Review,بیاکتنه apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,څیزونه ړنګ شول -DocType: GSuite Settings,Google Credentials,د ګوګل اعتبارونه +DocType: Google Settings,Google Credentials,د ګوګل اعتبارونه apps/frappe/frappe/www/login.html,Or login with,یا د ننوتلو سره apps/frappe/frappe/model/document.py,Record does not exist,ریکارډ شتون نلري apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,د راپور راپور @@ -1374,6 +1392,7 @@ DocType: Desktop Icon,List,لیست DocType: Workflow State,th-large,لوی apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: د سپارلو وړ نه ده که نه apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,د کوم ریکارډ سره تړاو نلري +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","د QZ ټری اپیل سره نښلولو کې تېروتنه ...

تاسو اړتیا لرئ د QZ Tray غوښتنلیک نصب او چلولو سره، د Raw Print خصوصیت کارولو لپاره.

د qZ ټری د کښته کولو او لګولو لپاره دلته کلیک وکړئ .
د را چاپ کولو په اړه نور معلومات ترلاسه کولو لپاره دلته کلیک وکړئ ." DocType: Chat Message,Content,منځپانګې DocType: Workflow Transition,Allow Self Approval,د ځان تصویب اجازه ورکړئ apps/frappe/frappe/www/qrcode.py,Page has expired!,پاڼه پای ته ورسیده! @@ -1390,6 +1409,7 @@ DocType: Workflow State,hand-right,ښي لاس DocType: Website Settings,Banner is above the Top Menu Bar.,بينر د پورته مين ميز بار څخه دی. apps/frappe/frappe/www/update-password.html,Invalid Password,بې اعتباره پټنوم apps/frappe/frappe/utils/data.py,1 month ago,یوه میاشت وړاندې +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,د Google اړیکو لاسرسی ته اجازه ورکړئ DocType: OAuth Client,App Client ID,د اپرېم مراجع پېژند DocType: DocField,Currency,پیسې DocType: Website Settings,Banner,بینر @@ -1401,7 +1421,7 @@ apps/frappe/frappe/utils/goal.py,Goal,هدف DocType: Print Style,CSS,سی ایس ایس apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.",که چیرې رول په 0 درجې کې لاسرسی نلري، نو لوړه کچه بې اساسه وي. DocType: ToDo,Reference Type,د حوالې ډول -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!",د ډاټا ټائپ اجازه ورکول، ډاټا ټایپ. احتیاط کوه! +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!",د ډاټا ټائپ اجازه ورکول، ډاټا ټایپ. احتیاط کوه! DocType: Domain Settings,Domain Settings,د ډومین سیسټمونه DocType: Auto Email Report,Dynamic Report Filters,متحرک راپور فلټرونه DocType: Energy Point Log,Appreciation,ستاینه @@ -1442,6 +1462,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,موږ - لوی - 2 DocType: DocType,Is Single,یو دی apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,نوی بڼه جوړ کړئ +DocType: Google Contacts,Authorize Google Contacts Access,د ګووګل اړیکو لاسرسی واکمن کړئ DocType: S3 Backup Settings,Endpoint URL,د پای ټکی URL DocType: Social Login Key,Google,Google DocType: Contact,Department,څانګه @@ -1456,7 +1477,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,ته مراجع DocType: List Filter,List Filter,د لیست فلټر DocType: Dashboard Chart Link,Chart,چارټ apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,نشي لرې کولی -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,دا سند تاییدولو لپاره وسپاري +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,دا سند تاییدولو لپاره وسپاري apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,تاسو په دې فورمه کې خوندي شوي بدلونونه لرئ. مهرباني وکړئ مخکې له دې چې تاسو دوام ومومئ خوندي کړئ. apps/frappe/frappe/model/document.py,Action Failed,عمل ناکام شو DocType: Web Form,Actions,کړنې @@ -1536,6 +1557,7 @@ DocType: DocField,Display,ښودل apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,ځواب ځواب DocType: Calendar View,Subject Field,موضوع ساحه apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},د ناستې پای ته رسیدل باید په بڼه کې وي {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},غوښتنلیک: {0} DocType: Workflow State,zoom-in,zoom in apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,پالنګر سره پیوستون کې ناکام شو apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},نېټه {0} باید په بڼه کې وي: {1} @@ -1547,8 +1569,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,ازموینه DocType: Workflow State,Icon will appear on the button,انځر به تڼۍ کې راښکاره شي DocType: Role Permission for Page and Report,Set Role For,لپاره رول ټاکئ +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,خودکار لینک کول یوازې د یو بریښناليک حساب لپاره فعاله کیدی شي. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,د بریښناليک حساب ندی ټاکل شوی +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,د بریښنالیک حساب ندی جوړ شوی. مهرباني وکړئ د سیٹ اپ> بریښنالیک> ایمیل ادرس څخه یو نوی برېښناليک جوړ کړئ apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,دندې +DocType: Google Contacts,Last Sync On,وروستنۍ هممهال apps/frappe/frappe/config/website.py,Portal,پورال apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,د بریښنالیک څخه مو مننه apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,د فایلونو / یو آر ایل سره ضمیمه کړئ او په میز کې اضافه کړئ. @@ -1568,7 +1593,6 @@ DocType: GSuite Settings,GSuite Settings,د GSuite ترتیبونه DocType: Integration Request,Remote,ریموز DocType: File,Thumbnail URL,د لنډیز لنډیز apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,راپور کښته کول -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,غوراوي> کارن apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},د {0} لپاره صادرات د دې لپاره صادر شوي:
{1} DocType: GCalendar Account,Calendar Name,د نوم نوم apps/frappe/frappe/templates/emails/new_user.html,Your login id is,ستاسو د ننوت ایډ دی @@ -1616,6 +1640,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},{0} apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,د انځور ساحه باید یو باوري فیلډ نوم وي apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,تاسو دې پاڼې ته د لاسرسی لپاره ننوتلو ته اړتیا لرئ DocType: Assignment Rule,Example: {{ subject }},بېلګه: {{موضوع}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,فیلم نوم {0} محدود دی DocType: Social Login Key,Enable Social Login,ټولنیز ننوتل فعال کړئ DocType: Workflow,Rules defining transition of state in the workflow.,د کاري ورکشاپ کې د دولت لیږدول تعریفول. DocType: S3 Backup Settings,eu-west-1,e-west-1 @@ -1635,10 +1660,10 @@ DocType: Website Settings,Route Redirects,د لار لارښوونې apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,د برېښنالیک ان باکس apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},{1} د {1} په توګه بیرته راوګرځېده DocType: Assignment Rule,Automatically Assign Documents to Users,د کاروونکو لپاره لاسوندونه په خپل ځان سره وټاکئ +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,د پرانیستلو بریښنالیک apps/frappe/frappe/config/settings.py,Email Templates for common queries.,د عامو پوښتنو لپاره د بریښنالیک ټیمونه. DocType: Letter Head,Letter Head Based On,د لیک سر پر بنسټ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,مهرباني وکړئ دا کړکۍ بنده کړئ -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,پیسې بشپړ دي DocType: Contact,Designation,ډیزاین DocType: Webhook,Webhook,ویبوک DocType: Website Route Meta,Meta Tags,ماټا ټکي @@ -1674,6 +1699,7 @@ DocType: System Settings,Choose authentication method to be used by all users,د DocType: Error Snapshot,Parent Error Snapshot,د والدین تېروتنه انځور DocType: GCalendar Account,GCalendar Account,د ګالیلر حساب DocType: Language,Language Name,د ژبې نوم +DocType: Workflow Document State,Workflow Action is not created for optional states,د اختیاري دولتونو لپاره د کاري فلو اقدام ندی جوړ شوی DocType: Customize Form,Customize Form,فورمه ګمرک کړئ DocType: DocType,Image Field,د انځور ساحه apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),اضافه شوی {0} ({1}) @@ -1714,6 +1740,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,که چیرې کارن کار مالک وي نو دا قاعده پلي کول DocType: About Us Settings,Org History Heading,د ارګ تاریخ سرلیک apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,د پالنګر تېروتنه +DocType: Contact,Google Contacts Description,د ګووګل اړیکو تفصیل apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,معياري رولونه نشي بدلیدای DocType: Review Level,Review Points,د بیاکتنې ټکي apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,د پیرودونکي کانبان بورډ نوم ورک دی @@ -1730,7 +1757,6 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} does apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run.js,Currently updating {0},اوس مهال نوي کول {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,په پراختیایی موډ کې نه دی! په site_config.json کې وټاکئ یا د ګمرک 'ډاټا ټیک' جوړ کړئ. DocType: Web Form,Success Message,بریالیتوب پیغام -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",د پرتله کولو لپاره،> 5، <10 یا = 324 کاروئ. د قطارونو لپاره، د 5:10 کارول (د ارزښتونو لپاره د 5 څخه تر 10 پورې). DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",د لیست کولو پاڼې لپاره، په واضح متن کې، یوازې یو څو کرښې. (د زیاتو 140 حروف) apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,د اجازې ښودل DocType: DocType,Restrict To Domain,د ډومین ته محدود کول @@ -1801,6 +1827,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} کیلنال apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,د ډاټا واردولو چوکاټ DocType: Workflow State,hand-left,لاس کښتی +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,د څو لیست توکي غوره کړئ apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,د بیک اپ اندازه: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},لینک سره {0} DocType: Braintree Settings,Private Key,شخصي کیلي @@ -1841,13 +1868,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,دلچسپي DocType: Bulk Update,Limit,محدودیت DocType: Print Settings,Print taxes with zero amount,د صفر مقدار سره مالیات چاپ کړئ -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,د بریښنالیک حساب ندی جوړ شوی. مهرباني وکړئ د سیٹ اپ> بریښنالیک> ایمیل ادرس څخه یو نوی برېښناليک جوړ کړئ DocType: Workflow State,Book,کتاب DocType: S3 Backup Settings,Access Key ID,د کیلي لاسرسي DocType: Chat Message,URLs,یو آر ایل apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,نومونه او نومونه په خپله د اټکل کولو لپاره اسانه دي. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},راپور {0} DocType: About Us Settings,Team Members Heading,د ډلې غړي غړي +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,د لیست توکي غوره کړئ apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},لاسوند {0} د {1} لخوا د {2} DocType: Address Template,Address Template,د پتې پته DocType: Workflow State,step-backward,شاته مخکی @@ -1871,6 +1898,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,د صادرولو دود اجازه apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,هیڅوک: د کاری کاري پای پای DocType: Version,Version,نسخه +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,د پرانيستی لیست apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 مياشتې DocType: Chat Message,Group,ډله apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},د فایل یو آر ایل سره کومه ستونزه شتون لري: {0} @@ -1924,6 +1952,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,یو کال apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} خپل ټکي په {1} DocType: Workflow State,arrow-down,تیره برخه DocType: Data Import,Ignore encoding errors,د کوډ کولو تېروتنه وڅېړئ +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,لیدلوری DocType: Letter Head,Letter Head Name,د سر سر نوم DocType: Web Form,Client Script,د مراجع سکریپ DocType: Assignment Rule,Higher priority rule will be applied first,د لوړ لومړیتوب قواعد به لومړی وکارول شي @@ -1966,6 +1995,7 @@ DocType: Kanban Board Column,Green,شین apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,د نوو ریکارډونو لپاره یواځې لازمي سیمې ضروري دي. که تاسو وغواړئ غیر غیر ضروري کالمونه کولی شئ. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.",{0} باید د یو لیک سره پیل او پای ته ورسیږي او یوازې یوازې لیکونه، حفظ او یا نرس وی. +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,د ټریګر لومړني کړنه apps/frappe/frappe/core/doctype/user/user.js,Create User Email,د کارن برېښناليک جوړول apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,د ډول ډول ساحه {0} باید یو باوري ساحه نوم وي DocType: Auto Email Report,Filter Meta,مټا فلټر کړئ @@ -1995,6 +2025,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,د مهال ویش ساحه apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,پورته کول DocType: Auto Email Report,Half Yearly,نيمايي +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,زما پېژنيال apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,وروستی بدلیدونکی نیټه DocType: Contact,First Name,اول نوم DocType: Post,Comments,تبصره @@ -2017,6 +2048,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,د محتوا هاش apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},د {0} لخوا پوسټ apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{1} ټاکل شوی {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,نوې ګووګل تماسونه هم پکار دي. DocType: Workflow State,globe,نړۍ apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},اوسط {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,د غونډو خرابول @@ -2042,6 +2074,8 @@ DocType: Workflow State,Inverse,بې طرفه DocType: Activity Log,Closed,تړل شوی DocType: Report,Query,پوښتنلیک DocType: Notification,Days After,ورسته وروسته +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,د پاڼې لنډیزونه +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,پورټریټ apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,وړاندیز شوی وخت DocType: System Settings,Email Footer Address,د برېښناليک فوټر پته apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,د انرژي ټکي تازه @@ -2069,6 +2103,7 @@ For Select, enter list of Options, each on a new line.",د لینکونو لپا apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 دقیقې مخکې apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,هیڅ فعاله ناسته apps/frappe/frappe/model/base_document.py,Row,قطار +DocType: Contact,Middle Name,منځنی نوم apps/frappe/frappe/public/js/frappe/request.js,Please try again,مهرباني وکړئ بیا هڅه وکړئ DocType: Dashboard Chart,Chart Options,د چارټ انتخابونه DocType: Data Migration Run,Push Failed,پش ناکام شو @@ -2095,6 +2130,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,کمولو کوچنی DocType: Comment,Relinked,تکرار شوی DocType: Role Permission for Page and Report,Roles HTML,HTML لینکونه کوي +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,لاړ شه apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,ورکشاپ به د خوندي کولو وروسته پیل شي. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.",که ستاسو ارقام په HTML کې وي، نو مهرباني وکړئ د ټیټ ایچ ٹی ایم ایل کوډ د ټګ سره پیسټ کړئ. apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,د اټکل کولو لپاره وختونه اسانه دي. @@ -2123,7 +2159,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,د ډیسکټیک انځن apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,دا سند رد کړ apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,د نیټې رینج -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,د اپوډیشن کارن کارن اجازه apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{1} مننه وکړه {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,ارزښت بدل شوی apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,په خبرتیا کې تېروتنه @@ -2184,6 +2219,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,لویه برخی DocType: DocShare,Document Name,د لاسوند نوم apps/frappe/frappe/config/customization.py,Add your own translations,خپل خپل ژباړې اضافه کړئ +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,لیست نیټه DocType: S3 Backup Settings,eu-central-1,e-central-1 DocType: Auto Repeat,Yearly,کلنۍ apps/frappe/frappe/public/js/frappe/model/model.js,Rename,نوم بدله کړئ @@ -2233,6 +2269,7 @@ DocType: Workflow State,plane,الوتکه apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,د نزدې سیٹ تېروتنه. مهرباني وکړئ د مدیر سره اړیکه ونیسئ. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,راپور ښودل DocType: Auto Repeat,Auto Repeat Schedule,د اتوماتیک تکرار مهال ویش +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,وګورئ Ref DocType: Address,Office,دفتر DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} ورځې مخکې @@ -2266,7 +2303,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,و apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,زما ترتیبونه apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,د ډلې نوم خالي نه دی. DocType: Workflow State,road,سړک -DocType: Website Route Redirect,Source,سرچینه +DocType: Contact,Source,سرچینه apps/frappe/frappe/www/third_party_apps.html,Active Sessions,فعالې ناستې apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,په یوه فورمه کې یوازې یوازې یو مخ شتون لري apps/frappe/frappe/public/js/frappe/chat.js,New Chat,نوی چیٹ @@ -2288,6 +2325,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,لطفا مجازات URL ولیکئ DocType: Email Account,Send Notification to,خبرتیا ته واستوئ apps/frappe/frappe/config/integrations.py,Dropbox backup settings,د Dropbox بیکار امستنې +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,د نښه نسل په اوږدو کې یو څه خراب شوی. د یو نوي پیدا کولو لپاره په {0} کې ټک وکړئ. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,ټول دودونه لرې کړئ؟ apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,یوازې اداره کولی شي سمبال کړي DocType: Auto Repeat,Reference Document,د حوالې سند @@ -2310,6 +2348,7 @@ DocType: Tag Category,Tag Category,د ټيګ کټګوري apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,رولونه د کاروونکو لپاره د دوی د پاڼې پاڼې کېدی شي. DocType: Website Settings,Include Search in Top Bar,په سر بار کې لټون شامل کړئ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[متوجه] د بیاکتنې لپاره د٪ s لپاره تېروتنه +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,نړیوال شارټټونه DocType: Help Article,Author,لیکوال DocType: Webhook,on_cancel,په apps/frappe/frappe/client.py,No document found for given filters,د ورکړل شوي فلټرونو لپاره هیڅ سند نه موندل شوی @@ -2345,10 +2384,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}",{1}، صف {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.",که تاسو نوي ریکارډونه پورته کوئ، "د نومونې لړۍ" ضروري ده، که اړتیا وي. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,ځانتياوې -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,د مثال په توګه نشی کولی کله چې د هغه {0} خلاص دی +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,د مثال په توګه نشی کولی کله چې د هغه {0} خلاص دی DocType: Activity Log,Timeline Name,د مهال ویش نوم DocType: Comment,Workflow,کارګر apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,مهرباني وکړئ د فریپ لپاره د بنسټ ډیوډ کیلي کې بیس URL ولیکئ +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,د کیلي لنډیزونه DocType: Portal Settings,Custom Menu Items,د ګمرکي غوراوي توکي apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,د {0} اوږدوالی باید د 1 څخه تر 1000 پورې وي apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,پیوستون ورک شوی. ځینې ځانګړتیاوې ممکن کار ونکړي. @@ -2408,6 +2448,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,رڼې شا DocType: DocType,Setup,چمتو کول apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,په بریالیتوب سره {0} جوړ شو apps/frappe/frappe/www/update-password.html,New Password,نوئ پټ نوم +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,ساحه غوره کړه apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,دا خبرې پریږدئ DocType: About Us Settings,Team Members,د ټیم غړي DocType: Blog Settings,Writers Introduction,د لیکونکو پېژندنه @@ -2481,7 +2522,6 @@ DocType: DocType,"Make ""name"" searchable in Global Search",په Global Search DocType: Data Migration Mapping,Data Migration Mapping,د معلوماتو مهاجرت نقشه DocType: Data Import,Partially Successful,په بریالي توګه بریالی DocType: Communication,Error,تېروتنه -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","د QZ ټری اپیل سره نښلولو کې تېروتنه ...

تاسو اړتیا لرئ د QZ Tray غوښتنلیک نصب او چلولو سره، د Raw Print خصوصیت کارولو لپاره.

د qZ ټری د کښته کولو او لګولو لپاره دلته کلیک وکړئ .
د را چاپ کولو په اړه نور معلومات ترلاسه کولو لپاره دلته کلیک وکړئ ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,انځور واخلئ apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,د هغه کلونو څخه ډډه وکړئ کوم چې ستاسو سره تړاو لري. DocType: Web Form,Allow Incomplete Forms,نامتو فورمو ته اجازه ورکړئ @@ -2577,7 +2617,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",په نوي پاڼه کې د خلاصولو لپاره هدف = "_ بلک" غوره کړئ. DocType: Portal Settings,Portal Menu,د پوستکي غورنۍ DocType: Website Settings,Landing Page,د ځمکی مخ -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,مهرباني وکړئ د پیل لپاره نښې نښانې یا ننوتل DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",د اړیکو اختیارونه، د "د پلور پوښتنې، د پوښتنو پوښتنو" په څیر هر یو په نوي کرښه کې یا د کمونو لخوا جلا شوي. apps/frappe/frappe/twofactor.py,Verfication Code,د بریښنالیک کوډ apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{1} لدې کبله ناخبره شوي @@ -2662,6 +2701,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,د معلوما DocType: Address,Sales User,د پلور پلور کارن apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)",د ساحې ملکیت بدل کړئ (پټ کړئ، پیوستون، اجازه او نور) DocType: Property Setter,Field Name,د ساحې نوم +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,پېرودونکی DocType: Print Settings,Font Size,د فاڼې اندازه DocType: User,Last Password Reset Date,د وروستي شفر د بیاکتنې نیټه DocType: System Settings,Date and Number Format,د نیټه او شمېره شکل @@ -2727,6 +2767,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,ګروپ نوډ apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,د اوسني سره ضمیمه کړئ DocType: Blog Post,Blog Intro,د بلاګ پېژندنه apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,نوی یادونه +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,ډګر ته لاړ شئ DocType: Prepared Report,Report Name,د راپور نوم apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,مهرباني وکړئ تازه سند ترلاسه کړئ. apps/frappe/frappe/core/doctype/communication/communication.js,Close,بنده @@ -2736,10 +2777,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,پېښه DocType: Social Login Key,Access Token URL,د توکیو شفر کول apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,مهرباني وکړئ د خپل سایټ کنټرول کې د Dropbox لاسرسۍ کیلي وټاکئ +DocType: Google Contacts,Google Contacts,د ګوګل اړیکې DocType: User,Reset Password Key,د شفر بیاچالان کړه apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,اصلاح شوی DocType: User,Bio,بیو apps/frappe/frappe/limits.py,"To renew, {0}.",د نوي کولو لپاره، {0}. +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,په بریالیتوب سره خوندي شو +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,{0} ته برېښنالیک واستوئ چې دلته یې لینک کړئ. DocType: File,Folder,پوښۍ DocType: DocField,Perm Level,د پورت کچه DocType: Print Settings,Page Settings,د پاڼې ترتیبات @@ -2767,6 +2811,7 @@ DocType: User,Modules HTML,ماډولونه HTML DocType: Workflow State,remove-sign,لرې کوډ DocType: Dashboard Chart,Full,بشپړ DocType: DocType,User Cannot Create,کارن نشي جوړولی +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,غوراوي> کارن DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.",که تاسو دا وټاکئ، دا توکي به د ټاکل شوي پلار لاندې د یوې کمیټې لاندې راشي. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,نه برېښلیکونه apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,لاندې ساحې له لاسه ورکړې دي: @@ -2779,13 +2824,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,ک DocType: Web Form,Web Form Fields,د ویب فارم ډګرونه DocType: Desktop Icon,_doctype,_ بڼه apps/frappe/frappe/config/website.py,User editable form on Website.,په ویب پاڼه کې د کارن د تغیر وړ بڼه. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,په دوامداره توګه منسوخ کړئ {0}؟ +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,په دوامداره توګه منسوخ کړئ {0}؟ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,اختیار 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,ټیمونه apps/frappe/frappe/utils/password_strength.py,This is a very common password.,دا یو ډیر عام پاسورډ دی. DocType: Personal Data Deletion Request,Pending Approval,د تایید په تمه apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,سند په سمه توګه نه دی ټاکل شوی apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},د {0}: {1} لپاره اجازه نشته +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,د ښودلو لپاره هیڅ ارزښتونه نشته DocType: Personal Data Download Request,Personal Data Download Request,د ډاټا ډاټا ډاونلوډ غوښتنه apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{1} دا سند شریک کړی {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},{0} غوره کړه @@ -2800,7 +2846,6 @@ DocType: Custom DocPerm,Delete,ړنګول apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},دا برېښناليک ته {0} واستول شو او {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,ناسمه ننوتل یا پاسورډ DocType: Social Login Key,Social Login Key,د ټولنی ننوتل کیلي -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,مهرباني وکړئ د سایټ اپ> بریښنالیک> ایمیل ادرس څخه د بریښناليک ایمیل حساب ترتیب کړئ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,فلټرونه خوندي شول DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",دا پیسو څنګه باید شکل شي؟ که نه وي ټاکل شوي، د سیستم غلطی کاروي apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} د دولت لپاره {2} @@ -2926,6 +2971,7 @@ DocType: User,Location,ځای apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,ډاټا نشته DocType: Website Meta Tag,Website Meta Tag,ویب پاڼه ماتا ټګ DocType: Workflow State,film,فلم +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,د کلپبورډ سره کاپی شوی. apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,لیبل لازمی دی DocType: Webhook,Webhook Headers,د ویب هاک سرلیکونه apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email",د چاپ لپاره حساس شکلونه، ایمیل @@ -3129,7 +3175,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,You can use wildcard % DocType: Address,Address Line 1,د پته پته 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,د سند ډول ډول لپاره apps/frappe/frappe/model/base_document.py,Data missing in table,ډاټا په جدول کې ورک شوې -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,دا فورمه وروسته له هغې چې تمدید شوی وي تعدیل شوی +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,دا فورمه وروسته له هغې چې تمدید شوی وي تعدیل شوی apps/frappe/frappe/www/login.html,Back to Login,ننوتل بېرته apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,ندی DocType: Data Migration Mapping,Pull,کشول @@ -3193,6 +3239,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,د ماشوم جدو apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,د بریښنالیک حساب ورکونې سیسټم مهرباني وکړئ د خپل لپاره خپل پټ نوم ولیکئ apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,په ډیری غوښتنه کې لیکل کیږي. لطفا وړو غوښتنو ته واستوئ DocType: Social Login Key,Salesforce,خرڅلاو ځواک +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},د {1} د {0} واردول DocType: User,Tile,ټیل apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} خونه باید نږدې یو کارن ولري. DocType: Email Rule,Is Spam,سپام دی @@ -3229,7 +3276,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,پوښۍ - بند DocType: Data Migration Run,Pull Update,اوسمهال کړئ apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},{0} په {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,"

د '

" DocType: SMS Settings,Enter url parameter for receiver nos,د ترلاسه کولو لپاره د یو ایل پیرایټر داخل کړه apps/frappe/frappe/utils/jinja.py,Syntax error in template,په ټکي ټکي کې د Syntax تېروتنه apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,مهرباني وکړئ د راپور فلبل جدول کې د فلټر ارزښت وټاکئ. @@ -3242,6 +3288,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.",بخښنه DocType: System Settings,In Days,په ورځو کې DocType: Report,Add Total Row,ټول بڼې زياته کړه apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,ناسته پیل شوه +DocType: Translation,Verified,باوري شوي DocType: Print Format,Custom HTML Help,د ګمرک ایچ ایچ ایل مرسته DocType: Address,Preferred Billing Address,غوره شوي بلل پته apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,ته ټاکل شوی @@ -3256,7 +3303,6 @@ DocType: Help Article,Intermediate,منځګړیتوب DocType: Module Def,Module Name,د ماډول نوم DocType: OAuth Authorization Code,Expiration time,د پای نیټه apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.",ډیزاین بڼه، د پاڼې اندازه، د چاپ اندازې. -apps/frappe/frappe/desk/like.py,You cannot like something that you created,تاسو نشي کولی هغه څه چې تاسو یې جوړ کړي DocType: System Settings,Session Expiry,د ناستې پای ته رسیدنه DocType: DocType,Auto Name,د آوم نوم apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,ضمیمه غوره کړئ @@ -3283,6 +3329,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,د سیستم پاڼه DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,یادونه: د ناکامۍ شاتړ لپاره د ډیورنډ ای میلونو لخوا لېږل کیږي. DocType: Custom DocPerm,Custom DocPerm,ګمرک ډیکپرم +DocType: Translation,PR sent,د پی آر لیږل DocType: Tag Doc Category,Doctype to Assign Tags,د ټکي ټاکل وټاکئ DocType: Address,Warehouse,ګودام apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,د droprop setup @@ -3347,7 +3394,6 @@ DocType: ToDo,Assigned By,لخوا ټاکل شوی apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]:[Width],[ليبل]: [د ځمکې ډول] / [اختيارونه]: [چوکۍ] apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,تبصره زیاتولو لپاره Ctrl + ننوتل DocType: User,Birth Date,د زیږون نیټه -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,د ډلې اشغال سره DocType: List View Setting,Disable Count,د شمېرنې ناتوانول DocType: Contact Us Settings,Email ID,د بریښناليک ID apps/frappe/frappe/utils/password.py,Incorrect User or Password,ناسمه کارن یا پاسورډ @@ -3382,6 +3428,7 @@ DocType: Website Settings,<head> HTML,سرلیک HTML DocType: Custom DocPerm,This role update User Permissions for a user,دا رول د کارن لپاره د کارن اجازې نوي کول DocType: Website Theme,Theme,موضوع DocType: Web Form,Show Sidebar,پټه پټه ښودل +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,د ګوګل اړیکې اړیکې. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Default انباکس apps/frappe/frappe/www/login.py,Invalid Login Token,د ننوتنې ناسمه نښه apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,لومړی نوم نوم ټاکئ او ریکارډ خوندي کړئ. @@ -3408,7 +3455,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,مهرباني وکړئ سم کړئ DocType: Top Bar Item,Top Bar Item,د پورتنۍ بار توکي ,Role Permissions Manager,د رول اجازه اجازه مدیر -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,غلطۍ وې. مهرباني وکړئ دا راپور ورکړئ. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} کال (مخکې) مخکې apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,ښځه DocType: System Settings,OTP Issuer Name,د او ټي ټي پي جاري کوونکي نوم apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,ته لاړ شئ @@ -3505,6 +3552,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings",ژبه apps/frappe/frappe/model/document.py,none of,هیڅ یو DocType: Desktop Icon,Page,پاڼه DocType: Workflow State,plus-sign,نښان - نښه +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,پاکې کیلي او بیاپیرول apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,تازه نشي کولی: ناسم / وخت نیسي لینک. DocType: Kanban Board Column,Yellow,ژیړ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),په ګریډ کې د ساحې لپاره د کالمونو شمیره (په یوه گرډ کې ټول کالم باید له 11 څخه کم وي) @@ -3517,6 +3565,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,د DocType: Activity Log,Date,نیټه DocType: Communication,Communication Type,د اړیکو ډول apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,د والدین جدول +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,لیست نیټه DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,بشپړ تېروتنه وښایاست او د پراختیایي مسلو راپور ورکولو ته اجازه ورکړئ DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3537,7 +3586,6 @@ DocType: Communication,Sent,استول شوی DocType: Notification Recipient,Email By Role,د رول له لارې بریښناليک apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,مهرباني وکړئ د {0} څخه زیاتو ګډون کوونکو ته اضافه کولو لپاره اپوډیشن وکړئ DocType: User,Represents a User in the system.,په سیسټم کې یو کارن ته تکرار کوي. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},پاڼه {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,نوی بڼه پیل کړئ apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,یوه اضافه کړئ apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} د {1} diff --git a/frappe/translations/pt.csv b/frappe/translations/pt.csv index 5a220d542a..c2a72ab36b 100644 --- a/frappe/translations/pt.csv +++ b/frappe/translations/pt.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Ativar gradientes DocType: DocType,Default Sort Order,Ordem de classificação padrão apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Mostrando apenas campos numéricos do relatório +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Pressione a tecla Alt para acionar atalhos adicionais no menu e na barra lateral DocType: Workflow State,folder-open,pasta aberta DocType: Customize Form,Is Table,É tabela apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Não é possível abrir o arquivo anexado. Você exportou como CSV? DocType: DocField,No Copy,Nenhuma cópia DocType: Custom Field,Default Value,Valor padrão apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Anexar a é obrigatório para emails de entrada +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Sincronizar contatos DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Detalhe de Mapeamento de Migração de Dados apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Deixar de seguir apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",A impressão em PDF por meio de "Impressão bruta" ainda não é suportada. Remova o mapeamento da impressora em Configurações da impressora e tente novamente. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} e {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Houve um erro ao salvar os filtros apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Coloque sua senha apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Não é possível excluir as pastas Início e Anexos +DocType: Email Account,Enable Automatic Linking in Documents,Ativar Vinculação Automática em Documentos DocType: Contact Us Settings,Settings for Contact Us Page,Configurações para a página Fale conosco DocType: Social Login Key,Social Login Provider,Provedor de Login Social +DocType: Email Account,"For more information, click here.","Para mais informações, clique aqui ." DocType: Transaction Log,Previous Hash,Hash Anterior DocType: Notification,Value Changed,Valor Alterado DocType: Report,Report Type,Tipo de relatório @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Regra do ponto de energia apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,"Por favor, insira o ID do cliente antes que o login social esteja ativado" DocType: Communication,Has Attachment,Tem anexo DocType: User,Email Signature,Assinatura de e-mail -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ano (s) atrás ,Addresses And Contacts,Endereços e contatos apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Este Conselho Kanban será privado DocType: Data Migration Run,Current Mapping,Mapeamento Atual @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Você está selecionando a Opção de Sincronização como TODOS, Ele irá ressincronizar todas as mensagens \ read e não lidas do servidor. Isso também pode causar a duplicação \ de comunicação (e-mails)." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Última sincronização {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Não é possível alterar o conteúdo do cabeçalho +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Nenhum resultado encontrado para '

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Não é permitido alterar {0} após o envio apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","O aplicativo foi atualizado para uma nova versão, atualize esta página" DocType: User,User Image,Imagem do Usuário @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Marqu apps/frappe/frappe/public/js/frappe/chat.js,Discard,Descartar DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Selecione uma imagem de aproximadamente 150 px com um fundo transparente para obter melhores resultados. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,Recorrente +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} valores selecionados DocType: Blog Post,Email Sent,Email enviado DocType: Communication,Read by Recipient On,Ler por destinatário ativado DocType: User,Allow user to login only after this hour (0-24),Permitir que o usuário faça o login somente após essa hora (0 a 24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Módulo para Exportar DocType: DocType,Fields,Campos -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Você não tem permissão para imprimir este documento +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Você não tem permissão para imprimir este documento apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Pai apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Sua sessão expirou, faça o login novamente para continuar." DocType: Assignment Rule,Priority,Prioridade @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Redefinir OTP Secr DocType: DocType,UPPER CASE,CASO SUPERIOR apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,"Por favor, defina o endereço de email" DocType: Communication,Marked As Spam,Marcado como spam +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Endereço de e-mail cujos contatos do Google devem ser sincronizados. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Importar Inscritos apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Salvar filtro DocType: Address,Preferred Shipping Address,Endereço de entrega preferencial DocType: GCalendar Account,The name that will appear in Google Calendar,O nome que aparecerá no Google Agenda +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Clique em {0} para gerar o Token de Atualização. DocType: Email Account,Disable SMTP server authentication,Desativar autenticação do servidor SMTP DocType: Email Account,Total number of emails to sync in initial sync process ,Número total de emails a sincronizar no processo de sincronização inicial DocType: System Settings,Enable Password Policy,Ativar Política de Senha @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Insira Código apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Não em DocType: Auto Repeat,Start Date,Data de início apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Definir gráfico +DocType: Website Theme,Theme JSON,Tema JSON apps/frappe/frappe/www/list.py,My Account,Minha conta DocType: DocType,Is Published Field,É um campo publicado DocType: DocField,Set non-standard precision for a Float or Currency field,Definir precisão não padrão para um campo Flutuante ou Moeda @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: adicionar Reference: {{ reference_doctype }} {{ reference_name }} para enviar a referência do documento DocType: LDAP Settings,LDAP First Name Field,Campo de primeiro nome do LDAP apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Envio padrão e caixa de entrada -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuração> Personalizar Formulário apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.","Para atualização, você pode atualizar apenas colunas seletivas." apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',O padrão para o tipo de campo "Verificar" deve ser "0" ou "1" apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Compartilhe este documento com @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Domínios HTML DocType: Blog Settings,Blog Settings,Configurações do blog apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","O nome do DocType deve começar com uma letra e só pode consistir em letras, números, espaços e sublinhados" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuração> Permissões do usuário DocType: Communication,Integrations can use this field to set email delivery status,As integrações podem usar esse campo para definir o status de entrega de email apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Configurações de gateway de pagamento de faixa DocType: Print Settings,Fonts,Fontes DocType: Notification,Channel,Canal DocType: Communication,Opened,Aberto DocType: Workflow Transition,Conditions,Condições +apps/frappe/frappe/config/website.py,A user who posts blogs.,Um usuário que posta blogs. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Não tem uma conta? inscrever-se apps/frappe/frappe/utils/file_manager.py,Added {0},Adicionado {0} DocType: Newsletter,Create and Send Newsletters,Criar e enviar boletins informativos DocType: Website Settings,Footer Items,Itens de rodapé +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,"Por favor, configure a conta de e-mail padrão em Configuração> E-mail> Conta de e-mail" DocType: Website Slideshow Item,Website Slideshow Item,Item de apresentação de slides do site apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registrar o aplicativo do cliente OAuth DocType: Error Snapshot,Frames,Quadros @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","O nível 0 é para permissões no nível do documento, \ níveis mais altos para permissões no nível do campo." DocType: Address,City/Town,Cidade DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Isso redefinirá seu tema atual, tem certeza de que deseja continuar?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Campos obrigatórios requeridos em {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Erro ao conectar-se à conta de e-mail {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Ocorreu um erro ao criar recorrente @@ -528,7 +537,7 @@ DocType: Event,Event Category,Categoria do Evento apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Colunas baseadas em apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Editar cabeçalho DocType: Communication,Received,Recebido -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Você não tem permissão para acessar esta página. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Você não tem permissão para acessar esta página. DocType: User Social Login,User Social Login,Login social do usuário apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,Escreva um arquivo Python na mesma pasta em que isso é salvo e retorne a coluna e o resultado. DocType: Contact,Purchase Manager,Gerente de compras @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Conf apps/frappe/frappe/utils/data.py,Operator must be one of {0},Operador deve ser um dos {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Se o proprietário DocType: Data Migration Run,Trigger Name,Nome do Disparador -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Escreva títulos e apresentações em seu blog. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Remover campo apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Recolher todos apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Cor de fundo @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,Barra DocType: SMS Settings,Enter url parameter for message,Insira o parâmetro de URL para a mensagem apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Novo formato de impressão personalizado apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} já existe +DocType: Workflow Document State,Is Optional State,É estado opcional DocType: Address,Purchase User,Comprar usuário DocType: Data Migration Run,Insert,Inserir DocType: Web Form,Route to Success Link,Rota para o Link de Sucesso @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,O nome DocType: File,Is Home Folder,É pasta de casa apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Tipo: DocType: Post,Is Pinned,Está preso -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Sem permissão para '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Sem permissão para '{0}' {1} DocType: Patch Log,Patch Log,Log de correção DocType: Print Format,Print Format Builder,Construtor de formato de impressão 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","Se ativado, todos os usuários podem efetuar login de qualquer endereço IP usando a autenticação de dois fatores. Isso também pode ser definido apenas para usuários específicos na página do usuário" apps/frappe/frappe/utils/data.py,only.,só. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,A condição '{0}' é inválida DocType: Auto Email Report,Day of Week,Dia da semana +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Ative a API do Google nas configurações do Google. DocType: DocField,Text Editor,Editor de texto apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Cortar apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Pesquise ou digite um comando @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,Número de backups de banco de dados não pode ser menor que 1 DocType: Workflow State,ban-circle,ban-circle DocType: Data Export,Excel,Excel +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Cabeçalho, Breadcrumbs e Meta Tags" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Endereço de e-mail de suporte Não especificado DocType: Comment,Published,Publicados DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","Nota: Para obter melhores resultados, as imagens devem ter o mesmo tamanho e a largura deve ser maior que a altura." @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Último Evento do Agendador apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Relatório de todos os compartilhamentos de documentos DocType: Website Sidebar Item,Website Sidebar Item,Item da barra lateral do site apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Façam +DocType: Google Settings,Google Settings,Configurações do Google apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Selecione seu país, fuso horário e moeda" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Insira os parâmetros de URL estático aqui (por exemplo, remetente = ERPNext, nome de usuário = ERPNext, senha = 1234 etc.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Nenhuma conta de email @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,Token do Portador OAuth ,Setup Wizard,Assistente de configuração apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Alternar gráfico +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,Sincronizando DocType: Data Migration Run,Current Mapping Action,Ação de mapeamento atual DocType: Email Account,Initial Sync Count,Contagem de Sincronização Inicial apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Configurações para a página Fale conosco. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Tipo de formato de impressão apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Nenhuma permissão definida para este critério. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Expandir todos +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Nenhum modelo de endereço padrão encontrado. Por favor, crie um novo em Configuração> Impressão e identidade visual> Modelo de endereço." DocType: Tag Doc Category,Tag Doc Category,Tag Doc Category DocType: Data Import,Generated File,Arquivo Gerado apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Notas @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,O campo da linha do tempo deve ser um link ou um link dinâmico DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Notificações e correios em massa serão enviados a partir deste servidor de saída. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Esta é uma senha comum dos 100 principais. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Envie permanentemente {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Envie permanentemente {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} não existe, selecione um novo destino para mesclar" DocType: Energy Point Rule,Multiplier Field,Campo Multiplicador DocType: Workflow,Workflow State Field,Campo de estado do fluxo de trabalho @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} apreciou seu trabalho em {1} com {2} pontos DocType: Auto Email Report,Zero means send records updated at anytime,Zero significa enviar registros atualizados a qualquer momento apps/frappe/frappe/model/document.py,Value cannot be changed for {0},O valor não pode ser alterado para {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Configurações da API do Google. DocType: System Settings,Force User to Reset Password,Forçar usuário a redefinir a senha apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Os relatórios do Report Builder são gerenciados diretamente pelo criador de relatórios. Nada para fazer. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Editar filtro @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,para DocType: S3 Backup Settings,eu-north-1,eu-north-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Apenas uma regra é permitida com a mesma função, nível e {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Você não tem permissão para atualizar este documento de formulário da Web -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Limite Máximo de Anexos para este registro atingido. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Limite Máximo de Anexos para este registro atingido. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,Certifique-se de que os Documentos de Comunicação de Referência não estejam vinculados circularmente. DocType: DocField,Allow in Quick Entry,Permitir na entrada rápida DocType: Error Snapshot,Locals,Moradores locais @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Tipo de exceção apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},Não é possível excluir ou cancelar porque {0} {1} está vinculado a {2} {3} {4} apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTP segredo só pode ser redefinido pelo administrador. -DocType: Web Form Field,Page Break,Quebra de página DocType: Website Script,Website Script,Script do site DocType: Integration Request,Subscription Notification,Notificação de Subscrição DocType: DocType,Quick Entry,Entrada Rápida @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,Definir propriedade após alerta apps/frappe/frappe/__init__.py,Thank you,Obrigado apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Webhooks frouxos para integração interna apps/frappe/frappe/config/settings.py,Import Data,Importar dados +DocType: Translation,Contributed Translation Doctype Name,Nome do Documento de Tradução Contribuído DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,identidade DocType: Review Level,Review Level,Nível de revisão @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Feito com sucesso apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} lista apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Apreciar -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Novo {0} (Ctrl + B) DocType: Contact,Is Primary Contact,É o contato principal DocType: Print Format,Raw Commands,Comandos brutos apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Folhas de estilo para formatos de impressão @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Erros em eventos e apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Encontre {0} em {1} DocType: Email Account,Use SSL,Use SSL DocType: DocField,In Standard Filter,No filtro padrão +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Nenhum contato do Google presente para sincronizar. DocType: Data Migration Run,Total Pages,Total de páginas apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,"{0}: o campo '{1}' não pode ser definido como Único, pois possui valores não exclusivos" DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Se ativado, os usuários serão notificados sempre que fizerem login. Se não estiver ativado, os usuários serão notificados apenas uma vez." @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,Automação apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Descompactando arquivos ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Pesquisar por '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Algo deu errado -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,"Por favor, salve antes de anexar." +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,"Por favor, salve antes de anexar." DocType: Version,Table HTML,HTML de tabela apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,cubo DocType: Page,Standard,Padrão @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Nenhum resu apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} registros excluídos apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,"Algo deu errado ao gerar o token de acesso ao dropbox. Por favor, verifique o log de erros para mais detalhes." apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Descendentes De -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Nenhum modelo de endereço padrão encontrado. Por favor, crie um novo em Configuração> Impressão e identidade visual> Modelo de endereço." +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,O Contatos do Google foi configurado. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Detalhes ocultos apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Estilos de fonte apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Sua assinatura expirará em {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},A autenticação falhou ao receber e-mails da conta de e-mail {0}. Mensagem do servidor: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Estatísticas com base no desempenho da semana passada (de {0} a {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,O Link automático só pode ser ativado se a Entrada estiver ativada. DocType: Website Settings,Title Prefix,Prefixo do título apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Os aplicativos de autenticação que você pode usar são: DocType: Bulk Update,Max 500 records at a time,Máximo de 500 registros por vez @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,Filtros de relatório apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Selecione Colunas DocType: Event,Participants,Participantes DocType: Auto Repeat,Amended From,Emendado de -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Sua informação foi enviada +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Sua informação foi enviada DocType: Help Category,Help Category,Categoria de ajuda apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 mês apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Selecione um formato existente para editar ou iniciar um novo formato. @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Campo para rastrear DocType: User,Generate Keys,Gerar Chaves DocType: Comment,Unshared,Não partilhado -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Salvou +DocType: Translation,Saved,Salvou DocType: OAuth Client,OAuth Client,Cliente OAuth DocType: System Settings,Disable Standard Email Footer,Desativar rodapé de email padrão apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Formato de impressão {0} está desativado @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Última atual DocType: Data Import,Action,Açao apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,A chave do cliente é obrigatória DocType: Chat Profile,Notifications,Notificações +DocType: Translation,Contributed,Contribuído DocType: System Settings,mm/dd/yyyy,mm / dd / aaaa DocType: Report,Custom Report,Relatório Personalizado DocType: Workflow State,info-sign,informação-sinal @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Contato DocType: LDAP Settings,LDAP Username Field,Campo de nome de usuário LDAP apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","O campo {0} não pode ser definido como único em {1}, pois existem valores existentes não exclusivos" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configuração> Personalizar Formulário DocType: User,Social Logins,Logins Sociais DocType: Workflow State,Trash,Lixo DocType: Stripe Settings,Secret Key,Chave secreta @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,Campo de título apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Não foi possível conectar-se ao servidor de e-mail de saída DocType: File,File URL,URL do arquivo DocType: Help Article,Likes,Gostos +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,A integração de contatos do Google está desativada. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Você precisa estar logado e ter o System Manager Role para poder acessar os backups. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Primeiro nível DocType: Blogger,Short Name,Nome curto @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Importar CEP DocType: Contact,Gender,Gênero DocType: Workflow State,thumbs-down,polegares para baixo -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Fila deve ser um dos {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Não é possível definir a notificação no tipo de documento {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Adicionando o System Manager a este usuário, pois deve haver pelo menos um System Manager" apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,E-mail de boas-vindas enviado DocType: Transaction Log,Chaining Hash,Chains Hash DocType: Contact,Maintenance Manager,gerente de manutenção +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Para comparação, use> 5, <10 ou = 324. Para intervalos, use 5:10 (para valores entre 5 e 10)." apps/frappe/frappe/utils/bot.py,show,exposição apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URL de compartilhamento apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Formato de arquivo não suportado @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,Notificação DocType: Data Import,Show only errors,Mostrar apenas erros DocType: Energy Point Log,Review,Reveja apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Linhas removidas -DocType: GSuite Settings,Google Credentials,Credenciais do Google +DocType: Google Settings,Google Credentials,Credenciais do Google apps/frappe/frappe/www/login.html,Or login with,Ou faça o login com apps/frappe/frappe/model/document.py,Record does not exist,Registro não existe apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Novo nome do relatório @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,Lista DocType: Workflow State,th-large,th-large apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Não é possível definir Atribuir envio se não Enviar tabela apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Não vinculado a nenhum registro +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Erro ao conectar ao aplicativo QZ Tray ...

Você precisa ter o aplicativo QZ Tray instalado e em execução para usar o recurso Raw Print.

Clique aqui para baixar e instalar o QZ Tray .
Clique aqui para saber mais sobre a impressão crua ." DocType: Chat Message,Content,Conteúdo DocType: Workflow Transition,Allow Self Approval,Permitir auto-aprovação apps/frappe/frappe/www/qrcode.py,Page has expired!,A página expirou! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,mão direita DocType: Website Settings,Banner is above the Top Menu Bar.,Banner está acima da barra de menu superior. apps/frappe/frappe/www/update-password.html,Invalid Password,senha inválida apps/frappe/frappe/utils/data.py,1 month ago,1 mês atrás +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Permitir acesso aos Contatos do Google DocType: OAuth Client,App Client ID,ID do cliente da aplicação DocType: DocField,Currency,Moeda DocType: Website Settings,Banner,Bandeira @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Objetivo DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Se uma função não tiver acesso no nível 0, os níveis mais altos não terão sentido." DocType: ToDo,Reference Type,Tipo de referência -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Permitindo DocType, DocType. Seja cuidadoso!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Permitindo DocType, DocType. Seja cuidadoso!" DocType: Domain Settings,Domain Settings,Configurações de domínio DocType: Auto Email Report,Dynamic Report Filters,Filtros dinâmicos de relatórios DocType: Energy Point Log,Appreciation,Apreciação @@ -1468,6 +1489,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,us-west-2 DocType: DocType,Is Single,É único apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Crie um novo formato +DocType: Google Contacts,Authorize Google Contacts Access,Autorizar o acesso dos Contatos do Google DocType: S3 Backup Settings,Endpoint URL,URL do endpoint DocType: Social Login Key,Google,Google DocType: Contact,Department,Departamento @@ -1482,7 +1504,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Atribuir a DocType: List Filter,List Filter,Filtro de lista DocType: Dashboard Chart Link,Chart,Gráfico apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Não é possível remover -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Envie este documento para confirmar +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Envie este documento para confirmar apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} já existe. Selecione outro nome apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,"Você tem alterações não salvas neste formulário. Por favor, salve antes de continuar." apps/frappe/frappe/model/document.py,Action Failed,Ação: falhou @@ -1564,6 +1586,7 @@ DocType: DocField,Display,Exibição apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Responder todos DocType: Calendar View,Subject Field,Campo de assunto apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},A expiração da sessão deve estar no formato {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},Aplicando: {0} DocType: Workflow State,zoom-in,mais Zoom apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Falha ao conectar-se ao servidor apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},A data {0} deve estar no formato: {1} @@ -1575,8 +1598,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Ícone aparecerá no botão DocType: Role Permission for Page and Report,Set Role For,Definir papel para +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,O link automático pode ser ativado apenas para uma conta de e-mail. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Nenhuma conta de e-mail atribuída +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Conta de e-mail não configurada. Por favor, crie uma nova conta de e-mail em Configuração> E-mail> Conta de e-mail" apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Tarefa +DocType: Google Contacts,Last Sync On,Última sincronização ativada apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},ganho por {0} via regra automática {1} apps/frappe/frappe/config/website.py,Portal,Portal apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Obrigado pelo seu email @@ -1597,7 +1623,6 @@ DocType: GSuite Settings,GSuite Settings,Configurações do GSuite DocType: Integration Request,Remote,Controlo remoto DocType: File,Thumbnail URL,URL da miniatura apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Relatório de download -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configuração> Usuário apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Customizações para {0} exportadas para:
{1} DocType: GCalendar Account,Calendar Name,Nome do calendário apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Seu ID de login é @@ -1647,6 +1672,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Vá p apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,O campo de imagem deve ser um nome de campo válido apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,Você precisa estar logado para acessar esta página DocType: Assignment Rule,Example: {{ subject }},Exemplo: {{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,O nome do campo {0} é restrito apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Você não pode desarmar "Read Only" para o campo {0} DocType: Social Login Key,Enable Social Login,Ativar login social DocType: Workflow,Rules defining transition of state in the workflow.,Regras que definem a transição de estado no fluxo de trabalho. @@ -1667,10 +1693,10 @@ DocType: Website Settings,Route Redirects,Redirecionamentos de rota apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Caixa de entrada de e-mail apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},restaurado {0} como {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Atribuir documentos automaticamente aos usuários +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Open Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Modelos de e-mail para consultas comuns. DocType: Letter Head,Letter Head Based On,Carta de cabeça com base em apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Por favor feche esta janela -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Pagamento concluído DocType: Contact,Designation,Designação DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Meta Tags @@ -1709,6 +1735,7 @@ DocType: System Settings,Choose authentication method to be used by all users,Es DocType: Error Snapshot,Parent Error Snapshot,Instantâneo de erro pai DocType: GCalendar Account,GCalendar Account,Conta do GCalendar DocType: Language,Language Name,Nome do idioma +DocType: Workflow Document State,Workflow Action is not created for optional states,A ação do fluxo de trabalho não é criada para estados opcionais DocType: Customize Form,Customize Form,Personalize o formulário DocType: DocType,Image Field,Campo de imagem apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Adicionado {0} ({1}) @@ -1750,6 +1777,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,Aplique esta regra se o usuário for o proprietário DocType: About Us Settings,Org History Heading,Título do Org Org apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,erro de servidor +DocType: Contact,Google Contacts Description,Descrição dos Contatos do Google apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Funções padrão não podem ser renomeadas DocType: Review Level,Review Points,Pontos de revisão apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Parâmetro em falta Kanban Board Name @@ -1767,7 +1795,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Não no modo de desenvolvedor! Defina em site_config.json ou faça DocType 'Personalizado'. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,ganhou {0} pontos DocType: Web Form,Success Message,Mensagem de Sucesso -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Para comparação, use> 5, <10 ou = 324. Para intervalos, use 5:10 (para valores entre 5 e 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Descrição para a página de listagem, em texto simples, apenas algumas linhas. (max 140 caracteres)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Mostrar permissões DocType: DocType,Restrict To Domain,Restringir ao domínio @@ -1789,6 +1816,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Não A apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Quantidade configurada DocType: Auto Repeat,End Date,Data final DocType: Workflow Transition,Next State,Próximo estado +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Contatos do Google sincronizados. DocType: System Settings,Is First Startup,É a primeira inicialização apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},atualizado para {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Mover para @@ -1838,6 +1866,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Calendário apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Modelo de importação de dados DocType: Workflow State,hand-left,mão esquerda +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Selecione vários itens da lista apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Tamanho do backup: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Vinculado com {0} DocType: Braintree Settings,Private Key,Chave privada @@ -1880,13 +1909,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Interesse DocType: Bulk Update,Limit,Limite DocType: Print Settings,Print taxes with zero amount,Imprimir impostos com valor zero -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Conta de e-mail não configurada. Por favor, crie uma nova conta de e-mail em Configuração> E-mail> Conta de e-mail" DocType: Workflow State,Book,Livro DocType: S3 Backup Settings,Access Key ID,ID da chave de acesso DocType: Chat Message,URLs,URLs apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Nomes e sobrenomes sozinhos são fáceis de adivinhar. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Denunciar {0} DocType: About Us Settings,Team Members Heading,Cabeçalho dos membros da equipe +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Selecione o item da lista apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},O documento {0} foi definido para declarar {1} por {2} DocType: Address Template,Address Template,Modelo de endereço DocType: Workflow State,step-backward,Um passo atrás @@ -1910,6 +1939,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Exportar Permissões Personalizadas apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Nenhum: fim do fluxo de trabalho DocType: Version,Version,Versão +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Abrir item da lista apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 meses DocType: Chat Message,Group,Grupo apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Há algum problema com o URL do arquivo: {0} @@ -1965,6 +1995,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 ano apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} reverteu seus pontos em {1} DocType: Workflow State,arrow-down,seta para baixo DocType: Data Import,Ignore encoding errors,Ignore erros de codificação +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Panorama DocType: Letter Head,Letter Head Name,Nome da cabeça da carta DocType: Web Form,Client Script,Script de cliente DocType: Assignment Rule,Higher priority rule will be applied first,Regra de prioridade mais alta será aplicada primeiro @@ -2009,6 +2040,7 @@ DocType: Kanban Board Column,Green,Verde apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Somente campos obrigatórios são necessários para novos registros. Você pode excluir colunas não obrigatórias, se desejar." apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} deve começar e terminar com uma letra e só pode conter letras, hífen ou sublinhado." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Ação principal do acionador apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Criar email do usuário apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,O campo de classificação {0} deve ser um nome de campo válido DocType: Auto Email Report,Filter Meta,Filtro Meta @@ -2038,6 +2070,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Campo Timeline apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Carregando... DocType: Auto Email Report,Half Yearly,Semestralmente +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Meu perfil apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Data da última modificação DocType: Contact,First Name,Primeiro nome DocType: Post,Comments,Comentários @@ -2060,6 +2093,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Hash de conteúdo apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Mensagens de {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} atribuído {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Nenhum novo Google Contacts sincronizado. DocType: Workflow State,globe,globo apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Média de {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Limpar logs de erro @@ -2086,6 +2120,8 @@ DocType: Workflow State,Inverse,Inverso DocType: Activity Log,Closed,Fechadas DocType: Report,Query,Inquerir DocType: Notification,Days After,Dias depois +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Atalhos de página +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Retrato apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Solicitação expirada DocType: System Settings,Email Footer Address,Endereço do rodapé do email apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Atualização do ponto de energia @@ -2113,6 +2149,7 @@ For Select, enter list of Options, each on a new line.","Para Links, insira o Do apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 minuto atrás apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Sem Sessões Ativas apps/frappe/frappe/model/base_document.py,Row,Linha +DocType: Contact,Middle Name,Nome do meio apps/frappe/frappe/public/js/frappe/request.js,Please try again,"Por favor, tente novamente" DocType: Dashboard Chart,Chart Options,Opções de gráfico DocType: Data Migration Run,Push Failed,Falha no envio @@ -2141,6 +2178,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,redimensionar-pequeno DocType: Comment,Relinked,Vinculado DocType: Role Permission for Page and Report,Roles HTML,Funções HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Vai apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,O fluxo de trabalho será iniciado após o salvamento. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Se seus dados estiverem em HTML, copie e cole o código HTML exato com as tags." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,As datas costumam ser fáceis de adivinhar. @@ -2169,7 +2207,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Ícone da área de trabalho apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,cancelou este documento apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Intervalo de datas -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configuração> Permissões do usuário apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} apreciado {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Valores alterados apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Erro na notificação @@ -2233,6 +2270,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Excluir em massa DocType: DocShare,Document Name,Nome do Documento apps/frappe/frappe/config/customization.py,Add your own translations,Adicione suas próprias traduções +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Navegar pela lista DocType: S3 Backup Settings,eu-central-1,eu-central-1 DocType: Auto Repeat,Yearly,Anual apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Renomear @@ -2283,6 +2321,7 @@ DocType: Workflow State,plane,avião apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Erro de conjunto aninhado. Por favor entre em contato com o administrador. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Mostrar relatório DocType: Auto Repeat,Auto Repeat Schedule,Agenda de Repetição Automática +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Visualizar Ref DocType: Address,Office,Escritório DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} dias atrás @@ -2316,7 +2355,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Va apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Minhas configurações apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,O nome do grupo não pode estar vazio. DocType: Workflow State,road,estrada -DocType: Website Route Redirect,Source,Fonte +DocType: Contact,Source,Fonte apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Sessões ativas apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Pode haver apenas uma dobra em um formulário apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Novo chat @@ -2338,6 +2377,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,"Por favor, insira o URL de autorização" DocType: Email Account,Send Notification to,Enviar notificação para apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Configurações de backup do Dropbox +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,Algo deu errado durante a geração do token. Clique em {0} para gerar um novo. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Remover todas as personalizações? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Apenas administrador pode editar DocType: Auto Repeat,Reference Document,Documento de referência @@ -2362,6 +2402,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,As funções podem ser definidas para usuários de sua página de usuário. DocType: Website Settings,Include Search in Top Bar,Incluir pesquisa na barra superior apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Urgente] Erro ao criar% s recorrente para% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Atalhos Globais DocType: Help Article,Author,Autor DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Nenhum documento encontrado para determinados filtros @@ -2397,10 +2438,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, linha {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Se você estiver carregando novos registros, "Naming Series" se tornará obrigatória, se presente." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Editar propriedades -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Não é possível abrir a instância quando o {0} está aberto +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,Não é possível abrir a instância quando o {0} está aberto DocType: Activity Log,Timeline Name,Nome da Linha do Tempo DocType: Comment,Workflow,Fluxo de trabalho apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,"Por favor, defina o URL base na chave de login social para Frappe" +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Atalhos do teclado DocType: Portal Settings,Custom Menu Items,Itens de menu personalizados apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,Comprimento de {0} deve estar entre 1 e 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Conexão perdida. Alguns recursos podem não funcionar. @@ -2463,6 +2505,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Linhas adic DocType: DocType,Setup,Configuração apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} criado com sucesso apps/frappe/frappe/www/update-password.html,New Password,Nova senha +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Selecione o campo apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Deixe esta conversa DocType: About Us Settings,Team Members,Membros do time DocType: Blog Settings,Writers Introduction,Introdução aos escritores @@ -2532,13 +2575,12 @@ DocType: Chat Room,Name,Nome DocType: Communication,Email Template,Modelo de email DocType: Energy Point Settings,Review Levels,Revisar Níveis DocType: Print Format,Raw Printing,Impressão Raw -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Não é possível abrir {0} quando a instância está aberta +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,Não é possível abrir {0} quando a instância está aberta DocType: DocType,"Make ""name"" searchable in Global Search",Tornar "nome" pesquisável na pesquisa global DocType: Data Migration Mapping,Data Migration Mapping,Mapeamento de Migração de Dados DocType: Data Import,Partially Successful,Parcialmente bem sucedido DocType: Communication,Error,Erro apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},O tipo de campo não pode ser alterado de {0} para {1} na linha {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Erro ao conectar ao aplicativo QZ Tray ...

Você precisa ter o aplicativo QZ Tray instalado e em execução para usar o recurso Raw Print.

Clique aqui para baixar e instalar o QZ Tray .
Clique aqui para saber mais sobre a impressão crua ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Tirar fotos apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,Evite anos associados a você. DocType: Web Form,Allow Incomplete Forms,Permitir formulários incompletos @@ -2634,7 +2676,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Selecione target = "_blank" para abrir em uma nova página. DocType: Portal Settings,Portal Menu,Menu do Portal DocType: Website Settings,Landing Page,Landing Page -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,"Por favor, inscreva-se ou faça o login para começar" DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opções de contato, como "Consulta de Vendas, Consulta de Suporte" etc., cada uma em uma nova linha ou separadas por vírgulas." apps/frappe/frappe/twofactor.py,Verfication Code,Código de Verificação apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} já anulado @@ -2720,6 +2761,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Mapeamento do P DocType: Address,Sales User,Usuário de vendas apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Alterar as propriedades do campo (ocultar, somente leitura, permissão etc.)" DocType: Property Setter,Field Name,Nome do campo +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Cliente DocType: Print Settings,Font Size,Tamanho da fonte DocType: User,Last Password Reset Date,Data da última redefinição de senha DocType: System Settings,Date and Number Format,Formato de data e número @@ -2785,6 +2827,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Nó de grupo apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Mesclar com existente DocType: Blog Post,Blog Intro,Introdução ao Blog apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nova menção +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Ir para o campo DocType: Prepared Report,Report Name,Nome do relatório apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Por favor, atualize para obter o documento mais recente." apps/frappe/frappe/core/doctype/communication/communication.js,Close,Perto @@ -2794,10 +2837,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Evento DocType: Social Login Key,Access Token URL,URL do token de acesso apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,"Por favor, defina as chaves de acesso do Dropbox na sua configuração do site" +DocType: Google Contacts,Google Contacts,Contatos do Google DocType: User,Reset Password Key,Redefinir Chave de Senha apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Modificado por DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.","Para renovar, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Salvo com sucesso +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Envie um e-mail para {0} para vinculá-lo aqui. DocType: File,Folder,Pasta DocType: DocField,Perm Level,Nível de Perm DocType: Print Settings,Page Settings,Configurações de página @@ -2827,6 +2873,7 @@ DocType: Workflow State,remove-sign,remover o sinal DocType: Dashboard Chart,Full,Cheio DocType: DocType,User Cannot Create,Usuário não pode criar apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Você ganhou {0} ponto +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configuração> Usuário DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Se você definir isso, este item virá em um menu suspenso sob o pai selecionado." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Nenhum email apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Os campos a seguir estão faltando: @@ -2840,13 +2887,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Mos DocType: Web Form,Web Form Fields,Campos de formulário da Web DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Formulário editável do usuário no site. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Cancelar permanentemente {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Cancelar permanentemente {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Opção 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,Totais apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Esta é uma senha muito comum. DocType: Personal Data Deletion Request,Pending Approval,Aprovação pendente apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,O documento não pôde ser atribuído corretamente apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Não permitido para {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Nenhum valor para mostrar DocType: Personal Data Download Request,Personal Data Download Request,Solicitação de download de dados pessoais apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} compartilhou este documento com {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Selecione {0} @@ -2862,7 +2910,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Este e-mail foi enviado para {0} e copiado para {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,Login ou senha inválidos DocType: Social Login Key,Social Login Key,Chave de Login Social -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,"Por favor, configure a conta de e-mail padrão em Configuração> E-mail> Conta de e-mail" apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filtros salvos DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Como essa moeda deve ser formatada? Se não estiver definido, usará os padrões do sistema" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} está definido para o estado {2} @@ -2988,6 +3035,7 @@ DocType: User,Location,Localização apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Sem dados DocType: Website Meta Tag,Website Meta Tag,Tag Meta do Site DocType: Workflow State,film,filme +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Copiado para a área de transferência. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Configurações não encontradas apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,O rótulo é obrigatório DocType: Webhook,Webhook Headers,Cabeçalhos Webhook @@ -3196,7 +3244,7 @@ DocType: Address,Address Line 1,Endereço Linha 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Para o tipo de documento apps/frappe/frappe/model/base_document.py,Data missing in table,Dados em falta na tabela apps/frappe/frappe/utils/bot.py,Could not identify {0},Não foi possível identificar {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Este formulário foi modificado depois de ter sido carregado +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Este formulário foi modificado depois de ter sido carregado apps/frappe/frappe/www/login.html,Back to Login,Volte ao login apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Não configurado DocType: Data Migration Mapping,Pull,Puxar @@ -3264,6 +3312,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Mapeamento de tabela apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,"Configuração da conta de e-mail, digite sua senha para:" apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,"Muitas gravações em uma solicitação. Por favor, envie pedidos menores" DocType: Social Login Key,Salesforce,Força de vendas +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importando {0} de {1} DocType: User,Tile,Telha apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} sala deve ter no máximo um usuário. DocType: Email Rule,Is Spam,É spam @@ -3301,7 +3350,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,pasta fechada DocType: Data Migration Run,Pull Update,Pull Update apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},mesclado {0} em {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Nenhum resultado encontrado para '

DocType: SMS Settings,Enter url parameter for receiver nos,Insira o parâmetro url para os números do receptor apps/frappe/frappe/utils/jinja.py,Syntax error in template,Erro de sintaxe no modelo apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,"Por favor, defina o valor dos filtros na tabela Filtro de relatório." @@ -3314,6 +3362,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Desculpe, v DocType: System Settings,In Days,Em dias DocType: Report,Add Total Row,Adicionar linha total apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Início da sessão falhou +DocType: Translation,Verified,Verificado DocType: Print Format,Custom HTML Help,Ajuda HTML personalizada DocType: Address,Preferred Billing Address,Endereço de cobrança preferencial apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Atribuído a @@ -3328,7 +3377,6 @@ DocType: Help Article,Intermediate,Intermediário DocType: Module Def,Module Name,nome do módulo DocType: OAuth Authorization Code,Expiration time,Data de validade apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Definir o formato padrão, tamanho da página, estilo de impressão, etc." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,Você não pode gostar de algo que você criou DocType: System Settings,Session Expiry,Expiração da sessão DocType: DocType,Auto Name,Nome Automático apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Selecione Anexos @@ -3356,6 +3404,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Página do sistema DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,"Nota: Por padrão, os e-mails para backups com falha são enviados." DocType: Custom DocPerm,Custom DocPerm,DocPerm personalizado +DocType: Translation,PR sent,PR enviado DocType: Tag Doc Category,Doctype to Assign Tags,Doctype para atribuir tags DocType: Address,Warehouse,Armazém apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Configuração do Dropbox @@ -3423,7 +3472,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Enter para adicionar comentário apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,O campo {0} não é selecionável. DocType: User,Birth Date,Data de nascimento -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Com indentação de grupo DocType: List View Setting,Disable Count,Desativar Contagem DocType: Contact Us Settings,Email ID,Identificação do email apps/frappe/frappe/utils/password.py,Incorrect User or Password,Usuário ou Senha Incorreta @@ -3458,6 +3506,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Esta função atualiza as permissões do usuário para um usuário DocType: Website Theme,Theme,Tema DocType: Web Form,Show Sidebar,Mostrar barra lateral +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Integração de Contatos do Google. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Caixa de Entrada Padrão apps/frappe/frappe/www/login.py,Invalid Login Token,Token de Login Inválido apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,"Primeiro, defina o nome e salve o registro." @@ -3485,7 +3534,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Por favor corrija o DocType: Top Bar Item,Top Bar Item,Item de barra superior ,Role Permissions Manager,Gerente de permissões de função -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,"Houve erros. Por favor, comunique isso." +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ano (s) atrás apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Fêmea DocType: System Settings,OTP Issuer Name,OTP Issuer Name apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Adicionar para fazer @@ -3585,6 +3634,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Config apps/frappe/frappe/model/document.py,none of,nenhum DocType: Desktop Icon,Page,Página DocType: Workflow State,plus-sign,sinal de mais +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Limpar cache e recarregar apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Não é possível atualizar: Link incorreto / expirado. DocType: Kanban Board Column,Yellow,Amarelo DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Número de colunas para um campo em uma grade (total de colunas em uma grade deve ser menor que 11) @@ -3599,6 +3649,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Novo DocType: Activity Log,Date,Encontro DocType: Communication,Communication Type,Tipo de comunicação apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Tabela pai +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Navegar pela lista DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Mostrar erro completo e permitir relatórios de problemas para o desenvolvedor DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3620,7 +3671,6 @@ DocType: Notification Recipient,Email By Role,E-mail por função apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,"Por favor, atualize para adicionar mais de {0} inscritos" apps/frappe/frappe/email/queue.py,This email was sent to {0},Este email foi enviado para {0} DocType: User,Represents a User in the system.,Representa um usuário no sistema. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Página {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Iniciar novo formato apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Adicione um comentário apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} de {1} diff --git a/frappe/translations/ro.csv b/frappe/translations/ro.csv index 21af90225b..e8c3cfe3c8 100644 --- a/frappe/translations/ro.csv +++ b/frappe/translations/ro.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Activați Gradienții DocType: DocType,Default Sort Order,Ordine de sortare implicită apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Se afișează numai câmpuri numerice din raport +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Apăsați tasta Alt pentru a declanșa comenzi rapide suplimentare în meniul și bara laterală DocType: Workflow State,folder-open,folder-deschis DocType: Customize Form,Is Table,Este tabelul apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Imposibil de deschis fișierul atașat. Ați exportat-o ca CSV? DocType: DocField,No Copy,Nu copiați DocType: Custom Field,Default Value,Valoare implicită apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Aplicația Ad este obligatorie pentru mesajele primite +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Sincronizarea contactelor DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Migrarea datelor detaliilor de cartografiere apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Nu mai urmări apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",Imprimarea PDF prin "Raw Print" nu este încă acceptată. Scoateți cartografia imprimantei în Setările imprimantei și încercați din nou. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} și {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,A apărut o eroare la salvarea filtrelor apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Introduceți parola apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Nu se poate șterge dosarele Acasă și atașamente +DocType: Email Account,Enable Automatic Linking in Documents,Activați conectarea automată în documente DocType: Contact Us Settings,Settings for Contact Us Page,Setări pentru pagina de contact DocType: Social Login Key,Social Login Provider,Furnizor de conectare socială +DocType: Email Account,"For more information, click here.","Pentru mai multe informații, faceți clic aici ." DocType: Transaction Log,Previous Hash,Hashul anterior DocType: Notification,Value Changed,Valoarea a fost modificată DocType: Report,Report Type,Tip de raport @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Regulă punct de energie apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,Introduceți codul client înainte de activarea conectării sociale DocType: Communication,Has Attachment,Are atașament DocType: User,Email Signature,Semnatura email -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ani în urmă ,Addresses And Contacts,Adresele și contactele apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Acest Consiliu Kanban va fi privat DocType: Data Migration Run,Current Mapping,Cartografiere curentă @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Alegeți opțiunea de sincronizare ca ALL, va resincroniza toate mesajele \ citite, precum și mesajul necitit de pe server. Acest lucru poate provoca și duplicarea Comunicării (e-mailuri)." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Ultima sincronizare {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Nu se poate modifica conținutul antetului +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Nu s-au găsit rezultate pentru '

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Nu este permisă modificarea {0} după trimitere apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Aplicația a fost actualizată la o nouă versiune, actualizați această pagină" DocType: User,User Image,Imaginea utilizatorului @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Marca apps/frappe/frappe/public/js/frappe/chat.js,Discard,decarta DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Selectați o imagine cu o lățime de aproximativ 150px cu fundal transparent pentru rezultate optime. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,recădere +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} valorile selectate DocType: Blog Post,Email Sent,Email trimis DocType: Communication,Read by Recipient On,Citiți de către destinatari activat DocType: User,Allow user to login only after this hour (0-24),Permiteți utilizatorului să se conecteze numai după această oră (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Modul pentru export DocType: DocType,Fields,Câmpuri -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Nu aveți voie să imprimați acest document +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Nu aveți voie să imprimați acest document apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Mamă apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Sesiunea dvs. a expirat, conectați-vă din nou pentru a continua." DocType: Assignment Rule,Priority,Prioritate @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Resetați OTP Secr DocType: DocType,UPPER CASE,MAJUSCULE apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,Vă rugăm să setați adresa de e-mail DocType: Communication,Marked As Spam,Marcat ca spam +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Adresa de e-mail ale cărei contacte Google trebuie să fie sincronizate. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Importă abonații apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Salvați filtrul DocType: Address,Preferred Shipping Address,Adresă de expediere preferată DocType: GCalendar Account,The name that will appear in Google Calendar,Numele care va apărea în Google Calendar +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Dați clic pe {0} pentru a genera Refresh Token. DocType: Email Account,Disable SMTP server authentication,Dezactivați autentificarea serverului SMTP DocType: Email Account,Total number of emails to sync in initial sync process ,Numărul total de e-mailuri care se sincronizează în procesul de sincronizare inițială DocType: System Settings,Enable Password Policy,Activați politica de parole @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Introduce codul apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Nu în DocType: Auto Repeat,Start Date,Data de început apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Setați graficul +DocType: Website Theme,Theme JSON,Tema JSON apps/frappe/frappe/www/list.py,My Account,Contul meu DocType: DocType,Is Published Field,Este câmp publicat DocType: DocField,Set non-standard precision for a Float or Currency field,Setați precizia nestandard pentru un câmp Float sau valută @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Adăugați Reference: {{ reference_doctype }} {{ reference_name }} pentru a trimite referință la document DocType: LDAP Settings,LDAP First Name Field,LDAP First Name Field apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Mesajele primite și primite -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configurare> Personalizați formularul apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.","Pentru actualizare, puteți actualiza numai coloanele selective." apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',Valoarea implicită pentru câmpul "Verificați" trebuie să fie "0" sau "1" apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Împărtășiți acest document cu @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Domenii HTML DocType: Blog Settings,Blog Settings,Setări blog apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Numele lui DocType ar trebui să înceapă cu o literă și poate să conțină doar litere, numere, spații și subliniere" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configurare> Permisiuni utilizator DocType: Communication,Integrations can use this field to set email delivery status,Integrarea poate utiliza acest câmp pentru a seta starea livrării prin e-mail apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Setările pentru gateway-ul de plată DocType: Print Settings,Fonts,Fonturi DocType: Notification,Channel,Canal DocType: Communication,Opened,Deschis DocType: Workflow Transition,Conditions,Condiții +apps/frappe/frappe/config/website.py,A user who posts blogs.,Un utilizator care postează bloguri. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Nu aveți un cont? Inscrie-te apps/frappe/frappe/utils/file_manager.py,Added {0},A adăugat {0} DocType: Newsletter,Create and Send Newsletters,Creați și trimiteți buletine de știri DocType: Website Settings,Footer Items,Articole subsol +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Configurați implicit contul de e-mail din Configurare> Email> Cont email DocType: Website Slideshow Item,Website Slideshow Item,Site Slideshow Item apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Înregistrați aplicația client OAuth DocType: Error Snapshot,Frames,Cadre @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Nivelul 0 este pentru permisiunile la nivel de document, \ niveluri mai ridicate pentru permisiunile la nivel de câmp." DocType: Address,City/Town,Oraș / Orașul DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Aceasta va reinițializa tema curentă, sunteți sigur că doriți să continuați?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Campurile obligatorii necesare în {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Eroare la conectarea la contul de e-mail {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,A apărut o eroare la crearea unei recurențe @@ -528,7 +537,7 @@ DocType: Event,Event Category,Categoria evenimentului apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Coloane bazate pe apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Editați rubrica DocType: Communication,Received,Primit -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Nu aveți permisiunea de a accesa această pagină. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Nu aveți permisiunea de a accesa această pagină. DocType: User Social Login,User Social Login,Conectare socială utilizator apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,Scrieți un fișier Python în același director unde acesta este salvat și returnați coloana și rezultatul. DocType: Contact,Purchase Manager,Manager de achizitii @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Conf apps/frappe/frappe/utils/data.py,Operator must be one of {0},Operatorul trebuie să fie unul dintre {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Dacă proprietarul DocType: Data Migration Run,Trigger Name,Numele de declanșare -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Scrieți titluri și introduceri pe blogul dvs. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Eliminați câmpul apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Restrângeți tot apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Culoare de fundal @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,Bar DocType: SMS Settings,Enter url parameter for message,Introduceți parametrul url pentru mesaj apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nou format personalizat de imprimare apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} există deja +DocType: Workflow Document State,Is Optional State,Este starea opțională DocType: Address,Purchase User,Achiziționați un utilizator DocType: Data Migration Run,Insert,Introduce DocType: Web Form,Route to Success Link,Traseul spre succes @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Numele DocType: File,Is Home Folder,Este dosarul de domiciliu apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Tip: DocType: Post,Is Pinned,Este fixat -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Nu ai permisiunea să "{0}" {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Nu ai permisiunea să "{0}" {1} DocType: Patch Log,Patch Log,Patch Log DocType: Print Format,Print Format Builder,Print Builder Format 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","Dacă este activată, toți utilizatorii se pot conecta de la orice adresă IP utilizând Two Factor Auth. Acest lucru poate fi setat și numai pentru anumiți utilizatori din pagina de utilizator" apps/frappe/frappe/utils/data.py,only.,numai. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,Condiția "{0}" este nevalidă DocType: Auto Email Report,Day of Week,Zi a săptămânii +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Activați Google API în Setări Google. DocType: DocField,Text Editor,Editor text apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,A taia apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Căutați sau tastați o comandă @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,Numărul de backup-uri DB nu poate fi mai mic de 1 DocType: Workflow State,ban-circle,ban-cerc DocType: Data Export,Excel,excela +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Header, Breadcrumbs și Meta Tags" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Adresa de email nu este specificată DocType: Comment,Published,Publicat DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","Notă: Pentru cele mai bune rezultate, imaginile trebuie să aibă aceeași dimensiune, iar lățimea trebuie să fie mai mare decât înălțimea." @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Programator Evenimentul final apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Raportul tuturor acțiunilor din documente DocType: Website Sidebar Item,Website Sidebar Item,Bara laterală a site-ului apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,A face +DocType: Google Settings,Google Settings,Setările Google apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Selectați Țara, Fusul orar și Moneda" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Introduceți parametrii de url static aici (de exemplu, expeditor = ERPNext, username = ERPNext, password = 1234 etc.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Nu există un cont de e-mail @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,Tokenul purtătorului OAuth ,Setup Wizard,Asistentul de configurare apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Schimbați graficul +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,sincronizaţi DocType: Data Migration Run,Current Mapping Action,Acțiune de cartografiere curentă DocType: Email Account,Initial Sync Count,Contorul inițial de sincronizare apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Setări pentru pagina de contact. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Tipul tipului de imprimare apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Nu există permisiuni stabilite pentru acest criteriu. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Extinde toate +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nu a fost găsit niciun șablon de adresă implicit. Creați unul nou din Setup> Printing and Branding> Template Address. DocType: Tag Doc Category,Tag Doc Category,Tag Categoria Doc DocType: Data Import,Generated File,Fișier generat apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,notițe @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Câmpul de cronologie trebuie să fie un link sau o legătură dinamică DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Notificările și e-mailurile în vrac vor fi trimise de pe acest server de ieșire. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Aceasta este o parolă de top-100 comună. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Trimiteți permanent {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Trimiteți permanent {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} nu există, selectați o nouă destinație de îmbinare" DocType: Energy Point Rule,Multiplier Field,Câmp multiplicator DocType: Workflow,Workflow State Field,Câmp de stare a fluxului de lucru @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} ți-a apreciat munca pe {1} cu {2} puncte DocType: Auto Email Report,Zero means send records updated at anytime,Zero înseamnă trimiterea înregistrărilor actualizate oricând apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Valoarea nu poate fi modificată pentru {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Setările Google API. DocType: System Settings,Force User to Reset Password,Forțați utilizatorul să reseteze parola apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Rapoartele Builder de rapoarte sunt gestionate direct de constructorul de rapoarte. Nimic de făcut. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Editați filtrul @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,pentr DocType: S3 Backup Settings,eu-north-1,ue-nord-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: este permisă o singură regulă cu același Rol, Nivel și {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Nu aveți permisiunea de a actualiza acest document Web Form -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Limita de atașament maximă pentru această înregistrare a fost atinsă. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Limita de atașament maximă pentru această înregistrare a fost atinsă. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,Asigurați-vă că Documentele de comunicare de referință nu sunt legate circular. DocType: DocField,Allow in Quick Entry,Permiteți înregistrarea rapidă DocType: Error Snapshot,Locals,localnicii @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Tip de excepție apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},Nu se poate șterge sau anula deoarece {0} {1} este asociată cu {2} {3} {4} apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,Secretul OTP poate fi resetat numai de Administrator. -DocType: Web Form Field,Page Break,Break-ul paginii DocType: Website Script,Website Script,Site Script DocType: Integration Request,Subscription Notification,Notificare privind abonamentul DocType: DocType,Quick Entry,Intrare rapidă @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,Setați proprietatea după alert apps/frappe/frappe/__init__.py,Thank you,Mulțumesc apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks pentru integrare internă apps/frappe/frappe/config/settings.py,Import Data,Importați date +DocType: Translation,Contributed Translation Doctype Name,Numele de traducere al Doctype DocType: Social Login Key,Office 365,Biroul 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID-ul DocType: Review Level,Review Level,Nivel de revizuire @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,S-a terminat cu succes apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Listă apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,A aprecia -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Nou {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Este contactul primar DocType: Print Format,Raw Commands,Comenzi crude apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Stiluri pentru formate de tipărire @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Erori la eveniment apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Găsiți {0} în {1} DocType: Email Account,Use SSL,Utilizați SSL DocType: DocField,In Standard Filter,În filtrul standard +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Nu există niciun contact Google pentru sincronizare. DocType: Data Migration Run,Total Pages,Pagini totale apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: Câmpul "{1}" nu poate fi setat ca unic deoarece are valori non-unice DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Dacă este activată, utilizatorii vor fi notificați de fiecare dată când se autentifică. Dacă nu este activată, utilizatorii vor fi notificați o singură dată." @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,Automatizare apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Dezarhivarea fișierelor ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Căutați după '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Ceva n-a mers bine -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Salvați înainte de atașare. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,Salvați înainte de atașare. DocType: Version,Table HTML,Tabelul HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,butuc DocType: Page,Standard,Standard @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Fara rezult apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} înregistrările au fost șterse apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,Sa întâmplat ceva în timpul generării simbolului de acces pentru cutia de meniuri. Verificați jurnalul de erori pentru mai multe detalii. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Descendenți din -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nu a fost găsit niciun șablon de adresă implicit. Creați unul nou din Setup> Printing and Branding> Template Address. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Contacte Google a fost configurat. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Ascunde detaliile apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Font Styles apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Abonamentul va expira la {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Autentificarea a eșuat în timp ce primesc e-mailuri din contul de e-mail {0}. Mesaj de la server: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Statistici bazate pe performanța de săptămâna trecută (de la {0} la {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,Conectarea automată poate fi activată numai dacă funcția Incoming este activată. DocType: Website Settings,Title Prefix,Prefixul titlului apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Aplicațiile de autentificare pe care le puteți utiliza sunt: DocType: Bulk Update,Max 500 records at a time,Max 500 de înregistrări la un moment dat @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,Raportați filtre apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Selectați Coloane DocType: Event,Participants,Participanți DocType: Auto Repeat,Amended From,Modificat de la -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Informațiile dvs. au fost trimise +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Informațiile dvs. au fost trimise DocType: Help Category,Help Category,Categoria de ajutor apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 lună apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Selectați un format existent pentru a edita sau a începe un nou format. @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Câmp pentru urmărire DocType: User,Generate Keys,Generați chei DocType: Comment,Unshared,Nedistribuite -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,salvat +DocType: Translation,Saved,salvat DocType: OAuth Client,OAuth Client,Clientul OAuth DocType: System Settings,Disable Standard Email Footer,Dezactivați subsolul standard al e-mailului apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Formatul de tipărire {0} este dezactivat @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Ultima actual DocType: Data Import,Action,Acțiune apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Este necesară cheia clientului DocType: Chat Profile,Notifications,notificări +DocType: Translation,Contributed,Contribuit DocType: System Settings,mm/dd/yyyy,ll / zz / aaaa DocType: Report,Custom Report,Raportul personalizat DocType: Workflow State,info-sign,info-semn @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,a lua legatura DocType: LDAP Settings,LDAP Username Field,Câmp de nume LDAP apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} câmpul nu poate fi setat ca unic în {1}, deoarece există valori existente non-unice" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Configurare> Personalizați formularul DocType: User,Social Logins,Conectări sociale DocType: Workflow State,Trash,Gunoi DocType: Stripe Settings,Secret Key,Cheie secreta @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,Câmp de titlu apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Nu s-a putut conecta la serverul de e-mail trimis DocType: File,File URL,Adresa URL a fișierului DocType: Help Article,Likes,Îi place +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Integrarea Contactelor Google este dezactivată. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Trebuie să fiți conectat și să aveți rolul Managerului de sistem pentru a putea accesa copii de rezervă. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Primul nivel DocType: Blogger,Short Name,Nume scurt @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Importați zip DocType: Contact,Gender,Sex DocType: Workflow State,thumbs-down,degetul mare în jos -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Coada ar trebui să fie una dintre {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Nu se poate seta notificarea pe tipul de document {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Adăugarea Managerului de sistem la acest utilizator deoarece trebuie să existe cel puțin un Manager de sistem apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Bine ați venit e-mailul trimis DocType: Transaction Log,Chaining Hash,Înlocuirea hash DocType: Contact,Maintenance Manager,Responsabil cu Intretinerea +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Pentru comparație, utilizați> 5, <10 sau = 324. Pentru intervale, utilizați 5:10 (pentru valori cuprinse între 5 și 10)." apps/frappe/frappe/utils/bot.py,show,spectacol apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Distribuiți adresa URL apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Formatul fișierului neacceptat @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,Notificare DocType: Data Import,Show only errors,Afișați numai erori DocType: Energy Point Log,Review,Revizuire apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Rândurile au fost eliminate -DocType: GSuite Settings,Google Credentials,Acreditare Google +DocType: Google Settings,Google Credentials,Acreditare Google apps/frappe/frappe/www/login.html,Or login with,Sau autentificați cu apps/frappe/frappe/model/document.py,Record does not exist,Înregistrarea nu există apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Nume nou raport @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,Listă DocType: Workflow State,th-large,th-mare apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Nu se poate stabili Atribuirea trimiterii dacă nu este posibilă transmiterea apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Nu este conectat la nicio înregistrare +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Eroare la conectarea la aplicația QZ Tray ...

Trebuie să aveți aplicația QZ Tray instalată și rulată, pentru a utiliza caracteristica Raw Print.

Faceți clic aici pentru a descărca și instala tava QZ .
Faceți clic aici pentru a afla mai multe despre imprimarea Raw ." DocType: Chat Message,Content,Conţinut DocType: Workflow Transition,Allow Self Approval,Permiteți aprobarea de sine apps/frappe/frappe/www/qrcode.py,Page has expired!,Pagina a expirat! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,mana-dreapta DocType: Website Settings,Banner is above the Top Menu Bar.,Bannerul se află deasupra barei de meniu Top. apps/frappe/frappe/www/update-password.html,Invalid Password,Parolă Invalidă apps/frappe/frappe/utils/data.py,1 month ago,Acum o lună +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Permiteți accesul la Agenda Google DocType: OAuth Client,App Client ID,Cod client de aplicație DocType: DocField,Currency,Valută DocType: Website Settings,Banner,stindard @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Poartă DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Dacă un rol nu are acces la nivelul 0, atunci nivelurile superioare sunt lipsite de sens." DocType: ToDo,Reference Type,Tip de referință -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Permiterea DocType, DocType. Ai grija!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Permiterea DocType, DocType. Ai grija!" DocType: Domain Settings,Domain Settings,Setările domeniului DocType: Auto Email Report,Dynamic Report Filters,Filtrele cu rapoarte dinamice DocType: Energy Point Log,Appreciation,Apreciere @@ -1468,6 +1489,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,ne-vest-2 DocType: DocType,Is Single,Este singur apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Creați un nou format +DocType: Google Contacts,Authorize Google Contacts Access,Autorizați accesul la Contacte Google DocType: S3 Backup Settings,Endpoint URL,URL-ul punctului final DocType: Social Login Key,Google,Google DocType: Contact,Department,Departament @@ -1482,7 +1504,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Alocați la DocType: List Filter,List Filter,Filtrați lista DocType: Dashboard Chart Link,Chart,Diagramă apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Nu se poate elimina -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Trimiteți acest document pentru confirmare +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Trimiteți acest document pentru confirmare apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} există deja. Selectați un alt nume apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Aveți modificări nesalvate în acest formular. Salvați înainte de a continua. apps/frappe/frappe/model/document.py,Action Failed,Acțiunea a eșuat @@ -1564,6 +1586,7 @@ DocType: DocField,Display,Afişa apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Răspunde la toate DocType: Calendar View,Subject Field,Domeniul temei apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Expirarea sesiunii trebuie să fie în format {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},Aplicând: {0} DocType: Workflow State,zoom-in,mareste apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,conectare eșuată la server apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Data {0} trebuie să fie în format: {1} @@ -1575,8 +1598,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Pictograma va apărea pe buton DocType: Role Permission for Page and Report,Set Role For,Setați rolul pentru +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Conectarea automată poate fi activată numai pentru un cont de e-mail. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Nu au fost alocate conturile de e-mail +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Contul de email nu este setat. Creați un nou cont de e-mail din Configurare> Email> Cont email apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Misiune +DocType: Google Contacts,Last Sync On,Ultima sincronizare activată apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},câștigată de {0} prin regula automată {1} apps/frappe/frappe/config/website.py,Portal,Portal apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Multumesc pentru e-mail @@ -1597,7 +1623,6 @@ DocType: GSuite Settings,GSuite Settings,Setări GSuite DocType: Integration Request,Remote,la distanta DocType: File,Thumbnail URL,Adresa URL a miniaturilor apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Descărcați raportul -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configurare> Utilizator apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Personalizările pentru {0} exportate către:
{1} DocType: GCalendar Account,Calendar Name,Numele calendarului apps/frappe/frappe/templates/emails/new_user.html,Your login id is,ID-ul de conectare este @@ -1647,6 +1672,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Acces apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Câmpul de imagine trebuie să fie un nume de câmp valabil apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,Trebuie să fiți conectat (ă) pentru a accesa această pagină DocType: Assignment Rule,Example: {{ subject }},Exemplu: {{subiect}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Numele câmpului {0} este restricționat apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Nu puteți dezactiva "Numai citire" pentru câmpul {0} DocType: Social Login Key,Enable Social Login,Activați Login Social DocType: Workflow,Rules defining transition of state in the workflow.,Reguli care definesc trecerea statului în fluxul de lucru. @@ -1667,10 +1693,10 @@ DocType: Website Settings,Route Redirects,Redirecționarea rutei apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Inbox pentru e-mail apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},a restabilit {0} ca {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Atribuiți automat documente pentru utilizatori +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Deschideți Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Șabloane de e-mail pentru interogări comune. DocType: Letter Head,Letter Head Based On,Scrisoare pe bază de scrisori apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Închideți această fereastră -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Plata finalizată DocType: Contact,Designation,Desemnare DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Meta etichete @@ -1709,6 +1735,7 @@ DocType: System Settings,Choose authentication method to be used by all users,Al DocType: Error Snapshot,Parent Error Snapshot,Pornire eroare parentală DocType: GCalendar Account,GCalendar Account,Contul GCalendar DocType: Language,Language Name,Numele limbii +DocType: Workflow Document State,Workflow Action is not created for optional states,Acțiunea pentru fluxul de lucru nu este creată pentru stările opționale DocType: Customize Form,Customize Form,Personalizați formularul DocType: DocType,Image Field,Câmpul de imagini apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),A adăugat {0} ({1}) @@ -1750,6 +1777,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,Aplicați această regulă dacă utilizatorul este proprietarul DocType: About Us Settings,Org History Heading,Istoricul Orgului apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Eroare de server +DocType: Contact,Google Contacts Description,Descrierea Contacte Google apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Rolele standard nu pot fi redenumite DocType: Review Level,Review Points,Puncte de revizuire apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Lipsește parametrul Kanban Board Name @@ -1767,7 +1795,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Nu în modul dezvoltator! Setați în site_config.json sau faceți "Doctype personalizat". apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,a obținut {0} puncte DocType: Web Form,Success Message,Mesaj de succes -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Pentru comparație, utilizați> 5, <10 sau = 324. Pentru intervale, utilizați 5:10 (pentru valori cuprinse între 5 și 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Descriere pentru pagina de înscriere, în text simplu, doar câteva linii. (maximum 140 de caractere)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Afișați permisiunile DocType: DocType,Restrict To Domain,Restricționați la domeniu @@ -1789,6 +1816,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Nu sun apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Setați cantitatea DocType: Auto Repeat,End Date,Data de încheiere DocType: Workflow Transition,Next State,Statul următor +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Sincronizați persoanele de contact Google. DocType: System Settings,Is First Startup,Este prima pornire apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},actualizat la {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Mută la @@ -1838,6 +1866,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Calendar apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Șablon de import de date DocType: Workflow State,hand-left,-Mana stanga +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Selectați mai multe elemente din listă apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Dimensiune de rezervă: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Conectat cu {0} DocType: Braintree Settings,Private Key,Cheia privată @@ -1880,13 +1909,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Interes DocType: Bulk Update,Limit,Limită DocType: Print Settings,Print taxes with zero amount,Imprimați taxele cu suma zero -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Contul de email nu este setat. Creați un nou cont de e-mail din Configurare> Email> Cont email DocType: Workflow State,Book,Carte DocType: S3 Backup Settings,Access Key ID,ID-ul cheie de acces DocType: Chat Message,URLs,URL-uri apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Numele și numele de familie sunt ușor de ghicit. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Raportul {0} DocType: About Us Settings,Team Members Heading,Membrii echipei +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Selectați elementul din listă apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Documentul {0} a fost setat la starea {1} până la {2} DocType: Address Template,Address Template,Șablon de adresă DocType: Workflow State,step-backward,pas inapoi @@ -1910,6 +1939,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Exportați permisiuni personalizate apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Nu există: Sfârșitul fluxului de lucru DocType: Version,Version,Versiune +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Deschideți elementul din listă apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 luni DocType: Chat Message,Group,grup apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Există o problemă cu urlul fișierului: {0} @@ -1965,6 +1995,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 an apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} ți-a revenit la {1} DocType: Workflow State,arrow-down,săgeată-jos DocType: Data Import,Ignore encoding errors,Ignorați erorile de codificare +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Peisaj DocType: Letter Head,Letter Head Name,Numele capului scrisorii DocType: Web Form,Client Script,Client Script DocType: Assignment Rule,Higher priority rule will be applied first,Norma de prioritate mai mare va fi aplicată mai întâi @@ -2009,6 +2040,7 @@ DocType: Kanban Board Column,Green,Verde apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Doar câmpurile obligatorii sunt necesare pentru înregistrări noi. Puteți să ștergeți coloanele care nu sunt obligatorii dacă doriți. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} trebuie să înceapă și să se încheie cu o literă și pot conține numai litere, cratimă sau underscore." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Declanșează acțiunea primară apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Creați e-mail de utilizator apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Câmpul de sortare {0} trebuie să fie un nume de câmp valabil DocType: Auto Email Report,Filter Meta,Filtrați Meta @@ -2038,6 +2070,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Cronologie Câmp apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Se incarca... DocType: Auto Email Report,Half Yearly,Semestrial +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Profilul meu apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Data ultimei modificări DocType: Contact,First Name,Nume DocType: Post,Comments,Comentarii @@ -2060,6 +2093,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Conținutul Hash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Mesaje de {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} atribuit {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Nu s-a sincronizat niciun contact Google nou. DocType: Workflow State,globe,glob apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Media lui {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Eliminați jurnalele de eroare @@ -2086,6 +2120,8 @@ DocType: Workflow State,Inverse,Invers DocType: Activity Log,Closed,Închis DocType: Report,Query,întrebare DocType: Notification,Days After,Zile după +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Comenzi rapide pentru pagină +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portret apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Cererea a expirat DocType: System Settings,Email Footer Address,Adresa de subsol pentru e-mail apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Actualizarea punctului energetic @@ -2113,6 +2149,7 @@ For Select, enter list of Options, each on a new line.","Pentru linkuri, introdu apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,Acum 1 minut apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Nu există sesiuni active apps/frappe/frappe/model/base_document.py,Row,Rând +DocType: Contact,Middle Name,Al doilea nume apps/frappe/frappe/public/js/frappe/request.js,Please try again,Vă rugăm să încercați din nou DocType: Dashboard Chart,Chart Options,Opțiuni diagramă DocType: Data Migration Run,Push Failed,Push a eșuat @@ -2141,6 +2178,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,redimensiona-mici DocType: Comment,Relinked,Relinked DocType: Role Permission for Page and Report,Roles HTML,Roluri HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Merge apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Fluxul de lucru va începe după salvare. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Dacă datele dvs. sunt în format HTML, copiați codul HTML exact cu etichetele." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Datele sunt adesea ușor de ghicit. @@ -2169,7 +2207,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Desktop Icon apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,a anulat acest document apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Interval de date -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Configurare> Permisiuni utilizator apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} apreciat {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Valorile au fost modificate apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Eroare în notificare @@ -2234,6 +2271,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Vrac ștergere DocType: DocShare,Document Name,numele documentului apps/frappe/frappe/config/customization.py,Add your own translations,Adăugați propriile traduceri +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Navigați lista în jos DocType: S3 Backup Settings,eu-central-1,UE-central-1 DocType: Auto Repeat,Yearly,Anual apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Redenumiți @@ -2284,6 +2322,7 @@ DocType: Workflow State,plane,avion apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Eroare de setare nepermisă. Contactați administratorul. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Afișați raportul DocType: Auto Repeat,Auto Repeat Schedule,Reportare automată a programului +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Vizualizați Ref DocType: Address,Office,Birou DocType: LDAP Settings,StartTLS,STARTTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} zile în urmă @@ -2317,7 +2356,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Va apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Setarile mele apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Numele grupului nu poate fi gol. DocType: Workflow State,road,drum -DocType: Website Route Redirect,Source,Sursă +DocType: Contact,Source,Sursă apps/frappe/frappe/www/third_party_apps.html,Active Sessions,sesiuni active apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Nu poate exista decât un singur Fold într-o formă apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Chat nou @@ -2339,6 +2378,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Introduceți URL autorizat DocType: Email Account,Send Notification to,Trimiteți o notificare către apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Setări de rezervă pentru Dropbox +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,Sa întâmplat ceva în timpul generației token. Faceți clic pe {0} pentru a genera unul nou. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Eliminați toate particularizările? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Numai administratorul poate să editeze DocType: Auto Repeat,Reference Document,Document de referință @@ -2363,6 +2403,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Rolurile pot fi setate pentru utilizatori din pagina Utilizator. DocType: Website Settings,Include Search in Top Bar,Includeți căutarea în Bara de sus apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Urgent] Eroare la crearea% s recurente pentru% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Comenzi rapide globale DocType: Help Article,Author,Autor DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Nu sa găsit niciun document pentru filtrele date @@ -2398,10 +2439,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, rândul {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Dacă încărcați înregistrări noi, "Naming Series" devine obligatorie, dacă este prezentă." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Editați proprietățile -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Nu se poate deschide instanța când {0} este deschisă +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,Nu se poate deschide instanța când {0} este deschisă DocType: Activity Log,Timeline Name,Numele cronologiei DocType: Comment,Workflow,Fluxul de lucru apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Setați URL-ul de bază în cheia de conectare socială pentru Frappe +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Comenzi rapide de la tastatură DocType: Portal Settings,Custom Menu Items,Elementele de meniu personalizate apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,Lungimea {0} ar trebui să fie între 1 și 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Conexiunea a fost pierdută. Este posibil ca unele funcții să nu funcționeze. @@ -2464,6 +2506,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Rândurile DocType: DocType,Setup,Înființat apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} a fost creat cu succes apps/frappe/frappe/www/update-password.html,New Password,Parolă Nouă +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Selectați câmpul apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Lăsați această conversație DocType: About Us Settings,Team Members,Membrii echipei DocType: Blog Settings,Writers Introduction,Scriitori Introducere @@ -2533,13 +2576,12 @@ DocType: Chat Room,Name,Nume DocType: Communication,Email Template,Șablon de e-mail DocType: Energy Point Settings,Review Levels,Niveluri de revizuire DocType: Print Format,Raw Printing,Imprimare brut -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Nu se poate deschide {0} când instanța este deschisă +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,Nu se poate deschide {0} când instanța este deschisă DocType: DocType,"Make ""name"" searchable in Global Search",Faceți "nume" care poate fi căutat în Căutarea globală DocType: Data Migration Mapping,Data Migration Mapping,Migrarea datelor DocType: Data Import,Partially Successful,Parțial reușit DocType: Communication,Error,Eroare apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Tipul câmpului nu poate fi modificat de la {0} la {1} în rândul {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Eroare la conectarea la aplicația QZ Tray ...

Trebuie să aveți aplicația QZ Tray instalată și rulată, pentru a utiliza caracteristica Raw Print.

Faceți clic aici pentru a descărca și instala tava QZ .
Faceți clic aici pentru a afla mai multe despre imprimarea Raw ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Fa o poza apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,Evitați anii care vă sunt asociate. DocType: Web Form,Allow Incomplete Forms,Permiteți formulare incomplete @@ -2635,7 +2677,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Selectați target = "_blank" pentru a deschide o pagină nouă. DocType: Portal Settings,Portal Menu,Meniul Portal DocType: Website Settings,Landing Page,Pagina de aterizare -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,Vă rugăm să vă înscrieți sau să vă conectați pentru a începe DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opțiunile de contact, cum ar fi "Interogare vânzări, Întrebare de suport" etc fiecare pe o linie nouă sau separate prin virgule." apps/frappe/frappe/twofactor.py,Verfication Code,Cod de verificare apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} deja dezabonat @@ -2721,6 +2762,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Maparea planulu DocType: Address,Sales User,Utilizator vânzări apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Schimbați proprietățile câmpului (ascundeți, readonly, permisiune etc.)" DocType: Property Setter,Field Name,Numele domeniului +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Client DocType: Print Settings,Font Size,Marimea fontului DocType: User,Last Password Reset Date,Ultima dată pentru resetarea parolei DocType: System Settings,Date and Number Format,Formatul datei și numărului @@ -2786,6 +2828,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Nodul grupului apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Mergeți cu cele existente DocType: Blog Post,Blog Intro,Blog Intro apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Mențiune nouă +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Salt la câmp DocType: Prepared Report,Report Name,Numele raportului apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Actualizați-vă pentru a obține cel mai recent document. apps/frappe/frappe/core/doctype/communication/communication.js,Close,Închide @@ -2795,10 +2838,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Eveniment DocType: Social Login Key,Access Token URL,Accesați URL-ul Token apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Vă rugăm să setați cheile de acces Dropbox în configurația site-ului dvs. +DocType: Google Contacts,Google Contacts,Contacte Google DocType: User,Reset Password Key,Resetați cheia parolei apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Modificat de DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.","Pentru a reînnoi, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Salvat cu succes +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Trimiteți un e-mail la {0} pentru al conecta aici. DocType: File,Folder,Pliant DocType: DocField,Perm Level,Perm nivel DocType: Print Settings,Page Settings,Setări pagină @@ -2828,6 +2874,7 @@ DocType: Workflow State,remove-sign,eliminați-semn DocType: Dashboard Chart,Full,Deplin DocType: DocType,User Cannot Create,Utilizatorul nu poate crea apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Ai câștigat punctul {0} +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Configurare> Utilizator DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Dacă setați acest lucru, acest element va intra într-un drop-down sub părintele selectat." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Nu e-mailuri apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Următoarele câmpuri lipsesc: @@ -2841,13 +2888,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Afi DocType: Web Form,Web Form Fields,Formulare de câmpuri web DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Formular editat de utilizator pe site. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Anulați definitiv {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Anulați definitiv {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Opțiunea 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,totaluri apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Aceasta este o parolă foarte frecventă. DocType: Personal Data Deletion Request,Pending Approval,Aprobare in asteptare apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Documentul nu a putut fi atribuit corect apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Nu este permisă pentru {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Nu există valori de afișat DocType: Personal Data Download Request,Personal Data Download Request,Solicitare de descărcare de date personale apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} a trimis acest document cu {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Selectați {0} @@ -2863,7 +2911,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Acest e-mail a fost trimis la {0} și copiat în {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,utilizator sau parola incorecta DocType: Social Login Key,Social Login Key,Tasta de conectare socială -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Configurați implicit contul de e-mail din Configurare> Email> Cont email apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filtrele salvate DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Cum ar trebui formatată această monedă? Dacă nu este setat, va utiliza setările implicite ale sistemului" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} este setat la starea {2} @@ -2989,6 +3036,7 @@ DocType: User,Location,Locație apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Nu există date DocType: Website Meta Tag,Website Meta Tag,Meta Tag-ul site-ului DocType: Workflow State,film,film +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Copiat în clipboard. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Setările nu au fost găsite apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Eticheta este obligatorie DocType: Webhook,Webhook Headers,Știri Webhook @@ -3197,7 +3245,7 @@ DocType: Address,Address Line 1,Adresa Rândul 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Pentru tipul de document apps/frappe/frappe/model/base_document.py,Data missing in table,Datele lipsesc în tabel apps/frappe/frappe/utils/bot.py,Could not identify {0},Nu s-a putut identifica {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Acest formular a fost modificat după ce l-ați încărcat +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Acest formular a fost modificat după ce l-ați încărcat apps/frappe/frappe/www/login.html,Back to Login,Înapoi la autentificare apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Nu este setat DocType: Data Migration Mapping,Pull,Trage @@ -3265,6 +3313,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Copierea tabelului de apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Configurarea contului de e-mail vă rugăm să introduceți parola pentru: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Prea multe scriu într-o singură cerere. Trimiteți cereri mai mici DocType: Social Login Key,Salesforce,Forta de vanzare +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importarea {0} din {1} DocType: User,Tile,Ţiglă apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} camera trebuie să aibă cel puțin un utilizator. DocType: Email Rule,Is Spam,Este Spam @@ -3302,7 +3351,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,dosar close- DocType: Data Migration Run,Pull Update,Trageți actualizarea apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},a îmbinat {0} în {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Nu s-au găsit rezultate pentru '

DocType: SMS Settings,Enter url parameter for receiver nos,Introduceți parametrul url pentru receptorul nr apps/frappe/frappe/utils/jinja.py,Syntax error in template,Eroare de sintaxă în șablon apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Stabiliți valoarea filtrelor în tabelul Filtrare raport. @@ -3315,6 +3363,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Îmi pare r DocType: System Settings,In Days,În Zile DocType: Report,Add Total Row,Adăugați rândul total apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Sesiunea Start nu a reușit +DocType: Translation,Verified,Verificat DocType: Print Format,Custom HTML Help,Custom HTML Help DocType: Address,Preferred Billing Address,Adresa de facturare preferată apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Atribuit @@ -3329,7 +3378,6 @@ DocType: Help Article,Intermediate,Intermediar DocType: Module Def,Module Name,Numele modulului DocType: OAuth Authorization Code,Expiration time,Data expirarii apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Setați formatul implicit, dimensiunea paginii, stilul de imprimare etc." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,Nu vă poate plăcea ceva pe care l-ați creat DocType: System Settings,Session Expiry,Expirarea sesiunii DocType: DocType,Auto Name,Numele automat apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Selectați Atașamente @@ -3357,6 +3405,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Pagina sistemului DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,"Notă: În mod prestabilit, e-mailurile pentru copii de siguranță eșuate sunt trimise." DocType: Custom DocPerm,Custom DocPerm,DocPerm personalizat +DocType: Translation,PR sent,PR trimis DocType: Tag Doc Category,Doctype to Assign Tags,Doctype pentru a atribui etichete DocType: Address,Warehouse,Depozit apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Setare Dropbox @@ -3424,7 +3473,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Enter pentru a adăuga un comentariu apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Câmpul {0} nu poate fi selectat. DocType: User,Birth Date,Data nasterii -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Cu indentarea grupului DocType: List View Setting,Disable Count,Dezactivați numărarea DocType: Contact Us Settings,Email ID,ID-ul de e-mail apps/frappe/frappe/utils/password.py,Incorrect User or Password,Utilizator incorect sau parolă @@ -3459,6 +3507,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Acest rol actualizează Permisiunile utilizatorilor pentru un utilizator DocType: Website Theme,Theme,Temă DocType: Web Form,Show Sidebar,Afișați bara laterală +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Integrarea cu persoanele de contact Google. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Mesaje primite apps/frappe/frappe/www/login.py,Invalid Login Token,Nume de conectare nevalidă apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Mai întâi setați numele și salvați înregistrarea. @@ -3486,7 +3535,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Corectați DocType: Top Bar Item,Top Bar Item,Elementul de sus al barei ,Role Permissions Manager,Managerul permisiunilor pentru roluri -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,Au existat erori. Raportați acest lucru. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ani în urmă apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Femeie DocType: System Settings,OTP Issuer Name,Numele Emitentului OTP apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Adăugați la @@ -3586,6 +3635,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Setăr apps/frappe/frappe/model/document.py,none of,nici unul dintre DocType: Desktop Icon,Page,Pagină DocType: Workflow State,plus-sign,semnul plus +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Ștergeți memoria cache și reîncărcați apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Nu se poate actualiza: Link incorect / expirat. DocType: Kanban Board Column,Yellow,Galben DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Numărul de coloane pentru un câmp dintr-o rețea (Coloanele totale dintr-o rețea trebuie să fie mai mici de 11) @@ -3600,6 +3650,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Noul DocType: Activity Log,Date,Data DocType: Communication,Communication Type,Tip de comunicare apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Parent Table +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Navigați lista în sus DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Afișați eroarea completă și permiteți raportarea problemelor dezvoltatorului DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3621,7 +3672,6 @@ DocType: Notification Recipient,Email By Role,E-mail după rol apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,Vă rugăm să faceți upgrade pentru a adăuga mai mult de {0} abonați apps/frappe/frappe/email/queue.py,This email was sent to {0},Acest e-mail a fost trimis la {0} DocType: User,Represents a User in the system.,Reprezintă un utilizator în sistem. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Pagina {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Porniți nou Format apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Adauga un comentariu apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} din {1} diff --git a/frappe/translations/ru.csv b/frappe/translations/ru.csv index 7d164d941a..c2f7699757 100644 --- a/frappe/translations/ru.csv +++ b/frappe/translations/ru.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Включить градиенты DocType: DocType,Default Sort Order,Порядок сортировки по умолчанию apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Отображение только числовых полей из отчета +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,"Нажмите клавишу Alt, чтобы вызвать дополнительные ярлыки в меню и боковой панели" DocType: Workflow State,folder-open,Папка-открытая DocType: Customize Form,Is Table,Таблица apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Невозможно открыть вложенный файл. Вы экспортировали его как CSV? DocType: DocField,No Copy,Нет копии DocType: Custom Field,Default Value,Значение по умолчанию apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Добавить в обязательно для входящих писем +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Синхронизация контактов DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Детализация отображения данных миграции apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Отписаться apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.","Печать PDF через «Raw Print» пока не поддерживается. Пожалуйста, удалите отображение принтера в настройках принтера и попробуйте снова." @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} и {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,При сохранении фильтров произошла ошибка apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Введите ваш пароль apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Не удается удалить папки «Домой» и «Вложения» +DocType: Email Account,Enable Automatic Linking in Documents,Включить автоматическое связывание в документах DocType: Contact Us Settings,Settings for Contact Us Page,Настройки страницы «Свяжитесь с нами» DocType: Social Login Key,Social Login Provider,Поставщик социального входа +DocType: Email Account,"For more information, click here.","Для получения дополнительной информации нажмите здесь ." DocType: Transaction Log,Previous Hash,Предыдущий хэш DocType: Notification,Value Changed,Значение изменено DocType: Report,Report Type,Тип отчета @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Правило энергетиче apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,"Пожалуйста, введите идентификатор клиента, прежде чем социальный вход включен" DocType: Communication,Has Attachment,Имеет приложение DocType: User,Email Signature,Подпись электронной почты -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} год (лет) назад ,Addresses And Contacts,Адреса и контакты apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Это Канбан Правление будет частным DocType: Data Migration Run,Current Mapping,Текущее сопоставление @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Вы выбираете опцию Синхронизация как ВСЕ, она будет повторно синхронизировать все \ читать, а также непрочитанное сообщение с сервера. Это также может привести к дублированию \ общения (электронные письма)." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Последняя синхронизация {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Невозможно изменить содержимое заголовка +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Не разрешено изменять {0} после отправки apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Приложение было обновлено до новой версии, пожалуйста, обновите эту страницу" DocType: User,User Image,Изображение пользователя @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},От apps/frappe/frappe/public/js/frappe/chat.js,Discard,отбрасывать DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Выберите изображение шириной около 150 пикселей с прозрачным фоном для достижения наилучших результатов. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,Рецидив +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Выбрано {0} значений DocType: Blog Post,Email Sent,Письмо отправлено DocType: Communication,Read by Recipient On,Читать получателем DocType: User,Allow user to login only after this hour (0-24),Разрешить пользователю войти только после этого часа (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Модуль для экспорта DocType: DocType,Fields,поля -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Вы не можете распечатать этот документ +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Вы не можете распечатать этот документ apps/frappe/frappe/public/js/frappe/model/model.js,Parent,родитель apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Ваша сессия истекла, пожалуйста, войдите снова, чтобы продолжить." DocType: Assignment Rule,Priority,приоритет @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Сбросить O DocType: DocType,UPPER CASE,ВЕРХНИЙ РЕГИСТР apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,"Пожалуйста, установите адрес электронной почты" DocType: Communication,Marked As Spam,Помечено как спам +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"Адрес электронной почты, чьи контакты Google должны быть синхронизированы." apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Импорт подписчиков apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Сохранить фильтр DocType: Address,Preferred Shipping Address,Предпочитаемый адрес доставки DocType: GCalendar Account,The name that will appear in Google Calendar,"Имя, которое появится в Календаре Google" +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,"Нажмите {0}, чтобы сгенерировать токен обновления." DocType: Email Account,Disable SMTP server authentication,Отключить аутентификацию SMTP-сервера DocType: Email Account,Total number of emails to sync in initial sync process ,Общее количество писем для синхронизации в начальном процессе синхронизации DocType: System Settings,Enable Password Policy,Включить политику паролей @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Код вставки apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Не в DocType: Auto Repeat,Start Date,Дата начала apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Установить график +DocType: Website Theme,Theme JSON,Тема JSON apps/frappe/frappe/www/list.py,My Account,Мой аккаунт DocType: DocType,Is Published Field,Опубликовано поле DocType: DocField,Set non-standard precision for a Float or Currency field,Установите нестандартную точность для поля с плавающей точкой или валюты @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,Подсказка: добавьте Reference: {{ reference_doctype }} {{ reference_name }} для отправки ссылки на документ DocType: LDAP Settings,LDAP First Name Field,Поле имени LDAP apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Отправка по умолчанию и Входящие -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Настройка> Настройка формы apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",Для обновления вы можете обновить только выборочные столбцы. apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',Значение по умолчанию для поля типа «Проверка» должно быть «0» или «1» apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Поделиться этим документом с @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Домены HTML DocType: Blog Settings,Blog Settings,Настройки блога apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Название DocType должно начинаться с буквы, и оно может состоять только из букв, цифр, пробелов и подчеркиваний" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Настройка> Полномочия пользователя DocType: Communication,Integrations can use this field to set email delivery status,Интеграции могут использовать это поле для установки статуса доставки электронной почты apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Настройки полосового платежного шлюза DocType: Print Settings,Fonts,шрифты DocType: Notification,Channel,канал DocType: Communication,Opened,открытый DocType: Workflow Transition,Conditions,условия +apps/frappe/frappe/config/website.py,A user who posts blogs.,"Пользователь, который публикует блоги." apps/frappe/frappe/www/login.html,Don't have an account? Sign up,У вас нет аккаунта? зарегистрироваться apps/frappe/frappe/utils/file_manager.py,Added {0},Добавлено {0} DocType: Newsletter,Create and Send Newsletters,Создание и отправка информационных бюллетеней DocType: Website Settings,Footer Items,Элементы нижнего колонтитула +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Настройте учетную запись электронной почты по умолчанию в меню «Настройка»> «Электронная почта»> «Учетная запись электронной почты». DocType: Website Slideshow Item,Website Slideshow Item,Сайт слайд-шоу apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Зарегистрируйте клиентское приложение OAuth DocType: Error Snapshot,Frames,Рамки @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Уровень 0 предназначен для разрешений уровня документа, \ более высокий уровень - для разрешений уровня поля." DocType: Address,City/Town,Город / место DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Это сбросит вашу текущую тему, вы уверены, что хотите продолжить?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Обязательные поля обязательны для заполнения в {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Ошибка при подключении к учетной записи электронной почты {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Произошла ошибка при создании повторяющихся @@ -528,7 +537,7 @@ DocType: Event,Event Category,Категория события apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Столбцы на основе apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Изменить заголовок DocType: Communication,Received,Получено -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Вам не разрешен доступ к этой странице. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Вам не разрешен доступ к этой странице. DocType: User Social Login,User Social Login,Социальный логин пользователя apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,"Запишите файл Python в ту же папку, в которой он сохранен, и верните столбец и результат." DocType: Contact,Purchase Manager,Менеджер по закупкам @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,На apps/frappe/frappe/utils/data.py,Operator must be one of {0},Оператор должен быть одним из {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Если владелец DocType: Data Migration Run,Trigger Name,Название триггера -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Напишите названия и введения в свой блог. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Удалить поле apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Свернуть все apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Фоновый цвет @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,Бар DocType: SMS Settings,Enter url parameter for message,Введите параметр URL для сообщения apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Новый пользовательский формат печати apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} уже существует +DocType: Workflow Document State,Is Optional State,Необязательное состояние DocType: Address,Purchase User,Покупатель DocType: Data Migration Run,Insert,Вставить DocType: Web Form,Route to Success Link,Путь к успеху Ссылка @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Имя DocType: File,Is Home Folder,Домашняя папка apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Тип: DocType: Post,Is Pinned,Закреплен -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Нет разрешения на '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Нет разрешения на '{0}' {1} DocType: Patch Log,Patch Log,Patch Log DocType: Print Format,Print Format Builder,Print Format Builder 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-адреса, используя двухфакторную аутентификацию. Это также может быть установлено только для конкретного пользователя (ей) на странице пользователя." apps/frappe/frappe/utils/data.py,only.,только. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,Условие '{0}' недопустимо DocType: Auto Email Report,Day of Week,День недели +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Включить Google API в настройках Google. DocType: DocField,Text Editor,Текстовый редактор apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Резать apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Поиск или введите команду @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,Количество резервных копий БД не может быть меньше 1 DocType: Workflow State,ban-circle,запрет круга DocType: Data Export,Excel,превосходить +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Заголовок, панировочные сухари и метатеги" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Адрес электронной почты поддержки не указан DocType: Comment,Published,опубликованный DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","Примечание. Для получения наилучших результатов изображения должны быть одинакового размера, а ширина должна быть больше высоты." @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Планировщик после apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Отчет по всем документам DocType: Website Sidebar Item,Website Sidebar Item,Элемент боковой панели веб-сайта apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Сделать +DocType: Google Settings,Google Settings,Настройки Google apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Выберите свою страну, часовой пояс и валюту" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Введите здесь параметры статического URL (например, sender = ERPNext, username = ERPNext, password = 1234 и т. Д.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Нет учетной записи электронной почты @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token ,Setup Wizard,Мастер установки apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Диаграмма переключения +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,Синхронизации DocType: Data Migration Run,Current Mapping Action,Текущее картографическое действие DocType: Email Account,Initial Sync Count,Начальная синхронизация apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Настройки страницы «Свяжитесь с нами». @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Тип формата печати apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Нет разрешений для этого критерия. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Расширить все +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Шаблон адреса по умолчанию не найден. Создайте новый, выбрав «Настройка»> «Печать и брендинг»> «Шаблон адреса»." DocType: Tag Doc Category,Tag Doc Category,Tag Doc Категория DocType: Data Import,Generated File,Сгенерированный файл apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Заметки @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Поле временной шкалы должно быть ссылкой или динамической ссылкой DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Уведомления и массовые письма будут отправлены с этого исходящего сервера. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Это топ-100 общих паролей. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Постоянно отправить {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Постоянно отправить {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} не существует, выберите новую цель для слияния" DocType: Energy Point Rule,Multiplier Field,Поле множителя DocType: Workflow,Workflow State Field,Поле состояния рабочего процесса @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} оценил вашу работу по {1} с {2} баллами DocType: Auto Email Report,Zero means send records updated at anytime,Ноль означает отправлять обновленные записи в любое время apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Значение не может быть изменено для {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Настройки Google API. DocType: System Settings,Force User to Reset Password,Заставить пользователя сбросить пароль apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Отчеты построителя отчетов управляются непосредственно создателем отчетов. Нечего делать. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Редактировать фильтр @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,дл DocType: S3 Backup Settings,eu-north-1,ес-северо-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: разрешено только одно правило с той же ролью, уровнем и {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Вам не разрешено обновлять этот документ веб-формы -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Максимальный предел вложений для этой записи достигнут. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Максимальный предел вложений для этой записи достигнут. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,"Пожалуйста, убедитесь, что справочные документы связи не имеют круговой связи." DocType: DocField,Allow in Quick Entry,Разрешить в быстром входе DocType: Error Snapshot,Locals,Местные жители @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Тип исключения apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},"Невозможно удалить или отменить, потому что {0} {1} связан с {2} {3} {4}" apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,Секрет OTP может быть сброшен только администратором. -DocType: Web Form Field,Page Break,Разрыв страницы DocType: Website Script,Website Script,Скрипт сайта DocType: Integration Request,Subscription Notification,Уведомление о подписке DocType: DocType,Quick Entry,Быстрый вход @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,Установить свойст apps/frappe/frappe/__init__.py,Thank you,Спасибо apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks для внутренней интеграции apps/frappe/frappe/config/settings.py,Import Data,Импорт данных +DocType: Translation,Contributed Translation Doctype Name,Предоставленный перевод Doctype Name DocType: Social Login Key,Office 365,Офис 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,Я БЫ DocType: Review Level,Review Level,Уровень обзора @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Успешно сделано apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Список apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,понимать -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Новый {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Основной контакт DocType: Print Format,Raw Commands,Сырые команды apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Таблицы стилей для форматов печати @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Ошибки в ф apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Найти {0} в {1} DocType: Email Account,Use SSL,Использовать SSL DocType: DocField,In Standard Filter,В стандартном фильтре +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Нет контактов Google для синхронизации. DocType: Data Migration Run,Total Pages,Всего страниц apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,"{0}: поле '{1}' нельзя установить как уникальное, поскольку оно имеет неуникальные значения" DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Если включено, пользователи будут получать уведомления при каждом входе в систему. Если не включен, пользователи будут уведомлены только один раз." @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,автоматизация apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Распаковка файлов ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Поиск '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Что-то пошло не так -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,"Пожалуйста, сохраните перед подключением." +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,"Пожалуйста, сохраните перед подключением." DocType: Version,Table HTML,Таблица HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,хаб DocType: Page,Standard,стандарт @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Нет ре apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} записей удалено apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,"Что-то пошло не так при создании токена доступа dropbox. Пожалуйста, проверьте журнал ошибок для более подробной информации." apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Потомки -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Шаблон адреса по умолчанию не найден. Создайте новый, выбрав «Настройка»> «Печать и брендинг»> «Шаблон адреса»." +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Контакты Google настроены. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Скрыть детали apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Стили шрифтов apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Срок действия вашей подписки истекает {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Ошибка аутентификации при получении писем от учетной записи электронной почты {0}. Сообщение от сервера: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Статистика на основе результатов прошлой недели (от {0} до {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,"Автоматическое связывание может быть активировано, только если включен входящий." DocType: Website Settings,Title Prefix,Название префикса apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,"Приложения для аутентификации, которые вы можете использовать:" DocType: Bulk Update,Max 500 records at a time,Максимум 500 записей одновременно @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,Фильтры отчетов apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Выберите столбцы DocType: Event,Participants,участники DocType: Auto Repeat,Amended From,Изменено от -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Ваша информация была представлена +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Ваша информация была представлена DocType: Help Category,Help Category,Категория справки apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 месяц apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Выберите существующий формат для редактирования или начните новый формат. @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Поле для отслеживания DocType: User,Generate Keys,Генерировать ключи DocType: Comment,Unshared,неразделенный -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Сохраненный +DocType: Translation,Saved,Сохраненный DocType: OAuth Client,OAuth Client,Клиент OAuth DocType: System Settings,Disable Standard Email Footer,Отключить стандартный нижний колонтитул электронной почты apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Формат печати {0} отключен @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Послед DocType: Data Import,Action,действие apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Требуется ключ клиента DocType: Chat Profile,Notifications,Уведомления +DocType: Translation,Contributed,Внесенный DocType: System Settings,mm/dd/yyyy,мм / дд / гггг DocType: Report,Custom Report,Пользовательский отчет DocType: Workflow State,info-sign,инфо-знак @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,контакт DocType: LDAP Settings,LDAP Username Field,Поле имени пользователя LDAP apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Поле {0} не может быть установлено как уникальное в {1}, поскольку существуют неуникальные существующие значения" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Настройка> Настройка формы DocType: User,Social Logins,Социальные логины DocType: Workflow State,Trash,дрянь DocType: Stripe Settings,Secret Key,Секретный ключ @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,Поле заголовка apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Не удалось подключиться к серверу исходящей почты DocType: File,File URL,URL файла DocType: Help Article,Likes,Нравится +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Интеграция с контактами Google отключена. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,"Вы должны войти в систему и иметь роль администратора системы, чтобы иметь доступ к резервным копиям." apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Первый уровень DocType: Blogger,Short Name,Короткое имя @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Импорт Zip DocType: Contact,Gender,Пол DocType: Workflow State,thumbs-down,знак неодобрения -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Очередь должна быть одной из {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Невозможно установить уведомление для типа документа {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Добавление System Manager к этому пользователю, так как должен быть хотя бы один System Manager" apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Приветственное письмо отправлено DocType: Transaction Log,Chaining Hash,Цепной хэш DocType: Contact,Maintenance Manager,Менеджер обслуживания +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Для сравнения используйте> 5, <10 или = 324. Для диапазонов используйте 5:10 (для значений от 5 до 10)." apps/frappe/frappe/utils/bot.py,show,шоу apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Поделиться URL apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Неподдерживаемый формат файла @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,уведомление DocType: Data Import,Show only errors,Показывать только ошибки DocType: Energy Point Log,Review,Обзор apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Ряды удалены -DocType: GSuite Settings,Google Credentials,Google Credentials +DocType: Google Settings,Google Credentials,Google Credentials apps/frappe/frappe/www/login.html,Or login with,Или войдите с apps/frappe/frappe/model/document.py,Record does not exist,Запись не существует apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Новое имя отчета @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,Список DocType: Workflow State,th-large,е-большой apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,"{0}: Невозможно установить Назначить отправку, если не отправляемый" apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Не связано ни с одной записью +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Ошибка подключения к приложению QZ Tray ...

Для использования функции Raw Print необходимо установить и запустить приложение QZ Tray.

Нажмите здесь, чтобы загрузить и установить QZ Tray .
Нажмите здесь, чтобы узнать больше о Raw Printing ." DocType: Chat Message,Content,содержание DocType: Workflow Transition,Allow Self Approval,Разрешить самоутверждение apps/frappe/frappe/www/qrcode.py,Page has expired!,Срок действия страницы истек! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,рука правая DocType: Website Settings,Banner is above the Top Menu Bar.,Баннер находится над верхней строкой меню. apps/frappe/frappe/www/update-password.html,Invalid Password,неправильный пароль apps/frappe/frappe/utils/data.py,1 month ago,1 месяц назад +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Разрешить доступ к контактам Google DocType: OAuth Client,App Client ID,Идентификатор клиента приложения DocType: DocField,Currency,валюта DocType: Website Settings,Banner,Баннер @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Цель DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Если роль не имеет доступа на уровне 0, то более высокие уровни не имеют смысла." DocType: ToDo,Reference Type,Тип ссылки -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Разрешение DocType, DocType. Быть осторожен!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Разрешение DocType, DocType. Быть осторожен!" DocType: Domain Settings,Domain Settings,Настройки домена DocType: Auto Email Report,Dynamic Report Filters,Фильтры динамических отчетов DocType: Energy Point Log,Appreciation,Признательность @@ -1468,6 +1489,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,мы-запад-2 DocType: DocType,Is Single,Холост apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Создать новый формат +DocType: Google Contacts,Authorize Google Contacts Access,Авторизовать доступ к контактам Google DocType: S3 Backup Settings,Endpoint URL,URL конечной точки DocType: Social Login Key,Google,Google DocType: Contact,Department,отдел @@ -1482,7 +1504,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Назначит DocType: List Filter,List Filter,Фильтр списка DocType: Dashboard Chart Link,Chart,Диаграмма apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Невозможно удалить -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Отправить этот документ для подтверждения +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Отправить этот документ для подтверждения apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} уже существует. Выберите другое имя apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,"У вас есть несохраненные изменения в этой форме. Пожалуйста, сохраните, прежде чем продолжить." apps/frappe/frappe/model/document.py,Action Failed,Действие не выполнено @@ -1564,6 +1586,7 @@ DocType: DocField,Display,дисплей apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Повторить все DocType: Calendar View,Subject Field,Предметное поле apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Срок действия сеанса должен быть в формате {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},Применяется: {0} DocType: Workflow State,zoom-in,приблизить apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Не удалось подключиться к серверу apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Дата {0} должна быть в формате: {1} @@ -1575,8 +1598,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Значок появится на кнопке DocType: Role Permission for Page and Report,Set Role For,Установить роль для +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Автоматическое связывание может быть активировано только для одной учетной записи электронной почты. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Аккаунты электронной почты не назначены +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Учетная запись электронной почты не настроена. Пожалуйста, создайте новую учетную запись электронной почты в меню «Настройка»> «Электронная почта»> «Учетная запись электронной почты»." apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,присваивание +DocType: Google Contacts,Last Sync On,Последняя синхронизация включена apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},получено {0} через автоматическое правило {1} apps/frappe/frappe/config/website.py,Portal,Портал apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Спасибо за ваше письмо @@ -1597,7 +1623,6 @@ DocType: GSuite Settings,GSuite Settings,Настройки GSuite DocType: Integration Request,Remote,Дистанционный пульт DocType: File,Thumbnail URL,URL-адрес эскиза apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Скачать отчет -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Настройка> Пользователь apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Настройки для {0} экспортированы в:
{1} DocType: GCalendar Account,Calendar Name,Название календаря apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Ваш логин @@ -1647,6 +1672,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Пе apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Поле изображения должно быть допустимым именем поля apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,"Вы должны войти в систему, чтобы получить доступ к этой странице" DocType: Assignment Rule,Example: {{ subject }},Пример: {{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Имя поля {0} ограничено apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Вы не можете отменить «Только чтение» для поля {0} DocType: Social Login Key,Enable Social Login,Включить социальный вход DocType: Workflow,Rules defining transition of state in the workflow.,"Правила, определяющие переход состояния в рабочем процессе." @@ -1667,10 +1693,10 @@ DocType: Website Settings,Route Redirects,Маршрутные перенапр apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Email Inbox apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},восстановлено {0} как {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Автоматически назначать документы пользователям +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Открыть Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Шаблоны электронной почты для распространенных запросов. DocType: Letter Head,Letter Head Based On,Письмо на основе apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,"Пожалуйста, закройте это окно" -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Платеж завершен DocType: Contact,Designation,обозначение DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Мета-теги @@ -1709,6 +1735,7 @@ DocType: System Settings,Choose authentication method to be used by all users," DocType: Error Snapshot,Parent Error Snapshot,Снимок родительской ошибки DocType: GCalendar Account,GCalendar Account,GCalendar Аккаунт DocType: Language,Language Name,Название языка +DocType: Workflow Document State,Workflow Action is not created for optional states,Действие рабочего процесса не создано для необязательных состояний DocType: Customize Form,Customize Form,Настроить форму DocType: DocType,Image Field,Поле изображения apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Добавлено {0} ({1}) @@ -1750,6 +1777,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Примените это правило, если пользователь является владельцем" DocType: About Us Settings,Org History Heading,Заголовок истории организации apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Ошибка сервера +DocType: Contact,Google Contacts Description,Описание контактов Google apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Стандартные роли не могут быть переименованы DocType: Review Level,Review Points,Очки обзора apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Отсутствует параметр Kanban Board Name @@ -1767,7 +1795,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Не в режиме разработчика! Установите в site_config.json или создайте 'Custom' DocType. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,набрал {0} очков DocType: Web Form,Success Message,Сообщение об успехе -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Для сравнения используйте> 5, <10 или = 324. Для диапазонов используйте 5:10 (для значений от 5 до 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Описание для страницы листинга, в виде обычного текста, всего пара строк. (максимум 140 символов)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Показать разрешения DocType: DocType,Restrict To Domain,Ограничить доменом @@ -1789,6 +1816,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Не apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Установить количество DocType: Auto Repeat,End Date,Дата окончания DocType: Workflow Transition,Next State,Следующее состояние +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Google Контакты синхронизированы. DocType: System Settings,Is First Startup,Первый запуск apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},обновлено до {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Переместить в @@ -1838,6 +1866,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} календарь apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Шаблон импорта данных DocType: Workflow State,hand-left,рука левый +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Выберите несколько элементов списка apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Размер резервной копии: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Связано с {0} DocType: Braintree Settings,Private Key,Закрытый ключ @@ -1880,13 +1909,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Интерес DocType: Bulk Update,Limit,предел DocType: Print Settings,Print taxes with zero amount,Печать налогов с нулевой суммой -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Учетная запись электронной почты не настроена. Пожалуйста, создайте новую учетную запись электронной почты в меню «Настройка»> «Электронная почта»> «Учетная запись электронной почты»." DocType: Workflow State,Book,Книга DocType: S3 Backup Settings,Access Key ID,Идентификатор ключа доступа DocType: Chat Message,URLs,URL-адрес apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Имена и фамилии сами по себе легко угадать. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Отчет {0} DocType: About Us Settings,Team Members Heading,Заголовок членов команды +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Выберите элемент списка apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Документ {0} был установлен в состояние {1} с помощью {2} DocType: Address Template,Address Template,Шаблон адреса DocType: Workflow State,step-backward,шаг назад @@ -1910,6 +1939,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Экспорт пользовательских разрешений apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Нет: конец рабочего процесса DocType: Version,Version,Версия +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Открыть элемент списка apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 месяцев DocType: Chat Message,Group,группа apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Возникла проблема с URL-адресом файла: {0} @@ -1965,6 +1995,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 год apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} вернул ваши очки на {1} DocType: Workflow State,arrow-down,Стрелка вниз DocType: Data Import,Ignore encoding errors,Игнорировать ошибки кодирования +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Пейзаж DocType: Letter Head,Letter Head Name,Название письма DocType: Web Form,Client Script,Клиентский скрипт DocType: Assignment Rule,Higher priority rule will be applied first,Правило с более высоким приоритетом будет применено первым @@ -2009,6 +2040,7 @@ DocType: Kanban Board Column,Green,зеленый apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Только обязательные поля необходимы для новых записей. Вы можете удалить необязательные столбцы, если хотите." apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} должен начинаться и заканчиваться буквой и может содержать только буквы, дефис или подчеркивание." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Триггер Основное действие apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Создать электронную почту пользователя apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Поле сортировки {0} должно быть допустимым именем поля DocType: Auto Email Report,Filter Meta,Фильтр Мета @@ -2038,6 +2070,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Поле шкалы времени apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Loading ... DocType: Auto Email Report,Half Yearly,Полугодовой +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Мой профайл apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Дата последнего изменения DocType: Contact,First Name,Имя DocType: Post,Comments,Комментарии @@ -2060,6 +2093,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Хэш содержимого apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Сообщения от {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} назначено {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Новые контакты Google не синхронизированы. DocType: Workflow State,globe,земной шар apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Среднее из {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Очистить журналы ошибок @@ -2086,6 +2120,8 @@ DocType: Workflow State,Inverse,обратный DocType: Activity Log,Closed,Закрыто DocType: Report,Query,запрос DocType: Notification,Days After,Дней после +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Ярлыки страниц +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Портрет apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Истекло время запроса DocType: System Settings,Email Footer Address,Адрес нижнего колонтитула электронной почты apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Обновление энергетической точки @@ -2113,6 +2149,7 @@ For Select, enter list of Options, each on a new line.","Для ссылок в apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 минуту назад apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Нет активных сессий apps/frappe/frappe/model/base_document.py,Row,Строка +DocType: Contact,Middle Name,Второе имя apps/frappe/frappe/public/js/frappe/request.js,Please try again,"Пожалуйста, попробуйте еще раз" DocType: Dashboard Chart,Chart Options,Параметры диаграммы DocType: Data Migration Run,Push Failed,Push Failed @@ -2141,6 +2178,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,размер-маленький DocType: Comment,Relinked,Relinked DocType: Role Permission for Page and Report,Roles HTML,Роли HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Идти apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Рабочий процесс начнется после сохранения. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Если ваши данные в формате HTML, скопируйте, вставьте точный код HTML с тегами." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Даты часто легко угадать. @@ -2169,7 +2207,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Иконка рабочего стола apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,отменил этот документ apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Диапазон дат -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Настройка> Полномочия пользователя apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} признателен {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Значения изменены apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Ошибка в уведомлении @@ -2234,6 +2271,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Массовое удаление DocType: DocShare,Document Name,название документа apps/frappe/frappe/config/customization.py,Add your own translations,Добавьте свои собственные переводы +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Переместиться вниз по списку DocType: S3 Backup Settings,eu-central-1,ес-центрально-1 DocType: Auto Repeat,Yearly,каждый год apps/frappe/frappe/public/js/frappe/model/model.js,Rename,переименовывать @@ -2284,6 +2322,7 @@ DocType: Workflow State,plane,самолет apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,"Ошибка вложенного множества. Пожалуйста, свяжитесь с администратором." apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Показать отчет DocType: Auto Repeat,Auto Repeat Schedule,Расписание автоповтора +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Просмотр Ref DocType: Address,Office,офис DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} дней назад @@ -2317,7 +2356,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Т apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Мои настройки apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Название группы не может быть пустым. DocType: Workflow State,road,Дорога -DocType: Website Route Redirect,Source,Источник +DocType: Contact,Source,Источник apps/frappe/frappe/www/third_party_apps.html,Active Sessions,активная сессия apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,В форме может быть только один сгиб apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Новый чат @@ -2339,6 +2378,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,"Пожалуйста, введите URL авторизации" DocType: Email Account,Send Notification to,Отправить уведомление на apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Настройки резервного копирования Dropbox +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,"Что-то пошло не так во время генерации токенов. Нажмите {0}, чтобы создать новый." apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Удалить все настройки? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Только администратор может редактировать DocType: Auto Repeat,Reference Document,Справочный документ @@ -2363,6 +2403,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Роли могут быть установлены для пользователей на их странице пользователя. DocType: Website Settings,Include Search in Top Bar,Включить поиск в верхней панели apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Срочно] Ошибка при создании повторяющегося% s для% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Глобальные ярлыки DocType: Help Article,Author,автор DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Не найдено документов для данных фильтров @@ -2398,10 +2439,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, строка {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Если вы загружаете новые записи, «Серия имен» становится обязательной, если она присутствует." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Изменить свойства -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,"Не удается открыть экземпляр, когда его {0} открыт" +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,"Не удается открыть экземпляр, когда его {0} открыт" DocType: Activity Log,Timeline Name,Имя временной шкалы DocType: Comment,Workflow,Workflow apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,"Пожалуйста, установите базовый URL в социальной логин ключ для Frappe" +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Горячие клавиши DocType: Portal Settings,Custom Menu Items,Пользовательские пункты меню apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,Длина {0} должна быть от 1 до 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Соединение потеряно. Некоторые функции могут не работать. @@ -2464,6 +2506,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Добав DocType: DocType,Setup,Настроить apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} успешно создан apps/frappe/frappe/www/update-password.html,New Password,новый пароль +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Выберите поле apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Оставь этот разговор DocType: About Us Settings,Team Members,Члены команды DocType: Blog Settings,Writers Introduction,Писатели Введение @@ -2533,13 +2576,12 @@ DocType: Chat Room,Name,название DocType: Communication,Email Template,Шаблон электронной почты DocType: Energy Point Settings,Review Levels,Уровни обзора DocType: Print Format,Raw Printing,Сырая печать -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,"Невозможно открыть {0}, когда его экземпляр открыт" +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,"Невозможно открыть {0}, когда его экземпляр открыт" DocType: DocType,"Make ""name"" searchable in Global Search",Сделайте «имя» доступным для поиска в глобальном поиске DocType: Data Migration Mapping,Data Migration Mapping,Отображение данных миграции DocType: Data Import,Partially Successful,Частично успешный DocType: Communication,Error,ошибка apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Тип поля не может быть изменен с {0} на {1} в строке {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Ошибка подключения к приложению QZ Tray ...

Для использования функции Raw Print необходимо установить и запустить приложение QZ Tray.

Нажмите здесь, чтобы загрузить и установить QZ Tray .
Нажмите здесь, чтобы узнать больше о Raw Printing ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Сфотографировать apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,"Избегайте лет, которые связаны с вами." DocType: Web Form,Allow Incomplete Forms,Разрешить неполные формы @@ -2635,7 +2677,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Выберите target = "_blank", чтобы открыть новую страницу." DocType: Portal Settings,Portal Menu,Меню портала DocType: Website Settings,Landing Page,Целевая страница -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,"Пожалуйста, зарегистрируйтесь или войдите, чтобы начать" DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Варианты контактов, такие как «Запрос на продажу, Запрос на поддержку» и т. Д., Отображаются в новой строке или через запятую." apps/frappe/frappe/twofactor.py,Verfication Code,Код подтверждения apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} уже отписался @@ -2721,6 +2762,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Отображ DocType: Address,Sales User,Пользователь по продажам apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Изменить свойства поля (скрыть, только чтение, разрешение и т. Д.)" DocType: Property Setter,Field Name,Имя поля +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Покупатель DocType: Print Settings,Font Size,Размер шрифта DocType: User,Last Password Reset Date,Дата последнего сброса пароля DocType: System Settings,Date and Number Format,Формат даты и номера @@ -2786,6 +2828,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Группов apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Объединить с существующим DocType: Blog Post,Blog Intro,Введение в блог apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Новое упоминание +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Перейти к полю DocType: Prepared Report,Report Name,Название отчета apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Пожалуйста, обновите, чтобы получить последний документ." apps/frappe/frappe/core/doctype/communication/communication.js,Close,близко @@ -2795,10 +2838,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Событие DocType: Social Login Key,Access Token URL,URL токена доступа apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,"Пожалуйста, установите ключи доступа Dropbox в конфигурации вашего сайта" +DocType: Google Contacts,Google Contacts,Контакты Google DocType: User,Reset Password Key,Сброс пароля apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Модифицирован DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.",Чтобы обновить {0}. +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Успешно сохранено +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,"Отправьте письмо на {0}, чтобы связать его здесь." DocType: File,Folder,скоросшиватель DocType: DocField,Perm Level,Пермский уровень DocType: Print Settings,Page Settings,Настройки страницы @@ -2828,6 +2874,7 @@ DocType: Workflow State,remove-sign,удалить-знак DocType: Dashboard Chart,Full,Полный DocType: DocType,User Cannot Create,Пользователь не может создать apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Вы набрали {0} очков +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Настройка> Пользователь DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Если вы установите это, этот элемент появится в раскрывающемся списке под выбранным родителем." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Нет писем apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Следующие поля отсутствуют: @@ -2841,13 +2888,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,П DocType: Web Form,Web Form Fields,Поля веб-формы DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Пользователь редактируемая форма на сайте. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Отменить навсегда {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Отменить навсегда {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Вариант 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,общие данные apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Это очень распространенный пароль. DocType: Personal Data Deletion Request,Pending Approval,В ожидании утверждения apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Документ не может быть правильно назначен apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Не разрешено для {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Нет значений для отображения DocType: Personal Data Download Request,Personal Data Download Request,Запрос на скачивание личных данных apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} поделился этим документом с {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Выберите {0} @@ -2863,7 +2911,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Это письмо было отправлено {0} и скопировано в {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,Неправильный логин или пароль DocType: Social Login Key,Social Login Key,Социальный ключ входа -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Настройте учетную запись электронной почты по умолчанию в меню «Настройка»> «Электронная почта»> «Учетная запись электронной почты». apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Фильтры сохранены DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Как отформатировать эту валюту? Если не установлено, будут использоваться системные значения по умолчанию" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} установлен в состояние {2} @@ -2989,6 +3036,7 @@ DocType: User,Location,Место нахождения apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Нет данных DocType: Website Meta Tag,Website Meta Tag,Метатег веб-сайта DocType: Workflow State,film,фильм +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Скопировано в буфер обмена. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Настройки не найдены apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Этикетка обязательна DocType: Webhook,Webhook Headers,Заголовки Webhook @@ -3197,7 +3245,7 @@ DocType: Address,Address Line 1,Адресная строка 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Для типа документа apps/frappe/frappe/model/base_document.py,Data missing in table,Данные отсутствуют в таблице apps/frappe/frappe/utils/bot.py,Could not identify {0},Не удалось идентифицировать {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,"Эта форма была изменена после того, как вы загрузили ее" +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,"Эта форма была изменена после того, как вы загрузили ее" apps/frappe/frappe/www/login.html,Back to Login,Вернуться на страницу входа apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Не установлен DocType: Data Migration Mapping,Pull,Тянуть @@ -3265,6 +3313,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Отображени apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,"Настройка учетной записи электронной почты, введите ваш пароль для:" apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,"Слишком много пишет в одном запросе. Пожалуйста, отправьте меньшие запросы" DocType: Social Login Key,Salesforce,Salesforce +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Импорт {0} из {1} DocType: User,Tile,Плитка apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,Комната {0} должна иметь не более одного пользователя. DocType: Email Rule,Is Spam,Это спам @@ -3302,7 +3351,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,Папка-закрыть DocType: Data Migration Run,Pull Update,Pull Update apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},слил {0} в {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

DocType: SMS Settings,Enter url parameter for receiver nos,Введите параметр url для номеров получателей apps/frappe/frappe/utils/jinja.py,Syntax error in template,Синтаксическая ошибка в шаблоне apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,"Пожалуйста, установите значение фильтров в таблице фильтра отчетов." @@ -3315,6 +3363,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Извин DocType: System Settings,In Days,В днях DocType: Report,Add Total Row,Добавить общую строку apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Ошибка начала сеанса +DocType: Translation,Verified,проверенный DocType: Print Format,Custom HTML Help,Пользовательская HTML Справка DocType: Address,Preferred Billing Address,Предпочитаемый платежный адрес apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Назначено @@ -3329,7 +3378,6 @@ DocType: Help Article,Intermediate,промежуточный DocType: Module Def,Module Name,Имя модуля DocType: OAuth Authorization Code,Expiration time,Время истечения apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Установите формат по умолчанию, размер страницы, стиль печати и т. Д." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,"Вам не может понравиться то, что вы создали" DocType: System Settings,Session Expiry,Сессия истекает DocType: DocType,Auto Name,Авто Имя apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Выберите вложения @@ -3357,6 +3405,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Системная страница DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Примечание. По умолчанию отправляются письма с ошибками. DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm +DocType: Translation,PR sent,Пиар отправлен DocType: Tag Doc Category,Doctype to Assign Tags,Doctype для назначения тегов DocType: Address,Warehouse,Склад apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Настройка Dropbox @@ -3424,7 +3473,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,"Ctrl + Enter, чтобы добавить комментарий" apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Поле {0} недоступно для выбора. DocType: User,Birth Date,Дата рождения -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,С отступом группы DocType: List View Setting,Disable Count,Отключить счет DocType: Contact Us Settings,Email ID,Email ID apps/frappe/frappe/utils/password.py,Incorrect User or Password,Неверный пользователь или пароль @@ -3459,6 +3507,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Эта роль обновляет разрешения пользователя для пользователя DocType: Website Theme,Theme,тема DocType: Web Form,Show Sidebar,Показать боковую панель +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Интеграция с контактами Google. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Входящие по умолчанию apps/frappe/frappe/www/login.py,Invalid Login Token,Неверный логин apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Сначала установите имя и сохраните запись. @@ -3486,7 +3535,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,"Пожалуйста, исправьте" DocType: Top Bar Item,Top Bar Item,Top Bar Item ,Role Permissions Manager,Диспетчер разрешений ролей -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,"Были ошибки. Пожалуйста, сообщите об этом." +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} год (лет) назад apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,женский DocType: System Settings,OTP Issuer Name,Имя эмитента ОТП apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Добавить в To @@ -3586,6 +3635,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Нас apps/frappe/frappe/model/document.py,none of,ни один из DocType: Desktop Icon,Page,страница DocType: Workflow State,plus-sign,знак плюс +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Очистить кэш и перезагрузить apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Не удается обновить: неверная / просроченная ссылка. DocType: Kanban Board Column,Yellow,желтый DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Количество столбцов для поля в сетке (общее количество столбцов в сетке должно быть меньше 11) @@ -3600,6 +3650,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Но DocType: Activity Log,Date,Дата DocType: Communication,Communication Type,Тип связи apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Родительский стол +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Навигация по списку вверх DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Показать полную ошибку и разрешить сообщение о проблемах разработчику DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3621,7 +3672,6 @@ DocType: Notification Recipient,Email By Role,Электронная почта apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,"Обновите, чтобы добавить более {0} подписчиков" apps/frappe/frappe/email/queue.py,This email was sent to {0},Это письмо было отправлено на {0} DocType: User,Represents a User in the system.,Представляет пользователя в системе. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Страница {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Начать новый формат apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Добавить комментарий apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} из {1} diff --git a/frappe/translations/si.csv b/frappe/translations/si.csv index 1c4f2d80ba..ad1e700e65 100644 --- a/frappe/translations/si.csv +++ b/frappe/translations/si.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Gradients සක්රීය කරන්න DocType: DocType,Default Sort Order,පෙරනිමි අනුපිළිවෙල apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,වාර්තාවෙන් සංඛ්යාත්මක ක්ෂේත්ර පමණක් පෙන්වයි +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,මෙනුවේ සහ පැති තීරුවේ අමතර කෙටිමං ක්‍රියාත්මක කිරීමට Alt Key ඔබන්න DocType: Workflow State,folder-open,ෆෝල්ඩරය විවෘත කර ඇත DocType: Customize Form,Is Table,වගුව යනු කුමක්ද? apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,අමුණා ඇති ගොනුව විවෘත කිරීමට නොහැක. CSV ලෙස ඔබ එය අපනයනය කළාද? DocType: DocField,No Copy,පිටපත් නොමැත DocType: Custom Field,Default Value,පෙරනිමි අගය apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,ආයාචිත තැපැල් සඳහා අනිවාර්ය වේ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,සම්බන්ධතා සමමුහුර්ත කරන්න DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,දත්ත සංක්රමණ සිතියම apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,අනුප්රාප්තිකයා apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.","රාවය මුද්රණය" හරහා PDF මුද්රණය තවමත් සහාය නොදක්වයි. කරුණාකර මුද්රණ සැකසුම් තුළ මුද්රණ සිතියම්කරණය ඉවත් කර නැවත උත්සාහ කරන්න. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} සහ {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,පෙරහන් සුරැකීමේදී දෝෂයක් ඇති විය apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,ඔබේ මුරපදය ඇතුළත් කරන්න apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,නිවෙස් සහ ඇමිණුම් ෆෝල්ඩර මැකිය නොහැක +DocType: Email Account,Enable Automatic Linking in Documents,ලේඛනවල ස්වයංක්‍රීය සම්බන්ධතා සක්‍රීය කරන්න DocType: Contact Us Settings,Settings for Contact Us Page,අපව අමතන්න සැකසීම් පිටුව DocType: Social Login Key,Social Login Provider,සමාජ ආරක්ෂණ සැපයුම්කරු +DocType: Email Account,"For more information, click here.","වැඩි විස්තර සඳහා මෙහි ක්ලික් කරන්න ." DocType: Transaction Log,Previous Hash,පෙර Hash DocType: Notification,Value Changed,අගය වෙනස් විය DocType: Report,Report Type,වාර්තා වර්ගය @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,බලශක්ති උත්ත apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,කරුණාකර සමාජ පිවිසුම සක්රීය කිරීමට පෙර සේවාදායක හැඳුනුම්පත ඇතුළත් කරන්න DocType: Communication,Has Attachment,ඇ attach DocType: User,Email Signature,විද්යුත් තැපැල් අත්සන් -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} අවුරුද්ද (අ) පෙර ,Addresses And Contacts,ලිපිනයන් හා සම්බන්ධතා apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,මෙම කන්බෝවන් මන්ඩලය පුද්ගලික වේ DocType: Data Migration Run,Current Mapping,වත්මන් සිතියම්කරණය @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","ඔබ Sync Option ලෙස ALL ලෙස තේරුවහොත්, සර්වරයේ සිට සියළු කියවීම් සහ නොකියවූ පණිවුඩ ප්රතිස්ථාපනය කරනු ඇත. මෙය ද සන්නිවේදනය (ඊමේල්) පිටපත් කිරීම ද හේතු විය හැක." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},අවසන් වරට සමමුහුර්ත කරන ලදි {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,ශීර්ෂ අන්තර්ගතය වෙනස් කළ නොහැක +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,ඉදිරිපත් කිරීමෙන් පසු {0} වෙනස් කිරීමට ඉඩ නොදේ apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","මෙම යෙදුම නව අනුවාදයකට යාවත්කාලීන කර ඇත, කරුණාකර මෙම පිටුව ප්රබෝධමත් කරන්න" DocType: User,User Image,පරිශීලක ගොනුවේ @@ -319,6 +323,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},{0} apps/frappe/frappe/public/js/frappe/chat.js,Discard,ඉවතලන්න DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,හොඳම ප්රතිඵල සඳහා විනිවිදක පසුබිමක් සහිත පළල පළල 150px පමණ තෝරන්න. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,නැවතී +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} තෝරාගත් අගයන් DocType: Blog Post,Email Sent,ඊමේල් යැවූ DocType: Communication,Read by Recipient On,ලබන්නා විසින් කියවන්න DocType: User,Allow user to login only after this hour (0-24),මෙම පැයට පසු පරිශීලකයාට පුරනය වීමට අවසර දෙන්න (0-24) @@ -340,7 +345,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,අපනයනය කිරීමට මොඩියුලය DocType: DocType,Fields,ක්ෂේත්ර -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,මෙම ලේඛනය මුද්රණය කිරීමට ඔබට අවසර නැත +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,මෙම ලේඛනය මුද්රණය කිරීමට ඔබට අවසර නැත apps/frappe/frappe/public/js/frappe/model/model.js,Parent,දෙමව්පියන් apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","ඔබගේ සැසිය කල් ඉකුත් වී ඇත, කරුණාකර ඉදිරියට කරගෙන යාමට නැවත පුරනය වන්න." DocType: Assignment Rule,Priority,ප්රමුඛතාවය @@ -367,6 +372,7 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,OTP රහස් DocType: DocType,UPPER CASE,උඩුමුල්ලේ නඩුව apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,කරුණාකර ඊමේල් ලිපිනය සකස් කරන්න DocType: Communication,Marked As Spam,ස්පෑම් ලෙස සලකුණු කර ඇත +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,ගූගල් සම්බන්ධතා සමමුහුර්ත කළ යුතු ඊමේල් ලිපිනය. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,ආයාත කරන්නන් apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,ෆිල්ටරය සුරකින්න DocType: Address,Preferred Shipping Address,කැමතිම නැව් ලිපිනය @@ -387,6 +393,7 @@ DocType: Web Page,Insert Code,කේත ඇතුල් කරන්න apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,ඇතුළේ නැත DocType: Auto Repeat,Start Date,ආරම්භක දිනය apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,වගුව සකසන්න +DocType: Website Theme,Theme JSON,තේමාව JSON apps/frappe/frappe/www/list.py,My Account,මගේ ගිණුම DocType: DocType,Is Published Field,ප්රකාශිත ක්ෂේත්රය DocType: DocField,Set non-standard precision for a Float or Currency field,Float හෝ ව්යවහාර මුදල් ක්ෂේත්රය සඳහා සම්මත නොවන නිරවද්යතාව සකසා ගන්න @@ -397,7 +404,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: එකතු Reference: {{ reference_doctype }} {{ reference_name }} ලේඛන යොමු කිරීම යැවීම DocType: LDAP Settings,LDAP First Name Field,LDAP ෆීල්ඩ් ෆීල්ඩ් apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,පෙරනිමි යැවීම සහ එන ලිපි -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,පිහිටුවීම> ආකෘතිය සකස් කරන්න apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.","යාවත්කාලීන කිරීම සඳහා, ඔබ විසින් පමණක් තෝරා ගන්නා ලද තීරු ලිපි යාවත්කාල කළ හැකිය." apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1','Check' වර්ගය සඳහා පෙරනිමිය ලෙස '0' හෝ '1' apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,මෙම ලේඛනය සමඟ බෙදාගන්න @@ -441,16 +447,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,වසම් HTML DocType: Blog Settings,Blog Settings,බ්ලොග් සැකසුම් apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DocType ගේ නම අකුරකින් ආරම්භ කළ යුතු අතර, එය පමණක් අකුරු, අංක, අවකාශයන් සහ යටි ඉරි වලින් සමන්විත විය යුතුය" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,සැකසුම> පරිශීලක අවසර DocType: Communication,Integrations can use this field to set email delivery status,මෙම ක්ෂේත්රයේ ඊමේල් ප්රසම්පාදන තත්වය සැකසීම සඳහා ඒකාබද්ධ කිරීම් භාවිතා කළ හැකිය apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,ස්ට්රේප් ගෙවීම් දොරටුව සැකසුම් DocType: Print Settings,Fonts,ෆොන්ට් DocType: Notification,Channel,නාලිකාව DocType: Communication,Opened,විවෘත විය DocType: Workflow Transition,Conditions,කොන්දේසි +apps/frappe/frappe/config/website.py,A user who posts blogs.,බ්ලොග් පළ කරන පරිශීලකයෙක්. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,ගිණුමක් නොමැතිද? ලියාපදිංචි වන්න apps/frappe/frappe/utils/file_manager.py,Added {0},එකතු කළ {0} DocType: Newsletter,Create and Send Newsletters,බිල්ට් ලිපියක් තනන්න සහ යවන්න DocType: Website Settings,Footer Items,පාදක අයිතම +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,කරුණාකර පෙරනිමි ඊමේල් ගිණුම සැකසුම> විද්‍යුත් තැපෑල> විද්‍යුත් තැපැල් ගිණුමෙන් සකසන්න DocType: Website Slideshow Item,Website Slideshow Item,වෙබ් අඩවි විනිවිදක දැක්ම අයිතමය apps/frappe/frappe/config/integrations.py,Register OAuth Client App,OAuth Client App ලියාපදිංචි කරන්න DocType: Error Snapshot,Frames,රාමු @@ -491,7 +500,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","පෙළ 0 මට්ටමේ ලේඛන මට්ටමේ අවසරයන් සඳහා, ක්ෂේත්ර මට්ටමේ අවසර සඳහා ඉහල මට්ටමේ." DocType: Address,City/Town,නගරය / නගරය DocType: Email Account,GMail,ජීමේල් -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","මෙය ඔබගේ වත්මන් තේමාව යලි සකසනු ඇත, ඔබ දිගටම කරගෙන යාමට අවශ්ය බව ඔබට විශ්වාසද?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},{0} අවශ්ය වන අනිවාර්ය ක්ෂේත්ර apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},ඊ-තැපැල් ගිණුමට සම්බන්ධ වීමේදී දෝශයක් {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,පුනරාවර්තනය කිරීමේදී දෝශයක් ඇති විය @@ -527,7 +535,7 @@ DocType: Event,Event Category,සිදුවීම් වර්ගය apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,මත පදනම් වූ තීරු apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,ශීර්ෂය සංස්කරණය කරන්න DocType: Communication,Received,ලැබුණි -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,මෙම පිටුවට ප්රවේශ වීමට ඔබට අවසර නැත. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,මෙම පිටුවට ප්රවේශ වීමට ඔබට අවසර නැත. DocType: User Social Login,User Social Login,පරිශීලක සමාජ ලොගින්වීම apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,මෙම ෆොල්ඩේෂන් හි ඇති ෆොල්ඩරයක් තුලදී Python ගොනුව ලියන්න සහ නැවත තීරනය හා ප්රතිඵලය. DocType: Contact,Purchase Manager,මිලදී ගැනීමේ කළමනාකරු @@ -580,7 +588,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,ප apps/frappe/frappe/utils/data.py,Operator must be one of {0},මෙහෙයුම්කරු {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,හිමිකරු නම් DocType: Data Migration Run,Trigger Name,ව්යාජ නම -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,ඔබගේ බ්ලොග් අඩවියේ මාතෘකා ලියන්න. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,ෆීල්ඩ් ඉවත් කරන්න apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,සියල්ල හකුලන්න apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,පසුබිම් වර්ණය @@ -629,6 +636,7 @@ DocType: Dashboard Chart,Bar,බාර් DocType: SMS Settings,Enter url parameter for message,පණිවිඩ සඳහා URL පරාමිති ඇතුල් කරන්න apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,නව රේගු මුද්රණ ආකෘතිය apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} දැනටමත් පවතී +DocType: Workflow Document State,Is Optional State,අනිවාර්ය රාජ්යයකි DocType: Address,Purchase User,මිලදී ගන්න පරිශීලක DocType: Data Migration Run,Insert,ඇතුල් කරන්න DocType: Web Form,Route to Success Link,සාර්ථකත්වයට මාර්ගයක් Link @@ -636,13 +644,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,පර DocType: File,Is Home Folder,මුල් පිටපත apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,වර්ගය: DocType: Post,Is Pinned,ස්පර්ශය -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},'{0}' සඳහා අවසර නැත {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},'{0}' සඳහා අවසර නැත {1} DocType: Patch Log,Patch Log,Patch Log DocType: Print Format,Print Format Builder,මුද්රණ ආකෘතිය නිර්මාණකරු 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 ලිපිනයක් සිට පිවිසිය හැක. මෙයද පරිශීලක පිටුවෙහි විශේෂිත පරිශීලකයන් සඳහා පමණි" apps/frappe/frappe/utils/data.py,only.,එකම. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,Condition '{0}' වලංගු නොවේ DocType: Auto Email Report,Day of Week,සතියේ දිනය +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,ගූගල් සැකසුම් තුළ ගූගල් ඒපීඅයි සක්‍රීය කරන්න. DocType: DocField,Text Editor,පෙළ සංස්කාරකයකි apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,කපන්න apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,විධානයක් සොයන්න හෝ ටයිප් කරන්න @@ -650,6 +659,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,DB බැකු ගණන 1 ට අඩු විය නොහැක DocType: Workflow State,ban-circle,තහනම් චක්රය DocType: Data Export,Excel,එක්සෙල් +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","ශීර්ෂකය, පාන් කෑලි සහ මෙටා ටැග්" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,උපකාරක ඊ-තැපැල් ලිපිනය විශේෂයෙන් සඳහන් නොවේ DocType: Comment,Published,ප්රකාශයට පත් කරන ලදි DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.",සටහන: හොඳම ප්රතිඵල සඳහා රූප එකම ප්රමාණයෙන් තිබිය යුතු අතර පළල උසට වඩා වැඩි විය යුතුය. @@ -740,6 +750,7 @@ DocType: System Settings,Scheduler Last Event,දිගුකාලීන අව apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,සියලුම ලියකියවිලි වල වාර්තා DocType: Website Sidebar Item,Website Sidebar Item,වෙබ් පිටුබලය අයිතමය apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,කරන්න +DocType: Google Settings,Google Settings,ගූගල් සැකසුම් apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","ඔබගේ රට, වේලාව කලාපය සහ ව්යවහාර මුදල් වර්ගය තෝරන්න" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","මෙහිදි ස්ථිතික url පරාමිතියන් ඇතුලත් කරන්න (නිද. සෙන්ටර් = ERPNext, පරිශීලක නාමය = ERPNext, මුරපදය = 1234 ආදිය)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,විද්යුත් තැපැල් ගිණුමක් නොමැත @@ -793,6 +804,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token ,Setup Wizard,Setup විශාරද apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Toggle Chart +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,සමමුහුර්ත කිරීම DocType: Data Migration Run,Current Mapping Action,වත්මන් සිතියම් ක්රියාවලිය DocType: Email Account,Initial Sync Count,මුලින් සමමුහුරුව ගණනය කරන්න apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,අපව අමතන්න සැකසීම් පිටුව. @@ -832,6 +844,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,මුද්රණ ආකෘතිය වර්ගය apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,මෙම නිර්ණායකය සඳහා අවසර නොමැත. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,සියල්ල දිගහරින්න +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,පෙරනිමි ලිපින සැකිල්ලක් හමු නොවීය. සැකසුම> මුද්‍රණය සහ වෙළඳ නාම> ලිපින සැකිල්ලෙන් කරුණාකර නව එකක් සාදන්න. DocType: Tag Doc Category,Tag Doc Category,Tag ඩොකෝ වර්ගය DocType: Data Import,Generated File,උත්පතන ගොනුව apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,සටහන් @@ -839,7 +852,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,කාල නියමය ක්ෂේත්රය Link හෝ ඩයිනමික් ලින්ක් විය යුතුය DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,දැනුම්දීම් සහ තොග තැපැල් යැවීම මෙම එවනු ලබන සේවාදායකයෙන් එවනු ලැබේ. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,මෙය සාමාන්ය -100 පොදු මුරපදය වේ. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,ස්ථිරව ඉදිරිපත් කරන්න {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,ස්ථිරව ඉදිරිපත් කරන්න {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} නොපවතියි, ඒකාබද්ධ කිරීම සඳහා නව ඉලක්කයක් තෝරන්න" DocType: Energy Point Rule,Multiplier Field,ගුණක ක්ෂේත්ර DocType: Workflow,Workflow State Field,කාර්ය ප්රවාහ රාජ්ය ක්ෂේත්රය @@ -878,6 +891,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New {0},නව {0 apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto Repeat in the doctype {0},පරිශිලක ක්ෂේත්රයේ ස්වයංක්රියව නැවත සකසන්න doctype {0} DocType: Auto Email Report,Zero means send records updated at anytime,Zero යනු ඕනෑම වේලාවක යාවත්කාලීන කිරීම් යැවීමයි apps/frappe/frappe/model/document.py,Value cannot be changed for {0},{0} සඳහා අගය වෙනස් කළ නොහැක +apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API සැකසුම්. DocType: System Settings,Force User to Reset Password,මුරපද යළි පිහිටුවීම සඳහා බල කිරීම apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,වාර්තා නිර්මාතෘ විසින් වාර්තා සම්පාදක වාර්තා කෙලින්ම කළමනාකරණය කරනු ලැබේ. කරන්න දෙයක් නෑ. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,පෙරහන කරන්න @@ -931,7 +945,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,ස DocType: S3 Backup Settings,eu-north-1,eu-north-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: එකම භූමිකාව, මට්ටම සහ {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,මෙම වෙබ් ආකෘති ලේඛනය යාවත්කාල කිරීමට ඔබට අවසර නොමැත -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,මෙම වාර්තාව සඳහා උපරිම ආදාන සීමාව ළඟා විය. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,මෙම වාර්තාව සඳහා උපරිම ආදාන සීමාව ළඟා විය. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,යොමු සන්නිවේදනය ලියකියවිලි චක්රලේඛය සමඟ සම්බන්ධ නොවන බවට වග බලා ගන්න. DocType: DocField,Allow in Quick Entry,ඉක්මන් පිවිසුමට ඉඩ දෙන්න DocType: Error Snapshot,Locals,ගම්වැසියන් @@ -963,7 +977,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,ව්යතිරේක වර්ගය apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},{0} {1} සමඟ සම්බන්ධ වී ඇති බැවින් එය මකා දැමීමට හෝ අවලංගු කල නොහැක. {2} {3} {4} apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTP රහස් කළ හැක්කේ පරිපාලක විසින් පමණි. -DocType: Web Form Field,Page Break,පිටුව බ්රේස් DocType: Website Script,Website Script,වෙබ් පිටපත DocType: Integration Request,Subscription Notification,දායකත්ව දැනුම්දීම DocType: DocType,Quick Entry,ඉක්මන් ප්රවේශය @@ -980,6 +993,7 @@ DocType: Notification,Set Property After Alert,අනතුරු ඇඟවී apps/frappe/frappe/__init__.py,Thank you,ඔබට ස්තුතියි apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,අභ්යන්තර ඒකාබද්ධ කිරීම සඳහා Slab Webkooks apps/frappe/frappe/config/settings.py,Import Data,ආනයන දත්ත +DocType: Translation,Contributed Translation Doctype Name,දායක වූ පරිවර්තන ඩොක්ටයිප් නම DocType: Social Login Key,Office 365,කාර්යාල 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,හැඳුනුම්පත DocType: Review Level,Review Level,සමාලෝචන මට්ටම @@ -998,7 +1012,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,සාර්ථක විය apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} ලැයිස්තුව apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,අගය කරන්න -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),නව {0} (Ctrl + B) DocType: Contact,Is Primary Contact,ප්රාථමික ඇමතුම් DocType: Print Format,Raw Commands,අමු ආඥා apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,මුද්රණ ආකෘති සඳහා ස්ටේෂීෂීට් @@ -1039,6 +1052,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,පසුබිම apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},{0} තුල {1} DocType: Email Account,Use SSL,SSL භාවිතා කරන්න DocType: DocField,In Standard Filter,සම්මත ෆිල්ටර් +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,සමමුහුර්ත කිරීම සඳහා ගූගල් සම්බන්ධතා නොමැත. DocType: Data Migration Run,Total Pages,සම්පූර්ණ පිටු apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: ක්ෂේත්රය '{1}' අද්විතීය අගයන් නොමැති බැවින් එය අනන්ය ලෙස සකස් කළ නොහැක DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","සක්රිය කර ඇත්නම්, පරිශීලකයින්ට පිවිසෙන සෑම අවස්ථාවකම දැනුම් දෙනු ලැබේ. සක්රිය නොකළහොත්, පරිශීලකයන් එක් වරක් පමණක් දැනුම් දෙනු ලැබේ." @@ -1059,7 +1073,7 @@ DocType: Assignment Rule,Automation,ස්වයංකියකරණය apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Unzipping ගොනු ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}','{0}' සොයන්න apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,මොකක්හරි වැරැද්දක් වෙලා -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,ඇමිණීමට පෙර ඉතිරි කරන්න. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,ඇමිණීමට පෙර ඉතිරි කරන්න. DocType: Version,Table HTML,වගුව HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,කේන්ද්රස්ථානයයි DocType: Page,Standard,සම්මත @@ -1136,12 +1150,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,ප්ර apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} වාර්තා මකා දමයි apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,Dropbox ප්රවේශ ටෝකනය උත්පාදනය කිරීමේදී කිසියම් දෙයක් වැරැද්දක් විය. වැඩි විස්තර සඳහා කරුණාකර දෝෂ සටහන් ලොගනය කරන්න. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,පැවත එන්නන් -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ප්රකෘති ලිපිනය සැකිල්ල හමු නොවිනි. කරුණාකර නවෝත්පාදනය> මුද්රණය සහ බ්රෝංකරණය> ලිපින සැකිල්ල. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,ගූගල් සම්බන්ධතා වින්‍යාස කර ඇත. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,විස්තර සඟවන්න apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,ෆොන්ට් ස්ටයිල්ස් apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,ඔබගේ දායකත්වය {0} මත කල්ඉකුත් වේ. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},ඊ-තැපැල් ගිණුමෙන් ඊමේල් ලැබීමේදී සත්යාපනය අසාර්ථකයි. {0}. සර්වර් වෙතින් පණිවිඩ: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),පසුගිය සතියේ කාර්ය සාධනය මත පදනම්ව {0} සිට {1} +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,ස්වයංක්‍රීය සම්බන්ධතා සක්‍රිය කළ හැක්කේ ඉන්කමින් සක්‍රීය කර ඇත්නම් පමණි. DocType: Website Settings,Title Prefix,මාතෘකාව apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,ඔබට භාවිතා කළ හැකි සත්යාපන යෙදුම්: DocType: Bulk Update,Max 500 records at a time,මැක්ස් 500 වරක් වාර්තා වේ @@ -1174,7 +1189,7 @@ DocType: Auto Email Report,Report Filters,වාර්තා පෙරහන් apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,තීරු තෝරන්න DocType: Event,Participants,සහභාගීවන්නන් DocType: Auto Repeat,Amended From,සංශෝධිත -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,ඔබගේ තොරතුරු ඉදිරිපත් කර ඇත +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,ඔබගේ තොරතුරු ඉදිරිපත් කර ඇත DocType: Help Category,Help Category,උදවු වර්ගය apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,මාස 1 යි apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,නව ආකෘතියක් සංස්කරණය කිරීම හෝ ආරම්භ කිරීම සඳහා පවතින ආකෘතිය තෝරන්න. @@ -1221,7 +1236,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,ගවේෂණය කරන්න DocType: User,Generate Keys,යතුරු උත්පාදනය කරන්න DocType: Comment,Unshared,නොකැළඹේ -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,සුරකින ලදි +DocType: Translation,Saved,සුරකින ලදි DocType: OAuth Client,OAuth Client,OAuth Client DocType: System Settings,Disable Standard Email Footer,සම්මත ඊමේල් පාදය අක්රිය කරන්න apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,මුද්රණ ආකෘතිය {0} අක්රිය කර ඇත @@ -1252,6 +1267,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,අවසන DocType: Data Import,Action,කටයුතු apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,සේවාදායකයේ යතුර අවශ්ය වේ DocType: Chat Profile,Notifications,දැනුම්දීම් +DocType: Translation,Contributed,දායක විය DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy DocType: Report,Custom Report,අභිරුචි වාර්තාව DocType: Workflow State,info-sign,info-sign @@ -1267,6 +1283,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:", apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are currently viewing this document,{0} දැනට මෙම ලේඛනය නරඹමින් සිටී DocType: Contact,Contact,අමතන්න DocType: LDAP Settings,LDAP Username Field,LDAP පරිශීලක නාමය ක්ෂේත්රය +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,සැකසුම> පෝරමය අභිරුචිකරණය කරන්න DocType: User,Social Logins,සමාජ ලොජින් DocType: Workflow State,Trash,ඉවත ලන DocType: Stripe Settings,Secret Key,රහස් යතුර @@ -1324,6 +1341,7 @@ DocType: DocType,Title Field,ෆීල්ඩ් ෆීල්ඩ් apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,පිටතට යන ඊමේල් සේවාදායකයට සම්බන්ධ විය නොහැක DocType: File,File URL,ගොනු URL DocType: Help Article,Likes,ආදරය +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,ගූගල් සම්බන්ධතා ඒකාබද්ධ කිරීම අක්‍රීය කර ඇත. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,"ඔබට පුරනය වී තිබිය යුතු අතර, උපස්ථ වලට පිවිසීමට හැකි වන පරිදි පද්ධති කළමනාකරුගේ භූමිකාව තිබිය යුතුය." apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,පළමුවන මට්ටම DocType: Blogger,Short Name,කෙටි නම @@ -1341,13 +1359,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,ආයාත කිරීම සිපයක් DocType: Contact,Gender,ස්ත්රී පුරුෂ භාවය DocType: Workflow State,thumbs-down,අදින්න බැහැ -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},පේළිය {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},වාර්තා වර්ගය මත දැනුම්දීම් තැබිය නොහැක {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,එක් පරිශීලක කළමණාකරු අවම වශයෙන් තිබිය යුතුය මෙම පරිශීලකයාට පද්ධති කළමනාකරු එකතු කිරීම apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,සාදරයෙන් පිළිගනිමි DocType: Transaction Log,Chaining Hash,හැෂ් හෑෂ් DocType: Contact,Maintenance Manager,නඩත්තු කළමනාකරු +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","සංසන්දනය සඳහා,> 5, <10 හෝ = 324 භාවිතා කරන්න. පරාසයන් සඳහා, 5:10 භාවිතා කරන්න (5 සහ 10 අතර අගයන් සඳහා)." apps/frappe/frappe/utils/bot.py,show,පෙන්වන්න apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,බෙදාගන්න URL apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,සහාය නොදක්වන ගොනු ආකෘතිය @@ -1369,7 +1387,7 @@ DocType: Communication,Notification,නිවේදනය DocType: Data Import,Show only errors,දෝෂ පමණක් පෙන්වන්න DocType: Energy Point Log,Review,සමාලෝචනය apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,පේළි ඉවත් කළා -DocType: GSuite Settings,Google Credentials,ගූගල් අක්තපත්ර +DocType: Google Settings,Google Credentials,ගූගල් අක්තපත්ර apps/frappe/frappe/www/login.html,Or login with,එසේත් නැත්නම් පුරනය වන්න apps/frappe/frappe/model/document.py,Record does not exist,වාර්තාවක් නොමැත apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,නව වාර්තාවේ නම @@ -1394,6 +1412,7 @@ DocType: Desktop Icon,List,ලැයිස්තුව DocType: Workflow State,th-large,th-large apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: ඉදිරිපත් කළ නොහැකි නම් පැවරීම කළ නොහැක apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,කිසිදු වාර්තාවකට සම්බන්ධ නොවේ +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZ තැටි යෙදුමට සම්බන්ධ වීමේ දෝෂයකි ...

අමු මුද්‍රණ විශේෂාංගය භාවිතා කිරීම සඳහා ඔබට QZ තැටි යෙදුම ස්ථාපනය කර ක්‍රියාත්මක කළ යුතුය.

QZ තැටි බාගත කර ස්ථාපනය කිරීමට මෙතැන ක්ලික් කරන්න .
අමු මුද්‍රණය පිළිබඳ වැඩිදුර දැන ගැනීමට මෙහි ක්ලික් කරන්න ." DocType: Chat Message,Content,අන්තර්ගතය DocType: Workflow Transition,Allow Self Approval,ස්වයං අනුමැතිය සඳහා ඉඩ දෙන්න apps/frappe/frappe/www/qrcode.py,Page has expired!,පිටුව කල්ඉකුත් වී ඇත! @@ -1410,6 +1429,7 @@ DocType: Workflow State,hand-right,අත දකුණ DocType: Website Settings,Banner is above the Top Menu Bar.,බැනරය ඉහළ මෙනු තීරයට ඉහළින්. apps/frappe/frappe/www/update-password.html,Invalid Password,අවලංගු මුරපදයකි apps/frappe/frappe/utils/data.py,1 month ago,මාස 1 කට පෙර +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,ගූගල් සම්බන්ධතා ප්‍රවේශයට ඉඩ දෙන්න DocType: OAuth Client,App Client ID,යෙදුම් සේවාලාභී හැඳුනුම්පත DocType: DocField,Currency,මුදල් DocType: Website Settings,Banner,බැනරය @@ -1421,7 +1441,7 @@ apps/frappe/frappe/utils/goal.py,Goal,ඉලක්කය DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.",0 මට්ටමේ දී භූමිකාවක් නොමැති නම් ඉහල මට්ටම් අර්ථවත් නොවේ. DocType: ToDo,Reference Type,විමර්ශන වර්ගය -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DocType, DocType අවසර දීම. පරෙස්සම් වෙන්න!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","DocType, DocType අවසර දීම. පරෙස්සම් වෙන්න!" DocType: Domain Settings,Domain Settings,වසම් සැකසුම් DocType: Auto Email Report,Dynamic Report Filters,ඩයිනමික් වාර්තා පිරික්සුම් DocType: Energy Point Log,Appreciation,අගය කිරීම @@ -1463,6 +1483,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,අප-බටහිර-2 DocType: DocType,Is Single,තනි ය apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,නව ආකෘතියක් සාදන්න +DocType: Google Contacts,Authorize Google Contacts Access,ගූගල් සම්බන්ධතා ප්‍රවේශයට අවසර දෙන්න DocType: S3 Backup Settings,Endpoint URL,අවසානය URL ලිපිනය DocType: Social Login Key,Google,ගූගල් DocType: Contact,Department,ෙදපාර්තෙම්න්තුෙව් @@ -1477,7 +1498,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,පැවරී DocType: List Filter,List Filter,ලැයිස්තු පෙරහන DocType: Dashboard Chart Link,Chart,සටහන apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,ඉවත් කළ නොහැක -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,තහවුරු කිරීමට මෙම ලේඛනය ඉදිරිපත් කරන්න +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,තහවුරු කිරීමට මෙම ලේඛනය ඉදිරිපත් කරන්න apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} දැනටමත් පවතී. වෙනත් නමක් තෝරන්න apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,මෙම ආකෘතියෙහි ඔබට නොගැලපෙන වෙනස්කම් තිබේ. දිගටම කරගෙන යාමට පෙර ඉතිරි කරන්න. apps/frappe/frappe/model/document.py,Action Failed,ක්රියාකාරීත්වය අසාර්ථක විය @@ -1559,6 +1580,7 @@ DocType: DocField,Display,සංදර්ශනය apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,සියල්ල පිළිතුරු දෙන්න DocType: Calendar View,Subject Field,විෂය ක්ෂේත්රය apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},සැසිවාරය කල් ඉකුත් වී තිබිය යුතුය {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},අයදුම් කිරීම: {0} DocType: Workflow State,zoom-in,විශාලනය කරන්න apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,සේවාදායකයට සම්බන්ධ වීමට අසමත් විය apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},දිනය {0} ආකෘතියෙහි තිබිය යුතුය: {1} @@ -1570,8 +1592,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,පරීක්ෂණය DocType: Workflow State,Icon will appear on the button,අයිකනය බොත්තම මත දිස්වනු ඇත DocType: Role Permission for Page and Report,Set Role For,කාර්යභාරය පිහිටුවන්න +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,ස්වයංක්‍රීය සම්බන්ධතා සක්‍රිය කළ හැක්කේ එක් විද්‍යුත් තැපැල් ගිණුමක් සඳහා පමණි. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,විද්යුත් තැපැල් ගිණුම් නොමැත +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,විද්‍යුත් තැපැල් ගිණුම සැකසෙන්නේ නැත. සැකසුම> විද්‍යුත් තැපෑල> විද්‍යුත් තැපැල් ගිණුමෙන් කරුණාකර නව විද්‍යුත් තැපැල් ගිණුමක් සාදන්න apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,පැවරුම +DocType: Google Contacts,Last Sync On,අවසාන සමමුහුර්ත කිරීම apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},{0} විසින් ස්වයංක්රීයව පාලනය කිරීමෙන් {1} apps/frappe/frappe/config/website.py,Portal,ද්වාරය apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,ඔබගේ ඊමේල් සඳහා ස්තූතියි @@ -1592,7 +1617,6 @@ DocType: GSuite Settings,GSuite Settings,GSuite සැකසුම් DocType: Integration Request,Remote,දුරස්ථ DocType: File,Thumbnail URL,Thumbnail URL එක apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,බාගත වාර්තාව -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup> පරිශීලක apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},{0} අපනයනය සඳහා අභිමතකරණය:
{1} DocType: GCalendar Account,Calendar Name,කැලැන්ඩරය නම apps/frappe/frappe/templates/emails/new_user.html,Your login id is,ඔබගේ පිවිසුම් අංකය යනු @@ -1642,6 +1666,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},{0} apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,රූප ක්ෂේත්රය වලංගු ක්ෂේත්ර නාමයක් විය යුතුය apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,මෙම පිටුවට පිවිසීමට ඔබට පිවිසිය යුතුය DocType: Assignment Rule,Example: {{ subject }},උදාහරණ: {{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Fieldname {0} සීමා කර ඇත apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},ක්ෂේත්රයේ "කියවීම පමණි" {0} DocType: Social Login Key,Enable Social Login,සමාජ ලොගිනය සක්රීය කරන්න DocType: Workflow,Rules defining transition of state in the workflow.,රැකියා ප්රවාහයේ ප්රාන්තයේ සංක්රමණය නිර්ණය කිරීම. @@ -1662,10 +1687,10 @@ DocType: Website Settings,Route Redirects,මාර්ග යළි හරවා apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ඊමේල් එන ලිපි apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},{0} ලෙස ප්රතිස්ථාපනය කරන ලදි {1} DocType: Assignment Rule,Automatically Assign Documents to Users,පරිශීලකයින්ට ලේඛන ස්වයංක්රීයව ලබා දීම +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,නියමයි තීරුව විවෘත කරන්න apps/frappe/frappe/config/settings.py,Email Templates for common queries.,පොදු විමසුම් සඳහා විද්යුත් සැකිලි. DocType: Letter Head,Letter Head Based On,ලිපි ශීර්ෂය මත පදනම්ව apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,කරුණාකර මෙම කවුළුව වසන්න -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,ගෙවීම සම්පූර්ණයි DocType: Contact,Designation,තනතුර DocType: Webhook,Webhook,වෙබ් කෝක් DocType: Website Route Meta,Meta Tags,මෙටා ටැගයන් @@ -1704,6 +1729,7 @@ DocType: System Settings,Choose authentication method to be used by all users, DocType: Error Snapshot,Parent Error Snapshot,දෙමව්පිය දෝෂය සැණරුව DocType: GCalendar Account,GCalendar Account,GCalendar ගිණුම DocType: Language,Language Name,භාෂා නම +DocType: Workflow Document State,Workflow Action is not created for optional states,විකල්ප තත්වයන් සඳහා කාර්ය ප්‍රවාහ ක්‍රියාව නිර්මාණය නොවේ DocType: Customize Form,Customize Form,ආකෘතිය සකස් කරන්න DocType: DocType,Image Field,රූප ක්ෂේත්ර apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),එකතු කළ {0} ({1}) @@ -1745,6 +1771,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,පරිශීලකයා හිමිකරු නම් මෙම රීතිය අයදුම් කරන්න DocType: About Us Settings,Org History Heading,ඕග ඉතිහාස ශීර්ෂය apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,සේවාදායක දෝෂයකි +DocType: Contact,Google Contacts Description,ගූගල් සම්බන්ධතා විස්තරය apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,සම්මත භූමිකාවන් නැවත නම් කළ නොහැක DocType: Review Level,Review Points,සමාලෝචන ලකුණු apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,නැති පරාමිතිය Kanban Board Name @@ -1762,7 +1789,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,සංවර්ධක ප්රකාරයේ නොවේ! Site_config.json හි සිටුවන්න හෝ 'Custom' DocType කරන්න. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,{0} ලකුණු ලබා ගත්තා DocType: Web Form,Success Message,සාර්ථක පණිවුඩය -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","සංසන්දනය සඳහා,> 5, <10 හෝ = 324 භාවිතා කරන්න. පරාසයන් සඳහා 5:10 (5 සහ 10 අතර අගයන් සඳහා) භාවිතා කරන්න." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","ලුහුඬු පිටුවෙහි, ලැයිස්තුගත කිරීම සඳහා විස්තරය, පේළි කිහිපයක් පමණි. (අක්ෂර 140)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,අවසර පෙන්වන්න DocType: DocType,Restrict To Domain,වසම් සීමා කිරීම @@ -1784,6 +1810,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,මු apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,ප්රමාණය තීරණය කරන්න DocType: Auto Repeat,End Date,අවසාන දිනය DocType: Workflow Transition,Next State,ඊළඟ රාජ්යය +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} ගූගල් සම්බන්ධතා සමමුහුර්ත විය. DocType: System Settings,Is First Startup,මුලින්ම ආරම්භය apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},යාවත්කාලීන කර ඇත {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,මාරු කරන්න @@ -1833,6 +1860,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} දින දර්ශනය apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,දත්ත ආයාත කළ සැකිල්ල DocType: Workflow State,hand-left,අතින් වමට +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,බහු ලැයිස්තු අයිතම තෝරන්න apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,බැකප් විශාලත්වය: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},{0} සමඟ සම්බන්ද DocType: Braintree Settings,Private Key,පෞද්ගලික යතුර @@ -1875,13 +1903,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,උනන්දුව DocType: Bulk Update,Limit,සීමාව DocType: Print Settings,Print taxes with zero amount,ශුන්ය මුදල සමඟ බදු අය කරන්න -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ඊ-තැපැල් ගිණුම සකසා නැත. කරුණාකර නව ඊමේල් ගිණුමක් සාදන්න> ඊ-තැපෑල> ඊ-මේල් ගිණුම DocType: Workflow State,Book,පොත DocType: S3 Backup Settings,Access Key ID,මූලික ID ප්රවේශය DocType: Chat Message,URLs,URL apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,තමන්ගේ නම් සහ වාසගම අනුමාන කිරීම පහසුය. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},වාර්තාව {0} DocType: About Us Settings,Team Members Heading,කණ්ඩායම් සාමාජිකයින් ශීර්ෂය +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,ලැයිස්තු අයිතමය තෝරන්න apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},ලේඛනය {0} විසින් {1} ප්රකාශයට පත් කර ඇත්තේ {2} DocType: Address Template,Address Template,ලිපියේ සැකිල්ල DocType: Workflow State,step-backward,පියවර-පසුගාමිත්වය @@ -1905,6 +1933,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,අපනයන රේගු අවසර apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,නැත: කාර්යය අවසානය DocType: Version,Version,පිටපත +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,ලැයිස්තු අයිතමය විවෘත කරන්න apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,මාස 6 කි DocType: Chat Message,Group,සමූහය apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},ගොනු url සමඟ යම් ගැටළුවක් තිබේ: {0} @@ -1959,6 +1988,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,වසර 1 ය apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} ඔබේ ලකුණු {1} DocType: Workflow State,arrow-down,ඊතලය පහළට DocType: Data Import,Ignore encoding errors,කේතනාංක දෝෂ නොසලකා හරින්න +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,භූ දර්ශනය DocType: Letter Head,Letter Head Name,ලිපියේ ශීර්ෂ නම DocType: Web Form,Client Script,සේවාලාභී පිටපත DocType: Assignment Rule,Higher priority rule will be applied first,පළමුවෙන්ම ඉහළ ප්රමුඛතාවයක් දෙනු ලැබේ @@ -2003,6 +2033,7 @@ DocType: Kanban Board Column,Green,හරිත apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,නව වාර්තා සඳහා අනිවාර්ය ක්ෂේත්ර පමණක් අවශ්ය වේ. ඔබට අවශ්ය නම් අනිවාර්ය තීරු ඉවත් කළ හැකිය. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} ලිපියක් සමග ආරම්භ කල යුතු අතර අවසානයි, අක්ෂර හෝ කෙටි අක්ෂර හෝ සලකුණ පමණක් අඩංගු විය යුතුය." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,ප්‍රාථමික ක්‍රියාව ආරම්භ කරන්න apps/frappe/frappe/core/doctype/user/user.js,Create User Email,පරිශීලක ඊමේල් කරන්න apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,ක්ෂේත්ර ක්ෂේත්රය {0} වලංගු ක්ෂේත්ර නාමයක් විය යුතුය DocType: Auto Email Report,Filter Meta,පෙරහන් මෙටා @@ -2032,6 +2063,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,කාල නියමය ක්ෂේත්ර apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Loading ... DocType: Auto Email Report,Half Yearly,අර්ධ වාර්ෂිකව +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,මගේ පැතිකඩ apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,අවසන් වෙනස් කළ දිනය DocType: Contact,First Name,මුල් නම DocType: Post,Comments,අදහස් @@ -2054,6 +2086,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,අන්තර්ගතය Hash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},ලිපි {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} පැවරුම් {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,නව Google සම්බන්ධතා සමමුහුර්ත කර නැත. DocType: Workflow State,globe,ලෝක ගෝලය apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},{0} සාමාන්ය apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,දෝෂ වාර්තා ලොග් කරන්න @@ -2080,6 +2113,8 @@ DocType: Workflow State,Inverse,ආවර්තිතා DocType: Activity Log,Closed,වසා ඇත DocType: Report,Query,විමසුම DocType: Notification,Days After,දින කිහිපයකට පසු +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,පිටු කෙටිමං +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,ආලේඛ්‍ය චිත්‍රය apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,ඉල්ලීම් කල් ඉකුත් වී ඇත DocType: System Settings,Email Footer Address,ඊමේල් පාදක ලිපිනය apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,බලශක්ති ලක්ෂ්ය යාවත්කාලීන කිරීම @@ -2107,6 +2142,7 @@ For Select, enter list of Options, each on a new line.","සබැඳි සඳ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,මිනිත්තු 1 කට පෙර apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,සක්රීය සැසි නැත apps/frappe/frappe/model/base_document.py,Row,පේළි +DocType: Contact,Middle Name,මැද නම apps/frappe/frappe/public/js/frappe/request.js,Please try again,කරුණාකර නැවත උත්සාහ කරන්න DocType: Dashboard Chart,Chart Options,වගුව විකල්පයන් DocType: Data Migration Run,Push Failed,Push අසාර්ථකයි @@ -2135,6 +2171,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,විශාලත්වය-කුඩා DocType: Comment,Relinked,කල්පනා කළා DocType: Role Permission for Page and Report,Roles HTML,HTML වල භූමිකාවන් +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,යන්න apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,ගැලපීමෙන් පසු වැඩ ප්රවාහය ඇරඹේ. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.",ඔබගේ දත්ත HTML වේ නම් කරුණාකර ටැග් සහිත නිවැරදි කේතය ආදේශ කරන්න. apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,දින දර්ශනය බොහෝ විට අනුමාන කිරීමට පහසුය. @@ -2163,7 +2200,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,වැඩතල අයිකන apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,මෙම ලේඛනය අවලංගු කලේය apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,කාල පරාසය -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ස්ථාපනය> පරිශීලක අවසරය apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} අගය කරන ලදි {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,අගයන් වෙනස් විය apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,නිවේදනයේ දෝෂයක් @@ -2228,6 +2264,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,තොග බෙරි DocType: DocShare,Document Name,ලේඛන නම apps/frappe/frappe/config/customization.py,Add your own translations,ඔබගේම පරිවර්තන එකතු කරන්න +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,ලැයිස්තුව පහළට සංචාලනය කරන්න DocType: S3 Backup Settings,eu-central-1,eu-central-1 DocType: Auto Repeat,Yearly,වාර්ෂිකව apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Rename @@ -2278,6 +2315,7 @@ DocType: Workflow State,plane,ගුවන් යානයක් apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,උඩුගත කළ දෝෂය. පරිපාලකයා අමතන්න. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,වාර්තාව පෙන්වන්න DocType: Auto Repeat,Auto Repeat Schedule,ස්වයං නැවත නැවත උපලේඛන +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Ref බලන්න DocType: Address,Office,කාර්යාල DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} දිනකට පෙර @@ -2311,7 +2349,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required, apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,මගේ සැකසුම් apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,කණ්ඩායම් නාමය හිස් විය නොහැක. DocType: Workflow State,road,මාර්ග -DocType: Website Route Redirect,Source,මූලාශ්රය +DocType: Contact,Source,මූලාශ්රය apps/frappe/frappe/www/third_party_apps.html,Active Sessions,සක්රීය සැසි apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,එක් ආකාරයක් එක් ආකාරයක් විය හැකිය apps/frappe/frappe/public/js/frappe/chat.js,New Chat,නව චැට් @@ -2357,6 +2395,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,පරිශීලකයාගේ පරිශීලක පිටුවෙන් පරිශීලකයින්ට භූමිකාවන් සැකසිය හැකිය. DocType: Website Settings,Include Search in Top Bar,ඉහළ තීරුව තුළ සොයන්න apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[හදිසි විය හැකි]% s සඳහා පුනරාවර්තනය වන විටදී දෝශයක් +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,ගෝලීය කෙටිමං DocType: Help Article,Author,කර්තෘ DocType: Webhook,on_cancel,මත ක්ලික් කරන්න apps/frappe/frappe/client.py,No document found for given filters,ලබා දුන් ෆිල්ටර සඳහා ලේඛනයක් සොයාගත නොහැකි විය @@ -2392,10 +2431,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, පේළි {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","ඔබ නව වාර්තා පොත උඩුගත කර ඇත්නම්, නම් කිරීමේ නාම මාලාව අනිවාර්ය වේ." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,ගුණාංග සංස්කරණය කරන්න -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,{0} විවෘතව ඇති අවස්ථාවක් විවෘත කළ නොහැක +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,{0} විවෘතව ඇති අවස්ථාවක් විවෘත කළ නොහැක DocType: Activity Log,Timeline Name,කාල නියමයන් නම DocType: Comment,Workflow,කාර්ය ප්රවාහය apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,කරුණාකර ෆාපේප් සඳහා සමාජ ආරක්ෂණ යතුරෙහි මූලික තොරතුරු යොමු කරන්න +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,යතුරුපුවරු කෙටිමං DocType: Portal Settings,Custom Menu Items,අභිමත මෙනු අයිතම apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,{0} දිග 1 සිට 1000 දක්වා විය යුතුය apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,සම්බන්ධතාවය අහිමි විය. සමහර ලක්ෂණ වැඩ කරන්නට බැහැ. @@ -2458,6 +2498,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,පේළ DocType: DocType,Setup,පිහිටුවීම apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} සාර්ථකව සාදා ඇත apps/frappe/frappe/www/update-password.html,New Password,නව මුරපදය +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,ක්ෂේත්‍රය තෝරන්න apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,මේ සංවාදය DocType: About Us Settings,Team Members,කණ්ඩායම් සාමාජිකයින් DocType: Blog Settings,Writers Introduction,ලේඛකයින් හැඳින්වීම @@ -2526,13 +2567,12 @@ DocType: Chat Room,Name,නම DocType: Communication,Email Template,ඊමේල් සැකිල්ල DocType: Energy Point Settings,Review Levels,සමාලෝචන මට්ටම DocType: Print Format,Raw Printing,නිල් මුද්රණය -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,එහි නිදසුනක් විවෘත කළ විට {0} විවෘත කළ නොහැක +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,එහි නිදසුනක් විවෘත කළ විට {0} විවෘත කළ නොහැක DocType: DocType,"Make ""name"" searchable in Global Search","ගූගල් සෙවුම්" තුළ "නම" සොයන්න DocType: Data Migration Mapping,Data Migration Mapping,දත්ත සංක්රමණ සිතියම්කරණය DocType: Data Import,Partially Successful,අර්ධ වශයෙන් සාර්ථක විය DocType: Communication,Error,දෝෂයකි apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},{0} සිට {1} පේළියේ {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZ Tray යෙදුමට සම්බන්ධ වීම වැරදියි ...

ඔබට Raw Print පහසුකම භාවිතා කිරීමට QZ Tray යෙදුම ස්ථාපනය කර ක්රියාත්මක වේ.

QZ Tray බාගැනීමට සහ ස්ථාපනය කිරීමට මෙහි ක්ලික් කරන්න .
Raw Printing පිළිබඳ වැඩි විස්තර දැනගැනීම සඳහා මෙහි ක්ලික් කරන්න ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,ඡායාරූප ගන්න apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,ඔබ සමඟ ඇසුරු කරන වසර වළක්වන්න. DocType: Web Form,Allow Incomplete Forms,අසම්පූර්ණ ආකෘතීන්ට ඉඩ දෙන්න @@ -2628,7 +2668,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",නව පිටුවක විවෘත කිරීමට ඉලක්කය = "_blank" තෝරන්න. DocType: Portal Settings,Portal Menu,ද්වාරය මෙනුව DocType: Website Settings,Landing Page,තොපි පිටුව -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,කරුණාකර ලියාපදිංචි වීමට හෝ පිවිසීමට පුරනය වන්න DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","සම්බන්ධීකරණ විකල්පයන්, "විකුණුම් විමසුම්, ආධාරක විමසුම" වැනි යනාදිය, නව රේඛාවක් හෝ කොමාවකින් වෙන් කළ හැක." apps/frappe/frappe/twofactor.py,Verfication Code,වෙස්ටික් කේතය apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} දැනටමත් දායක වන්න @@ -2714,6 +2753,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,දත්ත DocType: Address,Sales User,විකුණුම්කරු apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","ක්ෂේත්ර ගුණාංග වෙනස් කරන්න (සැඟවීමට, කියවීමට පමණක්, අවසරය ආදිය)" DocType: Property Setter,Field Name,ක්ෂේත්ර නාමය +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,පාරිභෝගික DocType: Print Settings,Font Size,අකුරු විශාලත්වය DocType: User,Last Password Reset Date,අවසාන මුරපද යළි පිහිටුවීමේ දිනය DocType: System Settings,Date and Number Format,දිනය සහ අංක ආකෘතිය @@ -2779,6 +2819,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,සමූහ apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,පවත්නා සමග ඒකාබද්ධ කරන්න DocType: Blog Post,Blog Intro,බ්ලොග් ඉන්ට්රෝ apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,නව සඳහන් කිරීම +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,ක්ෂේත්‍රයට පනින්න DocType: Prepared Report,Report Name,නම වාර්තා කරන්න apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,නවතම ලේඛනය ලබා ගැනීමට ප්රබෝධමත් කරන්න. apps/frappe/frappe/core/doctype/communication/communication.js,Close,වසන්න @@ -2788,10 +2829,12 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,සිදුවීම DocType: Social Login Key,Access Token URL,ටෝකන ලිපිනය වෙත ප්රවේශ වන්න apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,කරුණාකර ඔබගේ වෙබ් අඩවි සැකසීමේදී Dropbox ප්රවේශ යතුරක් සකසන්න +DocType: Google Contacts,Google Contacts,ගූගල් සම්බන්ධතා DocType: User,Reset Password Key,මුරපද යතුර නැවත සකසන්න apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,වෙනස් කර ඇත DocType: User,Bio,බයෝ apps/frappe/frappe/limits.py,"To renew, {0}.",අළුත් කිරීම සඳහා {0}. +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,සාර්ථකව සුරකින ලදි DocType: File,Folder,බහාලුම DocType: DocField,Perm Level,පර්මා මට්ටම DocType: Print Settings,Page Settings,පිටු සැකසීම් @@ -2820,6 +2863,7 @@ DocType: Workflow State,remove-sign,ඉවත් කරන්න-ලකුණ DocType: Dashboard Chart,Full,පූර්ණ DocType: DocType,User Cannot Create,පරිශීලක නිර්මාණය කළ නොහැක apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,ඔබ {0} ලක්ෂයක් ලබා ගත්තා +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,සැකසුම> පරිශීලකයා DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","ඔබ මෙය සකසා ඇත්නම්, මෙම අයිතමය තෝරා ගත් මාපියා යටතේ පහතට වැටෙනු ඇත." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,විද්යුත් තැපෑලක් නැත apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,පහත ක්ෂේත්ර අතුරුදහන් වී ඇත: @@ -2833,13 +2877,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,ද DocType: Web Form,Web Form Fields,වෙබ් ආකෘති ක්ෂේත්ර DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,වෙබ් අඩවියේ පරිශීලක සංස්කරණය කළ හැකි ආකෘතිය. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,ස්ථිරව අවලංගු කරන්න {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,ස්ථිරව අවලංගු කරන්න {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,විකල්ප 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,සමස්ථ apps/frappe/frappe/utils/password_strength.py,This is a very common password.,මෙය ඉතා පොදු රහස්පදයක්. DocType: Personal Data Deletion Request,Pending Approval,නො නවතින අනුමැතිය apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,ලේඛනය නිවැරදිව පැවරිය නොහැක apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{0} සඳහා අවසර නොමැත: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,පෙන්වීමට අගයන් නොමැත DocType: Personal Data Download Request,Personal Data Download Request,පෞද්ගලික දත්ත බාගත කිරීමේ ඉල්ලීම apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} මෙම ලේඛනය {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},{0} තෝරන්න @@ -2855,7 +2900,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},මෙම විද්යුත් ලිපිය {0} වෙත යැවූ අතර {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,වලංගු නොවන පිවිසුම් හෝ මුරපදය DocType: Social Login Key,Social Login Key,සමාජ ලොගිනය -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,කරුණාකර සැකසීම්> ඊ-තැපෑල> ඊ-මේල් ගිණුමෙන් පෙරසැකසනුයේ ඉ-තැපැල් ගිණුම සකසන්න apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,පෙරහන් සුරකින ලදි DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","මෙම මුදල් ආකෘතිගත කළ යුත්තේ කෙසේද? නැතහොත්, පද්ධති පෙරනිමි භාවිතා කරනු ඇත" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} ප්රකාශයට පත් කිරීමට {2} @@ -2981,6 +3025,7 @@ DocType: User,Location,ස්ථානය apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,දත්ත නැත DocType: Website Meta Tag,Website Meta Tag,වෙබ් අඩවිය මෙටා ටැග් DocType: Workflow State,film,චිත්රපටයකි +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,ක්ලිප් පුවරුවට පිටපත් කරන ලදි. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} සැකසීම් හමු නොවිනි apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,ලේබලය අනිවාර්ය වේ DocType: Webhook,Webhook Headers,වෙබ් කූකර් ශීර්ෂ @@ -3189,7 +3234,7 @@ DocType: Address,Address Line 1,ලිපින පේළි 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,ලේඛන වර්ගය සඳහා apps/frappe/frappe/model/base_document.py,Data missing in table,වගුවෙහි දත්ත අතුරුදහන් apps/frappe/frappe/utils/bot.py,Could not identify {0},{0} හඳුනාගත නොහැකි විය -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,ඔබ විසින් එය පටවා ඇති පසු මෙම ආකෘතිය වෙනස් කර ඇත +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,ඔබ විසින් එය පටවා ඇති පසු මෙම ආකෘතිය වෙනස් කර ඇත apps/frappe/frappe/www/login.html,Back to Login,නැවත ලොගින් වෙන්න apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,සකසා නැත DocType: Data Migration Mapping,Pull,අදින්න @@ -3257,6 +3302,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,ළමා වගු apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,ඊ-තැපැල් ගිණුම් සැකසුම කරුණාකර ඔබගේ මුරපදය ඇතුලත් කරන්න: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,එක් ඉල්ලීමක දී බොහෝ අය ලියයි. කරුණාකර කුඩා ඉල්ලීම් යවන්න DocType: Social Login Key,Salesforce,විකුණුම් බලකාය +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{0} ආනයනය කිරීම {1} DocType: User,Tile,ටයිල් apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} කාමරය එක් පරිශීලකයෙකුට තිබිය යුතුය. DocType: Email Rule,Is Spam,ස්පෑම් යනු කුමක්ද? @@ -3277,6 +3323,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,Search for anything,ක apps/frappe/frappe/core/doctype/version/version_view.html,Table Field,වගු ක්ෂේත්රය DocType: Data Export,CSV,CSV DocType: DocField,Set Only Once,එක් වරක් පමණි +apps/frappe/frappe/templates/emails/delete_data_confirmation.html,We have received a request for deletion of {0} data associated with: {1},මේ හා සම්බන්ධ {0} දත්ත මකාදැමීම සඳහා අපට ඉල්ලීමක් ලැබී ඇත: {1} apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,This report was generated {0}.,මෙම වාර්තාව ජනනය කළේ {0}. apps/frappe/frappe/desk/form/document_follow.py,Document Follow Notification,ලේඛනය පහත දැක්වේ DocType: Custom Field,Fieldname,ක්ෂේත්ර නාමය @@ -3293,7 +3340,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,ෆෝල්ඩරය ආසන්නව DocType: Data Migration Run,Pull Update,යාවත්කාලීන කරන්න apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},{0} තුල {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

ප්රතිඵල සොයා ගැනීමට නොමැත.

DocType: SMS Settings,Enter url parameter for receiver nos,ග්රාහක අංක සඳහා පරාමිති පරාමිතය ඇතුළත් කරන්න apps/frappe/frappe/utils/jinja.py,Syntax error in template,ආකෘතියේ සින්ටැක්ස් දෝෂයකි apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,කරුණාකර වාර්තා පෙරහන වගුවේ පෙරහන් අගයන් සකසන්න. @@ -3306,6 +3352,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","සමා DocType: System Settings,In Days,දිනවල DocType: Report,Add Total Row,සම්පූර්ණ පේළිය එකතු කරන්න apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,සැසි ආරම්භය අසාර්ථක විය +DocType: Translation,Verified,සත්‍යාපනය DocType: Print Format,Custom HTML Help,අභිමත HTML උදව් DocType: Address,Preferred Billing Address,කැමතිම බිල්පත් ලිපිනය apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,පවරන ලදි @@ -3320,7 +3367,6 @@ DocType: Help Article,Intermediate,අතරමැදි DocType: Module Def,Module Name,මොඩියුලය නම DocType: OAuth Authorization Code,Expiration time,කල්ඉකුත්වීමේ කාලය apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","පෙරනිමි හැඩතලය, පිටු ප්රමාණය, මුද්රණ විලාසය ආදිය." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,ඔබ නිර්මාණය කළ දෙයක් කැමති නැත DocType: System Settings,Session Expiry,සැසි කල්ඉකුත්වීම DocType: DocType,Auto Name,ස්වයං නම apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,ඇමුණුම් තෝරන්න @@ -3348,6 +3394,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,පද්ධති පිටුව DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,සටහන: අසාර්ථක ලෙස බැකප් සඳහා ඊ-තැපෑලෙන් එවනු ලැබේ. DocType: Custom DocPerm,Custom DocPerm,ඩොක්ටර් +DocType: Translation,PR sent,PR යවන ලදි DocType: Tag Doc Category,Doctype to Assign Tags,ටැගයන් පැවරීම සඳහා Doctype DocType: Address,Warehouse,ගබඩාව apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Dropbox සැකසුම @@ -3415,7 +3462,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,ප්රතිචාරයක් එකතු කිරීම සඳහා Ctrl + Enter apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,ක්ෂේත්ර {0} තෝරා ගත නොහැක. DocType: User,Birth Date,උපන්දිනය -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,කණගාටුදායකයි DocType: List View Setting,Disable Count,අක්රිය කරන්න DocType: Contact Us Settings,Email ID,ඊමේල් හැඳුනුම්පත apps/frappe/frappe/utils/password.py,Incorrect User or Password,වැරදි පරිශීලක හෝ මුරපදය @@ -3450,6 +3496,7 @@ DocType: Website Settings,<head> HTML,<හස්තය> HTML DocType: Custom DocPerm,This role update User Permissions for a user,මෙම භූමිකාව පරිශීලකයෙකුට පරිශීලක අවසර යාවත්කාලීන කර ඇත DocType: Website Theme,Theme,තේමාව DocType: Web Form,Show Sidebar,Sidebar පෙන්වන්න +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,ගූගල් සම්බන්ධතා ඒකාබද්ධ කිරීම. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,පෙරනිමි එන ලිපි apps/frappe/frappe/www/login.py,Invalid Login Token,වලංගු නොවන ලොග් ටෝකනයක් apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,"මුලින්ම නම තබන්න, වාර්තා තබා ගන්න." @@ -3477,7 +3524,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,නිවැරදි කරන්න DocType: Top Bar Item,Top Bar Item,ඉහළ තීරු ලිපිය ,Role Permissions Manager,බලපත්ර අවසර කළමනාකරු -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,වැරදි තිබුණා. කරුණාකර මෙය වාර්තා කරන්න. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} වසර (න්) පෙර apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,ගැහැණු DocType: System Settings,OTP Issuer Name,OTP නිකුත් කරන්නාගේ නම apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,කිරීමට එකතු කරන්න @@ -3577,6 +3624,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","භා apps/frappe/frappe/model/document.py,none of,එකක්වත් නැත DocType: Desktop Icon,Page,පිටුව DocType: Workflow State,plus-sign,plus-sign +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,හැඹිලිය ඉවත් කර නැවත පූරණය කරන්න apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,යාවත්කාලීන කළ නොහැක: සාවද්ය / කල් ඉකුත් වූ ලින්ක්. DocType: Kanban Board Column,Yellow,කහ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),විදුලිබල ජාලයක ක්ෂේත්රයක් සඳහා තීරු ගණන (විදුලිබල පද්ධතියේ මුළු තීරු ප්රමාණය 11 ට අඩු විය යුතුය) @@ -3591,6 +3639,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,න DocType: Activity Log,Date,දිනය DocType: Communication,Communication Type,සන්නිවේදන වර්ගය apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,දෙමාපියන් වගුව +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,ලැයිස්තුව ඉහළට සංචාලනය කරන්න DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,සංවර්ධකයාට ගැටළුවක් වාර්තා කිරීම සඳහා පූර්ණ දෝෂ පෙන්වන්න DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3612,7 +3661,6 @@ DocType: Notification Recipient,Email By Role,ඊ-මේල් මගින් apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,කරුණාකර {0} දායකයින්ට එකතු කිරීමට කරුණාකර උත්ශ්රේණි කරන්න apps/frappe/frappe/email/queue.py,This email was sent to {0},මෙම විද්යුත් ලිපිනය {0} DocType: User,Represents a User in the system.,පද්ධතිය තුල පරිශීලකයෙකු නියෝජනය කරයි. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},පිටුව {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,නව ආකෘතිය ආරම්භ කරන්න apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,අදහස දක්වන්න apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} {1} diff --git a/frappe/translations/sk.csv b/frappe/translations/sk.csv index e07d3918f4..3f37df1516 100644 --- a/frappe/translations/sk.csv +++ b/frappe/translations/sk.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Povoliť prechody DocType: DocType,Default Sort Order,Predvolené poradie triedenia apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Zobrazujú sa iba číselné polia zo zostavy +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Stlačením klávesu Alt spustíte ďalšie skratky v ponuke a bočnom paneli DocType: Workflow State,folder-open,Zložka-open DocType: Customize Form,Is Table,Je tabuľka apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Nepodarilo sa otvoriť pripojený súbor. Exportovali ste ho ako CSV? DocType: DocField,No Copy,Žiadna kópia DocType: Custom Field,Default Value,Predvolená hodnota apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Aplikácia Pridať je povinná pre prichádzajúce e-maily +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Synchronizovať kontakty DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Podrobnosti mapovania migrácie údajov apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,nesledovať apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",Tlač PDF cez "Raw Print" ešte nie je podporovaná. Odstráňte mapovanie tlačiarne v časti Nastavenia tlačiarne a skúste to znova. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} a {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Vyskytli sa chyby pri ukladaní filtrov apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Zadajte svoje heslo apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Priečinky Domov a prílohy nie je možné odstrániť +DocType: Email Account,Enable Automatic Linking in Documents,Povoliť automatické prepojenie v dokumentoch DocType: Contact Us Settings,Settings for Contact Us Page,Nastavenia pre Kontaktujte nás DocType: Social Login Key,Social Login Provider,Poskytovateľ sociálneho prihlásenia +DocType: Email Account,"For more information, click here.","Pre viac informácií kliknite sem ." DocType: Transaction Log,Previous Hash,Predchádzajúce hash DocType: Notification,Value Changed,Hodnota bola zmenená DocType: Report,Report Type,Typ hlásenia @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Pravidlo Energy Point apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,Pred aktivovaním sociálneho prihlásenia zadajte ID klienta DocType: Communication,Has Attachment,Má prílohu DocType: User,Email Signature,Podpis e-mailu -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} rokmi ,Addresses And Contacts,Adresy a kontakty apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Tento Kanban Board bude súkromný DocType: Data Migration Run,Current Mapping,Aktuálne mapovanie @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Vyberiete možnosť Sync Option ako ALL, obnoví všetky prečítané aj neprečítané správy zo servera. Môže to tiež spôsobiť duplikáciu komunikácie (e-maily)." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Posledná synchronizácia {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Obsah hlavičky sa nedá zmeniť +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Po odoslaní nie je dovolené zmeniť {0} apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Aplikácia bola aktualizovaná na novú verziu, obnovte túto stránku" DocType: User,User Image,Obrázok používateľa @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Ozna apps/frappe/frappe/public/js/frappe/chat.js,Discard,odhodiť DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Vyberte si obrázok s približnou šírkou 150px s priehľadným pozadím pre dosiahnutie najlepších výsledkov. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,relapsu +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Zvolené hodnoty {0} DocType: Blog Post,Email Sent,Email odoslaný DocType: Communication,Read by Recipient On,Čítať príjemcom Zapnuté DocType: User,Allow user to login only after this hour (0-24),Povoliť používateľovi prihlásiť sa až po tejto hodine (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Modul na export DocType: DocType,Fields,Fields -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Nemáte povolenie na tlač tohto dokumentu +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Nemáte povolenie na tlač tohto dokumentu apps/frappe/frappe/public/js/frappe/model/model.js,Parent,rodič apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Platnosť vašej relácie vypršala. Ak chcete pokračovať, znova sa prihláste." DocType: Assignment Rule,Priority,priorita @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Resetovať OTP Sec DocType: DocType,UPPER CASE,VEĽKÉ PÍSMENÁ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,Nastavte e-mailovú adresu DocType: Communication,Marked As Spam,Označené ako spam +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"E-mailová adresa, ktorej kontakty Google sa majú synchronizovať." apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Importovať odberateľov apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Uložiť filter DocType: Address,Preferred Shipping Address,Preferovaná poštová adresa DocType: GCalendar Account,The name that will appear in Google Calendar,"Názov, ktorý sa zobrazí v Kalendári Google" +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Kliknutím na {0} vygenerujete Refresh Token. DocType: Email Account,Disable SMTP server authentication,Zakázať autentifikáciu servera SMTP DocType: Email Account,Total number of emails to sync in initial sync process ,Celkový počet e-mailov na synchronizáciu v počiatočnom procese synchronizácie DocType: System Settings,Enable Password Policy,Povoliť zásady hesiel @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Vložte kód apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Nie v DocType: Auto Repeat,Start Date,Dátum začiatku apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Nastavte graf +DocType: Website Theme,Theme JSON,Téma JSON apps/frappe/frappe/www/list.py,My Account,Môj účet DocType: DocType,Is Published Field,Je publikované pole DocType: DocField,Set non-standard precision for a Float or Currency field,Nastavte neštandardnú presnosť pre pole Float alebo Currency @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Pridať Reference: {{ reference_doctype }} {{ reference_name }} na odoslanie odkazu na dokument DocType: LDAP Settings,LDAP First Name Field,Pole Meno LDAP apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Predvolené odosielanie a doručená pošta -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Nastavenie> Prispôsobiť formulár apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",Pre aktualizáciu môžete aktualizovať iba selektívne stĺpce. apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',Predvolené pre pole „Kontrola“ musí byť „0“ alebo „1“ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Zdieľajte tento dokument s @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Domény HTML DocType: Blog Settings,Blog Settings,Nastavenia blogu apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Meno DocType by malo začínať písmenom a môže sa skladať iba z písmen, číslic, medzier a podčiarkovníkov" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Nastavenie> Povolenia používateľa DocType: Communication,Integrations can use this field to set email delivery status,Integrácia môže použiť toto pole na nastavenie stavu doručenia e-mailov apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Stripe nastavenia platobnej brány DocType: Print Settings,Fonts,fonty DocType: Notification,Channel,channel DocType: Communication,Opened,otvoril DocType: Workflow Transition,Conditions,podmienky +apps/frappe/frappe/config/website.py,A user who posts blogs.,"Používateľ, ktorý uverejňuje blogy." apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Nemáte účet? Prihlásiť Se apps/frappe/frappe/utils/file_manager.py,Added {0},Pridané {0} DocType: Newsletter,Create and Send Newsletters,Vytvárajte a posielajte bulletiny DocType: Website Settings,Footer Items,Položky päty +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Nastavte predvolený e-mailový účet z ponuky Nastavenie> E-mail> E-mailový účet DocType: Website Slideshow Item,Website Slideshow Item,Webová stránka Slideshow Item apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Zaregistrujte aplikáciu OAuth Client DocType: Error Snapshot,Frames,rámy @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Úroveň 0 je pre povolenia na úrovni dokumentu, vyššie úrovne pre povolenia na úrovni poľa." DocType: Address,City/Town,Mesto / obec DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Tým sa obnoví aktuálna téma, naozaj chcete pokračovať?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Povinné polia povinné v {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Chyba pri pripájaní k e-mailovému účtu {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Pri vytváraní opakovaného výskytu sa vyskytla chyba @@ -528,7 +537,7 @@ DocType: Event,Event Category,Kategória udalosti apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Stĺpce založené na apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Upraviť nadpis DocType: Communication,Received,obdržané -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Nemáte povolenie na prístup na túto stránku. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Nemáte povolenie na prístup na túto stránku. DocType: User Social Login,User Social Login,Prihlásenie používateľa apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,"Napíšte súbor Python do toho istého priečinka, kde je uložený a vrátite stĺpec a výsledok." DocType: Contact,Purchase Manager,Správca nákupov @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konf apps/frappe/frappe/utils/data.py,Operator must be one of {0},Operátor musí byť jeden z {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Ak vlastník DocType: Data Migration Run,Trigger Name,Názov spúšťača -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Napíšte názvy a úvody do svojho blogu. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Odstrániť pole apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Zbaliť všetko apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Farba pozadia @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,bar DocType: SMS Settings,Enter url parameter for message,Zadajte parameter url pre správu apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nový vlastný formát tlače apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} už existuje +DocType: Workflow Document State,Is Optional State,Je nepovinný štát DocType: Address,Purchase User,Nákup používateľa DocType: Data Migration Run,Insert,insert DocType: Web Form,Route to Success Link,Trasa k odkazu úspechu @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Meno po DocType: File,Is Home Folder,Je domovský priečinok apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,typ: DocType: Post,Is Pinned,Je pripnutý -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Žiadne povolenie na '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Žiadne povolenie na '{0}' {1} DocType: Patch Log,Patch Log,Patch Log DocType: Print Format,Print Format Builder,Nástroj na vytváranie formátu tlače 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","Ak je táto možnosť povolená, všetci používatelia sa môžu prihlásiť z ľubovoľnej adresy IP pomocou funkcie Two Factor Auth. Toto môže byť tiež nastavené len pre konkrétneho používateľa (používateľov) v Užívateľskej stránke" apps/frappe/frappe/utils/data.py,only.,Iba. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,Podmienka '{0}' je neplatná DocType: Auto Email Report,Day of Week,Deň v týždni +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Povoliť rozhranie Google API v Nastaveniach Google. DocType: DocField,Text Editor,Textový editor apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,rez apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Vyhľadajte alebo zadajte príkaz @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,Počet záloh DB nemôže byť menší ako 1 DocType: Workflow State,ban-circle,ban-circle DocType: Data Export,Excel,vynikať +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Hlavičky, strúhanky a meta tagy" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,E-mailová adresa podpory nie je špecifikovaná DocType: Comment,Published,Uverejnený DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.",Poznámka: Pre najlepšie výsledky musia byť obrázky rovnakej veľkosti a šírky ako výška. @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Posledná udalosť plánovača apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Report všetkých akcií dokumentu DocType: Website Sidebar Item,Website Sidebar Item,Položka bočného panela stránky apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Robiť +DocType: Google Settings,Google Settings,Nastavenia Google apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Vyberte svoju krajinu, časové pásmo a menu" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Tu zadajte statické parametre url (napr. Sender = ERPNext, username = ERPNext, heslo = 1234 atď.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Žiadny e-mailový účet @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token ,Setup Wizard,Sprievodca nastavením apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Prepnúť graf +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,synchronizácia DocType: Data Migration Run,Current Mapping Action,Aktuálna akcia mapovania DocType: Email Account,Initial Sync Count,Počiatočná synchronizácia apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Nastavenia pre Kontaktujte nás. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Typ formátu tlače apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Pre tieto kritériá nie sú nastavené žiadne povolenia. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Rozbaliť všetko +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nenašla sa žiadna predvolená šablóna adresy. Vytvorte novú z ponuky Nastavenie> Tlač a branding> Šablóna adresy. DocType: Tag Doc Category,Tag Doc Category,Kategória Kategória dokumentu DocType: Data Import,Generated File,Generovaný súbor apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Poznámky @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Pole Timeline musí byť Link alebo Dynamic Link DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Oznámenia a hromadné maily budú odoslané z tohto odchádzajúceho servera. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Toto je spoločné heslo pre top-100. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Trvalo odoslať {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Trvalo odoslať {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} neexistuje, vyberte nový cieľ, ktorý chcete zlúčiť" DocType: Energy Point Rule,Multiplier Field,Pole multiplikátora DocType: Workflow,Workflow State Field,Pole stavu pracovného toku @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} ocenilo vašu prácu na {1} s {2} bodmi DocType: Auto Email Report,Zero means send records updated at anytime,Zero znamená kedykoľvek odoslať aktualizované záznamy apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Hodnota nemôže byť zmenená pre {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Nastavenia rozhrania Google API. DocType: System Settings,Force User to Reset Password,Vynútiť obnovenie hesla používateľom apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Správy nástroja Report Builder spravuje priamo tvorca prehľadov. Nič na práci. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Upraviť filter @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,pre DocType: S3 Backup Settings,eu-north-1,eu-sever-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Iba jedno pravidlo je povolené s rovnakou úlohou, úrovňou a {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Nie je dovolené aktualizovať tento dokument webového formulára -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Dosiahol sa maximálny limit prílohy pre tento záznam. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Dosiahol sa maximálny limit prílohy pre tento záznam. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,"Uistite sa, že referenčné komunikačné dokumenty nie sú kruhovo prepojené." DocType: DocField,Allow in Quick Entry,Povoliť v rýchlom zadaní DocType: Error Snapshot,Locals,miestna @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Typ výnimky apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},"Nedá sa odstrániť ani zrušiť, pretože {0} {1} je prepojené s {2} {3} {4}" apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,Tajomstvo OTP môže resetovať iba administrátor. -DocType: Web Form Field,Page Break,Zlom strany DocType: Website Script,Website Script,Skript webových stránok DocType: Integration Request,Subscription Notification,Oznámenie o prihlásení na odber DocType: DocType,Quick Entry,Rýchly vstup @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,Nastaviť vlastnosť po upozornen apps/frappe/frappe/__init__.py,Thank you,Ďakujem apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks pre vnútornú integráciu apps/frappe/frappe/config/settings.py,Import Data,Importovať údaje +DocType: Translation,Contributed Translation Doctype Name,Prispievaný preklad Doctype Name DocType: Social Login Key,Office 365,Úrad 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID DocType: Review Level,Review Level,Úroveň kontroly @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Úspešne apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Zoznam apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,oceniť -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Nové {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Je primárny kontakt DocType: Print Format,Raw Commands,Surové príkazy apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Štýly pre tlačové formáty @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Chyby v udalostiac apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Nájsť {0} v {1} DocType: Email Account,Use SSL,Použite protokol SSL DocType: DocField,In Standard Filter,V štandardnom filtri +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Na synchronizáciu nie sú prítomné žiadne kontakty Google. DocType: Data Migration Run,Total Pages,Celkový počet stránok apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,"{0}: Pole '{1}' nie je možné nastaviť ako jedinečné, pretože má jedinečné hodnoty" DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Ak je táto možnosť povolená, používatelia budú upozornení pri každom prihlásení. Ak to nie je povolené, používatelia budú upozornení iba raz." @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,automatizácia apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Rozbalenie súborov ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Hľadať '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Niečo sa pokazilo -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Uložte si ho pred pripojením. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,Uložte si ho pred pripojením. DocType: Version,Table HTML,Tabuľka HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,húb DocType: Page,Standard,štandardné @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Žiadne vý apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,Počet odstránených záznamov: {0} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,Pri generovaní prístupového tokenu schránky sa vyskytla chyba. Ďalšie podrobnosti nájdete v protokole chýb. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Potomkovia -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nenašla sa žiadna predvolená šablóna adresy. Vytvorte novú z ponuky Nastavenie> Tlač a branding> Šablóna adresy. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Kontakty Google boli nakonfigurované. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Skryť detaily apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Štýly písma apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Platnosť vášho odberu vyprší dňa {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Overovanie zlyhalo pri prijímaní e-mailov z e-mailového účtu {0}. Správa zo servera: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Štatistiky založené na výkonnosti minulého týždňa (od {0} do {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,"Automatické prepojenie je možné aktivovať iba v prípade, ak je aktivovaná možnosť Prichádzajúce." DocType: Website Settings,Title Prefix,Predpona názvu apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,"Aplikácie na overovanie, ktoré môžete použiť, sú:" DocType: Bulk Update,Max 500 records at a time,Maximálne 500 záznamov naraz @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,Filtre prehľadov apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Vyberte stĺpce DocType: Event,Participants,účastníci DocType: Auto Repeat,Amended From,Zmenené od -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Vaše informácie boli odoslané +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Vaše informácie boli odoslané DocType: Help Category,Help Category,Kategória Pomoc apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 mesiac apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,"Vyberte existujúci formát, ktorý chcete upraviť alebo spustiť nový formát." @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Pole na trať DocType: User,Generate Keys,Generovanie kľúčov DocType: Comment,Unshared,nerozdelený -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,uložený +DocType: Translation,Saved,uložený DocType: OAuth Client,OAuth Client,OAuth Client DocType: System Settings,Disable Standard Email Footer,Vypnúť štandardnú pätu e-mailu apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Formát tlače {0} je zakázaný @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Posledná akt DocType: Data Import,Action,akčné apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Vyžaduje sa klientsky kľúč DocType: Chat Profile,Notifications,oznámenia +DocType: Translation,Contributed,Prispel DocType: System Settings,mm/dd/yyyy,mm / dd / rrrr DocType: Report,Custom Report,Vlastná správa DocType: Workflow State,info-sign,info-sign @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Kontakt DocType: LDAP Settings,LDAP Username Field,Pole Meno používateľa LDAP apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Pole {0} nie je možné nastaviť ako jedinečné v {1}, pretože existujú nešpecifické existujúce hodnoty" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Nastavenie> Prispôsobiť formulár DocType: User,Social Logins,Sociálne prihlásenia DocType: Workflow State,Trash,Smeti DocType: Stripe Settings,Secret Key,Tajný kľúč @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,Názov Pole apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Nepodarilo sa pripojiť k odchádzajúcemu e-mailovému serveru DocType: File,File URL,Adresa URL súboru DocType: Help Article,Likes,záľuby +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Integrácia kontaktov Google je zakázaná. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,"Aby ste mohli pristupovať k zálohám, musíte byť prihlásení a mať úlohu Správcu systému." apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Prvá úroveň DocType: Blogger,Short Name,Krátky názov @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Import Zip DocType: Contact,Gender,rod DocType: Workflow State,thumbs-down,palec dole -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Fronta by mala byť jedna z {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Nie je možné nastaviť upozornenie na Typ dokumentu {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Pridanie správcu systému k tomuto používateľovi, pretože musí byť aspoň jeden správca systému" apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Uvítací e-mail bol odoslaný DocType: Transaction Log,Chaining Hash,Reťazenie Hash DocType: Contact,Maintenance Manager,Správca údržby +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Na porovnanie použite> 5, <10 alebo = 324. Pre rozsahy použite 5:10 (pre hodnoty medzi 5 a 10)." apps/frappe/frappe/utils/bot.py,show,šou apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Zdieľajte adresu URL apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Nepodporovaný formát súboru @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,oznámenia DocType: Data Import,Show only errors,Zobraziť iba chyby DocType: Energy Point Log,Review,Preskúmanie apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Riadky boli odstránené -DocType: GSuite Settings,Google Credentials,Poverenia Google +DocType: Google Settings,Google Credentials,Poverenia Google apps/frappe/frappe/www/login.html,Or login with,Alebo sa prihláste apps/frappe/frappe/model/document.py,Record does not exist,Záznam neexistuje apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Nový názov prehľadu @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,zoznam DocType: Workflow State,th-large,th-veľké apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,"{0}: Nie je možné nastaviť priradenie priradenia, ak nie je možné odoslať" apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Neprepojené k žiadnemu záznamu +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Chyba pri pripojení k aplikácii QZ Tray ...

Aby ste mohli používať funkciu Raw Print, musíte mať nainštalovanú a spustenú aplikáciu QZ Tray.

Kliknite tu pre stiahnutie a inštaláciu QZ Tray .
Ak sa chcete dozvedieť viac o Raw Printing, kliknite sem ." DocType: Chat Message,Content,obsah DocType: Workflow Transition,Allow Self Approval,Povoliť vlastné schválenie apps/frappe/frappe/www/qrcode.py,Page has expired!,Platnosť stránky vypršala! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,hand-right DocType: Website Settings,Banner is above the Top Menu Bar.,Banner je nad lištou Top Menu. apps/frappe/frappe/www/update-password.html,Invalid Password,nesprávne heslo apps/frappe/frappe/utils/data.py,1 month ago,Pred 1 mesiacom +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Povoliť prístup služby Kontakty Google DocType: OAuth Client,App Client ID,ID klienta aplikácie DocType: DocField,Currency,mena DocType: Website Settings,Banner,prápor @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Cieľ DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Ak Role nemá prístup na úrovni 0, vyššie úrovne sú bezvýznamné." DocType: ToDo,Reference Type,Referenčný typ -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Povolenie DocType, DocType. Buď opatrný!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Povolenie DocType, DocType. Buď opatrný!" DocType: Domain Settings,Domain Settings,Nastavenia domény DocType: Auto Email Report,Dynamic Report Filters,Filtre dynamických prehľadov DocType: Energy Point Log,Appreciation,ocenenie @@ -1466,6 +1487,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,us-západ-2 DocType: DocType,Is Single,Je sám apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Vytvorte nový formát +DocType: Google Contacts,Authorize Google Contacts Access,Povoliť prístup služby Kontakty Google DocType: S3 Backup Settings,Endpoint URL,URL koncového bodu DocType: Social Login Key,Google,Google DocType: Contact,Department,oddelenie @@ -1480,7 +1502,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Priradiť DocType: List Filter,List Filter,Filter zoznamu DocType: Dashboard Chart Link,Chart,graf apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Nie je možné odstrániť -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Potvrďte tento dokument +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Potvrďte tento dokument apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} už existuje. Vyberte iný názov apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,V tomto formulári máte neuložené zmeny. Pred pokračovaním uložte. apps/frappe/frappe/model/document.py,Action Failed,Akcia zlyhala @@ -1562,6 +1584,7 @@ DocType: DocField,Display,zobraziť apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Odpovedať všetkým DocType: Calendar View,Subject Field,Predmetové pole apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Ukončenie relácie musí byť vo formáte {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},Uplatňovanie: {0} DocType: Workflow State,zoom-in,priblížiť apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Nepodarilo sa pripojiť k serveru apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Dátum {0} musí byť vo formáte: {1} @@ -1573,8 +1596,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Na tlačidle sa zobrazí ikona DocType: Role Permission for Page and Report,Set Role For,Nastavte Role For +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Automatické prepojenie je možné aktivovať len pre jeden e-mailový účet. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Nie sú priradené žiadne e-mailové kontá +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mailový účet nie je nastavený. Vytvorte nový e-mailový účet z ponuky Nastavenie> E-mail> E-mailový účet apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,prideľovanie +DocType: Google Contacts,Last Sync On,Posledná synchronizácia zapnutá apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},získané {0} prostredníctvom automatického pravidla {1} apps/frappe/frappe/config/website.py,Portal,portál apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Ďakujem za Váš e-mail @@ -1595,7 +1621,6 @@ DocType: GSuite Settings,GSuite Settings,Nastavenia GSuite DocType: Integration Request,Remote,diaľkový DocType: File,Thumbnail URL,Adresa URL miniatúry apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Download Report -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Nastavenie> Používateľ apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Prispôsobenia pre {0} sa exportovali do:
{1} DocType: GCalendar Account,Calendar Name,Názov kalendára apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Vaše prihlasovacie ID je @@ -1645,6 +1670,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Prejs apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Pole obrázku musí byť platné apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,"Ak chcete získať prístup na túto stránku, musíte byť prihlásený" DocType: Assignment Rule,Example: {{ subject }},Príklad: {{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Názov poľa {0} je obmedzený apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Pre pole {0} nemôžete zrušiť nastavenie položky Iba na čítanie DocType: Social Login Key,Enable Social Login,Povoliť sociálne prihlásenie DocType: Workflow,Rules defining transition of state in the workflow.,Pravidlá definujúce prechod stavu v pracovnom toku. @@ -1665,10 +1691,10 @@ DocType: Website Settings,Route Redirects,Presmerovania trasy apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,E-mailová schránka apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},obnovené {0} ako {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Automaticky priradiť dokumenty používateľom +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Otvorte aplikáciu Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,E-mailové šablóny pre bežné dotazy. DocType: Letter Head,Letter Head Based On,Letter Head Based On apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Zatvorte toto okno -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Platba bola dokončená DocType: Contact,Designation,označenie DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Meta Tagy @@ -1707,6 +1733,7 @@ DocType: System Settings,Choose authentication method to be used by all users,"V DocType: Error Snapshot,Parent Error Snapshot,Snímka rodičovskej chyby DocType: GCalendar Account,GCalendar Account,Účet GCalendar DocType: Language,Language Name,Názov jazyka +DocType: Workflow Document State,Workflow Action is not created for optional states,Workflow Action nie je vytvorený pre voliteľné stavy DocType: Customize Form,Customize Form,Prispôsobiť formulár DocType: DocType,Image Field,Obrázok poľa apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Pridané {0} ({1}) @@ -1748,6 +1775,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Použite toto pravidlo, ak je Používateľ vlastníkom" DocType: About Us Settings,Org History Heading,Nadpis Org História apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Chyba servera +DocType: Contact,Google Contacts Description,Popis kontaktov Google apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Štandardné roly nie je možné premenovať DocType: Review Level,Review Points,Body kontroly apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Chýba parameter Kanban Board Name @@ -1765,7 +1793,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Nie je v režime vývojára! Nastavte v site_config.json alebo vytvorte 'Custom' DocType. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,získal {0} bodov DocType: Web Form,Success Message,Správa o úspechu -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Na porovnanie použite> 5, <10 alebo = 324. Pre rozsahy použite 5:10 (pre hodnoty medzi 5 a 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Popis pre výpis stránky, v jednoduchom texte, len pár riadkov. (max. 140 znakov)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Zobraziť povolenia DocType: DocType,Restrict To Domain,Obmedziť na doménu @@ -1787,6 +1814,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Nie pr apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Nastavte množstvo DocType: Auto Repeat,End Date,Dátum ukončenia DocType: Workflow Transition,Next State,Ďalší štát +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Kontakty Google sa synchronizovali. DocType: System Settings,Is First Startup,Je prvé spustenie apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},aktualizované na {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Presunúť do @@ -1836,6 +1864,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Kalendár apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Šablóna importu údajov DocType: Workflow State,hand-left,hand-left +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Vyberte viacero položiek zoznamu apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Veľkosť zálohy: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Prepojené s {0} DocType: Braintree Settings,Private Key,Súkromný kľúč @@ -1878,13 +1907,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,záujem DocType: Bulk Update,Limit,limit DocType: Print Settings,Print taxes with zero amount,Tlač daní s nulovou sumou -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mailový účet nie je nastavený. Vytvorte nový e-mailový účet z ponuky Nastavenie> E-mail> E-mailový účet DocType: Workflow State,Book,kniha DocType: S3 Backup Settings,Access Key ID,ID prístupového kľúča DocType: Chat Message,URLs,URL apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Mená a priezviská sa dajú ľahko odhadnúť. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Nahlásiť {0} DocType: About Us Settings,Team Members Heading,Nadpis členov tímu +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Vyberte položku zoznamu apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Dokument {0} bol nastavený na stav {1} podľa {2} DocType: Address Template,Address Template,Šablóna adresy DocType: Workflow State,step-backward,krok vzad @@ -1908,6 +1937,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Exportovať vlastné povolenia apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Žiadne: Koniec pracovného toku DocType: Version,Version,verzia +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Otvoriť položku zoznamu apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 mesiacov DocType: Chat Message,Group,skupina apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Vyskytol sa problém s url súboru: {0} @@ -1963,6 +1993,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 rok apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} vrátilo vaše body na {1} DocType: Workflow State,arrow-down,šípka dole DocType: Data Import,Ignore encoding errors,Ignorovať chyby kódovania +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,krajina DocType: Letter Head,Letter Head Name,Názov hlavičky písmen DocType: Web Form,Client Script,Klientský skript DocType: Assignment Rule,Higher priority rule will be applied first,Najprv sa uplatní pravidlo vyššej priority @@ -2007,6 +2038,7 @@ DocType: Kanban Board Column,Green,zelená apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Pre nové záznamy sú potrebné len povinné polia. Nepovinné stĺpce môžete odstrániť, ak si želáte." apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} musí začínať a končiť písmenom a môže obsahovať iba písmená, pomlčku alebo podčiarkovník." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Spustite primárnu akciu apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Vytvoriť e-mail používateľa apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Pole zoradenia {0} musí byť platné meno poľa DocType: Auto Email Report,Filter Meta,Filter Meta @@ -2036,6 +2068,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Pole časovej osi apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Načítava... DocType: Auto Email Report,Half Yearly,Polročne +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Môj profil apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Dátum poslednej zmeny DocType: Contact,First Name,Krstné meno DocType: Post,Comments,Komentáre @@ -2058,6 +2091,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Obsah Hash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Príspevky od používateľa {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} pridelené {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Nie sú synchronizované žiadne nové kontakty Google. DocType: Workflow State,globe,zemegule apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Priemer z {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Vymazať protokoly chýb @@ -2084,6 +2118,8 @@ DocType: Workflow State,Inverse,obrátený DocType: Activity Log,Closed,Zatvorené DocType: Report,Query,Dopyt DocType: Notification,Days After,Dni po +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Skratky stránky +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,portrét apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Požiadavka vypršala DocType: System Settings,Email Footer Address,Adresa päty e-mailu apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Aktualizácia energetického bodu @@ -2111,6 +2147,7 @@ For Select, enter list of Options, each on a new line.","Pre prepojenie zadajte apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,Pred 1 minútou apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Žiadne aktívne relácie apps/frappe/frappe/model/base_document.py,Row,riadok +DocType: Contact,Middle Name,Stredné meno apps/frappe/frappe/public/js/frappe/request.js,Please try again,Prosím skúste znova DocType: Dashboard Chart,Chart Options,Možnosti grafu DocType: Data Migration Run,Push Failed,Push Failed @@ -2139,6 +2176,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,veľkosť-small DocType: Comment,Relinked,Relinked DocType: Role Permission for Page and Report,Roles HTML,Roly HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,ísť apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Po uložení sa spustí pracovný postup. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Ak sú vaše údaje v kóde HTML, skopírujte, prosím, presný kód HTML so značkami." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Termíny sú často ľahko odhadnúť. @@ -2167,7 +2205,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Ikona na ploche apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,zrušil tento dokument apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Rozsah dátumov -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Nastavenie> Povolenia používateľa apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} ocenené {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Hodnoty boli zmenené apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Chyba v oznámení @@ -2232,6 +2269,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Hromadné vymazanie DocType: DocShare,Document Name,Názov dokumentu apps/frappe/frappe/config/customization.py,Add your own translations,Pridajte vlastné preklady +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Navigujte zoznam nadol DocType: S3 Backup Settings,eu-central-1,eu-stredná-1 DocType: Auto Repeat,Yearly,ročne apps/frappe/frappe/public/js/frappe/model/model.js,Rename,premenovať @@ -2282,6 +2320,7 @@ DocType: Workflow State,plane,lietadlo apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Vnorená nastavená chyba. Obráťte sa na administrátora. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Zobraziť prehľad DocType: Auto Repeat,Auto Repeat Schedule,Automatické opakovanie plánu +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Zobraziť Ref DocType: Address,Office,Kancelária DocType: LDAP Settings,StartTLS,STARTTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} dní @@ -2315,7 +2354,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Vy apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Moje nastavenia apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Názov skupiny nemôže byť prázdny. DocType: Workflow State,road,cestné -DocType: Website Route Redirect,Source,zdroj +DocType: Contact,Source,zdroj apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Aktívne relácie apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Vo formulári môže byť len jedno zloženie apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Nový chat @@ -2337,6 +2376,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Zadajte Autorizačnú adresu URL DocType: Email Account,Send Notification to,Odoslať upozornenie na apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Nastavenia záloh Dropbox +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,Niečo sa pokazilo počas generovania tokenov. Kliknutím na {0} vygenerujete nový. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Odstrániť všetky prispôsobenia? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Upraviť môže iba administrátor DocType: Auto Repeat,Reference Document,Referenčný dokument @@ -2361,6 +2401,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Roly môžu byť nastavené pre používateľov z ich stránky používateľa. DocType: Website Settings,Include Search in Top Bar,Zahrnúť vyhľadávanie v hornej lište apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Urgent] Chyba pri vytváraní opakujúcich sa% s pre% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globálne skratky DocType: Help Article,Author,autor DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Pre dané filtre nebol nájdený žiadny dokument @@ -2396,10 +2437,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, riadok {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Ak nahrávate nové záznamy, „Naming Series“ sa stane povinným, ak je k dispozícii." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Upraviť vlastnosti -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,"Nie je možné otvoriť inštanciu, keď je otvorená hodnota {0}" +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,"Nie je možné otvoriť inštanciu, keď je otvorená hodnota {0}" DocType: Activity Log,Timeline Name,Názov časovej osi DocType: Comment,Workflow,workflow apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Nastavte Základnú adresu URL v poli Sociálne prihlásenie pre službu Frappe +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Klávesové skratky DocType: Portal Settings,Custom Menu Items,Položky vlastnej ponuky apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,Dĺžka {0} by mala byť medzi 1 a 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Prerušené spojenie. Niektoré funkcie nemusia fungovať. @@ -2462,6 +2504,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Pridané ri DocType: DocType,Setup,Nastaviť apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} úspešne vytvorené apps/frappe/frappe/www/update-password.html,New Password,Nové heslo +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Vyberte pole apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Nechajte túto konverzáciu DocType: About Us Settings,Team Members,Členovia tímu DocType: Blog Settings,Writers Introduction,Spisovatelia Úvod @@ -2531,13 +2574,12 @@ DocType: Chat Room,Name,názov DocType: Communication,Email Template,Šablóna e-mailu DocType: Energy Point Settings,Review Levels,Úrovne kontroly DocType: Print Format,Raw Printing,Surová tlač -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,"{0} sa nedá otvoriť, keď je otvorená jeho inštancia" +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,"{0} sa nedá otvoriť, keď je otvorená jeho inštancia" DocType: DocType,"Make ""name"" searchable in Global Search",V prehliadači Global Search môžete vyhľadávať pomocou názvu DocType: Data Migration Mapping,Data Migration Mapping,Mapovanie migrácie dát DocType: Data Import,Partially Successful,Čiastočne úspešné DocType: Communication,Error,Chyba apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Typ poľa nie je možné zmeniť z {0} na {1} v riadku {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Chyba pri pripojení k aplikácii QZ Tray ...

Aby ste mohli používať funkciu Raw Print, musíte mať nainštalovanú a spustenú aplikáciu QZ Tray.

Kliknite tu pre stiahnutie a inštaláciu QZ Tray .
Ak sa chcete dozvedieť viac o Raw Printing, kliknite sem ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Odfoť apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,"Vyhnite sa rokom, ktoré sú s vami spojené." DocType: Web Form,Allow Incomplete Forms,Povoliť nedokončené formuláre @@ -2633,7 +2675,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Ak chcete otvoriť novú stránku, vyberte cieľ = "_blank"." DocType: Portal Settings,Portal Menu,Menu Portal DocType: Website Settings,Landing Page,Stránka pristátia -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,"Ak chcete začať, zaregistrujte sa alebo sa prihláste" DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Možnosti kontaktu, ako napríklad „Dopyt po predaji, podporný dotaz“ atď., Každý na novom riadku alebo oddelený čiarkami." apps/frappe/frappe/twofactor.py,Verfication Code,Verifikačný kód apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} sa už odhlásilo @@ -2719,6 +2760,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Mapovanie plán DocType: Address,Sales User,Predajný užívateľ apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Zmeniť vlastnosti poľa (skryť, len na čítanie, povolenie atď.)" DocType: Property Setter,Field Name,Názov poľa +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,zákazník DocType: Print Settings,Font Size,Veľkosť písma DocType: User,Last Password Reset Date,Dátum posledného obnovenia hesla DocType: System Settings,Date and Number Format,Formát dátumu a čísla @@ -2784,6 +2826,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Uzol skupiny apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Zlúčenie s existujúcimi DocType: Blog Post,Blog Intro,Blog Úvod apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nová zmienka +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Prejsť na pole DocType: Prepared Report,Report Name,Názov prehľadu apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Ak chcete získať najnovší dokument, obnovte ho." apps/frappe/frappe/core/doctype/communication/communication.js,Close,Zavrieť @@ -2793,10 +2836,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,udalosť DocType: Social Login Key,Access Token URL,Prístup k adrese URL tokenu apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Nastavte prístupové kľúče Dropbox vo vašej konfigurácii stránok +DocType: Google Contacts,Google Contacts,Kontakty Google DocType: User,Reset Password Key,Obnoviť heslo apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Upravené podľa DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.","Ak chcete obnoviť, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Uložené úspešne +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,"Pošlite e-mail na adresu {0}, aby ste ju mohli prepojiť." DocType: File,Folder,zložka DocType: DocField,Perm Level,Perm Level DocType: Print Settings,Page Settings,Nastavenia stránky @@ -2826,6 +2872,7 @@ DocType: Workflow State,remove-sign,remove-znamenia DocType: Dashboard Chart,Full,plne DocType: DocType,User Cannot Create,Používateľ sa nedá vytvoriť apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Získali ste bod {0} +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Nastavenie> Používateľ DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Ak nastavíte túto položku, táto položka sa zobrazí v rozbaľovacej ponuke pod vybratým rodičom." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Žiadne e-maily apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Chýbajú nasledujúce polia: @@ -2839,13 +2886,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Zob DocType: Web Form,Web Form Fields,Polia webového formulára DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Formulár upraviteľný používateľom na webových stránkach. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Trvale zrušiť {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Trvale zrušiť {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Možnosť 3. \ T apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,súčty apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Toto je veľmi bežné heslo. DocType: Personal Data Deletion Request,Pending Approval,Čaká na schválenie apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Dokument sa nedal správne priradiť apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Nie je povolené pre {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Žiadne hodnoty na zobrazenie DocType: Personal Data Download Request,Personal Data Download Request,Požiadavka na prevzatie osobných údajov apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} zdieľa tento dokument s {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Vyberte možnosť {0} @@ -2861,7 +2909,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Tento e-mail bol odoslaný na číslo {0} a skopírovaný na číslo {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,Nesprávne používateľské meno alebo heslo DocType: Social Login Key,Social Login Key,Sociálny prihlasovací kľúč -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Nastavte predvolený e-mailový účet z ponuky Nastavenie> E-mail> E-mailový účet apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filtre boli uložené DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Ako by sa táto mena mala formátovať? Ak nie je nastavené, použije predvolené nastavenia systému" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} je nastavené na {2} @@ -2987,6 +3034,7 @@ DocType: User,Location,umiestnenia apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Žiadne dáta DocType: Website Meta Tag,Website Meta Tag,Webová stránka Meta Tag DocType: Workflow State,film,film +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Skopírované do schránky. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Nastavenia neboli nájdené apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Označenie je povinné DocType: Webhook,Webhook Headers,Záhlavia Webhook @@ -3195,7 +3243,7 @@ DocType: Address,Address Line 1,Riadok adresy 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Pre Typ dokumentu apps/frappe/frappe/model/base_document.py,Data missing in table,Údaje chýbajú v tabuľke apps/frappe/frappe/utils/bot.py,Could not identify {0},Nepodarilo sa identifikovať {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Tento formulár bol upravený po jeho načítaní +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Tento formulár bol upravený po jeho načítaní apps/frappe/frappe/www/login.html,Back to Login,Späť na Prihlásenie apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Nie je nastavené DocType: Data Migration Mapping,Pull,Ťahať @@ -3263,6 +3311,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Mapovanie detskej tab apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Nastavenie e-mailového účtu zadajte svoje heslo pre: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Príliš veľa píše v jednej žiadosti. Pošlite menšie požiadavky DocType: Social Login Key,Salesforce,Salesforce +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Import {0} z {1} DocType: User,Tile,dlaždice apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} miestnosť musí mať jednu osobu. DocType: Email Rule,Is Spam,Je spam @@ -3300,7 +3349,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,Zložka-close DocType: Data Migration Run,Pull Update,Vytiahnite aktualizáciu apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},zlúčil {0} do {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

DocType: SMS Settings,Enter url parameter for receiver nos,Zadajte parameter url pre prijímače č apps/frappe/frappe/utils/jinja.py,Syntax error in template,Chyba syntaxe v šablóne apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Nastavte hodnotu filtrov v tabuľke Filter prehľadov. @@ -3313,6 +3361,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Je nám ľ DocType: System Settings,In Days,V dňoch DocType: Report,Add Total Row,Pridať celkový riadok apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Spustenie relácie zlyhalo +DocType: Translation,Verified,overená DocType: Print Format,Custom HTML Help,Vlastná nápoveda HTML DocType: Address,Preferred Billing Address,Preferovaná fakturačná adresa apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Priradený @@ -3327,7 +3376,6 @@ DocType: Help Article,Intermediate,prechodný DocType: Module Def,Module Name,Názov modulu DocType: OAuth Authorization Code,Expiration time,Čas exspirácie apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Nastaviť predvolený formát, veľkosť stránky, štýl tlače atď." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,"Nemôžete mať rád niečo, čo ste vytvorili" DocType: System Settings,Session Expiry,Skončenie relácie DocType: DocType,Auto Name,Automatický názov apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Vyberte Prílohy @@ -3355,6 +3403,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Systémová stránka DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Poznámka: Štandardne sa odosielajú e-maily pre neúspešné zálohy. DocType: Custom DocPerm,Custom DocPerm,Vlastné DocPerm +DocType: Translation,PR sent,PR odoslané DocType: Tag Doc Category,Doctype to Assign Tags,Doctype na priradenie značiek DocType: Address,Warehouse,sklad apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Nastavenie Dropbox @@ -3422,7 +3471,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Enter na pridanie komentára apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Pole {0} nie je možné vybrať. DocType: User,Birth Date,Dátum narodenia -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,S odsadením skupiny DocType: List View Setting,Disable Count,Zakázať počet DocType: Contact Us Settings,Email ID,ID e-mailu apps/frappe/frappe/utils/password.py,Incorrect User or Password,Nesprávny používateľ alebo heslo @@ -3457,6 +3505,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Táto rola aktualizuje oprávnenia používateľa pre používateľa DocType: Website Theme,Theme,téma DocType: Web Form,Show Sidebar,Zobraziť bočný panel +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Integrácia kontaktov Google. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Predvolená pošta apps/frappe/frappe/www/login.py,Invalid Login Token,Neplatný token prihlásenia apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Najprv nastavte názov a uložte záznam. @@ -3484,7 +3533,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Opravte prosím DocType: Top Bar Item,Top Bar Item,Položka Top Bar ,Role Permissions Manager,Manažér povolení rolí -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,Vyskytli sa chyby. Oznámte to. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} rokmi apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Žena DocType: System Settings,OTP Issuer Name,Meno emitenta OTP apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Pridať do úlohy @@ -3584,6 +3633,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Nastav apps/frappe/frappe/model/document.py,none of,žiadny z DocType: Desktop Icon,Page,strana DocType: Workflow State,plus-sign,plus-sign +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Vymazať vyrovnávaciu pamäť a znova načítať apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Nie je možné aktualizovať: Nesprávne / uplynuté prepojenie. DocType: Kanban Board Column,Yellow,žltá 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 stĺpcov pre pole v mriežke (Celkové stĺpce v mriežke by mali byť menšie ako 11) @@ -3598,6 +3648,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Nov DocType: Activity Log,Date,dátum DocType: Communication,Communication Type,Typ komunikácie apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Tabuľka rodičov +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Navigácia v zozname hore DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Zobraziť úplnú chybu a povoliť hlásenie problémov vývojárovi DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3619,7 +3670,6 @@ DocType: Notification Recipient,Email By Role,E-mail podľa role apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,"Inovujte, ak chcete pridať viac ako {0} odberateľov" apps/frappe/frappe/email/queue.py,This email was sent to {0},Tento e-mail bol odoslaný na adresu {0} DocType: User,Represents a User in the system.,Predstavuje používateľa v systéme. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Stránka {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Spustite nový formát apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Pridať komentár apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} z {1} diff --git a/frappe/translations/sl.csv b/frappe/translations/sl.csv index dfcd21abcc..002faee77d 100644 --- a/frappe/translations/sl.csv +++ b/frappe/translations/sl.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Omogoči prelome DocType: DocType,Default Sort Order,Privzeti vrstni red razvrščanja apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,V poročilu so prikazana samo številčna polja +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,"Pritisnite tipko Alt, da sprožite dodatne bližnjice v meniju in stranski vrstici" DocType: Workflow State,folder-open,mapa odprta DocType: Customize Form,Is Table,Je tabela apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Priložene datoteke ni mogoče odpreti. Ali ste ga izvozili kot CSV? DocType: DocField,No Copy,Brez kopiranja DocType: Custom Field,Default Value,Privzeta vrednost apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Append To je obvezno za dohodno pošto +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Sinhroniziraj stike DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Podrobnosti preslikavanja podatkov apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Nehaj slediti apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",Tiskanje PDF-jev prek "Surovega tiskanja" še ni podprto. Odstranite kartiranje tiskalnika v nastavitvah tiskalnika in poskusite znova. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} in {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Pri shranjevanju filtrov je prišlo do napake apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Vnesite svoje geslo apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Mapah domače in priloge ni mogoče izbrisati +DocType: Email Account,Enable Automatic Linking in Documents,Omogoči samodejno povezovanje v dokumentih DocType: Contact Us Settings,Settings for Contact Us Page,Nastavitve za Pišite nam DocType: Social Login Key,Social Login Provider,Ponudnik za prijavo v družbo +DocType: Email Account,"For more information, click here.","Za več informacij kliknite tukaj ." DocType: Transaction Log,Previous Hash,Prejšnji Hash DocType: Notification,Value Changed,Spremenjena vrednost DocType: Report,Report Type,Vrsta poročila @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Pravilo energetske točke apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,"Vnesite ID stranke, preden je omogočena socialna prijava" DocType: Communication,Has Attachment,Ima priponko DocType: User,Email Signature,Podpis za e-pošto -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} let nazaj ,Addresses And Contacts,Naslovi in stiki apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Ta Kanban odbor bo zaseben DocType: Data Migration Run,Current Mapping,Trenutna preslikava @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Izbirate lahko možnost sinhronizacije kot VSE, bo ponovno sinhronizirala vsa še neprebrana sporočila s strežnika. To lahko povzroči tudi podvajanje sporočil (e-poštnih sporočil)." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Zadnja sinhronizacija {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Vsebine glave ni mogoče spremeniti +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Ni rezultatov za »

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Po predložitvi ni dovoljeno spremeniti {0} apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page",Aplikacija je bila posodobljena na novo različico. Osvežite to stran DocType: User,User Image,Uporabniška slika @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Ozna apps/frappe/frappe/public/js/frappe/chat.js,Discard,Zavrzi DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Za boljše rezultate izberite sliko približno širine 150 px s prozornim ozadjem. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,Ponovno +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Izbranih je bilo {0} vrednosti DocType: Blog Post,Email Sent,Email poslan DocType: Communication,Read by Recipient On,Branje s prejemnikom je vklopljeno DocType: User,Allow user to login only after this hour (0-24),"Dovoli uporabniku, da se prijavi šele po tej uri (0-24)" @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Modul za izvoz DocType: DocType,Fields,Polja -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Tega dokumenta ne smete tiskati +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Tega dokumenta ne smete tiskati apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Starš apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Vaša seja je potekla, ponovno se prijavite in nadaljujte." DocType: Assignment Rule,Priority,Prednost @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Ponastavi OTP Secr DocType: DocType,UPPER CASE,VELIKE ČRKE apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,Nastavite e-poštni naslov DocType: Communication,Marked As Spam,Označeno kot neželeno +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"E-poštni naslov, katerega Googlove stike je treba sinhronizirati." apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Uvoz naročnikov apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Shrani filter DocType: Address,Preferred Shipping Address,Prednostni naslov za pošiljanje DocType: GCalendar Account,The name that will appear in Google Calendar,"Ime, ki bo prikazano v Google Koledarju" +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,"Kliknite {0}, da ustvarite žeton za osvežitev." DocType: Email Account,Disable SMTP server authentication,Onemogoči preverjanje pristnosti strežnika SMTP DocType: Email Account,Total number of emails to sync in initial sync process ,Skupno število e-poštnih sporočil za sinhronizacijo v začetnem postopku sinhronizacije DocType: System Settings,Enable Password Policy,Omogoči pravilnik o geslih @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Vstavi kodo apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Ni notri DocType: Auto Repeat,Start Date,Začetni datum apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Nastavite grafikon +DocType: Website Theme,Theme JSON,Tema JSON apps/frappe/frappe/www/list.py,My Account,Moj račun DocType: DocType,Is Published Field,Objavljeno polje DocType: DocField,Set non-standard precision for a Float or Currency field,Nastavite nestandardno natančnost za polje Float ali Currency @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Dodaj Reference: {{ reference_doctype }} {{ reference_name }} za pošiljanje sklica dokumenta DocType: LDAP Settings,LDAP First Name Field,Polje z imenom LDAP apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Privzeto pošiljanje in Prejeto -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Nastavitev> Prilagodi obrazec apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",Za posodabljanje lahko posodobite le izbirne stolpce. apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',Privzeto za polje »Preveri« mora biti »0« ali »1« apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Delite ta dokument z @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,HTML domene DocType: Blog Settings,Blog Settings,Nastavitve spletnega dnevnika apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Ime DocType se mora začeti s črko in lahko vsebuje le črke, številke, presledke in podčrtaje" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Nastavitve> Uporabniška dovoljenja DocType: Communication,Integrations can use this field to set email delivery status,Integracije lahko s tem poljem določijo status dostave e-pošte apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Nastavitve plačilnega prehoda Stripe DocType: Print Settings,Fonts,Pisave DocType: Notification,Channel,Kanal DocType: Communication,Opened,Odprto DocType: Workflow Transition,Conditions,Pogoji +apps/frappe/frappe/config/website.py,A user who posts blogs.,"Uporabnik, ki objavlja spletne dnevnike." apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Nimate računa? Prijavite se apps/frappe/frappe/utils/file_manager.py,Added {0},Dodano {0} DocType: Newsletter,Create and Send Newsletters,Ustvarite in pošljite glasila DocType: Website Settings,Footer Items,Postavke za nogo +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Nastavite privzeti e-poštni račun v meniju Nastavitve> E-pošta> E-poštni račun DocType: Website Slideshow Item,Website Slideshow Item,Spletna stran Slideshow Item apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registriraj aplikacijo OAuth za stranke DocType: Error Snapshot,Frames,Okvirji @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Raven 0 je za dovoljenja na ravni dokumentov, višje ravni za dovoljenja na ravni polja." DocType: Address,City/Town,Mesto / mesto DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","To bo ponastavilo vašo trenutno temo, ali ste prepričani, da želite nadaljevati?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},"Obvezna polja, zahtevana v {0}" apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Napaka pri povezovanju z e-poštnim računom {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Pri ustvarjanju ponavljajoče se napake je prišlo do napake @@ -527,7 +536,7 @@ DocType: Event,Event Category,Kategorija dogodka apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,"Stolpci, ki temeljijo na" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Uredi naslov DocType: Communication,Received,Prejeto -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Dostop do te strani ni dovoljen. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Dostop do te strani ni dovoljen. DocType: User Social Login,User Social Login,Prijava za uporabnika apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,"Napišite datoteko Python v isto mapo, kjer je ta shranjena in vrnite stolpec in rezultat." DocType: Contact,Purchase Manager,Vodja nabave @@ -580,7 +589,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konf apps/frappe/frappe/utils/data.py,Operator must be one of {0},Operater mora biti eden od {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Če je lastnik DocType: Data Migration Run,Trigger Name,Trigger Name -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,V svoj spletni dnevnik napišite naslove in predstavitve. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Odstrani polje apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Strniti vse apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Barva ozadja @@ -630,6 +638,7 @@ DocType: Dashboard Chart,Bar,Bar DocType: SMS Settings,Enter url parameter for message,Vnesite parameter URL za sporočilo apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nova oblika po meri za tiskanje apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} že obstaja +DocType: Workflow Document State,Is Optional State,Je neobvezna država DocType: Address,Purchase User,Nakup uporabnika DocType: Data Migration Run,Insert,Vstavi DocType: Web Form,Route to Success Link,Pot do povezave do uspeha @@ -637,13 +646,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Uporabn DocType: File,Is Home Folder,Je domača mapa apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Vrsta: DocType: Post,Is Pinned,Je pripeta -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Ni dovoljenja za »{0}« {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Ni dovoljenja za »{0}« {1} DocType: Patch Log,Patch Log,Dnevnik popravkov DocType: Print Format,Print Format Builder,Izdelovalec tiskalnega formata 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","Če je omogočeno, se lahko vsi uporabniki prijavijo s katerega koli IP naslova s funkcijo Autof. To lahko nastavite samo za določene uporabnike v uporabniški strani" apps/frappe/frappe/utils/data.py,only.,samo. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,Pogoj '{0}' je neveljaven DocType: Auto Email Report,Day of Week,Dan v tednu +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Omogočite Google API v Google Nastavitvah. DocType: DocField,Text Editor,Urejevalnik besedila apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Cut apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Poiščite ali vnesite ukaz @@ -651,6 +661,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,Število varnostnih kopij DB ne sme biti manjše od 1 DocType: Workflow State,ban-circle,ban-krog DocType: Data Export,Excel,Excel +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Header, Breadcrumbs in Meta Tags" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,E-poštni naslov za podporo ni določen DocType: Comment,Published,Objavljeno DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.",Opomba: Za najboljše rezultate morajo biti slike iste velikosti in širine večje od višine. @@ -741,6 +752,7 @@ DocType: System Settings,Scheduler Last Event,Zadnji dogodek razporejevalnika apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Poročilo o vseh delnicah dokumentov DocType: Website Sidebar Item,Website Sidebar Item,Stranska vrstica spletne strani apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Narediti +DocType: Google Settings,Google Settings,Google Nastavitve apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Izberite svojo državo, časovni pas in valuto" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Tukaj vnesite statične URL-je (npr. Sender = ERPNext, username = ERPNext, password = 1234 itd.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Ni e-poštnega računa @@ -794,6 +806,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,Oznaka OAuth nosilca ,Setup Wizard,Namestitveni čarovnik apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Preklopi grafikon +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,Sinhronizacija DocType: Data Migration Run,Current Mapping Action,Trenutno dejanje kartiranja DocType: Email Account,Initial Sync Count,Začetno število sinhronizacij apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Nastavitve za Pišite nam. @@ -833,6 +846,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Vrsta oblike tiskanja apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Za ta merila niso določena dovoljenja. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Razširi vse +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ni najdene privzete predloge naslova. Ustvarite novo v meniju Nastavitev> Tiskanje in označevanje> Predloga naslova. DocType: Tag Doc Category,Tag Doc Category,Oznaka kategorije Doc DocType: Data Import,Generated File,Ustvarjena datoteka apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Opombe @@ -840,7 +854,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Polje Timeline mora biti povezava ali dinamična povezava DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Obvestila in množična sporočila bodo poslana s tega strežnika. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,To je skupno 100 gesel. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Trajno pošljete {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Trajno pošljete {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} ne obstaja, izberite nov cilj, ki ga želite združiti" DocType: Energy Point Rule,Multiplier Field,Multiplier Field DocType: Workflow,Workflow State Field,Polje stanja v delovnem toku @@ -880,6 +894,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} je cenilo vaše delo v {1} z {2} točkami DocType: Auto Email Report,Zero means send records updated at anytime,"Nič pomeni pošiljanje zapisov, ki so posodobljeni kadarkoli" apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Vrednosti ni mogoče spremeniti za {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Nastavitve API-ja za Google. DocType: System Settings,Force User to Reset Password,"Prisilite uporabnika, da ponastavi geslo" apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Poročila o izdelovalcu poročil upravlja neposredno izdelovalec poročil. Nič za početi. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Uredi filter @@ -933,7 +948,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,za DocType: S3 Backup Settings,eu-north-1,eu-sever-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: dovoljeno je samo eno pravilo z isto vlogo, ravni in {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Dokumenta spletnega obrazca ne smete posodobiti -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Najdaljša omejitev priloge za ta zapis. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Najdaljša omejitev priloge za ta zapis. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,"Poskrbite, da referenčni dokumenti za komunikacije niso krožni." DocType: DocField,Allow in Quick Entry,Dovoli v hitrem vnosu DocType: Error Snapshot,Locals,Domačini @@ -965,7 +980,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Vrsta izjeme apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},"Ni mogoče izbrisati ali preklicati, ker je {0} {1} povezan z {2} {3} {4}" apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,Skrivnost OTP lahko ponastavi samo skrbnik. -DocType: Web Form Field,Page Break,Prelom strani DocType: Website Script,Website Script,Spletni skript DocType: Integration Request,Subscription Notification,Obvestilo o naročnini DocType: DocType,Quick Entry,Hitri vnos @@ -982,6 +996,7 @@ DocType: Notification,Set Property After Alert,Nastavite Lastnost Po opozorilu apps/frappe/frappe/__init__.py,Thank you,Hvala vam apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks za notranjo integracijo apps/frappe/frappe/config/settings.py,Import Data,Uvoz podatkov +DocType: Translation,Contributed Translation Doctype Name,Prispevek za prevajanje Doctype Name DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID DocType: Review Level,Review Level,Stopnja pregleda @@ -1000,7 +1015,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Uspešno opravljeno apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Seznam apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Cenim -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Novo {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Je primarni stik DocType: Print Format,Raw Commands,Neobdelani ukazi apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Slogi slogov za formate tiskanja @@ -1041,6 +1055,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Napake v dogodkih apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Poišči {0} v {1} DocType: Email Account,Use SSL,Uporabite SSL DocType: DocField,In Standard Filter,V standardnem filtru +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Ni sinhroniziranih Googlovih stikov. DocType: Data Migration Run,Total Pages,Skupno število strani apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,"{0}: Polja '{1}' ne more biti nastavljeno kot edinstveno, saj ima enolične vrednosti" DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Če je omogočeno, bodo uporabniki obveščeni vsakič, ko se prijavijo. Če ni omogočen, bodo uporabniki obveščeni samo enkrat." @@ -1061,7 +1076,7 @@ DocType: Assignment Rule,Automation,Avtomatizacija apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Odstranjevanje datotek ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Poiščite »{0}« apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Nekaj je šlo narobe -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,"Prosimo, shranite pred priključitvijo." +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,"Prosimo, shranite pred priključitvijo." DocType: Version,Table HTML,HTML tabele apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,vozlišče DocType: Page,Standard,Standard @@ -1139,12 +1154,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Ni rezultat apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} zapisov je izbrisanih apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,Pri ustvarjanju žetona za dostop do predala je prišlo do napake. Za več podrobnosti preverite dnevnik napak. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Potomci Of -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ni najdene privzete predloge naslova. Ustvarite novo v meniju Nastavitev> Tiskanje in označevanje> Predloga naslova. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Stiki so konfigurirani. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Skrij podrobnosti apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Slogi pisave apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Vaša naročnina bo potekla {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},"Preverjanje pristnosti ni uspelo, ko ste prejemali e-poštna sporočila iz e-poštnega računa {0}. Sporočilo s strežnika: {1}" apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Statistika temelji na uspešnosti prejšnjega tedna (od {0} do {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,"Samodejno povezovanje je mogoče aktivirati samo, če je omogočeno dohodno." DocType: Website Settings,Title Prefix,Predpona naslova apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,"Aplikacije za preverjanje pristnosti, ki jih lahko uporabljate, so:" DocType: Bulk Update,Max 500 records at a time,Največ 500 zapisov naenkrat @@ -1177,7 +1193,7 @@ DocType: Auto Email Report,Report Filters,Filtri za poročila apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Izberite Stolpci DocType: Event,Participants,Udeleženci DocType: Auto Repeat,Amended From,Spremenjen iz -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Vaši podatki so bili poslani +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Vaši podatki so bili poslani DocType: Help Category,Help Category,Kategorija pomoči apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 mesec apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Izberite obstoječo obliko za urejanje ali začetek nove oblike. @@ -1224,7 +1240,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Polje za sledenje DocType: User,Generate Keys,Ustvari ključe DocType: Comment,Unshared,Razdeljeno -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Shranjeno +DocType: Translation,Saved,Shranjeno DocType: OAuth Client,OAuth Client,Odjemalec OAuth DocType: System Settings,Disable Standard Email Footer,Onemogoči standardno e-poštno nogo apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Print Format {0} je onemogočen @@ -1255,6 +1271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Zadnjič poso DocType: Data Import,Action,Ukrep apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Potreben je ključ stranke DocType: Chat Profile,Notifications,Obvestila +DocType: Translation,Contributed,Prispevek DocType: System Settings,mm/dd/yyyy,mm / dd / llll DocType: Report,Custom Report,Poročilo po meri DocType: Workflow State,info-sign,info-znak @@ -1271,6 +1288,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Kontakt DocType: LDAP Settings,LDAP Username Field,Polje LDAP uporabniškega imena apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Polja {0} ni mogoče nastaviti kot edinstvenega v {1}, saj obstajajo neenotne obstoječe vrednosti" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Nastavitev> Prilagodi obrazec DocType: User,Social Logins,Socialne prijave DocType: Workflow State,Trash,Trash DocType: Stripe Settings,Secret Key,Tajni ključ @@ -1328,6 +1346,7 @@ DocType: DocType,Title Field,Naslovno polje apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Povezave z odhodnim e-poštnim strežnikom ni bilo mogoče vzpostaviti DocType: File,File URL,URL datoteke DocType: Help Article,Likes,Všeč mi je +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Integracija Google Stikov je onemogočena. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,"Če želite imeti dostop do varnostnih kopij, morate biti prijavljeni in imeti vlogo upravitelja sistema." apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Prva raven DocType: Blogger,Short Name,Kratko ime @@ -1345,13 +1364,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Uvozno kodo DocType: Contact,Gender,Spol DocType: Workflow State,thumbs-down,palce dol -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Čakalna vrsta mora biti ena od {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Obvestila o vrsti dokumenta {0} ni mogoče nastaviti apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Dodajanje upravitelja sistema temu uporabniku, saj mora biti vsaj en sistemski upravitelj" apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Poslano e-poštno sporočilo za dobrodošlico DocType: Transaction Log,Chaining Hash,Vezni Hash DocType: Contact,Maintenance Manager,Upravitelj vzdrževanja +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Za primerjavo uporabite> 5, <10 ali = 324. Za območja uporabite 5:10 (za vrednosti med 5 in 10)." apps/frappe/frappe/utils/bot.py,show,show apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URL za skupno rabo apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Nepodprta oblika zapisa datoteke @@ -1373,7 +1392,7 @@ DocType: Communication,Notification,Obvestilo DocType: Data Import,Show only errors,Prikaži samo napake DocType: Energy Point Log,Review,Pregled apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Vrstice so bile odstranjene -DocType: GSuite Settings,Google Credentials,Google poverilnice +DocType: Google Settings,Google Credentials,Google poverilnice apps/frappe/frappe/www/login.html,Or login with,Ali se prijavite z apps/frappe/frappe/model/document.py,Record does not exist,Zapis ne obstaja apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Ime novega poročila @@ -1398,6 +1417,7 @@ DocType: Desktop Icon,List,Seznam DocType: Workflow State,th-large,velika apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,"{0}: Ni mogoče nastaviti dodelitve pošiljanja, če ni mogoče oddati" apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Ni povezan z nobenim zapisom +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Napaka pri povezovanju s aplikacijo za pladenj QZ ...

Če želite uporabljati funkcijo Raw Print, morate namestiti in zagnati aplikacijo QZ Tray.

Kliknite tukaj za prenos in namestitev QZ pladnja .
Kliknite tukaj, če želite izvedeti več o Raw Printing ." DocType: Chat Message,Content,Vsebina DocType: Workflow Transition,Allow Self Approval,Dovoli samoodobritev apps/frappe/frappe/www/qrcode.py,Page has expired!,Stran je potekla! @@ -1414,6 +1434,7 @@ DocType: Workflow State,hand-right,roko desno DocType: Website Settings,Banner is above the Top Menu Bar.,Pasica je nad vrstico z glavnim menijem. apps/frappe/frappe/www/update-password.html,Invalid Password,Neveljavno geslo apps/frappe/frappe/utils/data.py,1 month ago,pred 1 mesecem +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Dovoli dostop do Google Stikov DocType: OAuth Client,App Client ID,ID odjemalca aplikacije DocType: DocField,Currency,Valuta DocType: Website Settings,Banner,Pasica @@ -1425,7 +1446,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Cilj DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Če vloga nima dostopa na ravni 0, potem so višje ravni brez pomena." DocType: ToDo,Reference Type,Referenčni tip -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Dovoli DocType, DocType. Bodi previden!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Dovoli DocType, DocType. Bodi previden!" DocType: Domain Settings,Domain Settings,Nastavitve domene DocType: Auto Email Report,Dynamic Report Filters,Filtri dinamičnih poročil DocType: Energy Point Log,Appreciation,Spoštovanje @@ -1465,6 +1486,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,us-west-2 DocType: DocType,Is Single,Je enkraten apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Ustvarite novo obliko +DocType: Google Contacts,Authorize Google Contacts Access,Pooblastite dostop do Google Stikov DocType: S3 Backup Settings,Endpoint URL,URL končne točke DocType: Social Login Key,Google,Google DocType: Contact,Department,Oddelek @@ -1479,7 +1501,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Dodeli DocType: List Filter,List Filter,Filter Filter DocType: Dashboard Chart Link,Chart,Graf apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Ne morem odstraniti -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Pošljite ta dokument za potrditev +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Pošljite ta dokument za potrditev apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} že obstaja. Izberite drugo ime apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,"V tem obrazcu imate neshranjene spremembe. Shranite, preden nadaljujete." apps/frappe/frappe/model/document.py,Action Failed,Dejanje ni uspelo @@ -1561,6 +1583,7 @@ DocType: DocField,Display,Zaslon apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Odgovori vsem DocType: Calendar View,Subject Field,Področje predmeta apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Potek seje mora biti v formatu {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},Uporaba: {0} DocType: Workflow State,zoom-in,približaj apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Povezava s strežnikom ni uspela apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Datum {0} mora biti v obliki: {1} @@ -1572,8 +1595,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Ikona se bo pojavila na gumbu DocType: Role Permission for Page and Report,Set Role For,Nastavi vlogo za +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Samodejno povezovanje lahko aktivirate samo za en e-poštni račun. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Ni dodeljenih e-poštnih računov +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-poštni račun ni nastavljen. Ustvarite nov e-poštni račun iz možnosti Nastavitve> E-pošta> E-poštni račun apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Naloga +DocType: Google Contacts,Last Sync On,Zadnja sinhronizacija vklopljena apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},pridobili {0} s samodejnim pravilom {1} apps/frappe/frappe/config/website.py,Portal,Portal apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Hvala za vašo elektronsko pošto @@ -1594,7 +1620,6 @@ DocType: GSuite Settings,GSuite Settings,Nastavitve za GSuite DocType: Integration Request,Remote,Oddaljeno DocType: File,Thumbnail URL,URL sličice apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Prenesi poročilo -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Nastavitev> Uporabnik apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},"Prilagoditve za {0}, izvožene v:
{1}" DocType: GCalendar Account,Calendar Name,Ime koledarja apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Vaš ID za prijavo je @@ -1644,6 +1669,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Pojdi apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Polje Slika mora biti veljavno ime polja apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,Za dostop do te strani morate biti prijavljeni DocType: Assignment Rule,Example: {{ subject }},Primer: {{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Ime polja {0} je omejeno apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Ne morete izključiti možnosti »Samo za branje« za polje {0} DocType: Social Login Key,Enable Social Login,Omogoči prijavo v družbo DocType: Workflow,Rules defining transition of state in the workflow.,"Pravila, ki določajo prehod stanja v delovnem procesu." @@ -1664,10 +1690,10 @@ DocType: Website Settings,Route Redirects,Preusmeritve poti apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,E-poštni nabiralnik apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},obnovil {0} kot {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Samodejno dodeli dokumente uporabnikom +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Odprite Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Predloge e-poštnih sporočil za običajne poizvedbe. DocType: Letter Head,Letter Head Based On,Letter Head Based On apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Zaprite to okno -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Plačilo je končano DocType: Contact,Designation,Oznaka DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Meta oznake @@ -1706,6 +1732,7 @@ DocType: System Settings,Choose authentication method to be used by all users,"I DocType: Error Snapshot,Parent Error Snapshot,Posnetek starševskih napak DocType: GCalendar Account,GCalendar Account,Račun GCalendar DocType: Language,Language Name,Ime jezika +DocType: Workflow Document State,Workflow Action is not created for optional states,Ukrep delovnega toka ni ustvarjen za izbirna stanja DocType: Customize Form,Customize Form,Prilagodi obrazec DocType: DocType,Image Field,Polje slike apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Dodano {0} ({1}) @@ -1747,6 +1774,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Uporabite to pravilo, če je uporabnik lastnik" DocType: About Us Settings,Org History Heading,Naslov zgodovine Org apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Napaka strežnika +DocType: Contact,Google Contacts Description,Opis Google Stikov apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Standardnih vlog ni mogoče preimenovati DocType: Review Level,Review Points,Točke pregleda apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Manjka parameter Kanban Board Name @@ -1764,7 +1792,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Ni v načinu za razvijalce! Nastavite ga v site_config.json ali pa naredite 'Custom' DocType. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,pridobil {0} točk DocType: Web Form,Success Message,Sporočilo o uspehu -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Za primerjavo uporabite> 5, <10 ali = 324. Za območja uporabite 5:10 (za vrednosti med 5 in 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Opis strani za vnos v navadnem besedilu, le nekaj vrstic. (največ 140 znakov)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Prikaži dovoljenja DocType: DocType,Restrict To Domain,Omeji na domeno @@ -1786,6 +1813,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Ne pre apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Nastavi količino DocType: Auto Repeat,End Date,Končni datum DocType: Workflow Transition,Next State,Naslednja država +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Google Stiki so sinhronizirani. DocType: System Settings,Is First Startup,Prvi zagon apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},posodobljeno na {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Premakni v @@ -1835,6 +1863,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Koledar apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Predloga za uvoz podatkov DocType: Workflow State,hand-left,levo +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Izberite več elementov seznama apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Velikost varnostne kopije: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Povezano z {0} DocType: Braintree Settings,Private Key,Zasebni ključ @@ -1877,13 +1906,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Zanimanje DocType: Bulk Update,Limit,Omejitev DocType: Print Settings,Print taxes with zero amount,Natisnite davke z ničelno vrednostjo -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-poštni račun ni nastavljen. Ustvarite nov e-poštni račun iz možnosti Nastavitve> E-pošta> E-poštni račun DocType: Workflow State,Book,Knjiga DocType: S3 Backup Settings,Access Key ID,Dostop do ID ključa DocType: Chat Message,URLs,URL-ji apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Imena in priimki sami po sebi je težko uganiti. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Poročilo {0} DocType: About Us Settings,Team Members Heading,Naslov članov skupine +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Izberite element seznama apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Dokument {0} je bil nastavljen na stanje {1} do {2} DocType: Address Template,Address Template,Predloga naslova DocType: Workflow State,step-backward,korak nazaj @@ -1907,6 +1936,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Izvozi osebna dovoljenja apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Brez: konec delovnega toka DocType: Version,Version,Različica +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Odprite element seznama apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 mesecev DocType: Chat Message,Group,Skupina apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Obstaja nekaj težav z URL-jem datoteke: {0} @@ -1962,6 +1992,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 leto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} je vrnil vaše točke na {1} DocType: Workflow State,arrow-down,puščica navzdol DocType: Data Import,Ignore encoding errors,Prezri napake pri kodiranju +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Pokrajina DocType: Letter Head,Letter Head Name,Ime pisma DocType: Web Form,Client Script,Client Script DocType: Assignment Rule,Higher priority rule will be applied first,Najprej bo uporabljeno pravilo višje prioritete @@ -2006,6 +2037,7 @@ DocType: Kanban Board Column,Green,Zelena apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Za nove zapise so potrebna samo obvezna polja. Če želite, lahko izbrišete neobvezne stolpce." apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} se mora začeti in končati s črko in lahko vsebuje le črke, vezaj ali podčrtaj." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Sprožite primarno dejanje apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Ustvari e-poštno sporočilo uporabnika apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Polje za sortiranje {0} mora biti veljavno ime polja DocType: Auto Email Report,Filter Meta,Filtrirajte Meta @@ -2035,6 +2067,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Polje Timeline apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Nalaganje... DocType: Auto Email Report,Half Yearly,Polletno +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Moj profil apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Datum zadnje spremembe DocType: Contact,First Name,Ime DocType: Post,Comments,Komentarji @@ -2057,6 +2090,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Vsebina Hash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Objave po {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} dodeljeno {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Ni novih sinhroniziranih Google Stikov. DocType: Workflow State,globe,globus apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Povprečje {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Počisti dnevnike napak @@ -2083,6 +2117,8 @@ DocType: Workflow State,Inverse,Inverse DocType: Activity Log,Closed,Zaprto DocType: Report,Query,Poizvedba DocType: Notification,Days After,Dnevi po +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Bližnjice strani +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portret apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Zahteva je potekla DocType: System Settings,Email Footer Address,Naslov naslova za e-pošto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Posodobitev energetske točke @@ -2110,6 +2146,7 @@ For Select, enter list of Options, each on a new line.","Za povezave vnesite Doc apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,Pred eno minuto apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Brez aktivnih sej apps/frappe/frappe/model/base_document.py,Row,Vrstica +DocType: Contact,Middle Name,Srednje ime apps/frappe/frappe/public/js/frappe/request.js,Please try again,Prosim poskusite ponovno DocType: Dashboard Chart,Chart Options,Možnosti grafikona DocType: Data Migration Run,Push Failed,Push Failed @@ -2138,6 +2175,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,velikost - majhna DocType: Comment,Relinked,Odpahnjena DocType: Role Permission for Page and Report,Roles HTML,Vloga HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Pojdi apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Potek dela se bo začel po shranjevanju. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Če so vaši podatki v HTML-ju, kopirajte prilepite točno kodo HTML z oznakami." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Datumi so pogosto preprosto uganiti. @@ -2166,7 +2204,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Ikona namizja apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,ta dokument je bil preklican apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Časovno obdobje -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Nastavitve> Uporabniška dovoljenja apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} je cenjeno {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Spremenjene vrednosti apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Napaka v obvestilu @@ -2231,6 +2268,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Bulk Delete DocType: DocShare,Document Name,Ime dokumenta apps/frappe/frappe/config/customization.py,Add your own translations,Dodajte svoje prevode +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Pomaknite se navzdol po seznamu DocType: S3 Backup Settings,eu-central-1,eu-central-1 DocType: Auto Repeat,Yearly,Letno apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Preimenuj @@ -2281,6 +2319,7 @@ DocType: Workflow State,plane,ravnino apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Ugnezdena nastavljena napaka. Obrnite se na skrbnika. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Pokaži poročilo DocType: Auto Repeat,Auto Repeat Schedule,Samodejno ponavljanje urnika +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Pogled Ref DocType: Address,Office,Urad DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} dni nazaj @@ -2314,7 +2353,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Za apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Moje nastavitve apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Ime skupine ne sme biti prazno. DocType: Workflow State,road,cesta -DocType: Website Route Redirect,Source,Vir +DocType: Contact,Source,Vir apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Aktivne seje apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,V obrazcu je lahko samo en Fold apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Nov klepet @@ -2336,6 +2375,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Vnesite URL za avtorizacijo DocType: Email Account,Send Notification to,Pošlji obvestilo apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Nastavitve za varnostno kopiranje +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,"Nekaj je šlo narobe med generacijo žetonov. Kliknite {0}, da ustvarite novo." apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Ali želite odstraniti vse prilagoditve? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Ureja lahko samo skrbnik DocType: Auto Repeat,Reference Document,Referenčni dokument @@ -2360,6 +2400,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Vloge lahko nastavite za uporabnike z njihove uporabniške strani. DocType: Website Settings,Include Search in Top Bar,Vključi iskanje v zgornji vrstici apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Nujno] Napaka pri ustvarjanju ponavljajočega se% s za% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globalne bližnjice DocType: Help Article,Author,Avtor DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Za dane filtre ni bil najden noben dokument @@ -2395,10 +2436,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, vrstica {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Če naložite nove zapise, postane "Naming Series" obvezna, če je prisotna." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Uredi lastnosti -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,"Primera ni mogoče odpreti, ko je odprta njegova {0}" +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,"Primera ni mogoče odpreti, ko je odprta njegova {0}" DocType: Activity Log,Timeline Name,Ime časovne premice DocType: Comment,Workflow,Potek dela apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Nastavite osnovni URL v ključu za prijavo v družbo za Frappe +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Bližnjice na tipkovnici DocType: Portal Settings,Custom Menu Items,Uporabniške menijske postavke apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,Dolžina {0} mora biti med 1 in 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Povezava izgubljena. Nekatere funkcije morda ne bodo delovale. @@ -2461,6 +2503,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Dodano vrst DocType: DocType,Setup,Nastaviti apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} je bilo uspešno ustvarjenih apps/frappe/frappe/www/update-password.html,New Password,novo geslo +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Izberite polje apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Pustite ta pogovor DocType: About Us Settings,Team Members,Člani ekipe DocType: Blog Settings,Writers Introduction,Uvodniki pisateljev @@ -2530,13 +2573,12 @@ DocType: Chat Room,Name,Ime DocType: Communication,Email Template,Predloga e-pošte DocType: Energy Point Settings,Review Levels,Ravni pregleda DocType: Print Format,Raw Printing,Surovi tisk -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,"Ko je primerek odprt, ni mogoče odpreti {0}" +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,"Ko je primerek odprt, ni mogoče odpreti {0}" DocType: DocType,"Make ""name"" searchable in Global Search",Naj bo "ime" mogoče iskati v globalnem iskanju DocType: Data Migration Mapping,Data Migration Mapping,Preslikava preseljevanja podatkov DocType: Data Import,Partially Successful,Delno uspešno DocType: Communication,Error,Napaka apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Tipa polja ni mogoče spremeniti iz {0} v {1} v vrstici {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Napaka pri povezovanju s aplikacijo za pladenj QZ ...

Če želite uporabljati funkcijo Raw Print, morate namestiti in zagnati aplikacijo QZ Tray.

Kliknite tukaj za prenos in namestitev QZ pladnja .
Kliknite tukaj, če želite izvedeti več o Raw Printing ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Vzemite fotografijo apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,"Izogibajte se let, ki so povezane z vami." DocType: Web Form,Allow Incomplete Forms,Dovoli nedokončane obrazce @@ -2632,7 +2674,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Izberite ciljno = "_blank", da se odpre na novi strani." DocType: Portal Settings,Portal Menu,Meni portala DocType: Website Settings,Landing Page,Ciljna stran -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,"Prijavite se ali se prijavite, da začnete" DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Možnosti stika, kot so »Prodajna poizvedba, poizvedba za podporo« itd., So na novo v vrstici ali ločene z vejicami." apps/frappe/frappe/twofactor.py,Verfication Code,Koda za preverjanje apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} je že odjavljen @@ -2718,6 +2759,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Preslikava nač DocType: Address,Sales User,Uporabnik prodaje apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Spremeni lastnosti polja (skrij, samo za branje, dovoljenje itd.)" DocType: Property Setter,Field Name,Ime polja +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Stranka DocType: Print Settings,Font Size,Velikost pisave DocType: User,Last Password Reset Date,Zadnji datum ponastavitve gesla DocType: System Settings,Date and Number Format,Oblika zapisa datuma in številke @@ -2783,6 +2825,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Vozlišče skup apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Spoji se z obstoječimi DocType: Blog Post,Blog Intro,Uvod v blog apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nova omemba +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Skoči na polje DocType: Prepared Report,Report Name,Ime poročila apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Osvežite najnovejši dokument. apps/frappe/frappe/core/doctype/communication/communication.js,Close,Zapri @@ -2792,10 +2835,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Dogodek DocType: Social Login Key,Access Token URL,Dostopajte do URL-ja žetona apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Nastavite ključe dostopa za Dropbox v konfiguracijo spletnega mesta +DocType: Google Contacts,Google Contacts,Google Stiki DocType: User,Reset Password Key,Ponastavi ključ za geslo apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Spremenjeno z DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.","Če želite obnoviti, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Uspešno shranjeno +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,"Pošljite e-pošto na {0}, da jo povežete tukaj." DocType: File,Folder,Mapa DocType: DocField,Perm Level,Permska raven DocType: Print Settings,Page Settings,Nastavitve strani @@ -2825,6 +2871,7 @@ DocType: Workflow State,remove-sign,remove-sign DocType: Dashboard Chart,Full,Poln DocType: DocType,User Cannot Create,Uporabnik ne more ustvariti apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Dobili ste {0} točko +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Nastavitev> Uporabnik DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Če to nastavite, bo ta element v spustnem meniju pod izbranim nadrejenim." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Ni e-poštnih sporočil apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Manjkajo naslednja polja: @@ -2838,13 +2885,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Pok DocType: Web Form,Web Form Fields,Polja spletnega obrazca DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Obrazec za urejanje uporabnika na spletnem mestu. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Stalno Prekliči {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Stalno Prekliči {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Možnost 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,Skupaj apps/frappe/frappe/utils/password_strength.py,This is a very common password.,To je zelo pogosto geslo. DocType: Personal Data Deletion Request,Pending Approval,Čaka na odobritev apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Dokumenta ni bilo mogoče pravilno dodeliti apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Ni dovoljeno za {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Ni vrednosti za prikaz DocType: Personal Data Download Request,Personal Data Download Request,Zahteva za prenos osebnih podatkov apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} je dal ta dokument v skupno rabo z {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Izberite {0} @@ -2860,7 +2908,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},To e-poštno sporočilo je bilo poslano na {0} in kopirano v {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,Neveljavna prijava ali geslo DocType: Social Login Key,Social Login Key,Socialni ključ za prijavo -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Nastavite privzeti e-poštni račun iz možnosti Nastavitve> E-pošta> E-poštni račun apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filtri so shranjeni DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Kako bi bilo treba oblikovati to valuto? Če ni nastavljen, bo uporabil sistemske privzete vrednosti" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} je nastavljeno na stanje {2} @@ -2986,6 +3033,7 @@ DocType: User,Location,Lokacija apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Ni podatkov DocType: Website Meta Tag,Website Meta Tag,Spletna stran Meta Tag DocType: Workflow State,film,film +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Kopirano v odložišče. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Nastavitev ni bilo mogoče najti apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Oznaka je obvezna DocType: Webhook,Webhook Headers,Spletne glave @@ -3194,7 +3242,7 @@ DocType: Address,Address Line 1,Naslovna vrstica 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Za vrsto dokumenta apps/frappe/frappe/model/base_document.py,Data missing in table,V tabeli manjkajo podatki apps/frappe/frappe/utils/bot.py,Could not identify {0},Ne morem prepoznati {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,"Ta obrazec je bil spremenjen po tem, ko ste ga naložili" +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,"Ta obrazec je bil spremenjen po tem, ko ste ga naložili" apps/frappe/frappe/www/login.html,Back to Login,Nazaj na prijavo apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Ni nastavljeno DocType: Data Migration Mapping,Pull,Potegni @@ -3262,6 +3310,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Preslikava tabele za apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Nastavitev e-poštnega računa vnesite svoje geslo za: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Preveč piše v eni zahtevi. Pošljite manjše zahteve DocType: Social Login Key,Salesforce,Prodajno silo +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Uvažanje {0} od {1} DocType: User,Tile,Tile apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,Soba {0} mora imeti največ enega uporabnika. DocType: Email Rule,Is Spam,Je neželena pošta @@ -3299,7 +3348,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,folder-close DocType: Data Migration Run,Pull Update,Povlecite posodobitev apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},združenih {0} v {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Ni rezultatov za »

DocType: SMS Settings,Enter url parameter for receiver nos,Vnesite parameter URL za sprejemnike št apps/frappe/frappe/utils/jinja.py,Syntax error in template,Napaka v sintaksi v predlogi apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,V tabeli filtrov poročil nastavite vrednost filtrov. @@ -3312,6 +3360,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.",Žal niste p DocType: System Settings,In Days,V dneh DocType: Report,Add Total Row,Dodaj skupno vrstico apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Začetek seje ni uspel +DocType: Translation,Verified,Preverjeno DocType: Print Format,Custom HTML Help,Pomoč za HTML po meri DocType: Address,Preferred Billing Address,Prednostni naslov za zaračunavanje apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Dodeljena @@ -3326,7 +3375,6 @@ DocType: Help Article,Intermediate,Vmesni DocType: Module Def,Module Name,Ime modula DocType: OAuth Authorization Code,Expiration time,Čas trajanja apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Nastavite privzeto obliko, velikost strani, slog tiskanja itd." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,"Ne moreš biti všeč nekaj, kar si ustvaril" DocType: System Settings,Session Expiry,Prenehanje seje DocType: DocType,Auto Name,Samodejno ime apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Izberite Priloge @@ -3354,6 +3402,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Sistemska stran DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Opomba: Po privzetku so poslana e-pošta za neuspele varnostne kopije. DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm +DocType: Translation,PR sent,PR poslan DocType: Tag Doc Category,Doctype to Assign Tags,Doctype za dodeljevanje oznak DocType: Address,Warehouse,Skladišče apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Nastavitev za Dropbox @@ -3421,7 +3470,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Enter za dodajanje komentarjev apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Polje {0} ni mogoče izbrati. DocType: User,Birth Date,Rojstni datum -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Z zamikom skupine DocType: List View Setting,Disable Count,Onemogoči štetje DocType: Contact Us Settings,Email ID,ID e-pošte apps/frappe/frappe/utils/password.py,Incorrect User or Password,Nepravilen uporabnik ali geslo @@ -3456,6 +3504,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Ta vloga posodobi uporabniška dovoljenja za uporabnika DocType: Website Theme,Theme,Tema DocType: Web Form,Show Sidebar,Pokaži stransko vrstico +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Integracija Google Stikov. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Privzeta mapa Prejeto apps/frappe/frappe/www/login.py,Invalid Login Token,Neveljaven žeton za prijavo apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Najprej nastavite ime in shranite zapis. @@ -3483,7 +3532,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Popravite DocType: Top Bar Item,Top Bar Item,Na vrh Bar element ,Role Permissions Manager,Upravitelj dovoljenj vlog -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,Prišlo je do napak. Prijavite to. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} let nazaj apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Ženska DocType: System Settings,OTP Issuer Name,Ime izdajatelja OTP apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Dodaj v opravilo @@ -3583,6 +3632,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Nastav apps/frappe/frappe/model/document.py,none of,nobena DocType: Desktop Icon,Page,Stran DocType: Workflow State,plus-sign,plus-znak +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Počisti predpomnilnik in ponovno naloži apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Ne morem posodobiti: Nepravilna / potekla povezava. DocType: Kanban Board Column,Yellow,Rumena DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Število stolpcev za polje v mreži (skupni stolpci v mreži morajo biti manjši od 11) @@ -3597,6 +3647,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Novi DocType: Activity Log,Date,Datum DocType: Communication,Communication Type,Vrsta komunikacije apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Nadrejena tabela +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Poiščite seznam navzgor DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Pokaži popolno napako in dovoli poročanje o težavah razvijalcu DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3618,7 +3669,6 @@ DocType: Notification Recipient,Email By Role,Vloga po e-pošti apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,"Nadgradite, da dodate več kot {0} naročnikov" apps/frappe/frappe/email/queue.py,This email was sent to {0},To e-poštno sporočilo je bilo poslano na {0} DocType: User,Represents a User in the system.,Predstavlja uporabnika v sistemu. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Stran {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Začni novo obliko apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Dodaj komentar apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} od {1} diff --git a/frappe/translations/sq.csv b/frappe/translations/sq.csv index d04bca6fc6..23290e39d4 100644 --- a/frappe/translations/sq.csv +++ b/frappe/translations/sq.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Aktivizo gradientët DocType: DocType,Default Sort Order,Rendi i Renditjes Default apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Shfaq vetëm fusha Numerike nga Raporti +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Shtypni Alt Key për të shkaktuar shkurtesa shtesë në Menu dhe Sidebar DocType: Workflow State,folder-open,dosje të hapur DocType: Customize Form,Is Table,Është Tabela apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,E pamundur për të hapur skedarin e bashkëngjitur. A e keni eksportuar atë si CSV? DocType: DocField,No Copy,Asnjë kopje DocType: Custom Field,Default Value,Vlera e paracaktuar apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Append To është i detyrueshëm për postën hyrëse +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Sync kontaktet DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Detajimi i Hartimit të të Dhënave të të Dhënave apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Unfollow apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",Shtypja PDF nëpërmjet "Printit të Parasë" ende nuk është mbështetur. Hiq hartën e printerit në Cilësimet e Printerit dhe provo përsëri. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} dhe {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Kishte një gabim gjatë ruajtjes së filtrave apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Futni fjalëkalimin tuaj apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Nuk mund të fshini dosjet Home dhe Attachments +DocType: Email Account,Enable Automatic Linking in Documents,Aktivizo lidhjen automatike në dokumente DocType: Contact Us Settings,Settings for Contact Us Page,Cilësimet për Na Kontaktoni DocType: Social Login Key,Social Login Provider,Ofruesi i Identifikimit Social +DocType: Email Account,"For more information, click here.","Për më shumë informacion, kliko këtu ." DocType: Transaction Log,Previous Hash,Hash e mëparshme DocType: Notification,Value Changed,Vlera e ndryshuar DocType: Report,Report Type,Lloji i raportit @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Rregulla e Energjisë Point apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,Ju lutemi shkruani ID-në e klientit përpara se të aktivizohet identifikimi shoqëror DocType: Communication,Has Attachment,Ka bashkëngjitje DocType: User,Email Signature,Email nënshkrim -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} vit (e) më parë ,Addresses And Contacts,Adresat dhe Kontaktet apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Ky bord Kanban do të jetë privat DocType: Data Migration Run,Current Mapping,Mapping aktuale @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Ju jeni duke zgjedhur Opsionin Sync si GJITHA, Ai do të ri-sincron të gjithë \ lexuar, si dhe mesazhin e palexuar nga serveri. Kjo gjithashtu mund të shkaktojë kopjimin e komunikimit (email)." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},E sinkronizuar e fundit {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Nuk mund të ndryshojë përmbajtjen e kokës +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Nuk u gjetën rezultate për '

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Nuk lejohet të ndryshojë {0} pas dorëzimit apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Aplikacioni është përditësuar në një version të ri, ju lutemi rifreskoni këtë faqe" DocType: User,User Image,Image përdorues @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Shën apps/frappe/frappe/public/js/frappe/chat.js,Discard,heq dorë nga DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Përzgjidhni një imazh me gjerësi përafërsisht 150px me një sfond transparent për rezultatet më të mira. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,relapsed +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} vlerat e zgjedhura DocType: Blog Post,Email Sent,Posta elektronike u dërgua DocType: Communication,Read by Recipient On,Lexo nga Përfituesi DocType: User,Allow user to login only after this hour (0-24),Lejo përdoruesit të identifikoheni vetëm pas kësaj ore (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Moduli për eksport DocType: DocType,Fields,Fields -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Nuk ju lejohet të shtypni këtë dokument +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Nuk ju lejohet të shtypni këtë dokument apps/frappe/frappe/public/js/frappe/model/model.js,Parent,prind apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Sesioni yt ka skaduar, identifikohu përsëri për të vazhduar." DocType: Assignment Rule,Priority,prioritet @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Rivendosni sekreti DocType: DocType,UPPER CASE,ME SHKRONJA KAPITALE apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,Vendosni adresën e emailit DocType: Communication,Marked As Spam,Shënuar si Spam +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"Adresa e emailit, kontaktet e të cilit në Google duhet të sinkronizohen." apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Abonentët e Importit apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Ruaj filtrin DocType: Address,Preferred Shipping Address,Adresa e Preferuar e Transportit DocType: GCalendar Account,The name that will appear in Google Calendar,Emri që do të shfaqet në Google Calendar +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Kliko në {0} për të gjeneruar Shifrën e Rifreskimit. DocType: Email Account,Disable SMTP server authentication,Çaktivizo autentifikimin e serverit SMTP DocType: Email Account,Total number of emails to sync in initial sync process ,Numri total i emaileve për të sinkronizuar në procesin e sinkronizimit fillestar DocType: System Settings,Enable Password Policy,Aktivizo politikën e fjalëkalimeve @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Fut kodin apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Jo në DocType: Auto Repeat,Start Date,Data e fillimit apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Cakto tabelën +DocType: Website Theme,Theme JSON,Tema JSON apps/frappe/frappe/www/list.py,My Account,Llogaria ime DocType: DocType,Is Published Field,Është fusha e botuar DocType: DocField,Set non-standard precision for a Float or Currency field,Vendosni precizion jo-standard për një fushë Float ose Currency @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Shto Reference: {{ reference_doctype }} {{ reference_name }} për të dërguar referencën e dokumentit DocType: LDAP Settings,LDAP First Name Field,Fusha e parë e LDAP apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Dërgimi i parazgjedhur dhe Kutia në hyrje -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Personalizoni Formularin apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.","Për përditësimin, mund të përditësoni vetëm kolona selektive." apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',Default për llojin 'Check' të fushës duhet të jetë ose '0' ose '1' apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Ndaje këtë dokument me @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Fushat HTML DocType: Blog Settings,Blog Settings,Rregullimet e Blog apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Emri DocType duhet të fillojë me një letër dhe mund të përbëhet vetëm nga letra, numra, hapësira dhe nënvizime" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup> Permissions User DocType: Communication,Integrations can use this field to set email delivery status,Integrimet mund të përdorin këtë fushë për të vendosur statusin e shpërndarjes së postës elektronike apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Cilësimet e portës së pagesës së shiritit DocType: Print Settings,Fonts,fonts DocType: Notification,Channel,kanal DocType: Communication,Opened,Hapur DocType: Workflow Transition,Conditions,Kushtet +apps/frappe/frappe/config/website.py,A user who posts blogs.,Një përdorues që poston blogje. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Mos keni llogari? Regjistrohu apps/frappe/frappe/utils/file_manager.py,Added {0},Shtuar {0} DocType: Newsletter,Create and Send Newsletters,Krijo dhe Dërgo Buletinet DocType: Website Settings,Footer Items,Artikuj të Footer +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Ju lutemi të konfiguroni llogarinë e Email-it të Parazgjedhur nga Konfigurimi> Email> Llogari Email DocType: Website Slideshow Item,Website Slideshow Item,Artikulli i Slideshow i Faqes apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Regjistro OAuth Client App DocType: Error Snapshot,Frames,Frames @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Niveli 0 është për lejet e nivelit të dokumentit, \ nivelet më të larta për lejet në nivel fushë." DocType: Address,City/Town,Qyteti / Qyteti DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Kjo do të rivendosë temën tuaj aktuale, a jeni i sigurt se doni të vazhdoni?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Fushat e detyrueshme të kërkuara në {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Gabim gjatë lidhjes me llogarinë e postës elektronike {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Ndodhi një gabim gjatë krijimit të përsëritjes @@ -528,7 +537,7 @@ DocType: Event,Event Category,Kategoria e ngjarjes apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Kolona në bazë të apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Ndrysho titullin DocType: Communication,Received,marrë -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Nuk ju lejohet të hyni në këtë faqe. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Nuk ju lejohet të hyni në këtë faqe. DocType: User Social Login,User Social Login,Identifikimi i përdoruesit apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,Shkruani një skedar Python në të njëjtën dosje ku kjo është ruajtur dhe ktheni kolonën dhe rezultatin. DocType: Contact,Purchase Manager,Menaxheri i Blerjes @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konf apps/frappe/frappe/utils/data.py,Operator must be one of {0},Operatori duhet të jetë një nga {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Nëse pronari DocType: Data Migration Run,Trigger Name,Emri i shkyçjes -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Shkruani titujt dhe prezantimet në blogun tuaj. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Hiq fushën apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Mbyll të gjitha apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Ngjyrë e sfondit @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,bar DocType: SMS Settings,Enter url parameter for message,Fut parametrin url për mesazhin apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Formati i ri i printimit personal apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} ekziston tashmë +DocType: Workflow Document State,Is Optional State,Është Shtesë Opsionale DocType: Address,Purchase User,Blerje Përdorues DocType: Data Migration Run,Insert,Fut DocType: Web Form,Route to Success Link,Rrugë për suksesin Link @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Përdor DocType: File,Is Home Folder,Është dosja kryesore apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Lloji: DocType: Post,Is Pinned,Është mbështjellë -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Nuk ka leje për '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Nuk ka leje për '{0}' {1} DocType: Patch Log,Patch Log,Identifikohu Patch DocType: Print Format,Print Format Builder,Formati i Printimit të Printimit 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","Nëse aktivizohet, të gjithë përdoruesit mund të identifikohen nga çdo adresë IP duke përdorur Auth Auth. Kjo gjithashtu mund të vendoset vetëm për përdorues të veçantë në faqen e përdoruesit" apps/frappe/frappe/utils/data.py,only.,vetëm. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,Kushti '{0}' është i pavlefshëm DocType: Auto Email Report,Day of Week,Dita e Javës +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Aktivizo Google API në Cilësimet e Google. DocType: DocField,Text Editor,Editor teksti apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Prerje apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Kërko ose shkruaj një komandë @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,Numri i kopjeve të DB nuk mund të jetë më pak se 1 DocType: Workflow State,ban-circle,Ban-rrethi DocType: Data Export,Excel,shquhem +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Header, Breadcrumbs dhe Meta Tags" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Adresa e emailit nuk është e specifikuar DocType: Comment,Published,publikuar DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","Shënim: Për rezultatet më të mira, imazhet duhet të jenë të së njëjtës madhësi dhe gjerësi duhet të jenë më të mëdha se lartësia." @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Aktiviteti i Fundit i Planifikuesi apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Raporti i të gjitha aksioneve të dokumentit DocType: Website Sidebar Item,Website Sidebar Item,Artikulli i faqes së internetit apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Për të bërë +DocType: Google Settings,Google Settings,Cilësimet e Google apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Zgjidhni vendin tuaj, zonën kohore dhe monedhën" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Shkruani këtu parametrat statik të url (P.sh. dërguesi = ERPNext, username = ERPNext, password = 1234 etj)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Asnjë llogari e postës elektronike @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token ,Setup Wizard,Udhëzuesi i konfigurimit apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Toggle Chart +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,syncing DocType: Data Migration Run,Current Mapping Action,Veprimi i hartës aktuale DocType: Email Account,Initial Sync Count,Pika fillestare e sinkronizimit apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Cilësimet për Na Kontaktoni. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Lloji i formatit të printimit apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Nuk ka leje për këtë kriter. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Zgjero të gjitha +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nuk u gjet asnjë model i parazgjedhur i adresës. Lutemi të krijoni një të ri nga Setup> Printing and Branding> Template Adresa. DocType: Tag Doc Category,Tag Doc Category,Etiketa Kategoria e dokumentit DocType: Data Import,Generated File,Dosja e gjeneruar apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Shënime @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Fusha e afateve duhet të jetë Link ose Lidhje Dinamike DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Njoftimet dhe pjesa më e madhe e postës do të dërgohet nga ky server që po largohet. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Ky është një fjalëkalim më i zakonshëm i 100. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Dërgo Permanently {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Dërgo Permanently {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} nuk ekziston, zgjidhni një objektiv të ri për t'u bashkuar" DocType: Energy Point Rule,Multiplier Field,Fusha e shumëfishtë DocType: Workflow,Workflow State Field,Fusha Shtetërore e Punës @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} vlerësoi punën tuaj në {1} me {2} pikë DocType: Auto Email Report,Zero means send records updated at anytime,Zero nënkupton dërgimin e të dhënave të përditësuara në çdo kohë apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Vlera nuk mund të ndryshohet për {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Cilësimet e Google API. DocType: System Settings,Force User to Reset Password,Forconi Përdoruesin të Rivendosni Fjalëkalimin apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Raportet e raportit ndërtues menaxhohen direkt nga ndërtuesi i raportit. Asgje per te bere. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Ndrysho filtrin @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,per DocType: S3 Backup Settings,eu-north-1,eu-veri-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Vetëm një rregull lejohet me të njëjtin rol, nivel dhe {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Nuk ju lejohet të përditësoni këtë Dokument të Formës Web -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Limiti maksimal i bashkëngjitjes për këtë rekord arriti. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Limiti maksimal i bashkëngjitjes për këtë rekord arriti. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,Sigurohu që Dokumentet e Komunikimit të Referencës të mos lidhen në mënyrë qarkore. DocType: DocField,Allow in Quick Entry,Lejo hyrjen e shpejtë DocType: Error Snapshot,Locals,vendorët @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Lloji i përjashtimit apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},Nuk mund të fshihet ose anulohet sepse {0} {1} lidhet me {2} {3} {4} apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,Sekreti i OTP mund të rivendoset vetëm nga administratori. -DocType: Web Form Field,Page Break,Pushim i faqes DocType: Website Script,Website Script,Website Script DocType: Integration Request,Subscription Notification,Njoftimi i abonimit DocType: DocType,Quick Entry,Hyrja e shpejte @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,Vendosni pronën pas paralajmëri apps/frappe/frappe/__init__.py,Thank you,Faleminderit apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Webhooks i ngathët për integrimin e brendshëm apps/frappe/frappe/config/settings.py,Import Data,Të dhënat e importit +DocType: Translation,Contributed Translation Doctype Name,Emri i doktorit të përkthimit të kontributuar DocType: Social Login Key,Office 365,Zyra 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID DocType: Review Level,Review Level,Niveli i Rishikimit @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Done me sukses apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Lista apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,vlerësoj -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),I ri {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Është Kontakti Primar DocType: Print Format,Raw Commands,Komandat e papërpunuara apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Formatet e stilet për formatet e printimit @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Gabimet në Ngjarj apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Gjeni {0} në {1} DocType: Email Account,Use SSL,Përdor SSL DocType: DocField,In Standard Filter,Në Filtrin Standard +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Asnjë kontakt i Google nuk prezantohet për sinkronizim. DocType: Data Migration Run,Total Pages,Totali i faqeve apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: Fusha '{1}' nuk mund të vendoset si Unique pasi ka vlera jo-unike DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Nëse aktivizohet, përdoruesit do të njoftohen çdo herë që identifikohen. Nëse nuk aktivizohet, përdoruesit do të njoftohen vetëm një herë." @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,automatizim apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Hiq fotografi ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Kërko për '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Dicka shkoi keq -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Ju lutemi të ruani para se të bashkëngjitni. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,Ju lutemi të ruani para se të bashkëngjitni. DocType: Version,Table HTML,Tabela HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,qendër DocType: Page,Standard,standard @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Nuk ka rezu apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} të dhënat janë fshirë apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,Diçka shkoi keq ndërsa krijoi shenjën e aksesit të dropbox. Ju lutemi kontrolloni logun e gabimeve për më shumë detaje. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Pasardhësit e -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nuk u gjet asnjë model i parazgjedhur i adresës. Lutemi të krijoni një të ri nga Setup> Printing and Branding> Template Adresa. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Kontaktet e Google janë konfiguruar. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Fshih detajet apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Stilet e shkronjave apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Abonimi juaj do të përfundojë në {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Autentifikimi dështoi gjatë marrjes së emaileve nga llogaria e postës elektronike {0}. Mesazh nga serveri: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Statistikat e bazuara në performancën e javës së kaluar (nga {0} deri {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,Lidhja automatike mund të aktivizohet vetëm nëse Hyrja është aktivizuar. DocType: Website Settings,Title Prefix,Prefiksi i titullit apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Aplikacionet e autentifikimit që mund të përdorni janë: DocType: Bulk Update,Max 500 records at a time,Max 500 regjistrime në një kohë @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,Filtrat e raportit apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Zgjidh kolonat DocType: Event,Participants,pjesëmarrësit DocType: Auto Repeat,Amended From,Ndryshuar nga -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Informacioni juaj është dërguar +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Informacioni juaj është dërguar DocType: Help Category,Help Category,Ndihmë Kategoria apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 muaj apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Përzgjidhni një format ekzistues për të modifikuar ose filluar një format të ri. @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Fusha për të ndjekur DocType: User,Generate Keys,Krijo çelësat DocType: Comment,Unshared,i pandarë -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Saved +DocType: Translation,Saved,Saved DocType: OAuth Client,OAuth Client,OAuth Client DocType: System Settings,Disable Standard Email Footer,Çaktivizo tabelën standarde të email-it apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Formati i printimit {0} është çaktivizuar @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Përditësuar DocType: Data Import,Action,veprim apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Çelësi i klientit kërkohet DocType: Chat Profile,Notifications,Njoftime +DocType: Translation,Contributed,kontribuar DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy DocType: Report,Custom Report,Raport i personalizuar DocType: Workflow State,info-sign,info-shenjë @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,kontakt DocType: LDAP Settings,LDAP Username Field,Fusha e përdoruesit LDAP apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} fushë nuk mund të vendoset si unik në {1}, pasi ka vlera jo-unike ekzistuese" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Setup> Personalizoni Formularin DocType: User,Social Logins,Identifikimet shoqërore DocType: Workflow State,Trash,plehra DocType: Stripe Settings,Secret Key,Çelësi sekret @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,Fusha e titullit apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Nuk mund të lidhej me serverin e postës elektronike që po largohej DocType: File,File URL,URL e dokumentit DocType: Help Article,Likes,preferencë +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Integrimi i Kontakteve me Google është çaktivizuar. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Duhet të keni hyrë brenda dhe të keni Roli i Menaxhimit të Sistemit për të qenë në gjendje të hyni në kopjet rezervë. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Niveli i Parë DocType: Blogger,Short Name,Emer i shkurter @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Importi Zip DocType: Contact,Gender,gjini DocType: Workflow State,thumbs-down,thumbs-down -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Rresht duhet të jetë një nga {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Nuk mund të caktohet Njoftimi për Tipin e Dokumentit {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Shtimi i Menaxherit të Sistemit në këtë Përdorues pasi duhet të ketë atleast një Menaxher të Sistemit apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Mesazhi i mirëseardhjes dërguar DocType: Transaction Log,Chaining Hash,Zinxhiri Hash DocType: Contact,Maintenance Manager,Menaxher mirembajtje +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Për krahasim, përdorni> 5, <10 ose = 324. Për vargjet, përdorni 5:10 (për vlerat ndërmjet 5 dhe 10)." apps/frappe/frappe/utils/bot.py,show,shfaqje apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Ndaje URL-në apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Formati i dokumenteve të pambështetur @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,Njoftim DocType: Data Import,Show only errors,Shfaq vetëm gabime DocType: Energy Point Log,Review,rishikim apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Rreshtat e fshirë -DocType: GSuite Settings,Google Credentials,Kredencialet e Google +DocType: Google Settings,Google Credentials,Kredencialet e Google apps/frappe/frappe/www/login.html,Or login with,Ose identifikohuni me apps/frappe/frappe/model/document.py,Record does not exist,Regjistrimi nuk ekziston apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Emri i Raportit të ri @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,Listë DocType: Workflow State,th-large,th-të mëdha apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Nuk mund të caktojë Cakto Shto nëse nuk është i Dorëzueshëm apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Nuk lidhet me asnjë rekord +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Gabim gjatë lidhjes me Aplikimi Tray QZ ...

Ju duhet të keni instaluar dhe aktivizuar aplikacionin QZ Tray, për të përdorur tiparin e printimit Raw.

Kliko këtu për të shkarkuar dhe instaluar QZ Tray .
Kliko këtu për të mësuar më shumë rreth Printimit Raw ." DocType: Chat Message,Content,përmbajtje DocType: Workflow Transition,Allow Self Approval,Lejo Vetë Miratimin apps/frappe/frappe/www/qrcode.py,Page has expired!,Faqja ka skaduar! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,dora e djathtë DocType: Website Settings,Banner is above the Top Menu Bar.,Banneri është mbi butonin e menysë kryesore. apps/frappe/frappe/www/update-password.html,Invalid Password,Fjalëkalim i pavlefshëm apps/frappe/frappe/utils/data.py,1 month ago,1 muaj me pare +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Lejo hyrjen në Kontaktet e Google DocType: OAuth Client,App Client ID,ID e aplikacionit të klientit DocType: DocField,Currency,monedhë DocType: Website Settings,Banner,flamur @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,qëllim DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Nëse një Rol nuk ka qasje në nivelin 0, atëherë nivelet më të larta janë të pakuptimta." DocType: ToDo,Reference Type,Lloji i referencës -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Lejimi i DocType, DocType. Bej kujdes!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Lejimi i DocType, DocType. Bej kujdes!" DocType: Domain Settings,Domain Settings,Cilësimet e domain DocType: Auto Email Report,Dynamic Report Filters,Filtrat e Raportit Dinamik DocType: Energy Point Log,Appreciation,Vleresim @@ -1468,6 +1489,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,SHBA-west-2 DocType: DocType,Is Single,Është e Vetme apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Krijo një Format të Ri +DocType: Google Contacts,Authorize Google Contacts Access,Autorizo qasjen në Kontaktet e Google DocType: S3 Backup Settings,Endpoint URL,URL e mbarimit DocType: Social Login Key,Google,Google DocType: Contact,Department,repart @@ -1482,7 +1504,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Caktojë DocType: List Filter,List Filter,Filter Lista DocType: Dashboard Chart Link,Chart,tabelë apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Nuk mund të hiqet -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Dorëzoni këtë dokument për të konfirmuar +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Dorëzoni këtë dokument për të konfirmuar apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} tashmë ekziston. Zgjidh një emër tjetër apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Keni ndryshime të ruajtura në këtë formular. Ju lutemi të ruani para se të vazhdoni. apps/frappe/frappe/model/document.py,Action Failed,Veprimi dështoi @@ -1564,6 +1586,7 @@ DocType: DocField,Display,ekran apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Përgjigju All DocType: Calendar View,Subject Field,Fusha e lëndës apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Skadimi i sesionit duhet të jetë në formatin {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},Aplikimi: {0} DocType: Workflow State,zoom-in,zoom-in apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Dështoi për t'u lidhur me serverin apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Data {0} duhet të jetë në format: {1} @@ -1575,8 +1598,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Ikona do të shfaqet në butonin DocType: Role Permission for Page and Report,Set Role For,Vendosni rolin për +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Lidhja automatike mund të aktivizohet vetëm për një llogari të postës elektronike. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Asnjë Llogari Email nuk është caktuar +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Llogaria e postës elektronike nuk është konfiguruar. Lutemi të krijoni një llogari të re të postës elektronike nga konfigurimi> Email> Llogaria e postës elektronike apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,detyrë +DocType: Google Contacts,Last Sync On,Sinkronizimi i fundit në apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},fitohet nga {0} me anë të rregullit automatik {1} apps/frappe/frappe/config/website.py,Portal,portal apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Ju falënderoj për email-it tuaj @@ -1597,7 +1623,6 @@ DocType: GSuite Settings,GSuite Settings,Cilësimet e GSuite DocType: Integration Request,Remote,i largët DocType: File,Thumbnail URL,URL e Thumbnail apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Shkarko Raportin -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup> Përdoruesi apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Personalizimet për {0} eksportohen në:
{1} DocType: GCalendar Account,Calendar Name,Emri i Kalendarit apps/frappe/frappe/templates/emails/new_user.html,Your login id is,ID juaj e identifikimit është @@ -1647,6 +1672,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Shko apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Fusha e imazhit duhet të jetë një fushë e vlefshme fushë apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,Duhet të keni hyrë brenda për të hyrë në këtë faqe DocType: Assignment Rule,Example: {{ subject }},Shembull: {{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Emri i fushës {0} është i kufizuar apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Nuk mund të ndreqësh 'Lexo vetëm' për fushën {0} DocType: Social Login Key,Enable Social Login,Aktivizo regjistrimin shoqëror DocType: Workflow,Rules defining transition of state in the workflow.,Rregullat që përcaktojnë tranzicionin e shtetit në rrjedhën e punës. @@ -1667,10 +1693,10 @@ DocType: Website Settings,Route Redirects,Rruga përcjell apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Kutia e postës elektronike apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},restauruar {0} si {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Cakto automatikisht dokumente për përdoruesit +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Hapni Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Modelet e postës elektronike për pyetjet e zakonshme. DocType: Letter Head,Letter Head Based On,Kreu Letër Bazuar apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Mbyll këtë dritare -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Pagesa e plotë DocType: Contact,Designation,përcaktim DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Meta Tags @@ -1709,6 +1735,7 @@ DocType: System Settings,Choose authentication method to be used by all users,Zg DocType: Error Snapshot,Parent Error Snapshot,Snapshot e gabimit të prindërve DocType: GCalendar Account,GCalendar Account,Llogari GCalendar DocType: Language,Language Name,Emri i gjuhës +DocType: Workflow Document State,Workflow Action is not created for optional states,Veprimi i punës nuk është krijuar për shtetet opsionale DocType: Customize Form,Customize Form,Personalizo Formularin DocType: DocType,Image Field,Fusha e imazhit apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Shtuar {0} ({1}) @@ -1750,6 +1777,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,Aplikoni këtë rregull nëse Përdoruesi është pronari DocType: About Us Settings,Org History Heading,Kreu i Historisë së Org apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Gabim në server +DocType: Contact,Google Contacts Description,Përshkrimi i Kontakteve të Google apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Rolet standarde nuk mund të riemërtohen DocType: Review Level,Review Points,Pikat e Shqyrtimit apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Parametri i humbur Kanban Board Name @@ -1767,7 +1795,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Jo në modalitetin e zhvilluesit! Vendosni në site_config.json ose bëni 'Custom' DocType. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,fitoi {0} pikë DocType: Web Form,Success Message,Mesazhi i suksesit -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Për krahasim, përdorni> 5, <10 ose = 324. Për vargjet, përdorni 5:10 (për vlerat ndërmjet 5 dhe 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Përshkrimi për faqen e listimit, në tekst të thjeshtë, vetëm disa rreshta. (maksimumi 140 karaktere)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Trego lejet DocType: DocType,Restrict To Domain,Kufizo në Domain @@ -1789,6 +1816,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Jo Par apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Vendos Sasia DocType: Auto Repeat,End Date,Data e përfundimit DocType: Workflow Transition,Next State,Shteti tjeter +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Kontaket e Google janë sinkronizuar. DocType: System Settings,Is First Startup,Është fillimi i parë apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},i përditësuar për {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Leviz ne @@ -1838,6 +1866,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Kalendari apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Modeli i Importimit të të Dhënave DocType: Workflow State,hand-left,dorës së majtë +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Përzgjidhni disa elementë të listës apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Madhësia e rezervës: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Lidhur me {0} DocType: Braintree Settings,Private Key,Çelësi privat @@ -1880,13 +1909,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,interes DocType: Bulk Update,Limit,limit DocType: Print Settings,Print taxes with zero amount,Printoni taksat me shumën zero -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Llogaria e postës elektronike nuk është konfiguruar. Lutemi të krijoni një llogari të re të postës elektronike nga konfigurimi> Email> Llogaria e postës elektronike DocType: Workflow State,Book,libër DocType: S3 Backup Settings,Access Key ID,Identifikimi kyç i çelësit DocType: Chat Message,URLs,URL apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Emrat dhe mbiemrat vetë janë të lehta për t'u menduar. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Raporti {0} DocType: About Us Settings,Team Members Heading,Anëtarët e Grupit Drejtues +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Zgjidhni artikullin e listës apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Dokumenti {0} është caktuar për të deklaruar {1} nga {2} DocType: Address Template,Address Template,Modeli i adresës DocType: Workflow State,step-backward,hap prapa @@ -1910,6 +1939,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Lejo privilegjet e eksportit apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Asnjë: Fundi i rrjedhës së punës DocType: Version,Version,Version +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Hapni artikullin e listës apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 muaj DocType: Chat Message,Group,grup apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Ka ndonjë problem me urlun e skedarit: {0} @@ -1965,6 +1995,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 vit apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} rikthen pikat tuaja në {1} DocType: Workflow State,arrow-down,shigjetë-down DocType: Data Import,Ignore encoding errors,Ignore gabimet e kodimit +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,peizazh DocType: Letter Head,Letter Head Name,Emri Shef i Letrës DocType: Web Form,Client Script,Klienti Script DocType: Assignment Rule,Higher priority rule will be applied first,Rregulli me prioritet më të lartë do të zbatohet së pari @@ -2009,6 +2040,7 @@ DocType: Kanban Board Column,Green,e gjelbër apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Vetëm fushat e detyrueshme janë të nevojshme për regjistrime të reja. Ju mund të fshini kolona jo të detyrueshme nëse dëshironi. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} duhet të fillojë dhe të përfundojë me një letër dhe mund të përmbajë vetëm letra, vizë ndarje ose nënvizim." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Aktivizo Fillestar i Aktivitetit apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Krijo Email Përdorues apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Fusha e Rendit {0} duhet të jetë një emër fushë i vlefshëm DocType: Auto Email Report,Filter Meta,Filter Meta @@ -2038,6 +2070,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Fusha Kohore apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Loading ... DocType: Auto Email Report,Half Yearly,Gjysmë vjetore +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Profili im apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Data e fundit e modifikuar DocType: Contact,First Name,Emri DocType: Post,Comments,Comments @@ -2060,6 +2093,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Përmbajtja Hash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Postimet nga {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} caktuar {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Asnjë kontakt i ri me Google nuk është sinkronizuar. DocType: Workflow State,globe,botë apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Mesatarja e {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Pastro regjistra gabimi @@ -2086,6 +2120,8 @@ DocType: Workflow State,Inverse,i anasjellë DocType: Activity Log,Closed,Mbyllur DocType: Report,Query,pyetje DocType: Notification,Days After,Ditë Pas +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Shkurtesat e faqes +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,portret apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Kërkesa me kohë DocType: System Settings,Email Footer Address,Adresa e Email Footer apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Azhurnimi i pikës së energjisë @@ -2113,6 +2149,7 @@ For Select, enter list of Options, each on a new line.","Për Lidhjet, futni Doc apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 minutë më parë apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Nuk ka Sesione Aktive apps/frappe/frappe/model/base_document.py,Row,rresht +DocType: Contact,Middle Name,Emri i mesëm apps/frappe/frappe/public/js/frappe/request.js,Please try again,Ju lutemi provoni përsëri DocType: Dashboard Chart,Chart Options,Opsionet e grafikut DocType: Data Migration Run,Push Failed,Push Dështoi @@ -2141,6 +2178,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,resize-vogël DocType: Comment,Relinked,relinked DocType: Role Permission for Page and Report,Roles HTML,Rolet HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,shkoj apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Fluksi i punës do të fillojë pas kursimit. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Nëse të dhënat tuaja janë në HTML, ju lutemi kopjoni ngjitni kodin e saktë HTML me etiketat." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Datat janë shpesh të lehta për t'u menduar. @@ -2169,7 +2207,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Icon Desktop apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,anuloi këtë dokument apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Data Range -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Setup> Permissions User apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} vlerësoi {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Vlerat ndryshuan apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Gabim në Njoftim @@ -2234,6 +2271,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Fshi Bulk DocType: DocShare,Document Name,Emri i Dokumentit apps/frappe/frappe/config/customization.py,Add your own translations,Shtoni përkthimet tuaja +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Lundroni listën poshtë DocType: S3 Backup Settings,eu-central-1,BE qendror-1 DocType: Auto Repeat,Yearly,vjetor apps/frappe/frappe/public/js/frappe/model/model.js,Rename,riemërtoj @@ -2284,6 +2322,7 @@ DocType: Workflow State,plane,aeroplan apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Gabim i vendosur i vendosur. Ju lutemi kontaktoni Administratorin. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Trego raportin DocType: Auto Repeat,Auto Repeat Schedule,Përsëritni orarin e përsëritjes +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Shiko Ref DocType: Address,Office,Zyrë DocType: LDAP Settings,StartTLS,STARTTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} ditë më parë @@ -2317,7 +2356,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Vl apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Cilësimet e mia apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Emri i grupit nuk mund të jetë i zbrazët. DocType: Workflow State,road,rrugë -DocType: Website Route Redirect,Source,burim +DocType: Contact,Source,burim apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Sesionet aktive apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Mund të ketë vetëm një Fletë në një formë apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Chat i ri @@ -2339,6 +2378,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Ju lutem shkruani Authorize URL DocType: Email Account,Send Notification to,Dërgo Njoftim tek apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Cilësimet e ruajtjes së Dropbox +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,Diçka shkoi keq gjatë brezit token. Klikoni në {0} për të krijuar një të re. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Hiq të gjitha përshtatjet? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Vetëm Administratori mund të modifikojë DocType: Auto Repeat,Reference Document,Dokumenti i referencës @@ -2363,6 +2403,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Rolet mund të vendosen për përdoruesit nga faqja e tyre e përdoruesit. DocType: Website Settings,Include Search in Top Bar,Përfshirja e kërkimit në Top Bar apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Urgjent] Gabim gjatë krijimit të përsëritjes% s për% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Shortcuts Global DocType: Help Article,Author,autor DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Asnjë dokument nuk u gjet për filtrat e dhënë @@ -2398,10 +2439,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, Row {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Nëse jeni duke ngarkuar të dhëna të reja, "Emërtimi i Serisë" bëhet i detyrueshëm, nëse është i pranishëm." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Ndrysho pronat -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Nuk mund të hapë shembullin kur {0} është e hapur +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,Nuk mund të hapë shembullin kur {0} është e hapur DocType: Activity Log,Timeline Name,Emri i Afatit DocType: Comment,Workflow,Workflow apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Vendosja e URL-së bazë në çelësin e identifikimit social për Frappe +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Shkurtoret e tastierës DocType: Portal Settings,Custom Menu Items,Artikujt e Menusë Custom apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,Gjatësia e {0} duhet të jetë midis 1 dhe 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Lidhja ka humbur. Disa veçori mund të mos funksionojnë. @@ -2464,6 +2506,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Rregjitë e DocType: DocType,Setup,Setup apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} u krijua me sukses apps/frappe/frappe/www/update-password.html,New Password,Fjalëkalim i ri +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Zgjidh fushën apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Lëreni këtë bisedë DocType: About Us Settings,Team Members,Anëtarët e Ekipit DocType: Blog Settings,Writers Introduction,Shkrimtarët Hyrje @@ -2533,13 +2576,12 @@ DocType: Chat Room,Name,emër DocType: Communication,Email Template,Modeli i Email-it DocType: Energy Point Settings,Review Levels,Nivelet e Shqyrtimit DocType: Print Format,Raw Printing,Printime të papërpunuara -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Nuk mund të hapet {0} kur hapja e saj është e hapur +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,Nuk mund të hapet {0} kur hapja e saj është e hapur DocType: DocType,"Make ""name"" searchable in Global Search",Bëni "emër" të kërkueshëm në Kërkimin Global DocType: Data Migration Mapping,Data Migration Mapping,Hartimi i Migrimit të të Dhënave DocType: Data Import,Partially Successful,Pjesërisht i suksesshëm DocType: Communication,Error,gabim apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fusha e tipit nuk mund të ndryshohet nga {0} në {1} në rreshtin {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Gabim gjatë lidhjes me Aplikimi Tray QZ ...

Ju duhet të keni instaluar dhe aktivizuar aplikacionin QZ Tray, për të përdorur tiparin e printimit Raw.

Kliko këtu për të shkarkuar dhe instaluar QZ Tray .
Kliko këtu për të mësuar më shumë rreth Printimit Raw ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Bëj foto apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,Shmangni vitet që lidhen me ju. DocType: Web Form,Allow Incomplete Forms,Lejo format e paplotësuara @@ -2635,7 +2677,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Zgjidh target = "_blank" për të hapur në një faqe të re. DocType: Portal Settings,Portal Menu,Menu Portal DocType: Website Settings,Landing Page,Landing Page -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,Ju lutemi regjistrohuni ose identifikohuni për të filluar DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opsionet e kontaktit, si "Query Sales, Query Support" etj secili në një rresht të ri ose të ndara me presje." apps/frappe/frappe/twofactor.py,Verfication Code,Kodi i Verifikimit apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} tashmë i çabonuar @@ -2721,6 +2762,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Hartimi i Plani DocType: Address,Sales User,Shitësi i Përdoruesit apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Ndrysho pronat në terren (fsheh, lexo, leje etj.)" DocType: Property Setter,Field Name,Emri i fushes +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,klient DocType: Print Settings,Font Size,Përmasa e germave DocType: User,Last Password Reset Date,Data e fundit e rivendosjes së fjalëkalimit DocType: System Settings,Date and Number Format,Formati i datës dhe numrit @@ -2786,6 +2828,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Njësia e Grupi apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Bashkohu me ekzistuesin DocType: Blog Post,Blog Intro,Blog Intro apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Përmendja e re +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Shko te fusha DocType: Prepared Report,Report Name,Emri i raportit apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Ju lutemi rifreskoni për të marrë dokumentin më të fundit. apps/frappe/frappe/core/doctype/communication/communication.js,Close,afër @@ -2795,10 +2838,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,ngjarje DocType: Social Login Key,Access Token URL,Hyni në Token URL apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Vendosni çelësat e qasjes në Dropbox në konfigurimin e sitit tuaj +DocType: Google Contacts,Google Contacts,Kontaktet e Google DocType: User,Reset Password Key,Rivendos çelësin e fjalëkalimit apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Ndryshuar nga DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.","Për të rinovuar, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,U ruajt me sukses +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Dërgo një email tek {0} për ta lidhur atë këtu. DocType: File,Folder,dosje DocType: DocField,Perm Level,Niveli Perm DocType: Print Settings,Page Settings,Cilësimet e faqes @@ -2828,6 +2874,7 @@ DocType: Workflow State,remove-sign,hequr-shenjë DocType: Dashboard Chart,Full,i plotë DocType: DocType,User Cannot Create,Përdoruesi nuk mund të krijojë apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Ju fituat {0} pikë +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup> Përdoruesi DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Nëse vendosni këtë, ky artikull do të vijë në një drop-down nën prindin e përzgjedhur." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Asnjë postë elektronike apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Fushat e mëposhtme mungojnë: @@ -2841,13 +2888,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Shf DocType: Web Form,Web Form Fields,Fushat e Formës Web DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Formati i editueshëm i përdoruesit në faqen e internetit. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Permanently Anulo {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Permanently Anulo {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Opsioni 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,totalet apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Ky është një fjalëkalim shumë i zakonshëm. DocType: Personal Data Deletion Request,Pending Approval,Miratim në pritje apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Dokumenti nuk mund të caktohej saktë apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Nuk lejohet për {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Nuk ka vlera për tu treguar DocType: Personal Data Download Request,Personal Data Download Request,Kërkesa për shkarkimin e të dhënave personale apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} e ndan këtë dokument me {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Përzgjidhni {0} @@ -2863,7 +2911,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Kjo email u dërgua në {0} dhe u kopjua në {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,Hyrje ose fjalëkalim i pavlefshëm DocType: Social Login Key,Social Login Key,Çelësi i identifikimit shoqëror -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Ju lutemi të konfiguroni llogarinë e Email-it të Parazgjedhur nga Konfigurimi> Email> Llogari Email apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filtrat u ruajtën DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Si duhet të formohet kjo monedhë? Nëse nuk është vendosur, do të përdorë parazgjedhjet e sistemit" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} është vendosur të deklarojë {2} @@ -2989,6 +3036,7 @@ DocType: User,Location,vend apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Nuk ka të dhëna DocType: Website Meta Tag,Website Meta Tag,Meta Tag Website DocType: Workflow State,film,film +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Kopjohet në clipboard. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Cilësimet nuk u gjetën apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Etiketa është e detyrueshme DocType: Webhook,Webhook Headers,Webhook Headers @@ -3197,7 +3245,7 @@ DocType: Address,Address Line 1,Linja e Adresës 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Për Tipin e Dokumentit apps/frappe/frappe/model/base_document.py,Data missing in table,Të dhënat mungojnë në tabelë apps/frappe/frappe/utils/bot.py,Could not identify {0},Nuk mund të identifikohej {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Kjo formë është modifikuar pasi ta keni ngarkuar atë +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Kjo formë është modifikuar pasi ta keni ngarkuar atë apps/frappe/frappe/www/login.html,Back to Login,Kthehu tek Hyrja apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,E pavendosur DocType: Data Migration Mapping,Pull,Tërhiqe @@ -3265,6 +3313,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Tabela e Tabelës së apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Vendosja e llogarisë së postës elektronike ju lutemi shkruani fjalëkalimin tuaj për: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Shumë shkruan në një kërkesë. Ju lutemi dërgoni kërkesa më të vogla DocType: Social Login Key,Salesforce,Salesforce +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importimi {0} i {1} DocType: User,Tile,tjegull DocType: Email Rule,Is Spam,Është Spam apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,Regjistrimi i plotë @@ -3301,7 +3350,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,dosje-close DocType: Data Migration Run,Pull Update,Tërhiqe përditësimin apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},bashkohen {0} në {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Nuk u gjetën rezultate për '

DocType: SMS Settings,Enter url parameter for receiver nos,Futni parametrin url për numrat e marrësit apps/frappe/frappe/utils/jinja.py,Syntax error in template,Gabim i sintaksës në template apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Vendosni vlerat e filtrave në tabelën e filtrit të raporteve. @@ -3314,6 +3362,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Na vjen keq DocType: System Settings,In Days,Në Ditë DocType: Report,Add Total Row,Shto Rresht Total apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Fillimi i sesionit dështoi +DocType: Translation,Verified,verifikuar DocType: Print Format,Custom HTML Help,Ndihmë Custom HTML DocType: Address,Preferred Billing Address,Adresa e Faturimit e Preferuar apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Caktuar për @@ -3328,7 +3377,6 @@ DocType: Help Article,Intermediate,i ndërmjetëm DocType: Module Def,Module Name,Emri i Modulit DocType: OAuth Authorization Code,Expiration time,Kohën e skadimit apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Vendosni formatin e parazgjedhur, madhësinë e faqes, stilin e printimit etj." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,Ju nuk mund të pëlqeni diçka që keni krijuar DocType: System Settings,Session Expiry,Skadimi i Sesionit DocType: DocType,Auto Name,Emri automatik apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Zgjidh Bashkimet @@ -3356,6 +3404,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Sistemi DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Shënim: Me anë të postës elektronike dërgohen email për kopjet e dështuara. DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm +DocType: Translation,PR sent,PR dërguar DocType: Tag Doc Category,Doctype to Assign Tags,Doctype për Caktimin e Etiketave DocType: Address,Warehouse,depo apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Vendosja e Dropbox @@ -3423,7 +3472,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Shkruani për të shtuar koment apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Fusha {0} nuk është e selektueshme. DocType: User,Birth Date,Data e lindjes -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Me Grumbullimin e Grupeve DocType: List View Setting,Disable Count,Çaktivizo numërimin DocType: Contact Us Settings,Email ID,Email ID apps/frappe/frappe/utils/password.py,Incorrect User or Password,Përdorues i pasaktë ose fjalëkalim @@ -3458,6 +3506,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Ky rol përditëson lejet e përdoruesit për një përdorues DocType: Website Theme,Theme,temë DocType: Web Form,Show Sidebar,Trego Sidebar +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Integrimi i Kontakteve të Google. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Default postë apps/frappe/frappe/www/login.py,Invalid Login Token,Invalid Token Hyrëse apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Së pari vendosni emrin dhe ruani të dhënat. @@ -3485,7 +3534,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Ju lutem korrigjoni DocType: Top Bar Item,Top Bar Item,Artikulli i Barit të Parë ,Role Permissions Manager,Menaxheri i Lejeve të Rolit -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,Kishte gabime. Ju lutem raportoni këtë. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} vit (e) më parë apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,femër DocType: System Settings,OTP Issuer Name,Emri i emetuesit të OTP apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Shtoni në të bëni @@ -3585,6 +3634,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Cilës apps/frappe/frappe/model/document.py,none of,Asnjë nga DocType: Desktop Icon,Page,faqe DocType: Workflow State,plus-sign,plus-shenjë +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Pastro Cache dhe Rifresko apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Nuk mund të azhurnohem: Lidhje e pasaktë / e skaduar. DocType: Kanban Board Column,Yellow,E verdhe DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Numri i shtyllave për një fushë në një Grid (Kolona Totale në një rrjet duhet të jetë më pak se 11) @@ -3599,6 +3649,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Bord DocType: Activity Log,Date,data DocType: Communication,Communication Type,Lloji i komunikimit apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Tabela e prindërve +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Lundroni lart DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Trego Gabimin e Plotë dhe Lejo Raportimin e Çështjeve tek Zhvilluesi DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3620,7 +3671,6 @@ DocType: Notification Recipient,Email By Role,Email Nga Roli apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,Ju lutemi të përditësoni për të shtuar më shumë se {0} abonentë apps/frappe/frappe/email/queue.py,This email was sent to {0},Kjo email u dërgua në {0} DocType: User,Represents a User in the system.,Përfaqëson një përdorues në sistem. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Faqe {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Filloni formatin e ri apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Shto një koment apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} e {1} diff --git a/frappe/translations/sr.csv b/frappe/translations/sr.csv index 8ca4232115..5d27d8a3fd 100644 --- a/frappe/translations/sr.csv +++ b/frappe/translations/sr.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Омогући градијенте DocType: DocType,Default Sort Order,Дефаулт Сорт Сорт apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Приказивање само нумеричких поља из извештаја +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Притисните тастер Алт да бисте активирали додатне пречице у менију и бочној траци DocType: Workflow State,folder-open,фолдер-опен DocType: Customize Form,Is Table,Ис Табле apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Није могуће отворити приложену датотеку. Да ли сте га извезли као ЦСВ? DocType: DocField,No Copy,Но Цопи DocType: Custom Field,Default Value,Задана вриједност apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Аппенд То је обавезно за долазне поруке +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Синхронизовати контакте DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Детаљ пресликавања података apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Унфоллов apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",ПДФ штампање путем "Рав Принт" још није подржано. Уклоните мапирање штампача у Принтер Сеттингс и покушајте поново. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} и {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Дошло је до грешке приликом чувања филтера apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Унесите лозинку apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Није могуће избрисати фасцикле Хоме и Аттацхментс +DocType: Email Account,Enable Automatic Linking in Documents,Омогућите аутоматско повезивање у документима DocType: Contact Us Settings,Settings for Contact Us Page,Подешавања за контакт страницу DocType: Social Login Key,Social Login Provider,Социал Логин Провидер +DocType: Email Account,"For more information, click here.","За више информација, кликните овде ." DocType: Transaction Log,Previous Hash,Превиоус Хасх DocType: Notification,Value Changed,Промењена вредност DocType: Report,Report Type,Тип извештаја @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Енерги Поинт Руле apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,Унесите ИД клијента пре него што се омогући социјална пријава DocType: Communication,Has Attachment,Хас Аттацхмент DocType: User,Email Signature,Емаил Сигнатуре -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} година ,Addresses And Contacts,Адресе и контакти apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Овај Канбан одбор ће бити приватан DocType: Data Migration Run,Current Mapping,Цуррент Маппинг @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Одабирете опцију Синц Оптион као АЛЛ, она ће поново синхронизовати све прочитане и непрочитане поруке са сервера. Ово такође може узроковати дуплирање комуникације (е-поруке)." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Последње синхронизовано {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Није могуће променити садржај заглавља +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Нису пронађени резултати за '

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Није дозвољено да промени {0} након слања apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Апликација је ажурирана на нову верзију, освежите ову страницу" DocType: User,User Image,Усер Имаге @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Оз apps/frappe/frappe/public/js/frappe/chat.js,Discard,Одбаци DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Изаберите слику ширине приближно 150 пиксела са транспарентном позадином за најбоље резултате. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,Поновно +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Изабрано је {0} вредности DocType: Blog Post,Email Sent,Емаил послат DocType: Communication,Read by Recipient On,Реад би Реципиент Он DocType: User,Allow user to login only after this hour (0-24),Дозволите кориснику да се пријави само после овог сата (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,олд_парент apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Модул за извоз DocType: DocType,Fields,Поља -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Није вам дозвољено да штампате овај документ +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Није вам дозвољено да штампате овај документ apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Родитељ apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Ваша сесија је истекла, пријавите се поново да бисте наставили." DocType: Assignment Rule,Priority,Приоритет @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Ресет ОТП DocType: DocType,UPPER CASE,УППЕР ЦАСЕ apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,Поставите адресу е-поште DocType: Communication,Marked As Spam,Означено као нежељена пошта +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Адреса е-поште чије Гоогле контакте треба да се синхронизују. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Увоз претплатника apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Сачувај филтер DocType: Address,Preferred Shipping Address,Преферред Схиппинг Аддресс DocType: GCalendar Account,The name that will appear in Google Calendar,Име које ће се појавити у Гоогле календару +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Кликните на {0} да бисте генерисали Рефресх Токен. DocType: Email Account,Disable SMTP server authentication,Онемогућите аутентификацију СМТП сервера DocType: Email Account,Total number of emails to sync in initial sync process ,Укупан број е-порука за синхронизацију у почетном процесу синхронизације DocType: System Settings,Enable Password Policy,Омогући правило за лозинке @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Инсерт Цоде apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Не у DocType: Auto Repeat,Start Date,Датум почетка apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Сет Цхарт +DocType: Website Theme,Theme JSON,Тхеме ЈСОН apps/frappe/frappe/www/list.py,My Account,Мој налог DocType: DocType,Is Published Field,Ис Публисхед Фиелд DocType: DocField,Set non-standard precision for a Float or Currency field,Подесите нестандардну прецизност за поље Флоат или Цурренци @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ПроТип: Додај Reference: {{ reference_doctype }} {{ reference_name }} за слање референце документа DocType: LDAP Settings,LDAP First Name Field,Поље ЛДАП имена apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Подразумевано слање и пријемно сандуче -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Подешавање> Прилагоди образац apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",За ажурирање можете ажурирати само селективне колоне. apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',Подразумевано за поље „Провери“ мора да буде „0“ или „1“ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Поделите овај документ са @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Домени ХТМЛ DocType: Blog Settings,Blog Settings,Поставке блога apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Име ДоцТипе треба почети словом и може се састојати само од слова, бројева, размака и подвлаке" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Подешавање> Корисничке дозволе DocType: Communication,Integrations can use this field to set email delivery status,Интеграције могу користити ово поље за постављање статуса испоруке е-поште apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Подешавања мрежног пролаза за плаћање DocType: Print Settings,Fonts,Фонтови DocType: Notification,Channel,Канал DocType: Communication,Opened,Отворен DocType: Workflow Transition,Conditions,Услови +apps/frappe/frappe/config/website.py,A user who posts blogs.,Корисник који поставља блогове. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Немате налог? Пријави се apps/frappe/frappe/utils/file_manager.py,Added {0},Додато {0} DocType: Newsletter,Create and Send Newsletters,Креирајте и пошаљите билтене DocType: Website Settings,Footer Items,Фоотер Итемс +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Подесите подразумевани налог е-поште из Подешавања> Е-пошта> Е-маил налог DocType: Website Slideshow Item,Website Slideshow Item,Вебсите Слидесхов Итем apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Региструј ОАутх Цлиент Апп DocType: Error Snapshot,Frames,Оквири @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Ниво 0 је за дозволе на нивоу документа, више нивое за дозволе на нивоу поља." DocType: Address,City/Town,Град / град DocType: Email Account,GMail,Гмаил -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Ово ће поништити вашу тренутну тему, јесте ли сигурни да желите да наставите?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Обавезна поља потребна у {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Грешка приликом повезивања на налог е-поште {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Дошло је до грешке приликом креирања понављања @@ -528,7 +537,7 @@ DocType: Event,Event Category,Категорија догађаја apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Колоне засноване на apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Едит Хеадинг DocType: Communication,Received,Примљен -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Није вам дозвољен приступ овој страници. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Није вам дозвољен приступ овој страници. DocType: User Social Login,User Social Login,Усер Социал Логин apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,Запишите Питхон датотеку у исту фасциклу у којој је спремљена и вратите ступац и резултат. DocType: Contact,Purchase Manager,Менаџер куповине @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Цо apps/frappe/frappe/utils/data.py,Operator must be one of {0},Оператор мора бити један од {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Иф Овнер DocType: Data Migration Run,Trigger Name,Триггер Наме -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Напишите наслове и увод у свој блог. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Уклони поље apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Скупи све apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Боја позадине @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,Бар DocType: SMS Settings,Enter url parameter for message,Унесите параметар УРЛ-а за поруку apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Нови прилагођени формат за штампање apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} већ постоји +DocType: Workflow Document State,Is Optional State,Ис Оптионал Стате DocType: Address,Purchase User,Пурцхасе Усер DocType: Data Migration Run,Insert,Инсерт DocType: Web Form,Route to Success Link,Роуте то Суццесс Линк @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Кор DocType: File,Is Home Folder,Ис Хоме Фолдер apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Тип: DocType: Post,Is Pinned,Ис Пиннед -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Нема дозволе за '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Нема дозволе за '{0}' {1} DocType: Patch Log,Patch Log,Патцх Лог DocType: Print Format,Print Format Builder,Принт Формат Буилдер 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","Ако је омогућено, сви корисници се могу пријавити са било које ИП адресе користећи Аутоф. Ово се такође може поставити само за одређене кориснике на Корисничкој страници" apps/frappe/frappe/utils/data.py,only.,само. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,Услов '{0}' је неважећи DocType: Auto Email Report,Day of Week,Дан у недељи +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Омогућите Гоогле АПИ у Гоогле поставкама. DocType: DocField,Text Editor,Текст едитор apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Цут apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Претражите или откуцајте команду @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,Број сигурносних копија ДБ-а не може бити мањи од 1 DocType: Workflow State,ban-circle,бан-круг DocType: Data Export,Excel,Екцел +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Хеадер, Бреадцрумбс анд Мета Тагс" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Адреса е-поште за подршку није наведена DocType: Comment,Published,Објављено DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","Напомена: За најбоље резултате, слике морају бити исте величине и ширине које морају бити веће од висине." @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Сцхедулер Ласт Еве apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Извештај о свим деоницама документа DocType: Website Sidebar Item,Website Sidebar Item,Страница Сидебар Итем apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Урадити +DocType: Google Settings,Google Settings,Гоогле подешавања apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Изаберите своју земљу, временску зону и валуту" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Овде унесите статичне УРЛ параметре (нпр. Сендер = ЕРПНект, усернаме = ЕРПНект, пассворд = 1234 итд.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Нема налога е-поште @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,ОАутх Беарер Токен ,Setup Wizard,Чаробњак за подешавање apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Тоггле Цхарт +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,Синхронизација DocType: Data Migration Run,Current Mapping Action,Тренутна акција мапирања DocType: Email Account,Initial Sync Count,Инитиал Синц Цоунт apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Подешавања за контакт страницу. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Принт Формат Типе apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Нема дозвола за овај критеријум. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Прошири све +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Није пронађен подразумевани предложак адресе. Креирајте нови из Подешавања> Штампање и брендирање> Предложак адресе. DocType: Tag Doc Category,Tag Doc Category,Таг Доц Цатегори DocType: Data Import,Generated File,Генератед Филе apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Нотес @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Поље Тимелине мора бити Линк или Динамиц Линк DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Обавештења и масовне поруке ће бити послате са овог одлазног сервера. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Ово је топ-100 заједничка лозинка. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Трајно шаљи {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Трајно шаљи {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} не постоји, изаберите нови циљ за спајање" DocType: Energy Point Rule,Multiplier Field,Мултиплиер Фиелд DocType: Workflow,Workflow State Field,Поље стања рада @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} је ценио ваш рад на {1} са {2} тачкама DocType: Auto Email Report,Zero means send records updated at anytime,Зеро значи слање записа ажурираних у било које вријеме apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Вредност се не може променити за {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Гоогле АПИ поставке. DocType: System Settings,Force User to Reset Password,Присили корисника да ресетује лозинку apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Извештаје о изради извештаја управља директно градитељ извештаја. Ништа. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Уреди филтар @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,за DocType: S3 Backup Settings,eu-north-1,еу-север-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Само једно правило дозвољено са истом улогом, нивоом и {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Није вам дозвољено да ажурирате овај документ Веб Форм -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Максимално ограничење прилога за овај запис достигнуто. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Максимално ограничење прилога за овај запис достигнуто. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,Проверите да документи за референтну комуникацију нису кружно повезани. DocType: DocField,Allow in Quick Entry,Дозволите у брзом уносу DocType: Error Snapshot,Locals,Локалци @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Тип изузетка apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},Није могуће избрисати или отказати јер је {0} {1} повезан са {2} {3} {4} apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,ОТП тајну може ресетовати само администратор. -DocType: Web Form Field,Page Break,Прелом странице DocType: Website Script,Website Script,Вебсите Сцрипт DocType: Integration Request,Subscription Notification,Обавештење о претплати DocType: DocType,Quick Entry,Куицк Ентри @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,Поставите својств apps/frappe/frappe/__init__.py,Thank you,Хвала вам apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Занемарите Вебхоокс за интерну интеграцију apps/frappe/frappe/config/settings.py,Import Data,Импорт Дата +DocType: Translation,Contributed Translation Doctype Name,Цонтрибутед Транслатион Доцтипе Наме DocType: Social Login Key,Office 365,Оффице 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ИД DocType: Review Level,Review Level,Ниво прегледа @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Успешно обављено apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Листа apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Ценити -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Ново {0} (Цтрл + Б) DocType: Contact,Is Primary Contact,Ис Примари Цонтацт DocType: Print Format,Raw Commands,Рав Цоммандс apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Стилски листови за формате за штампање @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Грешке у д apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Пронађите {0} у {1} DocType: Email Account,Use SSL,Користи ССЛ DocType: DocField,In Standard Filter,У стандардном филтеру +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Нема Гоогле контаката за синхронизацију. DocType: Data Migration Run,Total Pages,Тотал Пагес apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: Поље '{1}' не може бити постављено као јединствено јер има не-јединствене вредности DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Ако је омогућено, корисници ће бити обавештени сваки пут када се пријаве. Ако није омогућено, корисници ће бити обавештени само једном." @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,Аутоматион apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Унзиппинг датотека ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Потражите '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Нешто није у реду -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Молимо сачувајте пре додавања. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,Молимо сачувајте пре додавања. DocType: Version,Table HTML,Табле ХТМЛ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,хуб DocType: Page,Standard,Стандард @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Нема р apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,Избрисано је {0} записа apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,Нешто је кренуло наопако приликом генерисања токена за приступ дропбоку. Молимо проверите дневник грешака за више детаља. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Десцендантс Оф -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Није пронађен подразумевани предложак адресе. Креирајте нови из Подешавања> Штампање и брендирање> Предложак адресе. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Гоогле контакти су конфигурисани. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Сакриј детаље apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Стилови фонтова apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Ваша претплата ће истећи {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Аутентификација није успела док је примао е-пошту од налога за е-пошту {0}. Порука са сервера: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Статистике засноване на перформансама од прошле недеље (од {0} до {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,Аутоматско повезивање може се активирати само ако је Инцоминг омогућен. DocType: Website Settings,Title Prefix,Наслов Префик apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Апликације за аутентификацију које можете да користите су: DocType: Bulk Update,Max 500 records at a time,Максимално 500 записа одједном @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,Филтери извештаја apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Изаберите Колоне DocType: Event,Participants,Учесници DocType: Auto Repeat,Amended From,Амендед Фром -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Ваше информације су послате +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Ваше информације су послате DocType: Help Category,Help Category,Категорија помоћи apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 месец apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Изаберите постојећи формат да бисте уредили или покренули нови формат. @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Поље за праћење DocType: User,Generate Keys,Генерате Кеис DocType: Comment,Unshared,Унсхаред -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Сачувано +DocType: Translation,Saved,Сачувано DocType: OAuth Client,OAuth Client,ОАутх Цлиент DocType: System Settings,Disable Standard Email Footer,Онемогући подножје стандардне е-поште apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Принт Формат {0} је онемогућен @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Ласт Уп DocType: Data Import,Action,поступак apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Потребан је кључ клијента DocType: Chat Profile,Notifications,Обавештења +DocType: Translation,Contributed,Допринели DocType: System Settings,mm/dd/yyyy,мм / дд / гггг DocType: Report,Custom Report,Прилагођени извештај DocType: Workflow State,info-sign,инфо-знак @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Контакт DocType: LDAP Settings,LDAP Username Field,Поље ЛДАП корисничког имена apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Поље {0} не може бити постављено као јединствено у {1}, јер постоје не-јединствене постојеће вредности" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Подешавање> Прилагоди образац DocType: User,Social Logins,Социал Логинс DocType: Workflow State,Trash,Смеће DocType: Stripe Settings,Secret Key,Тајни кључ @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,Титле Фиелд apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Није могуће повезати се са сервером за одлазну е-пошту DocType: File,File URL,УРЛ датотеке DocType: Help Article,Likes,Свиђа +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Интеграција Гоогле контаката је онемогућена. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Морате бити пријављени и имати улогу у програму Систем Манагер да бисте могли да приступате резервним копијама. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Први ниво DocType: Blogger,Short Name,Кратко име @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Импорт Зип DocType: Contact,Gender,Род DocType: Workflow State,thumbs-down,палац доље -DocType: Web Page,SEO,СЕО apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Ред треба да буде један од {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Није могуће подесити обавештење на тип документа {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Додавање Систем Манагер-а овом кориснику јер мора постојати најмање један Систем Манагер apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Послата е-пошта добродошлице DocType: Transaction Log,Chaining Hash,Цхаининг Хасх DocType: Contact,Maintenance Manager,Менаџер одржавања +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","За поређење, користите> 5, <10 или = 324. За опсеге, користите 5:10 (за вредности између 5 и 10)." apps/frappe/frappe/utils/bot.py,show,схов apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,УРЛ за дељење apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Неподржани формат датотеке @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,Нотифицатион DocType: Data Import,Show only errors,Прикажи само грешке DocType: Energy Point Log,Review,Ревиев apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Ровс Ремовед -DocType: GSuite Settings,Google Credentials,Гоогле акредитиви +DocType: Google Settings,Google Credentials,Гоогле акредитиви apps/frappe/frappe/www/login.html,Or login with,Или се пријавите са apps/frappe/frappe/model/document.py,Record does not exist,Запис не постоји apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Ново име извештаја @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,Листа DocType: Workflow State,th-large,тх-ларге apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Није могуће подесити Додели слање ако није доступно apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Није повезан ни са једним записом +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Грешка при повезивању са апликацијом КЗ Траи ...

Морате имати инсталирану и покренуту апликацију КЗ Траи да бисте користили функцију Рав Принт.

Кликните овде да бисте преузели и инсталирали КЗ Траи .
Кликните овде да бисте сазнали више о Рав Принтинг-у ." DocType: Chat Message,Content,Садржај DocType: Workflow Transition,Allow Self Approval,Аллов Селф Аппровал apps/frappe/frappe/www/qrcode.py,Page has expired!,Страница је истекла! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,руком десно DocType: Website Settings,Banner is above the Top Menu Bar.,Баннер је изнад горње траке менија. apps/frappe/frappe/www/update-password.html,Invalid Password,Неисправна лозинка apps/frappe/frappe/utils/data.py,1 month ago,Пре 1 месец +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Дозволи приступ Гоогле контактима DocType: OAuth Client,App Client ID,ИД клијента апликације DocType: DocField,Currency,Валута DocType: Website Settings,Banner,Баннер @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Гоал DocType: Print Style,CSS,ЦСС apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Ако улога нема приступ на нивоу 0, онда су виши нивои бесмислени." DocType: ToDo,Reference Type,Референце Типе -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Дозвољава ДоцТипе, ДоцТипе. Бити пажљив!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Дозвољава ДоцТипе, ДоцТипе. Бити пажљив!" DocType: Domain Settings,Domain Settings,Подешавања домена DocType: Auto Email Report,Dynamic Report Filters,Динамички филтери извештаја DocType: Energy Point Log,Appreciation,Уважавање @@ -1466,6 +1487,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,ус-вест-2 DocType: DocType,Is Single,Је слободан apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Направите нови формат +DocType: Google Contacts,Authorize Google Contacts Access,Ауторизирајте Гоогле Контакти за приступ DocType: S3 Backup Settings,Endpoint URL,УРЛ крајње тачке DocType: Social Login Key,Google,Гоогле DocType: Contact,Department,Департмент @@ -1480,7 +1502,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Доделили DocType: List Filter,List Filter,Лист Филтер DocType: Dashboard Chart Link,Chart,Цхарт apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Није могуће уклонити -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Пошаљите овај документ да бисте потврдили +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Пошаљите овај документ да бисте потврдили apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} већ постоји. Изаберите друго име apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,У овом обрасцу имате неспремљене измене. Сачувајте пре него што наставите. apps/frappe/frappe/model/document.py,Action Failed,Радња није успела @@ -1562,6 +1584,7 @@ DocType: DocField,Display,Приказ apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Одговори свима DocType: Calendar View,Subject Field,Субјецт Фиелд apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Истек сесије мора бити у формату {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},Примена: {0} DocType: Workflow State,zoom-in,увеличати apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Конекција на сервер није успела apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Датум {0} мора бити у формату: {1} @@ -1573,8 +1596,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Тест_Фолдер DocType: Workflow State,Icon will appear on the button,Икона ће се појавити на дугмету DocType: Role Permission for Page and Report,Set Role For,Сет Роле Фор +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Аутоматско повезивање може се активирати само за један рачун е-поште. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Нема додељених налога за е-пошту +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Рачун е-поште није подешен. Креирајте нови налог е-поште из Подешавање> Е-пошта> Е-маил налог apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Додељивање +DocType: Google Contacts,Last Sync On,Последња синхронизација укључена apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},добила је {0} аутоматским правилом {1} apps/frappe/frappe/config/website.py,Portal,Портал apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Хвала на емаил @@ -1595,7 +1621,6 @@ DocType: GSuite Settings,GSuite Settings,ГСуите Сеттингс DocType: Integration Request,Remote,Ремоте DocType: File,Thumbnail URL,УРЛ Тхумбнаил apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Довнлоад Репорт -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Подешавање> Корисник apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Прилагођавања за {0} извезена у:
{1} DocType: GCalendar Account,Calendar Name,Име календара apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Ваш логин ИД је @@ -1645,6 +1670,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Ид apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Поље за слику мора бити важеће име поља apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,Морате бити пријављени да бисте приступили овој страници DocType: Assignment Rule,Example: {{ subject }},Пример: {{субјецт}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Име поља {0} је ограничено apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Не можете да искључите опцију "Само за читање" за поље {0} DocType: Social Login Key,Enable Social Login,Омогући друштвену пријаву DocType: Workflow,Rules defining transition of state in the workflow.,Правила која дефинишу транзицију стања у току посла. @@ -1665,10 +1691,10 @@ DocType: Website Settings,Route Redirects,Преусмјеравања руте apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Емаил Инбок apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},обновљено {0} као {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Аутоматски доделите документе корисницима +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Опен Авесомебар apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Шаблони е-поште за уобичајене упите. DocType: Letter Head,Letter Head Based On,Леттер Хеад Басед Он apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Затворите овај прозор -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Плаћање је завршено DocType: Contact,Designation,Ознака DocType: Webhook,Webhook,Вебхоок DocType: Website Route Meta,Meta Tags,Мета Тагс @@ -1707,6 +1733,7 @@ DocType: System Settings,Choose authentication method to be used by all users,И DocType: Error Snapshot,Parent Error Snapshot,Снимак Парент Еррор DocType: GCalendar Account,GCalendar Account,ГЦалендар Аццоунт DocType: Language,Language Name,Име језика +DocType: Workflow Document State,Workflow Action is not created for optional states,Акција тока посла није креирана за опционална стања DocType: Customize Form,Customize Form,Цустомизе Форм DocType: DocType,Image Field,Имаге Фиелд apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Додато {0} ({1}) @@ -1748,6 +1775,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,Примените ово правило ако је Корисник власник DocType: About Us Settings,Org History Heading,Орг Хистори Хеадинг apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,грешка на серверу +DocType: Contact,Google Contacts Description,Опис Гоогле контаката apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Стандардне улоге није могуће преименовати DocType: Review Level,Review Points,Поинтс Поинтс apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Недостаје параметар Канбан Боард Наме @@ -1765,7 +1793,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Није у режиму за развојне програмере! Поставите на сите_цонфиг.јсон или направите 'Цустом' ДоцТипе. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,стекао {0} бодова DocType: Web Form,Success Message,Мессаге Мессаге -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","За поређење, користите> 5, <10 или = 324. За опсеге, користите 5:10 (за вредности између 5 и 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Опис странице за унос, у обичном тексту, само неколико редова. (максимално 140 знакова)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Прикажи дозволе DocType: DocType,Restrict To Domain,Ограничи на домену @@ -1787,6 +1814,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Нот apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Сет Куантити DocType: Auto Repeat,End Date,Крајњи датум DocType: Workflow Transition,Next State,Нект Стате +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Гоогле контакти су синхронизовани. DocType: System Settings,Is First Startup,Ис Фирст Стартуп apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},ажурирано на {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Померити у @@ -1836,6 +1864,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Календар apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Дата Импорт Темплате DocType: Workflow State,hand-left,лево +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Изаберите више ставки листе apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Величина резервне копије: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Повезано са {0} DocType: Braintree Settings,Private Key,Привате Кеи @@ -1878,13 +1907,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Интерес DocType: Bulk Update,Limit,Лимит DocType: Print Settings,Print taxes with zero amount,Штампајте порезе са нултим износом -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Рачун е-поште није подешен. Креирајте нови налог е-поште из Подешавање> Е-пошта> Е-маил налог DocType: Workflow State,Book,Боок DocType: S3 Backup Settings,Access Key ID,Приступите ИД-у кључа DocType: Chat Message,URLs,УРЛс apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Имена и презимена сами су лако погодити. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Пријави {0} DocType: About Us Settings,Team Members Heading,Теам Мемберс Хеадинг +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Изаберите ставку листе apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Документ {0} је постављен на стање {1} од стране {2} DocType: Address Template,Address Template,Предложак адресе DocType: Workflow State,step-backward,корак-уназад @@ -1908,6 +1937,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Извоз прилагођених дозвола apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Ноне: Крај радног тока DocType: Version,Version,Версион +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Отворите ставку листе apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 месеци DocType: Chat Message,Group,Група apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Постоји неки проблем са УРЛ-ом датотеке: {0} @@ -1963,6 +1993,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 година apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} је вратио ваше тачке на {1} DocType: Workflow State,arrow-down,стрелица-доле DocType: Data Import,Ignore encoding errors,Занемари грешке кодирања +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Ландсцапе DocType: Letter Head,Letter Head Name,Име главе писма DocType: Web Form,Client Script,Цлиент Сцрипт DocType: Assignment Rule,Higher priority rule will be applied first,Прво ће се применити правило вишег приоритета @@ -2007,6 +2038,7 @@ DocType: Kanban Board Column,Green,Зелен apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"За нове записе неопходна су само обавезна поља. Ако желите, можете обрисати необавезне колоне." apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} мора да почне и завршава са словом и може да садржи само слова, цртицу или доњу црту." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Триггер Примари Ацтион apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Креирајте е-пошту корисника apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Поље сортирања {0} мора бити важеће име поља DocType: Auto Email Report,Filter Meta,Филтер Мета @@ -2036,6 +2068,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Тимелине Фиелд apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Учитавање ... DocType: Auto Email Report,Half Yearly,Полу годишње +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Мој профил apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Ласт Модифиед Дате DocType: Contact,First Name,Име DocType: Post,Comments,Цомментс @@ -2058,6 +2091,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Цонтент Хасх apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Постови од {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} додељено {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Нема синхронизованих нових Гоогле контаката. DocType: Workflow State,globe,глобе apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Просек од {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Обришите дневнике грешака @@ -2084,6 +2118,8 @@ DocType: Workflow State,Inverse,Инверсе DocType: Activity Log,Closed,Затворено DocType: Report,Query,Упит DocType: Notification,Days After,Даис Афтер +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Паге Схортцутс +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Портрет apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Захтев истекао DocType: System Settings,Email Footer Address,Адреса за подножје е-поште apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Ажурирање енергетске тачке @@ -2111,6 +2147,7 @@ For Select, enter list of Options, each on a new line.","За везе, унес apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,Пре 1 минут apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Нема активних сесија apps/frappe/frappe/model/base_document.py,Row,Ров +DocType: Contact,Middle Name,Средње име apps/frappe/frappe/public/js/frappe/request.js,Please try again,"Молим вас, покушајте поново" DocType: Dashboard Chart,Chart Options,Опције графикона DocType: Data Migration Run,Push Failed,Пусх Фаилед @@ -2139,6 +2176,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,ресизе-смалл DocType: Comment,Relinked,Релинкед DocType: Role Permission for Page and Report,Roles HTML,Улога ХТМЛ-а +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Иди apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Воркфлов ће почети након чувања. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Ако су ваши подаци у ХТМЛ-у, копирајте тачан ХТМЛ код са ознакама." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Датуми су често лако погодити. @@ -2167,7 +2205,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Иконица са десктопа apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,отказао овај документ apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Период -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Подешавање> Корисничке дозволе apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} је ценио {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Валуес Цхангед apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Грешка у обавештењу @@ -2232,6 +2269,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Булк Делете DocType: DocShare,Document Name,Назив документа apps/frappe/frappe/config/customization.py,Add your own translations,Додајте сопствене преводе +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Навигација листе доле DocType: S3 Backup Settings,eu-central-1,еу-централ-1 DocType: Auto Repeat,Yearly,Годишње apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Преименуј @@ -2282,6 +2320,7 @@ DocType: Workflow State,plane,авионом apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Нестед сет еррор. Молимо контактирајте администратора. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Прикажи извештај DocType: Auto Repeat,Auto Repeat Schedule,Ауто Репеат Сцхедуле +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Виев Реф DocType: Address,Office,Оффице DocType: LDAP Settings,StartTLS,СтартТЛС apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} дана пре @@ -2315,7 +2354,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,П apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Моја подешавања apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Назив групе не може бити празан. DocType: Workflow State,road,роад -DocType: Website Route Redirect,Source,Извор +DocType: Contact,Source,Извор apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Ацтиве Сессионс apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Може бити само један Фолд у форми apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Нев Цхат @@ -2337,6 +2376,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Унесите УРЛ за ауторизацију DocType: Email Account,Send Notification to,Сенд Нотифицатион то apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Подешавања за бацкуп података +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,Нешто је кренуло наопако током генерације симбола. Кликните на {0} да бисте генерисали нову. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Уклонити све прилагодбе? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Само администратор може уређивати DocType: Auto Repeat,Reference Document,Референтни документ @@ -2361,6 +2401,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Улоге се могу поставити за кориснике са њихове корисничке странице. DocType: Website Settings,Include Search in Top Bar,Укључи претрагу у горњој траци apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Хитно] Грешка приликом креирања понављајућег% с за% с +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Глобални пречаци DocType: Help Article,Author,Аутхор DocType: Webhook,on_cancel,он_цанцел apps/frappe/frappe/client.py,No document found for given filters,Није пронађен ниједан документ за дате филтре @@ -2396,10 +2437,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, Ред {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Ако преносите нове записе, "Наминг Сериес" постаје обавезан, ако је присутан." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Едит Пропертиес -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Не може се отворити инстанца када је њен {0} отворен +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,Не може се отворити инстанца када је њен {0} отворен DocType: Activity Log,Timeline Name,Име временске линије DocType: Comment,Workflow,Процес рада apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Молимо поставите основни УРЛ у Социал Логин Кеи за Фраппе +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Пречице на тастатури DocType: Portal Settings,Custom Menu Items,Цустом Мену Итемс apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,Дужина од {0} треба да буде између 1 и 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Конекција изгубљена. Неке функције можда неће радити. @@ -2462,6 +2504,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Ровс А DocType: DocType,Setup,Поставити apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} је успешно креирано apps/frappe/frappe/www/update-password.html,New Password,Нев Пассворд +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Изаберите поље apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Оставите овај разговор DocType: About Us Settings,Team Members,Чланови тима DocType: Blog Settings,Writers Introduction,Вритерс Интродуцтион @@ -2531,13 +2574,12 @@ DocType: Chat Room,Name,Име DocType: Communication,Email Template,Емаил Темплате DocType: Energy Point Settings,Review Levels,Преглед нивоа DocType: Print Format,Raw Printing,Рав Принтинг -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Није могуће отворити {0} када је његова инстанца отворена +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,Није могуће отворити {0} када је његова инстанца отворена DocType: DocType,"Make ""name"" searchable in Global Search",Направите "име" за претраживање у глобалној претрази DocType: Data Migration Mapping,Data Migration Mapping,Мапирање миграције података DocType: Data Import,Partially Successful,Делимично успешно DocType: Communication,Error,Грешка apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Тип поља се не може променити из {0} у {1} у реду {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Грешка при повезивању са апликацијом КЗ Траи ...

Морате имати инсталирану и покренуту апликацију КЗ Траи да бисте користили функцију Рав Принт.

Кликните овде да бисте преузели и инсталирали КЗ Траи .
Кликните овде да бисте сазнали више о Рав Принтинг-у ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Сликати apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,Избегавајте године које су повезане са вама. DocType: Web Form,Allow Incomplete Forms,Дозволи непотпуне обрасце @@ -2633,7 +2675,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Изаберите таргет = "_бланк" да бисте отворили нову страницу. DocType: Portal Settings,Portal Menu,Изборник портала DocType: Website Settings,Landing Page,Почетне странице -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,Пријавите се или се пријавите да бисте започели DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Опције контакта, као што су "Продајни упит, упит за подршку" итд. Свака на новој линији или одвојене зарезима." apps/frappe/frappe/twofactor.py,Verfication Code,Верифицатион Цоде apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} је већ отказано @@ -2719,6 +2760,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Мапирањ DocType: Address,Sales User,Салес Усер apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Промени својства поља (сакриј, само за читање, дозволу итд.)" DocType: Property Setter,Field Name,Име поља +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Цустомер DocType: Print Settings,Font Size,Величина фонта DocType: User,Last Password Reset Date,Датум задње поништене лозинке DocType: System Settings,Date and Number Format,Формат датума и броја @@ -2784,6 +2826,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Гроуп Но apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Споји се са постојећим DocType: Blog Post,Blog Intro,Блог Интро apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Нев Ментион +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Скочи на поље DocType: Prepared Report,Report Name,Име извештаја apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Освежите да бисте добили најновији документ. apps/frappe/frappe/core/doctype/communication/communication.js,Close,Близу @@ -2793,10 +2836,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Евент DocType: Social Login Key,Access Token URL,Приступите токен УРЛ-у apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Молимо вас да поставите Дропбок приступне кључеве у конфигурацију вашег сајта +DocType: Google Contacts,Google Contacts,Гоогле контакти DocType: User,Reset Password Key,Ресетуј лозинку apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Модификована DocType: User,Bio,Био apps/frappe/frappe/limits.py,"To renew, {0}.","Да бисте обновили, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Успешно сачувано +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Пошаљите е-поруку на {0} да бисте је повезали овде. DocType: File,Folder,Фолдер DocType: DocField,Perm Level,Перм Левел DocType: Print Settings,Page Settings,Поставке странице @@ -2826,6 +2872,7 @@ DocType: Workflow State,remove-sign,ремове-сигн DocType: Dashboard Chart,Full,Фулл DocType: DocType,User Cannot Create,Корисник не може да креира apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Добили сте {0} тачку +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Подешавање> Корисник DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Ако поставите ово, ова ставка ће се појавити у падајућем менију испод изабраног родитеља." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Но Емаилс apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Недостају следећа поља: @@ -2839,13 +2886,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,П DocType: Web Form,Web Form Fields,Поља Веб Форма DocType: Desktop Icon,_doctype,_доцтипе apps/frappe/frappe/config/website.py,User editable form on Website.,Образац за уређивање корисника на Веб локацији. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Трајно Откажи {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Трајно Откажи {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Опција 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,Укупно apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Ово је врло уобичајена лозинка. DocType: Personal Data Deletion Request,Pending Approval,Чека одобрење apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Документ није могао бити правилно додељен apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Није дозвољено за {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Нема вредности за приказивање DocType: Personal Data Download Request,Personal Data Download Request,Захтев за преузимање личних података apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} дели овај документ са {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Изаберите {0} @@ -2861,7 +2909,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Ова е-порука послата је на {0} и копирана у {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,Погрешна пријава или лозинка DocType: Social Login Key,Social Login Key,Социал Логин Кеи -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Подесите подразумевани налог е-поште из Подешавања> Е-пошта> Е-маил налог apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Филтри су сачувани DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Како би се та валута требала форматирати? Ако није постављено, користиће подразумеване вредности система" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} је постављен на стање {2} @@ -2987,6 +3034,7 @@ DocType: User,Location,Локација apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Нема података DocType: Website Meta Tag,Website Meta Tag,Вебсите Мета Таг DocType: Workflow State,film,филм +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Копирано у клипборд. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Поставке нису пронађене apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Ознака је обавезна DocType: Webhook,Webhook Headers,Вебхоок Хеадерс @@ -3195,7 +3243,7 @@ DocType: Address,Address Line 1,Адреса Линија 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,За тип документа apps/frappe/frappe/model/base_document.py,Data missing in table,Недостају подаци у табели apps/frappe/frappe/utils/bot.py,Could not identify {0},Није могуће идентификовати {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Овај образац је измењен након што сте га учитали +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Овај образац је измењен након што сте га учитали apps/frappe/frappe/www/login.html,Back to Login,Повратак на пријаву apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Није подешено DocType: Data Migration Mapping,Pull,Повуци @@ -3263,6 +3311,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Мапирање дј apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Подешавање налога е-поште унесите своју лозинку за: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Превише пише у једном захтеву. Пошаљите мање захтјеве DocType: Social Login Key,Salesforce,Салесфорце +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Увоз {0} од {1} DocType: User,Tile,Плочица apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,Соба {0} мора имати највише једног корисника. DocType: Email Rule,Is Spam,Ис Спам @@ -3300,7 +3349,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,фолдер-цлосе DocType: Data Migration Run,Pull Update,Пулл Упдате apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},спојено {0} у {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Нису пронађени резултати за '

DocType: SMS Settings,Enter url parameter for receiver nos,Унесите УРЛ параметар за пријемнике бр apps/frappe/frappe/utils/jinja.py,Syntax error in template,Грешка синтаксе у предлошку apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Подесите вредност филтера у табели филтера извештаја. @@ -3313,6 +3361,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Извин DocType: System Settings,In Days,Ин Даис DocType: Report,Add Total Row,Адд Тотал Ров apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Почетак сесије није успио +DocType: Translation,Verified,Проверено DocType: Print Format,Custom HTML Help,Прилагођена ХТМЛ помоћ DocType: Address,Preferred Billing Address,Преферирана адреса за наплату apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Додељено @@ -3327,7 +3376,6 @@ DocType: Help Article,Intermediate,Интермедиате DocType: Module Def,Module Name,Назив модула DocType: OAuth Authorization Code,Expiration time,Време истека apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Поставите подразумевани формат, величину странице, стил штампања итд." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,Не можете да волите нешто што сте направили DocType: System Settings,Session Expiry,Истек сесије DocType: DocType,Auto Name,Ауто Наме apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Изаберите Прилози @@ -3354,6 +3402,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Систем Паге DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Напомена: Подразумевано се шаљу е-поруке за неуспешне резервне копије. DocType: Custom DocPerm,Custom DocPerm,Цустом ДоцПерм +DocType: Translation,PR sent,ПР послан DocType: Tag Doc Category,Doctype to Assign Tags,Доцтипе за додељивање ознака DocType: Address,Warehouse,Варехоусе apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Дропбок Сетуп @@ -3421,7 +3470,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Цтрл + Ентер да бисте додали коментар apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Поље {0} није могуће одабрати. DocType: User,Birth Date,Датум рођења -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Са увлачењем групе DocType: List View Setting,Disable Count,Онемогући Цоунт DocType: Contact Us Settings,Email ID,Идентификација Поруке apps/frappe/frappe/utils/password.py,Incorrect User or Password,Неисправан корисник или лозинка @@ -3456,6 +3504,7 @@ DocType: Website Settings,<head> HTML,<хеад> ХТМЛ DocType: Custom DocPerm,This role update User Permissions for a user,Ова улога ажурира корисничке дозволе за корисника DocType: Website Theme,Theme,Тхеме DocType: Web Form,Show Sidebar,Схов Сидебар +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Интеграција Гоогле контаката. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Дефаулт Инбок apps/frappe/frappe/www/login.py,Invalid Login Token,Неважећи токен за пријаву apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Прво подесите име и сачувајте запис. @@ -3483,7 +3532,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Исправите DocType: Top Bar Item,Top Bar Item,Топ Бар Итем ,Role Permissions Manager,Менаџер за дозволе улога -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,Било је грешака. Молимо пријавите ово. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} година apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Зенски пол DocType: System Settings,OTP Issuer Name,Име издаваоца ОТП-а apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Адд то То До @@ -3583,6 +3632,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Пос apps/frappe/frappe/model/document.py,none of,ниједна од DocType: Desktop Icon,Page,Страна DocType: Workflow State,plus-sign,плус-знак +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Обриши кеш и поново учитај apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Не може се ажурирати: Неисправна / истекла веза. DocType: Kanban Board Column,Yellow,Жута DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Број колона за поље у мрежи (Укупни колоне у мрежи треба да буду мање од 11) @@ -3597,6 +3647,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Но DocType: Activity Log,Date,Датум DocType: Communication,Communication Type,Тип комуникације apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Парент Табле +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Идите листом горе DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Прикажите потпуну грешку и дозволите извештавање о проблемима програмеру DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3618,7 +3669,6 @@ DocType: Notification Recipient,Email By Role,Емаил Би Роле apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,Надоградите да бисте додали више од {0} претплатника apps/frappe/frappe/email/queue.py,This email was sent to {0},Ова е-порука послата је на {0} DocType: User,Represents a User in the system.,Представља Корисника у систему. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Страница {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Започните нови формат apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Додајте коментар apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} од {1} diff --git a/frappe/translations/sv.csv b/frappe/translations/sv.csv index 8b2ee41161..912d508305 100644 --- a/frappe/translations/sv.csv +++ b/frappe/translations/sv.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Aktivera gradienter DocType: DocType,Default Sort Order,Standard sorteringsorder apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Visar endast Numeriska fält från Rapport +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Tryck på Alt-tangenten för att utlösa ytterligare genvägar i meny och sidobalk DocType: Workflow State,folder-open,mapp-open DocType: Customize Form,Is Table,Är tabell apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Det går inte att öppna bifogad fil. Har du exporterat det som CSV? DocType: DocField,No Copy,Ingen kopia DocType: Custom Field,Default Value,Standardvärde apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Tillägg till är obligatorisk för inkommande mail +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Synkronisera kontakter DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Data Migration Mapping Detalj apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Sluta följa apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",PDF-utskrift via "Raw Print" stöds ännu inte. Ta bort skrivarkartläggningen i skrivarinställningar och försök igen. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} och {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Det fanns ett fel att spara filter apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Ange ditt lösenord apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Det går inte att ta bort mappar för hem och bilagor +DocType: Email Account,Enable Automatic Linking in Documents,Aktivera automatisk länkning i dokument DocType: Contact Us Settings,Settings for Contact Us Page,Inställningar för Kontakta oss sida DocType: Social Login Key,Social Login Provider,Social inloggningsleverantör +DocType: Email Account,"For more information, click here.","För mer information, klicka här ." DocType: Transaction Log,Previous Hash,Föregående Hash DocType: Notification,Value Changed,Värde ändrats DocType: Report,Report Type,Rapporttyp @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Energipunktregeln apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,Vänligen ange klient-id innan social inloggning är aktiverad DocType: Communication,Has Attachment,Har bilaga DocType: User,Email Signature,Epostsignatur -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} år sedan ,Addresses And Contacts,Adresser och kontakter apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Denna Kanban styrelse kommer att vara privat DocType: Data Migration Run,Current Mapping,Aktuell kartläggning @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Du väljer Sync Option som ALL, det kommer att resync alla \ läsa såväl som oläst meddelande från servern. Detta kan också orsaka duplicering \ av kommunikation (e-postmeddelanden)." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Senast synkroniserad {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Kan inte ändra huvudinnehåll +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Inga resultat funna för '

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Ej tillåtet att ändra {0} efter inlämning apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Applikationen har uppdaterats till en ny version, uppdatera sidan här" DocType: User,User Image,Användarbild @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Marke apps/frappe/frappe/public/js/frappe/chat.js,Discard,Kassera DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Välj en bild med en bredd på 150px med en transparent bakgrund för bästa resultat. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,återfall +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} värden valda DocType: Blog Post,Email Sent,Email skickat DocType: Communication,Read by Recipient On,Läs av mottagaren DocType: User,Allow user to login only after this hour (0-24),Tillåt användaren att logga in endast efter den här timmen (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Modul för export DocType: DocType,Fields,Fields -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Du får inte skriva ut det här dokumentet +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Du får inte skriva ut det här dokumentet apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Förälder apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Din session har löpt ut, vänligen logga in igen för att fortsätta." DocType: Assignment Rule,Priority,Prioritet @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Återställ OTP Se DocType: DocType,UPPER CASE,ÖVRIGA FALL apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,Vänligen ange e-postadress DocType: Communication,Marked As Spam,Markerad som spam +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,E-postadress vars Google-kontakter ska synkroniseras. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Importera abonnenter apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Spara filter DocType: Address,Preferred Shipping Address,Föredragen leveransadress DocType: GCalendar Account,The name that will appear in Google Calendar,Namnet som kommer att visas i Google Kalender +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Klicka på {0} för att generera Uppdatera Token. DocType: Email Account,Disable SMTP server authentication,Inaktivera SMTP-serverautentisering DocType: Email Account,Total number of emails to sync in initial sync process ,Totalt antal e-postmeddelanden som ska synkroniseras i första synkroniseringsprocessen DocType: System Settings,Enable Password Policy,Aktivera lösenordspolicy @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Infoga kod apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Inte i DocType: Auto Repeat,Start Date,Start datum apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Ange diagram +DocType: Website Theme,Theme JSON,Tema JSON apps/frappe/frappe/www/list.py,My Account,Mitt konto DocType: DocType,Is Published Field,Är Publicerat Fält DocType: DocField,Set non-standard precision for a Float or Currency field,Ange icke-standard precision för ett Float eller Currency-fält @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Lägg till Reference: {{ reference_doctype }} {{ reference_name }} att skicka dokumentreferens DocType: LDAP Settings,LDAP First Name Field,LDAP förnamn fält apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Standard sändning och inkorg -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Inställningar> Anpassa formulär apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",För uppdatering kan du bara uppdatera selektiva kolumner. apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',Standard för 'Kontrollera' typ av fält måste vara antingen '0' eller '1' apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Dela det här dokumentet med @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Domäner HTML DocType: Blog Settings,Blog Settings,Blogginställningar apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DocTypes namn bör börja med ett brev och det kan bara bestå av bokstäver, siffror, mellanslag och understreck" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Inställningar> Användarbehörigheter DocType: Communication,Integrations can use this field to set email delivery status,Integreringar kan använda det här fältet för att ange leveransstatus för e-post apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Streckbetalnings gateway-inställningar DocType: Print Settings,Fonts,typsnitt DocType: Notification,Channel,kanalisera DocType: Communication,Opened,Öppnad DocType: Workflow Transition,Conditions,Betingelser +apps/frappe/frappe/config/website.py,A user who posts blogs.,En användare som postar bloggar. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Har du inget konto? Bli Medlem apps/frappe/frappe/utils/file_manager.py,Added {0},Tillagt {0} DocType: Newsletter,Create and Send Newsletters,Skapa och skicka nyhetsbrev DocType: Website Settings,Footer Items,Footer-artiklar +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Vänligen konfigurera standard E-postkonto från Inställningar> E-post> E-postkonto DocType: Website Slideshow Item,Website Slideshow Item,Webbplats Slideshow Item apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Registrera OAuth Client App DocType: Error Snapshot,Frames,ramar @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Nivå 0 är för behörigheter på dokumentnivå, \ högre nivåer för behörigheter på fältnivå." DocType: Address,City/Town,Stad / Town DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Detta återställer ditt aktuella tema, är du säker på att du vill fortsätta?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Obligatoriska fält som krävs i {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Fel vid anslutning till e-postkonto {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Ett fel uppstod när du skapade återkommande @@ -528,7 +537,7 @@ DocType: Event,Event Category,Händelsekategori apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Kolumner baserade på apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Redigera rubrik DocType: Communication,Received,Mottagen -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Du har inte tillåtelse att komma åt den här sidan. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Du har inte tillåtelse att komma åt den här sidan. DocType: User Social Login,User Social Login,User Social Login apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,Skriv en Python-fil i samma mapp där detta sparas och returnera kolumn och resultat. DocType: Contact,Purchase Manager,Inköpschef @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Konf apps/frappe/frappe/utils/data.py,Operator must be one of {0},Operatören måste vara en av {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Om Ägare DocType: Data Migration Run,Trigger Name,Utlösarens namn -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Skriv titlar och introduktioner till din blogg. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Ta bort fältet apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Kollapsa alla apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Bakgrundsfärg @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,Bar DocType: SMS Settings,Enter url parameter for message,Ange URL-parametern för meddelandet apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Nytt anpassat utskriftsformat apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} finns redan +DocType: Workflow Document State,Is Optional State,Är valfri stat DocType: Address,Purchase User,Köpanvändare DocType: Data Migration Run,Insert,Föra in DocType: Web Form,Route to Success Link,Rutt till framgångslänk @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Använd DocType: File,Is Home Folder,Är hemmapp apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Typ: DocType: Post,Is Pinned,Är fastsatt -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Ingen tillåtelse att "{0}" {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Ingen tillåtelse att "{0}" {1} DocType: Patch Log,Patch Log,Patchlogg DocType: Print Format,Print Format Builder,Utskriftsformatbyggare 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",Om det är aktiverat kan alla användare logga in från vilken IP-adress som helst med hjälp av Two Factor Auth. Detta kan också ställas in endast för specifika användare i användarsidan apps/frappe/frappe/utils/data.py,only.,endast. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,Villkoret '{0}' är ogiltigt DocType: Auto Email Report,Day of Week,Dag i veckan +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Aktivera Google API i Google Inställningar. DocType: DocField,Text Editor,Textredigerare apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Skära apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Sök eller skriv ett kommando @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,Antal DB-säkerhetskopior kan inte vara mindre än 1 DocType: Workflow State,ban-circle,ban-cirkel DocType: Data Export,Excel,Excel +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Header, Breadcrumbs och Meta Tags" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,E-postadress för support inte angiven DocType: Comment,Published,Publicerad DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.",Obs! För bästa resultat måste bilderna vara av samma storlek och bredden måste vara större än höjden. @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Scheduler Last Event apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Rapport om alla dokumentandelar DocType: Website Sidebar Item,Website Sidebar Item,Sidans sidobarartikel apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Att göra +DocType: Google Settings,Google Settings,Google Inställningar apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Välj land, tidzon och valuta" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Ange statiska urlparametrar här (t.ex. avsändare = ERPNext, användarnamn = ERPNext, lösenord = 1234 etc.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Inget e-postkonto @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token ,Setup Wizard,Installationsguiden apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Byt diagram +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,synkronisera DocType: Data Migration Run,Current Mapping Action,Aktuell kartläggningsåtgärd DocType: Email Account,Initial Sync Count,Initial Sync Count apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Inställningar för Kontakta oss sida. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Skriv ut formattyp apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Inga behörigheter för detta kriterium. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Expandera alla +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ingen standard adressmall hittades. Skapa en ny från Inställningar> Utskrift och märkning> Adressmall. DocType: Tag Doc Category,Tag Doc Category,Tag Doc Category DocType: Data Import,Generated File,Genererad fil apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,anteckningar @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Tidslinjefältet måste vara en länk eller dynamisk länk DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Meddelanden och bulkmail kommer att skickas från den här utgående servern. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Detta är ett vanligt 100 lösenord. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Skicka permanent {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Skicka permanent {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} existerar inte, välj ett nytt mål att slå samman" DocType: Energy Point Rule,Multiplier Field,Multiplikationsfältet DocType: Workflow,Workflow State Field,Workflow State Field @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} uppskattade ditt arbete på {1} med {2} poäng DocType: Auto Email Report,Zero means send records updated at anytime,Noll innebär att skivor uppdateras när som helst apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Värdet kan inte ändras för {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API-inställningar. DocType: System Settings,Force User to Reset Password,Tvinga användaren att återställa lösenordet apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Rapport Builder-rapporter hanteras direkt av rapportbyggaren. Inget att göra. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Redigera filter @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,för DocType: S3 Backup Settings,eu-north-1,eu-nord-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Endast en regel tillåten med samma roll, nivå och {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Du får inte uppdatera det här webbformuläret -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Maximalt bindningsgräns för den här posten uppnåddes. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Maximalt bindningsgräns för den här posten uppnåddes. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,Se till att referenskommunikationsdokumenten inte är cirkulärt länkade. DocType: DocField,Allow in Quick Entry,Tillåt vid snabb inmatning DocType: Error Snapshot,Locals,Lokalbefolkningen @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Undantags typ apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},Kan inte radera eller avbryta eftersom {0} {1} är länkat till {2} {3} {4} apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTP-hemlighet kan bara återställas av administratören. -DocType: Web Form Field,Page Break,Sidbrytning DocType: Website Script,Website Script,Webbplatsskript DocType: Integration Request,Subscription Notification,Anmälan om anmälan DocType: DocType,Quick Entry,Snabbinmatning @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,Ange egenskap efter varning apps/frappe/frappe/__init__.py,Thank you,Tack apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks för intern integration apps/frappe/frappe/config/settings.py,Import Data,Importera data +DocType: Translation,Contributed Translation Doctype Name,Bidragande översättning Doctype namn DocType: Social Login Key,Office 365,Kontor 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID DocType: Review Level,Review Level,Granskningsnivå @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Framgångsrikt gjort apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Lista apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Uppskatta -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Ny {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Är primärkontakt DocType: Print Format,Raw Commands,Råkommandon apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Stylesheets för utskriftsformat @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Fel i bakgrundshä apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Hitta {0} i {1} DocType: Email Account,Use SSL,Använd SSL DocType: DocField,In Standard Filter,I standardfilter +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Inga Google-kontakter finns att synkronisera. DocType: Data Migration Run,Total Pages,Totalt antal sidor apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: Fältet '{1}' kan inte ställas in som Unikt eftersom det har icke-unika värden DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.",Om det är aktiverat kommer användarna att få ett meddelande varje gång de loggar in. Om det inte är aktiverat kommer användarna bara att få ett meddelande en gång. @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,Automatisering apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Unzipping filer ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Sök efter '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Något gick fel -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Spara innan du bifogar. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,Spara innan du bifogar. DocType: Version,Table HTML,Tabell HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,nav DocType: Page,Standard,Standard @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Inga result apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} poster raderade apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,Något gick fel när du genererade dropbox access token. Vänligen kontrollera felloggen för mer information. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Efterkommande av -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ingen standard adressmall hittades. Skapa en ny från Inställningar> Utskrift och märkning> Adressmall. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Kontakter har konfigurerats. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Gömma detaljer apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Teckensnittsstilar apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Din prenumeration upphör att gälla {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Autentisering misslyckades när du mottog e-post från e-postkonto {0}. Meddelande från servern: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Statistik baserat på förra veckans prestanda (från {0} till {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,Automatisk länkning kan endast aktiveras om Inkommande är aktiverat. DocType: Website Settings,Title Prefix,Titel Prefix apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Autentiseringsprogram som du kan använda är: DocType: Bulk Update,Max 500 records at a time,Max 500 poster i taget @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,Rapportera filter apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Välj kolumner DocType: Event,Participants,Deltagarna DocType: Auto Repeat,Amended From,Ändrad från -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Din information har skickats in +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Din information har skickats in DocType: Help Category,Help Category,Hjälpkategori apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 månad apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Välj ett befintligt format för att redigera eller starta ett nytt format. @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Fält att spåra DocType: User,Generate Keys,Generera nycklar DocType: Comment,Unshared,odelade -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,sparad +DocType: Translation,Saved,sparad DocType: OAuth Client,OAuth Client,OAuth Client DocType: System Settings,Disable Standard Email Footer,Inaktivera Standard Email Footer apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Utskriftsformat {0} är inaktiverat @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Senast uppdat DocType: Data Import,Action,Verkan apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Klientnyckel krävs DocType: Chat Profile,Notifications,anmälningar +DocType: Translation,Contributed,Bidrog DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy DocType: Report,Custom Report,Anpassad rapport DocType: Workflow State,info-sign,info-sign @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Kontakta DocType: LDAP Settings,LDAP Username Field,LDAP användarfält apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Fältet {0} kan inte ställas in som unikt i {1}, eftersom det finns icke-unika existerande värden" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Inställningar> Anpassa formulär DocType: User,Social Logins,Sociala logins DocType: Workflow State,Trash,Skräp DocType: Stripe Settings,Secret Key,Hemlig nyckel @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,Titelfältet apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Kunde inte ansluta till utgående e-postserver DocType: File,File URL,Filadress DocType: Help Article,Likes,Gillar +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google Kontakter Integration är inaktiverad. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Du måste vara inloggad och ha System Manager Roll för att kunna få tillgång till säkerhetskopior. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Första nivån DocType: Blogger,Short Name,Kort namn @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Importera Zip DocType: Contact,Gender,Kön DocType: Workflow State,thumbs-down,tummen ner -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Kö bör vara en av {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Kan inte ställa in meddelande om dokumenttyp {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Lägga till systemhanteraren till den här användaren eftersom det måste finnas minst en systemhanterare apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Välkommen email skickat DocType: Transaction Log,Chaining Hash,Chaining Hash DocType: Contact,Maintenance Manager,Underhållschef +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Som jämförelse använd> 5, <10 eller = 324. För intervaller, använd 5:10 (för värden mellan 5 och 10)." apps/frappe/frappe/utils/bot.py,show,show apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Dela URL apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Otillräckligt filformat @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,Underrättelse DocType: Data Import,Show only errors,Visa bara fel DocType: Energy Point Log,Review,Recension apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Rader som tagits bort -DocType: GSuite Settings,Google Credentials,Google Referenser +DocType: Google Settings,Google Credentials,Google Referenser apps/frappe/frappe/www/login.html,Or login with,Eller logga in med apps/frappe/frappe/model/document.py,Record does not exist,Posten existerar inte apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Nytt rapportnamn @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,Lista DocType: Workflow State,th-large,th-stor apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Kan inte ställa in Tilldela Skicka om inte inlämningsbart apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Ej länkad till någon post +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Det gick inte att ansluta till QZ Tray Application ...

Du måste ha QZ Tray-programmet installerat och kört, för att kunna använda Raw Print-funktionen.

Klicka här för att hämta och installera QZ-facket .
Klicka här för att lära dig mer om Raw Printing ." DocType: Chat Message,Content,Innehåll DocType: Workflow Transition,Allow Self Approval,Tillåt själv godkännande apps/frappe/frappe/www/qrcode.py,Page has expired!,Sidan har gått ut! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,hand höger DocType: Website Settings,Banner is above the Top Menu Bar.,Banderollen ligger ovanför toppmenyn. apps/frappe/frappe/www/update-password.html,Invalid Password,felaktigt lösenord apps/frappe/frappe/utils/data.py,1 month ago,1 månad sedan +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Tillåt åtkomst till Google Kontakter DocType: OAuth Client,App Client ID,App Client ID DocType: DocField,Currency,Valuta DocType: Website Settings,Banner,Baner @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Mål DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Om en roll inte har åtkomst på nivå 0, är högre nivåer meningslösa." DocType: ToDo,Reference Type,Referenstyp -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Tillåt DocType, DocType. Var försiktig!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Tillåt DocType, DocType. Var försiktig!" DocType: Domain Settings,Domain Settings,Domain Settings DocType: Auto Email Report,Dynamic Report Filters,Dynamiska rapportfiler DocType: Energy Point Log,Appreciation,Uppskattning @@ -1468,6 +1489,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,us-väst-2 DocType: DocType,Is Single,Är singel apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Skapa ett nytt format +DocType: Google Contacts,Authorize Google Contacts Access,Godkänn åtkomst till Google Kontakter DocType: S3 Backup Settings,Endpoint URL,Slutpunkts-URL DocType: Social Login Key,Google,Google DocType: Contact,Department,Avdelning @@ -1482,7 +1504,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Tilldela till DocType: List Filter,List Filter,Lista filter DocType: Dashboard Chart Link,Chart,Diagram apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Kan inte ta bort -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Skicka in det här dokumentet för att bekräfta +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Skicka in det här dokumentet för att bekräfta apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} existerar redan. Välj ett annat namn apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Du har olagrade ändringar i det här formuläret. Spara innan du fortsätter. apps/frappe/frappe/model/document.py,Action Failed,Åtgärd misslyckades @@ -1564,6 +1586,7 @@ DocType: DocField,Display,Visa apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Svara alla DocType: Calendar View,Subject Field,Ämnesfält apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Sessionsutgången måste vara i format {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},Ansökan: {0} DocType: Workflow State,zoom-in,zooma in apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Misslyckades med att ansluta till servern apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Datum {0} måste vara i format: {1} @@ -1575,8 +1598,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Ikonen kommer att visas på knappen DocType: Role Permission for Page and Report,Set Role For,Ange roll för +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Automatisk länkning kan endast aktiveras för ett e-postkonto. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Inga e-postkonton tilldelades +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-postkonto är inte inställt. Skapa ett nytt e-postkonto från Inställningar> E-post> E-postkonto apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Uppdrag +DocType: Google Contacts,Last Sync On,Senast synkroniserad apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},uppnådd av {0} via automatisk regel {1} apps/frappe/frappe/config/website.py,Portal,Portal apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Tack för ditt email @@ -1597,7 +1623,6 @@ DocType: GSuite Settings,GSuite Settings,GSuite Inställningar DocType: Integration Request,Remote,Avlägsen DocType: File,Thumbnail URL,Thumbnail URL apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Hämta rapport -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup> User apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Anpassningar för {0} som exporteras till:
{1} DocType: GCalendar Account,Calendar Name,Kalendernamn apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Ditt inloggnings-ID är @@ -1647,6 +1672,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Gå t apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Bildfältet måste vara ett giltigt fältnamn apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,Du måste vara inloggad för att komma till denna sida DocType: Assignment Rule,Example: {{ subject }},Exempel: {{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Fältnamn {0} är begränsat apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Du kan inte avstänga 'Read Only' för fält {0} DocType: Social Login Key,Enable Social Login,Aktivera social loggning DocType: Workflow,Rules defining transition of state in the workflow.,Regler som definierar tillståndsövergång i arbetsflödet. @@ -1667,10 +1693,10 @@ DocType: Website Settings,Route Redirects,Rutt omdirigeringar apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Email Inbox apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},återställs {0} som {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Tilldela automatiskt dokument till användare +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Öppna Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,E-postmallar för vanliga frågor. DocType: Letter Head,Letter Head Based On,Brevhuvud baserat på apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Vänligen stäng detta fönster -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Betalning Komplett DocType: Contact,Designation,Beteckning DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Metataggar @@ -1709,6 +1735,7 @@ DocType: System Settings,Choose authentication method to be used by all users,V DocType: Error Snapshot,Parent Error Snapshot,Föreläsningsfel för föräldrafel DocType: GCalendar Account,GCalendar Account,GCalendar-konto DocType: Language,Language Name,språknamn +DocType: Workflow Document State,Workflow Action is not created for optional states,Arbetsflöde Åtgärd skapas inte för valfria stater DocType: Customize Form,Customize Form,Anpassa formuläret DocType: DocType,Image Field,Bildfält apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Tillagt {0} ({1}) @@ -1750,6 +1777,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,Använd denna regel om användaren är ägaren DocType: About Us Settings,Org History Heading,Org Historik Rubrik apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Serverfel +DocType: Contact,Google Contacts Description,Google Kontakter Beskrivning apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Standardroller kan inte bytas om DocType: Review Level,Review Points,Granskningspoäng apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Saknas parameter Kanban Board Name @@ -1767,7 +1795,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Inte i utvecklarläge! Ange i site_config.json eller gör 'Custom' DocType. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,fick {0} poäng DocType: Web Form,Success Message,Succesmeddelande -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Som jämförelse använd> 5, <10 eller = 324. För intervaller, använd 5:10 (för värden mellan 5 och 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Beskrivning för listningssida, i vanlig text, endast ett par rader. (max 140 tecken)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Visa behörigheter DocType: DocType,Restrict To Domain,Begränsa till domänen @@ -1789,6 +1816,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Inte f apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Ange antal DocType: Auto Repeat,End Date,Slutdatum DocType: Workflow Transition,Next State,Nästa stat +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Synkroniserad med Google Kontakter. DocType: System Settings,Is First Startup,Är första uppstart apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},uppdaterad till {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Flytta till @@ -1838,6 +1866,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Kalender apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Dataimportmall DocType: Workflow State,hand-left,hand vänster +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Välj flera listobjekt apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Backup Storlek: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Länkade med {0} DocType: Braintree Settings,Private Key,Privat nyckel @@ -1880,13 +1909,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Intressera DocType: Bulk Update,Limit,Begränsa DocType: Print Settings,Print taxes with zero amount,Skriv ut skatter med nollbelopp -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-postkonto är inte inställt. Skapa ett nytt e-postkonto från Inställningar> E-post> E-postkonto DocType: Workflow State,Book,bok DocType: S3 Backup Settings,Access Key ID,Åtkomstnyckel ID DocType: Chat Message,URLs,Webbadresser adresser~~POS=HEADCOMP apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Namnen och efternamnen i sig är lätt att gissa. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Rapportera {0} DocType: About Us Settings,Team Members Heading,Team medlemmar Rubrik +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Välj listobjekt apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Dokumentet {0} har ställts in för att ange {1} med {2} DocType: Address Template,Address Template,Adressmall DocType: Workflow State,step-backward,gå bakåt @@ -1910,6 +1939,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Exportera anpassade tillstånd apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Ingen: Slut på arbetsflödet DocType: Version,Version,Version +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Öppna listobjektet apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 månader DocType: Chat Message,Group,Grupp apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Det finns problem med filadressen: {0} @@ -1965,6 +1995,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 år apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} återställde dina poäng på {1} DocType: Workflow State,arrow-down,pil-ned DocType: Data Import,Ignore encoding errors,Ignorera kodningsfel +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Landskap DocType: Letter Head,Letter Head Name,Brevhuvudnamn DocType: Web Form,Client Script,Client Script DocType: Assignment Rule,Higher priority rule will be applied first,Högre prioritetsregel tillämpas först @@ -2009,6 +2040,7 @@ DocType: Kanban Board Column,Green,Grön apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Endast obligatoriska fält är nödvändiga för nya register. Du kan ta bort icke-obligatoriska kolumner om du vill. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} måste börja och sluta med ett brev och kan bara innehålla bokstäver, bindestreck eller understrykning." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Trigger Primary Action apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Skapa användar e-post apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Sorteringsfältet {0} måste vara ett giltigt fältnamn DocType: Auto Email Report,Filter Meta,Filter Meta @@ -2038,6 +2070,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Tidslinjefält apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Läser in... DocType: Auto Email Report,Half Yearly,Halv årligen +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Min profil apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Senast ändrad datum DocType: Contact,First Name,Förnamn DocType: Post,Comments,kommentarer @@ -2060,6 +2093,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Innehållshash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Inlägg av {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} tilldelad {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Inga nya Google-kontakter har synkroniserats. DocType: Workflow State,globe,klot apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Medelvärdet av {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Rensa felloggar @@ -2086,6 +2120,8 @@ DocType: Workflow State,Inverse,Omvänd DocType: Activity Log,Closed,Stängd DocType: Report,Query,Fråga DocType: Notification,Days After,Dagar efter +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Sida-genvägar +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Porträtt apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Begäran tog för lång tid DocType: System Settings,Email Footer Address,E-postadress apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energipunktsuppdatering @@ -2113,6 +2149,7 @@ For Select, enter list of Options, each on a new line.","För Länkar, ange DocT apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 minut sedan apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Inga aktiva sessioner apps/frappe/frappe/model/base_document.py,Row,Rad +DocType: Contact,Middle Name,Mellannamn apps/frappe/frappe/public/js/frappe/request.js,Please try again,Var god försök igen DocType: Dashboard Chart,Chart Options,Diagramalternativ DocType: Data Migration Run,Push Failed,Push misslyckades @@ -2141,6 +2178,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,ändra storlek-small DocType: Comment,Relinked,Relinked DocType: Role Permission for Page and Report,Roles HTML,Roller HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Gå apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Arbetsflödet startar efter att du har sparat. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Om dina data finns i HTML, kopiera klistra in den exakta HTML-koden med taggarna." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Datum är ofta lätt att gissa. @@ -2169,7 +2207,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Skrivbordsikon apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,avbröt det här dokumentet apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Datumintervall -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Inställningar> Användarbehörigheter apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} uppskattad {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Värden ändras apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Fel i anmälan @@ -2234,6 +2271,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Bulk Delete DocType: DocShare,Document Name,Dokument namn apps/frappe/frappe/config/customization.py,Add your own translations,Lägg till dina egna översättningar +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Navigera listan ner DocType: S3 Backup Settings,eu-central-1,eu-central-1 DocType: Auto Repeat,Yearly,Årlig apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Döpa om @@ -2284,6 +2322,7 @@ DocType: Workflow State,plane,plan apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Nested set error. Vänligen kontakta administratören. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Visa rapport DocType: Auto Repeat,Auto Repeat Schedule,Auto Repeat Schedule +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Visa Ref DocType: Address,Office,Kontor DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} dagar sedan @@ -2317,7 +2356,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Sa apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Mina inställningar apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Gruppnamn kan inte vara tomt. DocType: Workflow State,road,väg -DocType: Website Route Redirect,Source,Källa +DocType: Contact,Source,Källa apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Aktiva Sessioner apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Det kan bara vara en Fold i en form apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Ny chatt @@ -2339,6 +2378,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Var god ange auktoriserad URL DocType: Email Account,Send Notification to,Skicka meddelande till apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Inställningar för Dropbox-säkerhetskopiering +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,Något gick fel under token-generationen. Klicka på {0} för att skapa en ny. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Ta bort alla anpassningar? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Endast administratören kan redigera DocType: Auto Repeat,Reference Document,Referensdokument @@ -2363,6 +2403,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Roller kan ställas in för användare från deras användarsida. DocType: Website Settings,Include Search in Top Bar,Inkludera sökning i toppraden apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Urgent] Fel vid skapande av återkommande% s för% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Globala genvägar DocType: Help Article,Author,Författare DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Inget dokument hittades för givna filter @@ -2398,10 +2439,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, rad {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Om du laddar upp nya poster blir "Naming Series" obligatoriskt, om det finns närvarande." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Redigera egenskaper -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Kan inte öppna instans när dess {0} är öppen +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,Kan inte öppna instans när dess {0} är öppen DocType: Activity Log,Timeline Name,Tidslinje namn DocType: Comment,Workflow,Workflow apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Ange basadressen i den sociala inloggningsnyckeln för Frappe +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Tangentbordsgenvägar DocType: Portal Settings,Custom Menu Items,Anpassade menyalternativ apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,Längden på {0} bör vara mellan 1 och 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Anslutning förlorad. Vissa funktioner kanske inte fungerar. @@ -2464,6 +2506,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Rader tilla DocType: DocType,Setup,Inrätta apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} skapades framgångsrikt apps/frappe/frappe/www/update-password.html,New Password,nytt lösenord +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Välj fält apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Lämna den här konversationen DocType: About Us Settings,Team Members,Lagmedlemmar DocType: Blog Settings,Writers Introduction,Författare Introduktion @@ -2533,13 +2576,12 @@ DocType: Chat Room,Name,namn DocType: Communication,Email Template,E-postmall DocType: Energy Point Settings,Review Levels,Granska nivåer DocType: Print Format,Raw Printing,Råtryck -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Kan inte öppna {0} när dess instans är öppen +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,Kan inte öppna {0} när dess instans är öppen DocType: DocType,"Make ""name"" searchable in Global Search",Gör "namn" sökbart i Global Search DocType: Data Migration Mapping,Data Migration Mapping,Data Migration Kartläggning DocType: Data Import,Partially Successful,Delvis framgångsrik DocType: Communication,Error,Fel apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fälttyp kan inte ändras från {0} till {1} i rad {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Det gick inte att ansluta till QZ Tray Application ...

Du måste ha QZ Tray-programmet installerat och kört, för att kunna använda Raw Print-funktionen.

Klicka här för att hämta och installera QZ-facket .
Klicka här för att lära dig mer om Raw Printing ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Ta ett foto apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,Undvik år som är förknippade med dig. DocType: Web Form,Allow Incomplete Forms,Tillåt ofullständiga blanketter @@ -2635,7 +2677,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Välj mål = "_blank" för att öppna på en ny sida. DocType: Portal Settings,Portal Menu,Portal Menu DocType: Website Settings,Landing Page,Landningssida -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,Vänligen logga in eller logga in för att börja DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontaktalternativ, som "Försäljningsfråga, supportfråga" etc vardera på en ny rad eller åtskilda av kommatecken." apps/frappe/frappe/twofactor.py,Verfication Code,Verfication Code apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} är redan avstängd @@ -2721,6 +2762,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Data Migrations DocType: Address,Sales User,Försäljningsanvändare apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Ändra fältegenskaper (göm, readonly, permission etc.)" DocType: Property Setter,Field Name,Fält namn +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Kund DocType: Print Settings,Font Size,Textstorlek DocType: User,Last Password Reset Date,Senaste lösenord Återställ Datum DocType: System Settings,Date and Number Format,Datum och Nummerformat @@ -2786,6 +2828,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Gruppnod apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Sammanfoga med befintliga DocType: Blog Post,Blog Intro,Blog Intro apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Nytt Nämn +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Hoppa till fält DocType: Prepared Report,Report Name,Rapportnamn apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Uppdatera för att få det senaste dokumentet. apps/frappe/frappe/core/doctype/communication/communication.js,Close,Stänga @@ -2795,10 +2838,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Händelse DocType: Social Login Key,Access Token URL,Access-Token-URL apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Vänligen ange Dropbox-åtkomstnycklar i din webbplatskonfiguration +DocType: Google Contacts,Google Contacts,Google Kontakter DocType: User,Reset Password Key,Återställ lösenordsnyckel apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Modifierad av DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.","För att förnya, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Sparad +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Skicka ett mail till {0} för att länka det här. DocType: File,Folder,Mapp DocType: DocField,Perm Level,Perm Nivå DocType: Print Settings,Page Settings,Sidinställningar @@ -2828,6 +2874,7 @@ DocType: Workflow State,remove-sign,ta bort-sign DocType: Dashboard Chart,Full,Full DocType: DocType,User Cannot Create,Användaren kan inte skapa apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Du fick {0} poäng +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup> User DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.",Om du ställer in det här kommer det här objektet i en rullgardinsmeny under den valda föräldern. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Inga e-postmeddelanden apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Följande fält saknas: @@ -2841,13 +2888,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Vis DocType: Web Form,Web Form Fields,Webformulärfält DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Användarredigerbar blankett på hemsidan. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Permanent Avbryt {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Permanent Avbryt {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Alternativ 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,Totals apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Detta är ett mycket vanligt lösenord. DocType: Personal Data Deletion Request,Pending Approval,Väntar på godkännande apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Dokumentet kunde inte tilldelas korrekt apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Ej tillåtet för {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Inga värden att visa DocType: Personal Data Download Request,Personal Data Download Request,Nedladdning av personuppgifter apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} delade det här dokumentet med {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Välj {0} @@ -2863,7 +2911,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Det här meddelandet skickades till {0} och kopierades till {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,ogiltigt användarnamn eller lösenord DocType: Social Login Key,Social Login Key,Social inloggnings nyckel -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Vänligen konfigurera standard E-postkonto från Inställningar> E-post> E-postkonto apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filer sparade DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Hur ska denna valuta formateras? Om den inte är inställd, kommer den att använda systeminställningarna" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} är satt till tillstånd {2} @@ -2989,6 +3036,7 @@ DocType: User,Location,Plats apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Inga data DocType: Website Meta Tag,Website Meta Tag,Webbplats Meta Tag DocType: Workflow State,film,filma +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Kopieras till Urklipp. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Inställningar hittades inte apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Etikett är obligatoriskt DocType: Webhook,Webhook Headers,Webhook Headers @@ -3197,7 +3245,7 @@ DocType: Address,Address Line 1,Adress Linje 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,För dokumenttyp apps/frappe/frappe/model/base_document.py,Data missing in table,Data saknas i tabellen apps/frappe/frappe/utils/bot.py,Could not identify {0},Det gick inte att identifiera {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Den här blanketten har ändrats efter att du har laddat den +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Den här blanketten har ändrats efter att du har laddat den apps/frappe/frappe/www/login.html,Back to Login,Tillbaka till login apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Inte inställd DocType: Data Migration Mapping,Pull,Dra @@ -3265,6 +3313,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Barnbordsmappning apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Ange e-postkonto med ditt lösenord för: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,För många skriver i en förfrågan. Vänligen skicka mindre förfrågningar DocType: Social Login Key,Salesforce,Salesforce +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Importerar {0} av {1} DocType: User,Tile,Bricka apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} Rummet måste ha minst en användare. DocType: Email Rule,Is Spam,Är spam @@ -3302,7 +3351,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,mapp-close DocType: Data Migration Run,Pull Update,Pull Update apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},fusionerades {0} i {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Inga resultat funna för '

DocType: SMS Settings,Enter url parameter for receiver nos,Ange URL-parametern för mottagaren nos apps/frappe/frappe/utils/jinja.py,Syntax error in template,Syntaxfel i mall apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Ange filtervärde i rapportfiltertabellen. @@ -3315,6 +3363,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Tyvärr, du DocType: System Settings,In Days,I dagar DocType: Report,Add Total Row,Lägg till totalt rad apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Session Start misslyckades +DocType: Translation,Verified,Verifierad DocType: Print Format,Custom HTML Help,Anpassad HTML-hjälp DocType: Address,Preferred Billing Address,Föredragen faktureringsadress apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Tilldelats @@ -3329,7 +3378,6 @@ DocType: Help Article,Intermediate,Mellanliggande DocType: Module Def,Module Name,Modulnamn DocType: OAuth Authorization Code,Expiration time,Utgångstid apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Ange standardformat, sidstorlek, utskriftsstil etc." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,Du kan inte gilla något som du skapade DocType: System Settings,Session Expiry,Session Utgång DocType: DocType,Auto Name,Automatisk namn apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Välj bifogade filer @@ -3357,6 +3405,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Systemsida DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Obs! Som standard skickas e-postmeddelanden för misslyckade säkerhetskopior. DocType: Custom DocPerm,Custom DocPerm,Anpassad DocPerm +DocType: Translation,PR sent,PR skickad DocType: Tag Doc Category,Doctype to Assign Tags,Doktyp för att tilldela taggar DocType: Address,Warehouse,lager apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Dropbox Setup @@ -3424,7 +3473,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Enter för att lägga till kommentar apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Fält {0} kan inte väljas. DocType: User,Birth Date,Födelsedatum -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Med gruppindragning DocType: List View Setting,Disable Count,Inaktivera räkning DocType: Contact Us Settings,Email ID,E-post ID apps/frappe/frappe/utils/password.py,Incorrect User or Password,Felaktig Användare eller Lösenord @@ -3459,6 +3507,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Denna roll uppdaterar användarbehörigheter för en användare DocType: Website Theme,Theme,Tema DocType: Web Form,Show Sidebar,Visa sidofältet +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google Kontakter Integration. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Standardinmatning apps/frappe/frappe/www/login.py,Invalid Login Token,Ogiltig loggningstoken apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Ange först namnet och spara posten. @@ -3486,7 +3535,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Vänligen korrigera DocType: Top Bar Item,Top Bar Item,Top Bar Item ,Role Permissions Manager,Rollbehörigheter -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,Det fanns fel. Vänligen anmäla detta. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} år sedan apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Kvinna DocType: System Settings,OTP Issuer Name,OTP-utgivarens namn apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Lägg till att göra @@ -3586,6 +3635,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Instä apps/frappe/frappe/model/document.py,none of,ingen av DocType: Desktop Icon,Page,Sida DocType: Workflow State,plus-sign,plustecken +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Rensa cache och ladda om apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Kan inte uppdateras: Felaktig / utgått länk. DocType: Kanban Board Column,Yellow,Gul DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Antal kolumner för ett fält i ett rutnät (Totalt kolumner i ett rutnät ska vara mindre än 11) @@ -3600,6 +3650,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Ny K DocType: Activity Log,Date,Datum DocType: Communication,Communication Type,Kommunikationstyp apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Föräldrabordet +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Navigera listan upp DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Visa fullständigt fel och tillåta rapportering av problem till utvecklaren DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3621,7 +3672,6 @@ DocType: Notification Recipient,Email By Role,E-post till roll apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,Uppgradera för att lägga till fler än {0} abonnenter apps/frappe/frappe/email/queue.py,This email was sent to {0},Det här meddelandet skickades till {0} DocType: User,Represents a User in the system.,Representerar en användare i systemet. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Sida {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Starta nytt format apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Lägg till en kommentar apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} av {1} diff --git a/frappe/translations/sw.csv b/frappe/translations/sw.csv index 171aeff887..e27ac8c932 100644 --- a/frappe/translations/sw.csv +++ b/frappe/translations/sw.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Wezesha Gradients DocType: DocType,Default Sort Order,Chagua Panga Order apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Inaonyesha mashamba ya Numeric tu kutoka Ripoti +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Bonyeza Alt Key ili kuchochea njia za mkato za ziada kwenye Menyu na Sidebar DocType: Workflow State,folder-open,folda-wazi DocType: Customize Form,Is Table,"Je, ni Jedwali" apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,"Haiwezi kufungua faili iliyofungwa. Je, ulinunua nje kama CSV?" DocType: DocField,No Copy,Hakuna nakala DocType: Custom Field,Default Value,Thamani ya Hitilafu apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Pendekeza kuwa ni lazima kwa barua pepe zinazoingia +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Sawazisha Mawasiliano DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Maelezo ya Ramani ya Uhamiaji wa Data apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Futa kufuata apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",Uchapishaji wa PDF kupitia "Raw Print" bado haujaungwa mkono. Tafadhali ondoa ramani ya printer katika Mipangilio ya Mipangilio na jaribu tena. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} na {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Kulikuwa na hitilafu kuokoa filters apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Ingiza nenosiri lako apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Haiwezi kufuta folda za Nyumbani na Vifungo +DocType: Email Account,Enable Automatic Linking in Documents,Wezesha Kuunganisha Moja kwa moja kwenye Nyaraka DocType: Contact Us Settings,Settings for Contact Us Page,Mipangilio ya Wasiliana nasi Ukurasa DocType: Social Login Key,Social Login Provider,Mtoa Msaidizi wa Jamii +DocType: Email Account,"For more information, click here.","Kwa habari zaidi, bofya hapa ." DocType: Transaction Log,Previous Hash,Hash iliyopita DocType: Notification,Value Changed,Thamani imebadilishwa DocType: Report,Report Type,Aina ya Ripoti @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Kanuni ya Nishati ya Nishati apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,Tafadhali ingiza Kitambulisho cha Mteja kabla ya kuingia kwa kibinafsi imewezeshwa DocType: Communication,Has Attachment,Ina Attachment DocType: User,Email Signature,Saini ya barua pepe -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} miaka (s) zilizopita ,Addresses And Contacts,Anwani na Mawasiliano apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Bodi hii ya Kanban itakuwa ya faragha DocType: Data Migration Run,Current Mapping,Ramani ya Sasa @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Unachagua Chaguo la Usawazishaji kama ALL, Itakuwa resync yote \ kusoma pamoja na ujumbe usiojifunza kutoka kwa seva. Hii inaweza pia kusababisha kusababisha kurudia \ ya Mawasiliano (barua pepe)." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Imeshindwa mwisho {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Haiwezi kubadilisha maudhui ya kichwa +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Hakuna matokeo yaliyopatikana kwa '

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Hairuhusiwi kubadili {0} baada ya kuwasilisha apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Programu imesasishwa kwa toleo jipya, tafadhali rasha upya ukurasa huu" DocType: User,User Image,Picha ya mtumiaji @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Andik apps/frappe/frappe/public/js/frappe/chat.js,Discard,Lazima DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Chagua picha ya upana wa wastani wa 150px na background ya uwazi kwa matokeo bora. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,Ilirudiwa tena +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} thamani zilizochaguliwa DocType: Blog Post,Email Sent,Kutumwa Barua pepe DocType: Communication,Read by Recipient On,Soma na Mpokeaji DocType: User,Allow user to login only after this hour (0-24),Ruhusu mtumiaji kuingia tu baada ya saa hii (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,umri_wapo apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Module ya Kuagiza DocType: DocType,Fields,Mashamba -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Huruhusiwi kuchapisha hati hii +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Huruhusiwi kuchapisha hati hii apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Mzazi apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Kipindi chako kimekamilika, tafadhali ingia tena ili uendelee." DocType: Assignment Rule,Priority,Kipaumbele @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Sasisha siri ya OT DocType: DocType,UPPER CASE,UPERIAJI apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,Tafadhali weka Anwani ya barua pepe DocType: Communication,Marked As Spam,Imewekwa kama Spam +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Anwani ya barua pepe ambao Mawasiliano ya Google wanapatanishwa. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Weka Wajili apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Hifadhi Filter DocType: Address,Preferred Shipping Address,Anwani ya Maandalizi ya Maandalizi DocType: GCalendar Account,The name that will appear in Google Calendar,Jina ambalo litaonekana katika Kalenda ya Google +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Bonyeza kwenye {0} ili kuzalisha Kitambulisho cha Refresh. DocType: Email Account,Disable SMTP server authentication,Lemaza uthibitishaji wa seva ya SMTP DocType: Email Account,Total number of emails to sync in initial sync process ,Idadi ya barua pepe za kusawazisha katika mchakato wa usawazishaji wa awali DocType: System Settings,Enable Password Policy,Wezesha Sera ya Nywila @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Weka Msimbo apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Sio DocType: Auto Repeat,Start Date,Tarehe ya Mwanzo apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Weka Chati +DocType: Website Theme,Theme JSON,Mandhari JSON apps/frappe/frappe/www/list.py,My Account,Akaunti yangu DocType: DocType,Is Published Field,Inayochapishwa Field DocType: DocField,Set non-standard precision for a Float or Currency field,Weka usahihi usio wa kawaida kwa uwanja wa Float au Fedha @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Ongeza Reference: {{ reference_doctype }} {{ reference_name }} kutuma kumbukumbu ya waraka DocType: LDAP Settings,LDAP First Name Field,Sehemu ya Jina la Kwanza la LDAP apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Default Kutuma na Kikasha -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Kuweka> Customize Fomu apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.","Kwa uppdatering, unaweza kuboresha nguzo tu zilizochaguliwa." apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',Kipengee cha 'Angalia' aina ya shamba lazima iwe '0' au '1' apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Shiriki hati hii na @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Domains HTML DocType: Blog Settings,Blog Settings,Mipangilio ya Blog apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Jina la DocType linapaswa kuanza na barua na linaweza tu kujumuisha barua, namba, nafasi na undani" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Kuweka> Vyeti vya Mtumiaji DocType: Communication,Integrations can use this field to set email delivery status,Ushirikiano unaweza kutumia shamba hili kuweka hali ya utoaji wa barua pepe apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Mipangilio ya uingizaji wa njia ya malipo DocType: Print Settings,Fonts,Fonts DocType: Notification,Channel,Kituo DocType: Communication,Opened,Ilifunguliwa DocType: Workflow Transition,Conditions,Masharti +apps/frappe/frappe/config/website.py,A user who posts blogs.,Mtumiaji anayesilisha blogi. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Hauna akaunti? Jiandikisha apps/frappe/frappe/utils/file_manager.py,Added {0},Aliongeza {0} DocType: Newsletter,Create and Send Newsletters,Unda na Tuma Majarida DocType: Website Settings,Footer Items,Vipengee Vipande +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Tafadhali kuanzisha Akaunti ya barua pepe ya default kutoka kwa Usanidi> Barua pepe> Akaunti ya Barua pepe DocType: Website Slideshow Item,Website Slideshow Item,Website Slideshow Item apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Jisajili Programu ya Mteja wa OAuth DocType: Error Snapshot,Frames,Muafaka @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Kiwango cha 0 ni kwa ruhusa ya kiwango cha hati, viwango vya juu vya vibali vya ngazi ya shamba." DocType: Address,City/Town,Mji / Mji DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Hii itaweka upya mandhari yako ya sasa, una uhakika unataka kuendelea?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Mandhari zinazohitajika katika {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Hitilafu wakati wa kuunganisha akaunti ya barua pepe {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Hitilafu imetokea wakati wa kuunda mara kwa mara @@ -528,7 +537,7 @@ DocType: Event,Event Category,Jamii ya Tukio apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Nguzo zinazotegemea apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Badilisha kichwa DocType: Communication,Received,Imepokea -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Huruhusiwi kufikia ukurasa huu. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Huruhusiwi kufikia ukurasa huu. DocType: User Social Login,User Social Login,Uingiaji wa Watumiaji wa Jamii apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,Andika faili ya Python kwenye folda moja ambako hii imehifadhiwa na kurudi safu na matokeo. DocType: Contact,Purchase Manager,Meneja wa Ununuzi @@ -580,7 +589,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Sani apps/frappe/frappe/utils/data.py,Operator must be one of {0},Opereta lazima awe mmoja wa {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Ikiwa Mmiliki DocType: Data Migration Run,Trigger Name,Jina la Trigger -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Andika majina na utangulizi kwenye blogu yako. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Ondoa Shamba apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Omba Wote apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Rangi ya asili @@ -630,6 +638,7 @@ DocType: Dashboard Chart,Bar,Bar DocType: SMS Settings,Enter url parameter for message,Ingiza parameter ya url kwa ujumbe apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Mpangilio mpya wa kuchapa desturi apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} tayari iko +DocType: Workflow Document State,Is Optional State,Ni Hali ya Hiari DocType: Address,Purchase User,Mtumiaji wa Ununuzi DocType: Data Migration Run,Insert,Ingiza DocType: Web Form,Route to Success Link,Njia ya Mafanikio ya Kiungo @@ -637,13 +646,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Jina la DocType: File,Is Home Folder,Ni Folda ya Nyumbani apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Weka: DocType: Post,Is Pinned,Imewekwa -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Hakuna kibali cha '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Hakuna kibali cha '{0}' {1} DocType: Patch Log,Patch Log,Ingia ya Patch DocType: Print Format,Print Format Builder,Muundo wa Wajumbe wa Kuchapa 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","Ikiwa imewezeshwa, watumiaji wote wanaweza kuingia kutoka kwa anwani yoyote ya IP kutumia Two Factor Auth. Hii pia inaweza kuweka kwa watumiaji maalum katika Ukurasa wa Mtumiaji" apps/frappe/frappe/utils/data.py,only.,tu. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,Hali '{0}' ni batili DocType: Auto Email Report,Day of Week,Siku ya Juma +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Wezesha API ya Google katika Mipangilio ya Google. DocType: DocField,Text Editor,Mhariri wa Nakala apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Kata apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Tafuta au funga amri @@ -651,6 +661,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,Idadi ya salama za DB haiwezi kuwa chini ya 1 DocType: Workflow State,ban-circle,mzunguko wa marufuku DocType: Data Export,Excel,Excel +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Kichwa, Breadcrumbs na Meta Tags" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Msaada Anwani ya barua pepe Haijafafanuliwa DocType: Comment,Published,Ilichapishwa DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","Kumbuka: Kwa matokeo bora, picha lazima ziwe na ukubwa sawa na upana lazima uwe mkubwa zaidi kuliko urefu." @@ -741,6 +752,7 @@ DocType: System Settings,Scheduler Last Event,Mpangilio wa Mwisho wa Mpangilio apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Ripoti ya hisa zote za hati DocType: Website Sidebar Item,Website Sidebar Item,Tovuti ya Sidebar Item apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Kufanya +DocType: Google Settings,Google Settings,Mipangilio ya Google apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Chagua Nchi yako, Eneo la Wakati na Fedha" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Ingiza vigezo vya url zilizopo hapa (mfano mtumaji = ERPNext, jina la mtumiaji = ERPNext, password = 1234 nk)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Hakuna Akaunti ya Barua pepe @@ -794,6 +806,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,Kitambulisho cha OAuth Kitambulisho ,Setup Wizard,Mchawi wa Kuweka apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Badilisha Chati +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,Inalinganisha DocType: Data Migration Run,Current Mapping Action,Hali ya Ramani ya Sasa DocType: Email Account,Initial Sync Count,Hesabu ya Usawazishaji wa awali apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Mipangilio ya Wasiliana nasi Ukurasa. @@ -833,6 +846,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Aina ya Aina ya Kuchapa apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Hakuna vibali vinavyowekwa kwa vigezo hivi. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Panua Wote +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Hakuna Kigezo cha Anwani ya Kichwa kilichopatikana. Tafadhali fungua moja mpya kutoka kwa Usanidi> Uchapishaji na Branding> Kigezo cha Anwani. DocType: Tag Doc Category,Tag Doc Category,Fanya Hati ya Hati DocType: Data Import,Generated File,Faili iliyozalishwa apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Vidokezo @@ -840,7 +854,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Eneo la wakati wa mipangilio lazima liwe Kiungo au Kiungo cha Dynamic DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Arifa na barua pepe vingi zitatumwa kutoka kwenye seva hii inayoondoka. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Hii ni nenosiri la kawaida la 100. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Kuwasilisha kwa kudumu {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Kuwasilisha kwa kudumu {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} haipo, chagua lengo jipya la kuunganisha" DocType: Energy Point Rule,Multiplier Field,Shamba la Wingi DocType: Workflow,Workflow State Field,Field Field State @@ -880,6 +894,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} alikubali kazi yako kwa {1} na {2} pointi DocType: Auto Email Report,Zero means send records updated at anytime,Zero ina maana kutuma rekodi updated wakati wowote apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Thamani haiwezi kubadilishwa kwa {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Mipangilio ya Google API. DocType: System Settings,Force User to Reset Password,Weka Mtumiaji Kurejesha Nenosiri apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Ripoti za wajenzi wa Ripoti zinasimamiwa moja kwa moja na wajenzi wa ripoti. Kitu cha kufanya. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Badilisha Filter @@ -933,7 +948,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,kwa DocType: S3 Backup Settings,eu-north-1,eu-kaskazini-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Utawala mmoja tu unaoruhusiwa kwa Wajibu sawa, Kiwango na {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Huruhusiwi kusasisha Hati hii ya Fomu ya Wavuti -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Kiambatisho cha Maximum Limit kwa rekodi hii imefikia. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Kiambatisho cha Maximum Limit kwa rekodi hii imefikia. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,Tafadhali hakikisha Hati za Mawasiliano za Kumbukumbu haziunganishwa na mviringo. DocType: DocField,Allow in Quick Entry,Ruhusu Kuingia kwa haraka DocType: Error Snapshot,Locals,Wakazi @@ -964,7 +979,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Aina ya Ufikiaji apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},Haiwezi kufuta au kufuta kwa sababu {0} {1} imeunganishwa na {2} {3} {4} apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,Siri ya OTP inaweza tu kuweka upya na Msimamizi. -DocType: Web Form Field,Page Break,Uvunjaji wa Ukurasa DocType: Website Script,Website Script,Script Script DocType: Integration Request,Subscription Notification,Arifa ya Usajili DocType: DocType,Quick Entry,Kuingia kwa haraka @@ -981,6 +995,7 @@ DocType: Notification,Set Property After Alert,Weka Mali Baada ya Alert apps/frappe/frappe/__init__.py,Thank you,Asante apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks kwa ushirikiano wa ndani apps/frappe/frappe/config/settings.py,Import Data,Weka Data +DocType: Translation,Contributed Translation Doctype Name,Ilichangia Jina la Doctype la Tafsiri DocType: Social Login Key,Office 365,Ofisi 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,Kitambulisho DocType: Review Level,Review Level,Kiwango cha Uhakiki @@ -999,7 +1014,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Imefanyika kwa ufanisi apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Orodha apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Kufahamu -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Mpya {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Mawasiliano ya Msingi DocType: Print Format,Raw Commands,Maagizo mazuri apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Majarida ya Fomu ya Print @@ -1040,6 +1054,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Hitilafu katika Ma apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Pata {0} katika {1} DocType: Email Account,Use SSL,Tumia SSL DocType: DocField,In Standard Filter,Katika Filter Standard +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Hakuna Anwani za Google zilizopo za kusawazisha. DocType: Data Migration Run,Total Pages,Kurasa zote apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: Field '{1}' haiwezi kuweka kama ya kipekee kama ina maadili yasiyo ya kipekee DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Ikiwa imewezeshwa, watumiaji watatambuliwa kila wakati wanaingia. Ikiwa haijawezeshwa, watumiaji wataambiwa tu mara moja." @@ -1060,7 +1075,7 @@ DocType: Assignment Rule,Automation,Automation apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Unifungua faili ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Tafuta '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Kitu fulani kilikuwa kibaya -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Tafadhali salama kabla ya kuunganishwa. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,Tafadhali salama kabla ya kuunganishwa. DocType: Version,Table HTML,Jedwali HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,kitovu DocType: Page,Standard,Kiwango @@ -1138,12 +1153,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Hakuna Mato apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} kumbukumbu zimefutwa apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,Kitu kilichokosa wakati wa kuzalisha token ya upatikanaji wa dropbox. Tafadhali angalia kosa la kosa kwa maelezo zaidi. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Wazazi -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Hakuna Kigezo cha Anwani ya Kichwa kilichopatikana. Tafadhali fungua moja mpya kutoka kwa Usanidi> Uchapishaji na Branding> Kigezo cha Anwani. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Mawasiliano ya Google imewekwa. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Ficha maelezo apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Mitindo ya Font apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Usajili wako utaisha kwa {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Uthibitisho umeshindwa wakati wa kupokea barua pepe kutoka kwa Akaunti ya barua pepe {0}. Ujumbe kutoka kwa seva: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Takwimu za msingi wa utendaji wa wiki iliyopita (kutoka {0} hadi {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,Kuunganisha kwa moja kwa moja kunaweza kuanzishwa tu ikiwa Inakuja imewezeshwa. DocType: Website Settings,Title Prefix,Kiambatisho cha Kichwa apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Programu za uthibitishaji unazoweza kutumia ni: DocType: Bulk Update,Max 500 records at a time,Max 500 rekodi kwa wakati @@ -1176,7 +1192,7 @@ DocType: Auto Email Report,Report Filters,Futa Filters apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Chagua nguzo DocType: Event,Participants,Washiriki DocType: Auto Repeat,Amended From,Imebadilishwa Kutoka -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Maelezo yako yamewasilishwa +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Maelezo yako yamewasilishwa DocType: Help Category,Help Category,Msaada Jamii apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,Miezi 1 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Chagua muundo uliopo ili uhariri au kuanza muundo mpya. @@ -1223,7 +1239,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Shamba ya Kufuatilia DocType: User,Generate Keys,Tengeneza Keys DocType: Comment,Unshared,Haijahamishwa -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Imehifadhiwa +DocType: Translation,Saved,Imehifadhiwa DocType: OAuth Client,OAuth Client,Mteja wa OAuth DocType: System Settings,Disable Standard Email Footer,Zimaza Email Footer ya Standard apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Aina ya kuchapa {0} imezimwa @@ -1254,6 +1270,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Imesasishwa M DocType: Data Import,Action,Hatua apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Kitufe cha mteja kinahitajika DocType: Chat Profile,Notifications,Arifa +DocType: Translation,Contributed,Imechangia DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy DocType: Report,Custom Report,Ripoti ya Desturi DocType: Workflow State,info-sign,info-ishara @@ -1270,6 +1287,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Wasiliana DocType: LDAP Settings,LDAP Username Field,Jina la mtumiaji la LDAP apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} shamba haliwezi kuweka kama ya kipekee kwa {1}, kwa kuwa kuna maadili yasiyo ya kipekee yaliyopo" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Kuweka> Customize Fomu DocType: User,Social Logins,Ingia za Jamii DocType: Workflow State,Trash,Takataka DocType: Stripe Settings,Secret Key,Siri muhimu @@ -1327,6 +1345,7 @@ DocType: DocType,Title Field,Siri ya Kichwa apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Haikuweza kuunganisha kwa seva ya barua pepe iliyotoka DocType: File,File URL,Fungua URL DocType: Help Article,Likes,Anapenda +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Ushirikiano wa Mawasiliano wa Google umezimwa. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Unahitaji kuingia na uwe na Meneja wa Mfumo wa Mfumo ili uweze kufikia salama. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Ngazi ya Kwanza DocType: Blogger,Short Name,Jina fupi @@ -1344,13 +1363,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Ingiza Zip DocType: Contact,Gender,Jinsia DocType: Workflow State,thumbs-down,thumbs-down -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Foleni inapaswa kuwa moja ya {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Haiwezi kuweka Arifa kwenye Aina ya Nyaraka {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Kuongeza Meneja wa Mfumo kwa Mtumiaji huyu kama kuna lazima iwe na Meneja wa Mfumo mmoja apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Karibu barua pepe imetumwa DocType: Transaction Log,Chaining Hash,Chaining Hash DocType: Contact,Maintenance Manager,Meneja wa Matengenezo +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Kwa kulinganisha, tumia> 5, <10 au = 324. Kwa safu, tumia 5:10 (kwa maadili kati ya 5 & 10)." apps/frappe/frappe/utils/bot.py,show,onyesha apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Shiriki URL apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Faili ya Faili isiyotumika @@ -1372,7 +1391,7 @@ DocType: Communication,Notification,Arifa DocType: Data Import,Show only errors,Onyesha makosa tu DocType: Energy Point Log,Review,Tathmini apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Miamba Imeondolewa -DocType: GSuite Settings,Google Credentials,Vyeti vya Google +DocType: Google Settings,Google Credentials,Vyeti vya Google apps/frappe/frappe/www/login.html,Or login with,Au ingia na apps/frappe/frappe/model/document.py,Record does not exist,Rekodi haipo apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Jina la Taarifa Mpya @@ -1397,6 +1416,7 @@ DocType: Desktop Icon,List,Orodha DocType: Workflow State,th-large,th-kubwa apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Haiwezi kuweka Ishara ya Kuwasilisha ikiwa haijawasilishwa apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Sio uhusiano na rekodi yoyote +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Hitilafu ya kuunganisha kwa Maombi ya Tray ya QZ ...

Unahitaji kuwa na maombi ya QZ Tray iliyowekwa na kukimbia, kutumia kipengele cha Raw Print.

Bonyeza hapa ili upakue na usakishe Trafiki ya QZ .
Bonyeza hapa ili ujifunze zaidi kuhusu Raw Printing ." DocType: Chat Message,Content,Maudhui DocType: Workflow Transition,Allow Self Approval,Ruhusu kibali cha kibinafsi apps/frappe/frappe/www/qrcode.py,Page has expired!,Ukurasa umeisha! @@ -1413,6 +1433,7 @@ DocType: Workflow State,hand-right,mkono wa kulia DocType: Website Settings,Banner is above the Top Menu Bar.,Banner iko juu ya Bar ya Juu ya Menyu. apps/frappe/frappe/www/update-password.html,Invalid Password,Nywila isiyo sahihi apps/frappe/frappe/utils/data.py,1 month ago,Miezi 1 iliyopita +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Ruhusu Vipengele vya Google Kupata DocType: OAuth Client,App Client ID,Kitambulisho cha Mteja wa App DocType: DocField,Currency,Fedha DocType: Website Settings,Banner,Bendera @@ -1424,7 +1445,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Lengo DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Ikiwa Kazi haipatikani kwenye kiwango cha 0, viwango vya juu havikuwa na maana." DocType: ToDo,Reference Type,Aina ya Kumbukumbu -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Kuruhusu DocType, DocType. Kuwa mwangalifu!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Kuruhusu DocType, DocType. Kuwa mwangalifu!" DocType: Domain Settings,Domain Settings,Mazingira ya Kikoa DocType: Auto Email Report,Dynamic Report Filters,Filters Ripoti ya Dynamic DocType: Energy Point Log,Appreciation,Kuthamini @@ -1466,6 +1487,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,sisi-magharibi-2 DocType: DocType,Is Single,Ni Mmoja apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Unda Format mpya +DocType: Google Contacts,Authorize Google Contacts Access,Thibitisha Upatikanaji wa Mawasiliano wa Google DocType: S3 Backup Settings,Endpoint URL,Endpoint URL DocType: Social Login Key,Google,Google DocType: Contact,Department,Idara @@ -1480,7 +1502,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Weka Kwa DocType: List Filter,List Filter,Futa Filter DocType: Dashboard Chart Link,Chart,Chati apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Haiwezi Kuondoa -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Tuma hati hii ili kuthibitisha +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Tuma hati hii ili kuthibitisha apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} tayari imepo. Chagua jina lingine apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Una mabadiliko yasiyohifadhiwa katika fomu hii. Tafadhali salama kabla ya kuendelea. apps/frappe/frappe/model/document.py,Action Failed,Hatua Imeshindwa @@ -1562,6 +1584,7 @@ DocType: DocField,Display,Onyesha apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Jibu Wote DocType: Calendar View,Subject Field,Somo la Somo apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Mwisho wa Kipindi lazima uwe katika muundo {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},Kuomba: {0} DocType: Workflow State,zoom-in,zoom-in apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Imeshindwa kuunganisha kwenye seva apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Tarehe {0} lazima iwe katika muundo: {1} @@ -1573,8 +1596,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Icon itaonekana kwenye kifungo DocType: Role Permission for Page and Report,Set Role For,Weka Kazi Kwa +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Kuunganisha kwa moja kwa moja kunaweza kuanzishwa kwa Akaunti moja ya barua pepe. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Hakuna Hesabu za Barua pepe zilizowekwa +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Akaunti ya barua pepe haipatikani. Tafadhali fungua Akaunti mpya ya barua pepe kutoka kwa Usanidi> Barua pepe> Akaunti ya Barua pepe apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Kazi +DocType: Google Contacts,Last Sync On,Mwisho Sync On apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},ilipata {0} kupitia utawala wa moja kwa moja {1} apps/frappe/frappe/config/website.py,Portal,Portal apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Asante kwa barua pepe yako @@ -1595,7 +1621,6 @@ DocType: GSuite Settings,GSuite Settings,Mipangilio ya GSuite DocType: Integration Request,Remote,Remote DocType: File,Thumbnail URL,URL ya Picha ndogo apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Pakua Ripoti -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup> Mtumiaji apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Customizations kwa {0} nje ya:
{1} DocType: GCalendar Account,Calendar Name,Jina la Kalenda apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Idhaa yako ya kuingia ni @@ -1645,6 +1670,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Nenda apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Sehemu ya picha lazima iwe jina la shamba la halali apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,Unahitaji kuingia ili kufikia ukurasa huu DocType: Assignment Rule,Example: {{ subject }},Mfano: {{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Jina la majina {0} limezuiwa apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Huwezi kufuta 'Soma Tu' kwa shamba {0} DocType: Social Login Key,Enable Social Login,Wezesha Ingia ya Jamii DocType: Workflow,Rules defining transition of state in the workflow.,Kanuni zinazoelezea mpito wa hali katika kazi ya kazi. @@ -1665,10 +1691,10 @@ DocType: Website Settings,Route Redirects,Njia ya Kurekebisha apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Inbox ya barua pepe apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},imerejeshwa {0} kama {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Weka Nyaraka kwa Watumiaji +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Fungua Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Matukio ya barua pepe kwa maswali ya kawaida. DocType: Letter Head,Letter Head Based On,Barua ya kichwa ya msingi apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Tafadhali funga dirisha hili -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Malipo Imekamilishwa DocType: Contact,Designation,Uteuzi DocType: Webhook,Webhook,Mtandao wa wavuti DocType: Website Route Meta,Meta Tags,Meta Tags @@ -1707,6 +1733,7 @@ DocType: System Settings,Choose authentication method to be used by all users,Ch DocType: Error Snapshot,Parent Error Snapshot,Hitilafu ya Mzazi ya Hitilafu DocType: GCalendar Account,GCalendar Account,Akaunti ya GCalendar DocType: Language,Language Name,Jina la Lugha +DocType: Workflow Document State,Workflow Action is not created for optional states,Hatua ya Workflow haikuundwa kwa majimbo ya hiari DocType: Customize Form,Customize Form,Fanya Fomu DocType: DocType,Image Field,Sehemu ya Picha apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Imeongezwa {0} ({1}) @@ -1748,6 +1775,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,Tumia kanuni hii ikiwa Mtumiaji ni Mmiliki DocType: About Us Settings,Org History Heading,Historia ya kichwa cha kichwa apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Hitilafu ya Seva +DocType: Contact,Google Contacts Description,Maelezo ya Mawasiliano ya Google apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Majukumu ya kawaida hayawezi kutajwa jina DocType: Review Level,Review Points,Pitia Pointi apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Jina la Bodi la Kanban lisilopoteza @@ -1765,7 +1793,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Sio katika Mfumo wa Wasanidi programu! Weka kwenye tovuti_config.json au fanya 'DocType' ya 'Desturi'. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,alipata pointi {0} DocType: Web Form,Success Message,Ujumbe wa Mafanikio -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Kwa kulinganisha, tumia> 5, <10 au = 324. Kwa safu, tumia 5:10 (kwa maadili kati ya 5 & 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Maelezo kwa orodha ya ukurasa, katika maandishi wazi, tu mistari michache. (max 140 characters)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Onyesha Ruhusa DocType: DocType,Restrict To Domain,Fungua Domain @@ -1787,6 +1814,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Si Anc apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Weka Wingi DocType: Auto Repeat,End Date,Tarehe ya mwisho DocType: Workflow Transition,Next State,Hali inayofuata +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Mawasiliano ya Google imeunganishwa. DocType: System Settings,Is First Startup,Ni Kuanza Kwanza apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},imewekwa kwa {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Nenda kwa @@ -1836,6 +1864,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Kalenda apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Kigezo cha Kuingiza Data DocType: Workflow State,hand-left,mkono wa kushoto +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Chagua vitu vingi vya orodha apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Ukubwa wa Backup: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Imeunganishwa na {0} DocType: Braintree Settings,Private Key,Muhimu wa Kibinafsi @@ -1878,13 +1907,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Hamu DocType: Bulk Update,Limit,Punguza DocType: Print Settings,Print taxes with zero amount,Chapisha kodi kwa kiasi cha sifuri -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Akaunti ya barua pepe haipatikani. Tafadhali fungua Akaunti mpya ya barua pepe kutoka kwa Usanidi> Barua pepe> Akaunti ya Barua pepe DocType: Workflow State,Book,Kitabu DocType: S3 Backup Settings,Access Key ID,Fungua Kitambulisho cha Muhimu DocType: Chat Message,URLs,URL apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Majina na majina yao wenyewe ni rahisi nadhani. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Ripoti {0} DocType: About Us Settings,Team Members Heading,Wajumbe wa Timu ya kichwa +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Chagua kipengee cha orodha apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Hati {0} imewekwa kwa hali {1} na {2} DocType: Address Template,Address Template,Kigezo cha Anwani DocType: Workflow State,step-backward,hatua ya nyuma @@ -1908,6 +1937,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Tuma Ruhusa za Desturi apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Hapana: Mwisho wa Kazi ya Kazi DocType: Version,Version,Toleo +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Fungua kipengee cha orodha apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,miezi 6 DocType: Chat Message,Group,Kundi apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Kuna tatizo fulani na url ya faili: {0} @@ -1963,6 +1993,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,Mwaka 1 apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} kurejea pointi zako kwenye {1} DocType: Workflow State,arrow-down,mshale-chini DocType: Data Import,Ignore encoding errors,Puuza makosa ya encoding +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Mazingira DocType: Letter Head,Letter Head Name,Jina la kichwa cha barua DocType: Web Form,Client Script,Kitambulisho cha Mteja DocType: Assignment Rule,Higher priority rule will be applied first,Utawala wa kipaumbele juu utatumika kwanza @@ -2007,6 +2038,7 @@ DocType: Kanban Board Column,Green,Kijani apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Mashamba ya lazima tu ni muhimu kwa rekodi mpya. Unaweza kufuta safu zisizo lazima ikiwa unataka. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} lazima ianze na kumalizia na barua na inaweza tu kuwa na barua, dhana au kusisitiza." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Tengeneza Hatua Msingi apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Unda barua pepe ya mtumiaji apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Aina ya aina {0} lazima iwe jina la shamba la halali DocType: Auto Email Report,Filter Meta,Futa Meta @@ -2036,6 +2068,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Eneo la Timeline apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Inapakia ... DocType: Auto Email Report,Half Yearly,Nusu ya mwaka +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Profaili yangu apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Tarehe ya Marekebisho ya Mwisho DocType: Contact,First Name,Jina la kwanza DocType: Post,Comments,Maoni @@ -2058,6 +2091,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Hash ya Maudhui apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Ujumbe wa {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} alitoa {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Hakuna anwani mpya za Google zimeunganishwa. DocType: Workflow State,globe,globe apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Wastani wa {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Futa Ingia za Hitilafu @@ -2084,6 +2118,8 @@ DocType: Workflow State,Inverse,Inverse DocType: Activity Log,Closed,Ilifungwa DocType: Report,Query,Swala DocType: Notification,Days After,Siku Baada +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Shortcuts za Ukurasa +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Picha apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Omba Kati ya Muda DocType: System Settings,Email Footer Address,Anwani ya barua pepe ya barua pepe apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Sasisho la uhakika wa nishati @@ -2111,6 +2147,7 @@ For Select, enter list of Options, each on a new line.","Kwa Viungo, ingiza DocT apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,Dakika 1 iliyopita apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Hakuna Kazi za Kazi apps/frappe/frappe/model/base_document.py,Row,Row +DocType: Contact,Middle Name,Jina la kati apps/frappe/frappe/public/js/frappe/request.js,Please try again,Tafadhali jaribu tena DocType: Dashboard Chart,Chart Options,Chati Chaguzi DocType: Data Migration Run,Push Failed,Kushinikiza Imeshindwa @@ -2139,6 +2176,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,resize-ndogo DocType: Comment,Relinked,Imefafanuliwa DocType: Role Permission for Page and Report,Roles HTML,Kazi HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Nenda apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Kazi ya kazi itaanza baada ya kuokoa. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Ikiwa data yako iko katika HTML, tafadhali nakala nakala ya HTML halisi na vitambulisho." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Nyakati mara nyingi ni rahisi nadhani. @@ -2167,7 +2205,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Icon ya Desktop apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,imefutwa hati hii apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Muda wa Tarehe -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Kuweka> Vyeti vya Mtumiaji apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} kukubaliwa {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Maadili yalibadilishwa apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Hitilafu katika Arifa @@ -2232,6 +2269,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Futa Futa DocType: DocShare,Document Name,Jina la Hati apps/frappe/frappe/config/customization.py,Add your own translations,Ongeza tafsiri zako mwenyewe +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Nenda orodha ya chini DocType: S3 Backup Settings,eu-central-1,u-kati-1 DocType: Auto Repeat,Yearly,Kila mwaka apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Badilisha tena @@ -2282,6 +2320,7 @@ DocType: Workflow State,plane,ndege apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Hitilafu ya kuweka imara. Tafadhali wasiliana na Msimamizi. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Onyesha Ripoti DocType: Auto Repeat,Auto Repeat Schedule,Jipya Ratiba ya Auto +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Tazama Ref DocType: Address,Office,Ofisi DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} siku zilizopita @@ -2315,7 +2354,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Ma apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Mipangilio Yangu apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Jina la kikundi hawezi kuwa tupu. DocType: Workflow State,road,barabara -DocType: Website Route Redirect,Source,Chanzo +DocType: Contact,Source,Chanzo apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Vikao vya Kazi apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Kunaweza kuwa Fold moja tu kwa fomu apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Mazungumzo mapya @@ -2337,6 +2376,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Tafadhali ingiza kuidhinisha URL DocType: Email Account,Send Notification to,Tuma Arifa kwa apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Mipangilio ya salama ya Dropbox +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,Kitu kilichokosa wakati wa kizazi cha token. Bofya kwenye {0} ili kuzalisha mpya. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Ondoa vipengee vyote vya upendeleo? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Msimamizi tu anaweza kuhariri DocType: Auto Repeat,Reference Document,Hati ya Kumbukumbu @@ -2361,6 +2401,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Majukumu yanaweza kuweka kwa watumiaji kutoka ukurasa wa Mtumiaji wao. DocType: Website Settings,Include Search in Top Bar,Jumuisha Utafutaji kwenye Bar ya juu apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,Hitilafu [ya haraka] wakati wa kujenga% s mara kwa mara kwa% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Shortcuts ya Global DocType: Help Article,Author,Mwandishi DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Hakuna hati iliyopatikana kwa filters zilizotolewa @@ -2396,10 +2437,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, Row {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Ikiwa unapakia rekodi mpya, "Naming Series" inakuwa ya lazima, ikiwa iko." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Badilisha Mali -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Haiwezi kufungua mfano wakati {0} yake imefunguliwa +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,Haiwezi kufungua mfano wakati {0} yake imefunguliwa DocType: Activity Log,Timeline Name,Jina la Timeline DocType: Comment,Workflow,Kazi ya kazi apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Tafadhali weka URL ya Msingi katika Kitufe cha Kuingia kwa Jamii kwa Frappe +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Shortcuts za Kinanda DocType: Portal Settings,Custom Menu Items,Vitu vya Menyu ya Custom apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,Urefu wa {0} unapaswa kuwa kati ya 1 na 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Uunganisho ulipotea. Baadhi ya vipengele haviwezi kufanya kazi. @@ -2461,6 +2503,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Miamba Imeo DocType: DocType,Setup,Kuweka apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} imeundwa kwa ufanisi apps/frappe/frappe/www/update-password.html,New Password,Nywila mpya +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Chagua Shamba apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Acha mazungumzo haya DocType: About Us Settings,Team Members,Wanachama wa Timu DocType: Blog Settings,Writers Introduction,Waandishi Utangulizi @@ -2530,13 +2573,12 @@ DocType: Chat Room,Name,Jina DocType: Communication,Email Template,Kigezo cha Barua pepe DocType: Energy Point Settings,Review Levels,Viwango vya Mapitio DocType: Print Format,Raw Printing,Uchapishaji wa Raw -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Haiwezi kufungua {0} wakati mfano wake ulipo wazi +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,Haiwezi kufungua {0} wakati mfano wake ulipo wazi DocType: DocType,"Make ""name"" searchable in Global Search",Fanya "jina" lililotafutwa katika Utafutaji wa Global DocType: Data Migration Mapping,Data Migration Mapping,Ramani ya Uhamiaji wa Takwimu DocType: Data Import,Partially Successful,Inafanikiwa kikamilifu DocType: Communication,Error,Hitilafu apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype haiwezi kubadilishwa kutoka {0} hadi {1} mfululizo {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Hitilafu ya kuunganisha kwa Maombi ya Tray ya QZ ...

Unahitaji kuwa na maombi ya QZ Tray iliyowekwa na kukimbia, kutumia kipengele cha Raw Print.

Bonyeza hapa ili upakue na usakishe Trafiki ya QZ .
Bonyeza hapa ili ujifunze zaidi kuhusu Raw Printing ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Piga picha apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,Epuka miaka ambayo inahusishwa na wewe. DocType: Web Form,Allow Incomplete Forms,Ruhusu Fomu zisizokwisha @@ -2632,7 +2674,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Chagua lengo = "_blank" ili kufungua ukurasa mpya. DocType: Portal Settings,Portal Menu,Menyu ya Portal DocType: Website Settings,Landing Page,Ukurasa wa Utoaji -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,Tafadhali saini-up au uingie kuingia DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Chaguo za mawasiliano, kama "Swali la Mauzo, Swali la Kusaidia" nk kila mmoja kwenye mstari mpya au kutengwa na vitambaa." apps/frappe/frappe/twofactor.py,Verfication Code,Kanuni ya Uhakikisho apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} tayari hajatibiwa @@ -2718,6 +2759,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Mpangilio wa Mp DocType: Address,Sales User,Mtumiaji wa Mauzo apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Badilisha mali ya shamba (kujificha, readonly, ruhusa nk)" DocType: Property Setter,Field Name,Jina la shamba +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Wateja DocType: Print Settings,Font Size,Ukubwa wa herufi DocType: User,Last Password Reset Date,Tarehe ya Marejesha ya Mwisho ya Mwisho DocType: System Settings,Date and Number Format,Tarehe na Nambari ya Nambari @@ -2783,6 +2825,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Node ya Kikundi apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Unganisha na zilizopo DocType: Blog Post,Blog Intro,Blog Intro apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Taja Mpya +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Rukia shamba DocType: Prepared Report,Report Name,Ripoti Jina apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Tafadhali furahisha ili kupata hati ya hivi karibuni. apps/frappe/frappe/core/doctype/communication/communication.js,Close,Funga @@ -2792,10 +2835,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Tukio DocType: Social Login Key,Access Token URL,Futa URL ya Tokeni apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Tafadhali weka funguo za kufikia Dropbox katika config configure yako +DocType: Google Contacts,Google Contacts,Mawasiliano ya Google DocType: User,Reset Password Key,Weka upya Neno la Nywila apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Ilibadilishwa na DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.","Ili upya, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Imehifadhiwa kwa Ufanisi +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Tuma barua pepe kwa {0} ili kuunganisha hapa. DocType: File,Folder,Folda DocType: DocField,Perm Level,Kiwango cha Perm DocType: Print Settings,Page Settings,Mipangilio ya Ukurasa @@ -2825,6 +2871,7 @@ DocType: Workflow State,remove-sign,kuondoa-ishara DocType: Dashboard Chart,Full,Kamili DocType: DocType,User Cannot Create,Mtumiaji hawezi kuunda apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Ulipata uhakika wa {0} +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Setup> Mtumiaji DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Ikiwa utaweka hii, Ndoa hii itakuja chini-chini chini ya mzazi aliyechaguliwa." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Hakuna Barua pepe apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Masuala yafuatayo yanakosa: @@ -2838,13 +2885,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Ony DocType: Web Form,Web Form Fields,Mashamba ya Fomu za Mtandao DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Fomu inayofaa ya mtumiaji kwenye tovuti. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Futa kwa kudumu {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Futa kwa kudumu {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Chaguo 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,Jumla apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Hii ni nenosiri la kawaida. DocType: Personal Data Deletion Request,Pending Approval,Idhini ya Kukubali apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Hati haikuweza kuwa sahihi apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Hairuhusiwi kwa {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Hakuna maadili ya kuonyesha DocType: Personal Data Download Request,Personal Data Download Request,Takwimu za kibinafsi za Kuomba apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} alishiriki hati hii kwa {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Chagua {0} @@ -2860,7 +2908,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Barua pepe hii ilipelekwa {0} na kunakiliwa {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,Kuingia sahihi au nenosiri DocType: Social Login Key,Social Login Key,Kitu cha Kuingia kwa Jamii -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Tafadhali kuanzisha Akaunti ya barua pepe ya default kutoka kwa Usanidi> Barua pepe> Akaunti ya Barua pepe apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filters zimehifadhiwa DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Fedha hii inapaswa kupangiliwaje? Ikiwa haijawekwa, itatumia desfaults ya mfumo" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} imewekwa kwa hali {2} @@ -2986,6 +3033,7 @@ DocType: User,Location,Eneo apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Hakuna Data DocType: Website Meta Tag,Website Meta Tag,Website Meta Tag DocType: Workflow State,film,filamu +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Ilikopishwa kwenye ubaoboo. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Mipangilio haipatikani apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Lebo ni lazima DocType: Webhook,Webhook Headers,Viongozi wa Mtandao @@ -3194,7 +3242,7 @@ DocType: Address,Address Line 1,Anwani ya Anwani 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Aina ya Hati apps/frappe/frappe/model/base_document.py,Data missing in table,Takwimu zilizopo kwenye meza apps/frappe/frappe/utils/bot.py,Could not identify {0},Haikuweza kutambua {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Fomu hii imebadilishwa baada ya kuipakia +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Fomu hii imebadilishwa baada ya kuipakia apps/frappe/frappe/www/login.html,Back to Login,Rudi kwenye Ingia apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Haijawekwa DocType: Data Migration Mapping,Pull,Piga @@ -3262,6 +3310,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Mapangilio ya Jedwali apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Email kuanzisha Akaunti tafadhali ingiza nenosiri lako kwa: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Wengi huandika katika ombi moja. Tafadhali tuma maombi madogo DocType: Social Login Key,Salesforce,Mauzo ya nguvu +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Kuagiza {0} ya {1} DocType: User,Tile,Tile apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} chumba lazima iwe na mtumiaji mmoja. DocType: Email Rule,Is Spam,Ni Spam @@ -3299,7 +3348,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,folda-karibu DocType: Data Migration Run,Pull Update,Pata Mwisho apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},iliunganishwa {0} katika {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

Hakuna matokeo yaliyopatikana kwa '

DocType: SMS Settings,Enter url parameter for receiver nos,Ingiza parameter ya url kwa nambari ya wapokeaji apps/frappe/frappe/utils/jinja.py,Syntax error in template,Hitilafu ya Syntax katika template apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Tafadhali weka thamani ya filters katika Jedwali la Filamu ya Ripoti. @@ -3312,6 +3360,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Samahani, h DocType: System Settings,In Days,Katika Siku DocType: Report,Add Total Row,Ongeza Jumla ya Row apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Mwanzo wa Kipindi Imeshindwa +DocType: Translation,Verified,Imethibitishwa DocType: Print Format,Custom HTML Help,Usaidizi wa Msaada wa HTML DocType: Address,Preferred Billing Address,Anwani ya kulipa Bili apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Iliyopewa @@ -3326,7 +3375,6 @@ DocType: Help Article,Intermediate,Katikati DocType: Module Def,Module Name,Jina la Moduli DocType: OAuth Authorization Code,Expiration time,Wakati wa kumalizika apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Weka muundo wa default, ukubwa wa ukurasa, mtindo wa kuchapisha nk." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,Huwezi kupenda kitu ambacho umefanya DocType: System Settings,Session Expiry,Mwisho wa Kipindi DocType: DocType,Auto Name,Jina la Auto apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Chagua Vifungo @@ -3354,6 +3402,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Mfumo wa Mfumo DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Kumbuka: Kwa barua pepe za msingi kwa backups zameshindwa zinatumwa. DocType: Custom DocPerm,Custom DocPerm,Nyaraka ya DocPerm +DocType: Translation,PR sent,PR imetumwa DocType: Tag Doc Category,Doctype to Assign Tags,Doctype kuacha Vitambulisho DocType: Address,Warehouse,Ghala apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Uwekaji wa Dropbox @@ -3421,7 +3470,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Ingiza kuongeza maoni apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Shamba {0} haiwezekani. DocType: User,Birth Date,Tarehe ya kuzaliwa -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Kwa Uingizaji wa Kikundi DocType: List View Setting,Disable Count,Zima Hesabu DocType: Contact Us Settings,Email ID,Kitambulisho cha barua pepe apps/frappe/frappe/utils/password.py,Incorrect User or Password,Mtumiaji asiye sahihi au Nenosiri @@ -3456,6 +3504,7 @@ DocType: Website Settings,<head> HTML,<kichwa> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Jukumu hili la kuruhusu Ruhusa ya Mtumiaji kwa mtumiaji DocType: Website Theme,Theme,Mandhari DocType: Web Form,Show Sidebar,Onyesha Sidebar +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Ushirikiano wa Mawasiliano wa Google. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Kikasha cha Kikasha Chaguo apps/frappe/frappe/www/login.py,Invalid Login Token,Tokeni ya Ingia isiyo sahihi apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Weka kwanza jina na uhifadhi rekodi. @@ -3483,7 +3532,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Tafadhali sahihisha DocType: Top Bar Item,Top Bar Item,Kitu cha Juu cha Bar ,Role Permissions Manager,Meneja wa Ruhusa ya Idhini -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,Kulikuwa na makosa. Tafadhali ripoti jambo hili. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} miaka (s) zilizopita apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Kike DocType: System Settings,OTP Issuer Name,Jina la Mtumaji wa OTP apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Ongeza kwa Kufanya @@ -3583,6 +3632,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Lugha, apps/frappe/frappe/model/document.py,none of,hakuna DocType: Desktop Icon,Page,Ukurasa DocType: Workflow State,plus-sign,pamoja-ishara +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Futa Cache na Rejesha tena apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Haiwezi Kurekebisha: Kiungo cha Haki / Muda. DocType: Kanban Board Column,Yellow,Njano DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Idadi ya nguzo za shamba katika Gridi (Nguzo zote kwenye gridi ya taifa zinapaswa kuwa chini ya 11) @@ -3597,6 +3647,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Bodi DocType: Activity Log,Date,Tarehe DocType: Communication,Communication Type,Aina ya Mawasiliano apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Jedwali la Mzazi +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Nenda orodha ya juu DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Onyesha Hitilafu Kamili na Ruhusu Kujaza Matatizo kwa Msanidi programu DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3618,7 +3669,6 @@ DocType: Notification Recipient,Email By Role,Barua kwa Wajibu apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,Tafadhali Jisajili ili kuongeza zaidi ya {0} wanachama apps/frappe/frappe/email/queue.py,This email was sent to {0},Barua pepe hii ilipelekwa {0} DocType: User,Represents a User in the system.,Inaonyesha mtumiaji katika mfumo. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Ukurasa {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Anza Format mpya apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Ongeza maoni apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} ya {1} diff --git a/frappe/translations/ta.csv b/frappe/translations/ta.csv index 379a135e26..45d37a9770 100644 --- a/frappe/translations/ta.csv +++ b/frappe/translations/ta.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,கிரேடுகளை இயக்கு DocType: DocType,Default Sort Order,இயல்புநிலை வரிசை வரிசை apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,அறிக்கை இருந்து எண் துறைகள் மட்டுமே காட்டும் +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,மெனு மற்றும் பக்கப்பட்டியில் கூடுதல் குறுக்குவழிகளைத் தூண்ட Alt விசையை அழுத்தவும் DocType: Workflow State,folder-open,அடைவை திறக்க DocType: Customize Form,Is Table,அட்டவணை apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,இணைக்கப்பட்ட கோப்பை திறக்க முடியவில்லை. அதை CSV ஆக ஏற்றுமதி செய்தீர்களா? DocType: DocField,No Copy,இல்லை நகல் DocType: Custom Field,Default Value,இயல்புநிலை மதிப்பு apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,உள்வரும் மின்னஞ்சல்களுக்கு சேர்க்க வேண்டும் +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,ஒத்திசைவு தொடர்புகள் DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,தரவு இடமாற்றம் வரைபடம் விபரம் apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,பின்தொடராட் apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.","ரா அச்சு" வழியாக PDF அச்சிடுதல் இன்னும் ஆதரிக்கப்படவில்லை. அச்சுப்பொறி அமைப்புகளில் அச்சுப்பொறி மேப்பிங்கை அகற்றிவிட்டு மீண்டும் முயற்சிக்கவும். @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} மற்றும் {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,வடிப்பான்களைச் சேமிப்பதில் பிழை apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,உங்கள் கடவுச்சொல்லை உள்ளிடவும் apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,முகப்பு மற்றும் இணைப்புகள் இணைப்புகளை நீக்க முடியாது +DocType: Email Account,Enable Automatic Linking in Documents,ஆவணங்களில் தானியங்கி இணைப்பை இயக்கு DocType: Contact Us Settings,Settings for Contact Us Page,எங்களை தொடர்பு பக்கம் அமைப்புகள் DocType: Social Login Key,Social Login Provider,சமூக உள்நுழை வழங்குநர் +DocType: Email Account,"For more information, click here.","மேலும் தகவலுக்கு, இங்கே கிளிக் செய்க ." DocType: Transaction Log,Previous Hash,முந்தைய ஹேஷ் DocType: Notification,Value Changed,மதிப்பு மாற்றப்பட்டது DocType: Report,Report Type,அறிக்கை வகை @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,ஆற்றல் புள்ள apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,சமூக உள்நுழைவு செயல்படுத்தப்படுவதற்கு முன்னர் கிளையன்ட் ஐடி உள்ளிடவும் DocType: Communication,Has Attachment,இணைப்பு உள்ளது DocType: User,Email Signature,மின்னஞ்சல் கையொப்பம் -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ஆண்டு (கள்) முன்பு ,Addresses And Contacts,முகவரிகள் மற்றும் தொடர்புகள் apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,இந்த கான்பன் வாரியம் தனியார் இருக்கும் DocType: Data Migration Run,Current Mapping,தற்போதைய வரைபடம் @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","நீங்கள் ஒத்திசைவு விருப்பத்தை ALL என தேர்ந்தெடுத்துள்ளீர்கள், இது அனைத்து சேவையகத்திலிருந்து படிக்காத, படிக்காத செய்தியை மறுபடியும் மாற்றியமைக்கும். இது தொடர்பாக (மின்னஞ்சல்கள்) பிரதி எடுக்கும்." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},கடைசியாக ஒத்திசைக்கப்பட்டது {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,தலைப்பு உள்ளடக்கத்தை மாற்ற முடியாது +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

'

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,சமர்ப்பிக்கும் பிறகு {0} மாற்றுவதற்கு அனுமதி இல்லை apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","பயன்பாடு புதிய பதிப்பிற்கு புதுப்பிக்கப்பட்டுள்ளது, தயவுசெய்து இந்தப் பக்கத்தைப் புதுப்பிக்கவும்" DocType: User,User Image,பயனர் பட @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},{0} apps/frappe/frappe/public/js/frappe/chat.js,Discard,நிராகரி DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,சிறந்த முடிவுகளுக்காக வெளிப்படையான பின்னணி கொண்ட சுமார் அகலம் 150px இன் படத்தை தேர்ந்தெடுக்கவும். apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,புற்று நோய் மீண்டு +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} மதிப்புகள் தேர்ந்தெடுக்கப்பட்டன DocType: Blog Post,Email Sent,மின்னஞ்சல் அனுப்பப்பட்டது DocType: Communication,Read by Recipient On,பெறுநரால் படிக்கவும் DocType: User,Allow user to login only after this hour (0-24),இந்த நேரத்திற்குப் பிறகு மட்டுமே உள்நுழைய பயனரை அனுமதி (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,ஏற்றுமதி செய்ய தொகுதி DocType: DocType,Fields,புலங்கள் -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,இந்த ஆவணத்தை அச்சிட உங்களுக்கு அனுமதி இல்லை +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,இந்த ஆவணத்தை அச்சிட உங்களுக்கு அனுமதி இல்லை apps/frappe/frappe/public/js/frappe/model/model.js,Parent,பெற்றோர் apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","உங்கள் அமர்வு காலாவதியானது, தொடரவும் மீண்டும் உள்நுழைக." DocType: Assignment Rule,Priority,முன்னுரிமை @@ -368,6 +373,7 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,OTP இரகச DocType: DocType,UPPER CASE,UPPER CASE apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,தயவுசெய்து மின்னஞ்சல் முகவரி அமைக்கவும் DocType: Communication,Marked As Spam,ஸ்பேமாக குறிக்கப்பட்டது +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Google தொடர்புகள் ஒத்திசைக்கப்பட வேண்டிய மின்னஞ்சல் முகவரி. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,இறக்குமதி சந்தாதாரர்கள் apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,வடிகட்டி சேமி DocType: Address,Preferred Shipping Address,விருப்பமான கப்பல் முகவரி @@ -388,6 +394,7 @@ DocType: Web Page,Insert Code,குறியீட்டைச் செரு apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,உள் இல்லை DocType: Auto Repeat,Start Date,தொடக்க தேதி apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,விளக்கப்படம் அமைக்கவும் +DocType: Website Theme,Theme JSON,தீம் JSON apps/frappe/frappe/www/list.py,My Account,என் கணக்கு DocType: DocType,Is Published Field,வெளியிடப்பட்ட புலம் DocType: DocField,Set non-standard precision for a Float or Currency field,ஒரு மிதவை அல்லது நாணயத் துறைக்கு தரமற்ற நிலையான துல்லியம் அமைக்கவும் @@ -398,7 +405,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Reference: {{ reference_doctype }} {{ reference_name }} சேர்க்கவும் Reference: {{ reference_doctype }} {{ reference_name }} ஆவணம் குறிப்பு அனுப்ப Reference: {{ reference_doctype }} {{ reference_name }} DocType: LDAP Settings,LDAP First Name Field,LDAP முதல் பெயர் புலம் apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,இயல்புநிலை அனுப்புதல் மற்றும் இன்பாக்ஸ் -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,அமைப்பு> வடிவம் தனிப்பயனாக்கலாம் apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.","புதுப்பிப்பதற்கு, தேர்ந்தெடுத்த நெடுவரிசைகளை நீங்கள் மட்டுமே புதுப்பிக்க முடியும்." apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1','செக்' வகை புலத்திற்கு இயல்புநிலை '0' அல்லது '1' apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,இந்த ஆவணத்தை பகிரவும் @@ -438,19 +444,23 @@ DocType: Notification,Print Settings,அச்சிடு அமைப்பு apps/frappe/frappe/config/website.py,Categorize blog posts.,இடுகைகள் வகைப்படுத்தவும். DocType: User,Last IP,கடைசி ஐபி apps/frappe/frappe/model/document.py,One of,ஒன்று +apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,இந்த மின்னஞ்சலை அனுப்ப முடியாது. இந்த மாதத்திற்கான {0} மின்னஞ்சல்களை அனுப்பும் வரம்பை நீங்கள் கடந்துவிட்டீர்கள். DocType: Domain Settings,Domains HTML,டொமைன்கள் HTML DocType: Blog Settings,Blog Settings,வலைப்பதிவு அமைப்புகள் apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DocType இன் பெயர் ஒரு கடிதத்துடன் தொடங்க வேண்டும், அது எழுத்துகள், எண்கள், இடைவெளிகள் மற்றும் அடிக்கோடிட்டுகள் மட்டுமே கொண்டிருக்கும்" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,அமைவு> பயனர் அனுமதிகள் DocType: Communication,Integrations can use this field to set email delivery status,மின்னஞ்சல் விநியோக நிலையத்தை அமைப்பதற்கு ஒருங்கிணைப்புகளை இந்த புலம் பயன்படுத்தலாம் apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,கோடு கட்டணம் நுழைவாயில் அமைப்புகள் DocType: Print Settings,Fonts,எழுத்துருக்கள் DocType: Notification,Channel,சேனல் DocType: Communication,Opened,திறக்கப்பட்ட DocType: Workflow Transition,Conditions,நிபந்தனைகள் +apps/frappe/frappe/config/website.py,A user who posts blogs.,வலைப்பதிவுகளை இடுகையிடும் பயனர். apps/frappe/frappe/www/login.html,Don't have an account? Sign up,ஒரு கணக்கு இல்லையா? பதிவு செய்க apps/frappe/frappe/utils/file_manager.py,Added {0},{0} DocType: Newsletter,Create and Send Newsletters,செய்திகளை உருவாக்குதல் மற்றும் அனுப்புதல் DocType: Website Settings,Footer Items,அடிக்குறிப்பு பொருட்கள் +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,அமைவு> மின்னஞ்சல்> மின்னஞ்சல் கணக்கிலிருந்து இயல்புநிலை மின்னஞ்சல் கணக்கை அமைக்கவும் DocType: Website Slideshow Item,Website Slideshow Item,வலைத்தள ஸ்லைடுஷோ பொருள் apps/frappe/frappe/config/integrations.py,Register OAuth Client App,OAuth கிளையண்ட் ஆப் பதிவு DocType: Error Snapshot,Frames,சட்டங்கள் @@ -491,7 +501,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","நிலை 0. ஆவண நிலை அனுமதிகள், துறையில் நிலை அனுமதிப்பத்திரங்களுக்கான அதிக நிலைகள்." DocType: Address,City/Town,நகரம் / டவுன் DocType: Email Account,GMail,ஜிஅஞ்சல் -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","இது உங்கள் தற்போதைய கருவியை மீட்டமைக்கும், நீங்கள் தொடர விரும்புகிறீர்களா?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},{0} இல் தேவையான கட்டாய துறைகள் apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},மின்னஞ்சல் கணக்குடன் இணைக்கும் போது பிழை {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,மீண்டும் உருவாக்கும்போது பிழை ஏற்பட்டது @@ -527,7 +536,7 @@ DocType: Event,Event Category,நிகழ்வு வகை apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,அடிப்படையில் நெடுவரிசைகள் apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,தலைப்பு திருத்து DocType: Communication,Received,பெறப்பட்டது -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,இந்த பக்கத்தை அணுக உங்களுக்கு அனுமதி இல்லை. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,இந்த பக்கத்தை அணுக உங்களுக்கு அனுமதி இல்லை. DocType: User Social Login,User Social Login,பயனர் சமூக தேதி apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,"பைல் கோப்பு பைல் கோப்பு எழுதவும், இது சேமித்து, நெடுவரிசை மற்றும் முடிவை திரும்பவும்." DocType: Contact,Purchase Manager,கொள்முதல் மேலாளர் @@ -579,7 +588,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,வ apps/frappe/frappe/utils/data.py,Operator must be one of {0},ஆபரேட்டர் {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,உரிமையாளர் என்றால் DocType: Data Migration Run,Trigger Name,தூண்டுதல் பெயர் -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,உங்கள் வலைப்பதிவில் தலைப்புகள் மற்றும் அறிமுகங்களை எழுதுங்கள். apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,புலம் அகற்று apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,எல்லாவற்றையும் அழி apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,பின்னணி நிறம் @@ -629,6 +637,7 @@ DocType: Dashboard Chart,Bar,பார் DocType: SMS Settings,Enter url parameter for message,செய்திக்கு URL அளவுருவை உள்ளிடவும் apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,புதிய விருப்ப அச்சு வடிவமைப்பு apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} ஏற்கனவே உள்ளது +DocType: Workflow Document State,Is Optional State,விருப்ப நிலை DocType: Address,Purchase User,கொள்முதல் பயனர் DocType: Data Migration Run,Insert,நுழைக்கவும் DocType: Web Form,Route to Success Link,வெற்றி இணைப்புக்கு வழி @@ -636,13 +645,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,பய DocType: File,Is Home Folder,முகப்பு கோப்புறை apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,வகை: DocType: Post,Is Pinned,பின் செய்யப்பட்டது -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},'{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},'{0}' {1} DocType: Patch Log,Patch Log,பேட்ச் பதிவு DocType: Print Format,Print Format Builder,அச்சு வடிவமைப்பு பில்டர் 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 முகவரியிலிருந்து உள்நுழையலாம். இந்த பயனர் பக்கம் குறிப்பிட்ட பயனர் (கள்) மட்டுமே அமைக்க முடியும்" apps/frappe/frappe/utils/data.py,only.,மட்டுமே. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,நிபந்தனை '{0}' தவறானது DocType: Auto Email Report,Day of Week,வாரம் நாள் +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Google அமைப்புகளில் Google API ஐ இயக்கு. DocType: DocField,Text Editor,உரை ஆசிரியர் apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,வெட்டு apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,ஒரு கட்டளை தேட அல்லது தட்டச்சு செய்யவும் @@ -650,6 +660,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,DB காப்புப் பிரதிகளின் எண்ணிக்கை 1 ஐ விட குறைவாக இருக்க முடியாது DocType: Workflow State,ban-circle,தடை-வட்டம் DocType: Data Export,Excel,எக்செல் +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","தலைப்பு, பிரட்தூள்களில் நனைக்கப்பட்டு மெட்டா குறிச்சொற்கள்" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,ஆதரவு மின்னஞ்சல் முகவரி குறிப்பிடப்படவில்லை DocType: Comment,Published,வெளியிடப்பட்ட DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","குறிப்பு: சிறந்த முடிவுகளுக்கு, படங்கள் ஒரே அளவு இருக்க வேண்டும் மற்றும் அகலம் உயரத்தை விட அதிகமாக இருக்க வேண்டும்." @@ -666,6 +677,7 @@ DocType: Auto Email Report,From Date Field,தேதி களத்திலி apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Add script for Child Table,குழந்தை அட்டவணைக்கு ஸ்கிரிப்ட் சேர்க்கவும் apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,கருத்துரை காண்க DocType: DocField,Ignore User Permissions,பயனர் அனுமதிகள் புறக்கணி +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} முதல் {1} முதல் {2} வரை apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,தொடர்புகள் சேர்க்கவும் DocType: Communication,Email Account,மின்னஞ்சல் கணக்கு apps/frappe/frappe/utils/goal.py,This month,இந்த மாதம் @@ -739,6 +751,7 @@ DocType: System Settings,Scheduler Last Event,திட்டமிடலின apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,அனைத்து ஆவண பங்குகள் அறிக்கை DocType: Website Sidebar Item,Website Sidebar Item,வலைத்தள பக்கப்பட்டி பொருள் apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,செய்ய +DocType: Google Settings,Google Settings,Google அமைப்புகள் apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","உங்கள் நாடு, நேர மண்டலம் மற்றும் நாணயத்தைத் தேர்ந்தெடுக்கவும்" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","இங்கே நிலையான URL அளவுருவை உள்ளிடவும் (அதாவது அனுப்புநர் = ERPNext, பயனர்பெயர் = ERPNext, கடவுச்சொல் = 1234 முதலியவை)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,மின்னஞ்சல் கணக்கு இல்லை @@ -792,6 +805,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer டோக்கன் ,Setup Wizard,அமைப்பு வழிகாட்டி apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,விளக்கப்படம் மாற்று +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,ஒத்திசைக்கிறது DocType: Data Migration Run,Current Mapping Action,தற்போதைய வரைபட செயல் DocType: Email Account,Initial Sync Count,தொடக்க ஒத்திசைவு எண்ணிக்கை apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,எங்களை தொடர்பு பக்கம் அமைப்புகள். @@ -831,6 +845,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,அச்சு வடிவமைப்பு வகை apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,இந்த நிபந்தனைகளுக்கு அனுமதி இல்லை. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,எல்லாவற்றையும் விரிவாக்கு +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,இயல்புநிலை முகவரி வார்ப்புரு இல்லை. அமைவு> அச்சிடுதல் மற்றும் பிராண்டிங்> முகவரி வார்ப்புருவில் இருந்து புதிய ஒன்றை உருவாக்கவும். DocType: Tag Doc Category,Tag Doc Category,டேக் வகை டேக் DocType: Data Import,Generated File,உருவாக்கப்பட்ட கோப்பு apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,குறிப்புக்கள் @@ -838,7 +853,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,டைம்லைன் துறையில் ஒரு இணைப்பு அல்லது டைனமிக் இணைப்பு இருக்க வேண்டும் DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,இந்த வெளிச்செல்லும் சேவையகத்திலிருந்து அறிவிப்புகள் மற்றும் மொத்த அஞ்சல் அனுப்பப்படும். apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,இது ஒரு சிறந்த 100 கடவுச்சொல் ஆகும். -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,நிரந்தரமாக {0} சமர்ப்பிக்கவா? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,நிரந்தரமாக {0} சமர்ப்பிக்கவா? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} இல்லை, ஒன்றாக்க புதிய இலக்கைத் தேர்ந்தெடுக்கவும்" DocType: Energy Point Rule,Multiplier Field,பெருக்கி புலம் DocType: Workflow,Workflow State Field,பணியிட மாநில புலம் @@ -878,6 +893,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} {2} புள்ளிகளுடன் {1} உங்கள் வேலையை பாராட்டினார் DocType: Auto Email Report,Zero means send records updated at anytime,ஜீரோ என்பது எப்போது வேண்டுமானாலும் புதுப்பிக்கப்பட்ட பதிவுகள் அனுப்புகிறது apps/frappe/frappe/model/document.py,Value cannot be changed for {0},{0} க்கான மதிப்பை மாற்ற முடியாது +apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API அமைப்புகள். DocType: System Settings,Force User to Reset Password,கடவுச்சொல் மீட்டமைக்க கட்டாயப்படுத்தும் apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,அறிக்கை பில்டர் அறிக்கைகள் நேரடியாக அறிக்கை பில்டர் மூலம் நிர்வகிக்கப்படுகின்றன. செய்ய எதுவும் இல்லை. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,வடிப்பானைத் திருத்தவும் @@ -931,7 +947,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,அ DocType: S3 Backup Settings,eu-north-1,EU-வடக்கு-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: அதே விதி, நிலை மற்றும் {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,இந்த வலை படிவம் ஆவணத்தை புதுப்பிக்க உங்களுக்கு அனுமதி இல்லை -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,இந்த சாதனத்தின் அதிகபட்ச இணைப்பு வரம்பை அடைந்தது. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,இந்த சாதனத்தின் அதிகபட்ச இணைப்பு வரம்பை அடைந்தது. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,குறிப்பு தொடர்பாடல் டாக்ஸ் வட்டார இணைப்பில் இல்லை என்பதை உறுதிப்படுத்தவும். DocType: DocField,Allow in Quick Entry,விரைவு நுழைவில் அனுமதி DocType: Error Snapshot,Locals,உள்ளூர்வாசிகள் @@ -962,7 +978,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,விதிவிலக்கு வகை apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},"{0} {2} {3} {4} உடன் {0} இணைக்கப்பட்டுள்ளதால்," apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTP இரகசிய நிர்வாகி மட்டுமே மீட்டமைக்க முடியும். -DocType: Web Form Field,Page Break,பக்கம் இடைவேளை DocType: Website Script,Website Script,இணைய ஸ்கிரிப்ட் DocType: Integration Request,Subscription Notification,சந்தா அறிவிப்பு DocType: DocType,Quick Entry,விரைவு நுழைவு @@ -979,6 +994,7 @@ DocType: Notification,Set Property After Alert,எச்சரிக்கைக apps/frappe/frappe/__init__.py,Thank you,நன்றி apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,உள்ளக ஒருங்கிணைப்புக்கான ஸ்லாக் வெப்யூக்ஸ் apps/frappe/frappe/config/settings.py,Import Data,இறக்குமதி தரவு +DocType: Translation,Contributed Translation Doctype Name,பங்களித்த மொழிபெயர்ப்பு டாக்டைப் பெயர் DocType: Social Login Key,Office 365,அலுவலகம் 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ஐடி DocType: Review Level,Review Level,விமர்சனம் நிலை @@ -997,7 +1013,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,வெற்றிகரமாக முடிந்தது apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} பட்டியல் apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,பாராட்ட -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),புதிய {0} (Ctrl + B) DocType: Contact,Is Primary Contact,முதன்மை தொடர்பு DocType: Print Format,Raw Commands,ரா களைப்புகள் apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,அச்சு வடிவங்களுக்கு பாணி @@ -1038,6 +1053,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,பின்னண apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},{0} இல் {0} DocType: Email Account,Use SSL,SSL ஐப் பயன்படுத்துக DocType: DocField,In Standard Filter,ஸ்டாண்டர்ட் வடிகட்டியில் +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,ஒத்திசைக்க எந்த Google தொடர்புகளும் இல்லை. DocType: Data Migration Run,Total Pages,மொத்த பக்கங்கள் apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,"{0}: தனித்துவமான மதிப்புகள் இல்லாததால், '{1}' என்பது தனித்துவமாக அமைக்க முடியாது" DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","இயக்கப்பட்டால், உள்நுழைந்த ஒவ்வொரு முறையும் பயனர்களுக்கு அறிவிக்கப்படும். இயக்கப்பட்டால், பயனர்கள் ஒரு முறை மட்டுமே அறிவிக்கப்படும்." @@ -1058,7 +1074,7 @@ DocType: Assignment Rule,Automation,ஆட்டோமேஷன் apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,கோப்புகளை விரிவாக்குகிறது ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}','{0}' க்கான தேடல் apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,ஏதோ தவறு நடந்துவிட்டது -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,இணைப்பதற்கு முன்பு சேமிக்கவும். +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,இணைப்பதற்கு முன்பு சேமிக்கவும். DocType: Version,Table HTML,அட்டவணை HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,மையமாக DocType: Page,Standard,தரநிலை @@ -1136,12 +1152,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,முட apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} பதிவுகள் நீக்கப்பட்டன apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,Dropbox அணுகல் டோக்கனை உருவாக்கும்போது ஏதோ தவறு ஏற்பட்டது. மேலும் விவரங்களுக்கு பிழை பதிவு சரிபார்க்கவும். apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,வம்சாவளியைச் சேர்ந்தவர் -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,இயல்புநிலை முகவரி டெம்ப்ளேட் இல்லை. அமைவு> அச்சு மற்றும் பிராண்டிங்> முகவரி வார்ப்புருவில் இருந்து ஒரு புதிய ஒன்றை உருவாக்கவும். +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google தொடர்புகள் உள்ளமைக்கப்பட்டுள்ளன. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,விவரங்களை மறை apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,எழுத்துரு பாங்குகள் apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,உங்கள் சந்தா {0} அன்று காலாவதியாகும். apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},மின்னஞ்சல் கணக்கிலிருந்து மின்னஞ்சல்களை பெறும் போது அங்கீகாரம் தோல்வியடைந்தது {0}. சேவையகத்திலிருந்து செய்தி: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),கடந்த வாரம் செயல்திறனை அடிப்படையாகக் கொண்ட புள்ளிவிவரங்கள் ({0} முதல் {1} வரை) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,உள்வரும் இயக்கப்பட்டால் மட்டுமே தானியங்கி இணைப்பை செயல்படுத்த முடியும். DocType: Website Settings,Title Prefix,தலைப்பு முன்னொட்டு apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,நீங்கள் பயன்படுத்தக்கூடிய அங்கீகார பயன்பாடுகள்: DocType: Bulk Update,Max 500 records at a time,ஒரு நேரத்தில் 500 அதிகபட்ச பதிவு @@ -1174,7 +1191,7 @@ DocType: Auto Email Report,Report Filters,வடிகட்டிகளைப apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,நெடுவரிசைகளைத் தேர்ந்தெடு DocType: Event,Participants,பங்கேற்பாளர்கள் DocType: Auto Repeat,Amended From,இருந்து திருத்தப்பட்ட -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,உங்கள் தகவல் சமர்ப்பிக்கப்பட்டது +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,உங்கள் தகவல் சமர்ப்பிக்கப்பட்டது DocType: Help Category,Help Category,உதவி வகை apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 மாதம் apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,புதிய வடிவமைப்பைத் திருத்த அல்லது தொடங்குவதற்கு ஏற்கனவே உள்ள வடிவமைப்பைத் தேர்ந்தெடுக்கவும். @@ -1221,7 +1238,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,கண்காணிக்க புலம் DocType: User,Generate Keys,விசைகளை உருவாக்கவும் DocType: Comment,Unshared,பகிர்வுநீக்கப்பட்டது -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,சேமித்த +DocType: Translation,Saved,சேமித்த DocType: OAuth Client,OAuth Client,OAuth கிளையண்ட் DocType: System Settings,Disable Standard Email Footer,நிலையான மின்னஞ்சல் அடிப்பாகத்தை முடக்கு apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,அச்சு வடிவமைப்பு {0} முடக்கப்பட்டுள்ளது @@ -1252,6 +1269,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,கடைச DocType: Data Import,Action,அதிரடி apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,கிளையண்ட் விசை தேவைப்படுகிறது DocType: Chat Profile,Notifications,அறிவிப்புகள் +DocType: Translation,Contributed,பங்களிப்பு DocType: System Settings,mm/dd/yyyy,மிமீ / மா / வருடம் DocType: Report,Custom Report,விருப்ப அறிக்கை DocType: Workflow State,info-sign,தகவல்-அடையாளம் @@ -1268,6 +1286,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,தொடர்பு DocType: LDAP Settings,LDAP Username Field,LDAP பயனர் பெயர் புலம் apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",{0} தனித்தன்மை இல்லாத மதிப்புகள் இருப்பதால் {0} துறையில் தனித்துவமாக அமைக்க முடியாது +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,அமைவு> படிவத்தைத் தனிப்பயனாக்கு DocType: User,Social Logins,சமூக உள்நுழைவுகள் DocType: Workflow State,Trash,குப்பைக்கு DocType: Stripe Settings,Secret Key,இரகசிய விசை @@ -1325,6 +1344,7 @@ DocType: DocType,Title Field,தலைப்பு புலம் apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,வெளிச்செல்லும் மின்னஞ்சல் சேவையகத்துடன் இணைக்க முடியவில்லை DocType: File,File URL,கோப்பு URL DocType: Help Article,Likes,தோட் +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google தொடர்புகள் ஒருங்கிணைப்பு முடக்கப்பட்டுள்ளது. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,நீங்கள் உள்நுழைந்திருக்க வேண்டும் மற்றும் கணினி மேலாளர் பங்கை காப்புப்பிரதிகளை அணுக முடியும். apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,முதல் நிலை DocType: Blogger,Short Name,குறுகிய பெயர் @@ -1342,13 +1362,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,ஜிப்பை இறக்குமதி செய்க DocType: Contact,Gender,பாலினம் DocType: Workflow State,thumbs-down,பெருவிரலை கீழ்நோக்கி -DocType: Web Page,SEO,எஸ்சிஓ apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},வரிசை {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},ஆவண வகை {0} இல் அறிவிப்பை அமைக்க முடியவில்லை apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"ஒரு கணினி மேலாளர் இருக்க வேண்டும், ஏனெனில் இந்த பயனர் கணினி மேலாளர் சேர்த்தல்" apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,வரவேற்கிறோம் மின்னஞ்சல் அனுப்பப்பட்டது DocType: Transaction Log,Chaining Hash,ஹேஷ் பிங் DocType: Contact,Maintenance Manager,பராமரிப்பு மேலாளர் +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","ஒப்பிடுவதற்கு,> 5, <10 அல்லது = 324 ஐப் பயன்படுத்தவும். வரம்புகளுக்கு, 5:10 ஐப் பயன்படுத்தவும் (5 & 10 க்கு இடையிலான மதிப்புகளுக்கு)." apps/frappe/frappe/utils/bot.py,show,நிகழ்ச்சி apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URL ஐப் பகிர் apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,ஆதரிக்கப்படாத கோப்பு வடிவமைப்பு @@ -1370,7 +1390,7 @@ DocType: Communication,Notification,அறிவித்தல் DocType: Data Import,Show only errors,பிழைகளை மட்டுமே காண்பி DocType: Energy Point Log,Review,விமர்சனம் apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,வரிசைகள் அகற்றப்பட்டன -DocType: GSuite Settings,Google Credentials,Google குறிப்புகள் +DocType: Google Settings,Google Credentials,Google குறிப்புகள் apps/frappe/frappe/www/login.html,Or login with,அல்லது உள்நுழைக apps/frappe/frappe/model/document.py,Record does not exist,பதிவு இல்லை apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,புதிய அறிக்கை பெயர் @@ -1395,6 +1415,7 @@ DocType: Desktop Icon,List,பட்டியல் DocType: Workflow State,th-large,வது பெரிய apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: சமர்ப்பிக்க முடியாவிட்டால் சமர்ப்பிக்கவும் அமைக்க முடியாது apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,எந்த பதிவிற்கும் இணைக்கப்படவில்லை +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZ தட்டு பயன்பாட்டுடன் இணைப்பதில் பிழை ...

மூல அச்சு அம்சத்தைப் பயன்படுத்த நீங்கள் QZ தட்டு பயன்பாட்டை நிறுவி இயக்க வேண்டும்.

QZ தட்டில் பதிவிறக்கி நிறுவ இங்கே கிளிக் செய்க .
மூல அச்சிடுதல் பற்றி மேலும் அறிய இங்கே கிளிக் செய்க ." DocType: Chat Message,Content,உள்ளடக்க DocType: Workflow Transition,Allow Self Approval,சுய ஒப்புதல் அனுமதி apps/frappe/frappe/www/qrcode.py,Page has expired!,பக்கம் காலாவதியானது! @@ -1411,6 +1432,7 @@ DocType: Workflow State,hand-right,கை வலது DocType: Website Settings,Banner is above the Top Menu Bar.,பதாகை மேலே பட்டி பட்டை மேலே உள்ளது. apps/frappe/frappe/www/update-password.html,Invalid Password,தவறான கடவுச்சொல் apps/frappe/frappe/utils/data.py,1 month ago,1 மாதம் முன்பு +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Google தொடர்புகள் அணுகலை அனுமதிக்கவும் DocType: OAuth Client,App Client ID,பயன்பாட்டு கிளையன்ட் ஐடி DocType: DocField,Currency,நாணய DocType: Website Settings,Banner,பதாகை @@ -1422,7 +1444,7 @@ apps/frappe/frappe/utils/goal.py,Goal,கோல் DocType: Print Style,CSS,CSS ஐ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","நிலை 0 இல் ஒரு பங்கிற்கான அணுகல் இல்லாவிட்டால், உயர் நிலைகள் அர்த்தமற்றவை." DocType: ToDo,Reference Type,குறிப்பு வகை -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DocType, DocType ஐ அனுமதிக்கிறது. கவனமாக இரு!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","DocType, DocType ஐ அனுமதிக்கிறது. கவனமாக இரு!" DocType: Domain Settings,Domain Settings,டொமைன் அமைப்புகள் DocType: Auto Email Report,Dynamic Report Filters,டைனமிக் அறிக்கை வடிகட்டிகள் DocType: Energy Point Log,Appreciation,பாராட்டு @@ -1464,6 +1486,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,எங்களுக்கு மேற்கு-2 DocType: DocType,Is Single,ஒற்றை apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,புதிய வடிவமைப்பு உருவாக்கவும் +DocType: Google Contacts,Authorize Google Contacts Access,Google தொடர்புகள் அணுகலை அங்கீகரிக்கவும் DocType: S3 Backup Settings,Endpoint URL,இறுதி URL DocType: Social Login Key,Google,கூகிள் DocType: Contact,Department,துறை @@ -1478,7 +1501,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,ஒதுக் DocType: List Filter,List Filter,பட்டியல் வடிகட்டி DocType: Dashboard Chart Link,Chart,விளக்கப்படம் apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,அகற்ற முடியாது -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,உறுதிப்படுத்த இந்த ஆவணத்தை சமர்ப்பிக்கவும் +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,உறுதிப்படுத்த இந்த ஆவணத்தை சமர்ப்பிக்கவும் apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} ஏற்கனவே உள்ளது. மற்றொரு பெயரைத் தேர்ந்தெடுக்கவும் apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,இந்த வடிவத்தில் சேமிக்கப்படாத மாற்றங்கள் உள்ளன. தொடரும் முன் தயவுசெய்து சேமிக்கவும். apps/frappe/frappe/model/document.py,Action Failed,செயல் தோல்வியடைந்தது @@ -1560,6 +1583,7 @@ DocType: DocField,Display,காட்சி apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,அனைவருக்கும் பதிலளி DocType: Calendar View,Subject Field,பொருள் புலம் apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},அமர்வு காலாவதி இருக்க வேண்டும் {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},விண்ணப்பிக்கிறது: {0} DocType: Workflow State,zoom-in,பெரிதாக்க apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,சேவகையத்திடம் தொடர்பு கொள்ள முடியவில்லை apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},தேதி {0} வடிவத்தில் இருக்க வேண்டும்: {1} @@ -1571,8 +1595,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,ஐகான் பொத்தானில் தோன்றும் DocType: Role Permission for Page and Report,Set Role For,ரோல் என்பதற்கு அமை +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,ஒரு மின்னஞ்சல் கணக்கிற்கு மட்டுமே தானியங்கி இணைப்பை செயல்படுத்த முடியும். apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,எந்த மின்னஞ்சல் கணக்குகளும் ஒதுக்கப்படவில்லை +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,மின்னஞ்சல் கணக்கு அமைக்கப்படவில்லை. அமைவு> மின்னஞ்சல்> மின்னஞ்சல் கணக்கிலிருந்து புதிய மின்னஞ்சல் கணக்கை உருவாக்கவும் apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,வேலையை +DocType: Google Contacts,Last Sync On,கடைசி ஒத்திசைவு apps/frappe/frappe/config/website.py,Portal,போர்டல் apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,உங்களுடைய மின்னஞ்சலுக்கு நன்றி apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,Attach files / urls and add in table.,கோப்புகளை / URL களை இணைக்கவும் மற்றும் அட்டவணையில் சேர்க்கவும். @@ -1592,7 +1619,6 @@ DocType: GSuite Settings,GSuite Settings,GSuite அமைப்புகள் DocType: Integration Request,Remote,ரிமோட் DocType: File,Thumbnail URL,சிறு URL apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,புகாரைப் பதிவிறக்கவும் -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,அமைவு> பயனர் apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},ஏற்றுமதி செய்ய {0} தனிப்பயனாக்கங்கள்:
{1} DocType: GCalendar Account,Calendar Name,நாள்காட்டி பெயர் apps/frappe/frappe/templates/emails/new_user.html,Your login id is,உங்கள் உள்நுழைவு ஐடி @@ -1642,6 +1668,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},{0} apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,படத் புலம் ஒரு செல்லுபடியாகும் புலம் பெயராக இருக்க வேண்டும் apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,இந்த பக்கத்தை அணுக நீங்கள் உள்நுழைந்திருக்க வேண்டும் DocType: Assignment Rule,Example: {{ subject }},எடுத்துக்காட்டு: {{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,புலப்பெயர் {0} தடைசெய்யப்பட்டுள்ளது DocType: Social Login Key,Enable Social Login,சமூக உள்நுழைவை இயக்கு DocType: Workflow,Rules defining transition of state in the workflow.,பணியிடத்தில் மாநில மாற்றத்தை வரையறுக்கும் விதிகள். DocType: S3 Backup Settings,eu-west-1,EU-மேற்கு-1 @@ -1661,10 +1688,10 @@ DocType: Website Settings,Route Redirects,பாதை வழிமாற்ற apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,மின்னஞ்சல் இன்பாக்ஸ் apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},{0} என {1} DocType: Assignment Rule,Automatically Assign Documents to Users,பயனர்களுக்கு ஆவணங்களை தானாகவே ஒதுக்கலாம் +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,அற்புதமான பட்டியைத் திறக்கவும் apps/frappe/frappe/config/settings.py,Email Templates for common queries.,பொதுவான கேள்விகளுக்கான மின்னஞ்சல் டெம்ப்ளேட்கள். DocType: Letter Head,Letter Head Based On,கடிதம் தலைமை அடிப்படையில் apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,இந்த சாளரத்தை மூடுக -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,கட்டணம் முழுமை DocType: Contact,Designation,பதவி DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,மெட்டா குறிச்சொற்கள் @@ -1689,6 +1716,7 @@ DocType: Print Style,Print Style Name,அச்சு நடை Name apps/frappe/frappe/printing/doctype/print_format/print_format.py,Standard Print Format cannot be updated,தரநிலை அச்சு வடிவமைப்பு புதுப்பிக்கப்படாது DocType: User Permission,Applicable For,பொருந்தக்கூடியது apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Size (px),எழுத்துரு அளவு (px) +apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Only {0} emailed reports are allowed per user,ஒரு பயனருக்கு {0} மின்னஞ்சல் அறிக்கைகள் மட்டுமே அனுமதிக்கப்படுகின்றன apps/frappe/frappe/templates/includes/comments/comments.html,Thank you for your comment. It will be published after approval,உங்கள் கருத்துக்கு நன்றி. இது ஒப்புதலுக்காக வெளியிடப்படும் DocType: Website Settings,Chat Operators,அரட்டை இயக்கிகள் apps/frappe/frappe/core/doctype/version/version_view.html,Success,வெற்றி @@ -1702,6 +1730,7 @@ DocType: System Settings,Choose authentication method to be used by all users, DocType: Error Snapshot,Parent Error Snapshot,பெற்றோர் பிழை நொடிப்பு DocType: GCalendar Account,GCalendar Account,GCalendar கணக்கு DocType: Language,Language Name,மொழி பெயர் +DocType: Workflow Document State,Workflow Action is not created for optional states,விருப்ப நிலைகளுக்கு பணிப்பாய்வு செயல் உருவாக்கப்படவில்லை DocType: Customize Form,Customize Form,படிவம் தனிப்பயனாக்கலாம் DocType: DocType,Image Field,பட புலம் apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),{0} ({1}) சேர்க்கப்பட்டது @@ -1742,6 +1771,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,பயனர் உரிமையாளர் என்றால் இந்த விதியைப் பயன்படுத்துங்கள் DocType: About Us Settings,Org History Heading,வரலாறு வரலாற்றின் தலைப்பு apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,சேவையகப் பிழை +DocType: Contact,Google Contacts Description,Google தொடர்புகள் விளக்கம் apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,நிலையான பாத்திரங்களை மறுபெயரிட முடியாது DocType: Review Level,Review Points,மதிப்பாய்வு புள்ளிகள் apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,காணாமல் அளவுரு Kanban வாரியம் பெயர் @@ -1759,7 +1789,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,டெவலப்பர் பயன்முறையில் இல்லை! Site_config.json இல் அமைக்கவும் அல்லது 'தனிப்பயன்' DocType ஐ செய்யவும். apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,{0} புள்ளிகள் பெற்றது DocType: Web Form,Success Message,வெற்றி செய்தி -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","ஒப்பீடு, பயன்படுத்த> 5, <10 அல்லது = 324. வரம்புகளுக்கு, 5:10 ஐ பயன்படுத்தவும் (5 மற்றும் 10 க்கு இடையில் மதிப்புகள்)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","பட்டியல் பக்கத்திற்கான விளக்கம், வெற்று உரையில், ஒரு ஜோடி வரி மட்டுமே. (அதிகபட்சம் 140 எழுத்துகள்)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,அனுமதிகள் காட்டு DocType: DocType,Restrict To Domain,டொமைன் வரையறுக்க @@ -1781,6 +1810,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,இல apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,அளவு அமைக்கவும் DocType: Auto Repeat,End Date,கடைசி தேதி DocType: Workflow Transition,Next State,அடுத்த மாநிலம் +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Google தொடர்புகள் ஒத்திசைக்கப்பட்டன. DocType: System Settings,Is First Startup,முதல் துவக்கம் apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},{0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,நகர்த்து @@ -1830,6 +1860,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} நாட்காட்டி apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,தரவு இறக்குமதி வார்ப்புரு DocType: Workflow State,hand-left,கை விட்டு +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,பல பட்டியல் உருப்படிகளைத் தேர்ந்தெடுக்கவும் apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,காப்பு அளவு: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},{0} உடன் இணைக்கப்பட்டது DocType: Braintree Settings,Private Key,தனிப்பட்ட விசை @@ -1872,13 +1903,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,ஆர்வம் DocType: Bulk Update,Limit,அளவு DocType: Print Settings,Print taxes with zero amount,பூஜ்ஜியத்துடன் வரிகளை அச்சிடு -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,மின்னஞ்சல் கணக்கு அமைக்கப்படவில்லை. அமைப்பு> மின்னஞ்சல்> மின்னஞ்சல் கணக்கிலிருந்து ஒரு புதிய மின்னஞ்சல் கணக்கை உருவாக்கவும் DocType: Workflow State,Book,புத்தக DocType: S3 Backup Settings,Access Key ID,அணுகல் விசை ஐடி DocType: Chat Message,URLs,URL கள் apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,தங்களைக் கொண்ட பெயர்கள் மற்றும் குடும்பங்கள் யூகிக்க எளிதானவை. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},அறிக்கை {0} DocType: About Us Settings,Team Members Heading,குழு உறுப்பினர்கள் தலைப்பு +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,பட்டியல் உருப்படியைத் தேர்ந்தெடுக்கவும் apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},{0} {2} மூலம் {1} DocType: Address Template,Address Template,முகவரி வார்ப்புரு DocType: Workflow State,step-backward,படிப்படியான பின்தங்கிய @@ -1902,6 +1933,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,விருப்ப அனுமதிகள் ஏற்றுமதி apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,எதுவும் இல்லை: பணிப்பாய்வு முடிவு DocType: Version,Version,பதிப்பு +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,பட்டியல் உருப்படியைத் திறக்கவும் apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 மாதங்கள் DocType: Chat Message,Group,குழு apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},கோப்பு URL இல் சில சிக்கல்கள் உள்ளன: {0} @@ -1956,6 +1988,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 வருட apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} {1} DocType: Workflow State,arrow-down,அம்புக்குறி கீழே DocType: Data Import,Ignore encoding errors,குறியாக்க பிழைகள் புறக்கணி +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,இயற்கை DocType: Letter Head,Letter Head Name,கடிதம் தலை பெயர் DocType: Web Form,Client Script,கிளையண்ட் ஸ்கிரிப்ட் DocType: Assignment Rule,Higher priority rule will be applied first,உயர் முன்னுரிமை விதி முதலில் பயன்படுத்தப்படும் @@ -2000,6 +2033,7 @@ DocType: Kanban Board Column,Green,பசுமை apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,புதிய பதிவுகளுக்கு மட்டுமே கட்டாய துறைகள் தேவை. நீங்கள் விரும்பினால் கட்டாயமற்ற கட்டங்களை நீக்கலாம். apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} ஒரு கடிதத்துடன் தொடங்கி முடிக்க வேண்டும், எழுத்துகள், ஹைபன் அல்லது அடிக்கோடிட்டுக் கொண்டிருக்கும்." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,முதன்மை செயலைத் தூண்டுகிறது apps/frappe/frappe/core/doctype/user/user.js,Create User Email,பயனர் மின்னஞ்சல் உருவாக்கவும் apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,வரிசைப் புலம் {0} சரியான புலம் பெயராக இருக்க வேண்டும் DocType: Auto Email Report,Filter Meta,வடிகட்டி மெட்டா @@ -2029,6 +2063,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,காலக்கெடு புலம் apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,ஏற்றுதல் ... DocType: Auto Email Report,Half Yearly,அரையாண்டு +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,என் சுயவிவரம் apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,கடைசியாக மாற்றிய தேதி DocType: Contact,First Name,முதல் பெயர் DocType: Post,Comments,கருத்துக்கள் @@ -2051,6 +2086,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,உள்ளடக்க ஹேஷ் apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},{0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} ஒதுக்கீடு {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,புதிய Google தொடர்புகள் எதுவும் ஒத்திசைக்கப்படவில்லை. DocType: Workflow State,globe,உலகம் apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},{0} இன் சராசரி apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,தெளிவான பிழை பதிவுகள் @@ -2077,6 +2113,8 @@ DocType: Workflow State,Inverse,எதிர்மாறான DocType: Activity Log,Closed,மூடப்பட்ட DocType: Report,Query,கேள்வி DocType: Notification,Days After,நாட்கள் கழித்து +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,பக்க குறுக்குவழிகள் +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,ஓவிய apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,கோரிக்கை தீர்ந்துவிட்டது DocType: System Settings,Email Footer Address,மின்னஞ்சல் அடிக்குறிப்பு முகவரி apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,ஆற்றல் புள்ளி மேம்படுத்தல் @@ -2104,6 +2142,7 @@ For Select, enter list of Options, each on a new line.","இணைப்பு apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 நிமிடம் முன்பு apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,செயலில் அமர்வு இல்லை apps/frappe/frappe/model/base_document.py,Row,ரோ +DocType: Contact,Middle Name,மத்திய பெயர் apps/frappe/frappe/public/js/frappe/request.js,Please try again,தயவுசெய்து மீண்டும் முயற்சி செய்க DocType: Dashboard Chart,Chart Options,விளக்கப்படம் விருப்பங்கள் DocType: Data Migration Run,Push Failed,புஷ் தோல்வி @@ -2132,6 +2171,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,அளவை சிறிய DocType: Comment,Relinked,மீண்டும் இணைக்கப்பட்டது DocType: Role Permission for Page and Report,Roles HTML,பாத்திரங்கள் HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,போய் apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,பணியை சேமித்து வைத்த பிறகு தொடங்கும். DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","உங்கள் தரவு HTML இல் இருந்தால், குறிச்சொற்களை கொண்டு சரியான HTML குறியீட்டை ஒட்டவும்." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,தினங்கள் அடிக்கடி யூகிக்க எளிதாக இருக்கும். @@ -2160,7 +2200,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,மேசைமுகப்பு குறியீடு apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,இந்த ஆவணத்தை ரத்துசெய்தார் apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,தேதி வரம்பு -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,அமைவு> பயனர் அனுமதிகள் apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} பாராட்டப்பட்டது {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,மதிப்புகள் மாற்றப்பட்டன apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,அறிவிப்பில் பிழை @@ -2225,6 +2264,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,மொத்த நீக்கு DocType: DocShare,Document Name,ஆவணத்தின் பெயர் apps/frappe/frappe/config/customization.py,Add your own translations,உங்கள் சொந்த மொழிபெயர்ப்புகளை சேர்க்கவும் +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,பட்டியலை கீழே செல்லவும் DocType: S3 Backup Settings,eu-central-1,EU-மத்திய-1 DocType: Auto Repeat,Yearly,வருடாந்திரம் apps/frappe/frappe/public/js/frappe/model/model.js,Rename,மறுபெயரிடு @@ -2275,6 +2315,7 @@ DocType: Workflow State,plane,விமானம் apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,உள்ளமை தொகுப்பு பிழை. தயவுசெய்து நிர்வாகியை தொடர்பு கொள்ளவும். apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,அறிக்கை காட்டு DocType: Auto Repeat,Auto Repeat Schedule,ஆட்டோ மீண்டும் மீண்டும் அட்டவணை +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Ref ஐக் காட்டு DocType: Address,Office,அலுவலகம் DocType: LDAP Settings,StartTLS,ஸ்டார்ட் TLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} நாட்கள் முன்பு @@ -2308,7 +2349,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required, apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,எனது அமைப்புகள் apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,குழு பெயர் காலியாக இருக்க முடியாது. DocType: Workflow State,road,சாலை -DocType: Website Route Redirect,Source,மூல +DocType: Contact,Source,மூல apps/frappe/frappe/www/third_party_apps.html,Active Sessions,செயலில் அமர்வு apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,ஒரு வடிவத்தில் ஒரே ஒரு மடிப்பு இருக்க முடியும் apps/frappe/frappe/public/js/frappe/chat.js,New Chat,புதிய அரட்டை @@ -2354,6 +2395,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,பயனர்கள் தங்கள் பயனர் பக்கத்திலிருந்து பாத்திரங்களை அமைக்கலாம். DocType: Website Settings,Include Search in Top Bar,மேல் பட்டியில் தேடல் அடங்கும் apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,% S க்கான% s ஐ மீண்டும் உருவாக்கும்போது [Urgent] பிழை +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,உலகளாவிய குறுக்குவழிகள் DocType: Help Article,Author,ஆசிரியர் DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,கொடுக்கப்பட்ட வடிகட்டிகளுக்கு எந்த ஆவணமும் இல்லை @@ -2389,10 +2431,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, வரிசை {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","நீங்கள் புதிய பதிவேற்றங்களை பதிவேற்றினால், "பெயரிடும் தொடர்கள்" தற்போது இருந்தால், கட்டாயமாகும்." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,தொகு சொத்துகள் -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,அதன் {0} திறந்த நிலையில் இருக்கும்போது திறக்க முடியாது +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,அதன் {0} திறந்த நிலையில் இருக்கும்போது திறக்க முடியாது DocType: Activity Log,Timeline Name,காலக்கெடு பெயர் DocType: Comment,Workflow,பணியோட்ட apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Frappe க்கான சமூக உள்நுழைவு விசையில் அடிப்படை URL ஐ அமைக்கவும் +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,விசைப்பலகை குறுக்குவழிகள் DocType: Portal Settings,Custom Menu Items,தனித்துவ மெனு பொருட்கள் apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,{0} நீளம் 1 முதல் 1000 வரை இருக்க வேண்டும் apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,தொடர்பு துண்டிக்கப்பட்டது. சில அம்சங்கள் வேலை செய்யாமல் போகலாம். @@ -2455,6 +2498,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,வரி DocType: DocType,Setup,அமைப்பு apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} வெற்றிகரமாக உருவாக்கப்பட்டது apps/frappe/frappe/www/update-password.html,New Password,புதிய கடவுச்சொல் +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,புலம் என்பதைத் தேர்ந்தெடுக்கவும் apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,இந்த உரையாடலை விட்டு விடுங்கள் DocType: About Us Settings,Team Members,குழு உறுப்பினர்கள் DocType: Blog Settings,Writers Introduction,எழுத்தாளர்கள் அறிமுகம் @@ -2524,13 +2568,12 @@ DocType: Chat Room,Name,பெயர் DocType: Communication,Email Template,மின்னஞ்சல் டெம்ப்ளேட் DocType: Energy Point Settings,Review Levels,விமர்சனங்கள் நிலைகள் DocType: Print Format,Raw Printing,ரா அச்சு -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,அதன் நிகழ்வு திறந்தவுடன் {0} திறக்க முடியாது +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,அதன் நிகழ்வு திறந்தவுடன் {0} திறக்க முடியாது DocType: DocType,"Make ""name"" searchable in Global Search",உலகளாவிய தேடலில் "பெயர்" தேடலாம் DocType: Data Migration Mapping,Data Migration Mapping,தரவு இடமாற்றம் வரைபடம் DocType: Data Import,Partially Successful,பகுதி வெற்றிகரமாக DocType: Communication,Error,பிழை apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},{0} முதல் {0} வரிசையில் {0} இருந்து Fieldtype ஐ மாற்ற முடியாது -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZ ட்ரே பயன்பாடுகளுடன் இணைப்பதில் பிழை ...

ரா அச்சுப் பயன்பாட்டைப் பயன்படுத்த QZ ட்ரே பயன்பாடு நிறுவப்பட்டு இயங்க வேண்டும்.

QZ ட்ரே பதிவிறக்க மற்றும் நிறுவ இங்கே கிளிக் செய்க .
ரா அச்சுப்பொறியைப் பற்றி மேலும் அறிய இங்கே கிளிக் செய்யவும் ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,புகைப்படத்தை எடுக்கவும் apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,உங்களுடன் தொடர்புடைய ஆண்டுகள் தவிர்க்கவும். DocType: Web Form,Allow Incomplete Forms,முழுமையற்ற படிவங்களை அனுமதி @@ -2626,7 +2669,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",ஒரு புதிய பக்கத்தில் திறக்க இலக்கு = "_blank" என்பதைத் தேர்ந்தெடுக்கவும். DocType: Portal Settings,Portal Menu,போர்டல் மெனு DocType: Website Settings,Landing Page,இறங்கும் பக்கம் -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,தயவுசெய்து உள்நுழைக அல்லது தொடங்குவதற்கு உள்நுழைக DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","தொடர்பு விருப்பங்கள், "விற்பனை வினவல், ஆதரவு வினவல்" போன்றவை ஒரு புதிய வரியில் ஒவ்வொருவையும் அல்லது காற்புள்ளிகளால் பிரிக்கப்படுகின்றன." apps/frappe/frappe/twofactor.py,Verfication Code,சரிபார்ப்புக் குறியீடு apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} ஏற்கனவே விலகியுள்ளார் @@ -2712,6 +2754,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,தரவு DocType: Address,Sales User,விற்பனை பயனர் apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","துறையில் பண்புகள் மாற்ற (மறைக்க, படிக்க மட்டும், அனுமதி முதலியன)" DocType: Property Setter,Field Name,புலம் பெயர் +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,வாடிக்கையாளர் DocType: Print Settings,Font Size,எழுத்துரு அளவு DocType: User,Last Password Reset Date,கடைசி கடவுச்சொல் மீட்டமை நாள் DocType: System Settings,Date and Number Format,தேதி மற்றும் எண் வடிவமைப்பு @@ -2775,6 +2818,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,குழு apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,ஏற்கனவே இணைக்க DocType: Blog Post,Blog Intro,வலைப்பதிவு அறிமுகம் apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,புதிய குறிப்பு +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,களத்தில் செல்லவும் DocType: Prepared Report,Report Name,அறிக்கை பெயர் apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,சமீபத்திய ஆவணத்தைப் பெறுவதற்கு புதுப்பிக்கவும். apps/frappe/frappe/core/doctype/communication/communication.js,Close,நெருக்கமான @@ -2784,10 +2828,12 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,நிகழ்வு DocType: Social Login Key,Access Token URL,அணுகல் டோக்கன் URL apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,உங்கள் தள அமைப்பில் டிராப்பாக்ஸ் அணுகல் விசைகளை அமைக்கவும் +DocType: Google Contacts,Google Contacts,Google தொடர்புகள் DocType: User,Reset Password Key,கடவுச்சொல் விசையை மீட்டமைக்கவும் apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,மூலம் திருத்தப்பட்டது DocType: User,Bio,உயிரி apps/frappe/frappe/limits.py,"To renew, {0}.","புதுப்பிக்க, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,வெற்றிகரமாக சேமிக்கப்பட்டது DocType: File,Folder,அடைவு DocType: DocField,Perm Level,Perm நிலை DocType: Print Settings,Page Settings,பக்க அமைப்புகள் @@ -2817,6 +2863,7 @@ DocType: Workflow State,remove-sign,நீக்க உள்நுழைய DocType: Dashboard Chart,Full,முழு DocType: DocType,User Cannot Create,பயனர் உருவாக்க முடியாது apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,நீங்கள் {0} புள்ளி கிடைத்தது +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,அமைப்பு> பயனர் DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","நீங்கள் இதை அமைத்தால், தேர்ந்தெடுத்த பெற்றோரின் கீழ் இந்த உருப்படி ஒரு கீழ்தோன்றும்." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,மின்னஞ்சல்கள் இல்லை apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,பின்வரும் துறைகளில் காணவில்லை: @@ -2830,13 +2877,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,அ DocType: Web Form,Web Form Fields,வலை படிவம் புலங்கள் DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,வலைத்தளம் பயனர் திருத்தும்படி வடிவம். -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,{0} நிரந்தரமாக ரத்துசெய்யவா? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,{0} நிரந்தரமாக ரத்துசெய்யவா? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,விருப்பம் 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,கூட்டுத்தொகை apps/frappe/frappe/utils/password_strength.py,This is a very common password.,இது ஒரு பொதுவான கடவுச்சொல். DocType: Personal Data Deletion Request,Pending Approval,நிலுவையிலுள்ள ஒப்புதல் apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,ஆவணம் சரியாக ஒதுக்கப்படவில்லை apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,காண்பிக்க மதிப்புகள் இல்லை DocType: Personal Data Download Request,Personal Data Download Request,தனிப்பட்ட தரவு பதிவிறக்க கோரிக்கை apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} இந்த ஆவணத்தைப் {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},{0} @@ -2852,7 +2900,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},"இந்த மின்னஞ்சல் {0} க்கு அனுப்பப்பட்டது, மேலும் {1}" apps/frappe/frappe/email/smtp.py,Invalid login or password,தவறான உள்நுழைவு அல்லது கடவுச்சொல் DocType: Social Login Key,Social Login Key,சமூக உள்நுழைவு விசை -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,அமைவு> மின்னஞ்சல்> மின்னஞ்சல் கணக்கில் இருந்து இயல்புநிலை மின்னஞ்சல் கணக்கு அமைக்கவும் apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,வடிப்பான்கள் சேமிக்கப்பட்டன DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","இந்த நாணயம் எவ்வாறு வடிவமைக்கப்பட வேண்டும்? அமைக்கப்படவில்லை என்றால், கணினி இயல்புநிலைகளைப் பயன்படுத்தும்" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} நிலைக்கு அமைக்கப்படுகிறது {2} @@ -2964,6 +3011,7 @@ DocType: Custom Field,Select the label after which you want to insert new field. DocType: Payment Gateway,Gateway Controller,நுழைவாயில் கட்டுப்பாட்டாளர் apps/frappe/frappe/data_migration/doctype/data_migration_connector/data_migration_connector.js,New Connection,புதிய இணைப்பு apps/frappe/frappe/public/js/frappe/views/interaction.js,New Activity,புதிய செயல்பாடு +apps/frappe/frappe/email/doctype/newsletter/newsletter.py,Unable to find attachment {0},இணைப்பைக் கண்டுபிடிக்க முடியவில்லை {0} DocType: Data Export,Fields Multicheck,புலங்கள் Multicheck DocType: Error Snapshot,Timestamp,டைம்ஸ்டாம்ப் DocType: Website Settings,Website Theme,இணையத்தளம் தீம் @@ -2977,6 +3025,7 @@ DocType: User,Location,இருப்பிடம் apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,தகவல் இல்லை DocType: Website Meta Tag,Website Meta Tag,வலைத்தள மெட்டா டேக் DocType: Workflow State,film,படம் +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,கிளிப்போர்டுக்கு நகலெடுக்கப்பட்டது. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} அமைப்புகள் கிடைக்கவில்லை apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,லேபிள் கட்டாயமாகும் DocType: Webhook,Webhook Headers,Webhook தலைப்புகள் @@ -3074,6 +3123,7 @@ apps/frappe/frappe/desk/page/backups/backups.js,Download Files Backup,கோப apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Set,அமை apps/frappe/frappe/desk/doctype/event/event.py,Event end must be after start,நிகழ்வு முடிந்த பின் தொடர வேண்டும் apps/frappe/frappe/email/queue.py,{0} to stop receiving emails of this type,இந்த வகை மின்னஞ்சல்களைப் பெறுவதை நிறுத்த {0} +apps/frappe/frappe/templates/emails/energy_points_summary.html,gave {0} points,{0} புள்ளிகளைக் கொடுத்தார் DocType: User,Daily,டெய்லி DocType: DocType,Custom?,விருப்ப? DocType: User,Username,பயனர்பெயர் @@ -3182,7 +3232,7 @@ DocType: Address,Address Line 1,முகவரி வரி 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,ஆவண வகை apps/frappe/frappe/model/base_document.py,Data missing in table,தரவு அட்டவணையில் காணவில்லை apps/frappe/frappe/utils/bot.py,Could not identify {0},{0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,நீங்கள் அதை ஏற்ற பிறகு இந்த வடிவம் மாற்றப்பட்டுள்ளது +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,நீங்கள் அதை ஏற்ற பிறகு இந்த வடிவம் மாற்றப்பட்டுள்ளது apps/frappe/frappe/www/login.html,Back to Login,மீண்டும் உள்நுழையவும் apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,அமைக்கப்படவில்லை DocType: Data Migration Mapping,Pull,இழு @@ -3199,6 +3249,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js,GSuit DocType: Email Group,Email Group,மின்னஞ்சல் குழு apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Row {0}: Not allowed to disable Mandatory for standard fields,வரிசை {0}: நிலையான புலங்களில் கட்டாயத்தை முடக்க அனுமதி இல்லை DocType: Braintree Settings,Braintree Settings,மூளை அமைப்புகள் +apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the sending limit of {0} emails for this day.,இந்த மின்னஞ்சலை அனுப்ப முடியாது. இந்த நாளுக்காக {0} மின்னஞ்சல்களை அனுப்பும் வரம்பை நீங்கள் கடந்துவிட்டீர்கள். DocType: Workflow State,fast-backward,வேகமாக பின்தங்கிய DocType: Website Settings,Copyright,பதிப்புரிமை DocType: Assignment Rule,Description,விளக்கம் @@ -3249,6 +3300,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,குழந்தை apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,மின்னஞ்சல் கணக்கு அமைப்பு தயவுசெய்து உங்கள் கடவுச்சொல்லை உள்ளிடுக: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,ஒரு கோரிக்கையில் பலர் எழுதுகிறார்கள். சிறிய கோரிக்கைகள் அனுப்பவும் DocType: Social Login Key,Salesforce,விற்பனைக்குழு +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{1} இல் {0} DocType: User,Tile,டைல் apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} அறைக்கு ஒரு பயனரைக் கொண்டாக வேண்டும். DocType: Email Rule,Is Spam,ஸ்பேம் @@ -3286,7 +3338,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,அடைவை-நெருங்கிய DocType: Data Migration Run,Pull Update,புதுப்பிக்கவும் apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},{0} {1} இல் இணைக்கப்பட்டது -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

தேடல் முடிவுகள்:

DocType: SMS Settings,Enter url parameter for receiver nos,ரிசீவர் nos க்கான URL அளவுருவை உள்ளிடவும் apps/frappe/frappe/utils/jinja.py,Syntax error in template,டெம்ப்ளேட்டில் தொடரியல் பிழை apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,புகார் வடிப்பான் அட்டவணையில் வடிகட்டிகளின் மதிப்பை அமைக்கவும். @@ -3299,6 +3350,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","மன் DocType: System Settings,In Days,நாட்களில் DocType: Report,Add Total Row,மொத்த வரிசை சேர்க்கவும் apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,அமர்வு தொடக்கம் தோல்வியடைந்தது +DocType: Translation,Verified,சரிபார்க்கப்பட்ட DocType: Print Format,Custom HTML Help,விருப்ப HTML உதவி DocType: Address,Preferred Billing Address,விருப்பமான பில்லிங் முகவரி apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,ஒதுக்கப்படும் @@ -3313,7 +3365,6 @@ DocType: Help Article,Intermediate,இடைநிலை DocType: Module Def,Module Name,தொகுதி பெயர் DocType: OAuth Authorization Code,Expiration time,காலாவதி நேரம் apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","இயல்புநிலை வடிவமைப்பு, பக்க அளவு, அச்சு நடை போன்றவற்றை அமை" -apps/frappe/frappe/desk/like.py,You cannot like something that you created,நீங்கள் உருவாக்கிய ஏதாவது பிடிக்க முடியாது DocType: System Settings,Session Expiry,அமர்வு காலாவதி DocType: DocType,Auto Name,ஆட்டோ பெயர் apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,இணைப்புகளைத் தேர்ந்தெடுக்கவும் @@ -3341,6 +3392,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,கணினி பக்கம் DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,குறிப்பு: தோல்வியுற்ற காப்புப்பிரதிகளுக்கான இயல்புநிலை மின்னஞ்சல்கள் அனுப்பப்படுகின்றன. DocType: Custom DocPerm,Custom DocPerm,விருப்ப DocPerm +DocType: Translation,PR sent,பி.ஆர் அனுப்பப்பட்டது DocType: Tag Doc Category,Doctype to Assign Tags,குறிச்சொற்களை ஒதுக்க டாக்டைப் DocType: Address,Warehouse,கிடங்கு apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,டிராப்பாக்ஸ் அமைப்பு @@ -3407,7 +3459,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,கருத்துரை சேர்க்க Ctrl + Enter apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,புலம் {0} தேர்ந்தெடுக்க முடியாது. DocType: User,Birth Date,பிறந்த தேதி -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,குழு இன்டனேஷன் மூலம் DocType: List View Setting,Disable Count,எண்ணை முடக்கு DocType: Contact Us Settings,Email ID,மின்னஞ்சல் முகவரி apps/frappe/frappe/utils/password.py,Incorrect User or Password,தவறான பயனர் அல்லது கடவுச்சொல் @@ -3441,6 +3492,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,இந்த பாத்திரம் பயனருக்கு பயனர் அனுமதியை மேம்படுத்துகிறது DocType: Website Theme,Theme,தீம் DocType: Web Form,Show Sidebar,பக்கப்பட்டியைக் காட்டு +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google தொடர்புகள் ஒருங்கிணைப்பு. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,இயல்புநிலை இன்பாக்ஸ் apps/frappe/frappe/www/login.py,Invalid Login Token,தவறான தேதி டோக்கன் apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,"முதலில் பெயரை அமைக்கவும், பதிவு சேமிக்கவும்." @@ -3468,7 +3520,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,தயவுசெய்து சரி DocType: Top Bar Item,Top Bar Item,மேல் பார் பொருள் ,Role Permissions Manager,ரோல் அனுமதிகள் மேலாளர் -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,பிழைகள் இருந்தன. இதை புகாரளிக்கவும். +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ஆண்டு (கள்) முன்பு apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,பெண் DocType: System Settings,OTP Issuer Name,OTP வழங்குபவர் பெயர் apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,செய்ய சேர்க்கவும் @@ -3568,6 +3620,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","மொ apps/frappe/frappe/model/document.py,none of,யாரும் இல்லை DocType: Desktop Icon,Page,பக்கம் DocType: Workflow State,plus-sign,பிளஸ்-அடையாளம் +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,தற்காலிக சேமிப்பு மற்றும் மீண்டும் ஏற்றவும் apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,புதுப்பிக்க முடியாது: தவறான / காலாவதியான இணைப்பு. DocType: Kanban Board Column,Yellow,மஞ்சள் DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),ஒரு கட்டத்தில் ஒரு களத்திற்கான நெடுவரிசைகளின் எண்ணிக்கை (ஒரு கட்டத்தில் உள்ள மொத்த நெடுவரிசைகள் 11 க்கும் குறைவாக இருக்க வேண்டும்) @@ -3582,6 +3635,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,ப DocType: Activity Log,Date,தேதி DocType: Communication,Communication Type,தொடர்பு வகை apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,பெற்றோர் அட்டவணை +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,பட்டியலை மேலே செல்லவும் DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,முழுப் பிழை காண்பி மற்றும் டெவெலப்பருக்கு சிக்கல்களைப் புகாரளிக்க அனுமதிக்கவும் DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3603,9 +3657,9 @@ DocType: Notification Recipient,Email By Role,பங்கு மூலம் apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,{0} சந்தாதாரர்களை விட கூடுதலாக சேர்க்க மேம்படுத்தவும் apps/frappe/frappe/email/queue.py,This email was sent to {0},இந்த மின்னஞ்சல் {0} DocType: User,Represents a User in the system.,கணினியில் ஒரு பயனர் பிரதிநிதித்துவம். -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},பக்கம் {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,புதிய வடிவமைப்பு தொடங்கவும் apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,கருத்துரை சேர்க்கவும் +apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{1} இன் {0} apps/frappe/frappe/desk/page/backups/backups.html,Size,அளவு apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}: {2} க்கான Fieldtype {1} குறியிடப்படவில்லை apps/frappe/frappe/desk/doctype/event/event.js,Add Participants,பங்கேற்பாளர்களைச் சேர்க்கவும் diff --git a/frappe/translations/te.csv b/frappe/translations/te.csv index 602b235cd2..d5fbdbd6e6 100644 --- a/frappe/translations/te.csv +++ b/frappe/translations/te.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,గ్రేడియంట్లను ప్రారంభించు DocType: DocType,Default Sort Order,Default Sort Order apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,నివేదిక నుండి సంఖ్యాత్మక ఖాళీలను మాత్రమే చూపుతోంది +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,మెనూ మరియు సైడ్‌బార్‌లో అదనపు సత్వరమార్గాలను ప్రారంభించడానికి ఆల్ట్ కీని నొక్కండి DocType: Workflow State,folder-open,ఫోల్డర్ ఓపెన్ DocType: Customize Form,Is Table,టేబుల్ apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,జోడించిన ఫైల్ను తెరవడం సాధ్యం కాలేదు. దీన్ని CSV వలె ఎగుమతి చేసారా? DocType: DocField,No Copy,కాపీ లేదు DocType: Custom Field,Default Value,డిఫాల్ట్ విలువ apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,ఇన్కమింగ్ మెయిల్ లకు అనుబంధం తప్పనిసరి +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,పరిచయాలను సమకాలీకరించండి DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,డేటా మైగ్రేషన్ మ్యాపింగ్ వివరాలు apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,అనుసరించవద్దు apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",""రా ముద్రణ" ద్వారా PDF ముద్రణ ఇంకా మద్దతు లేదు. దయచేసి ప్రింటర్ సెట్టింగ్ల్లో ప్రింటర్ మ్యాపింగ్ను తీసివేసి, మళ్లీ ప్రయత్నించండి." @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} మరియు {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,ఫిల్టర్లు సేవ్ చేయడంలో లోపం ఉంది apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,మీ పాస్వర్డ్ ని నమోదుచేయండి apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,హోమ్ మరియు అటాచ్మెంట్ ఫోల్డర్లను తొలగించలేరు +DocType: Email Account,Enable Automatic Linking in Documents,పత్రాలలో ఆటోమేటిక్ లింకింగ్‌ను ప్రారంభించండి DocType: Contact Us Settings,Settings for Contact Us Page,మమ్మల్ని సంప్రదించండి పేజీ కోసం సెట్టింగులు DocType: Social Login Key,Social Login Provider,సామాజిక లాగిన్ ప్రొవైడర్ +DocType: Email Account,"For more information, click here.","మరింత సమాచారం కోసం, ఇక్కడ క్లిక్ చేయండి ." DocType: Transaction Log,Previous Hash,మునుపటి హాష్ DocType: Notification,Value Changed,విలువ మార్చబడింది DocType: Report,Report Type,నివేదిక రకం @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,శక్తి పాయింట apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,దయచేసి సామాజిక లాగిన్ ప్రారంభించబడటానికి ముందు క్లయింట్ ఐడిని నమోదు చేయండి DocType: Communication,Has Attachment,అనుబంధం ఉంది DocType: User,Email Signature,ఇమెయిల్ సంతకం -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} సంవత్సరం (లు) క్రితం ,Addresses And Contacts,చిరునామాలు మరియు పరిచయాలు apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,ఈ కన్బాన్ బోర్డు ప్రైవేట్గా ఉంటుంది DocType: Data Migration Run,Current Mapping,ప్రస్తుత మ్యాపింగ్ @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","మీరు సమకాలీకరణ ఎంపికను ALL వలె ఎంచుకుంటున్నారు, ఇది సర్వర్ నుండి చదవబడిన అన్ని చదవబడుతుంది మరియు చదవని సందేశాన్ని మళ్లీ resync చేస్తుంది. ఇది కూడా కమ్యూనికేషన్ (ఇమెయిల్స్) యొక్క నకిలీకి కారణం కావచ్చు." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},చివరిగా సమకాలీకరించబడింది {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,శీర్షిక కంటెంట్ను మార్చలేరు +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,సమర్పణ తర్వాత {0} మార్చడానికి అనుమతి లేదు apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","అనువర్తనం క్రొత్త సంస్కరణకు నవీకరించబడింది, దయచేసి ఈ పేజీని రిఫ్రెష్ చేయండి" DocType: User,User Image,వాడుకరి చిత్రం @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},{0} apps/frappe/frappe/public/js/frappe/chat.js,Discard,విస్మరించు DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,ఉత్తమ ఫలితాల కోసం పారదర్శక నేపథ్యంతో సుమారు వెడల్పు 150px యొక్క చిత్రాన్ని ఎంచుకోండి. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,relapsed +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} విలువలు ఎంచుకోబడ్డాయి DocType: Blog Post,Email Sent,ఇమెయిల్ పంపబడింది DocType: Communication,Read by Recipient On,గ్రహీత ద్వారా చదవండి DocType: User,Allow user to login only after this hour (0-24),వినియోగదారు ఈ గంట తర్వాత మాత్రమే లాగిన్ అవ్వడానికి అనుమతించు (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,మాడ్యూల్ ఎగుమతి DocType: DocType,Fields,ఫీల్డ్స్ -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,ఈ పత్రాన్ని ముద్రించడానికి మీకు అనుమతి లేదు +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,ఈ పత్రాన్ని ముద్రించడానికి మీకు అనుమతి లేదు apps/frappe/frappe/public/js/frappe/model/model.js,Parent,మాతృ apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","మీ సెషన్ గడువు ముగిసింది, దయచేసి మళ్ళీ కొనసాగడానికి లాగిన్ చేయండి." DocType: Assignment Rule,Priority,ప్రాధాన్యత @@ -368,6 +373,7 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,OTP సీక్ DocType: DocType,UPPER CASE,UPPER CASE apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,దయచేసి ఇమెయిల్ చిరునామాను సెట్ చేయండి DocType: Communication,Marked As Spam,స్పామ్గా గుర్తించబడింది +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Google పరిచయాలు సమకాలీకరించాల్సిన ఇమెయిల్ చిరునామా. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,చందాదార్లు దిగుమతి apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,ఫిల్టర్ను సేవ్ చేయండి DocType: Address,Preferred Shipping Address,ఇష్టపడే షిప్పింగ్ చిరునామా @@ -388,6 +394,7 @@ DocType: Web Page,Insert Code,కోడ్ను చొప్పించండ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,లేదు DocType: Auto Repeat,Start Date,ప్రారంబపు తేది apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,చార్ట్ను సెట్ చేయండి +DocType: Website Theme,Theme JSON,థీమ్ JSON apps/frappe/frappe/www/list.py,My Account,నా ఖాతా DocType: DocType,Is Published Field,ప్రచురించబడిన ఫీల్డ్ DocType: DocField,Set non-standard precision for a Float or Currency field,ఒక ఫ్లోట్ లేదా కరెన్సీ ఫీల్డ్ కోసం ప్రామాణికం కాని ఖచ్చితత్వమును అమర్చండి @@ -398,7 +405,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Reference: {{ reference_doctype }} {{ reference_name }} జోడించండి Reference: {{ reference_doctype }} {{ reference_name }} డాక్యుమెంట్ రిఫరెన్స్ పంపేందుకు Reference: {{ reference_doctype }} {{ reference_name }} DocType: LDAP Settings,LDAP First Name Field,LDAP ఫస్ట్ నేమ్ ఫీల్డ్ apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,డిఫాల్ట్ పంపుతోంది మరియు ఇన్బాక్స్ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,సెటప్> ఫారం అనుకూలీకరించండి apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.","నవీకరించడానికి, మీరు ఎంచుకున్న నిలువు వరుసలను మాత్రమే అప్డేట్ చెయ్యవచ్చు." apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1','చెక్' రకానికి చెందిన ఫీల్డ్ కోసం '0' లేదా '1' apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,ఈ పత్రాన్ని భాగస్వామ్యం చెయ్యండి @@ -442,16 +448,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,డొమైన్లు HTML DocType: Blog Settings,Blog Settings,బ్లాగ్ సెట్టింగులు apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DocType యొక్క పేరు ఒక లేఖతో ప్రారంభం కావాలి, ఇది అక్షరాలు, సంఖ్యలు, ఖాళీలు మరియు అండర్ స్కోర్లను మాత్రమే కలిగి ఉంటుంది" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,సెటప్> వినియోగదారు అనుమతులు DocType: Communication,Integrations can use this field to set email delivery status,ఇమెయిల్ డెలివరీ స్థితిని సెట్ చేయడానికి ఈ ఫీల్డ్ను ఏకీకరణలు ఉపయోగించవచ్చు apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,గీత చెల్లింపు గేట్వే సెట్టింగులు DocType: Print Settings,Fonts,ఫాంట్లు DocType: Notification,Channel,ఛానల్ DocType: Communication,Opened,తెరిచింది DocType: Workflow Transition,Conditions,పరిస్థితులు +apps/frappe/frappe/config/website.py,A user who posts blogs.,బ్లాగులను పోస్ట్ చేసే వినియోగదారు. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,మీకు ఖాతా ఉందా? చేరడం apps/frappe/frappe/utils/file_manager.py,Added {0},{0} DocType: Newsletter,Create and Send Newsletters,సృష్టించండి మరియు వార్తాలేఖలు పంపండి DocType: Website Settings,Footer Items,ఫుటరు అంశాలు +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,దయచేసి సెటప్> ఇమెయిల్> ఇమెయిల్ ఖాతా నుండి డిఫాల్ట్ ఇమెయిల్ ఖాతాను సెటప్ చేయండి DocType: Website Slideshow Item,Website Slideshow Item,వెబ్సైట్ స్లైడ్ అంశం apps/frappe/frappe/config/integrations.py,Register OAuth Client App,OAuth క్లయింట్ అనువర్తనం నమోదు చేయండి DocType: Error Snapshot,Frames,ఫ్రేమ్స్ @@ -492,7 +501,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","స్థాయి 0 పత్రం స్థాయి అనుమతుల కోసం, ఫీల్డ్ స్థాయి అనుమతుల కోసం అధిక స్థాయి." DocType: Address,City/Town,నగరం / పట్టణం DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","ఇది మీ ప్రస్తుత థీమ్ను రీసెట్ చేస్తుంది, మీరు ఖచ్చితంగా కొనసాగించాలనుకుంటున్నారా?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},{0} లో తప్పనిసరి తప్పనిసరి ఫీల్డ్లు apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},ఇమెయిల్ ఖాతాకు కనెక్ట్ చేస్తున్నప్పుడు లోపం {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,పునరావృతమయ్యేటప్పుడు లోపం సంభవించింది @@ -528,7 +536,7 @@ DocType: Event,Event Category,ఈవెంట్ వర్గం apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,ఆధారంగా నిలువు వరుసలు apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,శీర్షికను సవరించండి DocType: Communication,Received,అందుకుంది -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,ఈ పేజీని యాక్సెస్ చేయడానికి మీకు అనుమతి లేదు. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,ఈ పేజీని యాక్సెస్ చేయడానికి మీకు అనుమతి లేదు. DocType: User Social Login,User Social Login,వాడుకరి సామాజిక లాగిన్ apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,"ఇదే ఫోల్డర్ లో ఒక పైథాన్ ఫైలును వ్రాసి, కాలమ్ మరియు ఫలితాన్ని తిరిగి పంపుతుంది." DocType: Contact,Purchase Manager,కొనుగోలు నిర్వహణాధికారి @@ -580,7 +588,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,చ apps/frappe/frappe/utils/data.py,Operator must be one of {0},ఆపరేటర్ తప్పనిసరిగా {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,యజమాని DocType: Data Migration Run,Trigger Name,ట్రిగ్గర్ పేరు -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,మీ బ్లాగుకు శీర్షికలు మరియు పరిచయాలను వ్రాయండి. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,ఫీల్డ్ను తీసివేయండి apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,అన్నీ కుదించు apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,నేపథ్య రంగు @@ -629,6 +636,7 @@ DocType: Dashboard Chart,Bar,బార్ DocType: SMS Settings,Enter url parameter for message,సందేశానికి url పరామితిని నమోదు చేయండి apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,కొత్త కస్టమ్ ప్రింట్ ఫార్మాట్ apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} ఇప్పటికే ఉంది +DocType: Workflow Document State,Is Optional State,ఐచ్ఛిక రాష్ట్రం DocType: Address,Purchase User,కొనుగోలు యూజర్ DocType: Data Migration Run,Insert,చొప్పించు DocType: Web Form,Route to Success Link,సత్వర లింక్కి మార్గం @@ -636,13 +644,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,యూ DocType: File,Is Home Folder,హోం ఫోల్డర్ apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,రకం: DocType: Post,Is Pinned,పిన్ చేయబడింది -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},'{0}' {1} కు అనుమతి లేదు +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},'{0}' {1} కు అనుమతి లేదు DocType: Patch Log,Patch Log,ప్యాచ్ లాగ్ DocType: Print Format,Print Format Builder,ప్రింట్ ఫార్మాట్ బిల్డర్ 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 చిరునామా నుండి లాగిన్ చేయవచ్చు. ఇది వాడుకరి పేజిలో నిర్దిష్ట వినియోగదారు (లు) కు మాత్రమే అమర్చవచ్చు" apps/frappe/frappe/utils/data.py,only.,మాత్రమే. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,కండిషన్ '{0}' చెల్లనిది DocType: Auto Email Report,Day of Week,వీక్ ఆఫ్ ది డే +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Google సెట్టింగ్‌లలో Google API ని ప్రారంభించండి. DocType: DocField,Text Editor,టెక్స్ట్ ఎడిటర్ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,కట్ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,ఒక కమాండ్ శోధించండి లేదా టైప్ చేయండి @@ -650,6 +659,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,DB బ్యాకప్ సంఖ్య 1 కంటే తక్కువగా ఉండకూడదు DocType: Workflow State,ban-circle,నిషేధం సర్కిల్ DocType: Data Export,Excel,Excel +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","హెడర్, బ్రెడ్‌క్రంబ్స్ మరియు మెటా టాగ్లు" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,మద్దతు ఇమెయిల్ చిరునామా పేర్కొనబడలేదు DocType: Comment,Published,ప్రచురణ DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","గమనిక: ఉత్తమ ఫలితాల కోసం, చిత్రాలు ఒకే పరిమాణంలో ఉండాలి మరియు వెడల్పు ఎత్తు కంటే ఎక్కువ ఉండాలి." @@ -666,6 +676,7 @@ DocType: Auto Email Report,From Date Field,తేదీ ఫీల్డ్ న apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Add script for Child Table,చైల్డ్ టేబుల్ కోసం లిపిని జోడించండి apps/frappe/frappe/templates/includes/comments/comments.py,View Comment,వ్యాఖ్యను వీక్షించండి DocType: DocField,Ignore User Permissions,వాడుకరి అనుమతులను విస్మరించు +apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,{0} from {1} to {2},{0} నుండి {1} నుండి {2} వరకు apps/frappe/frappe/desk/doctype/event/event.js,Add Contacts,పరిచయాలను జోడించు DocType: Communication,Email Account,ఈమెయిల్ ఖాతా apps/frappe/frappe/utils/goal.py,This month,ఈ నెల @@ -739,6 +750,7 @@ DocType: System Settings,Scheduler Last Event,షెడ్యూలర్ లా apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,అన్ని డాక్యుమెంట్ షేర్ల రిపోర్ట్ DocType: Website Sidebar Item,Website Sidebar Item,వెబ్సైట్ సైడ్బార్ అంశం apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,చెయ్యవలసిన +DocType: Google Settings,Google Settings,Google సెట్టింగ్‌లు apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","మీ దేశం, సమయ మండలి మరియు కరెన్సీని ఎంచుకోండి" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","ఇక్కడ స్థిర URL పరామితులను నమోదు చేయండి (ఉదా. పంపినవారు = ERPNext, వినియోగదారు పేరు = ERPNext, పాస్వర్డ్ = 1234 మొదలైనవి)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,ఇమెయిల్ ఖాతా లేదు @@ -792,6 +804,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth బేరర్ టోకెన్ ,Setup Wizard,సెటప్ విజర్డ్ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,చార్ట్ను టోగుల్ చేయండి +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,సమకాలీకరించడాన్ని DocType: Data Migration Run,Current Mapping Action,ప్రస్తుత మ్యాపింగ్ చర్య DocType: Email Account,Initial Sync Count,ప్రారంభ సమకాలీకరణ కౌంట్ apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,మమ్మల్ని సంప్రదించండి పేజీ కోసం సెట్టింగులు. @@ -831,6 +844,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,ప్రింట్ ఫార్మాట్ టైప్ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,ఈ ప్రమాణాలకు అనుమతులు లేవు. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,అన్నింటినీ విస్తరించుట +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,డిఫాల్ట్ చిరునామా మూస కనుగొనబడలేదు. దయచేసి సెటప్> ప్రింటింగ్ మరియు బ్రాండింగ్> చిరునామా మూస నుండి క్రొత్తదాన్ని సృష్టించండి. DocType: Tag Doc Category,Tag Doc Category,ట్యాగ్ Doc వర్గం DocType: Data Import,Generated File,రూపొందించిన ఫైల్ apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,గమనికలు @@ -838,7 +852,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,కాలక్రమం ఫీల్డ్ తప్పనిసరిగా లింక్ లేదా డైనమిక్ లింక్ అయి ఉండాలి DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,ఈ అవుట్గోయింగ్ సర్వర్ నుండి నోటిఫికేషన్లు మరియు బల్క్ మెయిల్లు పంపబడతాయి. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,ఇది టాప్ 100 సాధారణ పాస్వర్డ్. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,శాశ్వతంగా {0} ను సమర్పించాలా? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,శాశ్వతంగా {0} ను సమర్పించాలా? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} ఉనికిలో లేదు, విలీనం చేయడానికి క్రొత్త లక్ష్యాన్ని ఎంచుకోండి" DocType: Energy Point Rule,Multiplier Field,గుణకం ఫీల్డ్ DocType: Workflow,Workflow State Field,వర్క్ఫ్లో స్టేట్ ఫీల్డ్ @@ -877,6 +891,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,New {0},కొత apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto Repeat in the doctype {0},Doctype {0} లో కస్టమ్ ఫీల్డ్ ఆటో పునరావృతం జోడించండి DocType: Auto Email Report,Zero means send records updated at anytime,జీరో అంటే ఎప్పుడైనా నవీకరించబడిన రికార్డులను పంపడం apps/frappe/frappe/model/document.py,Value cannot be changed for {0},{0} కోసం విలువ మార్చబడదు +apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API సెట్టింగ్‌లు. DocType: System Settings,Force User to Reset Password,పాస్వర్డ్ను రీసెట్ చేయడానికి వినియోగదారుని బలవంతం చేయండి apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,రిపోర్ట్ బిల్డర్ ద్వారా నివేదిక బిల్డర్ నివేదికలు నేరుగా నిర్వహించబడతాయి. చేయటానికి ఏమి లేదు. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,ఫిల్టర్ను సవరించండి @@ -930,7 +945,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,క DocType: S3 Backup Settings,eu-north-1,eu-ఉత్తర-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: అదే పాత్ర, స్థాయి మరియు {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,ఈ వెబ్ ఫారమ్ పత్రాన్ని నవీకరించడానికి మీకు అనుమతి లేదు -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,ఈ రికార్డ్ కోసం గరిష్ట జోడింపు పరిమితికి చేరుకుంది. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,ఈ రికార్డ్ కోసం గరిష్ట జోడింపు పరిమితికి చేరుకుంది. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,దయచేసి రిఫరెన్స్ కమ్యూనికేషన్ డాక్స్ చురుకుగా లింక్ చేయబడలేదని నిర్ధారించుకోండి. DocType: DocField,Allow in Quick Entry,త్వరిత ఎంట్రీలో అనుమతించు DocType: Error Snapshot,Locals,స్థానికులు @@ -960,7 +975,6 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Default theme apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be exported,ఎగుమతి చేయవలసిన డేటా లేదు DocType: Error Snapshot,Exception Type,మినహాయింపు రకం apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTP రహస్య నిర్వాహకుడు మాత్రమే రీసెట్ చేయగలరు. -DocType: Web Form Field,Page Break,పేజీ బ్రేక్ DocType: Website Script,Website Script,వెబ్సైట్ స్క్రిప్ట్ DocType: Integration Request,Subscription Notification,సబ్స్క్రిప్షన్ నోటిఫికేషన్ DocType: DocType,Quick Entry,త్వరిత ఎంట్రీ @@ -977,6 +991,7 @@ DocType: Notification,Set Property After Alert,హెచ్చరిక తర apps/frappe/frappe/__init__.py,Thank you,ధన్యవాదాలు apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,అంతర్గత సమన్వయానికి స్లాక్ వెబ్క్యుక్స్ apps/frappe/frappe/config/settings.py,Import Data,దిగుమతి డేటా +DocType: Translation,Contributed Translation Doctype Name,సహకారం అనువాద డాక్టైప్ పేరు DocType: Social Login Key,Office 365,ఆఫీస్ 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID DocType: Review Level,Review Level,సమీక్ష స్థాయి @@ -995,7 +1010,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,విజయవంతంగా పూర్తయింది apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} జాబితా apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,అభినందిస్తున్నాము -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),కొత్త {0} (Ctrl + B) DocType: Contact,Is Primary Contact,ప్రాథమిక సంప్రదింపు DocType: Print Format,Raw Commands,రా ఆదేశాలు apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,ప్రింట్ ఆకృతుల కోసం స్టైల్షీట్స్ @@ -1036,6 +1050,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,నేపథ్య apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},{0} లో {0} DocType: Email Account,Use SSL,SSL ఉపయోగించండి DocType: DocField,In Standard Filter,ప్రామాణిక ఫిల్టర్లో +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,సమకాలీకరించడానికి Google పరిచయాలు లేవు. DocType: Data Migration Run,Total Pages,మొత్తం పేజీలు apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,"{0}: ఫీల్డ్ '{1}' ప్రత్యేకమైనది కాదు, అది ప్రత్యేకమైన విలువలు కలిగి ఉండదు" DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","ప్రారంభించబడితే, వినియోగదారులు లాగిన్ చేసే ప్రతిసారి తెలియజేయబడతారు. ప్రారంభించబడకపోతే, వినియోగదారులు మాత్రమే ఒకసారి తెలియజేయబడతారు." @@ -1056,7 +1071,7 @@ DocType: Assignment Rule,Automation,ఆటోమేషన్ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,ఫైళ్లను అన్జిప్ చేస్తోంది ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}','{0}' కోసం శోధించండి apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,ఏదో తప్పు జరిగింది -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,అటాచ్ చేయడానికి ముందు దయచేసి సేవ్ చేయండి. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,అటాచ్ చేయడానికి ముందు దయచేసి సేవ్ చేయండి. DocType: Version,Table HTML,టేబుల్ HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,హబ్ DocType: Page,Standard,ప్రామాణిక @@ -1134,12 +1149,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,ఫలి apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} రికార్డులు తొలగించబడ్డాయి apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,డ్రాప్బాక్స్ ప్రాప్యత టోకెన్ను ఉత్పత్తి చేస్తున్నప్పుడు ఏదో తప్పు జరిగింది. దయచేసి మరిన్ని వివరాల కోసం లోపం లాగ్ను తనిఖీ చేయండి. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,యొక్క వారసులు -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,డిఫాల్ట్ చిరునామా టెంప్లేట్ కనుగొనబడలేదు. దయచేసి సెటప్> ముద్రణ మరియు బ్రాండింగ్> చిరునామా మూస నుండి క్రొత్తదాన్ని సృష్టించండి. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google పరిచయాలు కాన్ఫిగర్ చేయబడ్డాయి. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,వివరాలను దాచండి apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,ఫాంట్ స్టైల్స్ apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,మీ చందా {0} లో ముగుస్తుంది. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},ఇమెయిల్ ఖాతా నుండి ఇమెయిల్లను అందుకున్నప్పుడు ప్రామాణీకరణ విఫలమైంది {0}. సర్వర్ నుండి సందేశం: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),గత వారం యొక్క పనితీరు ఆధారంగా గణాంకాలు ({0} నుండి {1} వరకు) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,ఇన్‌కమింగ్ ప్రారంభించబడితే మాత్రమే ఆటోమేటిక్ లింకింగ్ సక్రియం అవుతుంది. DocType: Website Settings,Title Prefix,టైటిల్ ప్రిఫిక్స్ apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,మీరు ఉపయోగించే ప్రామాణీకరణ అనువర్తనాలు: DocType: Bulk Update,Max 500 records at a time,ఒక సమయంలో 500 మ్యాక్స్ రికార్డులు @@ -1172,7 +1188,7 @@ DocType: Auto Email Report,Report Filters,ఫిల్టర్లను ని apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,నిలువు వరుసలను ఎంచుకోండి DocType: Event,Participants,పాల్గొనేవారు DocType: Auto Repeat,Amended From,నుండి సవరించబడింది -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,మీ సమాచారం సమర్పించబడింది +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,మీ సమాచారం సమర్పించబడింది DocType: Help Category,Help Category,వర్గం సహాయం apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 నెల apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,కొత్త ఫార్మాట్ను సవరించడానికి లేదా ప్రారంభించేందుకు ఇప్పటికే ఉన్న ఫార్మాట్ని ఎంచుకోండి. @@ -1219,7 +1235,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,ట్రాక్ ఫీల్డ్ DocType: User,Generate Keys,కీలను సృష్టించండి DocType: Comment,Unshared,అన్షేర్డ్ -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,సేవ్ +DocType: Translation,Saved,సేవ్ DocType: OAuth Client,OAuth Client,OAuth క్లయింట్ DocType: System Settings,Disable Standard Email Footer,ప్రామాణిక ఇమెయిల్ ఫుటర్ని ఆపివేయి apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,ప్రింట్ ఫార్మాట్ {0} నిలిపివేయబడింది @@ -1250,6 +1266,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,చివర DocType: Data Import,Action,యాక్షన్ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,క్లయింట్ కీ అవసరం DocType: Chat Profile,Notifications,ప్రకటనలు +DocType: Translation,Contributed,దోహదపడింది DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy DocType: Report,Custom Report,కస్టమ్ రిపోర్ట్ DocType: Workflow State,info-sign,సమాచార సైన్ @@ -1265,6 +1282,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,"On {0}, {1} wrote:", apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are currently viewing this document,{0} ఈ పత్రాన్ని ప్రస్తుతం చూస్తున్నారు DocType: Contact,Contact,సంప్రదించండి DocType: LDAP Settings,LDAP Username Field,LDAP వినియోగదారు పేరు ఫీల్డ్ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,సెటప్> ఫారమ్‌ను అనుకూలీకరించండి DocType: User,Social Logins,సామాజిక లాగిన్లు DocType: Workflow State,Trash,ట్రాష్ DocType: Stripe Settings,Secret Key,సీక్రెట్ కీ @@ -1322,6 +1340,7 @@ DocType: DocType,Title Field,శీర్షిక ఫీల్డ్ apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,అవుట్గోయింగ్ ఇమెయిల్ సర్వర్కు కనెక్ట్ చేయడం సాధ్యపడలేదు DocType: File,File URL,ఫైల్ URL DocType: Help Article,Likes,ఇష్టాలు +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google పరిచయాల ఇంటిగ్రేషన్ నిలిపివేయబడింది. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,బ్యాకప్లను యాక్సెస్ చేయగలగడానికి మీరు సిస్టమ్ లాగిన్ మేనేజర్ పాత్రలో ఉండాలి. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,మొదటి స్థాయి DocType: Blogger,Short Name,చిన్న పేరు @@ -1339,13 +1358,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,జిప్ని దిగుమతి చేయండి DocType: Contact,Gender,జెండర్ DocType: Workflow State,thumbs-down,బాగాలేదు -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},క్యూ {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},డాక్యుమెంట్ టైప్పై నోటిఫికేషన్ను సెట్ చేయలేరు {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,ఈ వినియోగదారుకు సిస్టమ్ మేనేజరు కలుపుతోంది ఎందుకంటే ఒక సిస్టమ్ మేనేజర్ వద్ద కనీసం ఉండాలి apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,స్వాగతం ఇమెయిల్ పంపబడింది DocType: Transaction Log,Chaining Hash,హ్యాష్ చైన్ DocType: Contact,Maintenance Manager,నిర్వహణ అధికారి +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","పోలిక కోసం,> 5, <10 లేదా = 324 ఉపయోగించండి. శ్రేణుల కోసం, 5:10 (5 & 10 మధ్య విలువలకు) ఉపయోగించండి." apps/frappe/frappe/utils/bot.py,show,షో apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URL ను భాగస్వామ్యం చేయండి apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,మద్దతు లేని ఫైల్ ఫార్మాట్ @@ -1367,7 +1386,7 @@ DocType: Communication,Notification,నోటిఫికేషన్ DocType: Data Import,Show only errors,లోపాలు మాత్రమే చూపించు DocType: Energy Point Log,Review,సమీక్ష apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,వరుసలు తీసివేయబడ్డాయి -DocType: GSuite Settings,Google Credentials,Google ఆధారాలు +DocType: Google Settings,Google Credentials,Google ఆధారాలు apps/frappe/frappe/www/login.html,Or login with,లేదా లాగిన్ apps/frappe/frappe/model/document.py,Record does not exist,రికార్డ్ లేదు apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,క్రొత్త నివేదిక పేరు @@ -1392,6 +1411,7 @@ DocType: Desktop Icon,List,జాబితా DocType: Workflow State,th-large,వ పెద్ద apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: సబ్మిట్ చేయదగినది కాకపోతే సమర్పించు సెట్ చేయలేరు apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,ఏ రికార్డుకు లింక్ చేయలేదు +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZ ట్రే అనువర్తనానికి కనెక్ట్ చేయడంలో లోపం ...

రా ప్రింట్ ఫీచర్‌ను ఉపయోగించడానికి మీరు QZ ట్రే అప్లికేషన్‌ను ఇన్‌స్టాల్ చేసి అమలు చేయాలి.

QZ ట్రేని డౌన్‌లోడ్ చేసి, ఇన్‌స్టాల్ చేయడానికి ఇక్కడ క్లిక్ చేయండి .
రా ప్రింటింగ్ గురించి మరింత తెలుసుకోవడానికి ఇక్కడ క్లిక్ చేయండి ." DocType: Chat Message,Content,కంటెంట్ DocType: Workflow Transition,Allow Self Approval,నేనే ఆమోదం అనుమతించు apps/frappe/frappe/www/qrcode.py,Page has expired!,పేజీ గడువు ముగిసింది! @@ -1408,6 +1428,7 @@ DocType: Workflow State,hand-right,చేతితో కుడి DocType: Website Settings,Banner is above the Top Menu Bar.,బ్యానర్ టాప్ మెనూ బార్ పైన ఉంది. apps/frappe/frappe/www/update-password.html,Invalid Password,చెల్లని పాస్వర్డ్ apps/frappe/frappe/utils/data.py,1 month ago,1 నెల క్రితం +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Google పరిచయాల ప్రాప్యతను అనుమతించండి DocType: OAuth Client,App Client ID,అనువర్తన క్లయింట్ ID DocType: DocField,Currency,కరెన్సీ DocType: Website Settings,Banner,బ్యానర్ @@ -1419,7 +1440,7 @@ apps/frappe/frappe/utils/goal.py,Goal,గోల్ DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","లెవెల్ 0 లో ఒక పాత్రకు యాక్సెస్ లేకపోతే, అప్పుడు ఉన్నత స్థాయిలు అర్థరహితమైనవి." DocType: ToDo,Reference Type,సూచన రకం -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DocType ను అనుమతిస్తుంది, DocType. జాగ్రత్త!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","DocType ను అనుమతిస్తుంది, DocType. జాగ్రత్త!" DocType: Domain Settings,Domain Settings,డొమైన్ సెట్టింగ్లు DocType: Auto Email Report,Dynamic Report Filters,డైనమిక్ రిపోర్ట్ వడపోతలు DocType: Energy Point Log,Appreciation,ప్రశంసతో @@ -1459,6 +1480,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,మమ్మల్ని పడమటి 2 DocType: DocType,Is Single,సింగిల్ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,కొత్త ఫార్మాట్ సృష్టించండి +DocType: Google Contacts,Authorize Google Contacts Access,Google పరిచయాల ప్రాప్యతను ప్రామాణీకరించండి DocType: S3 Backup Settings,Endpoint URL,ముగింపు స్థానం URL DocType: Social Login Key,Google,Google DocType: Contact,Department,శాఖ @@ -1473,7 +1495,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,కేటాయ DocType: List Filter,List Filter,జాబితా ఫిల్టర్ DocType: Dashboard Chart Link,Chart,చార్ట్ apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,తీసివేయలేరు -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,నిర్ధారించడానికి ఈ పత్రాన్ని సమర్పించండి +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,నిర్ధారించడానికి ఈ పత్రాన్ని సమర్పించండి apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} ఇప్పటికే ఉంది. మరొక పేరుని ఎంచుకోండి apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,ఈ రూపంలో మీరు సేవ్ చేయని మార్పులను కలిగి ఉన్నారు. మీరు కొనసాగడానికి ముందు దయచేసి సేవ్ చేయండి. apps/frappe/frappe/model/document.py,Action Failed,చర్య విఫలమైంది @@ -1555,6 +1577,7 @@ DocType: DocField,Display,ప్రదర్శన apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,అందరికీ ప్రత్యుత్తరం DocType: Calendar View,Subject Field,విషయం ఫీల్డ్ apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},సెషన్ గడువు తప్పనిసరిగా ఫార్మాట్లో {0} ఉండాలి +apps/frappe/frappe/model/workflow.py,Applying: {0},దరఖాస్తు: {0} DocType: Workflow State,zoom-in,పెద్దదిగా చూపు apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,సర్వర్ తో అనుసంధాన ప్రయత్నం విఫలమైనది apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},తేదీ {0} తప్పనిసరిగా ఆకృతిలో ఉండాలి: {1} @@ -1566,8 +1589,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,ఐకాన్ బటన్పై కనిపిస్తుంది DocType: Role Permission for Page and Report,Set Role For,పాత్రను సెట్ చేయండి +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,స్వయంచాలక లింకింగ్ ఒక ఇమెయిల్ ఖాతా కోసం మాత్రమే సక్రియం చేయబడుతుంది. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,ఇమెయిల్ ఖాతాలు కేటాయించబడలేదు +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ఇమెయిల్ ఖాతా సెటప్ కాదు. దయచేసి సెటప్> ఇమెయిల్> ఇమెయిల్ ఖాతా నుండి క్రొత్త ఇమెయిల్ ఖాతాను సృష్టించండి apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,అసైన్మెంట్ +DocType: Google Contacts,Last Sync On,చివరి సమకాలీకరణ ఆన్ చేయబడింది apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},{0} ఆటోమేటిక్ రూల్ {1} ద్వారా పొందింది apps/frappe/frappe/config/website.py,Portal,పోర్టల్ apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,మీ ఇమెయిల్ కోసం ధన్యవాదాలు @@ -1588,7 +1614,6 @@ DocType: GSuite Settings,GSuite Settings,GSuite సెట్టింగుల DocType: Integration Request,Remote,రిమోట్ DocType: File,Thumbnail URL,కూర్పు URL apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,రిపోర్ట్ డౌన్ లోడ్ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,సెటప్> వాడుకరి apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},{0} కోసం ఎగుమతి చెయ్యబడిన అనుకూలీకరణలు:
{1} DocType: GCalendar Account,Calendar Name,క్యాలెండర్ పేరు apps/frappe/frappe/templates/emails/new_user.html,Your login id is,మీ లాగిన్ ఐడి @@ -1638,6 +1663,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},{0} apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,చిత్రం ఫీల్డ్ తప్పనిసరిగా చెల్లుబాటు అయ్యే ఫీల్డ్ పేరు అయి ఉండాలి apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,మీరు ఈ పేజీని ఆక్సెస్ చెయ్యడానికి లాగిన్ అయి ఉండాలి DocType: Assignment Rule,Example: {{ subject }},ఉదాహరణ: {{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,ఫీల్డ్ పేరు {0} పరిమితం చేయబడింది apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},మీరు ఫీల్డ్ కోసం {0} కోసం 'మాత్రమే చదవండి' DocType: Social Login Key,Enable Social Login,సంఘ లాగిన్ను ప్రారంభించండి DocType: Workflow,Rules defining transition of state in the workflow.,వర్క్ఫ్లో రాష్ట్ర పరివర్తనను నిర్వచించే నియమాలు. @@ -1658,10 +1684,10 @@ DocType: Website Settings,Route Redirects,దారి మళ్ళిస్త apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ఇమెయిల్ ఇన్బాక్స్ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},{0} {1} గా పునరుద్ధరించబడింది DocType: Assignment Rule,Automatically Assign Documents to Users,వినియోగదారులకు పత్రాలను స్వయంచాలకంగా కేటాయించండి +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,అద్భుతం బార్‌ను తెరవండి apps/frappe/frappe/config/settings.py,Email Templates for common queries.,సాధారణ ప్రశ్నలకు ఇమెయిల్ టెంప్లేట్లు. DocType: Letter Head,Letter Head Based On,లెటర్ హెడ్ ఆధారంగా apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,దయచేసి ఈ విండోను మూసివేయండి -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,చెల్లింపు పూర్తయింది DocType: Contact,Designation,హోదా DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,మెటా టాగ్లు @@ -1700,6 +1726,7 @@ DocType: System Settings,Choose authentication method to be used by all users, DocType: Error Snapshot,Parent Error Snapshot,పేరెంట్ ఎర్రర్ స్నాప్షాట్ DocType: GCalendar Account,GCalendar Account,GCalendar ఖాతా DocType: Language,Language Name,భాష పేరు +DocType: Workflow Document State,Workflow Action is not created for optional states,ఐచ్ఛిక రాష్ట్రాల కోసం వర్క్‌ఫ్లో చర్య సృష్టించబడదు DocType: Customize Form,Customize Form,ఫారం అనుకూలీకరించండి DocType: DocType,Image Field,చిత్రం ఫీల్డ్ apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),{0} ({1}) జోడించబడింది @@ -1740,6 +1767,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,వాడుకదారుడు యజమాని అయితే ఈ నియమాన్ని వర్తించండి DocType: About Us Settings,Org History Heading,ఆర్గ్ చరిత్ర శీర్షిక apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,సర్వర్ లోపం +DocType: Contact,Google Contacts Description,Google పరిచయాల వివరణ apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,ప్రామాణిక పాత్రలు పేరు మార్చలేవు DocType: Review Level,Review Points,సమీక్ష పాయింట్లు apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,లేదు పారామితి కనబన్ బోర్డ్ పేరు @@ -1757,7 +1785,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,డెవలపర్ మోడ్లో లేదు! Site_config.json లో అమర్చండి లేదా 'Custom' DocType ను రూపొందించండి. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,{0} పాయింట్లు సాధించింది DocType: Web Form,Success Message,సక్సెస్ మెసేజ్ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","పోలిక కోసం, ఉపయోగించు> 5, <10 లేదా = 324. శ్రేణుల కోసం, 5:10 (5 & 10 మధ్య విలువల కోసం) ఉపయోగించండి." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","జాబితా పేజీల కోసం, సాదా వచనంలో, రెండు పంక్తులు మాత్రమే. (గరిష్టంగా 140 అక్షరాలు)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,అనుమతులను చూపించు DocType: DocType,Restrict To Domain,డొమైన్కు పరిమితం చేయండి @@ -1779,6 +1806,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,కా apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,పరిమాణం సెట్ చేయండి DocType: Auto Repeat,End Date,ఆఖరి తేది DocType: Workflow Transition,Next State,తదుపరి రాష్ట్రం +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Google పరిచయాలు సమకాలీకరించబడ్డాయి. DocType: System Settings,Is First Startup,మొదటి స్టార్ట్అప్ apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},{0} కు నవీకరించబడింది apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,తరలించడానికి @@ -1828,6 +1856,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} క్యాలెండర్ apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,డేటా దిగుమతి మూస DocType: Workflow State,hand-left,చేతితో వదిలి +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,బహుళ జాబితా అంశాలను ఎంచుకోండి apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,బ్యాకప్ పరిమాణం: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},{0} తో లింక్ చేయబడింది DocType: Braintree Settings,Private Key,ప్రైవేట్ కీ @@ -1870,13 +1899,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,వడ్డీ DocType: Bulk Update,Limit,పరిమితి DocType: Print Settings,Print taxes with zero amount,సున్నా మొత్తాన్ని పన్నులను ముద్రించండి -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ఇమెయిల్ ఖాతా సెటప్ కాదు. దయచేసి సెటప్> ఇమెయిల్> ఇమెయిల్ ఖాతా నుండి క్రొత్త ఇమెయిల్ ఖాతాను సృష్టించండి DocType: Workflow State,Book,పుస్తకం DocType: S3 Backup Settings,Access Key ID,ప్రాప్యత కీ ID DocType: Chat Message,URLs,URL లు apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,పేర్లు మరియు ఇంటిపేర్లు తమను తాము ఊహించడం సులభం. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},నివేదించు {0} DocType: About Us Settings,Team Members Heading,జట్టు సభ్యులు శీర్షిక +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,జాబితా అంశాన్ని ఎంచుకోండి apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},{0} {2} ద్వారా {1} DocType: Address Template,Address Template,చిరునామా మూస DocType: Workflow State,step-backward,దశల వెనుకబడిన @@ -1900,6 +1929,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,కస్టమ్ అనుమతులు ఎగుమతి apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,ఏమీలేదు: వర్క్ఫ్లో ముగింపు DocType: Version,Version,వెర్షన్ +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,జాబితా అంశం తెరవండి apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 నెలల DocType: Chat Message,Group,గ్రూప్ apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},ఫైల్ url తో కొంత సమస్య ఉంది: {0} @@ -1954,6 +1984,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 సంవత apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} {1} లో మీ పాయింట్లు తిరిగి DocType: Workflow State,arrow-down,మెట్ట డౌన్ DocType: Data Import,Ignore encoding errors,ఎన్కోడింగ్ లోపాలను విస్మరించండి +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,ప్రకృతి దృశ్యం DocType: Letter Head,Letter Head Name,లెటర్ హెడ్ నేమ్ DocType: Web Form,Client Script,క్లయింట్ స్క్రిప్ట్ DocType: Assignment Rule,Higher priority rule will be applied first,అధిక ప్రాధాన్యత నియమం మొదట ఉపయోగించబడుతుంది @@ -1998,6 +2029,7 @@ DocType: Kanban Board Column,Green,గ్రీన్ apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,కొత్త రికార్డులకు తప్పనిసరిగా తప్పనిసరి ఫీల్డ్స్ అవసరం. మీరు కావాలనుకుంటే కాని తప్పనిసరి నిలువు వరుసలను తొలగించవచ్చు. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} ప్రారంభం కావాలి మరియు ఒక అక్షరంతో ముగుస్తుంది మరియు అక్షరాలు, హైఫన్ లేదా అండర్ స్కోర్ మాత్రమే కలిగి ఉండాలి." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,ప్రాథమిక చర్యను ప్రేరేపించండి apps/frappe/frappe/core/doctype/user/user.js,Create User Email,వాడుకరి ఇమెయిల్ను సృష్టించండి apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,క్రమబద్ధ ఫీల్డ్ {0} చెల్లుబాటు అయ్యే ఫీల్డ్ పేరు అయి ఉండాలి DocType: Auto Email Report,Filter Meta,ఫిల్టర్ మెటా @@ -2009,6 +2041,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,This featur DocType: S3 Backup Settings,S3 Backup Settings,S3 బ్యాకప్ సెట్టింగులు apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Not Seen,చూడలేదు apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Not Like,ఇష్టం లేదు +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist",కస్టమ్ ఫీల్డ్ '{1}' లో పేర్కొన్న '{0}' ఫీల్డ్ తరువాత '{2}' లేబుల్‌తో చొప్పించండి. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Refresh Form,రిఫ్రెష్ ఫారమ్ DocType: DocType,MyISAM,MyISAM apps/frappe/frappe/utils/password_strength.py,Try to use a longer keyboard pattern with more turns,ఎక్కువ మలుపులతో సుదీర్ఘ కీబోర్డు నమూనాను ఉపయోగించడానికి ప్రయత్నించండి @@ -2026,6 +2059,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,కాలక్రమం ఫీల్డ్ apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,లోడ్... DocType: Auto Email Report,Half Yearly,హాఫ్ వార్షికంగా +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,నా జీవన వివరణ apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,చివరి మార్పు చేసిన తేదీ DocType: Contact,First Name,మొదటి పేరు DocType: Post,Comments,వ్యాఖ్యలు @@ -2048,6 +2082,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,కంటెంట్ హాష్ apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},{0} ద్వారా పోస్ట్లు apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} కేటాయించిన {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,క్రొత్త Google పరిచయాలు సమకాలీకరించబడలేదు. DocType: Workflow State,globe,భూగోళం apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},{0} యొక్క సగటు apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,లోపం లాగ్స్ క్లియర్ @@ -2074,6 +2109,8 @@ DocType: Workflow State,Inverse,విలోమ DocType: Activity Log,Closed,ముగించబడినది DocType: Report,Query,ప్రశ్న DocType: Notification,Days After,రోజుల తరువాత +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,పేజీ సత్వరమార్గాలు +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,చిత్తరువు apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,అభ్యర్థన సమయం ముగిసింది DocType: System Settings,Email Footer Address,ఇమెయిల్ ఫుటర్ చిరునామా apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,శక్తి పాయింట్ నవీకరణ @@ -2101,6 +2138,7 @@ For Select, enter list of Options, each on a new line.","లింక్ల క apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 నిమిషం క్రితం apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,యాక్టివ్ సెషన్లు లేవు apps/frappe/frappe/model/base_document.py,Row,రో +DocType: Contact,Middle Name,మధ్య పేరు apps/frappe/frappe/public/js/frappe/request.js,Please try again,దయచేసి మళ్లీ ప్రయత్నించండి DocType: Dashboard Chart,Chart Options,చార్ట్ ఐచ్ఛికాలు DocType: Data Migration Run,Push Failed,పుష్ విఫలమైంది @@ -2129,6 +2167,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,పరిమాణాన్ని చిన్న DocType: Comment,Relinked,మళ్లీ లింక్ DocType: Role Permission for Page and Report,Roles HTML,పాత్రలు HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,వెళ్ళండి apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,వర్క్ఫ్లో సేవ్ చేసిన తర్వాత ప్రారంభమవుతుంది. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","మీ డేటా HTML లో ఉంటే, దయచేసి టాగ్లు తో ఖచ్చితమైన HTML కోడ్ను అతికించండి." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,తేదీలు తరచుగా ఊహించడం సులభం. @@ -2157,7 +2196,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,డెస్క్టాప్ ఐకాన్ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,ఈ పత్రాన్ని రద్దు చేసారు apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,తేదీ పరిధి -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,సెటప్> వాడుకరి అనుమతులు apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} ప్రశంసలు {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,విలువలు మార్చబడ్డాయి apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,నోటిఫికేషన్లో లోపం @@ -2222,6 +2260,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,బల్క్ తొలగించు DocType: DocShare,Document Name,పత్రం పేరు apps/frappe/frappe/config/customization.py,Add your own translations,మీ స్వంత అనువాదాలను జోడించండి +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,జాబితాను క్రిందికి నావిగేట్ చేయండి DocType: S3 Backup Settings,eu-central-1,eu-కేంద్ర -1 DocType: Auto Repeat,Yearly,ప్రతిసంవత్సరం apps/frappe/frappe/public/js/frappe/model/model.js,Rename,పేరుమార్చు @@ -2272,6 +2311,7 @@ DocType: Workflow State,plane,విమానం apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Nested సెట్ లోపం. దయచేసి నిర్వాహకుడిని సంప్రదించండి. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,రిపోర్ట్ చూపించు DocType: Auto Repeat,Auto Repeat Schedule,ఆటో రిపీట్ షెడ్యూల్ +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Ref చూడండి DocType: Address,Office,ఆఫీసు DocType: LDAP Settings,StartTLS,TLS ప్రారంభించు apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} రోజుల క్రితం @@ -2305,7 +2345,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required, apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,నా సెట్టింగులు apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,సమూహం పేరు ఖాళీగా ఉండకూడదు. DocType: Workflow State,road,రహదారి -DocType: Website Route Redirect,Source,మూల +DocType: Contact,Source,మూల apps/frappe/frappe/www/third_party_apps.html,Active Sessions,యాక్టివ్ సెషన్స్ apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,ఒక రూపంలో ఒక మడత ఉండవచ్చు apps/frappe/frappe/public/js/frappe/chat.js,New Chat,కొత్త చాట్ @@ -2351,6 +2391,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,పాత్రలు వాడుకరి వినియోగదారుల పేజీ నుండి సెట్ చెయ్యబడతాయి. DocType: Website Settings,Include Search in Top Bar,టాప్ బార్లో శోధన చేర్చండి apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,% S కోసం పునరావృత% s సృష్టించేటప్పుడు [అర్జంట్] లోపం +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,గ్లోబల్ సత్వరమార్గాలు DocType: Help Article,Author,రచయిత DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,ఇవ్వబడిన ఫిల్టర్లకు పత్రం కనుగొనబడలేదు @@ -2386,10 +2427,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, వరుస {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","మీరు క్రొత్త రికార్డులను అప్లోడ్ చేస్తే, "నామకరణ సిరీస్" తప్పక ఉంటే తప్పనిసరి అవుతుంది." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,గుణాలు సవరించు -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,దాని {0} తెరిచినప్పుడు సందర్భం తెరవబడదు +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,దాని {0} తెరిచినప్పుడు సందర్భం తెరవబడదు DocType: Activity Log,Timeline Name,టైమ్లైన్ పేరు DocType: Comment,Workflow,వర్క్ఫ్లో apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,దయచేసి Frappe కోసం సామాజిక లాగిన్ కీలో బేస్ URL ను సెట్ చేయండి +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,కీబోర్డ్ సత్వరమార్గాలు DocType: Portal Settings,Custom Menu Items,కస్టమ్ మెను అంశాలు apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,{0} యొక్క పొడవు 1 మరియు 1000 మధ్య ఉండాలి apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,కనెక్షన్ కోల్పోయింది. కొన్ని లక్షణాలు పనిచేయకపోవచ్చు. @@ -2452,6 +2494,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,వరు DocType: DocType,Setup,సెటప్ apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} విజయవంతంగా సృష్టించబడింది apps/frappe/frappe/www/update-password.html,New Password,కొత్త పాస్వర్డ్ +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,ఫీల్డ్ ఎంచుకోండి apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,ఈ సంభాషణను వదిలివేయండి DocType: About Us Settings,Team Members,జట్టు సభ్యులు DocType: Blog Settings,Writers Introduction,రైటర్స్ ఇంట్రడక్షన్ @@ -2521,13 +2564,12 @@ DocType: Chat Room,Name,పేరు DocType: Communication,Email Template,ఇమెయిల్ మూస DocType: Energy Point Settings,Review Levels,సమీక్ష స్థాయిలు DocType: Print Format,Raw Printing,రా ప్రింటింగ్ -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,దాని సందర్భం తెరిచినప్పుడు {0} తెరవలేరు +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,దాని సందర్భం తెరిచినప్పుడు {0} తెరవలేరు DocType: DocType,"Make ""name"" searchable in Global Search",గ్లోబల్ సెర్చ్లో "పేరు" వెతకండి DocType: Data Migration Mapping,Data Migration Mapping,డేటా మైగ్రేషన్ మ్యాపింగ్ DocType: Data Import,Partially Successful,పాక్షికంగా విజయవంతమైనది DocType: Communication,Error,లోపం apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},ఫీల్డ్లో {0} నుండి {0} {0} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZ ట్రే అప్లికేషన్కు కనెక్ట్ చేయడంలో లోపం ...

మీరు రా ముద్రణ లక్షణాన్ని ఉపయోగించడానికి QZ ట్రే అప్లికేషన్ను ఇన్స్టాల్ చేసి, అమలు చేయాలి.

QZ ట్రేని డౌన్లోడ్ చేసి, ఇన్స్టాల్ చేయడానికి ఇక్కడ క్లిక్ చేయండి .
రా ప్రింటింగ్ గురించి మరింత తెలుసుకోవడానికి ఇక్కడ క్లిక్ చేయండి ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,ఫోటో తీసుకో apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,మీతో సంబంధం ఉన్న సంవత్సరాలని నివారించండి. DocType: Web Form,Allow Incomplete Forms,అసంపూర్ణ ఫారమ్లను అనుమతించండి @@ -2623,7 +2665,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",కొత్త పేజీలో తెరవడానికి లక్ష్యం = "_blank" ఎంచుకోండి. DocType: Portal Settings,Portal Menu,పోర్టల్ మెనూ DocType: Website Settings,Landing Page,తెరవబడు పుట -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,దయచేసి సైన్-అప్ లేదా ప్రారంభించడానికి లాగిన్ చేయండి DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","పరిచయాల ఎంపికలు, "సేల్స్ ప్రశ్న, సపోర్ట్ ప్రశ్న" వంటివి ఒక కొత్త లైన్లో ప్రతి లేదా కామాలతో వేరు చేయబడతాయి." apps/frappe/frappe/twofactor.py,Verfication Code,వెరిఫికేషన్ కోడ్ apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} ఇప్పటికే రద్దు చేయబడలేదు @@ -2709,6 +2750,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,డేటా DocType: Address,Sales User,సేల్స్ వాడుకరి apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","ఫీల్డ్ లక్షణాలు మార్చండి (దాచడానికి, చదవడానికి మాత్రమే, అనుమతి మొదలైనవి)" DocType: Property Setter,Field Name,క్షేత్రనామం +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,కస్టమర్ DocType: Print Settings,Font Size,ఫాంట్ పరిమాణం DocType: User,Last Password Reset Date,చివరి పాస్ వర్డ్ రీసెట్ తేదీ DocType: System Settings,Date and Number Format,తేదీ మరియు సంఖ్య ఆకృతి @@ -2774,6 +2816,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,గుంపు apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,ఇప్పటికే ఉన్న విలీనం DocType: Blog Post,Blog Intro,బ్లాగ్ ఉపోద్ఘాతం apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,కొత్త ప్రస్తావన +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,ఫీల్డ్‌కు వెళ్లండి DocType: Prepared Report,Report Name,నివేదిక పేరు apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,దయచేసి తాజా పత్రాన్ని పొందడానికి రిఫ్రెష్ చేయండి. apps/frappe/frappe/core/doctype/communication/communication.js,Close,Close @@ -2783,10 +2826,12 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,ఈవెంట్ DocType: Social Login Key,Access Token URL,యాక్సెస్ టోకెన్ URL apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,దయచేసి మీ సైట్ కాన్ఫిగరేషన్లో Dropbox ప్రాప్యత కీలను సెట్ చేయండి +DocType: Google Contacts,Google Contacts,Google పరిచయాలు DocType: User,Reset Password Key,పాస్వర్డ్ కీని రీసెట్ చేయండి apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,సవరించబడింది DocType: User,Bio,బయో apps/frappe/frappe/limits.py,"To renew, {0}.","పునరుద్ధరించడానికి, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,విజయవంతంగా సేవ్ చేయబడింది DocType: File,Folder,ఫోల్డర్ DocType: DocField,Perm Level,పెర్మ్ లెవెల్ DocType: Print Settings,Page Settings,పేజీ సెట్టింగ్లు @@ -2816,6 +2861,7 @@ DocType: Workflow State,remove-sign,తొలగించడానికి చ DocType: Dashboard Chart,Full,పూర్తి DocType: DocType,User Cannot Create,వినియోగదారు సృష్టించలేరు apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,మీరు {0} పాయింట్ పొందారు +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,సెటప్> వినియోగదారు DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","మీరు దీన్ని సెట్ చేస్తే, ఎంచుకున్న పేరెంట్ క్రింద ఈ అంశం డ్రాప్-డౌన్లో వస్తాయి." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,ఇమెయిల్లు లేవు apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,క్రింది ఖాళీలను లేవు: @@ -2829,13 +2875,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,క DocType: Web Form,Web Form Fields,వెబ్ ఫారమ్ ఫీల్డ్స్ DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,వెబ్సైట్లో యూజర్ సవరించగలిగేలా రూపం. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,శాశ్వతంగా {0} రద్దు చేయాలా? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,శాశ్వతంగా {0} రద్దు చేయాలా? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,ఎంపిక 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,మొత్తాలు apps/frappe/frappe/utils/password_strength.py,This is a very common password.,ఇది చాలా సాధారణ పాస్వర్డ్. DocType: Personal Data Deletion Request,Pending Approval,ఆమోదం పెండింగ్లో ఉంది apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,పత్రం సరిగ్గా కేటాయించబడలేదు apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{0}: {1} కోసం అనుమతి లేదు +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,చూపించడానికి విలువలు లేవు DocType: Personal Data Download Request,Personal Data Download Request,వ్యక్తిగత డేటా డౌన్లోడ్ అభ్యర్థన apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} ఈ పత్రాన్ని {1} తో భాగస్వామ్యం చేసారు apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},{0} ఎంచుకోండి @@ -2851,7 +2898,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},ఈ ఇమెయిల్ {0} కు పంపబడింది మరియు {1} కు కాపీ చేయబడింది apps/frappe/frappe/email/smtp.py,Invalid login or password,తప్పు లాగిన్ లేదా పాస్వర్డ్ DocType: Social Login Key,Social Login Key,సామాజిక లాగిన్ కీ -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,సెటప్> ఇమెయిల్> ఇమెయిల్ ఖాతా నుండి డిఫాల్ట్ ఇమెయిల్ ఖాతా సెటప్ చేయండి apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,వడపోతలు సేవ్ చేయబడ్డాయి DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","ఈ కరెన్సీ ఫార్మాట్ ఎలా చేయాలి? సెట్ చేయకపోతే, సిస్టమ్ డిఫాల్ట్లను ఉపయోగిస్తుంది" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} స్థితికి సెట్ చేయబడింది {2} @@ -2977,6 +3023,7 @@ DocType: User,Location,స్థానం apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,సమాచారం లేదు DocType: Website Meta Tag,Website Meta Tag,వెబ్సైట్ మెటా ట్యాగ్ DocType: Workflow State,film,సినిమా +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,క్లిప్‌బోర్డ్‌కు కాపీ చేయబడింది. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} సెట్టింగులు దొరకలేదు apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,లేబుల్ తప్పనిసరి DocType: Webhook,Webhook Headers,వెబ్హూక్ హెడ్డర్స్ @@ -3184,7 +3231,7 @@ DocType: Address,Address Line 1,చిరునామా పంక్తి 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,డాక్యుమెంట్ టైప్ కోసం apps/frappe/frappe/model/base_document.py,Data missing in table,పట్టికలో డేటా లేదు apps/frappe/frappe/utils/bot.py,Could not identify {0},{0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,మీరు దీన్ని లోడ్ చేసిన తర్వాత ఈ రూపం సవరించబడింది +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,మీరు దీన్ని లోడ్ చేసిన తర్వాత ఈ రూపం సవరించబడింది apps/frappe/frappe/www/login.html,Back to Login,తిరిగి లాగిన్ అవ్వండి apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,సరి పోలేదు DocType: Data Migration Mapping,Pull,పుల్ @@ -3252,6 +3299,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,చైల్డ్ apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,ఇమెయిల్ ఖాతా సెటప్ కోసం దయచేసి మీ పాస్వర్డ్ను నమోదు చేయండి: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,ఒక అభ్యర్థనలో చాలా మంది వ్రాస్తున్నారు. దయచేసి చిన్న అభ్యర్థనలను పంపండి DocType: Social Login Key,Salesforce,అమ్మకాల బలం +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{1} లో {0} దిగుమతి DocType: User,Tile,టైల్ apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} గదిలో ఒకదానిలో ఒకటి ఉండాలి. DocType: Email Rule,Is Spam,స్పామ్ @@ -3289,7 +3337,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,ఫోల్డర్ దగ్గరగా DocType: Data Migration Run,Pull Update,నవీకరణ పుల్ apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},{0} {1} లోకి విలీనం -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

'

DocType: SMS Settings,Enter url parameter for receiver nos,రిసీవర్ nos కోసం url పారామితిని నమోదు చేయండి apps/frappe/frappe/utils/jinja.py,Syntax error in template,టెంప్లేట్ లో సింటాక్స్ దోషం apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,దయచేసి రిపోర్ట్ ఫిల్టర్ పట్టికలో ఫిల్టర్ల విలువను సెట్ చేయండి. @@ -3302,6 +3349,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","క్ష DocType: System Settings,In Days,డేస్ లో DocType: Report,Add Total Row,మొత్తం అడ్డు వరుసను జోడించండి apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,సెషన్ ప్రారంభం విఫలమైంది +DocType: Translation,Verified,నిర్థారించబడింది DocType: Print Format,Custom HTML Help,కస్టమ్ HTML సహాయం DocType: Address,Preferred Billing Address,ప్రాధాన్య బిల్లింగ్ చిరునామా apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,కేటాయించిన @@ -3316,7 +3364,6 @@ DocType: Help Article,Intermediate,ఇంటర్మీడియట్ DocType: Module Def,Module Name,మాడ్యూల్ పేరు DocType: OAuth Authorization Code,Expiration time,గడువు సమయం apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","డిఫాల్ట్ ఫార్మాట్, పేజీ పరిమాణం, ముద్రణ శైలి మొదలైనవి సెట్ చేయండి" -apps/frappe/frappe/desk/like.py,You cannot like something that you created,మీరు సృష్టించిన విషయం మీకు ఇష్టం లేదు DocType: System Settings,Session Expiry,సెషన్ గడువు DocType: DocType,Auto Name,ఆటో పేరు apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,జోడింపులను ఎంచుకోండి @@ -3344,6 +3391,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,సిస్టమ్ పేజీ DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,గమనిక: విఫలమైన బ్యాకప్ల కోసం డిఫాల్ట్ ఇమెయిల్స్ పంపబడుతున్నాయి. DocType: Custom DocPerm,Custom DocPerm,కస్టమ్ DocPerm +DocType: Translation,PR sent,పిఆర్ పంపబడింది DocType: Tag Doc Category,Doctype to Assign Tags,టాగ్లు కేటాయించుటకు Doctype DocType: Address,Warehouse,వేర్హౌస్ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,డ్రాప్బాక్స్ సెటప్ @@ -3410,7 +3458,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,వ్యాఖ్యను జోడించడానికి Ctrl + Enter apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,ఫీల్డ్ {0} ఎంచుకోబడదు. DocType: User,Birth Date,పుట్టిన తేదీ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,గ్రూప్ ఇండెంటేషన్ ద్వారా DocType: List View Setting,Disable Count,కౌంట్ డిసేబుల్ DocType: Contact Us Settings,Email ID,ఇమెయిల్ ID apps/frappe/frappe/utils/password.py,Incorrect User or Password,తప్పు యూజర్ లేదా పాస్వర్డ్ @@ -3445,6 +3492,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,ఈ పాత్ర వాడుకరి వినియోగదారుని అనుమతులను అప్డేట్ చేస్తుంది DocType: Website Theme,Theme,థీమ్ DocType: Web Form,Show Sidebar,సైడ్బార్ చూపించు +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,గూగుల్ కాంటాక్ట్స్ ఇంటిగ్రేషన్. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,డిఫాల్ట్ ఇన్బాక్స్ apps/frappe/frappe/www/login.py,Invalid Login Token,చెల్లని లాగిన్ టోకెన్ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,"మొదట పేరును సెట్ చేసి, రికార్డ్ను సేవ్ చేయండి." @@ -3472,7 +3520,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,సరిదిద్దండి DocType: Top Bar Item,Top Bar Item,అగ్ర బార్ అంశం ,Role Permissions Manager,రోల్ అనుమతులు మేనేజర్ -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,లోపాలు ఉన్నాయి. దయచేసి దీన్ని నివేదించండి. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} సంవత్సరం (లు) క్రితం apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,మహిళ DocType: System Settings,OTP Issuer Name,OTP జారీదారు పేరు apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,దీనికి జోడించు @@ -3572,6 +3620,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","భా apps/frappe/frappe/model/document.py,none of,ఏది కాదు DocType: Desktop Icon,Page,పేజీ DocType: Workflow State,plus-sign,ప్లస్-సైన్ +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,కాష్ క్లియర్ చేసి రీలోడ్ చేయండి apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,నవీకరించలేరు: సరికాని / గడువు ముగిసిన లింక్. DocType: Kanban Board Column,Yellow,పసుపు DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),ఒక గ్రిడ్లో ఒక ఫీల్డ్ కోసం నిలువు వరుసల సంఖ్య (గ్రిడ్లోని మొత్తం నిలువు వరుసలు 11 కంటే తక్కువగా ఉండాలి) @@ -3586,6 +3635,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,న DocType: Activity Log,Date,తేదీ DocType: Communication,Communication Type,కమ్యూనికేషన్ రకం apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,మాతృ పట్టిక +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,జాబితాను నావిగేట్ చేయండి DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,పూర్తి లోపాన్ని చూపించు మరియు డెవలపర్కు సమస్యల నివేదనను అనుమతించండి DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3607,7 +3657,6 @@ DocType: Notification Recipient,Email By Role,పాత్ర ద్వారా apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,దయచేసి {0} చందాదారుల కన్నా ఎక్కువ జోడించడానికి దయచేసి అప్గ్రేడ్ చేయండి apps/frappe/frappe/email/queue.py,This email was sent to {0},ఈ ఇమెయిల్ {0} కు పంపబడింది DocType: User,Represents a User in the system.,వ్యవస్థలో వినియోగదారుని సూచిస్తుంది. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},పేజీ {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,కొత్త ఫార్మాట్ను ప్రారంభించండి apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,వ్యాఖ్యను జోడించండి apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} లో {0} diff --git a/frappe/translations/th.csv b/frappe/translations/th.csv index ebd9027520..758655122d 100644 --- a/frappe/translations/th.csv +++ b/frappe/translations/th.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,เปิดใช้งานการไล่ระดับสี DocType: DocType,Default Sort Order,เรียงลำดับเริ่มต้น apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,แสดงเฉพาะฟิลด์ตัวเลขจากรายงาน +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,กดปุ่ม Alt เพื่อเรียกใช้ทางลัดเพิ่มเติมในเมนูและแถบด้านข้าง DocType: Workflow State,folder-open,โฟลเดอร์เปิด DocType: Customize Form,Is Table,เป็นตาราง apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,ไม่สามารถเปิดไฟล์ที่แนบ คุณส่งออกเป็น CSV หรือไม่ DocType: DocField,No Copy,ไม่มีการคัดลอก DocType: Custom Field,Default Value,ค่าเริ่มต้น apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,ผนวกไปยังจำเป็นสำหรับจดหมายขาเข้า +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,เชื่อมต่อรายชื่อ DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,รายละเอียดการแม็พการโอนย้ายข้อมูล apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,เลิก apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",ยังไม่รองรับการพิมพ์ PDF ผ่าน "Raw Print" โปรดลบการแมปเครื่องพิมพ์ในการตั้งค่าเครื่องพิมพ์แล้วลองอีกครั้ง @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} และ {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,เกิดข้อผิดพลาดในการบันทึกตัวกรอง apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,ใส่รหัสผ่านของคุณ apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,ไม่สามารถลบโฟลเดอร์บ้านและไฟล์แนบ +DocType: Email Account,Enable Automatic Linking in Documents,เปิดใช้งานการเชื่อมโยงอัตโนมัติในเอกสาร DocType: Contact Us Settings,Settings for Contact Us Page,การตั้งค่าสำหรับหน้าติดต่อเรา DocType: Social Login Key,Social Login Provider,ผู้ให้บริการเข้าสู่ระบบสังคม +DocType: Email Account,"For more information, click here.","สำหรับข้อมูลเพิ่มเติม คลิกที่นี่" DocType: Transaction Log,Previous Hash,แฮชก่อนหน้า DocType: Notification,Value Changed,เปลี่ยนค่าแล้ว DocType: Report,Report Type,ประเภทรายงาน @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,กฎพลังงานจุ apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,โปรดป้อนรหัสลูกค้าก่อนที่จะเปิดใช้งานการเข้าสู่ระบบสังคม DocType: Communication,Has Attachment,มีไฟล์แนบ DocType: User,Email Signature,ลายเซ็นอีเมล -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ปีที่แล้ว ,Addresses And Contacts,ที่อยู่และติดต่อ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,บอร์ด Kanban นี้จะเป็นแบบส่วนตัว DocType: Data Migration Run,Current Mapping,การทำแผนที่ปัจจุบัน @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).",คุณกำลังเลือกตัวเลือกการซิงค์เป็นทั้งหมดมันจะซิงค์ทั้งหมด \ อ่านรวมถึงข้อความที่ยังไม่ได้อ่านจากเซิร์ฟเวอร์ นี่อาจเป็นสาเหตุให้เกิดการซ้ำซ้อน \ ของการสื่อสาร (อีเมล) apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},ซิงค์ล่าสุด {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,ไม่สามารถเปลี่ยนเนื้อหาส่วนหัว +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,ไม่อนุญาตให้เปลี่ยน {0} หลังจากส่ง apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page",แอปพลิเคชันได้รับการอัปเดตเป็นเวอร์ชันใหม่โปรดรีเฟรชหน้านี้ DocType: User,User Image,รูปภาพของผู้ใช้ @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},ท apps/frappe/frappe/public/js/frappe/chat.js,Discard,ทิ้ง DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,เลือกรูปภาพที่มีความกว้างประมาณ 150px พร้อมพื้นหลังโปร่งใสเพื่อผลลัพธ์ที่ดีที่สุด apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,ซึ่งได้กำเริบใหม่ +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,เลือก {0} ค่า DocType: Blog Post,Email Sent,ส่งอีเมลแล้ว DocType: Communication,Read by Recipient On,อ่านโดยเปิดผู้รับ DocType: User,Allow user to login only after this hour (0-24),อนุญาตให้ผู้ใช้เข้าสู่ระบบหลังจากชั่วโมงนี้เท่านั้น (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,โมดูลเพื่อการส่งออก DocType: DocType,Fields,ทุ่ง -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,คุณไม่ได้รับอนุญาตให้พิมพ์เอกสารนี้ +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,คุณไม่ได้รับอนุญาตให้พิมพ์เอกสารนี้ apps/frappe/frappe/public/js/frappe/model/model.js,Parent,ผู้ปกครอง apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.",เซสชันของคุณหมดอายุแล้วโปรดลงชื่อเข้าใช้อีกครั้งเพื่อดำเนินการต่อ DocType: Assignment Rule,Priority,ลำดับความสำคัญ @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,รีเซ็ต DocType: DocType,UPPER CASE,กรณีบน apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,กรุณาตั้งค่าที่อยู่อีเมล DocType: Communication,Marked As Spam,ทำเครื่องหมายว่าเป็นสแปม +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,ที่อยู่อีเมลที่จะซิงค์ Google Contacts apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,นำเข้าสมาชิก apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,บันทึกตัวกรอง DocType: Address,Preferred Shipping Address,ที่อยู่จัดส่งที่ต้องการ DocType: GCalendar Account,The name that will appear in Google Calendar,ชื่อที่จะปรากฏใน Google Calendar +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,คลิกที่ {0} เพื่อสร้างโทเค็นรีเฟรช DocType: Email Account,Disable SMTP server authentication,ปิดใช้งานการรับรองความถูกต้องเซิร์ฟเวอร์ SMTP DocType: Email Account,Total number of emails to sync in initial sync process ,จำนวนอีเมลทั้งหมดที่จะซิงค์ในกระบวนการซิงค์เริ่มต้น DocType: System Settings,Enable Password Policy,เปิดใช้งานนโยบายรหัสผ่าน @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,ใส่รหัส apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,ไม่เข้า DocType: Auto Repeat,Start Date,วันที่เริ่มต้น apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,ตั้งค่าแผนภูมิ +DocType: Website Theme,Theme JSON,ธีม JSON apps/frappe/frappe/www/list.py,My Account,บัญชีของฉัน DocType: DocType,Is Published Field,มีการเผยแพร่ข้อมูล DocType: DocField,Set non-standard precision for a Float or Currency field,ตั้งค่าความแม่นยำที่ไม่ได้มาตรฐานสำหรับฟิลด์โฟลตหรือสกุลเงิน @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: เพิ่ม Reference: {{ reference_doctype }} {{ reference_name }} เพื่อส่งการอ้างอิงเอกสาร DocType: LDAP Settings,LDAP First Name Field,ฟิลด์ชื่อ LDAP apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,การส่งและกล่องจดหมายเริ่มต้น -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,ตั้งค่า> ปรับแต่งฟอร์ม apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",สำหรับการอัปเดตคุณสามารถอัปเดตคอลัมน์ที่เลือกได้เท่านั้น apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',ค่าเริ่มต้นสำหรับฟิลด์ประเภท 'ตรวจสอบ' ต้องเป็น '0' หรือ '1' apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,แบ่งปันเอกสารนี้ด้วย @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,โดเมน HTML DocType: Blog Settings,Blog Settings,การตั้งค่าบล็อก apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores",ชื่อ DocType ควรเริ่มต้นด้วยตัวอักษรและสามารถประกอบด้วยตัวอักษรตัวเลขช่องว่างและขีดล่างเท่านั้น +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ตั้งค่า> สิทธิ์ผู้ใช้ DocType: Communication,Integrations can use this field to set email delivery status,การรวมระบบสามารถใช้ฟิลด์นี้เพื่อตั้งค่าสถานะการส่งอีเมล apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,แถบการตั้งค่าเกตเวย์การชำระเงิน DocType: Print Settings,Fonts,แบบอักษร DocType: Notification,Channel,ช่อง DocType: Communication,Opened,เปิด DocType: Workflow Transition,Conditions,เงื่อนไข +apps/frappe/frappe/config/website.py,A user who posts blogs.,ผู้ใช้ที่โพสต์บล็อก apps/frappe/frappe/www/login.html,Don't have an account? Sign up,ยังไม่มีบัญชีใช่ไหม ลงชื่อ apps/frappe/frappe/utils/file_manager.py,Added {0},เพิ่ม {0} DocType: Newsletter,Create and Send Newsletters,สร้างและส่งจดหมายข่าว DocType: Website Settings,Footer Items,รายการส่วนท้าย +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,โปรดตั้งค่าบัญชีอีเมลเริ่มต้นจากตั้งค่า> อีเมล> บัญชีอีเมล DocType: Website Slideshow Item,Website Slideshow Item,รายการสไลด์โชว์เว็บไซต์ apps/frappe/frappe/config/integrations.py,Register OAuth Client App,ลงทะเบียนแอป OAuth ไคลเอ็นต์ DocType: Error Snapshot,Frames,กรอบ @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.",ระดับ 0 มีไว้สำหรับการอนุญาตระดับเอกสาร \ ระดับที่สูงขึ้นสำหรับการอนุญาตระดับฟิลด์ DocType: Address,City/Town,เมือง / จังหวัด DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?",สิ่งนี้จะรีเซ็ตธีมปัจจุบันของคุณคุณแน่ใจหรือไม่ว่าต้องการดำเนินการต่อ apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},จำเป็นต้องมีฟิลด์บังคับใน {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},ข้อผิดพลาดขณะเชื่อมต่อกับบัญชีอีเมล {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,เกิดข้อผิดพลาดขณะสร้างกิจวัตร @@ -528,7 +537,7 @@ DocType: Event,Event Category,หมวดกิจกรรม apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,คอลัมน์ขึ้นอยู่กับ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,แก้ไขหัวเรื่อง DocType: Communication,Received,ที่ได้รับ -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,คุณไม่ได้รับอนุญาตให้เข้าถึงหน้านี้ +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,คุณไม่ได้รับอนุญาตให้เข้าถึงหน้านี้ DocType: User Social Login,User Social Login,เข้าสู่ระบบสังคมของผู้ใช้ apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,เขียนไฟล์ Python ในโฟลเดอร์เดียวกับที่บันทึกและส่งคืนคอลัมน์และผลลัพธ์ DocType: Contact,Purchase Manager,ผู้จัดการฝ่ายจัดซื้อ @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,ก apps/frappe/frappe/utils/data.py,Operator must be one of {0},ผู้ประกอบการต้องเป็นหนึ่งใน {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,หากเจ้าของ DocType: Data Migration Run,Trigger Name,ชื่อทริกเกอร์ -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,เขียนชื่อและการแนะนำสู่บล็อกของคุณ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,ลบฟิลด์ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,ยุบทั้งหมด apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,สีพื้นหลัง @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,บาร์ DocType: SMS Settings,Enter url parameter for message,ป้อนพารามิเตอร์ url สำหรับข้อความ apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,รูปแบบการพิมพ์แบบกำหนดเองใหม่ apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} มีอยู่แล้ว +DocType: Workflow Document State,Is Optional State,เป็นรัฐที่ไม่จำเป็น DocType: Address,Purchase User,ซื้อผู้ใช้ DocType: Data Migration Run,Insert,แทรก DocType: Web Form,Route to Success Link,เส้นทางสู่การเชื่อมโยงที่ประสบความสำเร็จ @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,ชื DocType: File,Is Home Folder,เป็นโฟลเดอร์บ้าน apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,ประเภท: DocType: Post,Is Pinned,ถูกตรึง -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},ไม่ได้รับอนุญาตให้ '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},ไม่ได้รับอนุญาตให้ '{0}' {1} DocType: Patch Log,Patch Log,บันทึกการแก้ไข DocType: Print Format,Print Format Builder,ตัวสร้างรูปแบบการพิมพ์ 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 นอกจากนี้ยังสามารถตั้งค่าสำหรับผู้ใช้เฉพาะในหน้าผู้ใช้ apps/frappe/frappe/utils/data.py,only.,เท่านั้น apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,เงื่อนไข '{0}' ไม่ถูกต้อง DocType: Auto Email Report,Day of Week,วันของสัปดาห์ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,เปิดใช้งาน Google API ในการตั้งค่า Google DocType: DocField,Text Editor,แก้ไขข้อความ apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,ตัด apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,ค้นหาหรือพิมพ์คำสั่ง @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,จำนวนการสำรองฐานข้อมูลต้องไม่น้อยกว่า 1 DocType: Workflow State,ban-circle,ห้ามวงกลม DocType: Data Export,Excel,สันทัด +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","ส่วนหัว, เกล็ดขนมปังและเมตาแท็ก" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,ไม่ระบุที่อยู่อีเมลสนับสนุน DocType: Comment,Published,การตีพิมพ์ DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.",หมายเหตุ: เพื่อผลลัพธ์ที่ดีที่สุดรูปภาพต้องมีขนาดและความกว้างเท่ากันต้องมากกว่าความสูง @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,กำหนดการล่า apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,รายงานการแบ่งปันเอกสารทั้งหมด DocType: Website Sidebar Item,Website Sidebar Item,รายการแถบด้านข้างของเว็บไซต์ apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,ทำ +DocType: Google Settings,Google Settings,การตั้งค่าของ Google apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency",เลือกประเทศเขตเวลาและสกุลเงินของคุณ DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","ป้อนพารามิเตอร์ URL คงที่ที่นี่ (เช่นผู้ส่ง = ERPNext, ชื่อผู้ใช้ = ERPNext, รหัสผ่าน = 1234 เป็นต้น)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,ไม่มีบัญชีอีเมล @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token ,Setup Wizard,ตัวช่วยสร้างการตั้งค่า apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,สลับแผนภูมิ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,ซิงค์ DocType: Data Migration Run,Current Mapping Action,การดำเนินการทำแผนที่ปัจจุบัน DocType: Email Account,Initial Sync Count,การซิงค์เริ่มต้น apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,การตั้งค่าสำหรับหน้าติดต่อเรา @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,ประเภทรูปแบบการพิมพ์ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,ไม่มีการกำหนดสิทธิ์สำหรับเกณฑ์นี้ apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,ขยายทั้งหมด +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ไม่พบเทมเพลตที่อยู่เริ่มต้น โปรดสร้างอันใหม่จากการตั้งค่า> การพิมพ์และการสร้างแบรนด์> เทมเพลตที่อยู่ DocType: Tag Doc Category,Tag Doc Category,แท็ก Doc Category DocType: Data Import,Generated File,ไฟล์ที่สร้าง apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,หมายเหตุ @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,ฟิลด์ Timeline ต้องเป็น Link หรือ Dynamic Link DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,การแจ้งเตือนและอีเมลจำนวนมากจะถูกส่งจากเซิร์ฟเวอร์ขาออกนี้ apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,นี่คือรหัสผ่านทั่วไป 100 อันดับแรก -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,ส่ง {0} อย่างถาวรหรือไม่ +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,ส่ง {0} อย่างถาวรหรือไม่ apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge",{0} {1} ไม่มีอยู่ให้เลือกเป้าหมายใหม่เพื่อรวม DocType: Energy Point Rule,Multiplier Field,ฟิลด์ตัวคูณ DocType: Workflow,Workflow State Field,ฟิลด์สถานะเวิร์กโฟลว์ @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} ชื่นชมผลงานของคุณใน {1} ด้วย {2} คะแนน DocType: Auto Email Report,Zero means send records updated at anytime,ศูนย์หมายถึงส่งบันทึกอัพเดตทุกเวลา apps/frappe/frappe/model/document.py,Value cannot be changed for {0},ไม่สามารถเปลี่ยนค่าสำหรับ {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,การตั้งค่า Google API DocType: System Settings,Force User to Reset Password,บังคับให้ผู้ใช้รีเซ็ตรหัสผ่าน apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,รายงานเครื่องมือสร้างรายงานได้รับการจัดการโดยตรงโดยตัวสร้างรายงาน ไม่มีอะไรทำ. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,แก้ไขตัวกรอง @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,ส DocType: S3 Backup Settings,eu-north-1,EU-เฉียงเหนือ 1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}",{0}: อนุญาตให้ใช้กฎเดียวเท่านั้นที่มีบทบาทระดับและ {1} ที่เหมือนกัน apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,คุณไม่ได้รับอนุญาตให้อัปเดตเอกสารเว็บฟอร์มนี้ -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,ถึงขีด จำกัด สูงสุดของไฟล์แนบสำหรับบันทึกนี้ +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,ถึงขีด จำกัด สูงสุดของไฟล์แนบสำหรับบันทึกนี้ apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,โปรดตรวจสอบให้แน่ใจว่าเอกสารการสื่อสารอ้างอิงไม่ได้เชื่อมโยงเป็นวงกลม DocType: DocField,Allow in Quick Entry,อนุญาตใน Quick Entry DocType: Error Snapshot,Locals,ชาวบ้าน @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,ประเภทข้อยกเว้น apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},ไม่สามารถลบหรือยกเลิกได้เนื่องจาก {0} {1} เชื่อมโยงกับ {2} {3} {4} apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,ข้อมูลลับ OTP สามารถรีเซ็ตได้โดยผู้ดูแลระบบเท่านั้น -DocType: Web Form Field,Page Break,ตัวแบ่งหน้า DocType: Website Script,Website Script,สคริปต์เว็บไซต์ DocType: Integration Request,Subscription Notification,การแจ้งเตือนการสมัครสมาชิก DocType: DocType,Quick Entry,รายการด่วน @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,ตั้งค่าคุณส apps/frappe/frappe/__init__.py,Thank you,ขอบคุณ apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks สำหรับการรวมภายใน apps/frappe/frappe/config/settings.py,Import Data,นำเข้าข้อมูล +DocType: Translation,Contributed Translation Doctype Name,ชื่อประเภทการแปลที่สนับสนุน DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID DocType: Review Level,Review Level,ระดับความคิดเห็น @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,ทำสำเร็จแล้ว apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,รายการ {0} apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,ซาบซึ้ง -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),ใหม่ {0} (Ctrl + B) DocType: Contact,Is Primary Contact,เป็นผู้ติดต่อหลัก DocType: Print Format,Raw Commands,คำสั่งดิบ apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,สไตล์ชีตสำหรับรูปแบบการพิมพ์ @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,ข้อผิด apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},ค้นหา {0} ใน {1} DocType: Email Account,Use SSL,ใช้ SSL DocType: DocField,In Standard Filter,ในตัวกรองมาตรฐาน +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,ไม่มีที่อยู่ติดต่อของ Google ในการซิงค์ DocType: Data Migration Run,Total Pages,รวมหน้า apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: ฟิลด์ '{1}' ไม่สามารถตั้งค่าเป็นไม่ซ้ำเนื่องจากมีค่าที่ไม่ซ้ำกัน DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.",หากเปิดใช้งานผู้ใช้จะได้รับแจ้งทุกครั้งที่เข้าสู่ระบบ หากไม่เปิดใช้งานผู้ใช้จะได้รับแจ้งเพียงครั้งเดียว @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,การทำงานอัตโนม apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,กำลังขยายไฟล์ ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',ค้นหา '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,บางอย่างผิดพลาด -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,โปรดบันทึกก่อนแนบ +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,โปรดบันทึกก่อนแนบ DocType: Version,Table HTML,ตาราง HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,ดุม DocType: Page,Standard,มาตรฐาน @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,ไม่ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,ลบ {0} รายการแล้ว apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,เกิดข้อผิดพลาดขณะสร้างโทเค็นการเข้าถึงดรอปบ็อกซ์ โปรดตรวจสอบบันทึกข้อผิดพลาดเพื่อดูรายละเอียดเพิ่มเติม apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,ลูกหลานของ -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ไม่พบเทมเพลตที่อยู่เริ่มต้น โปรดสร้างอันใหม่จากการตั้งค่า> การพิมพ์และการสร้างแบรนด์> เทมเพลตที่อยู่ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,กำหนดค่า Google Contacts แล้ว apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,ซ่อนรายละเอียด apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,รูปแบบตัวอักษร apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,การสมัครของคุณจะหมดอายุในวันที่ {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},การพิสูจน์ตัวตนล้มเหลวขณะรับอีเมลจากบัญชีอีเมล {0} ข้อความจากเซิร์ฟเวอร์: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),สถิติขึ้นอยู่กับประสิทธิภาพของสัปดาห์ที่ผ่านมา (จาก {0} ถึง {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,การเชื่อมโยงอัตโนมัติสามารถเปิดใช้งานได้เฉพาะเมื่อเปิดใช้งานการรับเข้ามา DocType: Website Settings,Title Prefix,คำนำหน้าชื่อเรื่อง apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,แอพรับรองความถูกต้องที่คุณสามารถใช้ได้คือ: DocType: Bulk Update,Max 500 records at a time,บันทึกสูงสุด 500 รายการในแต่ละครั้ง @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,ตัวกรองรายงา apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,เลือกคอลัมน์ DocType: Event,Participants,ผู้เข้าร่วม DocType: Auto Repeat,Amended From,แก้ไขจาก -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,ข้อมูลของคุณถูกส่งไปแล้ว +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,ข้อมูลของคุณถูกส่งไปแล้ว DocType: Help Category,Help Category,หมวดช่วยเหลือ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 เดือน apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,เลือกรูปแบบที่มีอยู่เพื่อแก้ไขหรือเริ่มรูปแบบใหม่ @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,ฟิลด์ที่จะติดตาม DocType: User,Generate Keys,สร้างคีย์ DocType: Comment,Unshared,ยกเลิกการแบ่งปัน -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,ที่บันทึกไว้ +DocType: Translation,Saved,ที่บันทึกไว้ DocType: OAuth Client,OAuth Client,ลูกค้า OAuth DocType: System Settings,Disable Standard Email Footer,ปิดการใช้งานส่วนท้ายของอีเมลมาตรฐาน apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,รูปแบบการพิมพ์ {0} ถูกปิดใช้งาน @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,แก้ไ DocType: Data Import,Action,การกระทำ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,ต้องระบุรหัสลูกค้า DocType: Chat Profile,Notifications,การแจ้งเตือน +DocType: Translation,Contributed,มีส่วนร่วม DocType: System Settings,mm/dd/yyyy,dd / mm / ปปปป DocType: Report,Custom Report,รายงานที่กำหนดเอง DocType: Workflow State,info-sign,ข้อมูลเข้าสู่ระบบ @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,ติดต่อ DocType: LDAP Settings,LDAP Username Field,ฟิลด์ชื่อผู้ใช้ LDAP apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",ไม่สามารถตั้งค่าฟิลด์ {0} เป็นค่าไม่ซ้ำใน {1} เนื่องจากมีค่าที่ไม่ซ้ำกันอยู่แล้ว +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,ตั้งค่า> ปรับแต่งฟอร์ม DocType: User,Social Logins,เข้าสู่ระบบสังคม DocType: Workflow State,Trash,ขยะ DocType: Stripe Settings,Secret Key,รหัสลับ @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,ฟิลด์ชื่อเรื่อง apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,ไม่สามารถเชื่อมต่อกับเซิร์ฟเวอร์อีเมลขาออก DocType: File,File URL,ไฟล์ URL DocType: Help Article,Likes,ชอบ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,การรวม Google Contacts ถูกปิดใช้งาน apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,คุณต้องเข้าสู่ระบบและมีบทบาทผู้จัดการระบบเพื่อให้สามารถเข้าถึงการสำรองข้อมูล apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,ระดับแรก DocType: Blogger,Short Name,ชื่อสั้น @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,นำเข้า Zip DocType: Contact,Gender,เพศ DocType: Workflow State,thumbs-down,ยกนิ้วลง -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},คิวควรเป็นหนึ่งใน {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},ไม่สามารถตั้งค่าการแจ้งเตือนในประเภทเอกสาร {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,การเพิ่มตัวจัดการระบบให้กับผู้ใช้รายนี้จะต้องมีตัวจัดการระบบอย่างน้อยหนึ่งตัว apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,ส่งอีเมลต้อนรับ DocType: Transaction Log,Chaining Hash,การแฮชเชน DocType: Contact,Maintenance Manager,ผู้จัดการฝ่ายซ่อมบำรุง +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","สำหรับการเปรียบเทียบให้ใช้> 5, <10 หรือ = 324 สำหรับช่วงใช้ 5:10 (สำหรับค่าระหว่าง 5 และ 10)" apps/frappe/frappe/utils/bot.py,show,แสดง apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,แบ่งปัน URL apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,รูปแบบไฟล์ที่ไม่รองรับ @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,การแจ้งเตือน DocType: Data Import,Show only errors,แสดงข้อผิดพลาดเท่านั้น DocType: Energy Point Log,Review,ทบทวน apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,ลบแถวแล้ว -DocType: GSuite Settings,Google Credentials,Google Credentials +DocType: Google Settings,Google Credentials,Google Credentials apps/frappe/frappe/www/login.html,Or login with,หรือเข้าสู่ระบบด้วย apps/frappe/frappe/model/document.py,Record does not exist,ไม่มีบันทึก apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,ชื่อรายงานใหม่ @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,รายการ DocType: Workflow State,th-large,TH-ขนาดใหญ่ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: ไม่สามารถตั้งค่ามอบหมายส่งหากไม่สามารถส่งได้ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,ไม่เชื่อมโยงกับบันทึกใด ๆ +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","เกิดข้อผิดพลาดในการเชื่อมต่อกับแอปพลิเคชัน QZ Tray ...

คุณต้องมีแอปพลิเคชัน QZ Tray ติดตั้งและใช้งานเพื่อใช้คุณสมบัติการพิมพ์แบบ Raw

คลิกที่นี่เพื่อดาวน์โหลดและติดตั้ง QZ Tray
คลิกที่นี่เพื่อเรียนรู้เพิ่มเติมเกี่ยวกับการพิมพ์แบบดิบ" DocType: Chat Message,Content,เนื้อหา DocType: Workflow Transition,Allow Self Approval,อนุญาตการอนุมัติด้วยตนเอง apps/frappe/frappe/www/qrcode.py,Page has expired!,หน้าหมดอายุ! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,มือด้านขวา DocType: Website Settings,Banner is above the Top Menu Bar.,แบนเนอร์อยู่เหนือแถบเมนูด้านบน apps/frappe/frappe/www/update-password.html,Invalid Password,รหัสผ่านไม่ถูกต้อง apps/frappe/frappe/utils/data.py,1 month ago,1 เดือนที่แล้ว +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,อนุญาตการเข้าถึง Google Contacts DocType: OAuth Client,App Client ID,รหัสลูกค้าแอป DocType: DocField,Currency,เงินตรา DocType: Website Settings,Banner,ธง @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,เป้าหมาย DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.",หากบทบาทไม่สามารถเข้าถึงได้ที่ระดับ 0 แสดงว่าระดับที่สูงกว่านั้นไม่มีความหมาย DocType: ToDo,Reference Type,ประเภทอ้างอิง -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","อนุญาต DocType, DocType ระวัง!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","อนุญาต DocType, DocType ระวัง!" DocType: Domain Settings,Domain Settings,การตั้งค่าโดเมน DocType: Auto Email Report,Dynamic Report Filters,ตัวกรองรายงานแบบไดนามิก DocType: Energy Point Log,Appreciation,จักษ์ @@ -1468,6 +1489,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,เราตะวันตก-2 DocType: DocType,Is Single,เป็นโสด apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,สร้างรูปแบบใหม่ +DocType: Google Contacts,Authorize Google Contacts Access,อนุญาตการเข้าถึง Google Contacts DocType: S3 Backup Settings,Endpoint URL,URL ปลายทาง DocType: Social Login Key,Google,Google DocType: Contact,Department,แผนก @@ -1482,7 +1504,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,มอบหม DocType: List Filter,List Filter,รายการตัวกรอง DocType: Dashboard Chart Link,Chart,แผนภูมิ apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,ไม่สามารถลบ -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,ส่งเอกสารนี้เพื่อยืนยัน +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,ส่งเอกสารนี้เพื่อยืนยัน apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} มีอยู่แล้ว เลือกชื่ออื่น apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,คุณมีการเปลี่ยนแปลงที่ยังไม่ได้บันทึกในแบบฟอร์มนี้ โปรดบันทึกก่อนที่จะดำเนินการต่อ apps/frappe/frappe/model/document.py,Action Failed,การดำเนินการล้มเหลว @@ -1564,6 +1586,7 @@ DocType: DocField,Display,แสดง apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,ตอบทั้งหมด DocType: Calendar View,Subject Field,สาขาวิชา apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},การหมดอายุเซสชันต้องอยู่ในรูปแบบ {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},การนำไปใช้: {0} DocType: Workflow State,zoom-in,ขยายเข้า apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,ล้มเหลวในการเชื่อมต่อกับเซิร์ฟเวอร์ apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},วันที่ {0} ต้องอยู่ในรูปแบบ: {1} @@ -1575,8 +1598,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,ไอคอนจะปรากฏขึ้นบนปุ่ม DocType: Role Permission for Page and Report,Set Role For,กำหนดบทบาทให้ +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,การเชื่อมโยงอัตโนมัติสามารถเปิดใช้งานได้สำหรับบัญชีอีเมลเดียวเท่านั้น apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,ไม่มีบัญชีอีเมลที่ได้รับมอบหมาย +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ไม่ได้ตั้งค่าบัญชีอีเมล โปรดสร้างบัญชีอีเมลใหม่จากการตั้งค่า> อีเมล> บัญชีอีเมล apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,การมอบหมาย +DocType: Google Contacts,Last Sync On,เปิดการซิงค์ครั้งสุดท้าย apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},ได้รับจาก {0} ผ่านกฎอัตโนมัติ {1} apps/frappe/frappe/config/website.py,Portal,พอร์ทัล apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,ขอขอบคุณสำหรับอีเมลของคุณ @@ -1597,7 +1623,6 @@ DocType: GSuite Settings,GSuite Settings,การตั้งค่า GSuite DocType: Integration Request,Remote,ห่างไกล DocType: File,Thumbnail URL,URL รูปย่อ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,ดาวน์โหลดรายงาน -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,ตั้งค่า> ผู้ใช้ apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},ส่งออกการปรับแต่งสำหรับ {0} ไปที่:
{1} DocType: GCalendar Account,Calendar Name,ชื่อปฏิทิน apps/frappe/frappe/templates/emails/new_user.html,Your login id is,รหัสเข้าสู่ระบบของคุณคือ @@ -1647,6 +1672,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},ไ apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,ฟิลด์ภาพต้องเป็นชื่อฟิลด์ที่ถูกต้อง apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,คุณต้องเข้าสู่ระบบเพื่อเข้าถึงหน้านี้ DocType: Assignment Rule,Example: {{ subject }},ตัวอย่าง: {{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,ชื่อฟิลด์ {0} ถูก จำกัด apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},คุณไม่สามารถยกเลิกการตั้งค่า 'อ่านอย่างเดียว' สำหรับฟิลด์ {0} DocType: Social Login Key,Enable Social Login,เปิดใช้งานการลงชื่อเข้าใช้โซเชียล DocType: Workflow,Rules defining transition of state in the workflow.,กฎที่กำหนดการเปลี่ยนสถานะในเวิร์กโฟลว์ @@ -1667,10 +1693,10 @@ DocType: Website Settings,Route Redirects,การเปลี่ยนเส apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,กล่องจดหมายอีเมล์ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},กู้คืน {0} เป็น {1} DocType: Assignment Rule,Automatically Assign Documents to Users,กำหนดเอกสารให้กับผู้ใช้โดยอัตโนมัติ +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,เปิด Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,เทมเพลตอีเมลสำหรับข้อความค้นหาทั่วไป DocType: Letter Head,Letter Head Based On,หัวจดหมายขึ้นอยู่กับ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,กรุณาปิดหน้าต่างนี้ -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,การชำระเงินเสร็จสมบูรณ์ DocType: Contact,Designation,การแต่งตั้ง DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,เมตาแท็ก @@ -1709,6 +1735,7 @@ DocType: System Settings,Choose authentication method to be used by all users, DocType: Error Snapshot,Parent Error Snapshot,ภาพรวมข้อผิดพลาดของผู้ปกครอง DocType: GCalendar Account,GCalendar Account,บัญชี GCalendar DocType: Language,Language Name,ชื่อภาษา +DocType: Workflow Document State,Workflow Action is not created for optional states,การดำเนินการของเวิร์กโฟลว์ไม่ได้ถูกสร้างขึ้นสำหรับสถานะทางเลือก DocType: Customize Form,Customize Form,กำหนดฟอร์มเอง DocType: DocType,Image Field,ฟิลด์รูปภาพ apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),เพิ่ม {0} ({1}) @@ -1750,6 +1777,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,ใช้กฎนี้หากผู้ใช้เป็นเจ้าของ DocType: About Us Settings,Org History Heading,หัวเรื่องประวัติองค์กร apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,เซิร์ฟเวอร์ผิดพลาด +DocType: Contact,Google Contacts Description,คำอธิบายของ Google Contacts apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,ไม่สามารถเปลี่ยนชื่อบทบาทมาตรฐานได้ DocType: Review Level,Review Points,ตรวจสอบคะแนน apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,พารามิเตอร์ที่หายไปชื่อคณะกรรมการ Kanban @@ -1767,7 +1795,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,ไม่ได้อยู่ในโหมดนักพัฒนาซอฟต์แวร์! ตั้งใน site_config.json หรือสร้าง 'กำหนดเอง' DocType apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,ได้รับคะแนน {0} คะแนน DocType: Web Form,Success Message,ข้อความสำเร็จ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","สำหรับการเปรียบเทียบให้ใช้> 5, <10 หรือ = 324 สำหรับช่วงใช้ 5:10 (สำหรับค่าระหว่าง 5 และ 10)" DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",คำอธิบายสำหรับหน้ารายการในข้อความล้วนเพียงไม่กี่บรรทัด (สูงสุด 140 ตัวอักษร) apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,แสดงการอนุญาต DocType: DocType,Restrict To Domain,จำกัด เฉพาะโดเมน @@ -1789,6 +1816,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,ไม apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,กำหนดปริมาณ DocType: Auto Repeat,End Date,วันที่สิ้นสุด DocType: Workflow Transition,Next State,สถานะถัดไป +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} ซิงค์ Google Contacts แล้ว DocType: System Settings,Is First Startup,คือการเริ่มต้นครั้งแรก apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},อัปเดตเป็น {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,ย้ายไปที่ @@ -1838,6 +1866,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} ปฏิทิน apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,เทมเพลตนำเข้าข้อมูล DocType: Workflow State,hand-left,มือซ้าย +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,เลือกหลายรายการ apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,ขนาดสำรอง: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},เชื่อมโยงกับ {0} DocType: Braintree Settings,Private Key,รหัสส่วนตัว @@ -1880,13 +1909,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,ดอกเบี้ย DocType: Bulk Update,Limit,จำกัด DocType: Print Settings,Print taxes with zero amount,พิมพ์ภาษีด้วยจำนวนศูนย์ -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ไม่ได้ตั้งค่าบัญชีอีเมล โปรดสร้างบัญชีอีเมลใหม่จากการตั้งค่า> อีเมล> บัญชีอีเมล DocType: Workflow State,Book,หนังสือ DocType: S3 Backup Settings,Access Key ID,รหัสคีย์เข้า DocType: Chat Message,URLs,URL ที่ apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,เดาชื่อและนามสกุลได้ง่าย ๆ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},รายงาน {0} DocType: About Us Settings,Team Members Heading,หัวเรื่องสมาชิกในทีม +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,เลือกรายการ apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},เอกสาร {0} ถูกตั้งค่าเป็นสถานะ {1} โดย {2} DocType: Address Template,Address Template,เทมเพลตที่อยู่ DocType: Workflow State,step-backward,ขั้นตอนย้อนหลัง @@ -1910,6 +1939,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,ส่งออกการอนุญาตที่กำหนดเอง apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,ไม่มี: สิ้นสุดเวิร์กโฟลว์ DocType: Version,Version,รุ่น +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,เปิดรายการ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 เดือน DocType: Chat Message,Group,กลุ่ม apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},มีปัญหากับไฟล์ URL: {0} @@ -1965,6 +1995,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 ปี apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} คืนคะแนนของคุณในวันที่ {1} DocType: Workflow State,arrow-down,ลูกศรลง DocType: Data Import,Ignore encoding errors,ละเว้นข้อผิดพลาดในการเข้ารหัส +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,ภูมิประเทศ DocType: Letter Head,Letter Head Name,ชื่อหัวจดหมาย DocType: Web Form,Client Script,สคริปต์ลูกค้า DocType: Assignment Rule,Higher priority rule will be applied first,กฎที่มีลำดับความสำคัญสูงกว่าจะถูกนำไปใช้ก่อน @@ -2009,6 +2040,7 @@ DocType: Kanban Board Column,Green,สีเขียว apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,จำเป็นต้องกรอกเฉพาะฟิลด์ที่จำเป็นสำหรับบันทึกใหม่ คุณสามารถลบคอลัมน์ที่ไม่บังคับหากคุณต้องการ apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.",{0} ต้องเริ่มต้นและลงท้ายด้วยตัวอักษรและสามารถประกอบด้วยตัวอักษรยัติภังค์หรือขีดล่างเท่านั้น +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,การดำเนินการหลักของทริกเกอร์ apps/frappe/frappe/core/doctype/user/user.js,Create User Email,สร้างอีเมลผู้ใช้ apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,เรียงฟิลด์ {0} ต้องเป็นชื่อฟิลด์ที่ถูกต้อง DocType: Auto Email Report,Filter Meta,ตัวกรอง Meta @@ -2038,6 +2070,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,เขตเวลา apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,กำลังโหลด ... DocType: Auto Email Report,Half Yearly,ครึ่งปี +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,ประวัติของฉัน apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,วันที่แก้ไขล่าสุด DocType: Contact,First Name,ชื่อจริง DocType: Post,Comments,ความคิดเห็น @@ -2060,6 +2093,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,แฮชเนื้อหา apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},โพสต์โดย {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},ได้รับมอบหมาย {0} {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,ไม่มีการซิงค์ Google Contacts ใหม่ DocType: Workflow State,globe,โลก apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},ค่าเฉลี่ยของ {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,ล้างบันทึกข้อผิดพลาด @@ -2086,6 +2120,8 @@ DocType: Workflow State,Inverse,ผกผัน DocType: Activity Log,Closed,ปิด DocType: Report,Query,สอบถาม DocType: Notification,Days After,วันหลังจากนั้น +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,ทางลัดหน้า +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,ภาพเหมือน apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,คำขอหมดเวลา DocType: System Settings,Email Footer Address,ที่อยู่ท้ายกระดาษ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,อัพเดตจุดพลังงาน @@ -2113,6 +2149,7 @@ For Select, enter list of Options, each on a new line.",สำหรับลิ apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 นาทีที่ผ่านมา apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,ไม่มีเซสชันที่ใช้งานอยู่ apps/frappe/frappe/model/base_document.py,Row,แถว +DocType: Contact,Middle Name,ชื่อกลาง apps/frappe/frappe/public/js/frappe/request.js,Please try again,กรุณาลองอีกครั้ง DocType: Dashboard Chart,Chart Options,ตัวเลือกแผนภูมิ DocType: Data Migration Run,Push Failed,ผลักดันล้มเหลว @@ -2141,6 +2178,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,ปรับขนาดเล็ก DocType: Comment,Relinked,relinked DocType: Role Permission for Page and Report,Roles HTML,บทบาท HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,ไป apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,เวิร์กโฟลว์จะเริ่มขึ้นหลังจากบันทึก DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.",หากข้อมูลของคุณเป็น HTML โปรดคัดลอกวางรหัส HTML ที่ถูกต้องพร้อมแท็ก apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,วันที่มักจะคาดเดาได้ง่าย @@ -2169,7 +2207,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,ไอคอนเดสก์ท็อป apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,ยกเลิกเอกสารนี้ apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,ช่วงวันที่ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,ตั้งค่า> สิทธิ์ผู้ใช้ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} ได้รับความนิยม {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,เปลี่ยนค่าแล้ว apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,ข้อผิดพลาดในการแจ้งเตือน @@ -2234,6 +2271,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,ลบเป็นกลุ่ม DocType: DocShare,Document Name,ชื่อเอกสาร apps/frappe/frappe/config/customization.py,Add your own translations,เพิ่มคำแปลของคุณเอง +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,นำทางรายการลง DocType: S3 Backup Settings,eu-central-1,EU-กลาง 1 DocType: Auto Repeat,Yearly,รายปี apps/frappe/frappe/public/js/frappe/model/model.js,Rename,ตั้งชื่อใหม่ @@ -2284,6 +2322,7 @@ DocType: Workflow State,plane,เครื่องบิน apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,ข้อผิดพลาดชุดซ้อน กรุณาติดต่อผู้ดูแลระบบ apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,แสดงรายงาน DocType: Auto Repeat,Auto Repeat Schedule,กำหนดการทำซ้ำอัตโนมัติ +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,ดูการอ้างอิง DocType: Address,Office,สำนักงาน DocType: LDAP Settings,StartTLS,STARTTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} วันที่ผ่านมา @@ -2317,7 +2356,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required, apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,การตั้งค่าของฉัน apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,ชื่อกลุ่มต้องไม่ว่างเปล่า DocType: Workflow State,road,ถนน -DocType: Website Route Redirect,Source,แหล่ง +DocType: Contact,Source,แหล่ง apps/frappe/frappe/www/third_party_apps.html,Active Sessions,เซสชันที่ใช้งานอยู่ apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,สามารถมีเพียงหนึ่งเท่าในแบบฟอร์ม apps/frappe/frappe/public/js/frappe/chat.js,New Chat,ใหม่แชท @@ -2339,6 +2378,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,โปรดป้อน URL อนุญาต DocType: Email Account,Send Notification to,ส่งการแจ้งเตือนไปที่ apps/frappe/frappe/config/integrations.py,Dropbox backup settings,การตั้งค่าการสำรองข้อมูล Dropbox +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,มีบางอย่างผิดพลาดระหว่างรุ่นโทเค็น คลิกที่ {0} เพื่อสร้างใหม่ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,ลบการปรับแต่งทั้งหมดหรือไม่ apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,ผู้ดูแลระบบเท่านั้นที่สามารถแก้ไขได้ DocType: Auto Repeat,Reference Document,เอกสารอ้างอิง @@ -2363,6 +2403,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,สามารถตั้งค่าบทบาทสำหรับผู้ใช้จากหน้าผู้ใช้ของพวกเขา DocType: Website Settings,Include Search in Top Bar,รวมการค้นหาในแถบด้านบน apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[ด่วน] เกิดข้อผิดพลาดขณะสร้าง% s ซ้ำสำหรับ% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,ทางลัดส่วนกลาง DocType: Help Article,Author,ผู้เขียน DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,ไม่พบเอกสารสำหรับตัวกรองที่ระบุ @@ -2398,10 +2439,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, แถว {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.",หากคุณกำลังอัปโหลดบันทึกใหม่ "Naming Series" จะกลายเป็นสิ่งจำเป็นหากมี apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,แก้ไขคุณสมบัติ -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,ไม่สามารถเปิดอินสแตนซ์เมื่อ {0} ถูกเปิด +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,ไม่สามารถเปิดอินสแตนซ์เมื่อ {0} ถูกเปิด DocType: Activity Log,Timeline Name,ชื่อเส้นเวลา DocType: Comment,Workflow,ขั้นตอนการทำงาน apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,โปรดตั้งค่า URL ฐานในรหัสเข้าสู่ระบบสังคมสำหรับ Frappe +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,แป้นพิมพ์ลัด DocType: Portal Settings,Custom Menu Items,รายการเมนูที่กำหนดเอง apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,"ความยาวของ {0} ควรอยู่ระหว่าง 1 ถึง 1,000" apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,การเชื่อมต่อขาดหายไป คุณสมบัติบางอย่างอาจไม่ทำงาน @@ -2464,6 +2506,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,เพิ DocType: DocType,Setup,ติดตั้ง apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,สร้าง {0} สำเร็จแล้ว apps/frappe/frappe/www/update-password.html,New Password,รหัสผ่านใหม่ +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,เลือกฟิลด์ apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,ออกจากการสนทนานี้ DocType: About Us Settings,Team Members,สมาชิกในทีม DocType: Blog Settings,Writers Introduction,บทนำนักเขียน @@ -2533,13 +2576,12 @@ DocType: Chat Room,Name,ชื่อ DocType: Communication,Email Template,เทมเพลตอีเมล DocType: Energy Point Settings,Review Levels,ระดับความเห็น DocType: Print Format,Raw Printing,การพิมพ์แบบดิบ -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,ไม่สามารถเปิด {0} ได้เมื่อเปิดอินสแตนซ์ +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,ไม่สามารถเปิด {0} ได้เมื่อเปิดอินสแตนซ์ DocType: DocType,"Make ""name"" searchable in Global Search",ทำให้ "ชื่อ" ค้นหาได้ในการค้นหาทั่วโลก DocType: Data Migration Mapping,Data Migration Mapping,การแมปการย้ายข้อมูล DocType: Data Import,Partially Successful,ประสบความสำเร็จบางส่วน DocType: Communication,Error,ความผิดพลาด apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},ไม่สามารถเปลี่ยน Fieldtype จาก {0} เป็น {1} ในแถว {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","เกิดข้อผิดพลาดในการเชื่อมต่อกับแอปพลิเคชัน QZ Tray ...

คุณต้องมีแอปพลิเคชัน QZ Tray ติดตั้งและใช้งานเพื่อใช้คุณสมบัติการพิมพ์แบบ Raw

คลิกที่นี่เพื่อดาวน์โหลดและติดตั้ง QZ Tray
คลิกที่นี่เพื่อเรียนรู้เพิ่มเติมเกี่ยวกับการพิมพ์แบบดิบ" apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,ถ่ายภาพ apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,หลีกเลี่ยงปีที่เกี่ยวข้องกับคุณ DocType: Web Form,Allow Incomplete Forms,อนุญาตแบบฟอร์มที่ไม่สมบูรณ์ @@ -2635,7 +2677,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",เลือก target = "_blank" เพื่อเปิดในหน้าใหม่ DocType: Portal Settings,Portal Menu,เมนูพอร์ทัล DocType: Website Settings,Landing Page,หน้า Landing -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,กรุณาสมัครหรือเข้าสู่ระบบเพื่อเริ่มต้น DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",ตัวเลือกการติดต่อเช่น "แบบสอบถามการขายแบบสอบถามการสนับสนุน" ฯลฯ ในแต่ละบรรทัดใหม่หรือคั่นด้วยเครื่องหมายจุลภาค apps/frappe/frappe/twofactor.py,Verfication Code,รหัสยืนยัน apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} ยกเลิกการสมัครแล้ว @@ -2721,6 +2762,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,การแม DocType: Address,Sales User,ผู้ใช้งานฝ่ายขาย apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)",เปลี่ยนคุณสมบัติของฟิลด์ (ซ่อนอ่านอย่างเดียวได้รับอนุญาต ฯลฯ ) DocType: Property Setter,Field Name,ชื่อฟิลด์ +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,ลูกค้า DocType: Print Settings,Font Size,ขนาดตัวอักษร DocType: User,Last Password Reset Date,วันที่รีเซ็ตรหัสผ่านล่าสุด DocType: System Settings,Date and Number Format,รูปแบบวันที่และหมายเลข @@ -2786,6 +2828,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,โหนดก apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,ผสานกับที่มีอยู่ DocType: Blog Post,Blog Intro,บล็อกแนะนำ apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,ใหม่พูดถึง +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,ข้ามไปที่สนาม DocType: Prepared Report,Report Name,ชื่อรายงาน apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,โปรดรีเฟรชเพื่อรับเอกสารล่าสุด apps/frappe/frappe/core/doctype/communication/communication.js,Close,ปิด @@ -2795,10 +2838,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,เหตุการณ์ DocType: Social Login Key,Access Token URL,เข้าถึงโทเค็น URL apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,โปรดตั้งค่าคีย์การเข้าถึง Dropbox ในเว็บไซต์ของคุณ +DocType: Google Contacts,Google Contacts,Google Contacts DocType: User,Reset Password Key,รีเซ็ตรหัสผ่าน apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,ดัดแปลงโดย DocType: User,Bio,ไบโอ apps/frappe/frappe/limits.py,"To renew, {0}.",หากต้องการต่ออายุ {0} +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,บันทึกเรียบร้อยแล้ว +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,ส่งอีเมลไปที่ {0} เพื่อลิงก์ที่นี่ DocType: File,Folder,โฟลเดอร์ DocType: DocField,Perm Level,ระดับการใช้งาน DocType: Print Settings,Page Settings,การตั้งค่าหน้า @@ -2828,6 +2874,7 @@ DocType: Workflow State,remove-sign,เอาเข้าสู่ระบบ DocType: Dashboard Chart,Full,เต็ม DocType: DocType,User Cannot Create,ผู้ใช้ไม่สามารถสร้าง apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,คุณได้รับคะแนน {0} +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,ตั้งค่า> ผู้ใช้ DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.",หากคุณตั้งค่ารายการนี้จะเป็นแบบดรอปดาวน์ภายใต้พาเรนต์ที่เลือก apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,ไม่มีอีเมล apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,ฟิลด์ต่อไปนี้หายไป: @@ -2841,13 +2888,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,แ DocType: Web Form,Web Form Fields,เขตข้อมูลฟอร์มบนเว็บ DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,แบบฟอร์มที่ผู้ใช้สามารถแก้ไขได้บนเว็บไซต์ -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,ยกเลิก {0} อย่างถาวรหรือไม่ +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,ยกเลิก {0} อย่างถาวรหรือไม่ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,ตัวเลือก 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,ผลรวม apps/frappe/frappe/utils/password_strength.py,This is a very common password.,นี่เป็นรหัสผ่านที่พบบ่อยมาก DocType: Personal Data Deletion Request,Pending Approval,รอการอนุมัติ apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,ไม่สามารถกำหนดเอกสารได้อย่างถูกต้อง apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},ไม่อนุญาตสำหรับ {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,ไม่มีค่าที่จะแสดง DocType: Personal Data Download Request,Personal Data Download Request,คำขอดาวน์โหลดข้อมูลส่วนบุคคล apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} แบ่งปันเอกสารนี้กับ {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},เลือก {0} @@ -2862,7 +2910,6 @@ DocType: Custom DocPerm,Delete,ลบ apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},อีเมลนี้ถูกส่งไปที่ {0} และคัดลอกไปที่ {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,การเข้าสู่ระบบหรือรหัสผ่านไม่ถูกต้อง DocType: Social Login Key,Social Login Key,รหัสเข้าสู่ระบบสังคม -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,โปรดตั้งค่าบัญชีอีเมลเริ่มต้นจากตั้งค่า> อีเมล> บัญชีอีเมล apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,บันทึกตัวกรองแล้ว DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",ควรจัดรูปแบบสกุลเงินนี้อย่างไร? หากไม่ได้ตั้งค่าจะใช้ค่าเริ่มต้นของระบบ apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} ถูกตั้งค่าเป็นสถานะ {2} @@ -2988,6 +3035,7 @@ DocType: User,Location,ที่ตั้ง apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,ไม่มีข้อมูล DocType: Website Meta Tag,Website Meta Tag,แท็ก Meta เว็บไซต์ DocType: Workflow State,film,ฟิล์ม +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,คัดลอกไปที่คลิปบอร์ดแล้ว apps/frappe/frappe/integrations/utils.py,{0} Settings not found,ไม่พบการตั้งค่า {0} apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,ป้ายกำกับบังคับ DocType: Webhook,Webhook Headers,Webhook Headers @@ -3196,7 +3244,7 @@ DocType: Address,Address Line 1,ที่อยู่บรรทัดที่ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,สำหรับประเภทเอกสาร apps/frappe/frappe/model/base_document.py,Data missing in table,ไม่มีข้อมูลในตาราง apps/frappe/frappe/utils/bot.py,Could not identify {0},ไม่สามารถระบุ {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,แบบฟอร์มนี้ได้รับการแก้ไขหลังจากที่คุณโหลด +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,แบบฟอร์มนี้ได้รับการแก้ไขหลังจากที่คุณโหลด apps/frappe/frappe/www/login.html,Back to Login,กลับไปเข้าระบบ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,ไม่ได้ตั้งค่า DocType: Data Migration Mapping,Pull,ดึง @@ -3264,6 +3312,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,การแมปต apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,การตั้งค่าบัญชีอีเมลโปรดป้อนรหัสผ่านของคุณสำหรับ: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,มีการเขียนมากเกินไปในคำขอเดียว กรุณาส่งคำขอขนาดเล็ก DocType: Social Login Key,Salesforce,Salesforce +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},การอิมพอร์ต {0} จาก {1} DocType: User,Tile,กระเบื้อง apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} ห้องต้องมีผู้ใช้ไม่เกินหนึ่งคน DocType: Email Rule,Is Spam,เป็นสแปม @@ -3301,7 +3350,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,โฟลเดอร์อย่างใกล้ชิด DocType: Data Migration Run,Pull Update,ดึงการปรับปรุง apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},รวม {0} เข้ากับ {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

DocType: SMS Settings,Enter url parameter for receiver nos,ป้อนพารามิเตอร์ url สำหรับ receiver nos apps/frappe/frappe/utils/jinja.py,Syntax error in template,ข้อผิดพลาดทางไวยากรณ์ในแม่แบบ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,โปรดตั้งค่าตัวกรองในตารางตัวกรองรายงาน @@ -3314,6 +3362,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.",ขออภ DocType: System Settings,In Days,ในหลายวัน DocType: Report,Add Total Row,เพิ่มแถวทั้งหมด apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,การเริ่มเซสชันล้มเหลว +DocType: Translation,Verified,ได้รับการยืนยัน DocType: Print Format,Custom HTML Help,วิธีใช้ HTML ที่กำหนดเอง DocType: Address,Preferred Billing Address,ที่อยู่สำหรับการเรียกเก็บเงินที่ต้องการ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,ได้รับมอบหมายให้ @@ -3328,7 +3377,6 @@ DocType: Help Article,Intermediate,สื่อกลาง DocType: Module Def,Module Name,ชื่อโมดูล DocType: OAuth Authorization Code,Expiration time,เวลาหมดอายุ apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.",กำหนดรูปแบบเริ่มต้นขนาดหน้าสไตล์การพิมพ์ ฯลฯ -apps/frappe/frappe/desk/like.py,You cannot like something that you created,คุณไม่ชอบสิ่งที่คุณสร้างขึ้น DocType: System Settings,Session Expiry,เซสชั่นหมดอายุ DocType: DocType,Auto Name,ชื่ออัตโนมัติ apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,เลือกไฟล์แนบ @@ -3356,6 +3404,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,หน้าระบบ DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,หมายเหตุ: จะส่งอีเมลเริ่มต้นสำหรับการสำรองข้อมูลที่ล้มเหลว DocType: Custom DocPerm,Custom DocPerm,DocPerm ที่กำหนดเอง +DocType: Translation,PR sent,ส่ง PR แล้ว DocType: Tag Doc Category,Doctype to Assign Tags,Doctype เพื่อกำหนดแท็ก DocType: Address,Warehouse,คลังสินค้า apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,การตั้งค่า Dropbox @@ -3423,7 +3472,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Enter เพื่อเพิ่มความคิดเห็น apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,ไม่สามารถเลือกฟิลด์ {0} ได้ DocType: User,Birth Date,วันที่เกิด -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,ด้วยการเยื้องกลุ่ม DocType: List View Setting,Disable Count,ปิดใช้งานการนับ DocType: Contact Us Settings,Email ID,ชื่ออีเมล์ apps/frappe/frappe/utils/password.py,Incorrect User or Password,ผู้ใช้หรือรหัสผ่านไม่ถูกต้อง @@ -3458,6 +3506,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,บทบาทนี้อัพเดตสิทธิ์ผู้ใช้สำหรับผู้ใช้ DocType: Website Theme,Theme,กระทู้ DocType: Web Form,Show Sidebar,แสดงแถบด้านข้าง +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,บูรณาการของ Google Contacts apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,กล่องจดหมายเริ่มต้น apps/frappe/frappe/www/login.py,Invalid Login Token,โทเค็นเข้าสู่ระบบไม่ถูกต้อง apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,ก่อนตั้งชื่อและบันทึกบันทึก @@ -3485,7 +3534,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,กรุณาแก้ไข DocType: Top Bar Item,Top Bar Item,รายการบาร์ด้านบน ,Role Permissions Manager,ผู้จัดการสิทธิ์บทบาท -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,มีข้อผิดพลาด กรุณารายงานสิ่งนี้ +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} ปีที่แล้ว apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,หญิง DocType: System Settings,OTP Issuer Name,ชื่อผู้ออก OTP apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,เพิ่มเป็นสิ่งที่ต้องทำ @@ -3585,6 +3634,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings",กา apps/frappe/frappe/model/document.py,none of,ไม่มี DocType: Desktop Icon,Page,หน้า DocType: Workflow State,plus-sign,บวกเข้าสู่ระบบ +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,ล้างแคชและโหลดซ้ำ apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,ไม่สามารถอัปเดต: ลิงก์ไม่ถูกต้อง / หมดอายุ DocType: Kanban Board Column,Yellow,สีเหลือง DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),จำนวนคอลัมน์สำหรับเขตข้อมูลในตาราง (คอลัมน์รวมในตารางควรน้อยกว่า 11) @@ -3599,6 +3649,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,ใ DocType: Activity Log,Date,วันที่ DocType: Communication,Communication Type,ประเภทการสื่อสาร apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,ตารางผู้ปกครอง +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,นำทางรายการขึ้น DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,แสดงข้อผิดพลาดแบบเต็มและอนุญาตการรายงานปัญหาแก่ผู้พัฒนา DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3620,7 +3671,6 @@ DocType: Notification Recipient,Email By Role,อีเมล์ตามบท apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,โปรดอัปเกรดเพื่อเพิ่มสมาชิกมากกว่า {0} คน apps/frappe/frappe/email/queue.py,This email was sent to {0},อีเมลนี้ถูกส่งไปที่ {0} DocType: User,Represents a User in the system.,แสดงถึงผู้ใช้ในระบบ -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},หน้า {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,เริ่มรูปแบบใหม่ apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,เพิ่มความคิดเห็น apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} จาก {1} diff --git a/frappe/translations/tr.csv b/frappe/translations/tr.csv index a66546272e..9f4c1b0b46 100644 --- a/frappe/translations/tr.csv +++ b/frappe/translations/tr.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Degradeleri Etkinleştir DocType: DocType,Default Sort Order,Varsayılan sıralama düzeni apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Rapordan yalnızca Sayısal alanlar gösteriliyor +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Menü ve Kenar Çubuğunda ek kısayolları tetiklemek için Alt Tuşuna basın DocType: Workflow State,folder-open,Klasör açık DocType: Customize Form,Is Table,Tablo mu apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Ekli dosya açılamıyor. CSV olarak dışa aktardınız mı? DocType: DocField,No Copy,Kopya yok DocType: Custom Field,Default Value,Varsayılan değer apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Eklemek gelen postalar için zorunludur +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Kişileri Eşitle DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Veri Taşıma Eşlemesi Detayı apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Takip etmekten vazgeç apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.","Raw Print" ile PDF yazdırma henüz desteklenmiyor. Lütfen Yazıcı Ayarlarını Yazıcı Ayarları'ndan kaldırın ve tekrar deneyin. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} ve {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Filtreler kaydedilirken bir hata oluştu apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Şifrenizi girin apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Giriş ve Ekler klasörleri silinemiyor +DocType: Email Account,Enable Automatic Linking in Documents,Belgelerde Otomatik Bağlamayı Etkinleştirme DocType: Contact Us Settings,Settings for Contact Us Page,Bize Ulaşın Sayfası için Ayarlar DocType: Social Login Key,Social Login Provider,Sosyal Giriş Sağlayıcı +DocType: Email Account,"For more information, click here.","Daha fazla bilgi için buraya tıklayın ." DocType: Transaction Log,Previous Hash,Önceki karma DocType: Notification,Value Changed,Değer Değişti DocType: Report,Report Type,Rapor türü @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Enerji Noktası Kuralı apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,Lütfen sosyal giriş etkin olmadan önce Müşteri Kimliği girin DocType: Communication,Has Attachment,Ek vardır DocType: User,Email Signature,E-posta İmzası -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} yıl önce ,Addresses And Contacts,Adresler ve Kişiler apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Bu Kanban Kurulu özel olacak DocType: Data Migration Run,Current Mapping,Mevcut Haritalama @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","TÜM olarak Eşitleme Seçeneğini seçiyorsunuz, Sunucudan okunmamış iletinin yanı sıra tüm \ okunanları yeniden senkronize edecek. Bu ayrıca İletişim \ 'in (e-postaların) çoğaltılmasına da neden olabilir." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Son senkronizasyon {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Başlık içeriği değiştirilemiyor +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

'İçin sonuç bulunamadı

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Gönderimden sonra {0} değişikliğine izin verilmiyor apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Uygulama yeni bir sürüme güncellendi, lütfen bu sayfayı yenile" DocType: User,User Image,Kullanıcı Resmi @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},{0} o apps/frappe/frappe/public/js/frappe/chat.js,Discard,ıskarta DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,En iyi sonuçları elde etmek için saydam genişlikte yaklaşık 150 piksel boyutunda bir görüntü seçin. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,Nüks +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} değer seçildi DocType: Blog Post,Email Sent,E-posta gönderildi DocType: Communication,Read by Recipient On,Alıcı Tarafından Oku DocType: User,Allow user to login only after this hour (0-24),Kullanıcının yalnızca bu saatten sonra giriş yapmasına izin ver (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Verilecek Modül DocType: DocType,Fields,Alanlar -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Bu dokümanı yazdırmanıza izin verilmiyor +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Bu dokümanı yazdırmanıza izin verilmiyor apps/frappe/frappe/public/js/frappe/model/model.js,Parent,ebeveyn apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Oturumunuzun süresi doldu, devam etmek için lütfen tekrar giriş yapın." DocType: Assignment Rule,Priority,öncelik @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,OTP Sırrını Sı DocType: DocType,UPPER CASE,Üst Durum apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,Lütfen Email Adresinizi ayarlayın DocType: Communication,Marked As Spam,Spam Olarak İşaretlendi +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Google Kişileri senkronize edilecek e-posta adresi. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Aboneleri İçe Aktar apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Filtreyi Kaydet DocType: Address,Preferred Shipping Address,Tercih edilen teslimat adresi DocType: GCalendar Account,The name that will appear in Google Calendar,Google Takvim’de görünecek olan ad +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Yenileme Tokenini oluşturmak için {0} 'a tıklayın. DocType: Email Account,Disable SMTP server authentication,SMTP sunucusu kimlik doğrulamasını devre dışı bırak DocType: Email Account,Total number of emails to sync in initial sync process ,İlk senkronizasyon işleminde senkronize edilecek toplam e-posta sayısı DocType: System Settings,Enable Password Policy,Şifre Politikasını Etkinleştir @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Kodu girin apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Değil DocType: Auto Repeat,Start Date,Başlangıç tarihi apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Grafiği ayarla +DocType: Website Theme,Theme JSON,Tema JSON apps/frappe/frappe/www/list.py,My Account,Hesabım DocType: DocType,Is Published Field,Yayınlandı DocType: DocField,Set non-standard precision for a Float or Currency field,Float veya Para Birimi alanı için standart olmayan hassasiyeti ayarlama @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Reference: {{ reference_doctype }} {{ reference_name }} Ekle Reference: {{ reference_doctype }} {{ reference_name }} belge başvurusu göndermek için DocType: LDAP Settings,LDAP First Name Field,LDAP İlk Ad Alanı apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Varsayılan Gönderme ve Gelen Kutusu -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Kurulum> Formu Özelleştir apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.","Güncellemek için, yalnızca seçici sütunları güncelleyebilirsiniz." apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1','Kontrol' alan tipi için varsayılan değer '0' veya '1' olmalıdır apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Bu dokümanı paylaş @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Alanlar HTML DocType: Blog Settings,Blog Settings,Blog ayarları apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DocType'ın adı bir harfle başlamalıdır, ancak yalnızca harflerden, sayılardan, boşluklardan ve alt çizgilerden oluşabilir." +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Kurulum> Kullanıcı İzinleri DocType: Communication,Integrations can use this field to set email delivery status,Entegrasyonlar bu alanı e-posta teslim durumunu ayarlamak için kullanabilir apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Şerit ödeme ağ geçidi ayarları DocType: Print Settings,Fonts,Yazı DocType: Notification,Channel,Kanal DocType: Communication,Opened,Açıldı DocType: Workflow Transition,Conditions,Koşullar +apps/frappe/frappe/config/website.py,A user who posts blogs.,Blog gönderen bir kullanıcı. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Hesabınız yok mu? kaydol apps/frappe/frappe/utils/file_manager.py,Added {0},{0} eklendi DocType: Newsletter,Create and Send Newsletters,Bülten Yarat ve Gönder DocType: Website Settings,Footer Items,Altbilgi Öğeleri +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Lütfen Kurulum> E-posta> E-posta Hesabı'ndan varsayılan E-posta Hesabı'nı ayarlayın. DocType: Website Slideshow Item,Website Slideshow Item,Web Sitesi Slayt Gösterisi Öğesi apps/frappe/frappe/config/integrations.py,Register OAuth Client App,OAuth Client App'a kaydolun DocType: Error Snapshot,Frames,Çerçeveler @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Seviye 0, belge seviyesi izinleri içindir, alan seviyesi izinleri için \ üst seviyeleridir." DocType: Address,City/Town,İl / İlçe DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Bu, mevcut temanızı sıfırlar, devam etmek istediğinizden emin misiniz?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},{0} 'de zorunlu alanlar zorunludur apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},{0} e-posta hesabına bağlanırken hata oluştu apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Tekrarlama oluştururken bir hata oluştu @@ -528,7 +537,7 @@ DocType: Event,Event Category,Etkinlik Kategorisi apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Dayalı sütunlar apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Başlığı Düzenle DocType: Communication,Received,Alınan -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Bu sayfaya erişim izniniz yok. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Bu sayfaya erişim izniniz yok. DocType: User Social Login,User Social Login,Kullanıcı Sosyal Girişi apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,Bir Python dosyasını bunun kaydedildiği klasöre yazın ve sütunu ve sonucu döndürün. DocType: Contact,Purchase Manager,Satın alma Müdürü @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Graf apps/frappe/frappe/utils/data.py,Operator must be one of {0},Operatör {0} 'dan biri olmalı apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Eğer Sahipse DocType: Data Migration Run,Trigger Name,Tetikleyici Adı -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Blogunuza başlıkları ve tanıtımları yazın. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Alanı Kaldır apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Tüm daraltmak apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Arka plan rengi @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,Bar DocType: SMS Settings,Enter url parameter for message,Mesaj için url parametresini girin apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Yeni Özel Baskı Biçimi apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} zaten var +DocType: Workflow Document State,Is Optional State,İsteğe Bağlı Durum DocType: Address,Purchase User,Satınalma Kullanıcısı DocType: Data Migration Run,Insert,Ekle DocType: Web Form,Route to Success Link,Başarı Bağlantısına Git @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,{0} kul DocType: File,Is Home Folder,Giriş klasörü apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Tür: DocType: Post,Is Pinned,Sabitlenmiş -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},'{0}' {1} için izin yok +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},'{0}' {1} için izin yok DocType: Patch Log,Patch Log,Yama Günlüğü DocType: Print Format,Print Format Builder,Baskı Biçimi Oluşturucu 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","Etkinleştirildiğinde, tüm kullanıcılar İki Faktör Kimlik Doğrulaması kullanarak herhangi bir IP Adresinden giriş yapabilir. Bu, yalnızca Kullanıcı Sayfasındaki belirli kullanıcılar için ayarlanabilir." apps/frappe/frappe/utils/data.py,only.,sadece. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,'{0}' Koşulu geçersiz DocType: Auto Email Report,Day of Week,Haftanın günü +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Google Ayarlarında Google API'yi etkinleştirin. DocType: DocField,Text Editor,Metin düzeltici apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Kesmek apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Bir komutu arayın veya yazın @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,DB yedeklerinin sayısı 1'den az olamaz DocType: Workflow State,ban-circle,ban daire DocType: Data Export,Excel,Excel +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Üstbilgi, Ekmek Kırıntıları ve Meta Etiketler" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Destek E-posta Adresi Belirtilmemiş DocType: Comment,Published,Yayınlanan DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.",Not: En iyi sonucu elde etmek için görüntüler aynı boyutta olmalı ve genişlik yükseklikten büyük olmalıdır. @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Zamanlayıcı Son Etkinlik apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Tüm belge paylaşımlarının raporu DocType: Website Sidebar Item,Website Sidebar Item,Web Sitesi Kenar Çubuğu Öğesi apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Yapmak +DocType: Google Settings,Google Settings,Google Ayarları apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Ülke, Saat Dilimi ve Para Birimi Seçin" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Statik url parametrelerini buraya girin (Ör. Sender = ERPNext, kullanıcı adı = ERPNext, şifre = 1234 vb.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,E-posta Hesabı Yok @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token ,Setup Wizard,Kurulum sihirbazı apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Grafiği Değiştir +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,Senkronizasyon DocType: Data Migration Run,Current Mapping Action,Mevcut Haritalama İşlemi DocType: Email Account,Initial Sync Count,İlk Senkronizasyon Sayısı apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Bize Ulaşın Sayfasının Ayarları. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Baskı Biçimi Türü apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Bu ölçüt için izin yok. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Hepsini genişlet +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Varsayılan Adres Şablonu bulunamadı. Lütfen Kurulum> Yazdırma ve Markalama> Adres Şablonu'ndan yeni bir tane oluşturun. DocType: Tag Doc Category,Tag Doc Category,Doküman Kategorisini Etiketle DocType: Data Import,Generated File,Oluşturulan Dosya apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,notlar @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Zaman çizelgesi alanı bir Bağlantı veya Dinamik Bağlantı olmalıdır DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Bildirimler ve toplu postalar bu giden sunucudan gönderilir. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Bu en iyi 100 ortak şifredir. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Kalıcı olarak {0} gönderilsin mi? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Kalıcı olarak {0} gönderilsin mi? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} mevcut değil, birleştirmek için yeni bir hedef seçin" DocType: Energy Point Rule,Multiplier Field,Çarpan Alanı DocType: Workflow,Workflow State Field,İş Akışı Durumu Alanı @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,"{0}, {1} için yaptığınız çalışmayı {2} puanla takdir etti" DocType: Auto Email Report,Zero means send records updated at anytime,"Sıfır, herhangi bir zamanda güncellenen kayıtları gönderme anlamına gelir" apps/frappe/frappe/model/document.py,Value cannot be changed for {0},{0} için değer değiştirilemez +apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API Ayarları. DocType: System Settings,Force User to Reset Password,Kullanıcı Şifreyi Sıfırlamaya Zorla apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Rapor Oluşturucusu raporları doğrudan rapor oluşturucusu tarafından yönetilir. Yapacak bir şey yok. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Filtreyi Düzenle @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,için DocType: S3 Backup Settings,eu-north-1,ab-kuzey-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Aynı Rol, Seviye ve {1} için yalnızca bir kurala izin verilir" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Bu Web Formu Belgesini güncellemenize izin verilmiyor -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Bu kaydın Maksimum Ek Sınırı'na ulaşıldı. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Bu kaydın Maksimum Ek Sınırı'na ulaşıldı. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,Lütfen Referans İletişim Dokümanlarının dairesel olarak bağlı olmadığından emin olun. DocType: DocField,Allow in Quick Entry,Hızlı Girişe İzin Ver DocType: Error Snapshot,Locals,Yerliler @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,İstisna Türü apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},{0} {1} {2} {3} {4} ile bağlantılı olduğu için silinemiyor ya da iptal edilemiyor apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTP sırrı yalnızca Yönetici tarafından sıfırlanabilir. -DocType: Web Form Field,Page Break,Sayfa sonu DocType: Website Script,Website Script,Web Sitesi Komut Dosyası DocType: Integration Request,Subscription Notification,Abonelik Bildirimi DocType: DocType,Quick Entry,Hızlı giriş @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,Uyarıdan Sonra Mülkiyet Ayarla apps/frappe/frappe/__init__.py,Thank you,teşekkür ederim apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Dahili entegrasyon için gevşek Webhooks apps/frappe/frappe/config/settings.py,Import Data,Verileri İçe Aktar +DocType: Translation,Contributed Translation Doctype Name,Katkıda Bulunan Çeviri Belgesi Adı DocType: Social Login Key,Office 365,Ofis 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,İD DocType: Review Level,Review Level,İnceleme Seviyesi @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Başarıyla tamamlandı apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Liste apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,takdir etmek -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Yeni {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Birincil İletişim DocType: Print Format,Raw Commands,Ham Komutlar apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Baskı Biçimleri için Stil Sayfaları @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Arkaplan Olayları apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},{1} 'de {0}' u bulun DocType: Email Account,Use SSL,SSL kullan DocType: DocField,In Standard Filter,Standart Filtrede +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Eşitlenecek Google Kişisi yok. DocType: Data Migration Run,Total Pages,Toplam sayfalar apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: '{1}' alanı benzersiz olmayan değerlere sahip olduğundan Benzersiz olarak ayarlanamaz DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Etkinleştirildiğinde, kullanıcılara her giriş yaptıklarında bilgilendirilir. Etkinleştirilmezse, kullanıcılar yalnızca bir kez bilgilendirilir." @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,Otomasyon apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Dosyaların açılması ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}','{0}' için ara apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Bir şeyler yanlış gitti -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Takmadan önce lütfen tasarruf edin. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,Takmadan önce lütfen tasarruf edin. DocType: Version,Table HTML,Tablo HTML'si apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,merkez DocType: Page,Standard,Standart @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Sonuç yok apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} kayıt silindi apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,Dropbox erişim belirteci oluşturulurken bir şeyler ters gitti. Lütfen daha fazla ayrıntı için hata günlüğünü kontrol edin. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Torunları -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Varsayılan Adres Şablonu bulunamadı. Lütfen Kurulum> Yazdırma ve Markalama> Adres Şablonu'ndan yeni bir tane oluşturun. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Kişileri yapılandırıldı. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Detayları gizle apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Yazı Tipi Stilleri apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Aboneliğiniz {0} tarihinde sona erecek. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},{0} E-posta Hesabı'ndan e-posta alınırken kimlik doğrulama başarısız oldu. Sunucudan mesaj: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Geçen haftaki performansa dayalı istatistikler ({0} - {1} arası) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,Otomatik Bağlama yalnızca Gelen seçeneği etkinse etkinleştirilebilir. DocType: Website Settings,Title Prefix,Başlık Öneki apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Kullanabileceğiniz Kimlik Doğrulama Uygulamaları: DocType: Bulk Update,Max 500 records at a time,Bir seferde en fazla 500 kayıt @@ -1177,7 +1193,7 @@ DocType: Auto Email Report,Report Filters,Rapor Filtreleri apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Sütunları Seç DocType: Event,Participants,Katılımcılar DocType: Auto Repeat,Amended From,Değiştirildi -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Bilgileriniz gönderildi +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Bilgileriniz gönderildi DocType: Help Category,Help Category,Yardım Kategorisi apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 ay apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Düzenlemek veya yeni bir format başlatmak için mevcut bir format seçin. @@ -1224,7 +1240,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,İzlenecek Alan DocType: User,Generate Keys,Anahtar Üret DocType: Comment,Unshared,Paylaşılmamış -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,kaydedilmiş +DocType: Translation,Saved,kaydedilmiş DocType: OAuth Client,OAuth Client,OAuth İstemcisi DocType: System Settings,Disable Standard Email Footer,Standart E-posta Altbilgisini Devre Dışı Bırak apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,{0} Yazdırma Formatı devre dışı @@ -1255,6 +1271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Son Güncelle DocType: Data Import,Action,Aksiyon apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Müşteri anahtarı gerekli DocType: Chat Profile,Notifications,Bildirimler +DocType: Translation,Contributed,Katkıda DocType: System Settings,mm/dd/yyyy,aa / gg / yyyy DocType: Report,Custom Report,Özel rapor DocType: Workflow State,info-sign,info-işareti @@ -1271,6 +1288,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Temas DocType: LDAP Settings,LDAP Username Field,LDAP Kullanıcı Adı Alanı apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",Benzersiz olmayan varolan değerler olduğu için {0} alanı {1} 'da benzersiz olarak ayarlanamaz. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Kurulum> Formu Özelleştir DocType: User,Social Logins,Sosyal Girişler DocType: Workflow State,Trash,Çöp DocType: Stripe Settings,Secret Key,Gizli anahtar @@ -1328,6 +1346,7 @@ DocType: DocType,Title Field,Başlık Alanı apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Giden e-posta sunucusuna bağlanılamadı DocType: File,File URL,Dosya URL'si DocType: Help Article,Likes,Seviyor +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google Rehber Entegrasyonu devre dışı. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Yedeklemelere erişebilmek için oturum açmış ve Sistem Yöneticisi Rolüne sahip olmanız gerekir. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,İlk seviye DocType: Blogger,Short Name,Kısa isim @@ -1345,13 +1364,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Zip'i İçe Aktar DocType: Contact,Gender,Cinsiyet DocType: Workflow State,thumbs-down,başparmak aşağı -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Kuyruk {0} 'dan biri olmalı apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},{0} Belge Türünde Bildirim ayarlanamıyor apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Bu Kullanıcıya Sistem Yöneticisi ekleme, en az bir Sistem Yöneticisi olması gerektiği gibi" apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Hoşgeldin e-postası gönderildi DocType: Transaction Log,Chaining Hash,Zincirleme Hash DocType: Contact,Maintenance Manager,Bakım Müdürü +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Karşılaştırma için,> 5, <10 veya = 324 kullanın. Aralıklar için 5:10 kullanın (5 ve 10 arasındaki değerler için)." apps/frappe/frappe/utils/bot.py,show,göstermek apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URL paylaş apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Desteklenmeyen dosya formatı @@ -1373,7 +1392,7 @@ DocType: Communication,Notification,Bildirim DocType: Data Import,Show only errors,Sadece hataları göster DocType: Energy Point Log,Review,gözden geçirmek apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Satırlar Kaldırıldı -DocType: GSuite Settings,Google Credentials,Google Kimlik Bilgileri +DocType: Google Settings,Google Credentials,Google Kimlik Bilgileri apps/frappe/frappe/www/login.html,Or login with,Veya giriş yapın apps/frappe/frappe/model/document.py,Record does not exist,Kayıt mevcut değil apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Yeni Rapor adı @@ -1398,6 +1417,7 @@ DocType: Desktop Icon,List,Liste DocType: Workflow State,th-large,th-large apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Gönderilebilir değilse Gönder Ata'yı ayarlayamıyor apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Herhangi bir kayda bağlı değil +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

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

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

QZ Tray'i indirip kurmak için buraya tıklayın .
Ham Baskı hakkında daha fazla bilgi için buraya tıklayın ." DocType: Chat Message,Content,içerik DocType: Workflow Transition,Allow Self Approval,Kendini Onaylamaya İzin Ver apps/frappe/frappe/www/qrcode.py,Page has expired!,Sayfa süresi doldu! @@ -1414,6 +1434,7 @@ DocType: Workflow State,hand-right,el sağ DocType: Website Settings,Banner is above the Top Menu Bar.,"Afiş, Üst Menü Çubuğunun üzerindedir." apps/frappe/frappe/www/update-password.html,Invalid Password,geçersiz şifre apps/frappe/frappe/utils/data.py,1 month ago,1 ay önce +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Google Kişiler Erişimine İzin Ver DocType: OAuth Client,App Client ID,Uygulama Müşteri Kimliği DocType: DocField,Currency,Para birimi DocType: Website Settings,Banner,afiş @@ -1425,7 +1446,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Hedef DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Bir Rolün Seviye 0'da erişimi yoksa, daha yüksek seviyeler anlamsızdır." DocType: ToDo,Reference Type,Referans türü -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DocType'a izin verme, DocType. Dikkatli ol!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","DocType'a izin verme, DocType. Dikkatli ol!" DocType: Domain Settings,Domain Settings,Etki Alanı Ayarları DocType: Auto Email Report,Dynamic Report Filters,Dinamik Rapor Filtreleri DocType: Energy Point Log,Appreciation,takdir @@ -1467,6 +1488,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,Bize-batı-2 DocType: DocType,Is Single,Bekar apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Yeni Format Oluştur +DocType: Google Contacts,Authorize Google Contacts Access,Google Kişiler Erişimine Yetki Ver DocType: S3 Backup Settings,Endpoint URL,Bitiş noktası URL'si DocType: Social Login Key,Google,Google DocType: Contact,Department,Bölüm @@ -1481,7 +1503,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Atamak DocType: List Filter,List Filter,Liste Filtresi DocType: Dashboard Chart Link,Chart,Grafik apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Kaldırılamıyor -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Onaylamak için bu belgeyi gönderin +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Onaylamak için bu belgeyi gönderin apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} zaten var. Başka bir isim seç apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Bu formda kaydedilmemiş değişiklikleriniz var. Lütfen devam etmeden önce kaydedin. apps/frappe/frappe/model/document.py,Action Failed,Eylem başarısız @@ -1563,6 +1585,7 @@ DocType: DocField,Display,Görüntüle apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Hepsini cevapla DocType: Calendar View,Subject Field,Konu alanı apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},"Oturum Bitişi, {0} biçiminde olmalıdır" +apps/frappe/frappe/model/workflow.py,Applying: {0},Uygulanıyor: {0} DocType: Workflow State,zoom-in,Yakınlaştır apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Sunucuyla bağlantı başarısız apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},{0} tarihi biçiminde olmalıdır: {1} @@ -1574,8 +1597,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Düğme simgesi görünecek DocType: Role Permission for Page and Report,Set Role For,Rolünü Ayarla +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Otomatik Bağlama yalnızca bir E-posta Hesabı için etkinleştirilebilir. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Atanmış E-posta Hesabı Yok +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-posta Hesabı ayarlanmadı. Lütfen Kurulum> E-posta> E-posta Hesabı'ndan yeni bir E-posta Hesabı oluşturun. apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,atama +DocType: Google Contacts,Last Sync On,Son Senkronizasyon Açık apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},{0} otomatik kuralı {1} ile kazanılan apps/frappe/frappe/config/website.py,Portal,kapı apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,E-postan için teşekkürler @@ -1596,7 +1622,6 @@ DocType: GSuite Settings,GSuite Settings,GSuite Ayarları DocType: Integration Request,Remote,uzak DocType: File,Thumbnail URL,Küçük resim URL'si apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Raporu İndir -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Kurulum> Kullanıcı apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},{0} için özelleştirmeler şuraya gönderildi:
{1} DocType: GCalendar Account,Calendar Name,Takvim Adı apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Giriş kimliğiniz: @@ -1646,6 +1671,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},{0} a apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Resim alanı geçerli bir alan adı olmalı apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,Bu sayfaya erişmek için giriş yapmalısınız. DocType: Assignment Rule,Example: {{ subject }},Örnek: {{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,{0} alan adı kısıtlanmış apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},{0} alanı için 'Salt Okunur' ayarını kaldıramazsınız DocType: Social Login Key,Enable Social Login,Sosyal Girişi Etkinleştir DocType: Workflow,Rules defining transition of state in the workflow.,İş akışında durum geçişini tanımlayan kurallar. @@ -1666,10 +1692,10 @@ DocType: Website Settings,Route Redirects,Rota Yönlendirmeleri apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,E-posta Gelen Kutusu apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},{0} olarak {1} olarak geri yüklendi DocType: Assignment Rule,Automatically Assign Documents to Users,Belgeleri Kullanıcılara Otomatik Olarak Atama +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Awesomebar'ı açın apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Yaygın sorgular için E-posta Şablonları. DocType: Letter Head,Letter Head Based On,Temelli Mektup Başlığı apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Lütfen bu pencereyi kapat -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Ödeme tamamlandı DocType: Contact,Designation,tayin DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Meta etiketleri @@ -1708,6 +1734,7 @@ DocType: System Settings,Choose authentication method to be used by all users,T DocType: Error Snapshot,Parent Error Snapshot,Ana Hata Anlık Görüntüsü DocType: GCalendar Account,GCalendar Account,GCalendar Hesabı DocType: Language,Language Name,dil adı +DocType: Workflow Document State,Workflow Action is not created for optional states,İsteğe bağlı durumlar için İş Akışı Eylemi oluşturulmadı DocType: Customize Form,Customize Form,Formu Özelleştir DocType: DocType,Image Field,Görüntü alanı apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),{0} eklendi ({1}) @@ -1749,6 +1776,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,Kullanıcı Sahibi ise bu kuralı uygulayın DocType: About Us Settings,Org History Heading,Kuruluş Tarihi Başlığı apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Server hatası +DocType: Contact,Google Contacts Description,Google Kişileri Açıklaması apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Standart roller yeniden adlandırılamaz DocType: Review Level,Review Points,Değerlendirme Noktaları apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Kanban Board Name parametresi eksik @@ -1766,7 +1794,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Geliştirici Modunda Değil! Site_config.json dosyasını ayarlayın veya 'Custom' DocType'ı yapın. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,{0} puan kazandı DocType: Web Form,Success Message,başarı mesajı -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Karşılaştırma için,> 5, <10 veya = 324 kullanın. Aralıklar için 5:10 kullanın (5 ve 10 arasındaki değerler için)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Sayfayı listeleme için açıklama, düz metin olarak, sadece birkaç satır. (en fazla 140 karakter)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,İzinleri Göster DocType: DocType,Restrict To Domain,Etki Alanıyla Sınırla @@ -1788,6 +1815,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Atalar apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Miktarı ayarla DocType: Auto Repeat,End Date,Bitiş tarihi DocType: Workflow Transition,Next State,Sonraki devlet +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Google Kişileri senkronize edildi. DocType: System Settings,Is First Startup,İlk Başlangıç mı apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},{0} için güncellendi apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Taşınmak @@ -1837,6 +1865,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Takvim apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Veri Alma Şablonu DocType: Workflow State,hand-left,el sol +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Birden fazla liste öğesi seç apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Yedekleme boyutu: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},{0} ile bağlantılı DocType: Braintree Settings,Private Key,Özel anahtar @@ -1879,13 +1908,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Faiz DocType: Bulk Update,Limit,limit DocType: Print Settings,Print taxes with zero amount,Vergileri sıfır miktarda yazdır -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-posta Hesabı ayarlanmadı. Lütfen Kurulum> E-posta> E-posta Hesabı'ndan yeni bir E-posta Hesabı oluşturun. DocType: Workflow State,Book,Kitap DocType: S3 Backup Settings,Access Key ID,Erişim Anahtarı Kimliği DocType: Chat Message,URLs,URL'ler apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Adlar ve soyadları kendileri tahmin etmek kolaydır. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},{0} raporu DocType: About Us Settings,Team Members Heading,Takım Üyeleri Başlığı +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Liste öğesini seçin apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},"{0} dokümanı, {2} tarafından {1} durumuna ayarlandı." DocType: Address Template,Address Template,Adres Şablonu DocType: Workflow State,step-backward,geri adım @@ -1909,6 +1938,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Özel İzinleri Dışa Aktar apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Yok: İş Akışının Sonu DocType: Version,Version,versiyon +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Liste öğesini aç apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 ay DocType: Chat Message,Group,grup apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Url dosyasıyla ilgili bir sorun var: {0} @@ -1964,6 +1994,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 yıl apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} puanlarınızı {1} için geri aldı DocType: Workflow State,arrow-down,aşağı ok DocType: Data Import,Ignore encoding errors,Kodlama hatalarını yoksay +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,peyzaj DocType: Letter Head,Letter Head Name,Mektup Başlığı Adı DocType: Web Form,Client Script,Müşteri Komut Dosyası DocType: Assignment Rule,Higher priority rule will be applied first,Yüksek öncelikli kural ilk önce uygulanacak @@ -2008,6 +2039,7 @@ DocType: Kanban Board Column,Green,Yeşil apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Yeni kayıtlar için sadece zorunlu alanlar gereklidir. İsterseniz zorunlu olmayan sütunları silebilirsiniz. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} bir harfle başlamalı ve bitmeli ve yalnızca harf, kısa çizgi veya alt çizgi içerebilir." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Birincil İşlemi Tetikle apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Kullanıcı E-postası Oluştur apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,{0} sıralama alanı geçerli bir alan adı olmalı DocType: Auto Email Report,Filter Meta,Meta Filtrele @@ -2037,6 +2069,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Zaman Çizelgesi Alanı apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Yükleniyor... DocType: Auto Email Report,Half Yearly,Yarı yıllık +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Benim profilim apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Son Değiştirme Tarihi DocType: Contact,First Name,İsim DocType: Post,Comments,Yorumlar @@ -2059,6 +2092,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,İçerik Karması apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},{0} tarafından gönderilen yazılar apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} atandı {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Yeni Google Kişisi senkronize edilmedi. DocType: Workflow State,globe,küre apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},{0} ortalaması apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Hata Günlüklerini Temizle @@ -2085,6 +2119,8 @@ DocType: Workflow State,Inverse,Ters DocType: Activity Log,Closed,Kapalı DocType: Report,Query,Sorgu DocType: Notification,Days After,Günler sonra +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Sayfa Kısayolları +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portre apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,İstek zaman aşımına uğradı DocType: System Settings,Email Footer Address,E-posta Altbilgisi Adresi apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Enerji noktası güncellemesi @@ -2112,6 +2148,7 @@ For Select, enter list of Options, each on a new line.","Bağlantılar için, Do apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 dakika önce apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Aktif Oturum Yok apps/frappe/frappe/model/base_document.py,Row,Kürek çekmek +DocType: Contact,Middle Name,İkinci ad apps/frappe/frappe/public/js/frappe/request.js,Please try again,Lütfen tekrar deneyin DocType: Dashboard Chart,Chart Options,Grafik Seçenekleri DocType: Data Migration Run,Push Failed,İtme Başarısız @@ -2140,6 +2177,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,boyutlandırmak-küçük DocType: Comment,Relinked,yeniden bağlandı DocType: Role Permission for Page and Report,Roles HTML,Rol HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Gitmek apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,İş akışı kaydedildikten sonra başlayacaktır. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Verileriniz HTML ise, lütfen tam HTML kodunu etiketlerle yapıştırın." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Tarihler genellikle tahmin etmek kolaydır. @@ -2168,7 +2206,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Masaüstü simgesi apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,bu dokümanı iptal etti apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Tarih aralığı -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Kurulum> Kullanıcı İzinleri apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} takdir {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Değerler Değişti apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Bildirimde Hata @@ -2232,6 +2269,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Toplu Silme DocType: DocShare,Document Name,Belge Adı apps/frappe/frappe/config/customization.py,Add your own translations,Kendi çevirilerini ekle +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Listede aşağı git DocType: S3 Backup Settings,eu-central-1,ab-merkez-1 DocType: Auto Repeat,Yearly,Yıllık apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Adını değiştirmek @@ -2282,6 +2320,7 @@ DocType: Workflow State,plane,uçak apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,İç içe küme hatası. Lütfen Yönetici ile iletişime geçin. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Raporu göster DocType: Auto Repeat,Auto Repeat Schedule,Otomatik Tekrarlama Takvimi +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Ref görüntüle DocType: Address,Office,Ofis DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} gün önce @@ -2315,7 +2354,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Ge apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Ayarlarım apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Grup adı boş olamaz. DocType: Workflow State,road,yol -DocType: Website Route Redirect,Source,Kaynak +DocType: Contact,Source,Kaynak apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Aktif Oturumlar apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Bir formda sadece bir Fold olabilir apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Yeni sohbet @@ -2337,6 +2376,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Lütfen Yetkilendirme URL’sini girin DocType: Email Account,Send Notification to,Bildirim Gönder apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox yedekleme ayarları +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,Jeton üretimi sırasında bir şeyler ters gitti. Yeni bir tane oluşturmak için {0} 'a tıklayın. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Tüm özelleştirmeler kaldırılsın mı? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Yalnızca Yönetici düzenleyebilir DocType: Auto Repeat,Reference Document,Referans Belgesi @@ -2361,6 +2401,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,"Kullanıcılar için roller, Kullanıcı sayfasından ayarlanabilir." DocType: Website Settings,Include Search in Top Bar,Aramayı Üst Çubuğa Dahil Et apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Acil]% s için yinelenen% s oluştururken hata +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Global Kısayollar DocType: Help Article,Author,Yazar DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Verilen filtreler için doküman bulunamadı @@ -2396,10 +2437,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, Satır {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Yeni kayıt yüklüyorsanız, varsa, "Seri Adlandırma" zorunlu hale gelir." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Özellikleri Düzenle -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,{0} açık olduğunda örnek açılamıyor +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,{0} açık olduğunda örnek açılamıyor DocType: Activity Log,Timeline Name,Zaman Çizelgesi Adı DocType: Comment,Workflow,İş Akışı apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Lütfen Frappe için Sosyal Giriş Anahtarında Temel URL'yi ayarlayın. +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Klavye kısayolları DocType: Portal Settings,Custom Menu Items,Özel Menü Öğeleri apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,{0} uzunluğu 1 ile 1000 arasında olmalıdır apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Bağlantı koptu. Bazı özellikler çalışmayabilir. @@ -2462,6 +2504,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Satır Ekle DocType: DocType,Setup,Kurmak apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} başarıyla oluşturuldu apps/frappe/frappe/www/update-password.html,New Password,Yeni Şifre +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Alan Seç apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Bu sohbeti bırak DocType: About Us Settings,Team Members,Takım üyeleri DocType: Blog Settings,Writers Introduction,Yazarlara Giriş @@ -2531,13 +2574,12 @@ DocType: Chat Room,Name,isim DocType: Communication,Email Template,E-posta şablonu DocType: Energy Point Settings,Review Levels,Seviyeleri gözden geçir DocType: Print Format,Raw Printing,Ham baskı -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Örneği açıkken {0} açılamıyor +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,Örneği açıkken {0} açılamıyor DocType: DocType,"Make ""name"" searchable in Global Search",Global Arama'da "isim" aranabilir hale getirin DocType: Data Migration Mapping,Data Migration Mapping,Veri Taşıma Eşlemesi DocType: Data Import,Partially Successful,Kısmen Başarılı DocType: Communication,Error,Hata apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Alan türü {2} satırında {0} 'dan {1}' a değiştirilemez -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

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

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

QZ Tray'i indirip kurmak için buraya tıklayın .
Ham Baskı hakkında daha fazla bilgi için buraya tıklayın ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Fotoğraf çek apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,Sizinle ilişkilendirilen yıllardan kaçının. DocType: Web Form,Allow Incomplete Forms,Eksik Formlara İzin Ver @@ -2633,7 +2675,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Yeni bir sayfada açmak için target = "_blank" seçin. DocType: Portal Settings,Portal Menu,Portal Menüsü DocType: Website Settings,Landing Page,Açılış sayfası -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,Lütfen başlamak için üye olun ya da giriş yapın DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Her biri yeni bir satırda veya virgülle ayrılmış olarak "Satış Sorgusu, Destek Sorgusu" vb. Gibi iletişim seçenekleri." apps/frappe/frappe/twofactor.py,Verfication Code,Doğrulama Kodu apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} zaten aboneliği iptal edildi @@ -2719,6 +2760,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Veri Taşıma P DocType: Address,Sales User,Satış Kullanıcısı apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Alan özelliklerini değiştirme (gizleme, salt okunur, izin vb.)" DocType: Property Setter,Field Name,Alan adı +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Müşteri DocType: Print Settings,Font Size,Yazı Boyutu DocType: User,Last Password Reset Date,Son Şifre Sıfırlama Tarihi DocType: System Settings,Date and Number Format,Tarih ve Sayı Biçimi @@ -2784,6 +2826,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Grup Düğümü apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Varolanla birleştir DocType: Blog Post,Blog Intro,Blog Giriş apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Yeni Mansiyon +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Alana atla DocType: Prepared Report,Report Name,Rapor Adı apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,En son belgeyi almak için lütfen yenileyin. apps/frappe/frappe/core/doctype/communication/communication.js,Close,Kapat @@ -2793,10 +2836,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Etkinlik DocType: Social Login Key,Access Token URL,Erişim Simgesi URL'si apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Lütfen Dropbox erişim anahtarlarını site yapılandırmanıza ayarlayın +DocType: Google Contacts,Google Contacts,Google Kişileri DocType: User,Reset Password Key,Şifreyi Sıfırla apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Tarafından tasarlandı DocType: User,Bio,biyo apps/frappe/frappe/limits.py,"To renew, {0}.","Yenilemek için, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Başarıyla kaydedildi +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Buraya bağlamak için {0} adresine bir e-posta gönderin. DocType: File,Folder,Klasör DocType: DocField,Perm Level,Perm Seviyesi DocType: Print Settings,Page Settings,Sayfa Ayarları @@ -2826,6 +2872,7 @@ DocType: Workflow State,remove-sign,remove-işareti DocType: Dashboard Chart,Full,Tam DocType: DocType,User Cannot Create,Kullanıcı Oluşturulamıyor apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,{0} puan kazandınız +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Kurulum> Kullanıcı DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Bunu ayarlarsanız, bu Öğe seçilen ebeveynin altına açılır." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,E-posta yok apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Aşağıdaki alanlar eksik: @@ -2839,13 +2886,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Tak DocType: Web Form,Web Form Fields,Web Form Alanları DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Web sitesinde Kullanıcı tarafından düzenlenebilir form. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Kalıcı Olarak İptal Et {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Kalıcı Olarak İptal Et {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Seçenek 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,Toplamları apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Bu çok yaygın bir şifredir. DocType: Personal Data Deletion Request,Pending Approval,Onay bekleyen apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Belge doğru şekilde atanamadı apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{0} için izin verilmiyor: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Gösterilecek değer yok DocType: Personal Data Download Request,Personal Data Download Request,Kişisel Veri İndirme İsteği apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} bu dokümanı {1} ile paylaştı apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},{0} seçin @@ -2861,7 +2909,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Bu e-posta {0} adresine gönderildi ve {1} kopyalandı apps/frappe/frappe/email/smtp.py,Invalid login or password,geçersiz giriş yada şifre DocType: Social Login Key,Social Login Key,Sosyal Giriş Anahtarı -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Lütfen Kurulum> E-posta> E-posta Hesabı'ndan varsayılan E-posta Hesabı'nı ayarlayın. apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filtreler kaydedildi DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Bu para birimi nasıl formatlanmalı? Ayarlanmadıysa, sistem varsayılanlarını kullanır" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} {2} durumuna ayarlanmış @@ -2987,6 +3034,7 @@ DocType: User,Location,yer apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Veri yok DocType: Website Meta Tag,Website Meta Tag,Web Sitesi Meta Etiketi DocType: Workflow State,film,film +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Panoya kopyalandı. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Ayarlar bulunamadı apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Etiket zorunludur DocType: Webhook,Webhook Headers,Web Kancası Başlıkları @@ -3195,7 +3243,7 @@ DocType: Address,Address Line 1,Adres satırı 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Belge Türü İçin apps/frappe/frappe/model/base_document.py,Data missing in table,Tabloda eksik veriler apps/frappe/frappe/utils/bot.py,Could not identify {0},{0} tanımlanamadı -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Bu form siz yükledikten sonra değiştirildi +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Bu form siz yükledikten sonra değiştirildi apps/frappe/frappe/www/login.html,Back to Login,Girişe Geri Dön apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Ayarlanmadı DocType: Data Migration Mapping,Pull,Çek @@ -3263,6 +3311,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Alt Tablo Eşlemesi apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,"E-posta Hesabı ayarları, lütfen şifrenizi girin:" apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Bir istekte çok fazla yazar var. Lütfen daha küçük istekler gönderin DocType: Social Login Key,Salesforce,Satış ekibi +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{1} öğesinin {0} içeri aktarılması DocType: User,Tile,Fayans apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} odanın en fazla bir kullanıcısı olmalı. DocType: Email Rule,Is Spam,Spam mı @@ -3300,7 +3349,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,klasör yakın DocType: Data Migration Run,Pull Update,Güncellemeyi Çek apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},{0} ile {1} arasında birleştirildi -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

'İçin sonuç bulunamadı

DocType: SMS Settings,Enter url parameter for receiver nos,Alıcı numaraları için url parametresini girin apps/frappe/frappe/utils/jinja.py,Syntax error in template,Şablonda sözdizimi hatası apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Lütfen Rapor Filtresi tablosunda filtrelerin değerini ayarlayın. @@ -3313,6 +3361,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Üzgünüm, DocType: System Settings,In Days,Günlerde DocType: Report,Add Total Row,Toplam Satır Ekle apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Oturum Başlatılamadı +DocType: Translation,Verified,Doğrulanmış DocType: Print Format,Custom HTML Help,Özel HTML Yardımı DocType: Address,Preferred Billing Address,Tercih Edilen Fatura Adresi apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Atandı @@ -3327,7 +3376,6 @@ DocType: Help Article,Intermediate,Orta düzey DocType: Module Def,Module Name,Modül Adı DocType: OAuth Authorization Code,Expiration time,Son kullanma süresi apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Varsayılan formatı, sayfa boyutunu, baskı stilini vb. Ayarlayın." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,Oluşturduğunuz bir şeyi sevemezsiniz DocType: System Settings,Session Expiry,Oturum Bitişi DocType: DocType,Auto Name,Otomatik Ad apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Ekleri Seç @@ -3355,6 +3403,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Sistem sayfası DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,"Not: Varsayılan olarak, başarısız yedeklemeler için e-postalar gönderilir." DocType: Custom DocPerm,Custom DocPerm,Özel DocPerm +DocType: Translation,PR sent,PR gönderildi DocType: Tag Doc Category,Doctype to Assign Tags,Etiketleri Atamak için Doctype DocType: Address,Warehouse,Depo apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Dropbox Kurulumu @@ -3422,7 +3471,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Yorum eklemek için Ctrl + Enter tuşlarına basın apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,{0} alanı seçilemez. DocType: User,Birth Date,Doğum günü -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Grup Girintili DocType: List View Setting,Disable Count,Sayıyı Devre Dışı Bırak DocType: Contact Us Settings,Email ID,Email kimliği apps/frappe/frappe/utils/password.py,Incorrect User or Password,Yanlış Kullanıcı veya Şifre @@ -3457,6 +3505,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,"Bu rol, bir kullanıcı için Kullanıcı İzinlerini güncelleme" DocType: Website Theme,Theme,Tema DocType: Web Form,Show Sidebar,Kenar Çubuğunu Göster +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google Rehber Entegrasyonu. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Varsayılan Gelen Kutusu apps/frappe/frappe/www/login.py,Invalid Login Token,Geçersiz Giriş Simgesi apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,İlk önce ismi ayarlayın ve kaydı kaydedin. @@ -3484,7 +3533,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Lütfen düzeltin DocType: Top Bar Item,Top Bar Item,En İyi Bar Öğesi ,Role Permissions Manager,Rol İzin Yöneticisi -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,Hatalar vardı. Lütfen bunu rapor et. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} yıl önce apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Kadın DocType: System Settings,OTP Issuer Name,OTP İhraççı Adı apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Yapılacaklara ekle @@ -3584,6 +3633,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Dil, T apps/frappe/frappe/model/document.py,none of,hiçbiri DocType: Desktop Icon,Page,Sayfa DocType: Workflow State,plus-sign,artı işareti +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Önbelleği ve Yeniden Yüklemeyi Temizle apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Güncelleştirilemiyor: Yanlış / Süresi Dolmuş Bağlantı. DocType: Kanban Board Column,Yellow,Sarı DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Kılavuzdaki bir alan için sütun sayısı (Kılavuzdaki Toplam Sütun sayısı 11'den küçük olmalıdır) @@ -3598,6 +3648,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Yeni DocType: Activity Log,Date,tarih DocType: Communication,Communication Type,İletişim türü apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Üst Tablo +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Listede gezin DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Tam Hatayı Göster ve Sorunların Geliştiriciye Raporlanmasına İzin Ver DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3619,7 +3670,6 @@ DocType: Notification Recipient,Email By Role,Rolüne Göre E-postala apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,{0} aboneden fazla abone eklemek için lütfen Yükseltme apps/frappe/frappe/email/queue.py,This email was sent to {0},Bu e-posta {0} adresine gönderildi DocType: User,Represents a User in the system.,Sistemde bir Kullanıcıyı temsil eder. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Sayfa {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Yeni Format başlat apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Yorum ekle apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{1} / {0} diff --git a/frappe/translations/uk.csv b/frappe/translations/uk.csv index 20f8f591c2..bb61cbafa6 100644 --- a/frappe/translations/uk.csv +++ b/frappe/translations/uk.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Увімкнути градієнти DocType: DocType,Default Sort Order,Стандартний порядок сортування apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Відображаються лише числові поля з звіту +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,"Натисніть клавішу Alt, щоб активувати додаткові ярлики в меню та бічній панелі" DocType: Workflow State,folder-open,папка відкрита DocType: Customize Form,Is Table,Таблиця apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Неможливо відкрити вкладений файл. Ви експортували його як CSV? DocType: DocField,No Copy,Немає копії DocType: Custom Field,Default Value,Значення за замовчуванням apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Append To є обов'язковим для вхідних повідомлень +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Синхроніть контакти DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Деталі зіставлення міграції даних apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Відписатися apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",Друк PDF-файлів через "Raw Print" ще не підтримується. Видаліть зіставлення принтера в параметрах принтера та повторіть спробу. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} і {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Під час збереження фільтрів сталася помилка apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Введіть ваш пароль apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Неможливо видалити папки "Домашня сторінка" та "Вкладення" +DocType: Email Account,Enable Automatic Linking in Documents,Увімкнути автоматичне посилання в документах DocType: Contact Us Settings,Settings for Contact Us Page,Налаштування для Сторінки Контакти DocType: Social Login Key,Social Login Provider,Провайдер соціального входу +DocType: Email Account,"For more information, click here.","Для отримання додаткової інформації натисніть тут ." DocType: Transaction Log,Previous Hash,Попередній хеш DocType: Notification,Value Changed,Змінено значення DocType: Report,Report Type,Тип звіту @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Правило енергетичн apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,Введіть ідентифікатор клієнта до ввімкнення соціального входу DocType: Communication,Has Attachment,Має вкладення DocType: User,Email Signature,Підпис електронної пошти -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} рік тому ,Addresses And Contacts,Адреси та контакти apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Ця рада Канбан буде приватною DocType: Data Migration Run,Current Mapping,Поточне зіставлення @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Ви вибираєте варіант синхронізації як ALL, він буде повторно синхронізувати всі прочитані, а також непрочитані повідомлення з сервера. Це також може призвести до дублювання комунікації (електронних листів)." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Остання синхронізація {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Неможливо змінити вміст заголовка +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Неможливо змінити {0} після подання apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page",Програму оновлено до нової версії. Оновіть цю сторінку DocType: User,User Image,Зображення користувача @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},По apps/frappe/frappe/public/js/frappe/chat.js,Discard,Відкинути DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Для отримання найкращих результатів виберіть зображення розміром приблизно 150 пікселів з прозорим фоном. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,Повторно +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,Вибрано значення {0} DocType: Blog Post,Email Sent,Листа відправлено DocType: Communication,Read by Recipient On,Читання отримувачем On DocType: User,Allow user to login only after this hour (0-24),Дозволити користувачеві входити лише після цієї години (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Модуль для експорту DocType: DocType,Fields,Поля -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Вам не дозволяється друкувати цей документ +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Вам не дозволяється друкувати цей документ apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Батько apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Термін дії сеансу закінчився. Увійдіть знову, щоб продовжити." DocType: Assignment Rule,Priority,Пріоритет @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Скинути OTP DocType: DocType,UPPER CASE,Верхній корпус apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,Вкажіть адресу електронної пошти DocType: Communication,Marked As Spam,Позначено як спам +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,"Адреса електронної пошти, контакти якої Google синхронізуються." apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Імпортувати абонентів apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Зберегти фільтр DocType: Address,Preferred Shipping Address,Переважна адреса доставки DocType: GCalendar Account,The name that will appear in Google Calendar,"Ім'я, яке відображатиметься в Календарі Google" +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,"Натисніть {0}, щоб створити маркер оновлення." DocType: Email Account,Disable SMTP server authentication,Вимкнути автентифікацію сервера SMTP DocType: Email Account,Total number of emails to sync in initial sync process ,Загальна кількість електронних листів для синхронізації в процесі початкової синхронізації DocType: System Settings,Enable Password Policy,Увімкнути політику паролів @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Вставити код apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Не в DocType: Auto Repeat,Start Date,Дата початку apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Встановіть діаграму +DocType: Website Theme,Theme JSON,Тема JSON apps/frappe/frappe/www/list.py,My Account,Мій рахунок DocType: DocType,Is Published Field,Опубліковано поле DocType: DocField,Set non-standard precision for a Float or Currency field,Встановіть нестандартну точність для поля Float або Currency @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Додати Reference: {{ reference_doctype }} {{ reference_name }} щоб надіслати посилання на документ DocType: LDAP Settings,LDAP First Name Field,Поле ім'я LDAP apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Стандартне надсилання та вхідні -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Налаштування> Налаштувати форму apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",Для оновлення можна оновлювати лише вибіркові стовпці. apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',Типовим для поля "Перевірити" має бути "0" або "1" apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Діліться цим документом @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Домени HTML DocType: Blog Settings,Blog Settings,Налаштування блогу apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Назва DocType повинна починатися з літери, і вона може складатися тільки з літер, цифр, пробілів і підкреслення" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Налаштування> Дозволи користувача DocType: Communication,Integrations can use this field to set email delivery status,Інтеграція може використовувати це поле для встановлення статусу доставки електронної пошти apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Параметри платіжного шлюзу смуги DocType: Print Settings,Fonts,Шрифти DocType: Notification,Channel,Канал DocType: Communication,Opened,Відкрито DocType: Workflow Transition,Conditions,Умови +apps/frappe/frappe/config/website.py,A user who posts blogs.,"Користувач, який публікує блоги." apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Не маєте облікового запису? Зареєструйтеся apps/frappe/frappe/utils/file_manager.py,Added {0},Додано {0} DocType: Newsletter,Create and Send Newsletters,Створення та надсилання інформаційних бюлетенів DocType: Website Settings,Footer Items,Елементи нижнього колонтитула +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Налаштуйте обліковий запис електронної пошти за промовчанням з Налаштування> Електронна пошта> Обліковий запис електронної пошти DocType: Website Slideshow Item,Website Slideshow Item,Слайд-шоу сайту apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Зареєструвати OAuth Client App DocType: Error Snapshot,Frames,Рамки @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Рівень 0 для дозволів на рівні документа, більш високий рівень дозволів на рівні поля." DocType: Address,City/Town,Місто / місто DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Це призведе до скидання поточної теми, що ви хочете продовжити?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},"Обов'язкові поля, необхідні для {0}" apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Помилка під час підключення до облікового запису електронної пошти {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Під час створення повторюваної помилки сталася помилка @@ -528,7 +537,7 @@ DocType: Event,Event Category,Категорія події apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Стовпці на основі apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Редагувати заголовок DocType: Communication,Received,Отримано -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Ви не маєте доступу до цієї сторінки. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Ви не маєте доступу до цієї сторінки. DocType: User Social Login,User Social Login,Соціальний вхід користувача apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,"Напишіть файл Python в ту ж папку, де він зберігається і повертає стовпець і результат." DocType: Contact,Purchase Manager,Менеджер закупівель @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,На apps/frappe/frappe/utils/data.py,Operator must be one of {0},Оператор повинен бути одним з {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Якщо власник DocType: Data Migration Run,Trigger Name,Назва тригера -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Напишіть назви та вступні дані до свого блогу. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Видалити поле apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Закрити все apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Колір фону @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,Бар DocType: SMS Settings,Enter url parameter for message,Введіть параметр url для повідомлення apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Новий власний формат друку apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} уже існує +DocType: Workflow Document State,Is Optional State,Є необов'язковим станом DocType: Address,Purchase User,Придбати користувача DocType: Data Migration Run,Insert,Вставити DocType: Web Form,Route to Success Link,Маршрут до посилання "Успіх" @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Ім DocType: File,Is Home Folder,Є домашня папка apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Тип: DocType: Post,Is Pinned,Закріплений -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Немає дозволу на "{0}" {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Немає дозволу на "{0}" {1} DocType: Patch Log,Patch Log,Журнал виправлень DocType: Print Format,Print Format Builder,Print Format Builder 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. Це також можна встановити лише для певних користувачів у сторінці користувача" apps/frappe/frappe/utils/data.py,only.,тільки. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,Умова "{0}" недійсне DocType: Auto Email Report,Day of Week,День тижня +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Увімкніть Google API у налаштуваннях Google. DocType: DocField,Text Editor,Текстовий редактор apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Вирізати apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Знайдіть або введіть команду @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,Кількість резервних копій БД не може бути менше 1 DocType: Workflow State,ban-circle,ban-circle DocType: Data Export,Excel,Excel +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Заголовок, сухарі та мета-теги" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Адреса електронної пошти підтримки не вказано DocType: Comment,Published,Опубліковано DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","Примітка. Для досягнення найкращих результатів зображення мають бути однакового розміру, а ширина - більше висоти." @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Планувальник оста apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Звіт про всі акції документа DocType: Website Sidebar Item,Website Sidebar Item,Бічна панель веб-сайту apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Зробити +DocType: Google Settings,Google Settings,Налаштування Google apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Виберіть країну, часовий пояс і валюту" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Введіть тут параметри статичних URL-адрес (наприклад, sender = ERPNext, username = ERPNext, пароль = 1234 і т.д.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Немає облікового запису електронної пошти @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,Маркер OAuth на пред'явника ,Setup Wizard,Майстер установки apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Переключити діаграму +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,Синхронізація DocType: Data Migration Run,Current Mapping Action,Поточна дія зіставлення DocType: Email Account,Initial Sync Count,Початковий підрахунок синхронізації apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Налаштування для Сторінки Контакти. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Тип формату друку apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Для цього критерію не встановлено дозволів. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Розгорнути все +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Шаблон адреси за промовчанням не знайдено. Створіть нову з меню Налаштування> Друк і брендинг> Шаблон адреси. DocType: Tag Doc Category,Tag Doc Category,Категорія тегів Doc DocType: Data Import,Generated File,Генерований файл apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Примітки @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Поле часової шкали має бути посиланням або динамічним посиланням DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,З цього вихідного сервера надсилатимуться сповіщення та масові повідомлення. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Це загальний пароль для топ-100. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Постійно надсилати {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Постійно надсилати {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} не існує, виберіть нову ціль для об'єднання" DocType: Energy Point Rule,Multiplier Field,Поле множника DocType: Workflow,Workflow State Field,Поле станів робочого процесу @@ -880,6 +894,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} оцінив вашу роботу з {1} з {2} пунктами DocType: Auto Email Report,Zero means send records updated at anytime,"Zero означає надсилання записів, оновлених у будь-який час" apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Неможливо змінити значення для {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Налаштування API Google. DocType: System Settings,Force User to Reset Password,Змусити користувача скинути пароль apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Звіти Report Builder управляються безпосередньо збічником звітів. Нічого робити. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Редагувати фільтр @@ -933,7 +948,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,дл DocType: S3 Backup Settings,eu-north-1,eu-north-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: дозволено лише одне правило з однією роллю, рівнем і {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Не дозволяється оновлювати цей документ веб-форми -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Досягнуто максимального обмеження вкладення для цього запису. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Досягнуто максимального обмеження вкладення для цього запису. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,"Переконайтеся, що Документи довідкової інформації не пов'язані між собою." DocType: DocField,Allow in Quick Entry,Дозволити в швидкому введенні DocType: Error Snapshot,Locals,Місцеві жителі @@ -965,7 +980,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Тип виключення apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},"Неможливо видалити чи скасувати, оскільки {0} {1} пов’язано з {2} {3} {4}" apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,Секретно OTP можна скинути лише адміністратором. -DocType: Web Form Field,Page Break,Розрив сторінки DocType: Website Script,Website Script,Сценарій веб-сайту DocType: Integration Request,Subscription Notification,Повідомлення про підписку DocType: DocType,Quick Entry,Швидкий запис @@ -982,6 +996,7 @@ DocType: Notification,Set Property After Alert,Встановіть власти apps/frappe/frappe/__init__.py,Thank you,Дякую apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Слабий Webhooks для внутрішньої інтеграції apps/frappe/frappe/config/settings.py,Import Data,Імпорт даних +DocType: Translation,Contributed Translation Doctype Name,Внесено ім'я перекладу Doctype DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID DocType: Review Level,Review Level,Рівень огляду @@ -1000,7 +1015,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Успішно виконано apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Список apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Цінуйте -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Нове {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Первинний контакт DocType: Print Format,Raw Commands,Команди Raw apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Таблиці стилів для форматів друку @@ -1041,6 +1055,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Помилки у apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Знайдіть {0} у {1} DocType: Email Account,Use SSL,Використовуйте SSL DocType: DocField,In Standard Filter,У стандартному фільтрі +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Немає контактів Google для синхронізації. DocType: Data Migration Run,Total Pages,Всього сторінок apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,"{0}: Поле '{1}' не може бути встановлено як унікальний, оскільки має унікальні значення" DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Якщо цей параметр увімкнено, користувачі отримуватимуть сповіщення щоразу, коли вони входять до системи. Якщо не ввімкнено, користувачам буде сповіщено лише один раз." @@ -1061,7 +1076,7 @@ DocType: Assignment Rule,Automation,Автоматизація apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Розпакування файлів ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Шукати "{0}" apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Щось пішло не так -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,"Збережіть, перш ніж додавати." +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,"Збережіть, перш ніж додавати." DocType: Version,Table HTML,Таблиця HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,концентратор DocType: Page,Standard,Стандарт @@ -1139,12 +1154,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Немає apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} записів видалено apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,"Виникла помилка під час створення маркера доступу Dropbox. Щоб отримати докладніші відомості, перевірте журнал помилок." apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,нащадки -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Шаблон адреси за промовчанням не знайдено. Створіть нову з меню Налаштування> Друк і брендинг> Шаблон адреси. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Контакти Google налаштовано. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Приховати деталі apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Стилі шрифтів apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Термін дії вашої підписки закінчується {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Під час отримання повідомлень електронної пошти з облікового запису електронної пошти {0} не вдалося виконати автентифікацію. Повідомлення від сервера: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Статистика за результатами минулого тижня (від {0} до {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,"Автоматичне посилання може бути активовано, лише якщо ввімкнено Вхідні." DocType: Website Settings,Title Prefix,Префікс назви apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,"Служби автентифікації, які можна використовувати, такі:" DocType: Bulk Update,Max 500 records at a time,Максимум 500 записів одночасно @@ -1177,7 +1193,7 @@ DocType: Auto Email Report,Report Filters,Фільтри звітів apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Виберіть стовпці DocType: Event,Participants,Учасники DocType: Auto Repeat,Amended From,Виправлено з -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Ваша інформація надіслана +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Ваша інформація надіслана DocType: Help Category,Help Category,Категорія довідки apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 місяць apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Виберіть існуючий формат для редагування або запуску нового формату. @@ -1224,7 +1240,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Поле для відстеження DocType: User,Generate Keys,Створити ключі DocType: Comment,Unshared,Недозволено -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Збережено +DocType: Translation,Saved,Збережено DocType: OAuth Client,OAuth Client,Клієнт OAuth DocType: System Settings,Disable Standard Email Footer,Вимкнути стандартний колонтитул електронної пошти apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Формат друку {0} вимкнено @@ -1255,6 +1271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Останн DocType: Data Import,Action,Дія apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Потрібний ключ клієнта DocType: Chat Profile,Notifications,Сповіщення +DocType: Translation,Contributed,Внесено DocType: System Settings,mm/dd/yyyy,мм / дд / рррр DocType: Report,Custom Report,Спеціальний звіт DocType: Workflow State,info-sign,інформаційний знак @@ -1271,6 +1288,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Контакт DocType: LDAP Settings,LDAP Username Field,Поле імені користувача LDAP apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Поле {0} не можна встановити як унікальне у {1}, оскільки існують не унікальні існуючі значення" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Налаштування> Налаштувати форму DocType: User,Social Logins,Соціальні логіни DocType: Workflow State,Trash,Кошик DocType: Stripe Settings,Secret Key,Секретний ключ @@ -1328,6 +1346,7 @@ DocType: DocType,Title Field,Заголовок поля apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Не вдалося підключитися до сервера вихідної пошти DocType: File,File URL,URL-адреса файлу DocType: Help Article,Likes,Любить +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Інтеграція контактів Google вимкнена. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Необхідно увійти до системи і мати змогу отримати доступ до резервних копій ролі System Manager. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Перший рівень DocType: Blogger,Short Name,Коротке ім'я @@ -1345,13 +1364,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Імпорт Zip DocType: Contact,Gender,Стать DocType: Workflow State,thumbs-down,великі пальці вниз -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Черга повинна бути однією з {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Неможливо встановити сповіщення про тип документа {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,"Додавання System Manager до цього користувача, оскільки має бути принаймні один диспетчер систем" apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Надіслано привітальний лист DocType: Transaction Log,Chaining Hash,Ланцюговий хеш DocType: Contact,Maintenance Manager,Менеджер з технічного обслуговування +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Для порівняння використовують> 5, <10 або = 324. Для діапазонів використовуйте 5:10 (для значень від 5 до 10)." apps/frappe/frappe/utils/bot.py,show,шоу apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URL-адреса спільного доступу apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Непідтримуваний формат файлу @@ -1373,7 +1392,7 @@ DocType: Communication,Notification,Повідомлення DocType: Data Import,Show only errors,Показати лише помилки DocType: Energy Point Log,Review,Огляд apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Рядки видалено -DocType: GSuite Settings,Google Credentials,Документи Google +DocType: Google Settings,Google Credentials,Документи Google apps/frappe/frappe/www/login.html,Or login with,Або увійдіть з apps/frappe/frappe/model/document.py,Record does not exist,Запис не існує apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Нова назва звіту @@ -1398,6 +1417,7 @@ DocType: Desktop Icon,List,Список DocType: Workflow State,th-large,великі apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,"{0}: неможливо встановити Призначити надсилання, якщо не подано" apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Не пов'язано з жодним записом +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Помилка підключення до програми для лотка QZ ...

Щоб скористатися функцією Raw Print, потрібно встановити та запустити програму QZ Tray.

Натисніть тут, щоб завантажити та встановити QZ Tray .
Натисніть тут, щоб дізнатися більше про нестандартний друк ." DocType: Chat Message,Content,Вміст DocType: Workflow Transition,Allow Self Approval,Дозволити самозатвердження apps/frappe/frappe/www/qrcode.py,Page has expired!,Термін дії сторінки минув! @@ -1414,6 +1434,7 @@ DocType: Workflow State,hand-right,праворуч DocType: Website Settings,Banner is above the Top Menu Bar.,Банер знаходиться над верхньою панеллю меню. apps/frappe/frappe/www/update-password.html,Invalid Password,Недійсний пароль apps/frappe/frappe/utils/data.py,1 month ago,1 місяць тому +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Дозволити доступ до контактів Google DocType: OAuth Client,App Client ID,Ідентифікатор клієнта програми DocType: DocField,Currency,Валюта DocType: Website Settings,Banner,Банер @@ -1425,7 +1446,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Мета DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Якщо Роль не має доступу на рівні 0, то більш високі рівні не мають сенсу." DocType: ToDo,Reference Type,Тип посилання -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Дозвіл DocType, DocType. Будь обережний!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Дозвіл DocType, DocType. Будь обережний!" DocType: Domain Settings,Domain Settings,Налаштування домену DocType: Auto Email Report,Dynamic Report Filters,Динамічні фільтри звітів DocType: Energy Point Log,Appreciation,Вдячність @@ -1465,6 +1486,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,us-west-2 DocType: DocType,Is Single,Є одноразово apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Створіть новий формат +DocType: Google Contacts,Authorize Google Contacts Access,Авторизуйте доступ до контактів Google DocType: S3 Backup Settings,Endpoint URL,URL кінцевої точки DocType: Social Login Key,Google,Google DocType: Contact,Department,Відділ @@ -1479,7 +1501,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Призначи DocType: List Filter,List Filter,Список фільтрів DocType: Dashboard Chart Link,Chart,Діаграма apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Неможливо видалити -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Надіслати цей документ для підтвердження +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Надіслати цей документ для підтвердження apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} вже існує. Виберіть іншу назву apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,"У цій формі є незбережені зміни. Збережіть, перш ніж продовжити." apps/frappe/frappe/model/document.py,Action Failed,Помилка дії @@ -1561,6 +1583,7 @@ DocType: DocField,Display,Дисплей apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Відповісти всім DocType: Calendar View,Subject Field,Тематичне поле apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Закінчення сеансу має бути у форматі {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},Застосування: {0} DocType: Workflow State,zoom-in,приближувати apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Не вдалося підключитися до сервера apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Дата {0} має бути у форматі: {1} @@ -1572,8 +1595,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,На кнопці з'явиться значок DocType: Role Permission for Page and Report,Set Role For,Встановіть роль для +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Автоматичне посилання може бути активовано лише для одного облікового запису електронної пошти. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Немає призначених облікових записів електронної пошти +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Обліковий запис електронної пошти не налаштовано. Створіть новий обліковий запис електронної пошти з Налаштування> Електронна пошта> Обліковий запис електронної пошти apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Призначення +DocType: Google Contacts,Last Sync On,Остання синхронізація увімкнено apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},отримано {0} за допомогою автоматичного правила {1} apps/frappe/frappe/config/website.py,Portal,Портал apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Дякую вам за вашу електронну пошту @@ -1594,7 +1620,6 @@ DocType: GSuite Settings,GSuite Settings,Налаштування GSuite DocType: Integration Request,Remote,Пульт дистанційного керування DocType: File,Thumbnail URL,URL-адреса ескізу apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Завантажити звіт -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Налаштування> Користувач apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Налаштування для {0} експортуються в:
{1} DocType: GCalendar Account,Calendar Name,Назва календаря apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Ваш ідентифікаційний номер ідентифікатора @@ -1644,6 +1669,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Пе apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Поле "Зображення" має бути дійсним ім'ям поля apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,"Щоб отримати доступ до цієї сторінки, потрібно ввійти в систему" DocType: Assignment Rule,Example: {{ subject }},Приклад: {{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Ім'я поля {0} обмежено apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Не можна скасувати "Лише читання" для поля {0} DocType: Social Login Key,Enable Social Login,Увімкнути соціальний вхід DocType: Workflow,Rules defining transition of state in the workflow.,"Правила, що визначають перехід стану в робочий процес." @@ -1664,10 +1690,10 @@ DocType: Website Settings,Route Redirects,Переадресація маршр apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Вхідні повідомлення електронної пошти apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},відновлено {0} як {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Автоматично призначати документи користувачам +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Відкрийте Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Шаблони електронної пошти для поширених запитів. DocType: Letter Head,Letter Head Based On,Голова листа на основі apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Закрийте це вікно -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,Платіж завершено DocType: Contact,Designation,Позначення DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Мета-теги @@ -1706,6 +1732,7 @@ DocType: System Settings,Choose authentication method to be used by all users," DocType: Error Snapshot,Parent Error Snapshot,Знімок батьківських помилок DocType: GCalendar Account,GCalendar Account,Рахунок GCalendar DocType: Language,Language Name,Назва мови +DocType: Workflow Document State,Workflow Action is not created for optional states,Дія робочого процесу не створена для необов'язкових станів DocType: Customize Form,Customize Form,Налаштувати форму DocType: DocType,Image Field,Поле зображення apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Додано {0} ({1}) @@ -1747,6 +1774,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Застосовуйте це правило, якщо користувач є власником" DocType: About Us Settings,Org History Heading,Заголовок історії Org apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,помилка серверу +DocType: Contact,Google Contacts Description,Опис контактів Google apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Стандартні ролі не можна перейменовувати DocType: Review Level,Review Points,Точки огляду apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Відсутній параметр Kanban Board Name @@ -1764,7 +1792,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Не в режимі розробника! Встановіть у site_config.json або зробіть 'Custom' DocType. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,отримали {0} пунктів DocType: Web Form,Success Message,Повідомлення про успіх -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Для порівняння використовують> 5, <10 або = 324. Для діапазонів використовуйте 5:10 (для значень від 5 до 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Опис для розміщення сторінки, у вигляді звичайного тексту, лише кілька рядків. (не більше 140 символів)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Показати дозволи DocType: DocType,Restrict To Domain,Обмежити на домен @@ -1786,6 +1813,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Не apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Встановити кількість DocType: Auto Repeat,End Date,Дата закінчення DocType: Workflow Transition,Next State,Наступна держава +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Контакти Google синхронізовані. DocType: System Settings,Is First Startup,Перший запуск apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},оновлено до {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Рухатися @@ -1835,6 +1863,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Календар apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Шаблон імпорту даних DocType: Workflow State,hand-left,рука-ліворуч +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Виберіть кілька елементів списку apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Розмір резервної копії: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Пов'язано з {0} DocType: Braintree Settings,Private Key,Приватний ключ @@ -1877,13 +1906,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Інтерес DocType: Bulk Update,Limit,Обмеження DocType: Print Settings,Print taxes with zero amount,Друк податків з нульовою сумою -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Обліковий запис електронної пошти не налаштовано. Створіть новий обліковий запис електронної пошти в меню Налаштування> Електронна пошта> Обліковий запис електронної пошти DocType: Workflow State,Book,Книга DocType: S3 Backup Settings,Access Key ID,ID ключа доступу DocType: Chat Message,URLs,URL-адреси apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Імена й прізвища самі по собі легко вгадати. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Повідомити {0} DocType: About Us Settings,Team Members Heading,Заголовок членів команди +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Виберіть пункт списку apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Документ {0} встановлено у стан {1} на {2} DocType: Address Template,Address Template,Шаблон адреси DocType: Workflow State,step-backward,крок назад @@ -1907,6 +1936,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Експортувати спеціальні дозволи apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Немає: Кінець робочого процесу DocType: Version,Version,Версія +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Відкрити елемент списку apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 місяців DocType: Chat Message,Group,Група apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Існує певна проблема з URL-адресою файлу: {0} @@ -1962,6 +1992,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 рік apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} скасував ваші точки на {1} DocType: Workflow State,arrow-down,стрілка вниз DocType: Data Import,Ignore encoding errors,Ігнорувати помилки кодування +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Пейзаж DocType: Letter Head,Letter Head Name,Ім'я керівника листа DocType: Web Form,Client Script,Клієнтський скрипт DocType: Assignment Rule,Higher priority rule will be applied first,Спочатку застосовується правило вищого пріоритету @@ -2006,6 +2037,7 @@ DocType: Kanban Board Column,Green,Зелений apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Для нових записів необхідні тільки обов'язкові поля. Якщо потрібно, ви можете видалити необов'язкові стовпці." apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} має починатися і закінчуватися літерою і містити лише літери, дефіс або підкреслення." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Тригер Первинної дії apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Створити електронну пошту користувача apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Поле сортування {0} має бути дійсним полем DocType: Auto Email Report,Filter Meta,Фільтр Meta @@ -2035,6 +2067,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Часова шкала поля apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Завантаження ... DocType: Auto Email Report,Half Yearly,Півріччя +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Мій профіль apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Дата останньої зміни DocType: Contact,First Name,Ім'я DocType: Post,Comments,Коментарі @@ -2057,6 +2090,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Вміст Hash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Публікації від {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} призначено {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Нові контакти Google не синхронізовані. DocType: Workflow State,globe,земної кулі apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Середня кількість {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Очистити журнали помилок @@ -2083,6 +2117,8 @@ DocType: Workflow State,Inverse,Обернено DocType: Activity Log,Closed,зачинено DocType: Report,Query,Запит DocType: Notification,Days After,Дні після +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Комбінації клавіш +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Портрет apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Час запиту вичерпано DocType: System Settings,Email Footer Address,Адреса нижнього колонтитула електронної пошти apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Оновлення енергетичної точки @@ -2110,6 +2146,7 @@ For Select, enter list of Options, each on a new line.","Для посилань apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 хвилина тому apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Немає активних сеансів apps/frappe/frappe/model/base_document.py,Row,Ряд +DocType: Contact,Middle Name,Прізвище apps/frappe/frappe/public/js/frappe/request.js,Please try again,Будь ласка спробуйте ще раз DocType: Dashboard Chart,Chart Options,Параметри діаграми DocType: Data Migration Run,Push Failed,Push Failed @@ -2138,6 +2175,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,змінювати розмір-малий DocType: Comment,Relinked,Відновлюється DocType: Role Permission for Page and Report,Roles HTML,Ролі HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Ідіть apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Робочий процес почнеться після збереження. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Якщо ваші дані в HTML, скопіюйте вставте точний код HTML з тегами." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Дати часто легко вгадати. @@ -2166,7 +2204,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Значок робочого столу apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,скасовано цей документ apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Проміжок часу -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Налаштування> Дозволи користувача apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} оцінив {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Змінено значення apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Помилка в сповіщенні @@ -2231,6 +2268,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Масове видалення DocType: DocShare,Document Name,Назва документа apps/frappe/frappe/config/customization.py,Add your own translations,Додайте власні переклади +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Перейдіть до списку вниз DocType: S3 Backup Settings,eu-central-1,eu-central-1 DocType: Auto Repeat,Yearly,Щорічно apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Перейменувати @@ -2281,6 +2319,7 @@ DocType: Workflow State,plane,площині apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Помилка вкладеного набору. Зверніться до адміністратора. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Показати звіт DocType: Auto Repeat,Auto Repeat Schedule,Автоповтор +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Переглянути Ref DocType: Address,Office,Офіс DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} днів тому @@ -2314,7 +2353,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Н apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Мої налаштування apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Назва групи не може бути порожньою. DocType: Workflow State,road,дороги -DocType: Website Route Redirect,Source,Джерело +DocType: Contact,Source,Джерело apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Активні сеанси apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,У формі може бути тільки одна Скидка apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Новий чат @@ -2336,6 +2375,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Введіть URL-адресу авторизації DocType: Email Account,Send Notification to,Надіслати сповіщення apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Параметри резервного копіювання Dropbox +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,"У генерації маркерів щось пішло не так. Натисніть {0}, щоб створити новий." apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Видалити всі налаштування? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Редагувати може лише адміністратор DocType: Auto Repeat,Reference Document,Довідковий документ @@ -2360,6 +2400,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Ролі можуть бути встановлені для користувачів з їхньої сторінки користувача. DocType: Website Settings,Include Search in Top Bar,Включити пошук у верхній панелі apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Терміново] Помилка під час створення повторюваного% s для% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Глобальні скорочення DocType: Help Article,Author,Автор DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Не знайдено жодного документа для вказаних фільтрів @@ -2395,10 +2436,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, рядок {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Якщо ви завантажуєте нові записи, "Серія імен" стає обов'язковою, якщо вона є." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Редагувати властивості -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,"Неможливо відкрити примірник, коли його {0} відкрито" +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,"Неможливо відкрити примірник, коли його {0} відкрито" DocType: Activity Log,Timeline Name,Назва часової шкали DocType: Comment,Workflow,Робочий процес apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,"Будь ласка, встановіть базову URL-адресу в соціальному ключі входу для Frappe" +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Гарячі клавіши DocType: Portal Settings,Custom Menu Items,Пункти меню користувача apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,Довжина {0} має бути від 1 до 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Зв'язок втрачено. Деякі функції можуть не працювати. @@ -2461,6 +2503,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Додан DocType: DocType,Setup,Налаштування apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} створено успішно apps/frappe/frappe/www/update-password.html,New Password,Новий пароль +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Виберіть Поле apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Залиште цю розмову DocType: About Us Settings,Team Members,Члени команди DocType: Blog Settings,Writers Introduction,Введення @@ -2530,13 +2573,12 @@ DocType: Chat Room,Name,Ім'я DocType: Communication,Email Template,Шаблон електронної пошти DocType: Energy Point Settings,Review Levels,Рівні перегляду DocType: Print Format,Raw Printing,Сировина друку -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,"Неможливо відкрити {0}, коли відкрито його примірник" +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,"Неможливо відкрити {0}, коли відкрито його примірник" DocType: DocType,"Make ""name"" searchable in Global Search",Зробити "ім'я" доступним для пошуку в глобальному пошуку DocType: Data Migration Mapping,Data Migration Mapping,Відображення міграції даних DocType: Data Import,Partially Successful,Частково успішно DocType: Communication,Error,Помилка apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Тип поля не можна змінити з {0} до {1} у рядку {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Помилка підключення до програми для лотка QZ ...

Щоб скористатися функцією Raw Print, потрібно встановити та запустити програму QZ Tray.

Натисніть тут, щоб завантажити та встановити QZ Tray .
Натисніть тут, щоб дізнатися більше про нестандартний друк ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Сфотографувати apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,"Уникайте років, пов'язаних з вами." DocType: Web Form,Allow Incomplete Forms,Дозволити неповні форми @@ -2632,7 +2674,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Виберіть target = "_blank", щоб відкрити нову сторінку." DocType: Portal Settings,Portal Menu,Меню порталу DocType: Website Settings,Landing Page,Цільова сторінка -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,"Зареєструйтеся або ввійдіть, щоб розпочати" DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Параметри контактів, такі як "Запит продажів, запит на підтримку" тощо, кожен у новому рядку або розділені комами." apps/frappe/frappe/twofactor.py,Verfication Code,Код перевірки apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} вже відписано @@ -2718,6 +2759,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Карта пе DocType: Address,Sales User,Користувач з продажу apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Змінити властивості поля (приховати, лише для читання, дозволу тощо)" DocType: Property Setter,Field Name,Назва поля +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Клієнт DocType: Print Settings,Font Size,Розмір шрифту DocType: User,Last Password Reset Date,Дата останнього скидання пароля DocType: System Settings,Date and Number Format,Формат дати та номера @@ -2783,6 +2825,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Вузол гр apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Злиття з існуючим DocType: Blog Post,Blog Intro,Вступ до блогу apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Нова згадка +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Перейти до поля DocType: Prepared Report,Report Name,Назва звіту apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Оновіть, щоб отримати останній документ." apps/frappe/frappe/core/doctype/communication/communication.js,Close,Закрити @@ -2792,10 +2835,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Подія DocType: Social Login Key,Access Token URL,URL-адреса маркера доступу apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Установіть ключі доступу Dropbox у конфігурацію сайту +DocType: Google Contacts,Google Contacts,Контакти Google DocType: User,Reset Password Key,Скинути ключ пароля apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Змінено DocType: User,Bio,Біо apps/frappe/frappe/limits.py,"To renew, {0}.","Щоб оновити, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Збережено успішно +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,"Надішліть листа на адресу {0}, щоб пов’язати його тут." DocType: File,Folder,Папка DocType: DocField,Perm Level,Пермський рівень DocType: Print Settings,Page Settings,Параметри сторінки @@ -2825,6 +2871,7 @@ DocType: Workflow State,remove-sign,видалити знак DocType: Dashboard Chart,Full,Повний DocType: DocType,User Cannot Create,Користувач не може створити apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Ви отримали {0} точку +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Налаштування> Користувач DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Якщо ви встановите цей параметр, цей елемент буде відображено у спадному меню під вибраним батьком." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Немає електронних листів apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Відсутні такі поля: @@ -2838,13 +2885,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,П DocType: Web Form,Web Form Fields,Поля веб-форми DocType: Desktop Icon,_doctype,_докт apps/frappe/frappe/config/website.py,User editable form on Website.,Форма для редагування користувачів на веб-сайті. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Постійно скасувати {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Постійно скасувати {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Варіант 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,Загальна кількість apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Це дуже поширений пароль. DocType: Personal Data Deletion Request,Pending Approval,Очікує підтвердження apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Не вдалося правильно призначити документ apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Не дозволено для {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Немає значень для показу DocType: Personal Data Download Request,Personal Data Download Request,Запит на завантаження персональних даних apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} поділився цим документом із {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Виберіть {0} @@ -2860,7 +2908,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Це повідомлення було надіслано {0} і скопійовано до {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,Недійсний логін або пароль DocType: Social Login Key,Social Login Key,Соціальний ключ входу -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Налаштуйте обліковий запис електронної пошти за промовчанням з Налаштування> Електронна пошта> Обліковий запис електронної пошти apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Фільтри збережено DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Як слід відформатувати цю валюту? Якщо не встановлено, буде використано системні значення за промовчанням" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} встановлено у стан {2} @@ -2986,6 +3033,7 @@ DocType: User,Location,Розташування apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Немає даних DocType: Website Meta Tag,Website Meta Tag,Веб-сайт мета-теги DocType: Workflow State,film,фільм +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Копіюється в буфер обміну. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Налаштування не знайдено apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Мітка обов'язкова DocType: Webhook,Webhook Headers,Заголовки Webhook @@ -3194,7 +3242,7 @@ DocType: Address,Address Line 1,Рядок адреси 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Для типу документа apps/frappe/frappe/model/base_document.py,Data missing in table,Дані відсутні в таблиці apps/frappe/frappe/utils/bot.py,Could not identify {0},Не вдалося ідентифікувати {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Ця форма була змінена після завантаження +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Ця форма була змінена після завантаження apps/frappe/frappe/www/login.html,Back to Login,Повернутися до входу apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Не встановлено DocType: Data Migration Mapping,Pull,Потягніть @@ -3262,6 +3310,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Підключенн apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Налаштування облікового запису електронної пошти введіть пароль для: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Занадто багато записів в одному запиті. Надішліть менші запити DocType: Social Login Key,Salesforce,Відділ продажів +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Імпортування {0} з {1} DocType: User,Tile,Плитка apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,У номері {0} має бути майже один користувач. DocType: Email Rule,Is Spam,Це спам @@ -3299,7 +3348,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,folder-close DocType: Data Migration Run,Pull Update,Витягніть оновлення apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},об'єднано {0} в {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

DocType: SMS Settings,Enter url parameter for receiver nos,Введіть параметр url для приймачів nos apps/frappe/frappe/utils/jinja.py,Syntax error in template,Синтаксична помилка в шаблоні apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Установіть значення фільтрів у таблиці фільтра звітів @@ -3312,6 +3360,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","На жал DocType: System Settings,In Days,У дні DocType: Report,Add Total Row,Додати загальний рядок apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Початок сеансу не вдалося +DocType: Translation,Verified,Підтверджено DocType: Print Format,Custom HTML Help,Спеціальна довідка HTML DocType: Address,Preferred Billing Address,Переважна платіжна адреса apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Присвоєно @@ -3326,7 +3375,6 @@ DocType: Help Article,Intermediate,Проміжний DocType: Module Def,Module Name,Назва модуля DocType: OAuth Authorization Code,Expiration time,Термін придатності apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Встановити стандартний формат, розмір сторінки, стиль друку тощо." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,"Вам не подобається те, що ви створили" DocType: System Settings,Session Expiry,Закінчення сеансу DocType: DocType,Auto Name,Автоматичне ім'я apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Виберіть Додатки @@ -3354,6 +3402,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Системна сторінка DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Примітка: За промовчанням надсилаються повідомлення електронної пошти для невдалих резервних копій. DocType: Custom DocPerm,Custom DocPerm,Користувальницький DocPerm +DocType: Translation,PR sent,PR надіслано DocType: Tag Doc Category,Doctype to Assign Tags,Doctype для призначення позначок DocType: Address,Warehouse,Склад apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Налаштування Dropbox @@ -3421,7 +3470,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,"Ctrl + Enter, щоб додати коментар" apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Поле {0} не можна вибрати. DocType: User,Birth Date,День народження -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,З груповим відступом DocType: List View Setting,Disable Count,Вимкнути кількість DocType: Contact Us Settings,Email ID,Ідентифікатор електронної пошти apps/frappe/frappe/utils/password.py,Incorrect User or Password,Неправильний користувач або пароль @@ -3456,6 +3504,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Це рольове оновлення дозволів користувача для користувача DocType: Website Theme,Theme,Тема DocType: Web Form,Show Sidebar,Показати бічну панель +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Інтеграція контактів Google. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Стандартна папка "Вхідні" apps/frappe/frappe/www/login.py,Invalid Login Token,Недійсний маркер входу до системи apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Спочатку встановіть ім'я та збережіть запис. @@ -3483,7 +3532,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,"Будь ласка, виправте" DocType: Top Bar Item,Top Bar Item,Найкращий елемент панелі ,Role Permissions Manager,Менеджер дозволів на роль -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,Були помилки. Повідомте про це. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} рік тому apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Жінка DocType: System Settings,OTP Issuer Name,Ім'я видавця OTP apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Додати до завдання @@ -3583,6 +3632,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Нал apps/frappe/frappe/model/document.py,none of,Жоден з DocType: Desktop Icon,Page,Сторінка DocType: Workflow State,plus-sign,плюс знак +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Очистити кеш і перезавантажити apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Не вдалося оновити: неправильна / закінчена посилання. DocType: Kanban Board Column,Yellow,Жовтий DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Кількість стовпців для поля в сітці (загальна кількість стовпців у сітці повинна бути менше 11) @@ -3597,6 +3647,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Но DocType: Activity Log,Date,Дата DocType: Communication,Communication Type,Тип зв'язку apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Таблиця батьків +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Перейдіть до списку DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Показати повну помилку та дозволити звітування про проблеми розробнику DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3618,7 +3669,6 @@ DocType: Notification Recipient,Email By Role,Роль електронної п apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,"Оновіть, щоб додати більше {0} абонентів" apps/frappe/frappe/email/queue.py,This email was sent to {0},Це повідомлення було надіслано {0} DocType: User,Represents a User in the system.,Представляє користувача в системі. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Сторінка {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Запустіть новий формат apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Додати коментар apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} з {1} diff --git a/frappe/translations/ur.csv b/frappe/translations/ur.csv index f9a9e79e0f..e0537b3cda 100644 --- a/frappe/translations/ur.csv +++ b/frappe/translations/ur.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,گرڈینٹس کو فعال کریں DocType: DocType,Default Sort Order,پہلے سے طے شدہ ترتیب آرڈر apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,رپورٹ سے صرف تعداد کے شعبوں کو دکھایا گیا ہے +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,مینو اور سائڈبار میں اضافی شارٹ کٹس کو ٹرگر کرنے کیلئے آلٹ کلید دبائیں DocType: Workflow State,folder-open,فولڈر کھولیں DocType: Customize Form,Is Table,ٹیبل ہے apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,منسلک فائل کھولنے میں ناکام کیا آپ نے اسے CSV کے طور پر برآمد کیا؟ DocType: DocField,No Copy,کوئی کاپی نہیں DocType: Custom Field,Default Value,پہلے سے طے شدہ قیمت apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,آنے والی میلوں کے لئے لازمی طور پر شامل کریں +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,مطابقت پذیری کے رابطوں DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,ڈیٹا منتقلی کی تعریفیں کی تفصیل apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,ناکام apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.","راؤ پرنٹ" کے ذریعہ پی ڈی ایف پرنٹنگ ابھی تک حمایت نہیں کی گئی ہے. پرنٹر کی ترتیبات میں پرنٹر نقشہ جات کو ہٹا دیں اور دوبارہ کوشش کریں. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} اور {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,فلٹر کو بچانے میں ایک خرابی تھی apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,اپنا پاس ورڈ درج کریں apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,ہوم اور منسلک فولڈر حذف نہیں کر سکتے ہیں +DocType: Email Account,Enable Automatic Linking in Documents,دستاویزات میں خودکار لنکنگ فعال کریں DocType: Contact Us Settings,Settings for Contact Us Page,ہم سے رابطہ کریں صفحہ کے لئے ترتیبات DocType: Social Login Key,Social Login Provider,سوشل لاگ ان فراہم کنندہ +DocType: Email Account,"For more information, click here.","مزید معلومات کے لئے یہاں کلک کریں ." DocType: Transaction Log,Previous Hash,پچھلا ہش DocType: Notification,Value Changed,قیمت تبدیل DocType: Report,Report Type,رپورٹ کی قسم @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,توانائی پوائنٹ کا ا apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,سماجی لاگ ان فعال ہونے سے قبل کلائنٹ کی شناخت درج کریں DocType: Communication,Has Attachment,منسلک ہے DocType: User,Email Signature,ای میل دستخط -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} سال پہلے (ے) پہلے ,Addresses And Contacts,ایڈریس اور رابطے apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,یہ قنن بورڈ نجی ہو گا DocType: Data Migration Run,Current Mapping,موجودہ نقشہ سازی @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).",آپ سب کے طور پر ہم آہنگی کا اختیار منتخب کر رہے ہیں، یہ سرور کے ذریعے پڑھنے کے ساتھ ساتھ پڑھنے کے ساتھ ساتھ پڑھنے کے ساتھ ساتھ سبھی کو دوبارہ بھیج دیں گے. یہ ممکنہ مواصلات (ای میل) کی نقل و حرکت کا سبب بن سکتا ہے. apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},آخری مطابقت پذیر {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,ہیڈر کا مواد تبدیل نہیں کر سکتا +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,"

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

" apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,جمع کرنے کے بعد {0} تبدیل کرنے کی اجازت نہیں ہے apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page",ایپلی کیشن کو ایک نیا ورژن اپ ڈیٹ کیا گیا ہے، براہ کرم اس صفحہ کو تازہ کریں DocType: User,User Image,صارف کی تصویر @@ -319,6 +323,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},{0} apps/frappe/frappe/public/js/frappe/chat.js,Discard,رکھو DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,بہترین نتائج کے لئے شفاف پس منظر کے ساتھ تقریبا چوڑائی 150px کی تصویر منتخب کریں. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,منسلک +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} اقدار منتخب کیے گئے ہیں DocType: Blog Post,Email Sent,ای میل بھیج دی گئ DocType: Communication,Read by Recipient On,وصول کنندہ پر پڑھیں DocType: User,Allow user to login only after this hour (0-24),صارف کو صرف اس گھنٹہ کے بعد لاگ ان کرنے کی اجازت دیں (0-24) @@ -340,7 +345,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,برآمد کرنے کے ماڈیول DocType: DocType,Fields,فیلڈز -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,آپ کو اس دستاویز کو پرنٹ کرنے کی اجازت نہیں ہے +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,آپ کو اس دستاویز کو پرنٹ کرنے کی اجازت نہیں ہے apps/frappe/frappe/public/js/frappe/model/model.js,Parent,والدین apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.",آپ کا سیشن ختم ہوگیا ہے، برائے مہربانی جاری رکھنے کیلئے دوبارہ لاگ ان کریں. DocType: Assignment Rule,Priority,ترجیح @@ -367,10 +372,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,OTP خفیہ ری DocType: DocType,UPPER CASE,اپ ڈیٹ کیس apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,براہ کرم ای میل پتہ مقرر کریں DocType: Communication,Marked As Spam,اسپام کے طور پر نشان لگا دیا گیا +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,ای میل پتہ جن کے Google رابطوں کو مطابقت پذیر ہونا ہے. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,خریداروں کو درآمد کریں apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,فلٹر محفوظ کریں DocType: Address,Preferred Shipping Address,پسندیدہ شپنگ ایڈریس DocType: GCalendar Account,The name that will appear in Google Calendar,جس کا نام گوگل کیلنڈر میں ہوگا +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,تازہ کاری ٹوکن پیدا کرنے کے لئے {0} پر کلک کریں. DocType: Email Account,Disable SMTP server authentication,SMTP سرور کی توثیق کو غیر فعال کریں DocType: Email Account,Total number of emails to sync in initial sync process ,ابتدائی مطابقت پذیری کے عمل میں مطابقت پذیری ای میلز کی تعداد DocType: System Settings,Enable Password Policy,پاس ورڈ کی پالیسی کو فعال کریں @@ -387,6 +394,7 @@ DocType: Web Page,Insert Code,کوڈ ڈالیں apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,اندر نہیں DocType: Auto Repeat,Start Date,شروع کرنے کی تاریخ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,چارٹ سیٹ کریں +DocType: Website Theme,Theme JSON,تھیم JSON apps/frappe/frappe/www/list.py,My Account,میرا اکاونٹ DocType: DocType,Is Published Field,شائع فیلڈ ہے DocType: DocField,Set non-standard precision for a Float or Currency field,فلاٹ یا کرنسی فیلڈ کے لئے غیر معیاری صحت سے متعلق مقرر کریں @@ -397,7 +405,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,پروپوپ: Reference: {{ reference_doctype }} {{ reference_name }} کریں Reference: {{ reference_doctype }} {{ reference_name }} حوالہ_ڈیٹائپ Reference: {{ reference_doctype }} {{ reference_name }} دستاویز حوالہ بھیجنے کے لئے DocType: LDAP Settings,LDAP First Name Field,LDAP سب سے پہلے نام فیلڈ apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,پہلے سے طے شدہ بھیجنے اور ان باکس -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,سیٹ اپ> اپنی مرضی کے مطابق فارم apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",اپ ڈیٹ کرنے کے لئے، آپ صرف منتخب کالم کو اپ ڈیٹ کرسکتے ہیں. apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1','چیک' قسم کے فیلڈ کے لئے ڈیفالٹ ہونا چاہئے یا تو '0' یا '1' apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,اس دستاویز کا اشتراک کریں @@ -439,16 +446,19 @@ apps/frappe/frappe/model/document.py,One of,اس میں سے ایک DocType: Domain Settings,Domains HTML,ڈومینز ایچ ٹی ایم ایل DocType: Blog Settings,Blog Settings,بلاگ کی ترتیبات apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores",ڈیک ٹائپ کا نام ایک خط کے ساتھ شروع ہونا چاہئے اور یہ صرف حروف، نمبر، خالی جگہوں اور زیر زمین پر مشتمل ہوسکتا ہے +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,سیٹ اپ> صارف کی اجازت DocType: Communication,Integrations can use this field to set email delivery status,انٹیگریشنز ای میل کی ترسیل کی حیثیت قائم کرنے کے لئے اس فیلڈ کا استعمال کرسکتے ہیں apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,پٹی ادائیگی کی گیٹ وے کی ترتیبات DocType: Print Settings,Fonts,فانٹ DocType: Notification,Channel,چینل DocType: Communication,Opened,کھول دیا DocType: Workflow Transition,Conditions,شرائط +apps/frappe/frappe/config/website.py,A user who posts blogs.,ایک صارف جو بلاگز پوسٹ کرتا ہے. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,کیا اکاؤنٹ نہیں ہے؟ سائن اپ کریں apps/frappe/frappe/utils/file_manager.py,Added {0},شامل کر دیا گیا {0} DocType: Newsletter,Create and Send Newsletters,نیوز لیٹر بنائیں اور بھیجیں DocType: Website Settings,Footer Items,فوٹر اشیاء +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,برائے مہربانی سیٹ اپ اپ ای میل> ای میل اکاؤنٹ سے ڈیفالٹ ای میل اکاؤنٹ بنائیں DocType: Website Slideshow Item,Website Slideshow Item,ویب سائٹ سلائیڈ شو آئٹم apps/frappe/frappe/config/integrations.py,Register OAuth Client App,OAuth کلائنٹ ایپ رجسٹر کریں DocType: Error Snapshot,Frames,فریم @@ -489,7 +499,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.",سطح 0 دستاویز کی سطح کی اجازت کے لئے ہے، فیلڈ کی سطح کی اجازت کے لئے اعلی سطح. DocType: Address,City/Town,شہر / ٹاؤن DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?",یہ آپ کی موجودہ مرکزی خیال، موضوع کو دوبارہ ترتیب دے گا، کیا آپ واقعی جاری رکھنا چاہتے ہیں؟ apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},لازمی علاقوں میں {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},ای میل اکاؤنٹ {0} سے منسلک کرتے وقت خرابی apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,بار بار پیدا کرنے میں ایک خرابی واقع ہوئی @@ -525,7 +534,7 @@ DocType: Event,Event Category,واقعہ زمرہ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,کی بنیاد پر کالم apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,سرخی میں ترمیم کریں DocType: Communication,Received,موصول ہوا -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,آپ کو اس صفحہ تک رسائی حاصل کرنے کی اجازت نہیں ہے. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,آپ کو اس صفحہ تک رسائی حاصل کرنے کی اجازت نہیں ہے. DocType: User Social Login,User Social Login,صارف سوشل لاگ ان apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,ایک ہی فولڈر میں پیڈون فائل لکھیں جہاں یہ بچا جاتا ہے اور کالم اور نتیجہ واپس آتا ہے. DocType: Contact,Purchase Manager,خریداری کے مینیجر @@ -578,7 +587,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,چا apps/frappe/frappe/utils/data.py,Operator must be one of {0},آپریٹر ہونا چاہئے {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,اگر مالک DocType: Data Migration Run,Trigger Name,ٹرگر کا نام -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,اپنے بلاگ پر عنوانات اور تعارف لکھیں. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,فیلڈ ہٹائیں apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,سب کو ختم کریں apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,پس منظر کا رنگ @@ -628,6 +636,7 @@ DocType: Dashboard Chart,Bar,بار DocType: SMS Settings,Enter url parameter for message,پیغام کے لئے url پیرامیٹر درج کریں apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,نیا اپنی مرضی کے پرنٹ فارمیٹ apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} پہلے ہی موجود ہے +DocType: Workflow Document State,Is Optional State,اختیاری ریاست ہے DocType: Address,Purchase User,خریدار صارف DocType: Data Migration Run,Insert,داخل کریں DocType: Web Form,Route to Success Link,کامیابی کے لنک پر روٹ @@ -635,13 +644,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,صار DocType: File,Is Home Folder,ہوم فولڈر ہے apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,قسم: DocType: Post,Is Pinned,کیا ہے -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},{0} '{1} کی اجازت نہیں ہے +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},{0} '{1} کی اجازت نہیں ہے DocType: Patch Log,Patch Log,پیچ لاگ DocType: Print Format,Print Format Builder,پرنٹ فارمیٹ بلڈر 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 پتہ سے لاگ ان کرسکتے ہیں. یہ صرف صارف کے صفحے میں مخصوص صارف کے لئے بھی مقرر کیا جا سکتا ہے apps/frappe/frappe/utils/data.py,only.,صرف apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,حالت '{0}' غلط ہے DocType: Auto Email Report,Day of Week,ہفتہ کا دن +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,گوگل کی ترتیبات میں Google API کو فعال کریں. DocType: DocField,Text Editor,ٹیکسٹ ایڈیٹر apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,کٹ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,ایک کمانڈ تلاش کریں یا ٹائپ کریں @@ -649,6 +659,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,ڈی بی بیک بیک اپ کی تعداد 1 سے کم نہیں ہوسکتی ہے DocType: Workflow State,ban-circle,پابندی DocType: Data Export,Excel,ایکسل +DocType: Web Page,"Header, Breadcrumbs and Meta Tags",ہیڈر، برڈکرم اور میٹا ٹیگز apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,ای میل ایڈریس کی حمایت نہیں کی گئی DocType: Comment,Published,اشاعت شدہ DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.",نوٹ: بہترین نتائج کے لئے، تصاویر کو ایک ہی سائز کا ہونا لازمی ہے اور چوڑائی اونچائی سے زیادہ ہونا چاہئے. @@ -738,6 +749,7 @@ DocType: System Settings,Scheduler Last Event,شیڈولر آخری واقعہ apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,تمام دستاویز حصوں کی رپورٹ DocType: Website Sidebar Item,Website Sidebar Item,ویب سائڈبار آئٹم apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,ایسا کرنے کے لئے +DocType: Google Settings,Google Settings,Google ترتیبات apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency",اپنا ملک، ٹائم زون اور کرنسی منتخب کریں DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)",یہاں جامد یو آر ایل پیرامیٹرز درج کریں (مثال کے طور پر بھیجنے والے = ERPNext، صارف کا نام = ERPNext، پاسورڈ = 1234 وغیرہ) apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,ای میل اکاؤنٹ نہیں @@ -791,6 +803,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth بیئرر Token ,Setup Wizard,سیٹ اپ وزرڈ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,چارٹ ٹوگل کریں +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,مطابقت پذیری DocType: Data Migration Run,Current Mapping Action,موجودہ تعریفیں ایکشن DocType: Email Account,Initial Sync Count,ابتدائی مطابقت پذیر شمار apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,ہم سے رابطہ کریں صفحہ کے لئے ترتیبات. @@ -829,6 +842,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,پرنٹ فارمیٹ کی قسم apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,اس معیار کے لئے مقرر کردہ اجازت نہیں ہے. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,تمام توسیع کریں +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,کوئی ڈیفالٹ پتہ نہیں مل سکا. براہ کرم سیٹ اپ> پرنٹ اور برانڈنگ> ایڈریس سانچہ سے ایک نیا بنائیں. DocType: Tag Doc Category,Tag Doc Category,ٹیگ ڈاٹ زمرہ DocType: Data Import,Generated File,پیدا شدہ فائل apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,نوٹس @@ -836,7 +850,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,ٹائم لائن فیلڈ ایک لنک یا متحرک لنک ہونا ضروری ہے DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,اطلاعات اور بلک میل اس روانگی سرور سے بھیجے جائیں گے. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,یہ سب سے اوپر 100 عام پاس ورڈ ہے. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,مستقل طور پر {0} جمع کریں؟ +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,مستقل طور پر {0} جمع کریں؟ apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge",{0} {1} موجود نہیں ہے، ضم کرنے کیلئے ایک نیا ہدف منتخب کریں DocType: Energy Point Rule,Multiplier Field,ضرب فیلڈ DocType: Workflow,Workflow State Field,ورک فلو اسٹیٹ فیلڈ @@ -875,6 +889,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} {2} پوائنٹس کے ساتھ {1} پر آپ کے کام کی تعریف کی DocType: Auto Email Report,Zero means send records updated at anytime,زیرو کا مطلب کسی بھی وقت ریکارڈ اپ ڈیٹ بھیجتا ہے apps/frappe/frappe/model/document.py,Value cannot be changed for {0},{0} کے لئے قدر تبدیل نہیں کیا جا سکتا +apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API کی ترتیبات. DocType: System Settings,Force User to Reset Password,پاسورڈ ری سیٹ کرنے کے لئے صارف کو فورس کریں apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,رپورٹر بلڈر کی رپورٹوں کو براہ راست رپورٹ بلڈر کے ذریعے منظم کیا جاتا ہے. کرنے کیلئے کچھ نہیں. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,فلٹر میں ترمیم کریں @@ -928,7 +943,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,کے DocType: S3 Backup Settings,eu-north-1,یو - شمال -1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}",{0}: ایک ہی کردار کے ساتھ ایک ہی کردار کی اجازت دی گئی ہے، سطح اور {1} apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,آپ کو اس ویب فارم دستاویز کو اپ ڈیٹ کرنے کی اجازت نہیں ہے -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,اس ریکارڈ تک پہنچنے کے لئے زیادہ سے زیادہ منسلک حد تک پہنچ گئی. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,اس ریکارڈ تک پہنچنے کے لئے زیادہ سے زیادہ منسلک حد تک پہنچ گئی. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,براہ کرم یقینی بنائیں کہ حوالہ مواصلات دستاویزات سرکلر سے منسلک نہیں ہیں. DocType: DocField,Allow in Quick Entry,فوری اندراج میں اجازت دیں DocType: Error Snapshot,Locals,مقامی @@ -960,7 +975,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,استثنی کی قسم apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},{0} {1} سے {2} {3} {4} کے ساتھ منسلک کیا جاسکتا ہے یا منسوخ نہیں کرسکتا apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTP خفیہ صرف ایڈمنسٹریٹر کی طرف سے ری سیٹ کیا جا سکتا ہے. -DocType: Web Form Field,Page Break,صفحہ توڑ DocType: Website Script,Website Script,ویب سائٹ سکرپٹ DocType: Integration Request,Subscription Notification,سبسکرپشن کی اطلاع DocType: DocType,Quick Entry,فوری داخلہ @@ -977,6 +991,7 @@ DocType: Notification,Set Property After Alert,الارم کے بعد پراپر apps/frappe/frappe/__init__.py,Thank you,شکریہ apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,اندرونی انضمام کے لئے سلیک ویب ہک apps/frappe/frappe/config/settings.py,Import Data,درآمد ڈیٹا +DocType: Translation,Contributed Translation Doctype Name,تعاون شدہ ترجمہ ڈاٹائپ کا نام DocType: Social Login Key,Office 365,آفس 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID DocType: Review Level,Review Level,جائزہ سطح @@ -994,7 +1009,6 @@ DocType: Email Account,Awaiting Password,پاس ورڈ کا انتظار apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters long,پاس ورڈ زیادہ سے زیادہ 100 حروف طویل نہیں ہوسکتا ہے apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,کامیاب ہوگیا apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,کی تعریف -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),نیا {0} (Ctrl + B) DocType: Contact,Is Primary Contact,بنیادی رابطہ ہے DocType: Print Format,Raw Commands,راؤنڈ کمانڈر apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,پرنٹ کی شکلوں کے لئے طرز شیٹ @@ -1035,6 +1049,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,پس منظر کی apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},{0} میں {1} تلاش کریں DocType: Email Account,Use SSL,SSL استعمال کریں DocType: DocField,In Standard Filter,معیاری فلٹر میں +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,مطابقت پذیر ہونے کیلئے کوئی Google رابطے موجود نہیں ہیں. DocType: Data Migration Run,Total Pages,کل صفحات apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: فیلڈ '{1}' منفرد نہیں کیا جاسکتا کیونکہ اس کے غیر منفرد اقدار ہیں DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.",اگر فعال ہو تو، صارفین کو لاگ ان ہر وقت جب مطلع کیا جائے گا. اگر فعال نہیں ہے تو، صارفین صرف ایک بار مطلع کیے جائیں گے. @@ -1055,7 +1070,7 @@ DocType: Assignment Rule,Automation,آٹومیشن apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,فائلوں کو ہٹانا ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}','{0}' کے لئے تلاش کریں apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,کچھ غلط ہو گیا -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,منسلک کرنے سے پہلے محفوظ کریں. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,منسلک کرنے سے پہلے محفوظ کریں. DocType: Version,Table HTML,ٹیبل ایچ ٹی ایم ایل apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,ہب DocType: Page,Standard,سٹینڈرڈ @@ -1132,12 +1147,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,کوئی ن apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} ریکارڈ خارج کردیئے گئے ہیں apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,ڈراپ باکس تک رسائی ٹوکن پیدا کرتے وقت کچھ غلط ہوگیا. مزید تفصیلات کے لئے غلطی لاگ ان کی جانچ پڑتال کریں. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,کے بارے میں -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,کوئی ڈیفالٹ پتہ نہیں مل سکا. براہ کرم سیٹ اپ> پرنٹ اور برانڈنگ> ایڈریس سانچہ سے ایک نیا بنائیں. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google رابطے کو ترتیب دیا گیا ہے. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,تفصیلات چھپائیں apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,فونٹ طرزیں apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,آپ کی رکنیت ختم ہو گی {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},ای میل اکاؤنٹ {0} سے ای میلز موصول ہونے پر توثیق ناکام ہوگئی. سرور سے پیغام: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),اعداد و شمار گزشتہ ہفتے کی کارکردگی پر مبنی ہے ({0} سے {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,خود کار طریقے سے لنکنگ صرف اس صورت میں چالو کر سکتا ہے جب آمدنی فعال ہوجائے. DocType: Website Settings,Title Prefix,عنوان پہلے سے طے شدہ apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,توثیق اطلاقات آپ استعمال کر سکتے ہیں: DocType: Bulk Update,Max 500 records at a time,ایک وقت میں زیادہ سے زیادہ 500 ریکارڈ @@ -1169,7 +1185,7 @@ DocType: Auto Email Report,Report Filters,فلٹر کی رپورٹ کریں apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,کالم منتخب کریں DocType: Event,Participants,امیدوار DocType: Auto Repeat,Amended From,سے ترمیم -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,آپ کی معلومات جمع کردی گئی ہے +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,آپ کی معلومات جمع کردی گئی ہے DocType: Help Category,Help Category,مدد زمرہ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 مہینہ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,نئی فارمیٹ میں ترمیم یا شروع کرنے کیلئے موجودہ شکل منتخب کریں. @@ -1216,7 +1232,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,ٹریک کرنے کے لئے فیلڈ DocType: User,Generate Keys,کلیدیں بنائیں DocType: Comment,Unshared,غیر جانبدار -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,بچایا +DocType: Translation,Saved,بچایا DocType: OAuth Client,OAuth Client,OAuth کلائنٹ DocType: System Settings,Disable Standard Email Footer,معیاری ای میل فوٹر کو غیر فعال کریں apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,پرنٹ فارمیٹ {0} غیر فعال ہے @@ -1247,6 +1263,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,آخری اپ DocType: Data Import,Action,عمل apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,کلائنٹ کلید کی ضرورت ہے DocType: Chat Profile,Notifications,اطلاعات +DocType: Translation,Contributed,شراکت DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy DocType: Report,Custom Report,اپنی مرضی کے مطابق رپورٹ DocType: Workflow State,info-sign,معلومات کا نشان @@ -1263,6 +1280,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,رابطہ کریں DocType: LDAP Settings,LDAP Username Field,LDAP صارف کا نام فیلڈ apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",{1} فیلڈ {1} میں منفرد نہیں کیا جاسکتا ہے، کیونکہ غیر غیر منفرد موجودہ اقدار ہیں +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,سیٹ اپ> اپنی مرضی کے مطابق فارم DocType: User,Social Logins,سماجی لاگ ان DocType: Workflow State,Trash,ردی کی ٹوکری DocType: Stripe Settings,Secret Key,خفیہ کلید @@ -1320,6 +1338,7 @@ DocType: DocType,Title Field,عنوان فیلڈ apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,باہر جانے والے ای میل سرور سے منسلک نہیں ہوسکتا DocType: File,File URL,فائل URL DocType: Help Article,Likes,پسند +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google رابطے انٹیگریشن غیر فعال ہے. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,آپ کو لاگ ان ہونے کی ضرورت ہے اور بیک اپ تک رسائی حاصل کرنے کے لۓ سسٹم مینیجر کردار ادا کرنا ہوگا. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,پہلی سطح DocType: Blogger,Short Name,مختصر نام @@ -1337,13 +1356,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,زپ درآمد کریں DocType: Contact,Gender,صنف DocType: Workflow State,thumbs-down,انگوٹھے نیچے -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},قطار {0} میں سے ایک ہونا چاہئے apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},دستاویز کی قسم پر اطلاع مقرر نہیں کر سکتے ہیں {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,سسٹم کے مینیجر کو اس صارف کو شامل کرنے کے طور پر کم سے کم ایک سسٹم مینیجر ہونا لازمی ہے apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,خوش آمدید ای میل بھیج دیا DocType: Transaction Log,Chaining Hash,چکن ہش DocType: Contact,Maintenance Manager,بحالی مینیجر +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",مقابلے کے لئے، استعمال کریں> 5، <10 یا = 324. حدود کے لئے 5:10 استعمال کریں (5 اور 10 کے درمیان اقدار کے لئے). apps/frappe/frappe/utils/bot.py,show,دکھائیں apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,اشتراک کریں URL apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,غیر معاون فائل کی شکل @@ -1365,7 +1384,7 @@ DocType: Communication,Notification,اطلاع DocType: Data Import,Show only errors,صرف غلطیاں دکھائیں DocType: Energy Point Log,Review,جائزہ لیں apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,صفوں کو ہٹا دیا گیا -DocType: GSuite Settings,Google Credentials,Google اعتبار +DocType: Google Settings,Google Credentials,Google اعتبار apps/frappe/frappe/www/login.html,Or login with,یا کے ساتھ لاگ ان کریں apps/frappe/frappe/model/document.py,Record does not exist,ریکارڈ موجود نہیں ہے apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,نئی رپورٹ کا نام @@ -1390,6 +1409,7 @@ DocType: Desktop Icon,List,فہرست DocType: Workflow State,th-large,بڑی apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: جمع نہیں کیا جاسکتا ہے تو جمع نہیں کیا جا سکتا apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,کسی بھی ریکارڈ سے منسلک نہیں +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZ ٹرے درخواست سے منسلک کرنے میں خرابی ...

آپ کو راؤ پرنٹ کی خصوصیت کا استعمال کرنے کے لئے، QZ ٹرے کی درخواست نصب اور چلانے کی ضرورت ہے.

QZ ٹرے ڈاؤن لوڈ اور انسٹال کرنے کے لئے یہاں کلک کریں .
راول پرنٹنگ کے بارے میں مزید جاننے کے لئے یہاں کلک کریں ." DocType: Chat Message,Content,مواد DocType: Workflow Transition,Allow Self Approval,خود منظور کرنے کی اجازت دیں apps/frappe/frappe/www/qrcode.py,Page has expired!,صفحہ ختم ہو گیا ہے! @@ -1406,6 +1426,7 @@ DocType: Workflow State,hand-right,ہاتھ دائیں DocType: Website Settings,Banner is above the Top Menu Bar.,بینر اوپر مینو بار سے اوپر ہے. apps/frappe/frappe/www/update-password.html,Invalid Password,غلط پاسورڈ apps/frappe/frappe/utils/data.py,1 month ago,1 ماہ پہلے +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Google رابطے تک رسائی کی اجازت دیں DocType: OAuth Client,App Client ID,اپلی کیشن کلائنٹ ID DocType: DocField,Currency,کرنسی DocType: Website Settings,Banner,بینر @@ -1417,7 +1438,7 @@ apps/frappe/frappe/utils/goal.py,Goal,مقصد DocType: Print Style,CSS,سی ایس ایس apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.",اگر رول سطح 0 تک رسائی نہیں ہے تو، اعلی سطح غیر معنی ہیں. DocType: ToDo,Reference Type,حوالہ قسم -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!",ڈیک ٹائپ، ڈاٹ ٹائپ کی اجازت دیتی ہے. محتاط رہیں! +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!",ڈیک ٹائپ، ڈاٹ ٹائپ کی اجازت دیتی ہے. محتاط رہیں! DocType: Domain Settings,Domain Settings,ڈومین کی ترتیبات DocType: Auto Email Report,Dynamic Report Filters,متحرک رپورٹ فلٹرز DocType: Energy Point Log,Appreciation,تعریف @@ -1459,6 +1480,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,ہم - مغرب 2 DocType: DocType,Is Single,اکیلا ہے apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,نئی شکل بنائیں +DocType: Google Contacts,Authorize Google Contacts Access,Google رابطے تک رسائی کا اختیار DocType: S3 Backup Settings,Endpoint URL,اختتام پوائنٹ یو آر ایل DocType: Social Login Key,Google,گوگل DocType: Contact,Department,شعبہ @@ -1473,7 +1495,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,کو سونپا DocType: List Filter,List Filter,فہرست فلٹر DocType: Dashboard Chart Link,Chart,چارٹ apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,ہٹا نہیں سکتا -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,تصدیق کرنے کے لئے اس دستاویز کو جمع کریں +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,تصدیق کرنے کے لئے اس دستاویز کو جمع کریں apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} پہلے ہی موجود ہے. دوسرا نام منتخب کریں apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,آپ نے اس فارم میں غیر محفوظ کردہ تبدیلییں ہیں. برائے مہربانی جاری رکھیں اس سے پہلے کہ آپ جاری رکھیں. apps/frappe/frappe/model/document.py,Action Failed,ایکشن ناکام ہوگیا @@ -1555,6 +1577,7 @@ DocType: DocField,Display,ڈسپلے apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,تمام کو جواب دیں DocType: Calendar View,Subject Field,موضوع فیلڈ apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},سیشن ختم ہونے کی شکل میں ہونا چاہئے {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},اپیل کرنا: {0} DocType: Workflow State,zoom-in,زوم میں apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,سرور سے رابطہ کرنے میں ناکام apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},تاریخ {0} ہونا چاہئے شکل میں: {1} @@ -1566,8 +1589,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,ٹیسٹ فالڈر DocType: Workflow State,Icon will appear on the button,بٹن پر بٹن دکھایا جائے گا DocType: Role Permission for Page and Report,Set Role For,رول کے لئے مقرر کریں +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,خودکار لنکنگ صرف ایک ای میل اکاؤنٹ کے لئے چالو کیا جا سکتا ہے. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,کوئی ای میل اکاؤنٹس مقرر نہیں +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ای میل اکاؤنٹ سیٹ اپ نہیں براہ کرم سیٹ اپ> ای میل> ای میل اکاؤنٹ سے ایک نیا ای میل اکاؤنٹ بنائیں apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,تفویض +DocType: Google Contacts,Last Sync On,آخری مطابقت پذیری apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},خود کار طریقے سے ضابطے {1} کے ذریعے {0} کی طرف سے حاصل apps/frappe/frappe/config/website.py,Portal,پورٹل apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,آپ کا ای میل کرنے کے لئے شکریہ @@ -1588,7 +1614,6 @@ DocType: GSuite Settings,GSuite Settings,GSuite ترتیبات DocType: Integration Request,Remote,ریموٹ DocType: File,Thumbnail URL,تھمب نیل URL apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,رپورٹ ڈاؤن لوڈ کریں -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,سیٹ اپ> صارف apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},{0} کے لئے حسب ضرورت برآمد:
{1} DocType: GCalendar Account,Calendar Name,کیلنڈر کا نام apps/frappe/frappe/templates/emails/new_user.html,Your login id is,آپ کا لاگ ان ID ہے @@ -1638,6 +1663,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},{0} apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,تصویری فیلڈ ایک درست فیلڈ نام ہونا ضروری ہے apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,اس صفحہ کو رسائی حاصل کرنے کے لئے آپ کو لاگ ان کرنا ہوگا DocType: Assignment Rule,Example: {{ subject }},مثال: {{موضوع}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,فیلڈ نام {0} محدود ہے apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},آپ فیلڈ {0} کے لئے 'صرف پڑھنے' کو غیر مرتب نہیں کرسکتے ہیں. DocType: Social Login Key,Enable Social Login,سوشل لاگ ان کو فعال کریں DocType: Workflow,Rules defining transition of state in the workflow.,کام کے بہاؤ میں ریاست کی منتقلی کا تعین کرنے والے قواعد. @@ -1658,10 +1684,10 @@ DocType: Website Settings,Route Redirects,روٹ ری ڈائریکٹ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,ای میل ان باکس apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},بحال {0} کے طور پر {1} DocType: Assignment Rule,Automatically Assign Documents to Users,صارفین کو دستاویزات خود بخود تفویض کریں +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,کھولیں بہت اچھے apps/frappe/frappe/config/settings.py,Email Templates for common queries.,عام سوالات کے لئے ای میل سانچے. DocType: Letter Head,Letter Head Based On,خط سر پر مبنی ہے apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,براہ مہربانی اس ونڈو کو بند کریں -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,ادائیگی مکمل DocType: Contact,Designation,عہدہ DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,میٹا ٹیگز @@ -1698,6 +1724,7 @@ DocType: System Settings,Choose authentication method to be used by all users,ت DocType: Error Snapshot,Parent Error Snapshot,والدین کی خرابی سنیپ شاٹ DocType: GCalendar Account,GCalendar Account,GCalendar اکاؤنٹ DocType: Language,Language Name,زبان کا نام +DocType: Workflow Document State,Workflow Action is not created for optional states,اختیاری ریاستوں کے لئے ورک فلو ایکشن نہیں بنایا گیا ہے DocType: Customize Form,Customize Form,اپنی مرضی کے مطابق فارم DocType: DocType,Image Field,تصویری فیلڈ apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),شامل کر دیا گیا {0} ({1}) @@ -1739,6 +1766,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,اگر صارف مالک ہے تو اس قاعدہ کو لاگو کریں DocType: About Us Settings,Org History Heading,ORG تاریخ کی سرخی apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,سرور کی خرابی +DocType: Contact,Google Contacts Description,Google رابطے کی تفصیلات apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,معیاری کردار تبدیل نہیں کیے جا سکتے ہیں DocType: Review Level,Review Points,جائزہ پوائنٹس apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,لاپتہ پیرامیٹر Kanban بورڈ کا نام @@ -1755,7 +1783,6 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,{0} does apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run.js,Currently updating {0},فی الحال اپ ڈیٹ کرنا {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,ڈویلپر موڈ میں نہیں! site_config.json میں مقرر کریں یا اپنی مرضی کے مطابق ڈاٹ ٹائپ کریں. DocType: Web Form,Success Message,کامیابی کا پیغام -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",مقابلے کے لئے، استعمال کریں> 5، <10 یا = 324. حدود کے لئے 5:10 استعمال کریں (5 اور 10 کے درمیان اقدار کے لئے). DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",لسٹنگ کے صفحے کے لئے تفصیل، سادہ متن میں، صرف ایک جوڑے کی لائنز. (زیادہ سے زیادہ 140 حروف) apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,اجازتیں دکھائیں DocType: DocType,Restrict To Domain,ڈومین پر پابندی @@ -1777,6 +1804,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,کے apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,مقدار مقرر کریں DocType: Auto Repeat,End Date,آخری تاریخ DocType: Workflow Transition,Next State,اگلا ریاست +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Google رابطوں کو مطابقت پذیری DocType: System Settings,Is First Startup,پہلا آغاز ہے apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},{0} کو اپ ڈیٹ apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,پر منتقل @@ -1826,6 +1854,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} کیلنڈر apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,ڈیٹا درآمد سانچہ DocType: Workflow State,hand-left,ہاتھ بائیں +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,متعدد فہرست اشیاء منتخب کریں apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,بیک اپ سائز: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},{0} کے ساتھ منسلک DocType: Braintree Settings,Private Key,ذاتی کلید @@ -1868,13 +1897,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,دلچسپی DocType: Bulk Update,Limit,حد DocType: Print Settings,Print taxes with zero amount,صفر کے ساتھ ٹیکس پرنٹ کریں -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ای میل اکاؤنٹ سیٹ اپ نہیں براہ کرم سیٹ اپ> ای میل> ای میل اکاؤنٹ سے ایک نیا ای میل اکاؤنٹ بنائیں DocType: Workflow State,Book,کتاب DocType: S3 Backup Settings,Access Key ID,رسائی کی شناختی ID DocType: Chat Message,URLs,یو آر ایل apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,اپنے نام سے نام اور سرناموں کا اندازہ لگانا آسان ہے. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},رپورٹ {0} DocType: About Us Settings,Team Members Heading,ٹیم اراکین کی سرخی +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,فہرست آئٹم منتخب کریں apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},دستاویز {0} کو {1} کی حیثیت سے {2} مقرر کیا گیا ہے. DocType: Address Template,Address Template,ایڈریس سانچہ DocType: Workflow State,step-backward,قدم پسماندہ @@ -1898,6 +1927,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,اپنی مرضی کے مطابق اجازت برآمد کریں apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,کوئی بھی نہیں: کام کے بہاؤ کے اختتام DocType: Version,Version,ورژن +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,کھولیں فہرست شے apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 ماہ DocType: Chat Message,Group,گروپ apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},فائل کا url کے ساتھ کچھ مسئلہ ہے: {0} @@ -1953,6 +1983,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 سال apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} اپنے پوائنٹس کو {1} DocType: Workflow State,arrow-down,تیر - نیچے DocType: Data Import,Ignore encoding errors,انکوڈنگ کی غلطیوں کو نظر انداز کریں +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,زمین کی تزئین DocType: Letter Head,Letter Head Name,خط سر کا نام DocType: Web Form,Client Script,کلائنٹ سکرپٹ DocType: Assignment Rule,Higher priority rule will be applied first,اعلی ترجیحی اصول پہلے ہی لاگو ہوگی @@ -1997,6 +2028,7 @@ DocType: Kanban Board Column,Green,سبز apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,نئے ریکارڈز کے لئے لازمی ضروریات صرف ضروری ہیں. اگر آپ چاہتے ہیں تو آپ غیر لازمی کالم حذف کر سکتے ہیں. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.",{0} لازمی طور پر ایک خط کے ساتھ شروع کرنا اور ختم ہونا چاہیے اور صرف اس میں حروف، ہائفن یا زیر استعمال ہوسکتا ہے. +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,ٹرگر پرائمری ایکشن apps/frappe/frappe/core/doctype/user/user.js,Create User Email,صارف ای میل بنائیں apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,ترتیب شدہ فیلڈ {0} لازمی فیلڈ نام ہونا ضروری ہے DocType: Auto Email Report,Filter Meta,فلٹر میٹا @@ -2026,6 +2058,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,ٹائم لائن فیلڈ apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,لوڈ کر رہا ہے ... DocType: Auto Email Report,Half Yearly,نصفانہ +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,میری پروفائل apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,آخری ترمیم شدہ تاریخ DocType: Contact,First Name,پہلا نام DocType: Post,Comments,تبصرے @@ -2048,6 +2081,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,مواد ہش apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},{0} کی طرف سے مراسلہ apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} تفویض {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,کوئی نیا Google رابطوں کو مطابقت پذیر نہیں. DocType: Workflow State,globe,دنیا apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},اوسط {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,خامی غلطی لاگ ان @@ -2074,6 +2108,8 @@ DocType: Workflow State,Inverse,اندرونی DocType: Activity Log,Closed,بند DocType: Report,Query,سوال DocType: Notification,Days After,دن کے بعد +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,صفحہ شارٹ کٹس +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,پورٹریٹ apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,درخواست کا وقت ختم DocType: System Settings,Email Footer Address,ای میل فوٹر ایڈریس apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,توانائی نقطہ اپ ڈیٹ @@ -2101,6 +2137,7 @@ For Select, enter list of Options, each on a new line.",لنکس کے لئے، apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 منٹ پہلے apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,کوئی فعال سیشن نہیں apps/frappe/frappe/model/base_document.py,Row,قطار +DocType: Contact,Middle Name,درمیانی نام apps/frappe/frappe/public/js/frappe/request.js,Please try again,دوبارہ کوشش کریں DocType: Dashboard Chart,Chart Options,چارٹ کے اختیارات DocType: Data Migration Run,Push Failed,پش ناکام ہوگیا @@ -2129,6 +2166,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,سائز کم کرنا DocType: Comment,Relinked,منسلک DocType: Role Permission for Page and Report,Roles HTML,Roles ایچ ٹی ایم ایل +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,جاؤ apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,بچانے کے بعد ورک فلو شروع ہو جائے گا. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.",اگر آپ کا ڈیٹا ایچ ٹی ایم ایل میں ہے، تو براہ کرم درست ٹیگ کو ٹیگ کے ساتھ پیسٹ کریں. apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,اندازہ لگایا جاتا ہے کہ تاریخ اکثر آسان ہے. @@ -2157,7 +2195,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,ڈیسک ٹاپ آئکن apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,اس دستاویز کو منسوخ کر دیا apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,تاریخ کی حد -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,سیٹ اپ> صارف کی اجازت apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{1} کی تعریف کی {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,قیمتوں میں تبدیلی apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,اطلاع میں خرابی @@ -2221,6 +2258,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,بلک حذف کریں DocType: DocShare,Document Name,دستاویز کا نام apps/frappe/frappe/config/customization.py,Add your own translations,اپنا اپنا ترجمہ شامل کریں +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,فہرست نیچے نیویگیشن DocType: S3 Backup Settings,eu-central-1,یو مرکزی -1 DocType: Auto Repeat,Yearly,سالانہ apps/frappe/frappe/public/js/frappe/model/model.js,Rename,نام تبدیل کریں @@ -2271,6 +2309,7 @@ DocType: Workflow State,plane,ہوائی جہاز apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,نزدیک سیٹ غلطی ایڈمنسٹریٹر سے رابطہ کریں. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,رپورٹ دکھائیں DocType: Auto Repeat,Auto Repeat Schedule,خود کار طریقے سے شیڈول +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,ریفری دیکھیں DocType: Address,Office,دفتر DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} دن پہلے @@ -2304,7 +2343,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,ل apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,میری ترتیبات apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,گروپ کا نام خالی نہیں ہوسکتا ہے. DocType: Workflow State,road,سڑک -DocType: Website Route Redirect,Source,ذریعہ +DocType: Contact,Source,ذریعہ apps/frappe/frappe/www/third_party_apps.html,Active Sessions,فعال سیشن apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,فارم میں صرف ایک ہی فولڈر ہوسکتا ہے apps/frappe/frappe/public/js/frappe/chat.js,New Chat,نئی بات چیت @@ -2326,6 +2365,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,رجسٹرڈ یو آر ایل درج کریں DocType: Email Account,Send Notification to,اطلاع بھیجیں apps/frappe/frappe/config/integrations.py,Dropbox backup settings,ڈراپ باکس بیک اپ ترتیبات +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,ٹوکن نسل کے دوران کچھ غلط ہوا. ایک نیا پیدا کرنے کیلئے {0} پر کلک کریں. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,تمام اصلاحات کو ہٹا دیں؟ apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,ایڈمنسٹریٹر صرف ترمیم کرسکتا ہے DocType: Auto Repeat,Reference Document,حوالہ دستاویز @@ -2350,6 +2390,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,رولز صارفین کو اپنے صارف کے صفحے سے مقرر کیا جا سکتا ہے. DocType: Website Settings,Include Search in Top Bar,اوپر بار میں تلاش شامل کریں apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[متوقع]٪ s کے لئے بار بار٪ s بنانے میں خرابی +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,عالمی شارٹ کٹس DocType: Help Article,Author,مصنف DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,دیئے گئے فلٹرز کے لئے کوئی دستاویز نہیں ملا @@ -2385,10 +2426,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}",{0}، صف {1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.",اگر آپ نئے ریکارڈ اپ لوڈ کر رہے ہیں تو "نامنگی سیریز" لازمی طور پر، اگر حاضر ہوتا ہے. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,پراپرٹیز میں ترمیم کریں -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,مثال کے طور پر کھول نہیں سکتا جب اس {0} کھلا ہے +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,مثال کے طور پر کھول نہیں سکتا جب اس {0} کھلا ہے DocType: Activity Log,Timeline Name,ٹائم لائن کا نام DocType: Comment,Workflow,ورک فلو apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,فریپ کے لئے سوشل لاگ ان کلید میں براہ مہربانی بیس یو آر ایل کو مقرر کریں +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,کی بورڈ شارٹ کٹس DocType: Portal Settings,Custom Menu Items,اپنی مرضی کے مطابق مینو اشیاء apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,{0} کی لمبائی 1 اور 1000 کے درمیان ہونا چاہئے apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,کنکشن کھو دیا. کچھ خصوصیات کام نہیں کر سکتے ہیں. @@ -2450,6 +2492,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,رائس ش DocType: DocType,Setup,سیٹ اپ apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,کامیابی کے ساتھ {0} apps/frappe/frappe/www/update-password.html,New Password,نیا پاس ورڈ +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,فیلڈ منتخب کریں apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,یہ گفتگو چھوڑ دو DocType: About Us Settings,Team Members,ٹیم کے افراد DocType: Blog Settings,Writers Introduction,مصنفین کا تعارف @@ -2519,13 +2562,12 @@ DocType: Chat Room,Name,نام DocType: Communication,Email Template,ای میل سانچہ DocType: Energy Point Settings,Review Levels,جائزہ لینے کے معیار DocType: Print Format,Raw Printing,خام پرنٹنگ -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,{0} کھول نہیں سکتا جب اس کی مثال کھلا ہے +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,{0} کھول نہیں سکتا جب اس کی مثال کھلا ہے DocType: DocType,"Make ""name"" searchable in Global Search",گلوبل تلاش میں "نام" تلاش کیجئے DocType: Data Migration Mapping,Data Migration Mapping,ڈیٹا منتقلی کی تعریفیں DocType: Data Import,Partially Successful,جزوی طور پر کامیاب DocType: Communication,Error,خرابی apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},فیلڈ ٹائپ {0} سے {1} میں صف {2} سے تبدیل نہیں کیا جا سکتا -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZ ٹرے درخواست سے منسلک کرنے میں خرابی ...

آپ کو راؤ پرنٹ کی خصوصیت کا استعمال کرنے کے لئے، QZ ٹرے کی درخواست نصب اور چلانے کی ضرورت ہے.

QZ ٹرے ڈاؤن لوڈ اور انسٹال کرنے کے لئے یہاں کلک کریں .
راول پرنٹنگ کے بارے میں مزید جاننے کے لئے یہاں کلک کریں ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,تصویر لو apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,سال سے بچیں جو آپ کے ساتھ منسلک ہیں. DocType: Web Form,Allow Incomplete Forms,نامکمل فارموں کی اجازت دیں @@ -2621,7 +2663,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",ایک نیا صفحہ کھولنے کیلئے ہدف = "_ بلک" منتخب کریں. DocType: Portal Settings,Portal Menu,پورٹل مینو DocType: Website Settings,Landing Page,لینڈنگ پیج -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,برائے مہربانی سائن اپ کریں یا شروع کرنے کے لئے لاگ ان کریں DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",رابطے کے اختیارات، جیسے "سیلز سوال، سپورٹ سوالات" وغیرہ کی طرح ایک نئی لائن پر یا کما کے ذریعہ الگ. apps/frappe/frappe/twofactor.py,Verfication Code,Verfication کوڈ apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} پہلے ہی سبسکرائب کردہ @@ -2706,6 +2747,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,ڈیٹا مگر DocType: Address,Sales User,سیلز صارف apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)",فیلڈ کی خصوصیات تبدیل کریں (پوشیدہ، پڑھنے، اجازت وغیرہ) DocType: Property Setter,Field Name,فیلڈ کا نام +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,کسٹمر DocType: Print Settings,Font Size,حرف کا سائز DocType: User,Last Password Reset Date,آخری پاس ورڈ دوبارہ ترتیب دیں DocType: System Settings,Date and Number Format,تاریخ اور نمبر کی شکل @@ -2771,6 +2813,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,گروپ نوڈ apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,موجودہ کے ساتھ ضم DocType: Blog Post,Blog Intro,بلاگ کا تعارف apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,نیا ذکر +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,میدان میں جائیں DocType: Prepared Report,Report Name,رپورٹ کا نام apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,تازہ ترین دستاویز حاصل کرنے کیلئے براہ کرم تازہ کریں. apps/frappe/frappe/core/doctype/communication/communication.js,Close,بند کریں @@ -2780,10 +2823,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,تقریب DocType: Social Login Key,Access Token URL,رسائی ٹوکن یو آر ایل apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,براہ کرم آپ کی سائٹ کی ترتیب میں ڈراپ باکس تک رسائی کی چابیاں مقرر کریں +DocType: Google Contacts,Google Contacts,Google رابطے DocType: User,Reset Password Key,پاس ورڈ کلید کو دوبارہ ترتیب دیں apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,کی طرف سے ترمیم DocType: User,Bio,بیو apps/frappe/frappe/limits.py,"To renew, {0}.",تجدید کرنے کے لئے، {0}. +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,کامیابی سے بچایا +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,اسے لنک کرنے کیلئے {0} ایک ای میل بھیجیں. DocType: File,Folder,فولڈر DocType: DocField,Perm Level,پرم کی سطح DocType: Print Settings,Page Settings,صفحہ ترتیبات @@ -2812,6 +2858,7 @@ DocType: User,Modules HTML,ماڈیول ایچ ٹی ایم ایل DocType: Workflow State,remove-sign,ہٹانا DocType: Dashboard Chart,Full,مکمل DocType: DocType,User Cannot Create,یوزر نہیں بنا سکتا +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,سیٹ اپ> صارف DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.",اگر آپ اس کو مقرر کرتے ہیں تو، یہ آئٹم منتخب والدین کے تحت ڈراپ ڈاؤن میں آ جائے گا. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,کوئی ای میل نہیں apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,مندرجہ ذیل فیلڈز غائب ہیں: @@ -2825,13 +2872,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,ک DocType: Web Form,Web Form Fields,ویب فارم فیلڈ DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,ویب سائٹ پر صارف قابل تدوین فارم. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,{0} مستقل طور پر منسوخ کریں؟ +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,{0} مستقل طور پر منسوخ کریں؟ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,اختیار 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,مجموعی طور پر apps/frappe/frappe/utils/password_strength.py,This is a very common password.,یہ بہت عام پاس ورڈ ہے. DocType: Personal Data Deletion Request,Pending Approval,زیر التواء منظوری apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,دستاویز کو درست طریقے سے تفویض نہیں کیا جاسکتا apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{0}: {1} کے لئے اجازت نہیں ہے +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,ظاہر کرنے کے لئے کوئی اقدار نہیں DocType: Personal Data Download Request,Personal Data Download Request,ذاتی ڈیٹا ڈاؤن لوڈ کی درخواست apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{1} اس دستاویز کو {1} کے ساتھ اشتراک کیا apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},{0} منتخب کریں @@ -2847,7 +2895,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},یہ ای میل بھیج دیا گیا تھا {0} اور {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,غلط لاگ ان یا پاس ورڈ DocType: Social Login Key,Social Login Key,سوشل لاگ ان کلید -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,برائے مہربانی سیٹ اپ اپ ای میل> ای میل اکاؤنٹ سے ڈیفالٹ ای میل اکاؤنٹ بنائیں apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,فلٹر محفوظ ہوگئے DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",یہ کرنسی کیسے کی جائے گی؟ اگر سیٹ نہیں کیا جائے تو، سسٹم کے ڈیفالٹ استعمال کریں گے apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} ریاست قائم کرنا ہے {2} @@ -2973,6 +3020,7 @@ DocType: User,Location,مقام apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,کوئی مواد نہیں DocType: Website Meta Tag,Website Meta Tag,ویب سائٹ میٹا ٹیگ DocType: Workflow State,film,فلم +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,کلپ بورڈ پر کاپی apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,لیبل ضروری ہے DocType: Webhook,Webhook Headers,ویب ہک ہیڈر apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email",پرنٹنگ، ای میل کے لئے حسب ضرورت شکلیں @@ -3179,7 +3227,7 @@ DocType: Address,Address Line 1,پتہ لائن 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,دستاویز کی قسم کے لئے apps/frappe/frappe/model/base_document.py,Data missing in table,ڈیٹا میز میں لاپتہ ہے apps/frappe/frappe/utils/bot.py,Could not identify {0},{0} کی نشاندہی نہیں کی جا سکتی -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,یہ فارم آپ کو لوڈ کرنے کے بعد نظر ثانی کی گئی ہے +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,یہ فارم آپ کو لوڈ کرنے کے بعد نظر ثانی کی گئی ہے apps/frappe/frappe/www/login.html,Back to Login,لاگ ان پر واپس apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,سیٹ نہیں ہے DocType: Data Migration Mapping,Pull,ھیںچو @@ -3246,6 +3294,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,بچے ٹیبل تع apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,ای میل اکاؤنٹ کی سیٹ اپ برائے مہربانی اپنے پاس ورڈ درج کریں: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,ایک درخواست میں بہت سے لکھتے ہیں. براہ مہربانی چھوٹی درخواستیں بھیجیں DocType: Social Login Key,Salesforce,Salesforce +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{0} کا {1} درآمد DocType: User,Tile,ٹائل DocType: Email Rule,Is Spam,اسپام ہے apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,مکمل رجسٹریشن @@ -3281,7 +3330,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,فولڈر - قریبی DocType: Data Migration Run,Pull Update,اپ ڈیٹ ھیںچو apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},{0} میں ضم کیا گیا تھا {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,"

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

" DocType: SMS Settings,Enter url parameter for receiver nos,رسیور نو کے لئے url پیرامیٹر درج کریں apps/frappe/frappe/utils/jinja.py,Syntax error in template,سانچے میں مطابقت پذیری کی خرابی apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,براہ کرم رپورٹ فلٹر میز میں فلٹر کی قیمت مقرر کریں. @@ -3294,6 +3342,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.",افسوس، DocType: System Settings,In Days,دن میں DocType: Report,Add Total Row,کل صف شامل کریں apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,سیشن شروع ناکام ہوگیا +DocType: Translation,Verified,تصدیق شدہ DocType: Print Format,Custom HTML Help,اپنی مرضی کے HTML مدد DocType: Address,Preferred Billing Address,پسندیدہ بلنگ ایڈریس apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,مقرر کیا، مقرر کرنا @@ -3308,7 +3357,6 @@ DocType: Help Article,Intermediate,انٹرمیڈیٹ DocType: Module Def,Module Name,ماڈیول کا نام DocType: OAuth Authorization Code,Expiration time,ختم ہونے کا وقت apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.",پہلے سے طے شدہ شکل، صفحہ کا سائز، پرنٹ سٹائل مقرر کریں. -apps/frappe/frappe/desk/like.py,You cannot like something that you created,آپ ایسی چیز پسند نہیں کرسکتے جو آپ نے پیدا کیا ہے DocType: System Settings,Session Expiry,اجلاس کا اختتام DocType: DocType,Auto Name,آٹو نام apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,منسلکات کو منتخب کریں @@ -3336,6 +3384,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,سسٹم پیج DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,نوٹ: ناکام بیک اپ کے لئے پہلے سے طے شدہ ای میلز بھیجے جاتے ہیں. DocType: Custom DocPerm,Custom DocPerm,اپنی مرضی کے مطابق ڈیکپرم +DocType: Translation,PR sent,پی آر بھیج دیا DocType: Tag Doc Category,Doctype to Assign Tags,ٹیگز کو تفویض کرنے کے لئے ڈیوٹائپ DocType: Address,Warehouse,گودام apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,ڈراپ باکس سیٹ اپ @@ -3403,7 +3452,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,تبصرہ شامل کرنے کیلئے Ctrl + درج کریں apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,فیلڈ {0} منتخب نہیں ہے. DocType: User,Birth Date,تاریخ پیدائش -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,گروپ اشارے کے ساتھ DocType: List View Setting,Disable Count,شمار غیر فعال کریں DocType: Contact Us Settings,Email ID,ای میل کا پتہ apps/frappe/frappe/utils/password.py,Incorrect User or Password,غلط صارف یا پاس ورڈ @@ -3438,6 +3486,7 @@ DocType: Website Settings,<head> HTML,<سر> ایچ ٹی ایم ای DocType: Custom DocPerm,This role update User Permissions for a user,یہ کردار صارف کے لئے صارف کی اجازتوں کو اپ ڈیٹ کرتا ہے DocType: Website Theme,Theme,خیالیہ DocType: Web Form,Show Sidebar,سائڈبار دکھائیں +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google رابطے انضمام. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,ڈیفالٹ ان باکس apps/frappe/frappe/www/login.py,Invalid Login Token,غلط لاگ ان ٹوکن apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,سب سے پہلے نام قائم اور ریکارڈ کو بچانے کے. @@ -3465,7 +3514,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,براہ کرم درست کریں DocType: Top Bar Item,Top Bar Item,اوپر بار آئٹم ,Role Permissions Manager,کردار کی اجازت مینیجر -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,غلطیاں تھیں. براہ مہربانی اس کی اطلاع دیں. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} سال پہلے (ے) پہلے apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,عورت DocType: System Settings,OTP Issuer Name,اے ٹی پی کے اجراء کنندہ کا نام apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,کرنے کے لئے شامل کریں @@ -3565,6 +3614,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings",زبا apps/frappe/frappe/model/document.py,none of,میں سے کوئی بھی DocType: Desktop Icon,Page,صفحہ DocType: Workflow State,plus-sign,پلس +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,صاف کیش اور دوبارہ صاف کریں apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,اپ ڈیٹ نہیں کر سکتے ہیں: غلط / ختم شدہ لنک. DocType: Kanban Board Column,Yellow,پیلا DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),ایک گرڈ میں فیلڈ کے کالموں کی تعداد (ایک گرڈ میں کل کالم 11 سے کم ہونا چاہئے) @@ -3579,6 +3629,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,نی DocType: Activity Log,Date,تاریخ DocType: Communication,Communication Type,مواصلات کی قسم apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,والدین کی میز +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,فہرست کو نیویگیشن کریں DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,مکمل خرابی دکھائیں اور ڈویلپر پر مسائل کی رپورٹنگ کی اجازت دیں DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3600,7 +3651,6 @@ DocType: Notification Recipient,Email By Role,کردار کی طرف سے ای apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,{0} سے زیادہ صارفین کو شامل کرنے کیلئے اپ گریڈ کریں apps/frappe/frappe/email/queue.py,This email was sent to {0},یہ ای میل بھیج دیا گیا تھا {0} DocType: User,Represents a User in the system.,سسٹم میں ایک صارف کو دوبارہ پیش کرتا ہے. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},صفحہ {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,نئی شکل شروع کریں apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,ایک تبصرہ شامل کریں apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} کا {1} diff --git a/frappe/translations/uz.csv b/frappe/translations/uz.csv index 808f79b264..422e4e37f8 100644 --- a/frappe/translations/uz.csv +++ b/frappe/translations/uz.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Gradientlarni yoqish DocType: DocType,Default Sort Order,Default sort order apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Hisobotdan faqatgina Nümerik maydonlarni ko'rsatish +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Menyu va Yon paneldagi qo'shimcha yorliqlarni tetiklash uchun Alt tugmasini bosing DocType: Workflow State,folder-open,papkani ochish DocType: Customize Form,Is Table,Jadval bormi? apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Biriktirilgan faylni ochib bo'lmadi. CSV sifatida eksport qildingizmi? DocType: DocField,No Copy,Nusxalash yo'q DocType: Custom Field,Default Value,Standart qiymat apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Qabul qilish xabarlari uchun majburiydir +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Kontaktlarni sinxronlash DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Ma'lumotlar Migratsiya xaritalash haqida apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Tushuntiring apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.","Raw Printing" orqali PDF chop etish hali qo'llab-quvvatlanmaydi. Print sozlamalaridan printerni xaritalashni olib tashlang va qaytadan urinib ko'ring. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} va {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Filtrni saqlashda xatolik yuz berdi apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Parolingizni kiriting apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Uy va biriktirilgan papkalarni o'chirib bo'lmaydi +DocType: Email Account,Enable Automatic Linking in Documents,Hujjatlarda avtomatik ulanishni yoqish DocType: Contact Us Settings,Settings for Contact Us Page,Aloqa uchun sozlamalar sahifasi DocType: Social Login Key,Social Login Provider,Ijtimoiy kirish provayder +DocType: Email Account,"For more information, click here.","Qo'shimcha ma'lumot uchun bu yerni bosing ." DocType: Transaction Log,Previous Hash,Oldingi hash DocType: Notification,Value Changed,Qiymati o'zgargan DocType: Report,Report Type,Hisobot turi @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Energiya nuqta qoidalari apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,"Ijtimoiy kirish yoqilganidan oldin, mijoz identifikatorini kiriting" DocType: Communication,Has Attachment,Attachaga ega DocType: User,Email Signature,Emailga imzo -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} yil oldin ,Addresses And Contacts,Manzillar va kontaktlar apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Ushbu Kanban kengashi maxsus bo'ladi DocType: Data Migration Run,Current Mapping,Joriy xaritalash @@ -208,6 +211,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Sinxronlashtirish parametrini "ALL" deb tanlaysiz, serverdan hamma o'qilgan va o'qilmagan xabarlarni qayta tinglaydi. Bu shuningdek, aloqa (elektron pochta) ning takrorlanishiga ham sabab bo'lishi mumkin." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},So'nggi sinxronlashtirilgan {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Sarlavha mazmunini o'zgartirib bo'lmaydi +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

"Natijada topilmadi"

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Taqdimotdan keyin {0} o'zgartirishga ruxsat berilmaydi apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Dastur yangi versiyaga yangilandi, iltimos ushbu sahifani yangilang" DocType: User,User Image,Foydalanuvchi Foydalanuvchi bilan @@ -318,6 +322,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},{0} s apps/frappe/frappe/public/js/frappe/chat.js,Discard,Bekor qiling DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Yaxshi natija olish uchun shaffof fon bilan taxminan 150px kenglikdagi tasvirni tanlang. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,Nafaqaga chiqqan +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} qiymatlari tanlandi DocType: Blog Post,Email Sent,E-pochta yuborildi DocType: Communication,Read by Recipient On,Qabul qiluvchining On tomonidan o'qing DocType: User,Allow user to login only after this hour (0-24),Foydalanuvchiga faqat shu soatlardan so'ng kirishga ruxsat berish (0-24) @@ -339,7 +344,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Moduli eksport qilish DocType: DocType,Fields,Maydonlar -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Ushbu hujjatni chop etishga ruxsat yo'q +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Ushbu hujjatni chop etishga ruxsat yo'q apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Ota-onalar apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Sizning seansingiz tugadi, davom etish uchun yana tizimga kiring." DocType: Assignment Rule,Priority,Birinchi o'ringa @@ -366,10 +371,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,OTP Secret-ni tikl DocType: DocType,UPPER CASE,Yuqori holat apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,E-pochta manzilingizni belgilang DocType: Communication,Marked As Spam,Spam sifatida belgilandi +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Google Kontaktlar sinxronlanadigan e-pochta manzili. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Importni obunachilar apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Filtrni saqlang DocType: Address,Preferred Shipping Address,Tanlangan yuk jo'natish manzili DocType: GCalendar Account,The name that will appear in Google Calendar,Google Taqvimda ko'rinadigan ism +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Refresh Token yaratish uchun {0} tugmasini bosing. DocType: Email Account,Disable SMTP server authentication,SMTP serverining autentifikatsiyasini o'chirib qo'yish DocType: Email Account,Total number of emails to sync in initial sync process ,Dastlabki sinxronlash jarayonida sinxronlanadigan elektron pochtalarning umumiy soni DocType: System Settings,Enable Password Policy,Parol siyosatini yoqish @@ -386,6 +393,7 @@ DocType: Web Page,Insert Code,Kodni kiriting apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,In emas DocType: Auto Repeat,Start Date,Boshlanish vaqti apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Grafikni belgilang +DocType: Website Theme,Theme JSON,Mavzusi JSON apps/frappe/frappe/www/list.py,My Account,Mening hisobim DocType: DocType,Is Published Field,Maydon e'lon qilinadi DocType: DocField,Set non-standard precision for a Float or Currency field,Float yoki Valyuta maydoni uchun standart bo'lmagan aniqlikni o'rnating @@ -396,7 +404,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Hujjat havolasini yuborish uchun Reference: {{ reference_doctype }} {{ reference_name }} qo'shing DocType: LDAP Settings,LDAP First Name Field,LDAP Ism maydoni apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Standart yuborish va Kirish qutisi -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,O'rnatish> Formani moslashtiring apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",Yangilash uchun faqat tanlangan ustunlarni yangilashingiz mumkin. apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',"Nazorat" maydonining turi uchun "0" yoki "1" bo'lishi kerak apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Ushbu hujjatni birgalikda bering @@ -440,16 +447,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,HTML domenlari DocType: Blog Settings,Blog Settings,Blog sozlamalari apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DocType ning ismi harf bilan boshlanishi kerak va u faqat harflardan, raqamlardan, bo'shliqlardan va pastki ostidan bo'lishi mumkin" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Sozlash> Foydalanuvchi ruxsati DocType: Communication,Integrations can use this field to set email delivery status,Integratsiyalashuvlar ushbu maydondan elektron pochta yetkazib berish holatini o'rnatish uchun foydalanishi mumkin apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Stripe to'lov shluzi sozlamalari DocType: Print Settings,Fonts,Shriftlar DocType: Notification,Channel,Kanal DocType: Communication,Opened,Ochilgan DocType: Workflow Transition,Conditions,Shartlar +apps/frappe/frappe/config/website.py,A user who posts blogs.,Bloglarni yuborgan foydalanuvchi. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Hisobingiz yo'qmi? Ro'yxatdan o'tish apps/frappe/frappe/utils/file_manager.py,Added {0},Qo'shilgan {0} DocType: Newsletter,Create and Send Newsletters,Xabarlarni yaratish va jo'natish DocType: Website Settings,Footer Items,Olingan ma'lumotlar +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,"Iltimos, Sozlamalar> Elektron pochta> Elektron pochta hisob qaydnomasi-ni tanlang" DocType: Website Slideshow Item,Website Slideshow Item,Sayt Slayd-sh-ni apps/frappe/frappe/config/integrations.py,Register OAuth Client App,OAuth mijoz ilovasini ro'yxatdan o'tkazing DocType: Error Snapshot,Frames,Ramkalar @@ -490,7 +500,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","HANSE 0 - hujjat darajasidagi ruxsatnomalar uchun, maydon darajasi ruxsatnomalari uchun yuqori darajalar." DocType: Address,City/Town,Shahar / shahar DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Bu sizning mavzuingizni tiklaydi, davom etishni xohlaysizmi?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},{0} da majburiy joylar apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},{0} elektron pochta hisobiga ulanishda xatolik yuz berdi apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Ikki nusxadagi yaratish paytida xatolik yuz berdi @@ -526,7 +535,7 @@ DocType: Event,Event Category,Voqealar kategoriyasi apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Asoslangan ustunlar apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Sarlavhani tahrirlash DocType: Communication,Received,Qabul qildi -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Ushbu sahifaga kirishga ruxsat yo'q. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Ushbu sahifaga kirishga ruxsat yo'q. DocType: User Social Login,User Social Login,Foydalanuvchining ijtimoiy kirish apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,Bu saqlangan va ustun va natija beradigan o'sha papkada Python faylini yozing. DocType: Contact,Purchase Manager,Sotib olish menejeri @@ -579,7 +588,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Graf apps/frappe/frappe/utils/data.py,Operator must be one of {0},Operator {0} dan biri bo'lishi kerak apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Agar egasi bo'lsa DocType: Data Migration Run,Trigger Name,Tetik nomi -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,O'z blogingizga sarlavhalar va tanishlar yozing. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Joyni o'chirish apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Hammasini ixchamlashtirish apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Fon rangi @@ -629,6 +637,7 @@ DocType: Dashboard Chart,Bar,Bar DocType: SMS Settings,Enter url parameter for message,Xabar uchun url parametrini kiriting apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Yangi maxsus chop formati apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} allaqachon mavjud +DocType: Workflow Document State,Is Optional State,Majburiy holat DocType: Address,Purchase User,Foydalanuvchini sotib oling DocType: Data Migration Run,Insert,Kiritmoq DocType: Web Form,Route to Success Link,Muvaffaqiyatga yo'nalish aloqasi @@ -636,13 +645,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Foydala DocType: File,Is Home Folder,Uy papkasi apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Turi: DocType: Post,Is Pinned,Yig'ilgan -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},"{0}" {1} uchun ruxsat yo'q +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},"{0}" {1} uchun ruxsat yo'q DocType: Patch Log,Patch Log,Patch log DocType: Print Format,Print Format Builder,Format formatlash usuli 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","Agar yoqilgan bo'lsa, barcha foydalanuvchilar ikki omildan foydalangan holda har qanday IP-manzildan kirishlari mumkin. Bu faqat foydalanuvchi sahifasida muayyan foydalanuvchi (lar) ga o'rnatilishi mumkin" apps/frappe/frappe/utils/data.py,only.,faqatgina. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,'{0}' sharti bekor DocType: Auto Email Report,Day of Week,Haftaning kuni +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Google sozlamalarida Google sozlamalarini yoqing. DocType: DocField,Text Editor,Matn tahrirlovchisi apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Kesish apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Buyruqni tering yoki yozing @@ -650,6 +660,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,DB zaxira nusxalari soni 1dan kam bo'lishi mumkin emas DocType: Workflow State,ban-circle,taqiqlash doirasi DocType: Data Export,Excel,Excel +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Header, Breadcrumbs va metan teglar" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,E-pochta manzili ko'rsatilmagan DocType: Comment,Published,Chop etildi DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.",Eslatma: Yaxshi natijalar olish uchun tasvirlar bir xil o'lchamdagi bo'lishi kerak va kenglik balandlikdan katta bo'lishi kerak. @@ -740,6 +751,7 @@ DocType: System Settings,Scheduler Last Event,Vaqtinchalik reja apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Hujjatdagi barcha aktsiyalar haqida hisobot DocType: Website Sidebar Item,Website Sidebar Item,Veb-sayt shtab-elementi apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Qilmoq +DocType: Google Settings,Google Settings,Google sozlamalari apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Mamlakatni, vaqt mintaqasini va valyutani tanlang" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Statik url parametrlarini bu erga kiriting (masalan, jo'natuvchi = ERPNext, username = ERPNext, parol = 1234 va boshqalar)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,E-pochta hisob yo'q @@ -793,6 +805,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Tashuvchi tokeni ,Setup Wizard,O'rnatish ustasi apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Grafikni almashtirish +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,Sinxronizatsiya DocType: Data Migration Run,Current Mapping Action,Joriy xaritalash harakati DocType: Email Account,Initial Sync Count,Dastlabki sinxronlashlar soni apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Aloqa uchun sozlamalar sahifasi. @@ -832,6 +845,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Bosib chiqarish formati apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Ushbu mezon uchun ruxsat yo'q. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Hammasini kengaytirish +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Standart manzil shabloni topilmadi. Sozlash> Bosib va Brendlash> Manzil shablonini tanlang. DocType: Tag Doc Category,Tag Doc Category,Tag hujjat kategoriyasi DocType: Data Import,Generated File,Yaratilgan fayl apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Eslatmalar @@ -839,7 +853,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Vaqt jadvalining maydoni bog'lanish yoki dinamik bog'lanish bo'lishi kerak DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Ushbu chiquvchi serverdan bildirishnomalar va ommaviy xabarlar yuboriladi. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Bu top-100 umumiy parol. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,{0} qidirib turish kerakmi? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,{0} qidirib turish kerakmi? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} yo'q, birlashtirish uchun yangi maqsadni tanlang" DocType: Energy Point Rule,Multiplier Field,Multiplier maydoni DocType: Workflow,Workflow State Field,Ish oqimining mohiyati @@ -879,6 +893,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} {1} da sizning ishingizni {2} nuqtada baholagansiz DocType: Auto Email Report,Zero means send records updated at anytime,Nolinchi yozuvlar istalgan vaqtda yangilangan yozuvlarni bildiradi apps/frappe/frappe/model/document.py,Value cannot be changed for {0},{0} uchun qiymatni o'zgartirish mumkin emas +apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API sozlamalari. DocType: System Settings,Force User to Reset Password,Parolni tiklash uchun foydalanuvchini majburlash apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Report Builder hisobotlari to'g'ridan-to'g'ri hisobot yaratuvchisi tomonidan boshqariladi. Qiladigan ish yo'q. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Filtrni tahrirlash @@ -932,7 +947,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,uchun DocType: S3 Backup Settings,eu-north-1,eu-shimol-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: bir xil rolga, bitta darajaga va {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Ushbu Veb Forma hujjatini yangilashga ruxsat yo'q -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Ushbu yozuv uchun maksimal qo'shimcha cheklovga yetdi. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Ushbu yozuv uchun maksimal qo'shimcha cheklovga yetdi. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,Yo'naltiruvchi aloqa hujjatlari sirkulyasiya bilan bog'lanmaganligiga ishonch hosil qiling. DocType: DocField,Allow in Quick Entry,Tez kirishga ruxsat berish DocType: Error Snapshot,Locals,Mahalliy aholi @@ -964,7 +979,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Istisno turi apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},{0} {1} {2} {3} {4} bilan bog'langanligi uchun uni o'chirib bo'lmaydi yoki bekor qilolmaydi apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTP maxfiyligi faqat ma'mur tomonidan tiklanishi mumkin. -DocType: Web Form Field,Page Break,Sahifa oxiri DocType: Website Script,Website Script,Sayt skripti DocType: Integration Request,Subscription Notification,Obuna xabarnomasi DocType: DocType,Quick Entry,Tez kirish @@ -981,6 +995,7 @@ DocType: Notification,Set Property After Alert,Ogohlantirishdan keyin obyektni s apps/frappe/frappe/__init__.py,Thank you,rahmat apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Ichki integratsiya uchun Webhooks-ni tozalang apps/frappe/frappe/config/settings.py,Import Data,Ma'lumotlarni import qilish +DocType: Translation,Contributed Translation Doctype Name,Tarjima Tarjima Doctype Name DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,Identifikatori DocType: Review Level,Review Level,Ko'rib chiqishlar @@ -999,7 +1014,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Muvaffaqiyatli bajarildi apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Ro'yxat apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Taqdirlang -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Yangi {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Birlamchi aloqa DocType: Print Format,Raw Commands,Xom buyruqlari apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Bosib chiqarish formatlari uchun uslub sahifalar @@ -1039,6 +1053,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Background tadbirl apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},{1} da {0} toping DocType: Email Account,Use SSL,SSL dan foydalaning DocType: DocField,In Standard Filter,Standart filtrda +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Sinxronlash uchun Google Contacts yo'q. DocType: Data Migration Run,Total Pages,Jami sahifalar apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: '{1}' maydonida noyob bo'lmagan qiymatlar bo'lgani uchun Unique sifatida o'rnatib bo'lmaydi DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Agar yoqilsa, foydalanuvchilar har safar kirganlarida ularga xabar qilinadi. Agar yoqilmagan bo'lsa, foydalanuvchilarga faqat bir marta xabar qilinadi." @@ -1059,7 +1074,7 @@ DocType: Assignment Rule,Automation,Avtomatlashtirish apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Fayllarni ochish ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',"{0}" so'zini qidirish apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Nimadir noto'g'ri bajarildi -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,"Iltimos, biriktirishdan oldin saqlang." +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,"Iltimos, biriktirishdan oldin saqlang." DocType: Version,Table HTML,Jadval HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,markaz DocType: Page,Standard,Standart @@ -1137,12 +1152,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Natija yo&# apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} yozuvlari o'chirib tashlandi apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,Dropbox kirish belgisini yaratishda muammo yuz berdi. Batafsil ma'lumot uchun xato jurnalini tekshiring. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Avlodlari -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Standart manzil shabloni topilmadi. Sozlash> Bosib va Brendlash> Manzil shablonini tanlang. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Google Kontaktlar sozlangan. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Tafsilotlarni yashirish apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Shrift uslublari apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Sizning obunangiz {0} da tugaydi. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},{0} e-pochtasi hisobidan e-pochtalarni qabul qilishda haqiqiylik tekshiruvi amalga oshmadi. Serverdan xabar: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),O'tgan haftaning ishlashiga asoslangan statlar ({0} dan {1} gacha) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,Avtomatik ulashni faqat kirish funksiyasi yoqilgan holatda yoqish mumkin. DocType: Website Settings,Title Prefix,Sarlavha prefiksi apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Siz foydalanishingiz mumkin bo'lgan haqiqiylikni tekshirish dasturlari quyidagilardir: DocType: Bulk Update,Max 500 records at a time,Bir vaqtning o'zida maksimal 500 yozuvlar @@ -1175,7 +1191,7 @@ DocType: Auto Email Report,Report Filters,Hisobotlarni filtrlash apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Ustunlar-ni tanlang DocType: Event,Participants,Ishtirokchilar DocType: Auto Repeat,Amended From,O'zgartirishlar -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Sizning ma'lumotlaringiz yuborildi +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Sizning ma'lumotlaringiz yuborildi DocType: Help Category,Help Category,Yordam kategoriyasi apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 oy apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Yangi formatni tahrirlash yoki boshlash uchun mavjud formatni tanlang. @@ -1222,7 +1238,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Kuzatiladigan maydon DocType: User,Generate Keys,Kalitlarni yaratish DocType: Comment,Unshared,Ajralmagan -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Saqlandi +DocType: Translation,Saved,Saqlandi DocType: OAuth Client,OAuth Client,OAuth mijozi DocType: System Settings,Disable Standard Email Footer,Standart elektron pochta tagligini o'chirish apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Chop etish formati {0} o'chirib qo'yilgan @@ -1253,6 +1269,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Oxirgi yangil DocType: Data Import,Action,Harakat apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Mijoz kalitlari talab qilinadi DocType: Chat Profile,Notifications,Bildirishnomalar +DocType: Translation,Contributed,Ishtirok etdi DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy DocType: Report,Custom Report,Maxsus hisobot DocType: Workflow State,info-sign,info-belgisi @@ -1269,6 +1286,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Aloqa DocType: LDAP Settings,LDAP Username Field,LDAP Foydalanuvchi nomi maydon apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",{0} maydonini yagona noyob mavjud qiymatlar bo'lgani uchun {1} da noyob deb belgilash mumkin emas +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,O'rnatish> Formani moslashtiring DocType: User,Social Logins,Ijtimoiy kirishlar DocType: Workflow State,Trash,Axlat DocType: Stripe Settings,Secret Key,Yashirin kalit @@ -1326,6 +1344,7 @@ DocType: DocType,Title Field,Sarlavha maydoni apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Chiquvchi elektron pochta serveriga ulanib bo'lmadi DocType: File,File URL,URL manzili DocType: Help Article,Likes,Yoqtirishlar +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google Contacts Integration o'chirib qo'yilgan. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Zaxiraga ega bo'lish uchun tizimga kirishingiz va tizim menejerining roliga egalik qilishingiz kerak. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Birinchi daraja DocType: Blogger,Short Name,Qisqa ism @@ -1343,13 +1362,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Zipni import qilish DocType: Contact,Gender,Jins DocType: Workflow State,thumbs-down,barmoqlarni pastga tushirish -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Navbat {0} dan biri bo'lishi kerak apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},{0} Hujjat turi bo'yicha bildirishnoma sozlanmadi apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Tizim boshqaruvchisiga ushbu foydalanuvchiga qo'shish apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Xush kelibsiz elektron pochta DocType: Transaction Log,Chaining Hash,Chaqiriladigan xash DocType: Contact,Maintenance Manager,Xizmat menejeri +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Taqqoslash uchun <5, <10 yoki = 324 dan foydalaning. Ranglar uchun 5:10 dan foydalaning (5 va 10 orasida qiymatlar uchun)." apps/frappe/frappe/utils/bot.py,show,ko'rsatish apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,URLni ulash apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Fayl formati qo'llab-quvvatlanmaydi @@ -1371,7 +1390,7 @@ DocType: Communication,Notification,Xabarnoma DocType: Data Import,Show only errors,Faqat xatolar ko'rsatilsin DocType: Energy Point Log,Review,Ko'rib chiqish apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Qatorlar olib tashlandi -DocType: GSuite Settings,Google Credentials,Google hisobga olish ma'lumotlari +DocType: Google Settings,Google Credentials,Google hisobga olish ma'lumotlari apps/frappe/frappe/www/login.html,Or login with,Yoki bilan kiring apps/frappe/frappe/model/document.py,Record does not exist,Yozuv mavjud emas apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Yangi hisobot nomi @@ -1396,6 +1415,7 @@ DocType: Desktop Icon,List,Ro'yxat DocType: Workflow State,th-large,juda katta apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,"{0}: Yuborish emas, balki Submittable funksiyasini tayinlash mumkin emas" apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Hech qanday yozuvga aloqador emas +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZ tray ilovasiga ulanishda xato ro'y berdi ...

Raw Chop etish xususiyatini ishlatish uchun QZ tray ilovasi o'rnatilgan va ishlaydigan bo'lishi kerak.

QZ trayini yuklab olish va o'rnatish uchun shu yerni bosing .
Raw Printing haqida batafsil ma'lumot olish uchun shu erni bosing ." DocType: Chat Message,Content,Kontent DocType: Workflow Transition,Allow Self Approval,O'zingizni ma'qullash uchun ruxsat bering apps/frappe/frappe/www/qrcode.py,Page has expired!,Sahifa tugadi! @@ -1412,6 +1432,7 @@ DocType: Workflow State,hand-right,qo'l-o'ng DocType: Website Settings,Banner is above the Top Menu Bar.,Banner Top Menyu paneli ustida. apps/frappe/frappe/www/update-password.html,Invalid Password,Parol noto'g'ri apps/frappe/frappe/utils/data.py,1 month ago,1 oy oldin +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Google Kontaktlar Kirishiga ruxsat berish DocType: OAuth Client,App Client ID,Ilova mijoz identifikatori DocType: DocField,Currency,Valyuta DocType: Website Settings,Banner,Banner @@ -1423,7 +1444,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Maqsad DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Agar 0-darajali rolga ega bo'lmasa, unda yuqori darajalar mazmunsiz bo'ladi." DocType: ToDo,Reference Type,Malumot turi -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","DocType, DocTypega ruxsat berish. Ehtiyot bo'ling!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","DocType, DocTypega ruxsat berish. Ehtiyot bo'ling!" DocType: Domain Settings,Domain Settings,Domen sozlamalari DocType: Auto Email Report,Dynamic Report Filters,Dinamik hisobot filtri DocType: Energy Point Log,Appreciation,Taqdir @@ -1465,6 +1486,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,biz-g'arb-2 DocType: DocType,Is Single,Yagona apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Yangi format yaratish +DocType: Google Contacts,Authorize Google Contacts Access,Google Kontaktlar Kirish ruxsat bering DocType: S3 Backup Settings,Endpoint URL,Endpoint URL DocType: Social Login Key,Google,Google DocType: Contact,Department,Bo'lim @@ -1479,7 +1501,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Belgilash DocType: List Filter,List Filter,Ro'yxat filtri DocType: Dashboard Chart Link,Chart,Grafika apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,O'chirib tashlab bo'lmadi -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Tasdiqlash uchun ushbu hujjatni yuboring +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Tasdiqlash uchun ushbu hujjatni yuboring apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} allaqachon mavjud. Boshqa nomni tanlang apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Ushbu shaklda saqlanmagan o'zgarishlar mavjud. Davom etishdan oldin saqlab qo'ying. apps/frappe/frappe/model/document.py,Action Failed,Amal bajarilmadi @@ -1561,6 +1583,7 @@ DocType: DocField,Display,Ko'rish apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Hammaga javob bering DocType: Calendar View,Subject Field,Mavzu maydoni apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Kirish muddati {0} formatida bo'lishi kerak +apps/frappe/frappe/model/workflow.py,Applying: {0},Qo'llash: {0} DocType: Workflow State,zoom-in,yaqinlashtirish apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,Serverga ulanib bo'lmadi apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Sana {0} formati bo'lishi kerak: {1} @@ -1572,8 +1595,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Icon tugmachada paydo bo'ladi DocType: Role Permission for Page and Report,Set Role For,Rolni o'rnating +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Avtomatik ulash faqat bitta E-mail hisobiga ulanishi mumkin. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,E-pochta hisoblari tayinlangan emas +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Email qaydnomasi sozlanmagan. Iltimos, Sozlamalar> Elektron pochta> Elektron pochta qayd yozuvidan yangi elektron pochta qayd yozuvini yarating" apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Tayinlangan +DocType: Google Contacts,Last Sync On,So'nggi sinxronlash yoqilgan apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},{1} avtomatik qoida orqali {0} apps/frappe/frappe/config/website.py,Portal,Portal apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,E-pochtangiz uchun rahmat @@ -1594,7 +1620,6 @@ DocType: GSuite Settings,GSuite Settings,GSuite sozlamalari DocType: Integration Request,Remote,Masofaviy DocType: File,Thumbnail URL,Kichik URL manzili apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Hisobotni yuklab olish -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Sozlash> Foydalanuvchi-ni tanlang apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},{0} uchun sozlanganlar:
{1} DocType: GCalendar Account,Calendar Name,Taqvim nomi apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Sizning kirish identifikatoringiz @@ -1644,6 +1669,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},{0} g apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Rasm maydoni tegishli maydon nomi bo'lishi kerak apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,Ushbu sahifaga kirish uchun siz tizimga kirgan bo'lishingiz kerak DocType: Assignment Rule,Example: {{ subject }},Misol: {{mavzu}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Fieldname {0} cheklangan apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},{0} uchun "Faqat o'qish" funksiyasini o'chirib bo'lmaydi DocType: Social Login Key,Enable Social Login,Ijtimoiy kirishni yoqish DocType: Workflow,Rules defining transition of state in the workflow.,Ish oqimiga davlatning o'tishini belgilovchi qoidalar. @@ -1664,10 +1690,10 @@ DocType: Website Settings,Route Redirects,Yo'nalishni qayta yo'naltirish apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Elektron pochta qutisi apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},{0} {1} sifatida qayta tiklandi DocType: Assignment Rule,Automatically Assign Documents to Users,Hujjatlarni foydalanuvchilarga avtomatik tarzda belgilash +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Awesomebarni oching apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Umumiy savollar uchun E-mail shablonni. DocType: Letter Head,Letter Head Based On,Letter Head asoslangan apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,"Iltimos, ushbu oynani yoping" -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,To'lov tugadi DocType: Contact,Designation,Belgilar DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Meta teglar @@ -1706,6 +1732,7 @@ DocType: System Settings,Choose authentication method to be used by all users,Ba DocType: Error Snapshot,Parent Error Snapshot,Ota-ona xatosi DocType: GCalendar Account,GCalendar Account,GCalendar hisobi DocType: Language,Language Name,Til nomi +DocType: Workflow Document State,Workflow Action is not created for optional states,Ixtiyoriy holatlar uchun ishchi oqim qoida yaratilmagan DocType: Customize Form,Customize Form,Formani xususiylashtirish DocType: DocType,Image Field,Rasm maydoni apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Qo'shilgan {0} ({1}) @@ -1747,6 +1774,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Agar foydalanuvchi foydalanuvchi bo'lsa, ushbu qoidani qo'llang" DocType: About Us Settings,Org History Heading,Org History Heading apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Server xatosi +DocType: Contact,Google Contacts Description,Google Kontaktlar ta'rifi apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Standart rollar nomini o'zgartira olmaydi DocType: Review Level,Review Points,Ko'rib chiqish nuqtalari apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Yo'qotilgan parametr Kanban Kengashi nomi @@ -1764,7 +1792,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Dasturchi rejimida emas! Site_config.json saytida joylashgan yoki "Custom" DocType-ni tanlang. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,{0} balni qo'lga kiritdi DocType: Web Form,Success Message,Muvaffaqiyatli xabar -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Taqqoslash uchun <5, <10 yoki = 324 dan foydalaning. Ranglar uchun 5:10 dan foydalaning (5 va 10 orasida qiymatlar uchun)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Lug'at sahifasining tavsifi, tekis matnda, faqat bir nechta satr. (maksimal 140 belgi)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Ruxsatlarni ko'rsatish DocType: DocType,Restrict To Domain,Domen uchun cheklov @@ -1786,6 +1813,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Ota-bo apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Miqdori belgilang DocType: Auto Repeat,End Date,Tugash sanasi DocType: Workflow Transition,Next State,Keyingi Davlat +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Google Kontaktlar sinxronlangan. DocType: System Settings,Is First Startup,Birinchi start apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},{0} ga yangilangan apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Ko'chirish @@ -1835,6 +1863,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Taqvim apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Ma'lumotlar Import Template DocType: Workflow State,hand-left,qo'lda-chapda +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Bir nechta ro'yxat elementini tanlang apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Zaxiralash hajmi: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},{0} bilan bog'langan DocType: Braintree Settings,Private Key,Xususiy kalit @@ -1877,13 +1906,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Foiz DocType: Bulk Update,Limit,Limit DocType: Print Settings,Print taxes with zero amount,Soliqlarni nolga teng miqdorda chop eting -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Email qaydnomasi sozlanmagan. Iltimos, Sozlamalar> Elektron pochta> Elektron pochta qayd yozuvidan yangi elektron pochta qayd yozuvini yarating" DocType: Workflow State,Book,Kitob DocType: S3 Backup Settings,Access Key ID,Kalit ID raqami DocType: Chat Message,URLs,URL manzillari apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Ism va familiyalar o'zlarini taxmin qilish oson. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Hisobot {0} DocType: About Us Settings,Team Members Heading,Jamoa a'zolarining nomi +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Ro'yxat elementini tanlang apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},{0} hujjati {1} tomonidan {2} DocType: Address Template,Address Template,Manzil shablonni DocType: Workflow State,step-backward,qadam orqaga @@ -1907,6 +1936,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Maxsus ruxsatnomalarni eksport qilish apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Hech kim: Ish oqimining oxiri DocType: Version,Version,Versiya +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Ro'yxatni oching apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 oy DocType: Chat Message,Group,Guruh apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Fayl urlida muammo mavjud: {0} @@ -1962,6 +1992,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 yil apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} {1} dagi fikrlaringizni qaytarib oldi DocType: Workflow State,arrow-down,pastga-pastga DocType: Data Import,Ignore encoding errors,Kodlash xatolariga e'tibor berilmasin +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Landshaft DocType: Letter Head,Letter Head Name,Harf nomining nomi DocType: Web Form,Client Script,Mijozlar skripti DocType: Assignment Rule,Higher priority rule will be applied first,Avval ustuvor ustuvor qoidalar qo'llaniladi @@ -2006,6 +2037,7 @@ DocType: Kanban Board Column,Green,Yashil rang apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Yangi yozuvlar uchun majburiy joylar kerak. Istasangiz majburiy bo'lmagan ustunlarni o'chirishingiz mumkin. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} harf bilan boshlash va tugatish kerak va faqat harflar, chiziqli yoki pastki chiziqlari bo'lishi mumkin." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Birlamchi harakatni boshlash apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Foydalanuvchi e-pochtasini yaratish apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,{0} bo'yicha tartiblash maydonida joriy maydon nomi bo'lishi kerak DocType: Auto Email Report,Filter Meta,Filtrni metan @@ -2035,6 +2067,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Xronologiya maydoni apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Yuklanmoqda ... DocType: Auto Email Report,Half Yearly,Yarim yillik +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Mening profilim apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,So'nggi o'zgartirish sanasi DocType: Contact,First Name,Ism DocType: Post,Comments,Izohlar @@ -2057,6 +2090,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Content Hash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},{0} tomonidan yuborilgan apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} tayinlangan {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Yangi Google Kontaktlar sinxronlanmadi. DocType: Workflow State,globe,Dunyo apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},{0} dan o'rtacha apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Xato jurnallarini tozalash @@ -2083,6 +2117,8 @@ DocType: Workflow State,Inverse,Teskari DocType: Activity Log,Closed,Yopiq DocType: Report,Query,So'rov DocType: Notification,Days After,Kunlardan keyin +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Qisqa klavishlar +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Portret apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Vaqtni talab qilish muddati DocType: System Settings,Email Footer Address,E-pochta manzili manzili apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Energiya nuqtasi yangilanishi @@ -2110,6 +2146,7 @@ For Select, enter list of Options, each on a new line.","Linklar uchun DocType-n apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 daqiqa oldin apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Faol sessiyalar yo'q apps/frappe/frappe/model/base_document.py,Row,Roy +DocType: Contact,Middle Name,Otasini ismi apps/frappe/frappe/public/js/frappe/request.js,Please try again,"Iltimos, yana bir bor urinib ko'ring" DocType: Dashboard Chart,Chart Options,Grafik imkoniyatiga ega DocType: Data Migration Run,Push Failed,Push Failed @@ -2138,6 +2175,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,kichik o'lchamli - kichik DocType: Comment,Relinked,Qaytib ketdi DocType: Role Permission for Page and Report,Roles HTML,HTML rollari +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Boring apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Ish oqimi saqlanganidan so'ng boshlanadi. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Ma'lumotlaringiz HTML-da bo'lsa, iltimos, aniq HTML kodni teglar bilan joylashtirishingiz mumkin." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Vaqtlarni ko'pincha taxmin qilish oson. @@ -2166,7 +2204,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Ish stoli belgisi apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,ushbu hujjatni bekor qildi apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Sana oralig'i -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Sozlash> Foydalanuvchi ruxsati apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Qadriyatlar o'zgartirildi apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Bildirishnomada xato @@ -2231,6 +2268,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Ommaviy o'chirish DocType: DocShare,Document Name,Hujjat nomi apps/frappe/frappe/config/customization.py,Add your own translations,O'zingizning tarjimalarini qo'shing +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Ro'yxatni pastga siljiting DocType: S3 Backup Settings,eu-central-1,eu-markaziy-1 DocType: Auto Repeat,Yearly,Har yili apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Nomni o'zgartiring @@ -2281,6 +2319,7 @@ DocType: Workflow State,plane,samolyot apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Nested set error. Administrator bilan bog'laning. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Hisobotni ko'rsatish DocType: Auto Repeat,Auto Repeat Schedule,Avtomatik takrorlash jadvali +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Tashqi ko'rinishi Ref DocType: Address,Office,Idora DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} kun oldin @@ -2314,7 +2353,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Mi apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Mening sozlamalarim apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Guruh nomi bo'sh bo'lishi mumkin emas. DocType: Workflow State,road,yo'l -DocType: Website Route Redirect,Source,Manba +DocType: Contact,Source,Manba apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Faol sessiyalar apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Shakli shaklda bitta katlama bo'lishi mumkin apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Yangi chat @@ -2336,6 +2375,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,"Iltimos, URL manzilini kiriting" DocType: Email Account,Send Notification to,Xabarnoma yuborish apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox zaxiralash sozlamalari +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,Taqiqlovchi avlodida muammo yuz berdi. Yangisini yaratish uchun {0} tugmasini bosing. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Barcha sozlamalar o'chirib tashlansinmi? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Faqat ma'mur tahrir qilishi mumkin DocType: Auto Repeat,Reference Document,Malumot hujjati @@ -2360,6 +2400,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Foydalanuvchilar uchun foydalanuvchi sahifalari roli sozlanishi mumkin. DocType: Website Settings,Include Search in Top Bar,Top barda qidirishni qo'shish apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Urgent]% s uchun takrorlanuvchi% s yaratishda xato +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Global Qisqa klavishlar DocType: Help Article,Author,Muallif DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,Berilgan filtrlar uchun hech qanday hujjat topilmadi @@ -2395,10 +2436,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, satr {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Agar siz yangi yozuvlarni yuklamoqchi bo'lsangiz, "nomlash seriyasi" majburiy bo'lib qoladi." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Xususiyatlarni tahrirlash -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,{0} ochilganda namuna ocholmayapti +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,{0} ochilganda namuna ocholmayapti DocType: Activity Log,Timeline Name,Vaqt jadvalining nomi DocType: Comment,Workflow,Ish oqimi apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,"Iltimos, Frappe uchun Ijtimoiy Kirish Klaviaturasida taglik URL manzilini o'rnating" +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Klaviatura tugmalari DocType: Portal Settings,Custom Menu Items,Maxsus menyu ma'lumotlar apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,{0} uzunligi 1 va 1000 orasida bo'lishi kerak apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Aloqa yo'qoldi. Ba'zi xususiyatlar ishlamasligi mumkin. @@ -2461,6 +2503,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Qatorlar qo DocType: DocType,Setup,Sozlash apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} muvaffaqiyatli yaratildi apps/frappe/frappe/www/update-password.html,New Password,Yangi Parol +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Maydonni tanlang apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Ushbu suhbatni qoldiring DocType: About Us Settings,Team Members,Jamoa a'zolari DocType: Blog Settings,Writers Introduction,Yozuvchilar kirish @@ -2530,13 +2573,12 @@ DocType: Chat Room,Name,Ism DocType: Communication,Email Template,Email shablonni DocType: Energy Point Settings,Review Levels,Ko'rib darajalari DocType: Print Format,Raw Printing,Raw Printing -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Uning namunasi ochiq bo'lganda {0} ochilmaydi +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,Uning namunasi ochiq bo'lganda {0} ochilmaydi DocType: DocType,"Make ""name"" searchable in Global Search","Global Search" da "nom" izlash mumkin DocType: Data Migration Mapping,Data Migration Mapping,Ma'lumotlarni ko'chirish xaritalash DocType: Data Import,Partially Successful,Qisman muvaffaqiyatli DocType: Communication,Error,Xato apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Maydonning turi {2} qatorida {0} dan {1} ga o'zgartirilmaydi -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","QZ tray ilovasiga ulanishda xato ro'y berdi ...

Raw Chop etish xususiyatini ishlatish uchun QZ tray ilovasi o'rnatilgan va ishlaydigan bo'lishi kerak.

QZ trayini yuklab olish va o'rnatish uchun shu yerni bosing .
Raw Printing haqida batafsil ma'lumot olish uchun shu erni bosing ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Suratga olish apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,Siz bilan bog'langan yillardan qoching. DocType: Web Form,Allow Incomplete Forms,Tugatilmagan shakllarga ruxsat berish @@ -2632,7 +2674,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Yangi sahifada ochish uchun maqsadni = "_blank" ni tanlang. DocType: Portal Settings,Portal Menu,Portal menyusi DocType: Website Settings,Landing Page,Ochilish sahifasi -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,"Iltimos, ro'yxatdan o'tish yoki boshlash uchun tizimga kiring" DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",""Sotuvdagi so'rovlar, qo'llab-quvvatlash so'rovi" va hokazo. Kabi yangi variantda yoki har qanday yangi satrda yoki vergul bilan ajrating." apps/frappe/frappe/twofactor.py,Verfication Code,Verfikatsiya kodi apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} allaqachon obunani bekor qildi @@ -2718,6 +2759,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Ma'lumotlar DocType: Address,Sales User,Savdo foydalanuvchisi apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Joylar xususiyatlarini o'zgartirish (yashirish, o'qish, ruxsatnoma va boshqalar)" DocType: Property Setter,Field Name,Joy nomi +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,Xaridor DocType: Print Settings,Font Size,Shrift o'lchami DocType: User,Last Password Reset Date,So'nggi Parolni tiklash sanasi DocType: System Settings,Date and Number Format,Sana va raqam formati @@ -2782,6 +2824,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Guruh tugunni apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Mavjudligi bilan birlashtirilsin DocType: Blog Post,Blog Intro,Blog Intro apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Yangi marosim +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Dalaga o'tish DocType: Prepared Report,Report Name,Hisobot nomi apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,"Iltimos, eng yangi hujjatni olish uchun yangilang." apps/frappe/frappe/core/doctype/communication/communication.js,Close,Yoping @@ -2791,10 +2834,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Voqealar DocType: Social Login Key,Access Token URL,To'xan URL manziliga kirish apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,"Iltimos, sayt konfiguratsiyasidagi Dropbox kirish kalitlarini o'rnating" +DocType: Google Contacts,Google Contacts,Google Contacts DocType: User,Reset Password Key,Parol kalitini qayta tiklash apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,O'zgartirish DocType: User,Bio,Bio apps/frappe/frappe/limits.py,"To renew, {0}.",Yangilash uchun {0}. +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Muvaffaqiyatli tarzda saqlandi +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Bu yerga bog'lanish uchun {0} ga elektron pochta manzilini yuboring. DocType: File,Folder,Folder DocType: DocField,Perm Level,Perm bosqichi DocType: Print Settings,Page Settings,Sahifa sozlamalari @@ -2824,6 +2870,7 @@ DocType: Workflow State,remove-sign,olib tashlash belgisi DocType: Dashboard Chart,Full,To'liq DocType: DocType,User Cannot Create,Foydalanuvchi yaratolmaydi apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Siz {0} nuqtaga erishdingiz +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Sozlash> Foydalanuvchi-ni tanlang DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Agar siz buni o'rnatgan bo'lsangiz, ushbu element tanlangan ota-ona ostida ochiladi." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,E-pochta yo'q apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Quyidagi joylar etishmayapti: @@ -2837,13 +2884,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Taq DocType: Web Form,Web Form Fields,Veb formasi Maydonlarni DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Foydalanuvchi tomonidan o'zgartiriladigan veb-sayt. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Doimiy ravishda {0} bekor qilinsinmi? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Doimiy ravishda {0} bekor qilinsinmi? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Variant 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,Jami apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Bu juda keng tarqalgan parol. DocType: Personal Data Deletion Request,Pending Approval,Tasdiqni kutish apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Hujjat to'g'ri berilmagan apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},{0} uchun ruxsat berilmadi: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Ko'rsatiladigan qiymat yo'q DocType: Personal Data Download Request,Personal Data Download Request,Shaxsiy ma'lumotlarni yuklash uchun so'rov apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} ushbu hujjatni {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},{0} ni tanlang @@ -2859,7 +2907,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Ushbu e-pochta {0} ga yuborildi va {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,Kirish yoki parol noto'g'ri DocType: Social Login Key,Social Login Key,Ijtimoiy kirish kaliti -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,"Iltimos, Sozlamalar> Elektron pochta> Elektron pochta hisob qaydnomasi-ni tanlang" apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Filtrlar saqlandi DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Ushbu pul qanday shakllantirilishi kerak? Agar sozlanmagan bo'lsa, tizimdagi standartlarni ishlatadi" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} {2} @@ -2985,6 +3032,7 @@ DocType: User,Location,Manzil apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Ma'lumot yo'q DocType: Website Meta Tag,Website Meta Tag,Sayt Meta Tag DocType: Workflow State,film,film +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Panodga nusxa olindi. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Sozlamalar topilmadi apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Kirish majburiydir DocType: Webhook,Webhook Headers,Webhook to'plamlari @@ -3193,7 +3241,7 @@ DocType: Address,Address Line 1,Manzil uchun 1-chi qator apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Hujjat turi uchun apps/frappe/frappe/model/base_document.py,Data missing in table,Jadvalda ma'lumotlar yo'q apps/frappe/frappe/utils/bot.py,Could not identify {0},{0} ni aniqlab bo'lmadi -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Ushbu forma siz yuklaganingizdan so'ng o'zgartirildi +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Ushbu forma siz yuklaganingizdan so'ng o'zgartirildi apps/frappe/frappe/www/login.html,Back to Login,Kirish sahifasiga qayting apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,O'rnatilmagan DocType: Data Migration Mapping,Pull,Torting @@ -3261,6 +3309,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Bola jadvallarini xar apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,E-pochta hisobini sozlash uchun quyidagi parolni kiriting: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Juda ko'p odamlar bir so'rovda yozadilar. Kichik so'rovlarni yuboring DocType: Social Login Key,Salesforce,Salesforce +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},{1} dan {0} DocType: User,Tile,Tile apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0} xonada atmost bitta foydalanuvchi bo'lishi kerak. DocType: Email Rule,Is Spam,Spammi? @@ -3298,7 +3347,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,jildni yopish DocType: Data Migration Run,Pull Update,Yangilang apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},{1} ga birlashtirilgan {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

"Natijada topilmadi"

DocType: SMS Settings,Enter url parameter for receiver nos,Receiver nos uchun url parametrini kiriting apps/frappe/frappe/utils/jinja.py,Syntax error in template,Shablondagi sintaksik xato apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Filteringiz jadvalidagi filtr qiymatini belgilang. @@ -3311,6 +3359,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Kechirasiz, DocType: System Settings,In Days,Kunlarda DocType: Report,Add Total Row,Umumiy satr qo'shish apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Seans ochilmadi +DocType: Translation,Verified,Tasdiqlangan DocType: Print Format,Custom HTML Help,Maxsus HTML yordami DocType: Address,Preferred Billing Address,Tanlangan to'lov manzili apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Tayinlangan @@ -3325,7 +3374,6 @@ DocType: Help Article,Intermediate,O'rta darajada DocType: Module Def,Module Name,Moduli nomi DocType: OAuth Authorization Code,Expiration time,O'tkazish vaqti apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Standart formatni, sahifa o'lchamini, bosib chiqarish uslubini va boshqalarni o'rnating." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,Siz yaratgan biror narsani yoqtira olmaysiz DocType: System Settings,Session Expiry,Seansni tugatish DocType: DocType,Auto Name,Avtomatik nom apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Qo'shilganlar-ni tanlang @@ -3353,6 +3401,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Tizim sahifasi DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,Eslatma: Sukut bo'yicha zaxira nusxalari uchun elektron pochta xabarlari yuboriladi. DocType: Custom DocPerm,Custom DocPerm,Maxsus DocPerm +DocType: Translation,PR sent,PR yuborildi DocType: Tag Doc Category,Doctype to Assign Tags,Teglar tayinlash uchun doctype DocType: Address,Warehouse,Ombor apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Dropbox sozlamalari @@ -3420,7 +3469,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Comment qo'shish uchun Ctrl + Enter ni bosing apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Field {0} tanlanishi mumkin emas. DocType: User,Birth Date,Tug'ilgan sana -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Guruh chizig'i bilan DocType: List View Setting,Disable Count,Qaydni o'chirib qo'yish DocType: Contact Us Settings,Email ID,Email identifikatori apps/frappe/frappe/utils/password.py,Incorrect User or Password,Noto'g'ri foydalanuvchi yoki parol @@ -3455,6 +3503,7 @@ DocType: Website Settings,<head> HTML,<bosh> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Ushbu rol foydalanuvchi uchun foydalanuvchi ruxsatlarini yangilaydi DocType: Website Theme,Theme,Mavzu DocType: Web Form,Show Sidebar,Yon paneli ko'rsatilsin +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google Contacts Integration. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Standart kirish qutisi apps/frappe/frappe/www/login.py,Invalid Login Token,Noto'g'ri kirish tokeni apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Avval nomni o'rnating va yozib oling. @@ -3482,7 +3531,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,"Iltimos, to'g'rilang" DocType: Top Bar Item,Top Bar Item,Top Bar Maqola ,Role Permissions Manager,Ruxsat berish huquqi menejeri -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,"Xatolar bor edi. Iltimos, buni xabar qiling." +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} yil oldin apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Ayol DocType: System Settings,OTP Issuer Name,OTP Issuer nomi apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Bunga qo'shish @@ -3582,6 +3631,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Til, S apps/frappe/frappe/model/document.py,none of,hech kim DocType: Desktop Icon,Page,Sahifa DocType: Workflow State,plus-sign,ortiqcha belgisi +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Keshni tozalash va qayta yuklash apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Yangiladimi: noto'g'ri / muddati tugagan havola. DocType: Kanban Board Column,Yellow,Sariq DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Griddagi maydon uchun ustunlar soni (griddagi umumiy ustunlar 11 dan kam bo'lishi kerak) @@ -3596,6 +3646,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Yang DocType: Activity Log,Date,Sana DocType: Communication,Communication Type,Aloqa turi apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Ota-jadval +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Ro'yxatni yuqoriga o'ting DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,To'liq xatoni ko'rsatish va muammolarni Tuzilishga bildirishga ruxsat berish DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3617,7 +3668,6 @@ DocType: Notification Recipient,Email By Role,Xatga ko'ra elektron pochta apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,{0} dan ortiq abonentni qo'shish uchun yangilang apps/frappe/frappe/email/queue.py,This email was sent to {0},Ushbu e-pochta {0} ga yuborildi DocType: User,Represents a User in the system.,Tizimda foydalanuvchilarni bildiradi. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},{{0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Yangi formatni ishga tushiring apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Fikr qo'shing apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{1} dan {0} diff --git a/frappe/translations/vi.csv b/frappe/translations/vi.csv index e7df90c5e2..59612787ed 100644 --- a/frappe/translations/vi.csv +++ b/frappe/translations/vi.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,Cho phép học sinh DocType: DocType,Default Sort Order,Thứ tự sắp xếp mặc định apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,Chỉ hiển thị các trường Số từ Báo cáo +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,Nhấn phím Alt để kích hoạt các phím tắt bổ sung trong Menu và Sidebar DocType: Workflow State,folder-open,mở thư mục DocType: Customize Form,Is Table,Là bảng apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,Không thể mở tệp đính kèm. Bạn đã xuất nó dưới dạng CSV? DocType: DocField,No Copy,Không được sao chép DocType: Custom Field,Default Value,Giá trị mặc định apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,Nối vào là bắt buộc đối với thư đến +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,Đồng bộ danh bạ DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,Chi tiết ánh xạ di chuyển dữ liệu apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,Hủy theo dõi apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",In PDF qua "In thô" chưa được hỗ trợ. Vui lòng xóa ánh xạ máy in trong Cài đặt máy in và thử lại. @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0} và {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,Có một bộ lọc lưu lỗi apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,Nhập mật khẩu của bạn apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,Không thể xóa các thư mục Home và File đính kèm +DocType: Email Account,Enable Automatic Linking in Documents,Kích hoạt liên kết tự động trong tài liệu DocType: Contact Us Settings,Settings for Contact Us Page,Cài đặt cho Trang Liên hệ DocType: Social Login Key,Social Login Provider,Nhà cung cấp đăng nhập xã hội +DocType: Email Account,"For more information, click here.","Để biết thêm thông tin, bấm vào đây ." DocType: Transaction Log,Previous Hash,Hash trước DocType: Notification,Value Changed,Giá trị thay đổi DocType: Report,Report Type,Loại báo cáo @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,Quy tắc điểm năng lượng apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,Vui lòng nhập ID khách hàng trước khi đăng nhập xã hội được bật DocType: Communication,Has Attachment,Có tập tin đính kèm DocType: User,Email Signature,Chữ ký email -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} năm trước ,Addresses And Contacts,Địa chỉ và liên hệ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,Hội đồng Kanban này sẽ ở chế độ riêng tư DocType: Data Migration Run,Current Mapping,Ánh xạ hiện tại @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).","Bạn đang chọn Tùy chọn đồng bộ là TẤT CẢ, Nó sẽ đồng bộ lại tất cả \ read cũng như tin nhắn chưa đọc từ máy chủ. Điều này cũng có thể gây ra sự trùng lặp \ của Truyền thông (email)." apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},Đã đồng bộ hóa lần cuối {0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,Không thể thay đổi nội dung tiêu đề +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,Không được phép thay đổi {0} sau khi gửi apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page","Ứng dụng đã được cập nhật lên phiên bản mới, vui lòng làm mới trang này" DocType: User,User Image,Hình ảnh người dùng @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},Đán apps/frappe/frappe/public/js/frappe/chat.js,Discard,Vứt bỏ DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Chọn một hình ảnh có chiều rộng xấp xỉ 150px với nền trong suốt để có kết quả tốt nhất. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,Tái phát +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,{0} giá trị được chọn DocType: Blog Post,Email Sent,Email đã gửi DocType: Communication,Read by Recipient On,Đọc bởi người nhận DocType: User,Allow user to login only after this hour (0-24),Cho phép người dùng chỉ đăng nhập sau giờ này (0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,Mô-đun để xuất DocType: DocType,Fields,Lĩnh vực -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,Bạn không được phép in tài liệu này +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,Bạn không được phép in tài liệu này apps/frappe/frappe/public/js/frappe/model/model.js,Parent,Cha mẹ apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.","Phiên của bạn đã hết hạn, vui lòng đăng nhập lại để tiếp tục." DocType: Assignment Rule,Priority,Sự ưu tiên @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,Đặt lại bí m DocType: DocType,UPPER CASE,TRƯỜNG HỢP apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,Vui lòng đặt Địa chỉ Email DocType: Communication,Marked As Spam,Đánh dấu là thư rác +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,Địa chỉ Email có Danh bạ Google sẽ được đồng bộ hóa. apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,Thuê bao nhập khẩu apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,Lưu bộ lọc DocType: Address,Preferred Shipping Address,Địa chỉ giao hàng ưa thích DocType: GCalendar Account,The name that will appear in Google Calendar,Tên sẽ xuất hiện trong Lịch Google +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,Nhấp vào {0} để tạo Mã thông báo làm mới. DocType: Email Account,Disable SMTP server authentication,Vô hiệu hóa xác thực máy chủ SMTP DocType: Email Account,Total number of emails to sync in initial sync process ,Tổng số email để đồng bộ hóa trong quá trình đồng bộ hóa ban đầu DocType: System Settings,Enable Password Policy,Kích hoạt chính sách mật khẩu @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,Nhập mã apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,Không trong DocType: Auto Repeat,Start Date,Ngày bắt đầu apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,Đặt biểu đồ +DocType: Website Theme,Theme JSON,Chủ đề JSON apps/frappe/frappe/www/list.py,My Account,Tài khoản của tôi DocType: DocType,Is Published Field,Được công bố lĩnh vực DocType: DocField,Set non-standard precision for a Float or Currency field,Đặt độ chính xác không chuẩn cho trường Float hoặc Tiền tệ @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip: Thêm Reference: {{ reference_doctype }} {{ reference_name }} để gửi tài liệu tham khảo DocType: LDAP Settings,LDAP First Name Field,Trường tên đầu tiên LDAP apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,Gửi và hộp thư đến mặc định -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Cài đặt> Tùy chỉnh biểu mẫu apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.","Để cập nhật, bạn chỉ có thể cập nhật các cột chọn lọc." apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',Mặc định cho loại trường 'Kiểm tra' phải là '0' hoặc '1' apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,Chia sẻ tài liệu này với @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,Tên miền HTML DocType: Blog Settings,Blog Settings,Cài đặt blog apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Tên của DocType phải bắt đầu bằng một chữ cái và nó chỉ có thể bao gồm các chữ cái, số, dấu cách và dấu gạch dưới" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Thiết lập> Quyền người dùng DocType: Communication,Integrations can use this field to set email delivery status,Tích hợp có thể sử dụng trường này để đặt trạng thái gửi email apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,Cài đặt cổng thanh toán sọc DocType: Print Settings,Fonts,Phông chữ DocType: Notification,Channel,Kênh DocType: Communication,Opened,Đã mở DocType: Workflow Transition,Conditions,Điều kiện +apps/frappe/frappe/config/website.py,A user who posts blogs.,Một người dùng đăng blog. apps/frappe/frappe/www/login.html,Don't have an account? Sign up,Không có tài khoản? Đăng ký apps/frappe/frappe/utils/file_manager.py,Added {0},Đã thêm {0} DocType: Newsletter,Create and Send Newsletters,Tạo và gửi bản tin DocType: Website Settings,Footer Items,Mục chân trang +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Vui lòng thiết lập Tài khoản Email mặc định từ Cài đặt> Email> Tài khoản Email DocType: Website Slideshow Item,Website Slideshow Item,Mục trình chiếu trang web apps/frappe/frappe/config/integrations.py,Register OAuth Client App,Đăng ký ứng dụng khách OAuth DocType: Error Snapshot,Frames,Khung @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.","Cấp độ 0 dành cho quyền cấp độ tài liệu, \ cấp độ cao hơn đối với quyền cấp trường." DocType: Address,City/Town,Thành phố / thị trấn DocType: Email Account,GMail,GMail -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?","Điều này sẽ thiết lập lại chủ đề hiện tại của bạn, bạn có chắc chắn muốn tiếp tục?" apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},Các trường bắt buộc được yêu cầu trong {0} apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},Lỗi khi kết nối với tài khoản email {0} apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,Xảy ra lỗi trong khi tạo định kỳ @@ -528,7 +537,7 @@ DocType: Event,Event Category,Thể loại sự kiện apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,Cột dựa trên apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,Chỉnh sửa tiêu đề DocType: Communication,Received,Nhận -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,Bạn không được phép truy cập trang này. +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,Bạn không được phép truy cập trang này. DocType: User Social Login,User Social Login,Đăng nhập xã hội người dùng apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,Viết một tệp Python trong cùng một thư mục nơi lưu tệp này và trả về cột và kết quả. DocType: Contact,Purchase Manager,Quản lý mua hàng @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,Cấ apps/frappe/frappe/utils/data.py,Operator must be one of {0},Toán tử phải là một trong {0} apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,Nếu chủ sở hữu DocType: Data Migration Run,Trigger Name,Tên kích hoạt -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,Viết tiêu đề và giới thiệu cho blog của bạn. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,Xóa trường apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,Thu gọn tất cả apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,Màu nền @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,Quán ba DocType: SMS Settings,Enter url parameter for message,Nhập tham số url cho tin nhắn apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,Định dạng in tùy chỉnh mới apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1} đã tồn tại +DocType: Workflow Document State,Is Optional State,Là nhà nước tùy chọn DocType: Address,Purchase User,Người dùng mua hàng DocType: Data Migration Run,Insert,Chèn DocType: Web Form,Route to Success Link,Đường đến liên kết thành công @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,Tên ng DocType: File,Is Home Folder,Là thư mục nhà apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,Kiểu: DocType: Post,Is Pinned,Được ghim -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},Không được phép '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},Không được phép '{0}' {1} DocType: Patch Log,Patch Log,Nhật ký vá DocType: Print Format,Print Format Builder,Trình tạo định dạng in 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","Nếu được bật, tất cả người dùng có thể đăng nhập từ bất kỳ Địa chỉ IP nào bằng cách sử dụng Two Factor Auth. Điều này cũng chỉ có thể được đặt cho (các) người dùng cụ thể trong Trang người dùng" apps/frappe/frappe/utils/data.py,only.,chỉ có. apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,Điều kiện '{0}' không hợp lệ DocType: Auto Email Report,Day of Week,Ngày trong tuần +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,Kích hoạt Google API trong Cài đặt Google. DocType: DocField,Text Editor,Trình soạn thảo văn bản apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,Cắt tỉa apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,Tìm kiếm hoặc gõ lệnh @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,Số lượng bản sao lưu DB không thể ít hơn 1 DocType: Workflow State,ban-circle,vòng tròn cấm DocType: Data Export,Excel,Excel +DocType: Web Page,"Header, Breadcrumbs and Meta Tags","Tiêu đề, Breadcrumbs và Meta Tags" apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,Địa chỉ email hỗ trợ không được chỉ định DocType: Comment,Published,Được phát hành DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","Lưu ý: Để có kết quả tốt nhất, hình ảnh phải có cùng kích thước và chiều rộng phải lớn hơn chiều cao." @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,Lập lịch sự kiện cuối c apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,Báo cáo của tất cả các cổ phiếu tài liệu DocType: Website Sidebar Item,Website Sidebar Item,Mục thanh bên trang web apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,Làm +DocType: Google Settings,Google Settings,Cài đặt Google apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency","Chọn quốc gia, múi giờ và tiền tệ của bạn" DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)","Nhập tham số url tĩnh tại đây (Ví dụ: sender = ERPNext, username = ERPNext, password = 1234, v.v.)" apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,Không có tài khoản email @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,Mã thông báo mang OAuth ,Setup Wizard,Thuật sĩ cài đặt apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,Chuyển đổi biểu đồ +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,Đồng bộ hóa DocType: Data Migration Run,Current Mapping Action,Hành động lập bản đồ hiện tại DocType: Email Account,Initial Sync Count,Số lượng đồng bộ hóa ban đầu apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,Cài đặt cho Trang Liên hệ. @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,Kiểu định dạng in apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,Không có quyền cho tiêu chí này. apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,Mở rộng tất cả +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Không tìm thấy mẫu địa chỉ mặc định. Vui lòng tạo một cái mới từ Cài đặt> In và Nhãn hiệu> Mẫu địa chỉ. DocType: Tag Doc Category,Tag Doc Category,Danh mục tài liệu DocType: Data Import,Generated File,Tạo tập tin apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,Ghi chú @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,Trường dòng thời gian phải là Liên kết hoặc Liên kết động DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Thông báo và thư hàng loạt sẽ được gửi từ máy chủ gửi đi này. apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,Đây là 100 mật khẩu phổ biến hàng đầu. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,Gửi vĩnh viễn {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,Gửi vĩnh viễn {0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge","{0} {1} không tồn tại, chọn mục tiêu mới để hợp nhất" DocType: Energy Point Rule,Multiplier Field,Lĩnh vực đa nhân DocType: Workflow,Workflow State Field,Dòng trạng thái công việc @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0} đánh giá cao công việc của bạn trên {1} với {2} điểm DocType: Auto Email Report,Zero means send records updated at anytime,Không có nghĩa là gửi hồ sơ cập nhật bất cứ lúc nào apps/frappe/frappe/model/document.py,Value cannot be changed for {0},Không thể thay đổi giá trị cho {0} +apps/frappe/frappe/config/integrations.py,Google API Settings.,Cài đặt API của Google. DocType: System Settings,Force User to Reset Password,Buộc người dùng đặt lại mật khẩu apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,Báo cáo Trình tạo báo cáo được quản lý trực tiếp bởi người xây dựng báo cáo. Không có gì làm. apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,Chỉnh sửa bộ lọc @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,cho DocType: S3 Backup Settings,eu-north-1,eu-bắc-1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Chỉ một quy tắc được phép có cùng Vai trò, Cấp độ và {1}" apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,Bạn không được phép cập nhật Tài liệu biểu mẫu web này -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,Giới hạn đính kèm tối đa cho hồ sơ này đạt được. +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,Giới hạn đính kèm tối đa cho hồ sơ này đạt được. apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,Vui lòng đảm bảo Tài liệu truyền thông tham khảo không được liên kết vòng tròn. DocType: DocField,Allow in Quick Entry,Cho phép nhập nhanh DocType: Error Snapshot,Locals,Người dân địa phương @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,Loại ngoại lệ apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},Không thể xóa hoặc hủy vì {0} {1} được liên kết với {2} {3} {4} apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,Bí mật OTP chỉ có thể được Quản trị viên đặt lại. -DocType: Web Form Field,Page Break,Ngắt trang DocType: Website Script,Website Script,Tập lệnh trang web DocType: Integration Request,Subscription Notification,Thông báo đăng ký DocType: DocType,Quick Entry,Nhập cảnh nhanh @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,Đặt thuộc tính sau khi thô apps/frappe/frappe/__init__.py,Thank you,Cảm ơn bạn apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks để tích hợp nội bộ apps/frappe/frappe/config/settings.py,Import Data,Nhập dữ liệu +DocType: Translation,Contributed Translation Doctype Name,Tên tài liệu dịch thuật đóng góp DocType: Social Login Key,Office 365,Văn phòng 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID DocType: Review Level,Review Level,Đánh giá cấp @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,Thực hiện thành công apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0} Danh sách apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,Đánh giá -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),Mới {0} (Ctrl + B) DocType: Contact,Is Primary Contact,Là liên hệ chính DocType: Print Format,Raw Commands,Lệnh thô apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,Bảng định kiểu cho định dạng in @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,Lỗi trong sự k apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},Tìm {0} trong {1} DocType: Email Account,Use SSL,Sử dụng SSL DocType: DocField,In Standard Filter,Trong bộ lọc tiêu chuẩn +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,Không có Danh bạ Google để đồng bộ hóa. DocType: Data Migration Run,Total Pages,Tổng số trang apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}: Không thể đặt trường '{1}' là Duy nhất vì nó có các giá trị không duy nhất DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Nếu được bật, người dùng sẽ được thông báo mỗi khi họ đăng nhập. Nếu không được bật, người dùng sẽ chỉ được thông báo một lần." @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,Tự động hóa apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,Giải nén tập tin ... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',Tìm kiếm '{0}' apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,Đã xảy ra lỗi -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,Vui lòng lưu trước khi đính kèm. +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,Vui lòng lưu trước khi đính kèm. DocType: Version,Table HTML,Bảng HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,trung tâm DocType: Page,Standard,Tiêu chuẩn @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,Ko có kế apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,{0} hồ sơ đã bị xóa apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,Đã xảy ra lỗi khi tạo mã thông báo truy cập dropbox. Vui lòng kiểm tra nhật ký lỗi để biết thêm chi tiết. apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,Hậu duệ của -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Không tìm thấy mẫu địa chỉ mặc định. Vui lòng tạo một cái mới từ Cài đặt> In và Nhãn hiệu> Mẫu địa chỉ. +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,Danh bạ Google đã được định cấu hình. apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,Ẩn chi tiết apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,Kiểu chữ apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,Đăng ký của bạn sẽ hết hạn vào {0}. apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Xác thực thất bại trong khi nhận email từ Tài khoản Email {0}. Tin nhắn từ máy chủ: {1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),Số liệu thống kê dựa trên hiệu suất của tuần trước (từ {0} đến {1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,Liên kết tự động chỉ có thể được kích hoạt nếu Bật đến. DocType: Website Settings,Title Prefix,Tiền tố tiêu đề apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,Ứng dụng xác thực bạn có thể sử dụng là: DocType: Bulk Update,Max 500 records at a time,Tối đa 500 hồ sơ tại một thời điểm @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,Bộ lọc báo cáo apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,Chọn cột DocType: Event,Participants,Người tham gia DocType: Auto Repeat,Amended From,Sửa đổi từ -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,Thông tin của bạn đã được gửi +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,Thông tin của bạn đã được gửi DocType: Help Category,Help Category,Danh mục trợ giúp apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1 tháng apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,Chọn một định dạng hiện có để chỉnh sửa hoặc bắt đầu một định dạng mới. @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,Trường để theo dõi DocType: User,Generate Keys,Tạo khóa DocType: Comment,Unshared,Không chia sẻ -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,Đã lưu +DocType: Translation,Saved,Đã lưu DocType: OAuth Client,OAuth Client,Khách hàng của OAuth DocType: System Settings,Disable Standard Email Footer,Vô hiệu hóa chân trang email tiêu chuẩn apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,Định dạng in {0} bị tắt @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,Cập nhật DocType: Data Import,Action,Hoạt động apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,Cần có khóa khách hàng DocType: Chat Profile,Notifications,Thông báo +DocType: Translation,Contributed,Đóng góp DocType: System Settings,mm/dd/yyyy,mm / dd / năm DocType: Report,Custom Report,Báo cáo tùy chỉnh DocType: Workflow State,info-sign,ký thông tin @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,Tiếp xúc DocType: LDAP Settings,LDAP Username Field,Trường tên người dùng LDAP apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Trường {0} không thể được đặt là duy nhất trong {1}, vì có các giá trị hiện tại không duy nhất" +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,Cài đặt> Tùy chỉnh biểu mẫu DocType: User,Social Logins,Đăng nhập xã hội DocType: Workflow State,Trash,Rác DocType: Stripe Settings,Secret Key,Chìa khoá bí mật @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,Trường tiêu đề apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,Không thể kết nối với máy chủ email đi DocType: File,File URL,URL tệp DocType: Help Article,Likes,Thích +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Tích hợp danh bạ Google bị vô hiệu hóa. apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,Bạn cần phải đăng nhập và có Vai trò quản lý hệ thống để có thể truy cập các bản sao lưu. apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,Cấp độ đầu tiên DocType: Blogger,Short Name,Tên ngắn @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,Nhập Zip DocType: Contact,Gender,Giới tính DocType: Workflow State,thumbs-down,ngón tay cái xuống -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},Hàng đợi phải là một trong {0} apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},Không thể đặt Thông báo về Loại tài liệu {0} apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,Thêm Trình quản lý hệ thống cho Người dùng này vì phải có ít nhất một Trình quản lý hệ thống apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,Email chào mừng đã gửi DocType: Transaction Log,Chaining Hash,Xâu chuỗi DocType: Contact,Maintenance Manager,quản lý bảo trì +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Để so sánh, sử dụng> 5, <10 hoặc = 324. Đối với phạm vi, sử dụng 5:10 (cho các giá trị trong khoảng từ 5 đến 10)." apps/frappe/frappe/utils/bot.py,show,chỉ apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,Chia sẻ URL apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,Định dạng tập tin không được hỗ trợ @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,Thông báo DocType: Data Import,Show only errors,Chỉ hiển thị lỗi DocType: Energy Point Log,Review,Ôn tập apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,Hàng bị xóa -DocType: GSuite Settings,Google Credentials,Thông tin đăng nhập của Google +DocType: Google Settings,Google Credentials,Thông tin đăng nhập của Google apps/frappe/frappe/www/login.html,Or login with,Hoặc đăng nhập bằng apps/frappe/frappe/model/document.py,Record does not exist,Bản ghi không tồn tại apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,Tên báo cáo mới @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,Danh sách DocType: Workflow State,th-large,lớn apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}: Không thể đặt Gán gửi nếu không thể gửi apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,Không liên kết với bất kỳ hồ sơ +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Lỗi kết nối với Ứng dụng Khay QZ ...

Bạn cần cài đặt và chạy ứng dụng QZ Khay để sử dụng tính năng In thô.

Nhấn vào đây để tải xuống và cài đặt QZ Khay .
Nhấn vào đây để tìm hiểu thêm về In thô ." DocType: Chat Message,Content,Nội dung DocType: Workflow Transition,Allow Self Approval,Cho phép tự phê duyệt apps/frappe/frappe/www/qrcode.py,Page has expired!,Trang đã hết hạn! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,tay phải DocType: Website Settings,Banner is above the Top Menu Bar.,Biểu ngữ nằm phía trên Thanh Menu trên cùng. apps/frappe/frappe/www/update-password.html,Invalid Password,Mật khẩu không hợp lệ apps/frappe/frappe/utils/data.py,1 month ago,1 tháng trước +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,Cho phép truy cập danh bạ Google DocType: OAuth Client,App Client ID,ID khách hàng ứng dụng DocType: DocField,Currency,Tiền tệ DocType: Website Settings,Banner,Biểu ngữ @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,Mục tiêu DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.","Nếu Vai trò không có quyền truy cập ở Cấp 0, thì cấp cao hơn là vô nghĩa." DocType: ToDo,Reference Type,Loại tham chiếu -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!","Cho phép DocType, DocType. Hãy cẩn thận!" +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!","Cho phép DocType, DocType. Hãy cẩn thận!" DocType: Domain Settings,Domain Settings,Cài đặt tên miền DocType: Auto Email Report,Dynamic Report Filters,Bộ lọc báo cáo động DocType: Energy Point Log,Appreciation,Sự đánh giá @@ -1468,6 +1489,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,chúng tôi-tây-2 DocType: DocType,Is Single,Là độc thân apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,Tạo một định dạng mới +DocType: Google Contacts,Authorize Google Contacts Access,Cho phép truy cập danh bạ Google DocType: S3 Backup Settings,Endpoint URL,URL điểm cuối DocType: Social Login Key,Google,Google DocType: Contact,Department,Sở @@ -1482,7 +1504,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,Giao cho DocType: List Filter,List Filter,Danh sách bộ lọc DocType: Dashboard Chart Link,Chart,Đồ thị apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,Không thể xóa -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,Gửi tài liệu này để xác nhận +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,Gửi tài liệu này để xác nhận apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0} đã tồn tại. Chọn tên khác apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,Bạn có những thay đổi chưa được lưu trong mẫu này. Hãy lưu lại trước khi bạn tiếp tục. apps/frappe/frappe/model/document.py,Action Failed,Diễn: Đã thất bại @@ -1564,6 +1586,7 @@ DocType: DocField,Display,Trưng bày apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,Trả lời tất cả DocType: Calendar View,Subject Field,Chủ đề apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},Hết hạn phiên phải ở định dạng {0} +apps/frappe/frappe/model/workflow.py,Applying: {0},Áp dụng: {0} DocType: Workflow State,zoom-in,phóng to apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,kết nối thất bại apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},Ngày {0} phải có định dạng: {1} @@ -1575,8 +1598,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,Biểu tượng sẽ xuất hiện trên nút DocType: Role Permission for Page and Report,Set Role For,Đặt vai trò cho +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,Liên kết tự động chỉ có thể được kích hoạt cho một Tài khoản Email. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,Không có tài khoản email nào được chỉ định +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Tài khoản email không được thiết lập. Vui lòng tạo Tài khoản Email mới từ Cài đặt> Email> Tài khoản Email apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,Bài tập +DocType: Google Contacts,Last Sync On,Đồng bộ hóa lần cuối apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},đạt được {0} thông qua quy tắc tự động {1} apps/frappe/frappe/config/website.py,Portal,Cổng thông tin apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,Cảm ơn vì lá thư của bạn @@ -1597,7 +1623,6 @@ DocType: GSuite Settings,GSuite Settings,Cài đặt GSuite DocType: Integration Request,Remote,Xa DocType: File,Thumbnail URL,URL hình thu nhỏ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,Tải xuống báo cáo -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Cài đặt> Người dùng apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},Các tùy chỉnh cho {0} được xuất sang:
{1} DocType: GCalendar Account,Calendar Name,Tên lịch apps/frappe/frappe/templates/emails/new_user.html,Your login id is,Id đăng nhập của bạn là @@ -1647,6 +1672,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},Chuy apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,Trường hình ảnh phải là tên trường hợp lệ apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,Bạn cần phải đăng nhập để truy cập trang này DocType: Assignment Rule,Example: {{ subject }},Ví dụ: {{chủ đề}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,Tên trường {0} bị hạn chế apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},Bạn không thể bỏ đặt 'Chỉ đọc' cho trường {0} DocType: Social Login Key,Enable Social Login,Kích hoạt đăng nhập xã hội DocType: Workflow,Rules defining transition of state in the workflow.,Quy tắc xác định chuyển đổi trạng thái trong quy trình làm việc. @@ -1667,10 +1693,10 @@ DocType: Website Settings,Route Redirects,Chuyển hướng tuyến apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,Hộp thư email apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},đã khôi phục {0} dưới dạng {1} DocType: Assignment Rule,Automatically Assign Documents to Users,Tự động gán tài liệu cho người dùng +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,Mở Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,Mẫu email cho các truy vấn phổ biến. DocType: Letter Head,Letter Head Based On,Đầu thư dựa trên apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,Vui lòng đóng cửa sổ này -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,hoàn tất thanh toán DocType: Contact,Designation,Chỉ định DocType: Webhook,Webhook,Webhook DocType: Website Route Meta,Meta Tags,Thẻ meta @@ -1709,6 +1735,7 @@ DocType: System Settings,Choose authentication method to be used by all users,Ch DocType: Error Snapshot,Parent Error Snapshot,Ảnh chụp lỗi phụ huynh DocType: GCalendar Account,GCalendar Account,Tài khoản GCalWiki DocType: Language,Language Name,Tên ngôn ngữ +DocType: Workflow Document State,Workflow Action is not created for optional states,Workflow Action không được tạo cho các trạng thái tùy chọn DocType: Customize Form,Customize Form,Tùy chỉnh biểu mẫu DocType: DocType,Image Field,Trường hình ảnh apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),Đã thêm {0} ({1}) @@ -1750,6 +1777,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,Áp dụng quy tắc này nếu Người dùng là Chủ sở hữu DocType: About Us Settings,Org History Heading,Tiêu đề lịch sử Org apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,Lỗi máy chủ +DocType: Contact,Google Contacts Description,Mô tả liên hệ của Google apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,Vai trò tiêu chuẩn không thể được đổi tên DocType: Review Level,Review Points,Điểm đánh giá apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,Thiếu tham số Tên bảng Kanban @@ -1767,7 +1795,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Không ở Chế độ nhà phát triển! Đặt trong site_config.json hoặc tạo DocType 'Tùy chỉnh'. apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,đạt được {0} điểm DocType: Web Form,Success Message,gửi tin thành công -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).","Để so sánh, sử dụng> 5, <10 hoặc = 324. Đối với phạm vi, sử dụng 5:10 (cho các giá trị trong khoảng từ 5 đến 10)." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Mô tả cho trang danh sách, trong văn bản đơn giản, chỉ có một vài dòng. (tối đa 140 ký tự)" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,Hiển thị quyền DocType: DocType,Restrict To Domain,Giới hạn tên miền @@ -1789,6 +1816,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,Không apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,Đặt số lượng DocType: Auto Repeat,End Date,Ngày cuối DocType: Workflow Transition,Next State,Nhà nước tiếp theo +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Danh bạ Google được đồng bộ hóa. DocType: System Settings,Is First Startup,Là người khởi nghiệp đầu tiên apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},được cập nhật thành {0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,Chuyển tới @@ -1838,6 +1866,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0} Lịch apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,Mẫu nhập dữ liệu DocType: Workflow State,hand-left,tay trái +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,Chọn nhiều mục danh sách apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,Kích thước sao lưu: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},Được liên kết với {0} DocType: Braintree Settings,Private Key,Khóa riêng @@ -1880,13 +1909,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,Quan tâm DocType: Bulk Update,Limit,Giới hạn DocType: Print Settings,Print taxes with zero amount,In thuế với số tiền bằng không -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Tài khoản email không được thiết lập. Vui lòng tạo Tài khoản Email mới từ Cài đặt> Email> Tài khoản Email DocType: Workflow State,Book,Sách DocType: S3 Backup Settings,Access Key ID,ID khóa truy cập DocType: Chat Message,URLs,URL apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,Tên và họ của họ rất dễ đoán. apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},Báo cáo {0} DocType: About Us Settings,Team Members Heading,Thành viên nhóm +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,Chọn mục danh sách apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},Tài liệu {0} đã được đặt thành trạng thái {1} bởi {2} DocType: Address Template,Address Template,Mẫu địa chỉ DocType: Workflow State,step-backward,Bước giật lùi @@ -1910,6 +1939,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,Xuất quyền tùy chỉnh apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,Không có: Kết thúc quy trình làm việc DocType: Version,Version,Phiên bản +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,Mở danh sách apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6 tháng DocType: Chat Message,Group,Nhóm apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},Có một số vấn đề với url tệp: {0} @@ -1965,6 +1995,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1 năm apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0} hoàn nguyên điểm của bạn trên {1} DocType: Workflow State,arrow-down,mũi tên xuống DocType: Data Import,Ignore encoding errors,Bỏ qua lỗi mã hóa +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,Phong cảnh DocType: Letter Head,Letter Head Name,Tên thư DocType: Web Form,Client Script,Tập lệnh khách hàng DocType: Assignment Rule,Higher priority rule will be applied first,Quy tắc ưu tiên cao hơn sẽ được áp dụng đầu tiên @@ -2009,6 +2040,7 @@ DocType: Kanban Board Column,Green,màu xanh lá apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Chỉ các trường bắt buộc là cần thiết cho hồ sơ mới. Bạn có thể xóa các cột không bắt buộc nếu bạn muốn. apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.","{0} phải bắt đầu và kết thúc bằng một chữ cái và chỉ có thể chứa các chữ cái, dấu gạch nối hoặc dấu gạch dưới." +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,Hành động chính kích hoạt apps/frappe/frappe/core/doctype/user/user.js,Create User Email,Tạo email người dùng apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,Trường sắp xếp {0} phải là tên trường hợp lệ DocType: Auto Email Report,Filter Meta,Bộ lọc Meta @@ -2038,6 +2070,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,Trường thời gian apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,Tải... DocType: Auto Email Report,Half Yearly,Nửa năm +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,Thông tin của tôi apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,Ngày sửa đổi cuối cùng DocType: Contact,First Name,Tên đầu tiên DocType: Post,Comments,Bình luận @@ -2060,6 +2093,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,Nội dung Hash apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},Bài viết của {0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0} được chỉ định {1}: {2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,Không có Danh bạ Google mới được đồng bộ hóa. DocType: Workflow State,globe,quả địa cầu apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},Trung bình {0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,Xóa nhật ký lỗi @@ -2086,6 +2120,8 @@ DocType: Workflow State,Inverse,Nghịch đảo DocType: Activity Log,Closed,Đã đóng DocType: Report,Query,Truy vấn DocType: Notification,Days After,Nhiều ngày sau đó +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,Phím tắt trang +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,Chân dung apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,Yêu cầu hết thời gian DocType: System Settings,Email Footer Address,Địa chỉ chân trang email apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,Cập nhật điểm năng lượng @@ -2113,6 +2149,7 @@ For Select, enter list of Options, each on a new line.","Đối với Liên kế apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1 phút trước apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,Không có hoạt động apps/frappe/frappe/model/base_document.py,Row,Hàng +DocType: Contact,Middle Name,Tên đệm apps/frappe/frappe/public/js/frappe/request.js,Please try again,Vui lòng thử lại DocType: Dashboard Chart,Chart Options,Tùy chọn biểu đồ DocType: Data Migration Run,Push Failed,Đẩy thất bại @@ -2141,6 +2178,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,thay đổi kích thước nhỏ DocType: Comment,Relinked,Đã xem lại DocType: Role Permission for Page and Report,Roles HTML,Vai trò HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,Đi apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,Quy trình làm việc sẽ bắt đầu sau khi lưu. DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Nếu dữ liệu của bạn bằng HTML, vui lòng sao chép mã HTML chính xác bằng các thẻ." apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,Ngày thường dễ đoán. @@ -2169,7 +2207,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,Biểu tượng Desktop apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,hủy tài liệu này apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,Phạm vi ngày -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,Thiết lập> Quyền người dùng apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0} đánh giá cao {1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,Giá trị thay đổi apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,Lỗi trong thông báo @@ -2234,6 +2271,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,Xóa hàng loạt DocType: DocShare,Document Name,Tên tài liệu apps/frappe/frappe/config/customization.py,Add your own translations,Thêm bản dịch của riêng bạn +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,Điều hướng danh sách xuống DocType: S3 Backup Settings,eu-central-1,trung tâm-1 DocType: Auto Repeat,Yearly,Hàng năm apps/frappe/frappe/public/js/frappe/model/model.js,Rename,Đổi tên @@ -2284,6 +2322,7 @@ DocType: Workflow State,plane,máy bay apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,Lỗi đặt lồng nhau. Vui lòng liên hệ với Quản trị viên. apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,Hiển thị báo cáo DocType: Auto Repeat,Auto Repeat Schedule,Lịch lặp lại tự động +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,Xem tham chiếu DocType: Address,Office,Văn phòng DocType: LDAP Settings,StartTLS,StartTLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0} ngày trước @@ -2317,7 +2356,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required,Th apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,Cài đặt của tôi apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,Tên nhóm không thể để trống. DocType: Workflow State,road,đường -DocType: Website Route Redirect,Source,Nguồn +DocType: Contact,Source,Nguồn apps/frappe/frappe/www/third_party_apps.html,Active Sessions,Phiên hoạt động apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,Chỉ có thể có một Fold trong một hình thức apps/frappe/frappe/public/js/frappe/chat.js,New Chat,Cuộc trò truyện mới @@ -2339,6 +2378,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,Vui lòng nhập URL ủy quyền DocType: Email Account,Send Notification to,Gửi thông báo tới apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Cài đặt sao lưu Dropbox +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,Đã xảy ra lỗi trong quá trình tạo mã thông báo. Nhấp vào {0} để tạo một cái mới. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,Xóa tất cả các tùy chỉnh? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,Chỉ quản trị viên mới có thể chỉnh sửa DocType: Auto Repeat,Reference Document,Tài liệu tham khảo @@ -2363,6 +2403,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,Vai trò có thể được đặt cho người dùng từ trang Người dùng của họ. DocType: Website Settings,Include Search in Top Bar,Bao gồm tìm kiếm trong Top Bar apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[Khẩn cấp] Lỗi trong khi tạo% s định kỳ cho% s +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,Phím tắt toàn cầu DocType: Help Article,Author,Tác giả DocType: Webhook,on_cancel,on_cattery apps/frappe/frappe/client.py,No document found for given filters,Không tìm thấy tài liệu cho các bộ lọc nhất định @@ -2398,10 +2439,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}","{0}, Hàng {1}" apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Nếu bạn đang tải lên các bản ghi mới, "Dòng đặt tên" sẽ trở thành bắt buộc, nếu có." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,Chỉnh sửa thuộc tính -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,Không thể mở phiên bản khi {0} của nó mở +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,Không thể mở phiên bản khi {0} của nó mở DocType: Activity Log,Timeline Name,Tên dòng thời gian DocType: Comment,Workflow,Quy trình làm việc apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,Vui lòng đặt URL cơ sở trong Khóa đăng nhập xã hội cho Frappe +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,Các phím tắt bàn phím DocType: Portal Settings,Custom Menu Items,Mục menu tùy chỉnh apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,Độ dài {0} phải nằm trong khoảng từ 1 đến 1000 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,Kết nối bị mất. Một số tính năng có thể không hoạt động. @@ -2464,6 +2506,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,Hàng đã DocType: DocType,Setup,Thiết lập apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0} đã được tạo thành công apps/frappe/frappe/www/update-password.html,New Password,mật khẩu mới +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,Chọn trường apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,Rời khỏi cuộc trò chuyện này DocType: About Us Settings,Team Members,Thành viên trong nhóm DocType: Blog Settings,Writers Introduction,Giới thiệu nhà văn @@ -2533,13 +2576,12 @@ DocType: Chat Room,Name,Tên DocType: Communication,Email Template,Mẫu email DocType: Energy Point Settings,Review Levels,Xem lại cấp độ DocType: Print Format,Raw Printing,In thô -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,Không thể mở {0} khi phiên bản của nó được mở +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,Không thể mở {0} khi phiên bản của nó được mở DocType: DocType,"Make ""name"" searchable in Global Search",Tạo "tên" có thể tìm kiếm trong Tìm kiếm toàn cầu DocType: Data Migration Mapping,Data Migration Mapping,Ánh xạ di chuyển dữ liệu DocType: Data Import,Partially Successful,Thành công một phần DocType: Communication,Error,lỗi apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},Không thể thay đổi trường loại từ {0} thành {1} trong hàng {2} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","Lỗi kết nối với Ứng dụng Khay QZ ...

Bạn cần cài đặt và chạy ứng dụng QZ Khay để sử dụng tính năng In thô.

Nhấn vào đây để tải xuống và cài đặt QZ Khay .
Nhấn vào đây để tìm hiểu thêm về In thô ." apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,Chụp hình apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,Tránh những năm có liên quan đến bạn. DocType: Web Form,Allow Incomplete Forms,Cho phép các hình thức không đầy đủ @@ -2635,7 +2677,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Chọn mục tiêu = "_blank" để mở trong một trang mới. DocType: Portal Settings,Portal Menu,Menu Cổng thông tin DocType: Website Settings,Landing Page,Trang đích -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,Vui lòng đăng ký hoặc đăng nhập để bắt đầu DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Tùy chọn liên hệ, như "Truy vấn bán hàng, Truy vấn hỗ trợ", v.v., mỗi truy vấn trên một dòng mới hoặc được phân tách bằng dấu phẩy." apps/frappe/frappe/twofactor.py,Verfication Code,Mã xác minh apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0} đã hủy đăng ký @@ -2721,6 +2762,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,Ánh xạ kế DocType: Address,Sales User,Người dùng bán hàng apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)","Thay đổi thuộc tính trường (ẩn, chỉ đọc, cho phép, v.v.)" DocType: Property Setter,Field Name,Tên trường +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,khách hàng DocType: Print Settings,Font Size,Cỡ chữ DocType: User,Last Password Reset Date,Ngày đặt lại mật khẩu lần cuối DocType: System Settings,Date and Number Format,Định dạng ngày và số @@ -2786,6 +2828,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,Nút nhóm apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,Hợp nhất với hiện tại DocType: Blog Post,Blog Intro,Giới thiệu blog apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,Đề cập mới +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,Nhảy đến trường DocType: Prepared Report,Report Name,Tên báo cáo apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,Vui lòng làm mới để có được tài liệu mới nhất. apps/frappe/frappe/core/doctype/communication/communication.js,Close,Gần @@ -2795,10 +2838,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,Biến cố DocType: Social Login Key,Access Token URL,Truy cập URL mã thông báo apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,Vui lòng đặt các khóa truy cập Dropbox trong cấu hình trang web của bạn +DocType: Google Contacts,Google Contacts,Danh bạ Google DocType: User,Reset Password Key,Đặt lại khóa mật khẩu apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,Được sửa đổi bởi DocType: User,Bio,Sinh học apps/frappe/frappe/limits.py,"To renew, {0}.","Để gia hạn, {0}." +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,Đã lưu thành công +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,Gửi email đến {0} để liên kết nó ở đây. DocType: File,Folder,Thư mục DocType: DocField,Perm Level,Cấp độ Perm DocType: Print Settings,Page Settings,Cài đặt trang @@ -2828,6 +2874,7 @@ DocType: Workflow State,remove-sign,xóa dấu hiệu DocType: Dashboard Chart,Full,Đầy DocType: DocType,User Cannot Create,Người dùng không thể tạo apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,Bạn đã đạt được {0} điểm +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,Cài đặt> Người dùng DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Nếu bạn đặt mục này, Mục này sẽ xuất hiện trong phần thả xuống dưới phần cha mẹ được chọn." apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,Không email apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,Các trường sau bị thiếu: @@ -2841,13 +2888,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,Hi DocType: Web Form,Web Form Fields,Trường mẫu Web DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,Mẫu người dùng có thể chỉnh sửa trên Website. -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,Hủy vĩnh viễn {0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,Hủy vĩnh viễn {0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,Lựa chọn 3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,Tổng cộng apps/frappe/frappe/utils/password_strength.py,This is a very common password.,Đây là một mật khẩu rất phổ biến. DocType: Personal Data Deletion Request,Pending Approval,Chờ phê duyệt apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,Tài liệu không thể được chỉ định chính xác apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},Không được phép cho {0}: {1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,Không có giá trị để hiển thị DocType: Personal Data Download Request,Personal Data Download Request,Yêu cầu tải xuống dữ liệu cá nhân apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0} đã chia sẻ tài liệu này với {1} apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},Chọn {0} @@ -2863,7 +2911,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},Email này đã được gửi tới {0} và được sao chép vào {1} apps/frappe/frappe/email/smtp.py,Invalid login or password,Đăng nhập hoặc mật khẩu không hợp lệ DocType: Social Login Key,Social Login Key,Khóa đăng nhập xã hội -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,Vui lòng thiết lập Tài khoản Email mặc định từ Cài đặt> Email> Tài khoản Email apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,Bộ lọc đã lưu DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Tiền tệ này nên được định dạng như thế nào? Nếu không được đặt, sẽ sử dụng mặc định hệ thống" apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}: {1} được đặt thành trạng thái {2} @@ -2989,6 +3036,7 @@ DocType: User,Location,Vị trí apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,Không có dữ liệu DocType: Website Meta Tag,Website Meta Tag,Thẻ meta trang web DocType: Workflow State,film,phim ảnh +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,Sao chép vào clipboard. apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0} Không tìm thấy cài đặt apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,Nhãn là bắt buộc DocType: Webhook,Webhook Headers,Tiêu đề webhook @@ -3197,7 +3245,7 @@ DocType: Address,Address Line 1,Địa chỉ 1 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,Đối với loại tài liệu apps/frappe/frappe/model/base_document.py,Data missing in table,Dữ liệu bị thiếu trong bảng apps/frappe/frappe/utils/bot.py,Could not identify {0},Không thể xác định {0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,Biểu mẫu này đã được sửa đổi sau khi bạn tải nó +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,Biểu mẫu này đã được sửa đổi sau khi bạn tải nó apps/frappe/frappe/www/login.html,Back to Login,Quay lại đăng nhập apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,Không được thiết lập DocType: Data Migration Mapping,Pull,Kéo @@ -3265,6 +3313,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,Ánh xạ bảng con apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,Thiết lập tài khoản email vui lòng nhập mật khẩu của bạn cho: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,Quá nhiều viết trong một yêu cầu. Vui lòng gửi yêu cầu nhỏ hơn DocType: Social Login Key,Salesforce,Lực lượng bán hàng +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},Nhập {0} trong số {1} DocType: User,Tile,Ngói apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,Phòng {0} phải có tối đa một người dùng. DocType: Email Rule,Is Spam,Là thư rác @@ -3302,7 +3351,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,đóng thư mục DocType: Data Migration Run,Pull Update,Cập nhật kéo apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},đã hợp nhất {0} thành {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

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

DocType: SMS Settings,Enter url parameter for receiver nos,Nhập tham số url cho số người nhận apps/frappe/frappe/utils/jinja.py,Syntax error in template,Lỗi cú pháp trong mẫu apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,Vui lòng đặt giá trị bộ lọc trong bảng Bộ lọc báo cáo. @@ -3315,6 +3363,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.","Xin lỗi, DocType: System Settings,In Days,Trong ngày DocType: Report,Add Total Row,Thêm tổng hàng apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,Phiên bắt đầu không thành công +DocType: Translation,Verified,Đã xác minh DocType: Print Format,Custom HTML Help,Trợ giúp HTML tùy chỉnh DocType: Address,Preferred Billing Address,Địa chỉ thanh toán ưa thích apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,Phân công @@ -3329,7 +3378,6 @@ DocType: Help Article,Intermediate,Trung gian DocType: Module Def,Module Name,Tên mô-đun DocType: OAuth Authorization Code,Expiration time,Thời gian hết hạn apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.","Đặt định dạng mặc định, kích thước trang, kiểu in, v.v." -apps/frappe/frappe/desk/like.py,You cannot like something that you created,Bạn không thể thích một cái gì đó mà bạn đã tạo ra DocType: System Settings,Session Expiry,Hết hạn phiên DocType: DocType,Auto Name,Tên tự động apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,Chọn tệp đính kèm @@ -3357,6 +3405,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,Trang hệ thống DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,"Lưu ý: Theo mặc định, email cho các bản sao lưu không thành công được gửi." DocType: Custom DocPerm,Custom DocPerm,Tùy chỉnh DocPerm +DocType: Translation,PR sent,Gửi PR DocType: Tag Doc Category,Doctype to Assign Tags,Tài liệu để gán thẻ DocType: Address,Warehouse,Kho apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Thiết lập Dropbox @@ -3424,7 +3473,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,Ctrl + Enter để thêm nhận xét apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,Trường {0} không thể chọn. DocType: User,Birth Date,Ngày sinh -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,Với thụt nhóm DocType: List View Setting,Disable Count,Vô hiệu hóa Đếm DocType: Contact Us Settings,Email ID,ID email apps/frappe/frappe/utils/password.py,Incorrect User or Password,Người dùng hoặc mật khẩu không chính xác @@ -3459,6 +3507,7 @@ DocType: Website Settings,<head> HTML,<đầu> HTML DocType: Custom DocPerm,This role update User Permissions for a user,Vai trò này cập nhật Quyền người dùng cho người dùng DocType: Website Theme,Theme,Chủ đề DocType: Web Form,Show Sidebar,Hiển thị thanh bên +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Tích hợp danh bạ Google. apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,Hộp thư đến mặc định apps/frappe/frappe/www/login.py,Invalid Login Token,Mã thông báo đăng nhập không hợp lệ apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,Đầu tiên đặt tên và lưu bản ghi. @@ -3486,7 +3535,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,Vui lòng sửa DocType: Top Bar Item,Top Bar Item,Mục hàng đầu ,Role Permissions Manager,Trình quản lý quyền -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,Có lỗi. Hãy báo cáo điều này. +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0} năm trước apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,Giống cái DocType: System Settings,OTP Issuer Name,Tên nhà phát hành OTP apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,Thêm vào để làm @@ -3586,6 +3635,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings","Cài apps/frappe/frappe/model/document.py,none of,không DocType: Desktop Icon,Page,Trang DocType: Workflow State,plus-sign,dấu cộng +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,Xóa bộ nhớ cache và tải lại apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,Không thể cập nhật: Liên kết không chính xác / hết hạn. DocType: Kanban Board Column,Yellow,Màu vàng DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Số lượng cột cho một trường trong Lưới (Tổng số cột trong lưới phải nhỏ hơn 11) @@ -3600,6 +3650,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,Ban DocType: Activity Log,Date,Ngày DocType: Communication,Communication Type,Loại truyền thông apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,Bảng phụ huynh +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,Điều hướng danh sách lên DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Hiển thị đầy đủ lỗi và cho phép báo cáo sự cố cho nhà phát triển DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3621,7 +3672,6 @@ DocType: Notification Recipient,Email By Role,Email theo vai trò apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,Vui lòng nâng cấp để thêm nhiều hơn {0} người đăng ký apps/frappe/frappe/email/queue.py,This email was sent to {0},Email này đã được gửi tới {0} DocType: User,Represents a User in the system.,Đại diện cho một người dùng trong hệ thống. -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},Trang {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,Bắt đầu định dạng mới apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,Thêm một bình luận apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{0} trong số {1} diff --git a/frappe/translations/zh.csv b/frappe/translations/zh.csv index 12469a6f1e..e0566a6603 100644 --- a/frappe/translations/zh.csv +++ b/frappe/translations/zh.csv @@ -4,12 +4,14 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,启用渐变 DocType: DocType,Default Sort Order,默认排序顺序 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,仅显示报告中的数字字段 +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,按Alt键可在菜单和侧栏中触发其他快捷方式 DocType: Workflow State,folder-open,文件夹打开 DocType: Customize Form,Is Table,是表 apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,无法打开附件。你把它导出为CSV吗? DocType: DocField,No Copy,没有副本 DocType: Custom Field,Default Value,默认值 apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,传入邮件是强制性的 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,通讯录同步 DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,数据迁移映射细节 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,取消关注 apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",尚不支持通过“原始打印”进行PDF打印。请在“打印机设置”中删除打印机映射,然后重试。 @@ -68,8 +70,10 @@ apps/frappe/frappe/utils/data.py,{0} and {1},{0}和{1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,保存过滤器时出错 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,输入您的密码 apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,无法删除“主页”和“附件”文件夹 +DocType: Email Account,Enable Automatic Linking in Documents,启用文档中的自动链接 DocType: Contact Us Settings,Settings for Contact Us Page,联系我们页面的设置 DocType: Social Login Key,Social Login Provider,社交登录提供商 +DocType: Email Account,"For more information, click here.","有关更多信息, 请单击此处 。" DocType: Transaction Log,Previous Hash,以前的哈希 DocType: Notification,Value Changed,价值改变了 DocType: Report,Report Type,报告类型 @@ -161,7 +165,6 @@ DocType: Energy Point Rule,Energy Point Rule,能量点规则 apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Client ID before social login is enabled,请在启用社交登录前输入客户端ID DocType: Communication,Has Attachment,有附件 DocType: User,Email Signature,电子邮件签名 -apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0}年前 ,Addresses And Contacts,地址和联系人 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,This Kanban Board will be private,这个看板会是私人的 DocType: Data Migration Run,Current Mapping,当前映射 @@ -209,6 +212,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti of Communication (emails).",您正在选择“同步选项”作为ALL,它将重新同步来自服务器的所有\ read和未读消息。这也可能导致重复通信(电子邮件)。 apps/frappe/frappe/core/page/dashboard/dashboard.js,Last synced {0},上次同步{0} apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,无法更改标题内容 +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

找不到'结果'

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,提交后不允许更改{0} apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page",该应用程序已更新至新版本,请刷新此页面 DocType: User,User Image,用户图片 @@ -320,6 +324,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},标 apps/frappe/frappe/public/js/frappe/chat.js,Discard,丢弃 DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,选择大约150px的图像,透明背景,以获得最佳效果。 apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,复发 +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,已选择{0}个值 DocType: Blog Post,Email Sent,邮件已发送 DocType: Communication,Read by Recipient On,由收件人阅读 DocType: User,Allow user to login only after this hour (0-24),允许用户仅在此时间后登录(0-24) @@ -341,7 +346,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without DocType: File,old_parent,old_parent apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,要导出的模块 DocType: DocType,Fields,字段 -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,您无权打印此文档 +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,您无权打印此文档 apps/frappe/frappe/public/js/frappe/model/model.js,Parent,亲 apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.",您的会话已过期,请再次登录以继续。 DocType: Assignment Rule,Priority,优先 @@ -368,10 +373,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,重置OTP密钥 DocType: DocType,UPPER CASE,大写 apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,请设置电子邮件地址 DocType: Communication,Marked As Spam,标记为垃圾邮件 +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,要同步其Google通讯录的电子邮件地址。 apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,导入订阅者 apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,保存过滤器 DocType: Address,Preferred Shipping Address,首选送货地址 DocType: GCalendar Account,The name that will appear in Google Calendar,将出现在Google日历中的名称 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,单击{0}以生成刷新令牌。 DocType: Email Account,Disable SMTP server authentication,禁用SMTP服务器验证 DocType: Email Account,Total number of emails to sync in initial sync process ,初始同步过程中要同步的电子邮件总数 DocType: System Settings,Enable Password Policy,启用密码策略 @@ -388,6 +395,7 @@ DocType: Web Page,Insert Code,插入代码 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not In,不在 DocType: Auto Repeat,Start Date,开始日期 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,设置图表 +DocType: Website Theme,Theme JSON,主题JSON apps/frappe/frappe/www/list.py,My Account,我的帐户 DocType: DocType,Is Published Field,已发布的字段 DocType: DocField,Set non-standard precision for a Float or Currency field,为Float或Currency字段设置非标准精度 @@ -398,7 +406,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip:添加Reference: {{ reference_doctype }} {{ reference_name }}以发送文档参考 DocType: LDAP Settings,LDAP First Name Field,LDAP名字字段 apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,默认发送和收件箱 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,设置>自定义表单 apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",要进行更新,您只能更新选择列。 apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',“检查”类型字段的默认值必须为“0”或“1” apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,与之共享此文档 @@ -442,16 +449,19 @@ apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the s DocType: Domain Settings,Domains HTML,域HTML DocType: Blog Settings,Blog Settings,博客设置 apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores",DocType的名称应以字母开头,它只能由字母,数字,空格和下划线组成 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,设置>用户权限 DocType: Communication,Integrations can use this field to set email delivery status,集成可以使用此字段设置电子邮件传递状态 apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,条带支付网关设置 DocType: Print Settings,Fonts,字体 DocType: Notification,Channel,渠道 DocType: Communication,Opened,开业 DocType: Workflow Transition,Conditions,条件 +apps/frappe/frappe/config/website.py,A user who posts blogs.,发布博客的用户。 apps/frappe/frappe/www/login.html,Don't have an account? Sign up,没有帐户?注册 apps/frappe/frappe/utils/file_manager.py,Added {0},添加了{0} DocType: Newsletter,Create and Send Newsletters,创建和发送简报 DocType: Website Settings,Footer Items,页脚项目 +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,请从设置>电子邮件>电子邮件帐户设置默认电子邮件帐户 DocType: Website Slideshow Item,Website Slideshow Item,网站幻灯片项目 apps/frappe/frappe/config/integrations.py,Register OAuth Client App,注册OAuth客户端应用程序 DocType: Error Snapshot,Frames,框架 @@ -492,7 +502,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 i higher levels for field level permissions.",级别0用于文档级别权限,\ n级别用于字段级别权限。 DocType: Address,City/Town,市/县 DocType: Email Account,GMail,GMail的 -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?",这将重置您当前的主题,您确定要继续吗? apps/frappe/frappe/public/js/frappe/form/save.js,Mandatory fields required in {0},{0}中必填字段 apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},连接到电子邮件帐户{0}时出错 apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,创建重复出现时出错 @@ -528,7 +537,7 @@ DocType: Event,Event Category,活动类别 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,基于的列 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,编辑标题 DocType: Communication,Received,收到 -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,您无权访问此页面。 +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,您无权访问此页面。 DocType: User Social Login,User Social Login,用户社交登录 apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,将Python文件写入保存它的同一文件夹中,并返回列和结果。 DocType: Contact,Purchase Manager,采购经理 @@ -581,7 +590,6 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,配 apps/frappe/frappe/utils/data.py,Operator must be one of {0},运算符必须是{0}之一 apps/frappe/frappe/core/doctype/doctype/doctype.py,If Owner,如果所有者 DocType: Data Migration Run,Trigger Name,触发器名称 -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,为您的博客撰写标题和介绍。 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,删除字段 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,全部收缩 apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,背景颜色 @@ -631,6 +639,7 @@ DocType: Dashboard Chart,Bar,酒吧 DocType: SMS Settings,Enter url parameter for message,输入消息的url参数 apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,新的自定义打印格式 apps/frappe/frappe/desk/form/save.py,{0} {1} already exists,{0} {1}已存在 +DocType: Workflow Document State,Is Optional State,是可选国家 DocType: Address,Purchase User,购买用户 DocType: Data Migration Run,Insert,插入 DocType: Web Form,Route to Success Link,通往成功链接的路线 @@ -638,13 +647,14 @@ apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,用户 DocType: File,Is Home Folder,是家庭文件夹 apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,类型: DocType: Post,Is Pinned,固定 -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},没有“{0}”{1}的权限 +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},没有“{0}”{1}的权限 DocType: Patch Log,Patch Log,补丁日志 DocType: Print Format,Print Format Builder,打印格式生成器 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地址登录。这也可以仅为用户页面中的特定用户设置 apps/frappe/frappe/utils/data.py,only.,只要。 apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,条件“{0}”无效 DocType: Auto Email Report,Day of Week,星期几 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,在Google设置中启用Google API。 DocType: DocField,Text Editor,文本编辑器 apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Cut,切 apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,搜索或键入命令 @@ -652,6 +662,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,数据库备份数不能少于1 DocType: Workflow State,ban-circle,禁令圈 DocType: Data Export,Excel,高强 +DocType: Web Page,"Header, Breadcrumbs and Meta Tags",标题,面包屑和元标记 apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,支持未指定的电子邮件地址 DocType: Comment,Published,发布时间 DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.",注意:为获得最佳效果,图像必须大小相同,宽度必须大于高度。 @@ -742,6 +753,7 @@ DocType: System Settings,Scheduler Last Event,调度程序上次事件 apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,所有文件份额的报告 DocType: Website Sidebar Item,Website Sidebar Item,网站边栏项目 apps/frappe/frappe/desk/doctype/todo/todo_list.js,To Do,去做 +DocType: Google Settings,Google Settings,Google设置 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency",选择您的国家/地区,时区和货币 DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)",在此输入静态url参数(例如sender = ERPNext,username = ERPNext,password = 1234等) apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,没有电子邮件帐户 @@ -795,6 +807,7 @@ apps/frappe/frappe/model/base_document.py,"{0} {1} cannot be ""{2}"". It should DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token ,Setup Wizard,安装向导 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Toggle Chart,切换图表 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Syncing,同步 DocType: Data Migration Run,Current Mapping Action,当前的映射行动 DocType: Email Account,Initial Sync Count,初始同步计数 apps/frappe/frappe/config/website.py,Settings for Contact Us Page.,联系我们页面的设置。 @@ -834,6 +847,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,打印格式类型 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,没有为此条件设置的权限。 apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,展开全部 +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,找不到默认地址模板。请从“设置”>“打印和品牌”>“地址模板”中创建一个新的。 DocType: Tag Doc Category,Tag Doc Category,标记文档类别 DocType: Data Import,Generated File,生成的文件 apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,笔记 @@ -841,7 +855,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as D apps/frappe/frappe/core/doctype/doctype/doctype.py,Timeline field must be a Link or Dynamic Link,时间轴字段必须是链接或动态链接 DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,将从此传出服务器发送通知和批量邮件。 apps/frappe/frappe/utils/password_strength.py,This is a top-100 common password.,这是前100个常用密码。 -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Submit {0}?,永久提交{0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Submit {0}?,永久提交{0}? apps/frappe/frappe/model/rename_doc.py,"{0} {1} does not exist, select a new target to merge",{0} {1}不存在,请选择要合并的新目标 DocType: Energy Point Rule,Multiplier Field,乘数场 DocType: Workflow,Workflow State Field,工作流状态字段 @@ -881,6 +895,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0}赞赏您使用{2}积分在{1}上的工作 DocType: Auto Email Report,Zero means send records updated at anytime,零表示发送记录随时更新 apps/frappe/frappe/model/document.py,Value cannot be changed for {0},{0}无法更改值 +apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API设置。 DocType: System Settings,Force User to Reset Password,强制用户重置密码 apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,报表生成器报表由报表生成器直接管理。没事做。 apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,编辑过滤器 @@ -934,7 +949,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,为 DocType: S3 Backup Settings,eu-north-1,欧盟 - 北 - 1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}",{0}:只允许一个规则具有相同的角色,级别和{1} apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,您不得更新此Web表单文档 -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,达到此记录的最大附件限制。 +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,达到此记录的最大附件限制。 apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,请确保参考通信文档没有循环链接。 DocType: DocField,Allow in Quick Entry,允许快速输入 DocType: Error Snapshot,Locals,当地人 @@ -966,7 +981,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,例外类型 apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},无法删除或取消,因为{0} {1}与{2} {3} {4}相关联 apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTP密钥只能由管理员重置。 -DocType: Web Form Field,Page Break,分页符 DocType: Website Script,Website Script,网站脚本 DocType: Integration Request,Subscription Notification,订阅通知 DocType: DocType,Quick Entry,快速入门 @@ -983,6 +997,7 @@ DocType: Notification,Set Property After Alert,警报后设置属性 apps/frappe/frappe/__init__.py,Thank you,谢谢 apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks用于内部集成 apps/frappe/frappe/config/settings.py,Import Data,导入数据 +DocType: Translation,Contributed Translation Doctype Name,贡献翻译文档类型名称 DocType: Social Login Key,Office 365,Office 365 apps/frappe/frappe/desk/report/todo/todo.py,ID,ID DocType: Review Level,Review Level,审查级别 @@ -1001,7 +1016,6 @@ apps/frappe/frappe/utils/password.py,Password cannot be more than 100 characters apps/frappe/frappe/social/doctype/energy_point_settings/energy_point_settings.js,Successfully Done,成功完成 apps/frappe/frappe/core/page/dashboard/dashboard.js,{0} List,{0}列表 apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Appreciate,欣赏 -apps/frappe/frappe/public/js/frappe/form/toolbar.js,New {0} (Ctrl+B),新{0}(Ctrl + B) DocType: Contact,Is Primary Contact,是主要联系人 DocType: Print Format,Raw Commands,原始命令 apps/frappe/frappe/config/settings.py,Stylesheets for Print Formats,打印格式样式表 @@ -1042,6 +1056,7 @@ apps/frappe/frappe/config/core.py,Errors in Background Events,后台事件中的 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Find {0} in {1},在{1}中查找{0} DocType: Email Account,Use SSL,使用SSL DocType: DocField,In Standard Filter,在标准过滤器中 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,没有Google联系人可供同步。 DocType: Data Migration Run,Total Pages,总页数 apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}:字段“{1}”无法设置为“唯一”,因为它具有非唯一值 DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.",如果启用,则每次登录时都会通知用户。如果未启用,则只会通知用户一次。 @@ -1062,7 +1077,7 @@ DocType: Assignment Rule,Automation,自动化 apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,解压缩文件... apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Search for '{0}',搜索“{0}” apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,有些不对劲 -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,请在附加前保存。 +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,请在附加前保存。 DocType: Version,Table HTML,表格HTML apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,毂 DocType: Page,Standard,标准 @@ -1140,12 +1155,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,没有结 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,已删除{0}条记录 apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,生成Dropbox访问令牌时出错了。请查看错误日志以获取更多详细信息 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,后裔 -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,找不到默认地址模板。请从“设置”>“打印和品牌”>“地址模板”中创建一个新的。 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,已配置Google通讯录。 apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,隐藏细节 apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,字体样式 apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,您的订阅将在{0}到期。 apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},从电子邮件帐户{0}接收电子邮件时身份验证失败。来自服务器的消息:{1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),基于上周表现的统计数据(从{0}到{1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,仅当启用了“传入”时,才能激活自动链接。 DocType: Website Settings,Title Prefix,标题前缀 apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,您可以使用的身份验证应用是: DocType: Bulk Update,Max 500 records at a time,一次最多500条记录 @@ -1178,7 +1194,7 @@ DocType: Auto Email Report,Report Filters,报告过滤器 apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,选择列 DocType: Event,Participants,参与者 DocType: Auto Repeat,Amended From,修改自 -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,您的资料已提交 +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,您的资料已提交 DocType: Help Category,Help Category,帮助类别 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1个月 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,选择要编辑的现有格式或启动新格式。 @@ -1225,7 +1241,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Amend DocType: Milestone Tracker,Field to Track,追踪领域 DocType: User,Generate Keys,生成密钥 DocType: Comment,Unshared,非共享 -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Saved,保存 +DocType: Translation,Saved,保存 DocType: OAuth Client,OAuth Client,OAuth客户端 DocType: System Settings,Disable Standard Email Footer,禁用标准电子邮件页脚 apps/frappe/frappe/www/printview.py,Print Format {0} is disabled,打印格式{0}已禁用 @@ -1256,6 +1272,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js,Last Updated On,最后更新 DocType: Data Import,Action,行动 apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_settings.py,Client key is required,客户端密钥是必需的 DocType: Chat Profile,Notifications,通知 +DocType: Translation,Contributed,供稿 DocType: System Settings,mm/dd/yyyy,毫米/日/年 DocType: Report,Custom Report,自定义报告 DocType: Workflow State,info-sign,信息-SIGN @@ -1272,6 +1289,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,联系 DocType: LDAP Settings,LDAP Username Field,LDAP用户名字段 apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",{0}字段不能在{1}中设置为唯一,因为存在非唯一的现有值 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,设置>自定义表单 DocType: User,Social Logins,社交登录 DocType: Workflow State,Trash,垃圾 DocType: Stripe Settings,Secret Key,密钥 @@ -1329,6 +1347,7 @@ DocType: DocType,Title Field,标题字段 apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,无法连接到外发电子邮件服务器 DocType: File,File URL,文件URL DocType: Help Article,Likes,喜欢 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google联系人集成已停用。 apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,您需要登录并具有System Manager Role才能访问备份。 apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,第一级 DocType: Blogger,Short Name,简称 @@ -1346,13 +1365,13 @@ apps/frappe/frappe/templates/pages/integrations/stripe_checkout.html,Your paymen apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Import Zip,导入Zip DocType: Contact,Gender,性别 DocType: Workflow State,thumbs-down,不看好 -DocType: Web Page,SEO,SEO apps/frappe/frappe/utils/background_jobs.py,Queue should be one of {0},队列应该是{0}之一 apps/frappe/frappe/email/doctype/notification/notification.py,Cannot set Notification on Document Type {0},无法在文档类型{0}上设置通知 apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User as there must be atleast one System Manager,将System Manager添加到此用户,因为必须至少有一个System Manager apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,欢迎发送电子邮件 DocType: Transaction Log,Chaining Hash,链接哈希 DocType: Contact,Maintenance Manager,维护经理 +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",为了比较,使用> 5,<10或= 324。对于范围,请使用5:10(对于5和10之间的值)。 apps/frappe/frappe/utils/bot.py,show,节目 apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,分享网址 apps/frappe/frappe/core/doctype/data_import/importer.py,Unsupported File Format,不支持的文件格式 @@ -1374,7 +1393,7 @@ DocType: Communication,Notification,通知 DocType: Data Import,Show only errors,仅显示错误 DocType: Energy Point Log,Review,评论 apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,行已删除 -DocType: GSuite Settings,Google Credentials,Google凭据 +DocType: Google Settings,Google Credentials,Google凭据 apps/frappe/frappe/www/login.html,Or login with,或者登录 apps/frappe/frappe/model/document.py,Record does not exist,记录不存在 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,新报告名称 @@ -1399,6 +1418,7 @@ DocType: Desktop Icon,List,名单 DocType: Workflow State,th-large,TH-大 apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}:如果不提交,则无法设置分配提交 apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,没有链接到任何记录 +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","连接到QZ托盘应用程序时出错...

您需要安装并运行QZ Tray应用程序才能使用原始打印功能。

点击此处下载并安装QZ托盘
单击此处以了解有关原始打印的更多信息" DocType: Chat Message,Content,内容 DocType: Workflow Transition,Allow Self Approval,允许自我批准 apps/frappe/frappe/www/qrcode.py,Page has expired!,页面已过期! @@ -1415,6 +1435,7 @@ DocType: Workflow State,hand-right,手工权 DocType: Website Settings,Banner is above the Top Menu Bar.,横幅位于顶部菜单栏上方。 apps/frappe/frappe/www/update-password.html,Invalid Password,无效的密码 apps/frappe/frappe/utils/data.py,1 month ago,1个月前 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,允许Google通讯录访问 DocType: OAuth Client,App Client ID,应用客户端ID DocType: DocField,Currency,货币 DocType: Website Settings,Banner,旗帜 @@ -1426,7 +1447,7 @@ apps/frappe/frappe/utils/goal.py,Goal,目标 DocType: Print Style,CSS,CSS apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.",如果角色在级别0没有访问权限,则更高级别无意义。 DocType: ToDo,Reference Type,参考类型 -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!",允许DocType,DocType。小心! +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!",允许DocType,DocType。小心! DocType: Domain Settings,Domain Settings,域名设置 DocType: Auto Email Report,Dynamic Report Filters,动态报告过滤器 DocType: Energy Point Log,Appreciation,升值 @@ -1468,6 +1489,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Doc DocType: S3 Backup Settings,us-west-2,美西2 DocType: DocType,Is Single,单身 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,创建一个新格式 +DocType: Google Contacts,Authorize Google Contacts Access,授权Google通讯录访问权限 DocType: S3 Backup Settings,Endpoint URL,端点URL DocType: Social Login Key,Google,谷歌 DocType: Contact,Department,部门 @@ -1482,7 +1504,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,分配给 DocType: List Filter,List Filter,列表过滤器 DocType: Dashboard Chart Link,Chart,图表 apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,无法删除 -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,提交此文件以确认 +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,提交此文件以确认 apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0}已存在。选择其他名称 apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,您在此表单中有未保存的更改。请在继续之前保存。 apps/frappe/frappe/model/document.py,Action Failed,行动失败 @@ -1564,6 +1586,7 @@ DocType: DocField,Display,显示 apps/frappe/frappe/core/doctype/communication/communication.js,Reply All,全部回复 DocType: Calendar View,Subject Field,学科领域 apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},会话到期时间必须为{0}格式 +apps/frappe/frappe/model/workflow.py,Applying: {0},申请:{0} DocType: Workflow State,zoom-in,放大 apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,无法连接服务器 apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},日期{0}必须采用格式:{1} @@ -1575,8 +1598,11 @@ apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers apps/frappe/frappe/core/doctype/file/test_file.py,Test_Folder,Test_Folder DocType: Workflow State,Icon will appear on the button,图标将出现在按钮上 DocType: Role Permission for Page and Report,Set Role For,设置角色 +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,只能为一个电子邮件帐户激活自动链接。 apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,没有分配电子邮件帐户 +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,电子邮件帐户未设置。请从设置>电子邮件>电子邮件帐户创建新的电子邮件帐户 apps/frappe/frappe/patches/v6_19/comment_feed_communication.py,Assignment,分配 +DocType: Google Contacts,Last Sync On,上次同步开启 apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},由{0}通过自动规则{1}获得 apps/frappe/frappe/config/website.py,Portal,门户 apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,谢谢您的来信 @@ -1597,7 +1623,6 @@ DocType: GSuite Settings,GSuite Settings,GSuite设置 DocType: Integration Request,Remote,远程 DocType: File,Thumbnail URL,缩略图网址 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,下载报告 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,设置>用户 apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},导出为{0}的自定义项:
{1} DocType: GCalendar Account,Calendar Name,日历名称 apps/frappe/frappe/templates/emails/new_user.html,Your login id is,您的登录ID是 @@ -1647,6 +1672,7 @@ apps/frappe/frappe/custom/doctype/custom_script/custom_script.js,Go to {0},转 apps/frappe/frappe/core/doctype/doctype/doctype.py,Image field must be a valid fieldname,图像字段必须是有效的字段名称 apps/frappe/frappe/www/third_party_apps.py,You need to be logged in to access this page,您需要登录才能访问此页面 DocType: Assignment Rule,Example: {{ subject }},示例:{{subject}} +apps/frappe/frappe/core/doctype/doctype/doctype.py,Fieldname {0} is restricted,字段名{0}受限制 apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,You cannot unset 'Read Only' for field {0},您无法为字段{0}取消设置“只读” DocType: Social Login Key,Enable Social Login,启用社交登录 DocType: Workflow,Rules defining transition of state in the workflow.,定义工作流中状态转换的规则。 @@ -1667,10 +1693,10 @@ DocType: Website Settings,Route Redirects,路线重定向 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,电子邮件收件箱 apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},将{0}恢复为{1} DocType: Assignment Rule,Automatically Assign Documents to Users,自动为用户分配文档 +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,打开Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,常见查询的电子邮件模板。 DocType: Letter Head,Letter Head Based On,基于的信头 apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,请关闭此窗口 -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Payment Complete,付款完成 DocType: Contact,Designation,指定 DocType: Webhook,Webhook,网络挂接 DocType: Website Route Meta,Meta Tags,元标签 @@ -1709,6 +1735,7 @@ DocType: System Settings,Choose authentication method to be used by all users, DocType: Error Snapshot,Parent Error Snapshot,父错误快照 DocType: GCalendar Account,GCalendar Account,GCalendar帐户 DocType: Language,Language Name,语言名称 +DocType: Workflow Document State,Workflow Action is not created for optional states,不为可选状态创建工作流操作 DocType: Customize Form,Customize Form,自定义表单 DocType: DocType,Image Field,图像场 apps/frappe/frappe/public/js/frappe/form/link_selector.js,Added {0} ({1}),添加了{0}({1}) @@ -1750,6 +1777,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,如果用户是所有者,则应用此规则 DocType: About Us Settings,Org History Heading,组织历史标题 apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,服务器错误 +DocType: Contact,Google Contacts Description,Google通讯录说明 apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,无法重命名标准角色 DocType: Review Level,Review Points,评论点 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,缺少参数看板板名称 @@ -1767,7 +1795,6 @@ apps/frappe/frappe/data_migration/doctype/data_migration_run/data_migration_run. apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,不在开发者模式下!在site_config.json中设置或制作“自定义”DocType。 apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,获得{0}分 DocType: Web Form,Success Message,成功消息 -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",为了比较,使用> 5,<10或= 324。对于范围,请使用5:10(对于5和10之间的值)。 DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",列表页面的描述,纯文本,只有几行。 (最多140个字符) apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,显示权限 DocType: DocType,Restrict To Domain,限制到域 @@ -1789,6 +1816,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Ancestors Of,不是 apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,设定数量 DocType: Auto Repeat,End Date,结束日期 DocType: Workflow Transition,Next State,下一个州 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Google通讯录同步。 DocType: System Settings,Is First Startup,是第一次启动 apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},更新为{0} apps/frappe/frappe/public/js/frappe/form/grid_row.js,Move To,搬去 @@ -1838,6 +1866,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0}日历 apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,数据导入模板 DocType: Workflow State,hand-left,手左 +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,选择多个列表项 apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,备份大小: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},与{0}相关联 DocType: Braintree Settings,Private Key,私钥 @@ -1880,13 +1909,13 @@ apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient DocType: User,Interest,利益 DocType: Bulk Update,Limit,限制 DocType: Print Settings,Print taxes with zero amount,打印零金额税 -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,电子邮件帐户未设置。请从设置>电子邮件>电子邮件帐户创建新的电子邮件帐户 DocType: Workflow State,Book,书 DocType: S3 Backup Settings,Access Key ID,访问密钥ID DocType: Chat Message,URLs,网址 apps/frappe/frappe/utils/password_strength.py,Names and surnames by themselves are easy to guess.,姓名和姓氏本身很容易猜到。 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},报告{0} DocType: About Us Settings,Team Members Heading,团队成员标题 +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,选择列表项 apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},文档{0}已设置为{2}状态{1} DocType: Address Template,Address Template,地址模板 DocType: Workflow State,step-backward,一步向后 @@ -1910,6 +1939,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,导出自定义权限 apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,无:工作流程结束 DocType: Version,Version,版 +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,打开列表项 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6个月 DocType: Chat Message,Group,组 apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},文件网址存在一些问题:{0} @@ -1965,6 +1995,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 year,1年 apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0}在{1}上恢复了积分 DocType: Workflow State,arrow-down,箭头向下 DocType: Data Import,Ignore encoding errors,忽略编码错误 +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,景观 DocType: Letter Head,Letter Head Name,信头名 DocType: Web Form,Client Script,客户端脚本 DocType: Assignment Rule,Higher priority rule will be applied first,首先应用更高优先级的规则 @@ -2009,6 +2040,7 @@ DocType: Kanban Board Column,Green,绿色 apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,新记录只需要必填字段。如果您愿意,可以删除非必填列。 apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.",{0}必须以字母开头和结尾,并且只能包含字母,连字符或下划线。 +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,触发主要操作 apps/frappe/frappe/core/doctype/user/user.js,Create User Email,创建用户电邮 apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,排序字段{0}必须是有效的字段名 DocType: Auto Email Report,Filter Meta,过滤元 @@ -2038,6 +2070,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migra DocType: DocType,Timeline Field,时间线字段 apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,载入中... DocType: Auto Email Report,Half Yearly,每半年 +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,我的简历 apps/frappe/frappe/email/doctype/notification/notification.js,Last Modified Date,上次修改日期 DocType: Contact,First Name,名字 DocType: Post,Comments,评论 @@ -2060,6 +2093,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which w DocType: File,Content Hash,内容哈希 apps/frappe/frappe/website/doctype/blog_post/blog_post.py,Posts by {0},帖子{0} apps/frappe/frappe/desk/doctype/todo/todo.py,{0} assigned {1}: {2},{0}已分配{1}:{2} +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,没有新的Google通讯录同步。 DocType: Workflow State,globe,地球 apps/frappe/frappe/public/js/frappe/ui/group_by/group_by.js,Average of {0},平均值{0} apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,清除错误日志 @@ -2086,6 +2120,8 @@ DocType: Workflow State,Inverse,逆 DocType: Activity Log,Closed,关闭 DocType: Report,Query,询问 DocType: Notification,Days After,几天之后 +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,页面快捷方式 +apps/frappe/frappe/public/js/frappe/form/print.js,Portrait,肖像 apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,请求超时 DocType: System Settings,Email Footer Address,电子邮件页脚地址 apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,能量点更新 @@ -2113,6 +2149,7 @@ For Select, enter list of Options, each on a new line.",对于Links,输入DocT apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1分钟前 apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,没有活动会话 apps/frappe/frappe/model/base_document.py,Row,行 +DocType: Contact,Middle Name,中间名字 apps/frappe/frappe/public/js/frappe/request.js,Please try again,请再试一次 DocType: Dashboard Chart,Chart Options,图表选项 DocType: Data Migration Run,Push Failed,推送失败 @@ -2141,6 +2178,7 @@ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobi DocType: Workflow State,resize-small,调整小 DocType: Comment,Relinked,重新链接 DocType: Role Permission for Page and Report,Roles HTML,角色HTML +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Go,走 apps/frappe/frappe/public/js/frappe/form/workflow.js,Workflow will start after saving.,保存后将开始工作流程。 DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.",如果您的数据是HTML格式,请复制使用标记粘贴确切的HTML代码。 apps/frappe/frappe/utils/password_strength.py,Dates are often easy to guess.,日期通常很容易猜到。 @@ -2169,7 +2207,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,桌面图标 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,取消了这份文件 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,日期范围 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,设置>用户权限 apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0}赞赏{1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,价值观改变了 apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,通知错误 @@ -2234,6 +2271,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,批量删除 DocType: DocShare,Document Name,文件名称 apps/frappe/frappe/config/customization.py,Add your own translations,添加您自己的翻译 +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,向下导航列表 DocType: S3 Backup Settings,eu-central-1,EU-中央-1 DocType: Auto Repeat,Yearly,每年 apps/frappe/frappe/public/js/frappe/model/model.js,Rename,改名 @@ -2284,6 +2322,7 @@ DocType: Workflow State,plane,平面 apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,嵌套设置错误。请联系管理员。 apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,显示报告 DocType: Auto Repeat,Auto Repeat Schedule,自动重复计划 +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,查看参考 DocType: Address,Office,办公室 DocType: LDAP Settings,StartTLS,启动TLS apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,{0} days ago,{0}天前 @@ -2317,7 +2356,7 @@ apps/frappe/frappe/public/js/frappe/ui/field_group.js,Missing Values Required, apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,我的设置 apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,组名不能为空。 DocType: Workflow State,road,路 -DocType: Website Route Redirect,Source,资源 +DocType: Contact,Source,资源 apps/frappe/frappe/www/third_party_apps.html,Active Sessions,活跃期 apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,表格中只能有一个折叠 apps/frappe/frappe/public/js/frappe/chat.js,New Chat,新聊天 @@ -2339,6 +2378,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,请输入授权URL DocType: Email Account,Send Notification to,发送通知给 apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox备份设置 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,在令牌生成期间出了点问题。单击{0}以生成新的。 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,删除所有自定义项? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,只有管理员才能编辑 DocType: Auto Repeat,Reference Document,参考文件 @@ -2363,6 +2403,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,可以从用户页面为用户设置角色。 DocType: Website Settings,Include Search in Top Bar,在顶栏中包含搜索 apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[紧急]为%s创建重复%s时出错 +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,全球捷径 DocType: Help Article,Author,作者 DocType: Webhook,on_cancel,on_cancel apps/frappe/frappe/client.py,No document found for given filters,找不到给定过滤器的文档 @@ -2398,10 +2439,11 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new recor apps/frappe/frappe/model/base_document.py,"{0}, Row {1}",{0},行{1} apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.",如果要上传新记录,“命名系列”将成为必填项(如果存在)。 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,编辑属性 -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,打开{0}时无法打开实例 +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,打开{0}时无法打开实例 DocType: Activity Log,Timeline Name,时间线名称 DocType: Comment,Workflow,工作流程 apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,请在Frappe的社交登录密钥中设置基本URL +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,键盘快捷键 DocType: Portal Settings,Custom Menu Items,自定义菜单项 apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,{0}的长度应介于1和1000之间 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,连接丢失了。某些功能可能无法正常工作 @@ -2464,6 +2506,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html,Rows Added,行增加 DocType: DocType,Setup,建立 apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0}已成功创建 apps/frappe/frappe/www/update-password.html,New Password,新密码 +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,选择字段 apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,离开这个对话 DocType: About Us Settings,Team Members,团队成员 DocType: Blog Settings,Writers Introduction,作家介绍 @@ -2532,13 +2575,12 @@ DocType: Chat Room,Name,名称 DocType: Communication,Email Template,电邮模板 DocType: Energy Point Settings,Review Levels,评论级别 DocType: Print Format,Raw Printing,原始印刷 -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,当其实例打开时无法打开{0} +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,当其实例打开时无法打开{0} DocType: DocType,"Make ""name"" searchable in Global Search",在全局搜索中搜索“名称” DocType: Data Migration Mapping,Data Migration Mapping,数据迁移映射 DocType: Data Import,Partially Successful,部分成功 DocType: Communication,Error,错误 apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},无法在第{2}行中将字段类型从{0}更改为{1} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","连接到QZ托盘应用程序时出错...

您需要安装并运行QZ Tray应用程序才能使用原始打印功能。

点击此处下载并安装QZ托盘
单击此处以了解有关原始打印的更多信息" apps/frappe/frappe/public/js/frappe/ui/capture.js,Take Photo,拍照 apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,避免与你相关的岁月。 DocType: Web Form,Allow Incomplete Forms,允许不完整的表单 @@ -2634,7 +2676,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",选择target =“_ blank”以在新页面中打开。 DocType: Portal Settings,Portal Menu,门户菜单 DocType: Website Settings,Landing Page,登陆页面 -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,请注册或登录开始 DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",联系选项,如“销售查询,支持查询”等,每行在新行上或用逗号分隔。 apps/frappe/frappe/twofactor.py,Verfication Code,验证码 apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0}已取消订阅 @@ -2720,6 +2761,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,数据迁移计 DocType: Address,Sales User,销售用户 apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)",更改字段属性(隐藏,只读,权限等) DocType: Property Setter,Field Name,字段名称 +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,顾客 DocType: Print Settings,Font Size,字体大小 DocType: User,Last Password Reset Date,上次密码重置日期 DocType: System Settings,Date and Number Format,日期和数字格式 @@ -2785,6 +2827,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,组节点 apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,与现有合并 DocType: Blog Post,Blog Intro,博客简介 apps/frappe/frappe/core/doctype/comment/comment.py,New Mention,新提及 +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,跳到现场 DocType: Prepared Report,Report Name,报告名称 apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,请刷新以获取最新文档。 apps/frappe/frappe/core/doctype/communication/communication.js,Close,关 @@ -2794,10 +2837,13 @@ apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web DocType: Communication,Event,事件 DocType: Social Login Key,Access Token URL,访问令牌URL apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,请在您的站点配置中设置Dropbox访问密钥 +DocType: Google Contacts,Google Contacts,Google通讯录 DocType: User,Reset Password Key,重置密码密钥 apps/frappe/frappe/social/doctype/energy_point_rule/energy_point_rule.js,Modified By,修改者 DocType: User,Bio,生物 apps/frappe/frappe/limits.py,"To renew, {0}.",要续订,{0}。 +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Saved Successfully,保存成功 +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,发送电子邮件至{0}以将其链接到此处。 DocType: File,Folder,夹 DocType: DocField,Perm Level,烫发水平 DocType: Print Settings,Page Settings,页面设置 @@ -2827,6 +2873,7 @@ DocType: Workflow State,remove-sign,除去-SIGN DocType: Dashboard Chart,Full,充分 DocType: DocType,User Cannot Create,用户无法创建 apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,你获得了{0}分 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,设置>用户 DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.",如果设置此项,则此项将显示在所选父项下的下拉列表中。 apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,没有电子邮件 apps/frappe/frappe/website/doctype/web_form/web_form.py,Following fields are missing:,以下字段缺失: @@ -2840,13 +2887,14 @@ apps/frappe/frappe/desk/doctype/calendar_view/calendar_view.js,Show Calendar,显 DocType: Web Form,Web Form Fields,Web表单字段 DocType: Desktop Icon,_doctype,_doctype apps/frappe/frappe/config/website.py,User editable form on Website.,用户可编辑的网站形式。 -apps/frappe/frappe/public/js/frappe/form/form.js,Permanently Cancel {0}?,永久取消{0}? +apps/frappe/frappe/public/js/legacy/form.js,Permanently Cancel {0}?,永久取消{0}? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Option 3,选项3 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,汇总 apps/frappe/frappe/utils/password_strength.py,This is a very common password.,这是一个非常常见的密码。 DocType: Personal Data Deletion Request,Pending Approval,待批准 apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,无法正确分配文档 apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},不允许{0}:{1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,没有要显示的值 DocType: Personal Data Download Request,Personal Data Download Request,个人资料下载请求 apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0}与{1}共享此文档 apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},选择{0} @@ -2862,7 +2910,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},此电子邮件已发送至{0}并已复制到{1} apps/frappe/frappe/email/smtp.py,Invalid login or password,无效的登录名或密码 DocType: Social Login Key,Social Login Key,社交登录密钥 -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,请从设置>电子邮件>电子邮件帐户设置默认电子邮件帐户 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,已保存过滤器 DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",该货币应如何格式化?如果未设置,将使用系统默认值 apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}:{1}设置为州{2} @@ -2988,6 +3035,7 @@ DocType: User,Location,地点 apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,没有数据 DocType: Website Meta Tag,Website Meta Tag,网站元标记 DocType: Workflow State,film,电影 +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,复制到剪贴板。 apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0}找不到设置 apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,标签是强制性的 DocType: Webhook,Webhook Headers,Webhook Headers @@ -3196,7 +3244,7 @@ DocType: Address,Address Line 1,地址第一行 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,对于文档类型 apps/frappe/frappe/model/base_document.py,Data missing in table,表中缺少数据 apps/frappe/frappe/utils/bot.py,Could not identify {0},无法识别{0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,加载后,此表单已被修改 +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,加载后,此表单已被修改 apps/frappe/frappe/www/login.html,Back to Login,回到登入 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,没有设置 DocType: Data Migration Mapping,Pull,拉 @@ -3264,6 +3312,7 @@ DocType: Data Migration Mapping Detail,Child Table Mapping,子表映射 apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,电子邮件帐户设置请输入您的密码: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,一个请求中写入太多。请发送较小的请求 DocType: Social Login Key,Salesforce,销售队伍 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},导入{1}的{0} DocType: User,Tile,瓦 apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0}会议室必须至少有一个用户。 DocType: Email Rule,Is Spam,是垃圾邮件 @@ -3301,7 +3350,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,文件夹关闭 DocType: Data Migration Run,Pull Update,拉动更新 apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},将{0}合并到{1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

找不到'结果'

DocType: SMS Settings,Enter url parameter for receiver nos,输入接收器号的url参数 apps/frappe/frappe/utils/jinja.py,Syntax error in template,模板中的语法错误 apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,请在“报表过滤器”表中设置过滤器值。 @@ -3314,6 +3362,7 @@ apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.",对不起, DocType: System Settings,In Days,在天 DocType: Report,Add Total Row,添加总排 apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,会话开始失败 +DocType: Translation,Verified,验证 DocType: Print Format,Custom HTML Help,自定义HTML帮助 DocType: Address,Preferred Billing Address,首选帐单地址 apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,分配给 @@ -3328,7 +3377,6 @@ DocType: Help Article,Intermediate,中间 DocType: Module Def,Module Name,模块名称 DocType: OAuth Authorization Code,Expiration time,到期时间 apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.",设置默认格式,页面大小,打印样式等。 -apps/frappe/frappe/desk/like.py,You cannot like something that you created,你不能喜欢你创造的东西 DocType: System Settings,Session Expiry,会话到期 DocType: DocType,Auto Name,自动名称 apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,选择附件 @@ -3356,6 +3404,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,系统页面 DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,注意:默认情况下,会发送失败备份的电子邮件。 DocType: Custom DocPerm,Custom DocPerm,自定义DocPerm +DocType: Translation,PR sent,PR发送 DocType: Tag Doc Category,Doctype to Assign Tags,分配标签的Doctype DocType: Address,Warehouse,仓库 apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Dropbox设置 @@ -3423,7 +3472,6 @@ apps/frappe/frappe/core/doctype/report/report.js,[Label]:[Field Type]/[Options]: apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Ctrl+Enter to add comment,按Ctrl + Enter添加评论 apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Field {0} is not selectable.,字段{0}不可选。 DocType: User,Birth Date,生日 -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,With Group Indentation,使用Group Indentation DocType: List View Setting,Disable Count,禁用计数 DocType: Contact Us Settings,Email ID,电子邮件ID apps/frappe/frappe/utils/password.py,Incorrect User or Password,用户或密码不正确 @@ -3458,6 +3506,7 @@ DocType: Website Settings,<head> HTML,<head> HTML DocType: Custom DocPerm,This role update User Permissions for a user,此角色更新用户的用户权限 DocType: Website Theme,Theme,主题 DocType: Web Form,Show Sidebar,显示补充工具栏 +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google通讯录集成。 apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,默认收件箱 apps/frappe/frappe/www/login.py,Invalid Login Token,登录令牌无效 apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,首先设置名称并保存记录。 @@ -3485,7 +3534,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Add / Up apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,请更正 DocType: Top Bar Item,Top Bar Item,顶栏项目 ,Role Permissions Manager,角色权限管理器 -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,有错误。请报告这个。 +apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,> {0} year(s) ago,> {0}年前 apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py,Female,女 DocType: System Settings,OTP Issuer Name,OTP发行人名称 apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,添加待办事项 @@ -3585,6 +3634,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings",语言 apps/frappe/frappe/model/document.py,none of,没有 DocType: Desktop Icon,Page,页 DocType: Workflow State,plus-sign,加号 +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,清除缓存和重新加载 apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,无法更新:错误/过期链接。 DocType: Kanban Board Column,Yellow,黄色 DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),网格中字段的列数(网格中的总列数应小于11) @@ -3599,6 +3649,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,New Kanban Board,新 DocType: Activity Log,Date,日期 DocType: Communication,Communication Type,通讯类型 apps/frappe/frappe/core/doctype/data_import/importer.py,Parent Table,父表 +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,导航列表 DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,显示完整错误并允许向开发人员报告问题 DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -3620,7 +3671,6 @@ DocType: Notification Recipient,Email By Role,按角色发送电子邮 apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,请升级以添加超过{0}个订阅者 apps/frappe/frappe/email/queue.py,This email was sent to {0},此电子邮件已发送至{0} DocType: User,Represents a User in the system.,表示系统中的用户。 -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},第{0}页 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,开始新的格式 apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,添加评论 apps/frappe/frappe/public/js/frappe/list/list_view.js,{0} of {1},{1}的{0} diff --git a/frappe/translations/zh_tw.csv b/frappe/translations/zh_tw.csv index f9ae8c6785..b4867f7b7d 100644 --- a/frappe/translations/zh_tw.csv +++ b/frappe/translations/zh_tw.csv @@ -4,11 +4,13 @@ apps/frappe/frappe/model/naming.py,Name cannot contain special characters like { apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Enable Gradients,啟用漸變 DocType: DocType,Default Sort Order,默認排序順序 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Showing only Numeric fields from Report,僅顯示報告中的數字字段 +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Press Alt Key to trigger additional shortcuts in Menu and Sidebar,按Alt鍵可在菜單和側欄中觸發其他快捷方式 DocType: Workflow State,folder-open,文件夾打開 apps/frappe/frappe/utils/csvutils.py,Unable to open attached file. Did you export it as CSV?,無法打開附件。你把它導出為CSV嗎? DocType: DocField,No Copy,沒有副本 DocType: Custom Field,Default Value,默認值 apps/frappe/frappe/email/doctype/email_account/email_account.py,Append To is mandatory for incoming mails,傳入郵件是強制性的 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Sync Contacts,通訊錄同步 DocType: Data Migration Mapping Detail,Data Migration Mapping Detail,數據遷移映射細節 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Unfollow,取消關注 apps/frappe/frappe/public/js/frappe/form/print.js,"PDF printing via ""Raw Print"" is not yet supported. Please remove the printer mapping in Printer Settings and try again.",尚不支持通過“原始打印”進行PDF打印。請在“打印機設置”中刪除打印機映射,然後重試。 @@ -58,8 +60,10 @@ apps/frappe/frappe/config/core.py,Background Email Queue,背景電子郵件隊 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,There was an error saving filters,保存過濾器時出錯 apps/frappe/frappe/public/js/frappe/ui/messages.js,Enter your password,輸入您的密碼 apps/frappe/frappe/core/doctype/file/file.py,Cannot delete Home and Attachments folders,無法刪除“主頁”和“附件”文件夾 +DocType: Email Account,Enable Automatic Linking in Documents,啟用文檔中的自動鏈接 DocType: Contact Us Settings,Settings for Contact Us Page,聯繫我們頁面的設置 DocType: Social Login Key,Social Login Provider,社交登錄提供商 +DocType: Email Account,"For more information, click here.","有關更多信息, 請單擊此處 。" DocType: Notification,Value Changed,價值改變了 DocType: Report,Report Type,報告類型 apps/frappe/frappe/contacts/doctype/address_template/address_template.py,Default Address Template cannot be deleted,無法刪除默認地址模板 @@ -176,6 +180,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.js,"You are selecti read as well as unread message from server. This may also cause the duplication\ of Communication (emails).",您正在選擇“同步選項”作為ALL,它將重新同步來自服務器的所有\ read和未讀消息。這也可能導致重複通信(電子郵件)。 apps/frappe/frappe/core/doctype/data_import/importer.py,Cannot change header content,無法更改標題內容 +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

找不到'結果'

apps/frappe/frappe/model/base_document.py,Not allowed to change {0} after submission,提交後不允許更改{0} apps/frappe/frappe/public/js/frappe/desk.js,"The application has been updated to a new version, please refresh this page",該應用程序已更新至新版本,請刷新此頁面 DocType: User,User Image,用戶圖片 @@ -267,6 +272,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js,Mark as {0},標 apps/frappe/frappe/public/js/frappe/chat.js,Discard,丟棄 DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,選擇大約150px的圖像,透明背景,以獲得最佳效果。 apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,Relapsed,復發 +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,{0} values selected,已選擇{0}個值 DocType: Blog Post,Email Sent,郵件已發送 DocType: Communication,Read by Recipient On,由收件人閱讀 DocType: User,Allow user to login only after this hour (0-24),允許用戶僅在此時間後登錄(0-24) @@ -284,7 +290,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html,Add Comment,添加 apps/frappe/frappe/email/queue.py,Emails are muted,電子郵件靜音 apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Amend without Cancel,{0}:無法取消時無法設置修改 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Module to Export,要導出的模塊 -apps/frappe/frappe/public/js/frappe/form/print.js,You are not allowed to print this document,您無權打印此文檔 +apps/frappe/frappe/public/js/legacy/form.js,You are not allowed to print this document,您無權打印此文檔 apps/frappe/frappe/public/js/frappe/model/model.js,Parent,親 apps/frappe/frappe/app.py,"Your session has expired, please login again to continue.",您的會話已過期,請再次登錄以繼續。 DocType: Assignment Rule,Priority,優先 @@ -308,10 +314,12 @@ apps/frappe/frappe/core/doctype/user/user.js,Reset OTP Secret,重置OTP密鑰 DocType: DocType,UPPER CASE,大寫 apps/frappe/frappe/contacts/doctype/contact/contact.py,Please set Email Address,請設置電子郵件地址 DocType: Communication,Marked As Spam,標記為垃圾郵件 +DocType: Google Contacts,Email Address whose Google Contacts are to be synced.,要同步其Google通訊錄的電子郵件地址。 apps/frappe/frappe/email/doctype/email_group/email_group.js,Import Subscribers,導入訂閱者 apps/frappe/frappe/public/js/frappe/list/list_filter.js,Save Filter,保存過濾器 DocType: Address,Preferred Shipping Address,首選送貨地址 DocType: GCalendar Account,The name that will appear in Google Calendar,將出現在Google日曆中的名稱 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Click on {0} to generate Refresh Token.,單擊{0}以生成刷新令牌。 DocType: Email Account,Disable SMTP server authentication,禁用SMTP服務器驗證 DocType: Email Account,Total number of emails to sync in initial sync process ,初始同步過程中要同步的電子郵件總數 DocType: System Settings,Enable Password Policy,啟用密碼策略 @@ -323,6 +331,7 @@ apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py DocType: Web Page,Insert Code,插入代碼 DocType: Auto Repeat,Start Date,開始日期 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Set Chart,設置圖表 +DocType: Website Theme,Theme JSON,主題JSON apps/frappe/frappe/www/list.py,My Account,我的帳戶 DocType: DocType,Is Published Field,已發布的字段 DocType: DocField,Set non-standard precision for a Float or Currency field,為Float或Currency字段設置非標準精度 @@ -332,7 +341,6 @@ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js,Please select Entity Type first,請先選擇實體類型 DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip:添加Reference: {{ reference_doctype }} {{ reference_name }}以發送文檔參考 apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Sending and Inbox,默認發送和收件箱 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,設置>自定義表單 apps/frappe/frappe/core/doctype/data_export/exporter.py,"For updating, you can update only selective columns.",要進行更新,您只能更新選擇列。 apps/frappe/frappe/core/doctype/doctype/doctype.py,Default for 'Check' type of field must be either '0' or '1',“檢查”類型字段的默認值必須為“0”或“1” apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html,Share this document with,與之共享此文檔 @@ -365,14 +373,17 @@ DocType: User,Last IP,最後的IP apps/frappe/frappe/email/queue.py,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,無法發送此電子郵件。您已超過本月{0}封電子郵件的發送限制。 DocType: Blog Settings,Blog Settings,博客設置 apps/frappe/frappe/core/doctype/doctype/doctype.py,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores",DocType的名稱應以字母開頭,它只能由字母,數字,空格和下劃線組成 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,設置>用戶權限 DocType: Communication,Integrations can use this field to set email delivery status,集成可以使用此字段設置電子郵件傳遞狀態 apps/frappe/frappe/config/integrations.py,Stripe payment gateway settings,條帶支付網關設置 DocType: Print Settings,Fonts,字體 DocType: Communication,Opened,開業 DocType: Workflow Transition,Conditions,條件 +apps/frappe/frappe/config/website.py,A user who posts blogs.,發布博客的用戶。 apps/frappe/frappe/www/login.html,Don't have an account? Sign up,沒有帳戶?註冊 DocType: Newsletter,Create and Send Newsletters,創建和發送簡報 DocType: Website Settings,Footer Items,頁腳項目 +apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,請從設置>電子郵件>電子郵件帳戶設置默認電子郵件帳戶 DocType: Website Slideshow Item,Website Slideshow Item,網站幻燈片項目 apps/frappe/frappe/config/integrations.py,Register OAuth Client App,註冊OAuth客戶端應用程序 DocType: List View Setting,List View Setting,列表視圖設置 @@ -403,7 +414,6 @@ DocType: Email Account,Enable Incoming,啟用傳入 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,"Level 0 is for document level permissions, \ higher levels for field level permissions.",級別0用於文檔級別權限,\ n級別用於字段級別權限。 DocType: Address,City/Town,市/縣 -apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"This will reset your current theme, are you sure you want to continue?",這將重置您當前的主題,您確定要繼續嗎? apps/frappe/frappe/email/doctype/email_account/email_account.py,Error while connecting to email account {0},連接到電子郵件帳戶{0}時出錯 apps/frappe/frappe/templates/emails/recurring_document_failed.html,An error occured while creating recurring,創建重複出現時出錯 apps/frappe/frappe/integrations/doctype/s3_backup_settings/s3_backup_settings.py,Invalid Access Key ID or Secret Access Key.,無效的訪問密鑰ID或秘密訪問密鑰。 @@ -430,7 +440,7 @@ DocType: Workflow State,minus,減去 DocType: Event,Event Category,活動類別 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Columns based on,基於的列 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html,Edit Heading,編輯標題 -apps/frappe/frappe/www/desk.py,You are not permitted to access this page.,您無權訪問此頁面。 +apps/frappe/frappe/public/js/frappe/web_form/webform_script.js,You are not permitted to access this page.,您無權訪問此頁面。 DocType: User Social Login,User Social Login,用戶社交登錄 apps/frappe/frappe/core/doctype/report/report.js,Write a Python file in the same folder where this is saved and return column and result.,將Python文件寫入保存它的同一文件夾中,並返回列和結果。 DocType: Contact,Purchase Manager,採購經理 @@ -472,7 +482,6 @@ DocType: User,Allowed In Mentions,允許提及 apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Configure Charts,配置圖表 apps/frappe/frappe/utils/data.py,Operator must be one of {0},運算符必須是{0}之一 DocType: Data Migration Run,Trigger Name,觸發器名稱 -apps/frappe/frappe/config/website.py,Write titles and introductions to your blog.,為您的博客撰寫標題和介紹。 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Remove Field,刪除字段 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Collapse All,全部收縮 apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Background Color,背景顏色 @@ -515,21 +524,24 @@ apps/frappe/frappe/public/js/integrations/razorpay.js,Show Log,顯示日誌 DocType: Workflow State,backward,向後 DocType: SMS Settings,Enter url parameter for message,輸入消息的url參數 apps/frappe/frappe/public/js/frappe/form/print.js,New Custom Print Format,新的自定義打印格式 +DocType: Workflow Document State,Is Optional State,是可選國家 DocType: Address,Purchase User,購買用戶 DocType: Web Form,Route to Success Link,通往成功鏈接的路線 apps/frappe/frappe/core/doctype/user/user.py,Username {0} already exists,用戶名{0}已存在 DocType: File,Is Home Folder,是家庭文件夾 apps/frappe/frappe/core/doctype/data_export/exporter.py,Type:,類型: -apps/frappe/frappe/public/js/frappe/form/form.js,No permission to '{0}' {1},沒有“{0}”{1}的權限 +apps/frappe/frappe/public/js/legacy/form.js,No permission to '{0}' {1},沒有“{0}”{1}的權限 DocType: Patch Log,Patch Log,補丁日誌 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地址登錄。這也可以僅為用戶頁面中的特定用戶設置 apps/frappe/frappe/email/doctype/notification/notification.py,The Condition '{0}' is invalid,條件“{0}”無效 DocType: Auto Email Report,Day of Week,星期幾 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Enable Google API in Google Settings.,在Google設置中啟用Google API。 DocType: DocField,Text Editor,文本編輯器 apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,Search or type a command,搜索或鍵入命令 apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html,Settings...,設置... apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Number of DB backups cannot be less than 1,數據庫備份數不能少於1 DocType: Data Export,Excel,高強 +DocType: Web Page,"Header, Breadcrumbs and Meta Tags",標題,麵包屑和元標記 apps/frappe/frappe/public/js/frappe/request.js,Support Email Address Not Specified,支持未指定的電子郵件地址 DocType: Comment,Published,發布時間 DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.",注意:為獲得最佳效果,圖像必須大小相同,寬度必須大於高度。 @@ -606,6 +618,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_help.html,Record DocType: System Settings,Scheduler Last Event,調度程序上次事件 apps/frappe/frappe/config/users_and_permissions.py,Report of all document shares,所有文件份額的報告 DocType: Website Sidebar Item,Website Sidebar Item,網站邊欄項目 +DocType: Google Settings,Google Settings,Google設置 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js,"Select your Country, Time Zone and Currency",選擇您的國家/地區,時區和貨幣 DocType: SMS Settings,"Enter static url parameters here (Eg. sender=ERPNext, username=ERPNext, password=1234 etc.)",在此輸入靜態url參數(例如sender = ERPNext,username = ERPNext,password = 1234等) apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Account,沒有電子郵件帳戶 @@ -679,6 +692,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.py,Invalid DocType: Print Format,Print Format Type,打印格式類型 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,No Permissions set for this criteria.,沒有為此條件設置的權限。 apps/frappe/frappe/public/js/frappe/views/treeview.js,Expand All,展開全部 +apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,找不到默認地址模板。請從“設置”>“打印和品牌”>“地址模板”中創建一個新的。 DocType: Tag Doc Category,Tag Doc Category,標記文檔類別 apps/frappe/frappe/desk/doctype/note/note_list.js,Notes,筆記 apps/frappe/frappe/public/js/frappe/ui/toolbar/user_progress_dialog.js,Mark as Done,標為已完成 @@ -719,6 +733,7 @@ apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Add custom field Auto apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appreciated your work on {1} with {2} points,{0}讚賞您使用{2}積分在{1}上的工作 DocType: Auto Email Report,Zero means send records updated at anytime,零表示發送記錄隨時更新 apps/frappe/frappe/model/document.py,Value cannot be changed for {0},{0}無法更改值 +apps/frappe/frappe/config/integrations.py,Google API Settings.,Google API設置。 DocType: System Settings,Force User to Reset Password,強制用戶重置密碼 apps/frappe/frappe/core/doctype/report/report.js,Report Builder reports are managed directly by the report builder. Nothing to do.,報表生成器報表由報表生成器直接管理。沒事做。 apps/frappe/frappe/public/js/frappe/ui/filters/filters.js,Edit Filter,編輯過濾器 @@ -766,7 +781,7 @@ apps/frappe/frappe/templates/emails/recurring_document_failed.html,for the,為 DocType: S3 Backup Settings,eu-north-1,歐盟 - 北 - 1 apps/frappe/frappe/core/doctype/doctype/doctype.py,"{0}: Only one rule allowed with the same Role, Level and {1}",{0}:只允許一個規則具有相同的角色,級別和{1} apps/frappe/frappe/website/doctype/web_form/web_form.py,You are not allowed to update this Web Form Document,您不得更新此Web表單文檔 -apps/frappe/frappe/public/js/frappe/form/form.js,Maximum Attachment Limit for this record reached.,達到此記錄的最大附件限制。 +apps/frappe/frappe/public/js/legacy/form.js,Maximum Attachment Limit for this record reached.,達到此記錄的最大附件限制。 apps/frappe/frappe/core/doctype/communication/communication.py,Please make sure the Reference Communication Docs are not circularly linked.,請確保參考通信文檔沒有循環鏈接。 DocType: DocField,Allow in Quick Entry,允許快速輸入 DocType: Error Snapshot,Locals,當地人 @@ -794,7 +809,6 @@ apps/frappe/frappe/core/doctype/data_export/exporter.py,There is no data to be e DocType: Error Snapshot,Exception Type,例外類型 apps/frappe/frappe/model/delete_doc.py,Cannot delete or cancel because {0} {1} is linked with {2} {3} {4},無法刪除或取消,因為{0} {1}與{2} {3} {4}相關聯 apps/frappe/frappe/core/doctype/user/user.py,OTP secret can only be reset by the Administrator.,OTP密鑰只能由管理員重置。 -DocType: Web Form Field,Page Break,分頁符 DocType: Website Script,Website Script,網站腳本 DocType: Integration Request,Subscription Notification,訂閱通知 DocType: DocType,Quick Entry,快速入門 @@ -808,6 +822,7 @@ DocType: Notification,Set Property After Alert,警報後設置屬性 apps/frappe/frappe/__init__.py,Thank you,謝謝 apps/frappe/frappe/config/integrations.py,Slack Webhooks for internal integration,Slack Webhooks用於內部集成 apps/frappe/frappe/config/settings.py,Import Data,導入數據 +DocType: Translation,Contributed Translation Doctype Name,貢獻翻譯文檔類型名稱 DocType: Review Level,Review Level,審查級別 apps/frappe/frappe/utils/password.py,"Encryption key is invalid, Please check site_config.json",加密密鑰無效,請檢查site_config.json DocType: User,User Defaults,用戶默認值 @@ -853,6 +868,7 @@ apps/frappe/frappe/model/document.py,{0} must be after {1},{0}必須在{1}之後 DocType: GSuite Settings,Script URL,腳本URL apps/frappe/frappe/config/core.py,Errors in Background Events,後台事件中的錯誤 DocType: DocField,In Standard Filter,在標準過濾器中 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No Google Contacts present to sync.,沒有Google聯繫人可供同步。 DocType: Data Migration Run,Total Pages,總頁數 apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Field '{1}' cannot be set as Unique as it has non-unique values,{0}:字段“{1}”無法設置為“唯一”,因為它具有非唯一值 DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.",如果啟用,則每次登錄時都會通知用戶。如果未啟用,則只會通知用戶一次。 @@ -870,7 +886,7 @@ DocType: Domain Settings,Active Domains,活動域 DocType: Assignment Rule,Automation,自動化 apps/frappe/frappe/public/js/frappe/views/file/file_view.js,Unzipping files...,解壓縮文件... apps/frappe/frappe/public/js/frappe/views/translation_manager.js,Something went wrong,有些不對勁 -apps/frappe/frappe/public/js/frappe/form/form.js,Please save before attaching.,請在附加前保存。 +apps/frappe/frappe/public/js/legacy/form.js,Please save before attaching.,請在附加前保存。 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,hub,轂 DocType: Page,Standard,標準 apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Add A New Rule,添加新規則 @@ -938,12 +954,13 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js,No Results,沒有結 apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,{0} records deleted,已刪除{0}條記錄 apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Something went wrong while generating dropbox access token. Please check error log for more details.,生成Dropbox訪問令牌時出錯了。請查看錯誤日誌以獲取更多詳細信息 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Descendants Of,後裔 -apps/frappe/frappe/contacts/doctype/address/address.py,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,找不到默認地址模板。請從“設置”>“打印和品牌”>“地址模板”中創建一個新的。 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts has been configured.,已配置Google通訊錄。 apps/frappe/frappe/public/js/frappe/form/layout.js,Hide details,隱藏細節 apps/frappe/frappe/website/doctype/website_theme/website_theme.js,Font Styles,字體樣式 apps/frappe/frappe/limits.py,Your subscription will expire on {0}.,您的訂閱將在{0}到期。 apps/frappe/frappe/email/doctype/email_account/email_account.py,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},從電子郵件帳戶{0}接收電子郵件時身份驗證失敗。來自服務器的消息:{1} apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Stats based on last week's performance (from {0} to {1}),基於上週表現的統計數據(從{0}到{1}) +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only if Incoming is enabled.,僅當啟用了“傳入”時,才能激活自動鏈接。 DocType: Website Settings,Title Prefix,標題前綴 apps/frappe/frappe/www/qrcode.html,Authentication Apps you can use are: ,您可以使用的身份驗證應用是: DocType: Bulk Update,Max 500 records at a time,一次最多500條記錄 @@ -970,7 +987,7 @@ DocType: User,These values will be automatically updated in transactions and als DocType: Auto Email Report,Report Filters,報告過濾器 apps/frappe/frappe/core/doctype/data_import/data_import.js,Select Columns,選擇列 DocType: Event,Participants,參與者 -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Your information has been submitted,您的資料已提交 +apps/frappe/frappe/public/js/frappe/web_form/web_form.js,Your information has been submitted,您的資料已提交 DocType: Help Category,Help Category,幫助類別 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,1 month,1個月 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Select an existing format to edit or start a new format.,選擇要編輯的現有格式或啟動新格式。 @@ -1043,6 +1060,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/form_viewers.js,{0} are current DocType: Contact,Contact,聯繫 DocType: LDAP Settings,LDAP Username Field,LDAP用戶名字段 apps/frappe/frappe/database/mariadb/schema.py,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",{0}字段不能在{1}中設置為唯一,因為存在非唯一的現有值 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > Customize Form,設置>自定義表單 DocType: User,Social Logins,社交登錄 DocType: Stripe Settings,Secret Key,密鑰 DocType: OAuth Client,Default Redirect URI,默認重定向URI @@ -1089,6 +1107,7 @@ apps/frappe/frappe/printing/doctype/print_style/print_style.py,Standard Print St DocType: DocType,Title Field,標題字段 apps/frappe/frappe/email/smtp.py,Could not connect to outgoing email server,無法連接到外發電子郵件服務器 DocType: Help Article,Likes,喜歡 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Google Contacts Integration is disabled.,Google聯繫人集成已停用。 apps/frappe/frappe/utils/response.py,You need to be logged in and have System Manager Role to be able to access backups.,您需要登錄並具有System Manager Role才能訪問備份。 apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js,First Level,第一級 DocType: Blogger,Short Name,簡稱 @@ -1109,6 +1128,7 @@ apps/frappe/frappe/core/doctype/user/user.py,Adding System Manager to this User apps/frappe/frappe/core/doctype/user/user.py,Welcome email sent,歡迎發送電子郵件 DocType: Transaction Log,Chaining Hash,鏈接哈希 DocType: Contact,Maintenance Manager,維護經理 +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",為了比較,使用> 5,<10或= 324。對於範圍,請使用5:10(對於5和10之間的值)。 apps/frappe/frappe/utils/bot.py,show,節目 apps/frappe/frappe/public/js/frappe/list/list_view.js,Share URL,分享網址 DocType: Role,Two Factor Authentication,雙因素身份驗證 @@ -1124,7 +1144,7 @@ apps/frappe/frappe/config/settings.py,"States for workflow (e.g. Draft, Approved DocType: Data Import,Show only errors,僅顯示錯誤 DocType: Energy Point Log,Review,評論 apps/frappe/frappe/core/doctype/version/version_view.html,Rows Removed,行已刪除 -DocType: GSuite Settings,Google Credentials,Google憑據 +DocType: Google Settings,Google Credentials,Google憑據 apps/frappe/frappe/www/login.html,Or login with,或者登錄 apps/frappe/frappe/model/document.py,Record does not exist,記錄不存在 apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,New Report name,新報告名稱 @@ -1144,6 +1164,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js,Creating {0},創建{0} DocType: Desktop Icon,List,名單 apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Cannot set Assign Submit if not Submittable,{0}:如果不提交,則無法設置分配提交 apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not Linked to any record,沒有鏈接到任何記錄 +apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","連接到QZ托盤應用程序時出錯...

您需要安裝並運行QZ Tray應用程序才能使用原始打印功能。

點擊此處下載並安裝QZ托盤
單擊此處以了解有關原始打印的更多信息" DocType: Chat Message,Content,內容 DocType: Workflow Transition,Allow Self Approval,允許自我批准 apps/frappe/frappe/www/qrcode.py,Page has expired!,頁面已過期! @@ -1159,6 +1180,7 @@ DocType: Workflow State,hand-right,手工權 DocType: Website Settings,Banner is above the Top Menu Bar.,橫幅位於頂部菜單欄上方。 apps/frappe/frappe/www/update-password.html,Invalid Password,無效的密碼 apps/frappe/frappe/utils/data.py,1 month ago,1個月前 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Allow Google Contacts Access,允許Google通訊錄訪問 DocType: OAuth Client,App Client ID,應用客戶端ID DocType: DocField,Currency,貨幣 DocType: Website Settings,Banner,旗幟 @@ -1168,7 +1190,7 @@ DocType: User,Simultaneous Sessions,同時會話 apps/frappe/frappe/utils/goal.py,Goal,目標 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If a Role does not have access at Level 0, then higher levels are meaningless.",如果角色在級別0沒有訪問權限,則更高級別無意義。 DocType: ToDo,Reference Type,參考類型 -apps/frappe/frappe/public/js/frappe/form/form.js,"Allowing DocType, DocType. Be careful!",允許DocType,DocType。小心! +apps/frappe/frappe/public/js/legacy/form.js,"Allowing DocType, DocType. Be careful!",允許DocType,DocType。小心! DocType: Domain Settings,Domain Settings,域名設置 DocType: Auto Email Report,Dynamic Report Filters,動態報告過濾器 apps/frappe/frappe/model/base_document.py,{0} must be set first,必須先設置{0} @@ -1205,6 +1227,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.js,{0} available out of {1},{ apps/frappe/frappe/core/page/permission_manager/permission_manager.js,Select Document Type or Role to start.,選擇文檔類型或角色以啟動。 DocType: DocType,Is Single,單身 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html,Create a New Format,創建一個新格式 +DocType: Google Contacts,Authorize Google Contacts Access,授權Google通訊錄訪問權限 DocType: S3 Backup Settings,Endpoint URL,端點URL DocType: Contact,Department,部門 apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,Please add a subject to your email,請在您的電子郵件中添加主題 @@ -1216,7 +1239,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js,Assign To,分配給 DocType: List Filter,List Filter,列表過濾器 DocType: Dashboard Chart Link,Chart,圖表 apps/frappe/frappe/core/page/permission_manager/permission_manager.py,Cannot Remove,無法刪除 -apps/frappe/frappe/public/js/frappe/form/form.js,Submit this document to confirm,提交此文件以確認 +apps/frappe/frappe/public/js/legacy/form.js,Submit this document to confirm,提交此文件以確認 apps/frappe/frappe/public/js/frappe/form/controls/data.js,{0} already exists. Select another name,{0}已存在。選擇其他名稱 apps/frappe/frappe/public/js/frappe/model/create_new.js,You have unsaved changes in this form. Please save before you continue.,您在此表單中有未保存的更改。請在繼續之前保存。 apps/frappe/frappe/model/document.py,Action Failed,行動失敗 @@ -1283,6 +1306,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/attachments.js,There were error DocType: DocField,Display,顯示 DocType: Calendar View,Subject Field,學科領域 apps/frappe/frappe/core/doctype/system_settings/system_settings.py,Session Expiry must be in format {0},會話到期時間必須為{0}格式 +apps/frappe/frappe/model/workflow.py,Applying: {0},申請:{0} apps/frappe/frappe/printing/doctype/print_settings/print_settings.py,Failed to connect to server,無法連接服務器 apps/frappe/frappe/public/js/frappe/form/controls/date.js,Date {0} must be in format: {1},日期{0}必須採用格式:{1} apps/frappe/frappe/core/page/usage_info/usage_info.js,Renew / Upgrade,續訂/升級 @@ -1292,7 +1316,10 @@ DocType: Activity Log,Link DocType,鏈接DocType apps/frappe/frappe/public/js/frappe/form/print.js,Cannot have multiple printers mapped to a single print format.,不能將多個打印機映射到單個打印格式。 DocType: Workflow State,Icon will appear on the button,圖標將出現在按鈕上 DocType: Role Permission for Page and Report,Set Role For,設置角色 +apps/frappe/frappe/email/doctype/email_account/email_account.py,Automatic Linking can be activated only for one Email Account.,只能為一個電子郵件帳戶激活自動鏈接。 apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Email Accounts Assigned,沒有分配電子郵件帳戶 +apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,電子郵件帳戶未設置。請從設置>電子郵件>電子郵件帳戶創建新的電子郵件帳戶 +DocType: Google Contacts,Last Sync On,上次同步開啟 apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,gained by {0} via automatic rule {1},由{0}通過自動規則{1}獲得 apps/frappe/frappe/config/website.py,Portal,門戶 apps/frappe/frappe/templates/emails/auto_reply.html,Thank you for your email,謝謝您的來信 @@ -1313,7 +1340,6 @@ DocType: GSuite Settings,GSuite Settings,GSuite設置 DocType: Integration Request,Remote,遠程 DocType: File,Thumbnail URL,縮略圖網址 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,Download Report,下載報告 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,設置>用戶 apps/frappe/frappe/modules/utils.py,Customizations for {0} exported to:
{1},導出為{0}的自定義項:
{1} DocType: GCalendar Account,Calendar Name,日曆名稱 apps/frappe/frappe/templates/emails/new_user.html,Your login id is,您的登錄ID是 @@ -1370,6 +1396,7 @@ DocType: Website Settings,Route Redirects,路線重定向 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Email Inbox,電子郵件收件箱 apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,restored {0} as {1},將{0}恢復為{1} DocType: Assignment Rule,Automatically Assign Documents to Users,自動為用戶分配文檔 +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Open Awesomebar,打開Awesomebar apps/frappe/frappe/config/settings.py,Email Templates for common queries.,常見查詢的電子郵件模板。 DocType: Letter Head,Letter Head Based On,基於的信頭 apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please close this window,請關閉此窗口 @@ -1407,6 +1434,7 @@ DocType: System Settings,Choose authentication method to be used by all users, DocType: Error Snapshot,Parent Error Snapshot,父錯誤快照 DocType: GCalendar Account,GCalendar Account,GCalendar帳戶 DocType: Language,Language Name,語言名稱 +DocType: Workflow Document State,Workflow Action is not created for optional states,不為可選狀態創建工作流操作 DocType: Customize Form,Customize Form,自定義表單 DocType: DocType,Image Field,圖像場 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Click here to post bugs and suggestions,點擊此處發布錯誤和建議 @@ -1442,6 +1470,7 @@ apps/frappe/frappe/integrations/doctype/google_maps_settings/google_maps_setting DocType: Custom DocPerm,Apply this rule if the User is the Owner,如果用戶是所有者,則應用此規則 DocType: About Us Settings,Org History Heading,組織歷史標題 apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py,Server Error,服務器錯誤 +DocType: Contact,Google Contacts Description,Google通訊錄說明 apps/frappe/frappe/core/doctype/role/role.py,Standard roles cannot be renamed,無法重命名標準角色 DocType: Review Level,Review Points,評論點 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Missing parameter Kanban Board Name,缺少參數看板板名稱 @@ -1452,7 +1481,6 @@ DocType: About Us Team Member,Image Link,圖片鏈接 apps/frappe/frappe/public/js/frappe/list/bulk_operations.js,You selected Draft or Cancelled documents,您選擇了草稿或已取消的文檔 apps/frappe/frappe/core/doctype/doctype/doctype.py,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,不在開發者模式下!在site_config.json中設置或製作“自定義”DocType。 apps/frappe/frappe/templates/emails/energy_points_summary.html,gained {0} points,獲得{0}分 -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js,"For comparison, use >5, <10 or =324. For ranges, use 5:10 (for values between 5 & 10).",為了比較,使用> 5,<10或= 324。對於範圍,請使用5:10(對於5和10之間的值)。 DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",列表頁面的描述,純文本,只有幾行。 (最多140個字符) apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js,Show Permissions,顯示權限 DocType: DocType,Restrict To Domain,限製到域 @@ -1470,6 +1498,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,Invalid {0} condition,無效 apps/frappe/frappe/public/js/frappe/form/link_selector.js,Set Quantity,設定數量 DocType: Auto Repeat,End Date,結束日期 DocType: Workflow Transition,Next State,下一個州 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,{0} Google Contacts synced.,{0} Google通訊錄同步。 DocType: System Settings,Is First Startup,是第一次啟動 apps/frappe/frappe/public/js/frappe/change_log.html,updated to {0},更新為{0} apps/frappe/frappe/core/doctype/user/user.py,Administrator Logged In,管理員已登錄 @@ -1513,6 +1542,7 @@ apps/frappe/frappe/public/js/frappe/form/sidebar/review.js,Criticize,批評 apps/frappe/frappe/public/js/frappe/model/meta.js,Warning: Unable to find {0} in any table related to {1},警告:無法在與{1}相關的任何表中找到{0} apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js,{0} Calendar,{0}日曆 apps/frappe/frappe/core/doctype/data_export/exporter.py,Data Import Template,數據導入模板 +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select multiple list items,選擇多個列表項 apps/frappe/frappe/core/page/usage_info/usage_info.html,Backup Size:,備份大小: apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,Linked with {0},與{0}相關聯 DocType: Braintree Settings,Private Key,私鑰 @@ -1550,12 +1580,12 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js,Verify,校驗 apps/frappe/frappe/public/js/frappe/views/communication.js,Enter Email Recipient(s),輸入電子郵件收件人 ,Recorder,錄音機 DocType: Print Settings,Print taxes with zero amount,打印零金額稅 -apps/frappe/frappe/email/smtp.py,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,電子郵件帳戶未設置。請從設置>電子郵件>電子郵件帳戶創建新的電子郵件帳戶 DocType: Workflow State,Book,書 DocType: S3 Backup Settings,Access Key ID,訪問密鑰ID DocType: Chat Message,URLs,網址 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js,Report {0},報告{0} DocType: About Us Settings,Team Members Heading,團隊成員標題 +apps/frappe/frappe/public/js/frappe/list/list_view.js,Select list item,選擇列表項 apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,Document {0} has been set to state {1} by {2},文檔{0}已設置為{2}狀態{1} DocType: Workflow State,step-backward,一步向後 DocType: User,Banner Image,橫幅圖像 @@ -1571,6 +1601,7 @@ DocType: Web Form Field,Show in filter,在過濾器中顯示 apps/frappe/frappe/templates/emails/recurring_document_failed.html,It is necessary to take this action today itself for the above mentioned recurring,今天有必要採取這一行動來進行上述反復出現 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Export Custom Permissions,導出自定義權限 apps/frappe/frappe/public/js/frappe/form/workflow.js,None: End of Workflow,無:工作流程結束 +apps/frappe/frappe/public/js/frappe/list/list_view.js,Open list item,打開列表項 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,6 months,6個月 DocType: Chat Message,Group,組 apps/frappe/frappe/utils/file_manager.py,There is some problem with the file url: {0},文件網址存在一些問題:{0} @@ -1619,6 +1650,7 @@ DocType: User,Third Party Authentication,第三方認證 apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} reverted your points on {1},{0}在{1}上恢復了積分 DocType: Workflow State,arrow-down,箭頭向下 DocType: Data Import,Ignore encoding errors,忽略編碼錯誤 +apps/frappe/frappe/public/js/frappe/form/print.js,Landscape,景觀 DocType: Letter Head,Letter Head Name,信頭名 DocType: Web Form,Client Script,客戶端腳本 DocType: Assignment Rule,Higher priority rule will be applied first,首先應用更高優先級的規則 @@ -1652,6 +1684,7 @@ DocType: Kanban Board Column,Green,綠色 apps/frappe/frappe/core/doctype/data_export/exporter.py,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,新記錄只需要必填字段。如果您願意,可以刪除非必填列。 apps/frappe/frappe/core/doctype/language/language.py,"{0} must begin and end with a letter and can only contain letters, hyphen or underscore.",{0}必須以字母開頭和結尾,並且只能包含字母,連字符或下劃線。 +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Trigger Primary Action,觸發主要操作 apps/frappe/frappe/core/doctype/user/user.js,Create User Email,創建用戶電郵 apps/frappe/frappe/core/doctype/doctype/doctype.py,Sort field {0} must be a valid fieldname,排序字段{0}必須是有效的字段名 DocType: Auto Email Report,Filter Meta,過濾元 @@ -1676,6 +1709,7 @@ apps/frappe/frappe/public/js/frappe/chat.js,Start a conversation.,開始對話 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Sync on Migrate,遷移時同步 DocType: DocType,Timeline Field,時間線字段 apps/frappe/frappe/core/page/dashboard/dashboard.js,Loading...,載入中... +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Profile,我的簡歷 DocType: Post,Comments,評論 apps/frappe/frappe/model/document.py,Cannot link cancelled document: {0},無法鏈接已取消的文檔:{0} DocType: DocField,Long Text,長文 @@ -1690,6 +1724,7 @@ apps/frappe/frappe/www/update-password.html,The password of your account has exp apps/frappe/frappe/config/users_and_permissions.py,System and Website Users,系統和網站用戶 apps/frappe/frappe/custom/doctype/custom_field/custom_field.js,Fieldname which will be the DocType for this link field.,Fieldname,它將是此鏈接字段的DocType。 DocType: File,Content Hash,內容哈希 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,No new Google Contacts synced.,沒有新的Google通訊錄同步。 apps/frappe/frappe/core/doctype/error_log/error_log_list.js,Clear Error Logs,清除錯誤日誌 DocType: Error Snapshot,Friendly Title,友好的標題 apps/frappe/frappe/website/doctype/website_theme/website_theme.js,"Add the name of a ""Google Web Font"" e.g. ""Open Sans""",添加“Google Web字體”的名稱,例如“Open Sans” @@ -1711,6 +1746,7 @@ apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Apply to DocType: Activity Log,Closed,關閉 DocType: Report,Query,詢問 DocType: Notification,Days After,幾天之後 +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Page Shortcuts,頁面快捷方式 apps/frappe/frappe/public/js/frappe/request.js,Request Timed Out,請求超時 DocType: System Settings,Email Footer Address,電子郵件頁腳地址 apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,Energy point update,能量點更新 @@ -1732,6 +1768,7 @@ DocType: DocField,"For Links, enter the DocType as range. For Select, enter list of Options, each on a new line.",對於Links,輸入DocType作為範圍。對於選擇,輸入選項列表,每個選項列在一個新行上。 apps/frappe/frappe/public/js/frappe/utils/pretty_date.js,1 minute ago,1分鐘前 apps/frappe/frappe/www/third_party_apps.html,No Active Sessions,沒有活動會話 +DocType: Contact,Middle Name,中間名字 apps/frappe/frappe/public/js/frappe/request.js,Please try again,請再試一次 DocType: Dashboard Chart,Chart Options,圖表選項 DocType: Data Migration Run,Push Failed,推送失敗 @@ -1780,7 +1817,6 @@ apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py,Cancelled D DocType: Desktop Icon,Desktop Icon,桌面圖標 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js,cancelled this document,取消了這份文件 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js,Date Range,日期範圍 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User Permissions,設置>用戶權限 apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} appreciated {1},{0}讚賞{1} apps/frappe/frappe/core/doctype/version/version_view.html,Values Changed,價值觀改變了 apps/frappe/frappe/email/doctype/notification/notification.py,Error in Notification,通知錯誤 @@ -1836,6 +1872,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,Bulk Delete,批量刪除 DocType: DocShare,Document Name,文件名稱 apps/frappe/frappe/config/customization.py,Add your own translations,添加您自己的翻譯 +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list down,向下導航列表 DocType: Data Migration Mapping,Remote Primary Key,遠程主鍵 apps/frappe/frappe/config/core.py,Script or Query reports,腳本或查詢報告 DocType: Workflow Document State,Next Action Email Template,下一步行動電郵模板 @@ -1871,6 +1908,7 @@ DocType: Data Migration Mapping,Remote Objectname,遠程對象名稱 apps/frappe/frappe/utils/nestedset.py,Nested set error. Please contact the Administrator.,嵌套設置錯誤。請聯繫管理員。 apps/frappe/frappe/core/doctype/prepared_report/prepared_report.js,Show Report,顯示報告 DocType: Auto Repeat,Auto Repeat Schedule,自動重複計劃 +apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log_list.js,View Ref,查看參考 DocType: Address,Office,辦公室 DocType: LDAP Settings,StartTLS,啟動TLS DocType: Workflow State,Check,校驗 @@ -1895,7 +1933,7 @@ apps/frappe/frappe/templates/pages/integrations/gcalendar-success.html,Connectio DocType: System Settings,Bypass Two Factor Auth for users who login from restricted IP Address,為從限制IP地址登錄的用戶繞過雙因素身份驗證 apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html,My Settings,我的設置 apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,Group name cannot be empty.,組名不能為空。 -DocType: Website Route Redirect,Source,資源 +DocType: Contact,Source,資源 apps/frappe/frappe/www/third_party_apps.html,Active Sessions,活躍期 apps/frappe/frappe/core/doctype/doctype/doctype.py,There can be only one Fold in a form,表格中只能有一個折疊 apps/frappe/frappe/www/qrcode.html,Scan the QR Code and enter the resulting code displayed.,掃描QR碼並輸入顯示的結果代碼。 @@ -1911,6 +1949,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html,Under Devel apps/frappe/frappe/integrations/doctype/social_login_key/social_login_key.py,Please enter Authorize URL,請輸入授權URL DocType: Email Account,Send Notification to,發送通知給 apps/frappe/frappe/config/integrations.py,Dropbox backup settings,Dropbox備份設置 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.py,Something went wrong during the token generation. Click on {0} to generate a new one.,在令牌生成期間出了點問題。單擊{0}以生成新的。 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js,Remove all customizations?,刪除所有自定義項? apps/frappe/frappe/core/doctype/page/page.py,Only Administrator can edit,只有管理員才能編輯 DocType: Auto Repeat,Reference Document,參考文件 @@ -1933,6 +1972,7 @@ apps/frappe/frappe/templates/emails/new_user.html,A new account has been created apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Roles can be set for users from their User page.,可以從用戶頁面為用戶設置角色。 DocType: Website Settings,Include Search in Top Bar,在頂欄中包含搜索 apps/frappe/frappe/desk/doctype/auto_repeat/auto_repeat.py,[Urgent] Error while creating recurring %s for %s,[緊急]為%s創建重複%s時出錯 +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Global Shortcuts,全球捷徑 apps/frappe/frappe/client.py,No document found for given filters,找不到給定過濾器的文檔 apps/frappe/frappe/config/desktop.py,Users and Permissions,用戶和權限 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",當您在取消後修改文檔並保存它時,它將獲得一個新編號,即舊編號的版本。 @@ -1961,9 +2001,10 @@ apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Not a val apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js,Create a new record,創建一個新記錄 apps/frappe/frappe/core/doctype/data_export/exporter.py,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.",如果要上傳新記錄,“命名系列”將成為必填項(如果存在)。 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Edit Properties,編輯屬性 -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open instance when its {0} is open,打開{0}時無法打開實例 +apps/frappe/frappe/public/js/legacy/form.js,Cannot open instance when its {0} is open,打開{0}時無法打開實例 DocType: Activity Log,Timeline Name,時間線名稱 apps/frappe/frappe/integrations/oauth2.py,Please set Base URL in Social Login Key for Frappe,請在Frappe的社交登錄密鑰中設置基本URL +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Keyboard Shortcuts,鍵盤快捷鍵 DocType: Portal Settings,Custom Menu Items,自定義菜單項 apps/frappe/frappe/database/schema.py,Length of {0} should be between 1 and 1000,{0}的長度應介於1和1000之間 apps/frappe/frappe/public/js/frappe/dom.js,Connection lost. Some features might not work.,連接丟失了。某些功能可能無法正常工作 @@ -2013,6 +2054,7 @@ apps/frappe/frappe/core/doctype/system_settings/system_settings.py,"Please setup DocType: Newsletter,Test Email Address,測試郵箱地址 apps/frappe/frappe/public/js/frappe/views/interaction.js,{0} created successfully,{0}已成功創建 apps/frappe/frappe/www/update-password.html,New Password,新密碼 +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Select Field,選擇字段 apps/frappe/frappe/email/doctype/email_account/email_account.py,Leave this conversation,離開這個對話 DocType: About Us Settings,Team Members,團隊成員 DocType: Blog Settings,Writers Introduction,作家介紹 @@ -2064,12 +2106,11 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_colum DocType: Chat Room,Name,名稱 DocType: Communication,Email Template,電郵模板 DocType: Energy Point Settings,Review Levels,評論級別 -apps/frappe/frappe/public/js/frappe/form/form.js,Cannot open {0} when its instance is open,當其實例打開時無法打開{0} +apps/frappe/frappe/public/js/legacy/form.js,Cannot open {0} when its instance is open,當其實例打開時無法打開{0} DocType: DocType,"Make ""name"" searchable in Global Search",在全局搜索中搜索“名稱” DocType: Data Migration Mapping,Data Migration Mapping,數據遷移映射 DocType: Communication,Error,錯誤 apps/frappe/frappe/custom/doctype/customize_form/customize_form.py,Fieldtype cannot be changed from {0} to {1} in row {2},無法在第{2}行中將字段類型從{0}更改為{1} -apps/frappe/frappe/public/js/frappe/form/print.js,"Error connecting to QZ Tray Application...

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

Click here to Download and install QZ Tray.
Click here to learn more about Raw Printing.","連接到QZ托盤應用程序時出錯...

您需要安裝並運行QZ Tray應用程序才能使用原始打印功能。

點擊此處下載並安裝QZ托盤
單擊此處以了解有關原始打印的更多信息" apps/frappe/frappe/utils/password_strength.py,Avoid years that are associated with you.,避免與你相關的歲月。 DocType: Web Form,Allow Incomplete Forms,允許不完整的表單 DocType: Dashboard Chart,Last Synced On,最後同步 @@ -2142,7 +2183,6 @@ DocType: DocType,Open a dialog with mandatory fields to create a new record quic DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",選擇target =“_ blank”以在新頁面中打開。 DocType: Portal Settings,Portal Menu,門戶菜單 DocType: Website Settings,Landing Page,登陸頁面 -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Please sign-up or login to begin,請註冊或登錄開始 DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",聯繫選項,如“銷售查詢,支持查詢”等,每行在新行上或用逗號分隔。 apps/frappe/frappe/twofactor.py,Verfication Code,驗證碼 apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py,{0} already unsubscribed,{0}已取消訂閱 @@ -2217,6 +2257,7 @@ DocType: Data Migration Plan Mapping,Data Migration Plan Mapping,數據遷移計 DocType: Address,Sales User,銷售用戶 apps/frappe/frappe/config/customization.py,"Change field properties (hide, readonly, permission etc.)",更改字段屬性(隱藏,只讀,權限等) DocType: Property Setter,Field Name,字段名稱 +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py,Customer,顧客 DocType: Print Settings,Font Size,字體大小 DocType: User,Last Password Reset Date,上次密碼重置日期 DocType: System Settings,Date and Number Format,日期和數字格式 @@ -2268,14 +2309,17 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} appre apps/frappe/frappe/public/js/frappe/views/treeview.js,Group Node,組節點 apps/frappe/frappe/public/js/frappe/model/model.js,Merge with existing,與現有合併 DocType: Blog Post,Blog Intro,博客簡介 +apps/frappe/frappe/public/js/frappe/form/toolbar.js,Jump to field,跳到現場 DocType: Prepared Report,Report Name,報告名稱 apps/frappe/frappe/model/document.py,Please refresh to get the latest document.,請刷新以獲取最新文檔。 apps/frappe/frappe/core/doctype/communication/communication.js,Close,關 apps/frappe/frappe/config/integrations.py,Webhooks calling API requests into web apps,Webhooks將API請求調用到Web應用程序中 DocType: Social Login Key,Access Token URL,訪問令牌URL apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Please set Dropbox access keys in your site config,請在您的站點配置中設置Dropbox訪問密鑰 +DocType: Google Contacts,Google Contacts,Google通訊錄 DocType: User,Reset Password Key,重置密碼密鑰 apps/frappe/frappe/limits.py,"To renew, {0}.",要續訂,{0}。 +apps/frappe/frappe/public/js/frappe/form/templates/timeline.html,Send an email to {0} to link it here.,發送電子郵件至{0}以將其鏈接到此處。 DocType: File,Folder,夾 DocType: DocField,Perm Level,燙髮水平 DocType: Print Settings,Page Settings,頁面設置 @@ -2296,6 +2340,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}: Options must be a valid DocType: User,Modules HTML,模塊HTML DocType: DocType,User Cannot Create,用戶無法創建 apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,You gained {0} point,你獲得了{0}分 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,Setup > User,設置>用戶 DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.",如果設置此項,則此項將顯示在所選父項下的下拉列表中。 apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js,No Emails,沒有電子郵件 DocType: Workflow State,resize-full,調整全 @@ -2311,6 +2356,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/report_view.js,Totals,匯總 apps/frappe/frappe/utils/password_strength.py,This is a very common password.,這是一個非常常見的密碼。 apps/frappe/frappe/public/js/frappe/views/interaction.js,The document could not be correctly assigned,無法正確分配文檔 apps/frappe/frappe/permissions.py,Not allowed for {0}: {1},不允許{0}:{1} +apps/frappe/frappe/public/js/frappe/form/controls/multiselect_list.js,No values to show,沒有要顯示的值 DocType: Personal Data Download Request,Personal Data Download Request,個人資料下載請求 apps/frappe/frappe/core/doctype/docshare/docshare.py,{0} shared this document with {1},{0}與{1}共享此文檔 apps/frappe/frappe/public/js/frappe/form/link_selector.js,Select {0},選擇{0} @@ -2326,7 +2372,6 @@ apps/frappe/frappe/public/js/frappe/utils/energy_point_utils.js,{0} criticized o apps/frappe/frappe/email/queue.py,This email was sent to {0} and copied to {1},此電子郵件已發送至{0}並已復製到{1} apps/frappe/frappe/email/smtp.py,Invalid login or password,無效的登錄名或密碼 DocType: Social Login Key,Social Login Key,社交登錄密鑰 -apps/frappe/frappe/email/smtp.py,Please setup default Email Account from Setup > Email > Email Account,請從設置>電子郵件>電子郵件帳戶設置默認電子郵件帳戶 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_view.js,Filters saved,已保存過濾器 DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",該貨幣應如何格式化?如果未設置,將使用系統默認值 apps/frappe/frappe/workflow/doctype/workflow_action/workflow_action.py,{0}: {1} is set to state {2},{0}:{1}設置為州{2} @@ -2426,6 +2471,7 @@ DocType: User,Location,地點 apps/frappe/frappe/core/page/dashboard/dashboard.js,No Data,沒有數據 DocType: Website Meta Tag,Website Meta Tag,網站元標記 DocType: Workflow State,film,電影 +apps/frappe/frappe/public/js/frappe/utils/utils.js,Copied to clipboard.,複製到剪貼板。 apps/frappe/frappe/integrations/utils.py,{0} Settings not found,{0}找不到設置 apps/frappe/frappe/custom/doctype/custom_field/custom_field.py,Label is mandatory,標籤是強制性的 apps/frappe/frappe/config/core.py,"Customized Formats for Printing, Email",用於打印,電子郵件的定制格式 @@ -2586,7 +2632,7 @@ apps/frappe/frappe/public/js/frappe/request.js,Another transaction is blocking t apps/frappe/frappe/core/doctype/user_permission/user_permission_list.js,For Document Type,對於文檔類型 apps/frappe/frappe/model/base_document.py,Data missing in table,表中缺少數據 apps/frappe/frappe/utils/bot.py,Could not identify {0},無法識別{0} -apps/frappe/frappe/public/js/frappe/form/form.js,This form has been modified after you have loaded it,加載後,此表單已被修改 +apps/frappe/frappe/public/js/legacy/form.js,This form has been modified after you have loaded it,加載後,此表單已被修改 apps/frappe/frappe/public/js/frappe/ui/filters/filter.js,Not Set,沒有設置 apps/frappe/frappe/public/js/frappe/ui/upload.html,Browse,瀏覽 DocType: Customize Form,"Fields separated by comma (,) will be included in the ""Search By"" list of Search dialog box",以逗號(,)分隔的字段將包含在“搜索”對話框的“搜索依據”列表中 @@ -2638,6 +2684,7 @@ DocType: System Settings,Minimum Password Score,最低密碼分數 apps/frappe/frappe/public/js/frappe/desk.js,Email Account setup please enter your password for: ,電子郵件帳戶設置請輸入您的密碼: apps/frappe/frappe/database/database.py,Too many writes in one request. Please send smaller requests,一個請求中寫入太多。請發送較小的請求 DocType: Social Login Key,Salesforce,銷售隊伍 +apps/frappe/frappe/integrations/doctype/google_contacts/google_contacts.js,Importing {0} of {1},導入{1}的{0} apps/frappe/frappe/chat/doctype/chat_room/chat_room.py,{0} room must have atmost one user.,{0}會議室必須至少有一個用戶。 DocType: Email Rule,Is Spam,是垃圾郵件 apps/frappe/frappe/templates/emails/new_user.html,Complete Registration,完成註冊 @@ -2670,7 +2717,6 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html,"If DocType: Workflow State,folder-close,文件夾關閉 DocType: Data Migration Run,Pull Update,拉動更新 apps/frappe/frappe/model/rename_doc.py,merged {0} into {1},將{0}合併到{1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js,

No results found for '

,

找不到'結果'

DocType: SMS Settings,Enter url parameter for receiver nos,輸入接收器號的url參數 apps/frappe/frappe/utils/jinja.py,Syntax error in template,模板中的語法錯誤 apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py,Please set filters value in Report Filter table.,請在“報表過濾器”表中設置過濾器值。 @@ -2680,6 +2726,7 @@ DocType: Communication,Timeline Links,時間線鏈接 apps/frappe/frappe/chat/__init__.py,"Sorry, you're not authorized.",對不起,你沒有被授權。 DocType: Report,Add Total Row,添加總排 apps/frappe/frappe/public/js/frappe/desk.js,Session Start Failed,會話開始失敗 +DocType: Translation,Verified,驗證 DocType: Print Format,Custom HTML Help,自定義HTML幫助 DocType: Address,Preferred Billing Address,首選帳單地址 apps/frappe/frappe/public/js/frappe/list/list_sidebar.html,Assigned To,分配給 @@ -2694,7 +2741,6 @@ DocType: Help Article,Intermediate,中間 DocType: Module Def,Module Name,模塊名稱 DocType: OAuth Authorization Code,Expiration time,到期時間 apps/frappe/frappe/config/settings.py,"Set default format, page size, print style etc.",設置默認格式,頁面大小,打印樣式等。 -apps/frappe/frappe/desk/like.py,You cannot like something that you created,你不能喜歡你創造的東西 DocType: System Settings,Session Expiry,會話到期 DocType: DocType,Auto Name,自動名稱 apps/frappe/frappe/public/js/frappe/views/interaction.js,Select Attachments,選擇附件 @@ -2716,6 +2762,7 @@ apps/frappe/frappe/templates/includes/search_template.html,No matching records. DocType: Page,System Page,系統頁面 DocType: Dropbox Settings,Note: By default emails for failed backups are sent.,注意:默認情況下,會發送失敗備份的電子郵件。 DocType: Custom DocPerm,Custom DocPerm,自定義DocPerm +DocType: Translation,PR sent,PR發送 DocType: Tag Doc Category,Doctype to Assign Tags,分配標籤的Doctype DocType: Address,Warehouse,倉庫 apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py,Dropbox Setup,Dropbox設置 @@ -2803,6 +2850,7 @@ apps/frappe/frappe/social/doctype/energy_point_log/energy_point_log.py,{0} rever DocType: Custom DocPerm,This role update User Permissions for a user,此角色更新用戶的用戶權限 DocType: Website Theme,Theme,主題 DocType: Web Form,Show Sidebar,顯示補充工具欄 +apps/frappe/frappe/config/integrations.py,Google Contacts Integration.,Google通訊錄集成。 apps/frappe/frappe/email/doctype/email_account/email_account_list.js,Default Inbox,默認收件箱 apps/frappe/frappe/www/login.py,Invalid Login Token,登錄令牌無效 apps/frappe/frappe/website/doctype/website_slideshow/website_slideshow.js,First set the name and save the record.,首先設置名稱並保存記錄。 @@ -2823,7 +2871,6 @@ apps/frappe/frappe/public/js/frappe/form/linked_with.js,Not enough permission to apps/frappe/frappe/templates/emails/recurring_document_failed.html,Please correct the,請更正 DocType: Top Bar Item,Top Bar Item,頂欄項目 ,Role Permissions Manager,角色權限管理器 -apps/frappe/frappe/website/js/web_form.js,There were errors. Please report this.,有錯誤。請報告這個。 DocType: System Settings,OTP Issuer Name,OTP發行人名稱 apps/frappe/frappe/public/js/frappe/form/sidebar/assign_to.js,Add to To Do,添加待辦事項 DocType: Report,Ref DocType,參考文檔類型 @@ -2902,6 +2949,7 @@ apps/frappe/frappe/config/settings.py,"Language, Date and Time settings",語言 apps/frappe/frappe/model/document.py,none of,沒有 DocType: Desktop Icon,Page,頁 DocType: Workflow State,plus-sign,加號 +apps/frappe/frappe/public/js/frappe/ui/keyboard.js,Clear Cache and Reload,清除緩存和重新加載 apps/frappe/frappe/core/doctype/user/user.py,Cannot Update: Incorrect / Expired Link.,無法更新:錯誤/過期鏈接。 DocType: Kanban Board Column,Yellow,黃色 DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),網格中字段的列數(網格中的總列數應小於11) @@ -2912,6 +2960,7 @@ DocType: Data Migration Mapping,Local Primary Key,本地主鍵 DocType: SMS Settings,SMS Gateway URL,SMS網關URL DocType: Desktop Icon,query-report,查詢的報告 DocType: Communication,Communication Type,通訊類型 +apps/frappe/frappe/public/js/frappe/list/list_view.js,Navigate list up,導航列表 DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,顯示完整錯誤並允許向開發人員報告問題 DocType: Customize Form Field,"This field will appear only if the fieldname defined here has value OR the rules are true (examples): myfield @@ -2933,7 +2982,6 @@ DocType: Notification Recipient,Email By Role,按角色發送電子郵 apps/frappe/frappe/email/doctype/email_group/email_group.py,Please Upgrade to add more than {0} subscribers,請升級以添加超過{0}個訂閱者 apps/frappe/frappe/email/queue.py,This email was sent to {0},此電子郵件已發送至{0} DocType: User,Represents a User in the system.,表示系統中的用戶。 -apps/frappe/frappe/website/doctype/web_form/templates/web_form.html,Page {0},第{0}頁 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js,Start new Format,開始新的格式 apps/frappe/frappe/public/js/frappe/form/controls/comment.js,Add a comment,添加評論 apps/frappe/frappe/core/doctype/doctype/doctype.py,{0}:Fieldtype {1} for {2} cannot be indexed,{0}:無法為{2}的字段類型{1}編制索引 From 7e366809da686ab3fc6beb0b50a25f7187743823 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Mon, 1 Jul 2019 19:05:12 +0530 Subject: [PATCH 05/73] fix: Object based API for add_shortcuts shortcut: key combination action: Trigger this function on shortcut page: If page is passed, the shortcut will be bound to that page target: Should be a jquery element, it will be clicked as the shortcut trigger description: Will show up in the Keyboard Shortcuts dialog ignore_inputs: If true, will trigger the keyboard shortcut even if inputs are focused --- frappe/public/js/frappe/list/list_view.js | 98 ++++++++++++++--------- frappe/public/js/frappe/ui/keyboard.js | 94 ++++++++++++++-------- frappe/public/js/frappe/ui/page.js | 7 +- 3 files changed, 130 insertions(+), 69 deletions(-) diff --git a/frappe/public/js/frappe/list/list_view.js b/frappe/public/js/frappe/list/list_view.js index 12f358b0fc..1e414a527f 100644 --- a/frappe/public/js/frappe/list/list_view.js +++ b/frappe/public/js/frappe/list/list_view.js @@ -791,45 +791,71 @@ frappe.views.ListView = class ListView extends frappe.views.BaseList { } }; - frappe.ui.keys.add_shortcut('down', () => { - return handle_navigation('down'); - }, __('Navigate list down'), this.page); + frappe.ui.keys.add_shortcut({ + shortcut: 'down', + action: () => handle_navigation('down'), + description: __('Navigate list down'), + page: this.page + }); - frappe.ui.keys.add_shortcut('up', () => { - return handle_navigation('up'); - }, __('Navigate list up'), this.page); + frappe.ui.keys.add_shortcut({ + shortcut: 'up', + action: () => handle_navigation('up'), + description: __('Navigate list up'), + page: this.page + }); - frappe.ui.keys.add_shortcut('shift+down', () => { - if (!is_current_page() || is_input_focused()) return false; - let $list_row = get_list_row_if_focused(); - check_row($list_row); - focus_next(); - }, __('Select multiple list items'), this.page); - - frappe.ui.keys.add_shortcut('shift+up', () => { - if (!is_current_page() || is_input_focused()) return false; - let $list_row = get_list_row_if_focused(); - check_row($list_row); - focus_prev(); - }, __('Select multiple list items'), this.page); - - frappe.ui.keys.add_shortcut('enter', () => { - let $list_row = get_list_row_if_focused(); - if ($list_row) { - $list_row.find('a[data-name]')[0].click(); - return true; - } - return false; - }, __('Open list item'), this.page); - - frappe.ui.keys.add_shortcut('space', () => { - let $list_row = get_list_row_if_focused(); - if ($list_row) { + frappe.ui.keys.add_shortcut({ + shortcut: 'shift+down', + action: () => { + if (!is_current_page() || is_input_focused()) return false; + let $list_row = get_list_row_if_focused(); check_row($list_row); - return true; - } - return false; - }, __('Select list item'), this.page); + focus_next(); + }, + description: __('Select multiple list items'), + page: this.page + }); + + frappe.ui.keys.add_shortcut({ + shortcut: 'shift+up', + action: () => { + if (!is_current_page() || is_input_focused()) return false; + let $list_row = get_list_row_if_focused(); + check_row($list_row); + focus_prev(); + }, + description: __('Select multiple list items'), + page: this.page + }); + + frappe.ui.keys.add_shortcut({ + shortcut: 'enter', + action: () => { + let $list_row = get_list_row_if_focused(); + if ($list_row) { + $list_row.find('a[data-name]')[0].click(); + return true; + } + return false; + }, + description: __('Open list item'), + page: this.page + }); + + frappe.ui.keys.add_shortcut({ + shortcut: 'space', + action: () => { + let $list_row = get_list_row_if_focused(); + if ($list_row) { + check_row($list_row); + return true; + } + return false; + }, + description: __('Select list item'), + page: this.page + }); } setup_filterable() { diff --git a/frappe/public/js/frappe/ui/keyboard.js b/frappe/public/js/frappe/ui/keyboard.js index 103fd693e2..158278d00b 100644 --- a/frappe/public/js/frappe/ui/keyboard.js +++ b/frappe/public/js/frappe/ui/keyboard.js @@ -21,9 +21,9 @@ frappe.ui.keys.setup = function() { let standard_shortcuts = []; frappe.ui.keys.standard_shortcuts = standard_shortcuts; -frappe.ui.keys.add_shortcut = (shortcut, action, description, page) => { - if (action instanceof jQuery) { - let $target = action; +frappe.ui.keys.add_shortcut = ({shortcut, action, description, page, target, ignore_inputs = false} = {}) => { + if (target instanceof jQuery) { + let $target = target; action = () => { $target[0].click(); } @@ -31,8 +31,9 @@ frappe.ui.keys.add_shortcut = (shortcut, action, description, page) => { frappe.ui.keys.on(shortcut, (e) => { let $focused_element = $(document.activeElement); let is_input_focused = $focused_element.is('input, select, textarea, [contenteditable=true]'); + if (is_input_focused && !ignore_inputs) return; - if (!is_input_focused && (!page || page.wrapper.is(':visible'))) { + if (!page || page.wrapper.is(':visible')) { let prevent_default = action(e); // prevent default if true is explicitly returned // or nothing returned (undefined) @@ -129,36 +130,61 @@ frappe.ui.keys.on = function(key, handler) { frappe.ui.keys.handlers[key].push(handler); } -frappe.ui.keys.add_shortcut('ctrl+s', function(e) { - frappe.app.trigger_primary_action(); - e.preventDefault(); - return false; -}, __('Trigger Primary Action')); +frappe.ui.keys.add_shortcut({ + shortcut: 'ctrl+s', + action: function(e) { + frappe.app.trigger_primary_action(); + e.preventDefault(); + return false; + }, + description: __('Trigger Primary Action'), + ignore_inputs: true +}); -frappe.ui.keys.add_shortcut('ctrl+g', function(e) { - $("#navbar-search").focus(); - e.preventDefault(); - return false; -}, __('Open Awesomebar')); +frappe.ui.keys.add_shortcut({ + shortcut: 'ctrl+g', + action: function(e) { + $("#navbar-search").focus(); + e.preventDefault(); + return false; + }, + description: __('Open Awesomebar') +}); -frappe.ui.keys.add_shortcut('ctrl+h', function(e) { - e.preventDefault(); - $('.navbar-home img').click(); -}, __('Home')); +frappe.ui.keys.add_shortcut({ + shortcut: 'ctrl+h', + action: function(e) { + e.preventDefault(); + $('.navbar-home img').click(); + }, + description: __('Home') +}); -frappe.ui.keys.add_shortcut('alt+s', function(e) { - e.preventDefault(); - $('.dropdown-navbar-user a').eq(0).click(); -}, __('Settings')); +frappe.ui.keys.add_shortcut({ + shortcut: 'alt+s', + action: function(e) { + e.preventDefault(); + $('.dropdown-navbar-user a').eq(0).click(); + }, + description: __('Settings') +}); -frappe.ui.keys.add_shortcut('shift+/', function() { - frappe.ui.keys.show_keyboard_shortcut_dialog(); -}, __('Keyboard Shortcuts')); +frappe.ui.keys.add_shortcut({ + shortcut: 'shift+/', + action: function() { + frappe.ui.keys.show_keyboard_shortcut_dialog(); + }, + description: __('Keyboard Shortcuts') +}); -frappe.ui.keys.add_shortcut('alt+h', function(e) { - e.preventDefault(); - $('.dropdown-help a').eq(0).click(); -}, __('Help')); +frappe.ui.keys.add_shortcut({ + shortcut: 'alt+h', + action: function(e) { + e.preventDefault(); + $('.dropdown-help a').eq(0).click(); + }, + description: __('Help') +}); frappe.ui.keys.on('escape', function(e) { close_grid_and_dialog(); @@ -184,9 +210,13 @@ frappe.ui.keys.on('ctrl+up', function(e) { grid_row && grid_row.toggle_view(false, function() { grid_row.open_prev() }); }); -frappe.ui.keys.add_shortcut('shift+ctrl+r', function() { - frappe.ui.toolbar.clear_cache(); -}, __('Clear Cache and Reload')); +frappe.ui.keys.add_shortcut({ + shortcut: 'shift+ctrl+r', + action: function() { + frappe.ui.toolbar.clear_cache(); + }, + description: __('Clear Cache and Reload') +}); frappe.ui.keys.key_map = { 8: 'backspace', diff --git a/frappe/public/js/frappe/ui/page.js b/frappe/public/js/frappe/ui/page.js index cad39cbabd..aee63c8af6 100644 --- a/frappe/public/js/frappe/ui/page.js +++ b/frappe/public/js/frappe/ui/page.js @@ -322,7 +322,12 @@ frappe.ui.Page = Class.extend({ ${shortcut_label}
  • `); shortcut = shortcut.toLowerCase(); - frappe.ui.keys.add_shortcut(shortcut, $li.find('a'), label, this); + frappe.ui.keys.add_shortcut({ + shortcut, + target: $li.find('a'), + description: label, + page: this + }); } else { $li = $(`
  • ${label}
  • `); From 7ef2e46a0fd87a248e8b1aeeaa7df397482b0d55 Mon Sep 17 00:00:00 2001 From: Prssanna Desai Date: Tue, 2 Jul 2019 19:04:00 +0530 Subject: [PATCH 06/73] fix(Automatic Email Linking): double email text getting copied (#7811) --- frappe/public/js/frappe/form/footer/timeline.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/public/js/frappe/form/footer/timeline.js b/frappe/public/js/frappe/form/footer/timeline.js index b7eec630ce..2a6813d9da 100644 --- a/frappe/public/js/frappe/form/footer/timeline.js +++ b/frappe/public/js/frappe/form/footer/timeline.js @@ -74,8 +74,8 @@ frappe.ui.form.Timeline = class Timeline { }); }); - this.email_link.on("click", ".copy-to-clipboard", function() { - let text = $(".copy-to-clipboard").text(); + this.email_link.on("click", function(e) { + let text = $(e.currentTarget).find(".copy-to-clipboard").text(); frappe.utils.copy_to_clipboard(text); }); } From 3bd3f8435dbe2fea2f4c06b932bba8b9c3ed20bf Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Tue, 2 Jul 2019 21:10:28 +0530 Subject: [PATCH 07/73] fix(UX): Form Sidebar Image Dropdown for uploading new image or removing --- .../js/frappe/form/sidebar/user_image.js | 18 +++++++--- .../frappe/form/templates/form_sidebar.html | 9 +++++ frappe/public/less/sidebar.less | 34 +++++++++++++------ 3 files changed, 46 insertions(+), 15 deletions(-) diff --git a/frappe/public/js/frappe/form/sidebar/user_image.js b/frappe/public/js/frappe/form/sidebar/user_image.js index 8be760179a..1eb6948446 100644 --- a/frappe/public/js/frappe/form/sidebar/user_image.js +++ b/frappe/public/js/frappe/form/sidebar/user_image.js @@ -4,6 +4,7 @@ frappe.ui.form.set_user_image = function(frm) { var image_field = frm.meta.image_field; var image = frm.doc[image_field]; var title_image = frm.page.$title_area.find('.title-image'); + var image_actions = frm.sidebar.image_wrapper.find('.sidebar-image-actions'); image_section.toggleClass('hide', image_field ? false : true); @@ -32,6 +33,8 @@ frappe.ui.form.set_user_image = function(frm) { .css("background-image", 'url("' + image + '")') .html(''); + image_actions.find('.sidebar-image-change, .sidebar-image-remove').show(); + } else { image_section .find(".sidebar-image") @@ -51,6 +54,8 @@ frappe.ui.form.set_user_image = function(frm) { .css({'background-color': frappe.get_palette(title)}) .html(frappe.get_abbr(title)); + image_actions.find('.sidebar-image-change').show(); + image_actions.find('.sidebar-image-remove').hide(); } } @@ -64,11 +69,16 @@ frappe.ui.form.setup_user_image_event = function(frm) { } // bind click on image_wrapper - frm.sidebar.image_wrapper.on('click', function() { + frm.sidebar.image_wrapper.on('click', '.sidebar-image-change, .sidebar-image-remove', function(e) { + let $target = $(e.currentTarget); var field = frm.get_field(frm.meta.image_field); - if(!field.$input) { - field.make_input(); + if ($target.is('.sidebar-image-change')) { + if(!field.$input) { + field.make_input(); + } + field.$input.trigger('click'); + } else { + field.set_value('').then(() => frm.save()); } - field.$input.trigger('click'); }); } \ No newline at end of file diff --git a/frappe/public/js/frappe/form/templates/form_sidebar.html b/frappe/public/js/frappe/form/templates/form_sidebar.html index 34f9b57ef2..b4f67da23b 100644 --- a/frappe/public/js/frappe/form/templates/form_sidebar.html +++ b/frappe/public/js/frappe/form/templates/form_sidebar.html @@ -12,6 +12,15 @@ +
  • {% if frm.meta.beta %} diff --git a/frappe/public/less/sidebar.less b/frappe/public/less/sidebar.less index dae2045b99..9e91b48ea3 100644 --- a/frappe/public/less/sidebar.less +++ b/frappe/public/less/sidebar.less @@ -188,19 +188,31 @@ body[data-route^="Module"] .main-menu { border-radius: 6px; } - .sidebar-image-wrapper:after { - content: '\A'; - position: absolute; - width: 100%; height:100%; - top:0; left:0; - background: #fff; - opacity: 0; - transition: all 0.5s; - -webkit-transition: all 0.6s; + .sidebar-image-wrapper { + position: relative; } - .sidebar-image-wrapper:hover:after { - opacity: 0.5; + .sidebar-image, .sidebar-standard-image { + transition: opacity 0.3s; + } + + .sidebar-image-wrapper:hover { + .sidebar-image, .sidebar-standard-image { + opacity: 0.5; + } + .sidebar-image-actions { + display: block; + } + } + + .sidebar-image-actions { + display: none; + position: absolute; + top: 50%; + right: 0; + left: 0; + transform: translateY(-50%); + text-align: center; } } From d1232f939f755e81317676bc2946cca0d40b3e21 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Tue, 2 Jul 2019 23:46:55 +0530 Subject: [PATCH 08/73] fix: do not remove header --- frappe/public/js/frappe/form/multi_select_dialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/form/multi_select_dialog.js b/frappe/public/js/frappe/form/multi_select_dialog.js index 89298607c1..56dca993f2 100644 --- a/frappe/public/js/frappe/form/multi_select_dialog.js +++ b/frappe/public/js/frappe/form/multi_select_dialog.js @@ -203,7 +203,7 @@ frappe.ui.form.MultiSelectDialog = Class.extend({ // Make empty result set if filter is set if (!frappe.flags.auto_scroll) { - this.$results.empty(); + this.$results.splice(1, this.$results.length); } if(results.length === 0) { From 8fb2a538ec73e46fdf6793be1a0f677af12365a9 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Wed, 3 Jul 2019 07:55:36 +0530 Subject: [PATCH 09/73] test: Add UI test for Link control (#7809) * test: Add UI test for Link control - Add API cy.call - Add API cy.create_records - Add ui_test_helpers.py * style: Missing semicolon * style: Missing semicolon * style: Missing semicolon * style: Remove unused imports * test: Robust test for setting invalid value * style: Remove unused import --- cypress/integration/control_link.js | 75 +++++++++++++++++++ cypress/integration/control_rating.js | 29 ++++--- cypress/integration/list_view.js | 2 +- cypress/integration/relative_filters.js | 2 +- cypress/support/commands.js | 35 ++++++--- frappe/public/js/frappe/form/controls/link.js | 2 +- frappe/tests/test_utils.py | 36 +-------- frappe/tests/ui_test_helpers.py | 64 ++++++++++++++++ 8 files changed, 186 insertions(+), 59 deletions(-) create mode 100644 cypress/integration/control_link.js create mode 100644 frappe/tests/ui_test_helpers.py diff --git a/cypress/integration/control_link.js b/cypress/integration/control_link.js new file mode 100644 index 0000000000..dba46979c1 --- /dev/null +++ b/cypress/integration/control_link.js @@ -0,0 +1,75 @@ +context('Control Link', () => { + beforeEach(() => { + cy.login('Administrator', 'qwe'); + cy.visit('/desk'); + cy.create_records({ + doctype: 'ToDo', + description: 'this is a test todo for link' + }).as('todos'); + }); + + function get_dialog_with_link() { + return cy.dialog({ + title: 'Link', + fields: [ + { + 'label': 'Select ToDo', + 'fieldname': 'link', + 'fieldtype': 'Link', + 'options': 'ToDo' + } + ] + }); + } + + it('should set the valid value', () => { + get_dialog_with_link().as('dialog'); + + cy.server(); + cy.route('POST', '/api/method/frappe.desk.search.search_link').as('search_link'); + + cy.get('.frappe-control[data-fieldname=link] input') + .focus() + .type('todo for li') + .type('n', { delay: 600 }) + .type('k', { delay: 700 }); + cy.wait('@search_link'); + cy.get('.frappe-control[data-fieldname=link] ul').should('be.visible'); + cy.get('.frappe-control[data-fieldname=link] input').type('{downarrow}{enter}', { delay: 100 }); + cy.get('.frappe-control[data-fieldname=link] input').blur(); + cy.get('@dialog').then(dialog => { + cy.get('@todos').then(todos => { + let value = dialog.get_value('link'); + expect(value).to.eq(todos[0]); + }); + }); + }); + + it.only('should unset invalid value', () => { + get_dialog_with_link().as('dialog'); + + cy.server(); + cy.route('GET', '/api/method/frappe.desk.form.utils.validate_link*').as('validate_link'); + + cy.get('.frappe-control[data-fieldname=link] input') + .type('invalid value', { delay: 100 }) + .blur(); + cy.wait('@validate_link'); + cy.get('.frappe-control[data-fieldname=link] input').should('have.value', ''); + }); + + it('should route to form on arrow click', () => { + get_dialog_with_link().as('dialog'); + + cy.server(); + cy.route('GET', '/api/method/frappe.desk.form.utils.validate_link*').as('validate_link'); + + cy.get('@todos').then(todos => { + cy.get('.frappe-control[data-fieldname=link] input').type(todos[0]).blur(); + cy.wait('@validate_link'); + cy.get('.frappe-control[data-fieldname=link] input').focus(); + cy.get('.frappe-control[data-fieldname=link] .link-btn').click(); + cy.location('hash').should('eq', `#Form/ToDo/${todos[0]}`); + }); + }); +}); diff --git a/cypress/integration/control_rating.js b/cypress/integration/control_rating.js index a367a82273..e9692ea95b 100644 --- a/cypress/integration/control_rating.js +++ b/cypress/integration/control_rating.js @@ -1,14 +1,21 @@ -context('Rating Control', () => { - beforeEach(() => { +context('Control Rating', () => { + before(() => { cy.login('Administrator', 'qwe'); + cy.visit('/desk'); }); + function get_dialog_with_rating() { + return cy.dialog({ + title: 'Rating', + fields: [{ + 'fieldname': 'rate', + 'fieldtype': 'Rating', + }] + }); + } + it('click on the star rating to record value', () => { - cy.visit('/desk'); - cy.dialog('Rating', [{ - 'fieldname': 'rate', - 'fieldtype': 'Rating', - }]).as('dialog'); + get_dialog_with_rating().as('dialog'); cy.get('div.rating') .children('i.fa') @@ -18,15 +25,13 @@ context('Rating Control', () => { cy.get('@dialog').then(dialog => { var value = dialog.get_value('rate'); expect(value).to.equal(1); + dialog.hide(); }); }); it('hover on the star', () => { - cy.visit('/desk'); - cy.dialog('Rating', [{ - 'fieldname': 'rate', - 'fieldtype': 'Rating', - }]); + get_dialog_with_rating(); + cy.get('div.rating') .children('i.fa') .first() diff --git a/cypress/integration/list_view.js b/cypress/integration/list_view.js index f4deb66c99..45c5839ad9 100644 --- a/cypress/integration/list_view.js +++ b/cypress/integration/list_view.js @@ -3,7 +3,7 @@ context('List View', () => { cy.login('Administrator', 'qwe'); cy.visit('/desk'); cy.window().its('frappe').then(frappe => { - frappe.call("frappe.tests.test_utils.setup_workflow"); + frappe.call("frappe.tests.ui_test_helpers.setup_workflow"); }); cy.clear_cache(); }); diff --git a/cypress/integration/relative_filters.js b/cypress/integration/relative_filters.js index c071ce0355..fac9a99d50 100644 --- a/cypress/integration/relative_filters.js +++ b/cypress/integration/relative_filters.js @@ -7,7 +7,7 @@ context('Relative Timeframe', () => { cy.login('Administrator', 'qwe'); cy.visit('/desk'); cy.window().its('frappe').then(frappe => { - frappe.call("frappe.tests.test_utils.create_todo_records"); + frappe.call("frappe.tests.ui_test_helpers.create_todo_records"); }); }); it('set relative filter for Previous and check list', () => { diff --git a/cypress/support/commands.js b/cypress/support/commands.js index 850898d4c5..622d2c9ba8 100644 --- a/cypress/support/commands.js +++ b/cypress/support/commands.js @@ -35,6 +35,29 @@ Cypress.Commands.add('login', (email, password) => { }); }); +Cypress.Commands.add('call', (method, args) => { + return cy.window().its('frappe.csrf_token').then(csrf_token => { + return cy.request({ + url: `/api/method/${method}`, + method: 'POST', + body: args, + headers: { + 'Accept': 'application/json', + 'Content-Type': 'application/json', + 'X-Frappe-CSRF-Token': csrf_token + } + }).then(res => { + expect(res.status).eq(200); + return res.body; + }); + }); +}); + +Cypress.Commands.add('create_records', (doc) => { + return cy.call('frappe.tests.ui_test_helpers.create_if_not_exists', { doc }) + .then(r => r.message); +}); + Cypress.Commands.add('fill_field', (fieldname, value, fieldtype='Data') => { let selector = `.form-control[data-fieldname="${fieldname}"]`; @@ -72,15 +95,9 @@ Cypress.Commands.add('clear_cache', () => { }); }); -Cypress.Commands.add('dialog', (title, fields) => { - cy.window().then(win => { - var d = new win.frappe.ui.Dialog({ - title: title, - fields: fields, - primary_action: function(){ - d.hide(); - } - }); +Cypress.Commands.add('dialog', (opts) => { + return cy.window().then(win => { + var d = new win.frappe.ui.Dialog(opts); d.show(); return d; }); diff --git a/frappe/public/js/frappe/form/controls/link.js b/frappe/public/js/frappe/form/controls/link.js index 27fe04e9dc..ae3a8bafaf 100644 --- a/frappe/public/js/frappe/form/controls/link.js +++ b/frappe/public/js/frappe/form/controls/link.js @@ -234,7 +234,7 @@ frappe.ui.form.ControlLink = frappe.ui.form.ControlData.extend({ me.awesomplete.list = me.$input.cache[doctype][term]; } }); - }, 618)); + }, 500)); this.$input.on("blur", function() { if(me.selected) { diff --git a/frappe/tests/test_utils.py b/frappe/tests/test_utils.py index 46fa2fb00a..8cdfe3e1a9 100644 --- a/frappe/tests/test_utils.py +++ b/frappe/tests/test_utils.py @@ -3,10 +3,9 @@ from __future__ import unicode_literals import unittest -import frappe from frappe.utils import evaluate_filters, money_in_words, scrub_urls, get_url -from frappe.utils import ceil, floor, now, add_to_date +from frappe.utils import ceil, floor class TestFilters(unittest.TestCase): def test_simple_dict(self): @@ -123,36 +122,3 @@ class TestHTMLUtils(unittest.TestCase): clean = clean_email_html(sample) self.assertTrue('

    Hello

    ' in clean) self.assertTrue('text' in clean) - -@frappe.whitelist() -def create_todo_records(): - if frappe.db.get_all('ToDo', {'description': 'this is first todo'}): - return - - frappe.get_doc({ - "doctype": "ToDo", - "date": add_to_date(now(), days=3), - "description": "this is first todo" - }).insert() - frappe.get_doc({ - "doctype": "ToDo", - "date": add_to_date(now(), days=-3), - "description": "this is second todo" - }).insert() - frappe.get_doc({ - "doctype": "ToDo", - "date": add_to_date(now(), months=2), - "description": "this is third todo" - }).insert() - frappe.get_doc({ - "doctype": "ToDo", - "date": add_to_date(now(), months=-2), - "description": "this is fourth todo" - }).insert() - -@frappe.whitelist() -def setup_workflow(): - from frappe.workflow.doctype.workflow.test_workflow import create_todo_workflow - create_todo_workflow() - create_todo_records() - frappe.clear_cache() \ No newline at end of file diff --git a/frappe/tests/ui_test_helpers.py b/frappe/tests/ui_test_helpers.py new file mode 100644 index 0000000000..7df534aaa1 --- /dev/null +++ b/frappe/tests/ui_test_helpers.py @@ -0,0 +1,64 @@ +import frappe +from frappe.utils import add_to_date, now + +@frappe.whitelist() +def create_if_not_exists(doc): + '''Create records if they dont exist. + Will check for uniqueness by checking if a record exists with these field value pairs + + :param doc: dict of field value pairs. can be a list of dict for multiple records. + ''' + + doc = frappe.parse_json(doc) + + if not isinstance(doc, list): + docs = [doc] + else: + docs = doc + + names = [] + for doc in docs: + filters = doc.copy() + filters.pop('doctype') + name = frappe.db.exists(doc.doctype, filters) + if not name: + d = frappe.get_doc(doc) + d.insert(ignore_permissions=True) + name = d.name + names.append(name) + + return names + + +@frappe.whitelist() +def create_todo_records(): + if frappe.db.get_all('ToDo', {'description': 'this is first todo'}): + return + + frappe.get_doc({ + "doctype": "ToDo", + "date": add_to_date(now(), days=3), + "description": "this is first todo" + }).insert() + frappe.get_doc({ + "doctype": "ToDo", + "date": add_to_date(now(), days=-3), + "description": "this is second todo" + }).insert() + frappe.get_doc({ + "doctype": "ToDo", + "date": add_to_date(now(), months=2), + "description": "this is third todo" + }).insert() + frappe.get_doc({ + "doctype": "ToDo", + "date": add_to_date(now(), months=-2), + "description": "this is fourth todo" + }).insert() + +@frappe.whitelist() +def setup_workflow(): + from frappe.workflow.doctype.workflow.test_workflow import create_todo_workflow + create_todo_workflow() + create_todo_records() + frappe.clear_cache() From a48e39abd78f623bdec975a6b2f99596495fd7c4 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Wed, 3 Jul 2019 10:28:55 +0530 Subject: [PATCH 10/73] chore: Enable mergify for auto merging of PRs (#7810) This PR enables mergify.io integration for automatic merging of Pull Requests. Pull Requests will be merged if the following checks are passing - Codacy - Travis - Semantic Title - Snyk (package.json and requirements.txt) - don't-merge label is not added - PR is approved by atleast one person --- .mergify.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .mergify.yml diff --git a/.mergify.yml b/.mergify.yml new file mode 100644 index 0000000000..b0e11e0e6d --- /dev/null +++ b/.mergify.yml @@ -0,0 +1,13 @@ +pull_request_rules: + - name: Automatic merge on CI success and review + conditions: + - status-success=Codacy/PR Quality Review + - status-success=Semantic Pull Request + - status-success=continuous-integration/travis-ci/pr + - status-success=security/snyk - package.json (frappe) + - status-success=security/snyk - requirements.txt (frappe) + - label!=don't-merge + - "#approved-reviews-by>=1" + actions: + merge: + method: merge From 472933c5d7f1138f00e7ddeff4202a156c513686 Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Wed, 3 Jul 2019 10:32:33 +0530 Subject: [PATCH 11/73] refactor: disable checkbox for read-only grids --- frappe/public/js/frappe/form/grid.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/frappe/public/js/frappe/form/grid.js b/frappe/public/js/frappe/form/grid.js index 72e6f1ae98..5d5df4a769 100644 --- a/frappe/public/js/frappe/form/grid.js +++ b/frappe/public/js/frappe/form/grid.js @@ -253,6 +253,8 @@ export default class Grid { // toolbar this.setup_toolbar(); + if (this.display_status == 'Read') this.toggle_checkboxes(false); + else this.toggle_checkboxes(true); // sortable if(this.frm && this.is_sortable() && !this.sortable_setup_done) { @@ -445,6 +447,12 @@ export default class Grid { this.get_docfield(fieldname).hidden = show ? 0 : 1; this.refresh(); } + toggle_checkboxes(enable) { + let check_boxes = this.wrapper.find(".grid-row-check") + check_boxes.each((item) => { + check_boxes[item].disabled = !enable; + }) + } get_docfield(fieldname) { return frappe.meta.get_docfield(this.doctype, fieldname, this.frm ? this.frm.docname : null); } From 8c9bb0eb09d96ff9203ab33de846f777077299e5 Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Wed, 3 Jul 2019 11:11:42 +0530 Subject: [PATCH 12/73] Update frappe/public/js/frappe/form/grid.js Co-Authored-By: Faris Ansari --- frappe/public/js/frappe/form/grid.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/public/js/frappe/form/grid.js b/frappe/public/js/frappe/form/grid.js index 5d5df4a769..d973d3c676 100644 --- a/frappe/public/js/frappe/form/grid.js +++ b/frappe/public/js/frappe/form/grid.js @@ -253,7 +253,7 @@ export default class Grid { // toolbar this.setup_toolbar(); - if (this.display_status == 'Read') this.toggle_checkboxes(false); + this.toggle_checkboxes(this.display_status !== 'Read'); else this.toggle_checkboxes(true); // sortable @@ -788,4 +788,4 @@ export default class Grid { // hide all custom buttons this.grid_buttons.find('.btn-custom').addClass('hidden'); } -} \ No newline at end of file +} From a8ec7b4941a0a8f9d3efd13c993527a4b50d9b5d Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Wed, 3 Jul 2019 11:12:16 +0530 Subject: [PATCH 13/73] Update frappe/public/js/frappe/form/grid.js Co-Authored-By: Faris Ansari --- frappe/public/js/frappe/form/grid.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/form/grid.js b/frappe/public/js/frappe/form/grid.js index d973d3c676..944b6952d7 100644 --- a/frappe/public/js/frappe/form/grid.js +++ b/frappe/public/js/frappe/form/grid.js @@ -448,7 +448,7 @@ export default class Grid { this.refresh(); } toggle_checkboxes(enable) { - let check_boxes = this.wrapper.find(".grid-row-check") + this.wrapper.find(".grid-row-check").prop('disabled', !enable) check_boxes.each((item) => { check_boxes[item].disabled = !enable; }) From 82fd9e568c5334410f6a6ce48d2b7d3956a1a024 Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Wed, 3 Jul 2019 11:13:11 +0530 Subject: [PATCH 14/73] refactor: code improvements --- frappe/public/js/frappe/form/grid.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/frappe/public/js/frappe/form/grid.js b/frappe/public/js/frappe/form/grid.js index 944b6952d7..774dc7c9db 100644 --- a/frappe/public/js/frappe/form/grid.js +++ b/frappe/public/js/frappe/form/grid.js @@ -449,9 +449,6 @@ export default class Grid { } toggle_checkboxes(enable) { this.wrapper.find(".grid-row-check").prop('disabled', !enable) - check_boxes.each((item) => { - check_boxes[item].disabled = !enable; - }) } get_docfield(fieldname) { return frappe.meta.get_docfield(this.doctype, fieldname, this.frm ? this.frm.docname : null); From e34a948e6e5ae02fade00a5a72281ee394f697f4 Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Wed, 3 Jul 2019 11:14:46 +0530 Subject: [PATCH 15/73] refactor: removed stray else --- frappe/public/js/frappe/form/grid.js | 1 - 1 file changed, 1 deletion(-) diff --git a/frappe/public/js/frappe/form/grid.js b/frappe/public/js/frappe/form/grid.js index 774dc7c9db..2dfca08b0d 100644 --- a/frappe/public/js/frappe/form/grid.js +++ b/frappe/public/js/frappe/form/grid.js @@ -254,7 +254,6 @@ export default class Grid { // toolbar this.setup_toolbar(); this.toggle_checkboxes(this.display_status !== 'Read'); - else this.toggle_checkboxes(true); // sortable if(this.frm && this.is_sortable() && !this.sortable_setup_done) { From 570fd44248aa262abd58c0c3135a18abcf612017 Mon Sep 17 00:00:00 2001 From: Anurag Mishra Date: Wed, 3 Jul 2019 10:58:15 +0530 Subject: [PATCH 16/73] fix: Translating Errors and Messages --- frappe/core/doctype/doctype/doctype.py | 2 +- frappe/core/doctype/file/file.py | 3 ++- frappe/core/doctype/success_action/success_action.js | 2 +- frappe/core/doctype/user_permission/user_permission_list.js | 2 +- frappe/database/database.py | 2 +- frappe/desk/doctype/dashboard_chart/dashboard_chart.py | 5 +++-- frappe/model/utils/__init__.py | 3 ++- frappe/printing/doctype/print_settings/print_settings.py | 2 +- frappe/public/js/frappe/form/controls/table.js | 2 +- frappe/public/js/frappe/web_form/web_form_list.js | 2 +- frappe/utils/print_format.py | 2 +- 11 files changed, 15 insertions(+), 12 deletions(-) diff --git a/frappe/core/doctype/doctype/doctype.py b/frappe/core/doctype/doctype/doctype.py index 07da5a8fe3..bd528bb4d7 100644 --- a/frappe/core/doctype/doctype/doctype.py +++ b/frappe/core/doctype/doctype/doctype.py @@ -384,7 +384,7 @@ class DocType(Document): os.path.join(new_path, fname.replace(frappe.scrub(old), frappe.scrub(new)))]) self.rename_inside_controller(new, old, new_path) - frappe.msgprint('Renamed files and replaced code in controllers, please check!') + frappe.msgprint(_('Renamed files and replaced code in controllers, please check!')) def rename_inside_controller(self, new, old, new_path): for fname in ('{}.js', '{}.py', '{}_list.js', '{}_calendar.js', 'test_{}.py', 'test_{}.js'): diff --git a/frappe/core/doctype/file/file.py b/frappe/core/doctype/file/file.py index fff4a5e344..3d8babae6a 100755 --- a/frappe/core/doctype/file/file.py +++ b/frappe/core/doctype/file/file.py @@ -2,6 +2,7 @@ # MIT License. See license.txt from __future__ import unicode_literals +from frappe import _ """ record of files @@ -446,7 +447,7 @@ class File(NestedSet): def validate_url(self, df=None): if self.file_url: if not self.file_url.startswith(("http://", "https://", "/files/", "/private/files/")): - frappe.throw("URL must start with 'http://' or 'https://'") + frappe.throw(_("URL must start with 'http://' or 'https://'")) return self.file_url = unquote(self.file_url) diff --git a/frappe/core/doctype/success_action/success_action.js b/frappe/core/doctype/success_action/success_action.js index b8d56d3c8a..d73d3db326 100644 --- a/frappe/core/doctype/success_action/success_action.js +++ b/frappe/core/doctype/success_action/success_action.js @@ -15,7 +15,7 @@ frappe.ui.form.on('Success Action', { validate: (frm) => { const checked_actions = frm.action_multicheck.get_checked_options(); if (checked_actions.length < 2) { - frappe.msgprint('Select atleast 2 actions'); + frappe.msgprint(__('Select atleast 2 actions')); } else { return true; } diff --git a/frappe/core/doctype/user_permission/user_permission_list.js b/frappe/core/doctype/user_permission/user_permission_list.js index a0b553c43a..3e822f0007 100644 --- a/frappe/core/doctype/user_permission/user_permission_list.js +++ b/frappe/core/doctype/user_permission/user_permission_list.js @@ -166,7 +166,7 @@ frappe.listview_settings['User Permission'] = { return data; } if(data.apply_to_all_doctypes == 0 && !("applicable_doctypes" in data)) { - frappe.throw("Please select applicable Doctypes"); + frappe.throw(__("Please select applicable Doctypes")); } return data; }, diff --git a/frappe/database/database.py b/frappe/database/database.py index 3aab284de0..7650af43f9 100644 --- a/frappe/database/database.py +++ b/frappe/database/database.py @@ -924,7 +924,7 @@ class Database(object): conditions=conditions ), values) else: - frappe.throw('No conditions provided') + frappe.throw(_('No conditions provided')) def log_touched_tables(self, query, values=None): if values: diff --git a/frappe/desk/doctype/dashboard_chart/dashboard_chart.py b/frappe/desk/doctype/dashboard_chart/dashboard_chart.py index ff54f95031..53d1110e83 100644 --- a/frappe/desk/doctype/dashboard_chart/dashboard_chart.py +++ b/frappe/desk/doctype/dashboard_chart/dashboard_chart.py @@ -4,6 +4,7 @@ from __future__ import unicode_literals import frappe, json +from frappe import _ from frappe.core.page.dashboard.dashboard import cache_source, get_from_date_from_timespan from frappe.utils import nowdate, add_to_date, getdate, get_last_day, formatdate from frappe.model.document import Document @@ -199,6 +200,6 @@ class DashboardChart(Document): def check_required_field(self): if not self.based_on: - frappe.throw("Time series based on is required to create a dashboard chart") + frappe.throw(_("Time series based on is required to create a dashboard chart")) if not self.document_type: - frappe.throw("Document type is required to create a dashboard chart") \ No newline at end of file + frappe.throw(_("Document type is required to create a dashboard chart")) \ No newline at end of file diff --git a/frappe/model/utils/__init__.py b/frappe/model/utils/__init__.py index e5d329cd79..efbe46a4ab 100644 --- a/frappe/model/utils/__init__.py +++ b/frappe/model/utils/__init__.py @@ -4,6 +4,7 @@ from __future__ import unicode_literals, print_function from six.moves import range import frappe +from frappe import _ from frappe.utils import cstr from frappe.build import html_to_js_template import re @@ -62,7 +63,7 @@ def render_include(content): if "{% include" in content: paths = re.findall(r'''{% include\s['"](.*)['"]\s%}''', content) if not paths: - frappe.throw('Invalid include path', InvalidIncludePath) + frappe.throw(_('Invalid include path'), InvalidIncludePath) for path in paths: app, app_path = path.split('/', 1) diff --git a/frappe/printing/doctype/print_settings/print_settings.py b/frappe/printing/doctype/print_settings/print_settings.py index 2758f0aa9c..9bb87ab311 100644 --- a/frappe/printing/doctype/print_settings/print_settings.py +++ b/frappe/printing/doctype/print_settings/print_settings.py @@ -19,7 +19,7 @@ class PrintSettings(Document): try: import cups except ImportError: - frappe.throw("You need to install pycups to use this feature!") + frappe.throw(_("You need to install pycups to use this feature!")) return try: cups.setServer(self.server_ip) diff --git a/frappe/public/js/frappe/form/controls/table.js b/frappe/public/js/frappe/form/controls/table.js index 5fad73364d..abffee0f71 100644 --- a/frappe/public/js/frappe/form/controls/table.js +++ b/frappe/public/js/frappe/form/controls/table.js @@ -37,7 +37,7 @@ frappe.ui.form.ControlTable = frappe.ui.form.Control.extend({ if (data.length === 1 & data[0].length === 1) return; if (data.length > 100){ data = data.slice(0, 100); - frappe.msgprint('for performance, only the first 100 rows processed!'); + frappe.msgprint(__('for performance, only the first 100 rows processed!')); } var fieldnames = []; var get_field = function(name_or_label){ diff --git a/frappe/public/js/frappe/web_form/web_form_list.js b/frappe/public/js/frappe/web_form/web_form_list.js index 3110856e0d..8ff2877b48 100644 --- a/frappe/public/js/frappe/web_form/web_form_list.js +++ b/frappe/public/js/frappe/web_form/web_form_list.js @@ -105,7 +105,7 @@ export default class WebFormList { this.web_list_start += this.page_length this.fetch_data().then((res) => { if (res.message.length === 0) { - frappe.msgprint("No more items to display") + frappe.msgprint(__("No more items to display")) } this.append_rows(res.message) }) diff --git a/frappe/utils/print_format.py b/frappe/utils/print_format.py index e325f17fc6..45f8926985 100644 --- a/frappe/utils/print_format.py +++ b/frappe/utils/print_format.py @@ -103,7 +103,7 @@ def print_by_server(doctype, name, print_format=None, doc=None, no_letterhead=0) try: import cups except ImportError: - frappe.throw("You need to install pycups to use this feature!") + frappe.throw(_("You need to install pycups to use this feature!")) return try: cups.setServer(print_settings.server_ip) From 91d0ea010a5a52b28d18726422da4f7cab8ee9c3 Mon Sep 17 00:00:00 2001 From: Anurag Mishra <32095923+Anurag810@users.noreply.github.com> Date: Wed, 3 Jul 2019 12:16:51 +0530 Subject: [PATCH 17/73] Update frappe/public/js/frappe/form/controls/table.js Co-Authored-By: Shivam Mishra --- frappe/public/js/frappe/form/controls/table.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/form/controls/table.js b/frappe/public/js/frappe/form/controls/table.js index abffee0f71..85af73823a 100644 --- a/frappe/public/js/frappe/form/controls/table.js +++ b/frappe/public/js/frappe/form/controls/table.js @@ -37,7 +37,7 @@ frappe.ui.form.ControlTable = frappe.ui.form.Control.extend({ if (data.length === 1 & data[0].length === 1) return; if (data.length > 100){ data = data.slice(0, 100); - frappe.msgprint(__('for performance, only the first 100 rows processed!')); + frappe.msgprint(__('For performance, only the first 100 rows were processed.')); } var fieldnames = []; var get_field = function(name_or_label){ From 75fb2733f14e5d6391e6991580a0cadd628dcf49 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Wed, 3 Jul 2019 12:32:33 +0530 Subject: [PATCH 18/73] refactor: Link filter description Filters can be described as objects or array. Arrays can be of length 3 or 4. Object values can be a literal or an array. This refactor handles all these scenarios. --- frappe/public/js/frappe/form/controls/link.js | 86 +++++++++++++------ 1 file changed, 58 insertions(+), 28 deletions(-) diff --git a/frappe/public/js/frappe/form/controls/link.js b/frappe/public/js/frappe/form/controls/link.js index ae3a8bafaf..838f4f129b 100644 --- a/frappe/public/js/frappe/form/controls/link.js +++ b/frappe/public/js/frappe/form/controls/link.js @@ -125,7 +125,7 @@ frappe.ui.form.ControlLink = frappe.ui.form.ControlData.extend({ if(!d.label) { d.label = d.value; } var _label = (me.translate_values) ? __(d.label) : d.label; - var html = "" + _label + ""; + var html = d.html || "" + _label + ""; if(d.description && d.value!==d.description) { html += '
    ' + __(d.description) + ''; } @@ -174,32 +174,12 @@ frappe.ui.form.ControlLink = frappe.ui.form.ControlData.extend({ // show filter description in awesomplete if (args.filters) { - let filter_string = []; - - if (Array.isArray(args.filters)) { - let filters = args.filters; - - filters.forEach((filter) => { - filter_string.push(`${frappe.model.unscrub(filter[1])} ${filter[2]} ${filter[3]}`); - }); - } else { - for (let [key, value] of Object.entries(args.filters)) { - if (Array.isArray(value) && value[1]) { - filter_string.push(`${frappe.model.unscrub(key)} ${value[0]} ${value[1]}`); - } else if (value) { - filter_string.push(`${frappe.model.unscrub(key)} as ${value}`); - } - } - } - - if (filter_string.length > 0) { - filter_string = "Filters applied for " + filter_string.join(", "); - + let filter_string = me.get_filter_description(args.filters); + if (filter_string) { r.results.push({ - label: "" - + __("{0}", [filter_string]) - + "", - value: "" + html: `${filter_string}`, + value: '', + action: () => {} }); } } @@ -250,8 +230,6 @@ frappe.ui.form.ControlLink = frappe.ui.form.ControlData.extend({ this.$input.on("awesomplete-open", function() { me.$wrapper.css({"z-index": 100}); me.$wrapper.find('ul').css({"z-index": 100}); - me.$wrapper.find('.disable-select').parents('li').css({"pointer-events": "none"}); - me.$wrapper.find('.disable-select').unwrap(); me.autocomplete_open = true; }); @@ -297,6 +275,58 @@ frappe.ui.form.ControlLink = frappe.ui.form.ControlData.extend({ } }); }, + + get_filter_description(filters) { + let doctype = this.get_options(); + let filter_array = []; + let meta = null; + + frappe.model.with_doctype(doctype, () => { + meta = frappe.get_meta(doctype); + }); + + // convert object style to array + if (!Array.isArray(filters)) { + for (let fieldname in filters) { + let value = filters[fieldname]; + if (!Array.isArray(value)) { + value = ['=', value]; + } + filter_array.push([fieldname, ...value]); // fieldname, operator, value + } + } else { + filter_array = filters; + } + + // add doctype if missing + filter_array = filter_array.map(filter => { + if (filter.length === 3) { + return [doctype, ...filter]; // doctype, fieldname, operator, value + } + return filter; + }); + + function get_filter_description(filter) { + let doctype = filter[0]; + let fieldname = filter[1]; + let label = meta + ? frappe.meta.get_docfield(doctype, fieldname).label + : frappe.model.unscrub(fieldname); + + let value = filter[3] == null || filter[3] === '' + ? __('empty') + : String(filter[3]); + + return [__(label).bold(), filter[2], value.bold()].join(' '); + } + + let filter_string = filter_array + .map(get_filter_description) + .join(', '); + + return __('Filters applied for {0}', [filter_string]); + }, + set_custom_query: function(args) { var set_nulls = function(obj) { $.each(obj, function(key, value) { From 9cca919318015455aa92a6216d81a19fa8774994 Mon Sep 17 00:00:00 2001 From: Prssanna Desai Date: Wed, 3 Jul 2019 13:40:55 +0530 Subject: [PATCH 19/73] feat(Form): Navigate to next and previous records (#7777) --- frappe/desk/form/utils.py | 21 ++++++-------- frappe/public/js/frappe/form/form.js | 37 +++++++++++++++++++++++++ frappe/public/js/frappe/form/toolbar.js | 10 +++++++ frappe/public/js/frappe/ui/keyboard.js | 4 ++- 4 files changed, 58 insertions(+), 14 deletions(-) diff --git a/frappe/desk/form/utils.py b/frappe/desk/form/utils.py index b0d9a5d123..da7c7a3a9e 100644 --- a/frappe/desk/form/utils.py +++ b/frappe/desk/form/utils.py @@ -18,7 +18,6 @@ def remove_attach(): file_name = frappe.form_dict.get('file_name') frappe.delete_doc('File', fid) - @frappe.whitelist() def validate_link(): """validate link when updated by user""" @@ -84,27 +83,23 @@ def update_comment(name, content): doc.save(ignore_permissions=True) @frappe.whitelist() -def get_next(doctype, value, prev, filters=None, order_by="modified desc"): - - prev = not int(prev) - sort_field, sort_order = order_by.split(" ") +def get_next(doctype, value, prev, filters, sort_order, sort_field): + prev = int(prev) if not filters: filters = [] if isinstance(filters, string_types): filters = json.loads(filters) - # condition based on sort order - condition = ">" if sort_order.lower()=="desc" else "<" + # # condition based on sort order + condition = ">" if sort_order.lower() == "asc" else "<" # switch the condition if prev: - condition = "<" if condition==">" else "<" - else: - sort_order = "asc" if sort_order.lower()=="desc" else "desc" + sort_order = "asc" if sort_order.lower() == "desc" else "desc" + condition = "<" if condition == ">" else ">" - # add condition for next or prev item - if not order_by[0] in [f[1] for f in filters]: - filters.append([doctype, sort_field, condition, value]) + # # add condition for next or prev item + filters.append([doctype, sort_field, condition, frappe.get_value(doctype, value, sort_field)]) res = frappe.get_list(doctype, fields = ["name"], diff --git a/frappe/public/js/frappe/form/form.js b/frappe/public/js/frappe/form/form.js index 28f4fb8a3a..79797f5560 100644 --- a/frappe/public/js/frappe/form/form.js +++ b/frappe/public/js/frappe/form/form.js @@ -87,6 +87,9 @@ frappe.ui.form.Form = class FrappeForm { page: this.page }); + // navigate records keyboard shortcuts + this.add_nav_keyboard_shortcuts(); + // print layout this.setup_print_layout(); @@ -112,6 +115,22 @@ frappe.ui.form.Form = class FrappeForm { this.setup_done = true; } + add_nav_keyboard_shortcuts() { + frappe.ui.keys.add_shortcut({ + shortcut: 'shift+>', + action: () => this.navigate_records(0), + page: this.page, + description: __('Go to next record') + }); + + frappe.ui.keys.add_shortcut({ + shortcut: 'shift+<', + action: () => this.navigate_records(1), + page: this.page, + description: __('Go to previous record') + }); + } + setup_print_layout() { this.print_preview = new frappe.ui.form.PrintPreview({ frm: this @@ -797,6 +816,24 @@ frappe.ui.form.Form = class FrappeForm { this.print_preview.toggle(); } + navigate_records(prev) { + let list_settings = frappe.get_user_settings(this.doctype)['List']; + let args = { + doctype: this.doctype, + value: this.docname, + filters: list_settings.filters, + sort_order: list_settings.sort_order, + sort_field: list_settings.sort_by, + prev, + }; + + frappe.call('frappe.desk.form.utils.get_next', args).then(r => { + if (r.message) { + frappe.set_route('Form', this.doctype, r.message); + } + }); + } + rename_doc() { frappe.model.rename_doc(this.doctype, this.docname); } diff --git a/frappe/public/js/frappe/form/toolbar.js b/frappe/public/js/frappe/form/toolbar.js index 244bf75708..fa22d488fb 100644 --- a/frappe/public/js/frappe/form/toolbar.js +++ b/frappe/public/js/frappe/form/toolbar.js @@ -192,6 +192,16 @@ frappe.ui.form.Toolbar = Class.extend({ frappe.new_doc(me.frm.doctype, true); }, true, 'Ctrl+B'); } + + // Navigate + if(!this.frm.is_new() && !issingle) { + this.page.add_action_icon("fa fa-chevron-left prev-doc", function() { + me.frm.navigate_records(1); + }); + this.page.add_action_icon("fa fa-chevron-right next-doc", function() { + me.frm.navigate_records(0); + }); + } }, can_save: function() { return this.get_docstatus()===0; diff --git a/frappe/public/js/frappe/ui/keyboard.js b/frappe/public/js/frappe/ui/keyboard.js index 158278d00b..f7752bca14 100644 --- a/frappe/public/js/frappe/ui/keyboard.js +++ b/frappe/public/js/frappe/ui/keyboard.js @@ -237,7 +237,9 @@ frappe.ui.keys.key_map = { 114: 'f3', 115: 'f4', 116: 'f5', - 191: '/' + 191: '/', + 188: '<', + 190: '>' } 'abcdefghijklmnopqrstuvwxyz'.split('').forEach((letter, i) => { From 7a3ef3848ecf2621bad7c07304ff7ae3bd83fda6 Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Wed, 3 Jul 2019 13:42:38 +0530 Subject: [PATCH 20/73] fix: Fetch color field in list view by default (#7808) Some views like Calendar, Gantt and Kanban use the color field for labeling. Currently, you have to add the color field in `{doctype}_list.js` for it to be fetched. --- frappe/public/js/frappe/list/list_view.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/list/list_view.js b/frappe/public/js/frappe/list/list_view.js index 1e414a527f..1e6911abd2 100644 --- a/frappe/public/js/frappe/list/list_view.js +++ b/frappe/public/js/frappe/list/list_view.js @@ -160,7 +160,8 @@ frappe.views.ListView = class ListView extends frappe.views.BaseList { this.meta.track_seen ? '_seen' : null, this.sort_by, 'enabled', - 'disabled' + 'disabled', + 'color' ); fields.forEach(f => this._add_field(f)); From c27ecfd1de86f6f5b75c9ba1559f3d0ebd2124ad Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Wed, 3 Jul 2019 19:30:37 +0530 Subject: [PATCH 21/73] chore: updated frappe-charts --- package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index ba76e35134..5ec0e4ee1b 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ "cookie": "^0.3.1", "express": "^4.16.2", "fast-deep-equal": "^2.0.1", - "frappe-charts": "^1.2.2", + "frappe-charts": "^1.2.3", "frappe-datatable": "^1.13.4", "frappe-gantt": "^0.1.0", "fuse.js": "^3.2.0", diff --git a/yarn.lock b/yarn.lock index aace8bd4dd..3cf81770d4 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1753,10 +1753,10 @@ fragment-cache@^0.2.1: dependencies: map-cache "^0.2.2" -frappe-charts@^1.2.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/frappe-charts/-/frappe-charts-1.2.2.tgz#2af592c1dfce07554b8278ad2fb330922fbcd5d8" - integrity sha512-TrZ/JPqvr/RWHKW0fneh3dDzKPm3d+oDEMJj8aREbOWXNhOOIwfonp0uLwo8hxyGEZPwpDAKqs0154GgahSXkA== +frappe-charts@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/frappe-charts/-/frappe-charts-1.2.3.tgz#ee1840864cfe5c9371b61f8ec9b8624633fdc84d" + integrity sha512-nHDCERSKni0JDT/0eooGpR3nE/NBKcAJEgbZfjojoA5D3jK4cT6B4kRT3m9EgIqMkwPllZncWUPp0zYtN8WSsQ== frappe-datatable@^1.13.4: version "1.13.4" From acce84ea0ca4b63c6c37db4fa7ad029346f1fc62 Mon Sep 17 00:00:00 2001 From: Himanshu Warekar Date: Thu, 4 Jul 2019 01:25:28 +0530 Subject: [PATCH 22/73] fix:check if emails exist --- .../google_contacts/google_contacts.py | 33 ++++++++++--------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/frappe/integrations/doctype/google_contacts/google_contacts.py b/frappe/integrations/doctype/google_contacts/google_contacts.py index 0ea65d7c68..6610173e3e 100644 --- a/frappe/integrations/doctype/google_contacts/google_contacts.py +++ b/frappe/integrations/doctype/google_contacts/google_contacts.py @@ -135,23 +135,24 @@ def sync(g_contact=None): for name in connection.get("names"): if name.get("metadata").get("primary"): - for email in connection.get("emailAddresses"): - if not frappe.db.exists("Contact", {"email_id": email.get("value")}): - contacts_updated += 1 + if connection.get("emailAddresses"): + for email in connection.get("emailAddresses"): + if not frappe.db.exists("Contact", {"email_id": email.get("value")}): + contacts_updated += 1 - frappe.get_doc({ - "doctype": "Contact", - "salutation": name.get("honorificPrefix") if name.get("honorificPrefix") else "", - "first_name": name.get("givenName") if name.get("givenName") else "", - "middle_name": name.get("middleName") if name.get("middleName") else "", - "last_name": name.get("familyName") if name.get("familyName") else "", - "email_id": email.get("value") if email.get("value") else "", - "designation": get_indexed_value(connection.get("organizations"), 0, "title"), - "phone": get_indexed_value(connection.get("phoneNumbers"), 0, "value"), - "mobile_no": get_indexed_value(connection.get("phoneNumbers"), 1, "value"), - "source": "Google Contacts", - "google_contacts_description": get_indexed_value(connection.get("organizations"), 0, "name") - }).insert(ignore_permissions=True) + frappe.get_doc({ + "doctype": "Contact", + "salutation": name.get("honorificPrefix") if name.get("honorificPrefix") else "", + "first_name": name.get("givenName") if name.get("givenName") else "", + "middle_name": name.get("middleName") if name.get("middleName") else "", + "last_name": name.get("familyName") if name.get("familyName") else "", + "email_id": email.get("value") if email.get("value") else "", + "designation": get_indexed_value(connection.get("organizations"), 0, "title"), + "phone": get_indexed_value(connection.get("phoneNumbers"), 0, "value"), + "mobile_no": get_indexed_value(connection.get("phoneNumbers"), 1, "value"), + "source": "Google Contacts", + "google_contacts_description": get_indexed_value(connection.get("organizations"), 0, "name") + }).insert(ignore_permissions=True) if g_contact: return _("{0} Google Contacts synced.").format(contacts_updated) if contacts_updated > 0 else _("No new Google Contacts synced.") From 30b78929d91e9482ac340934c2c62e9039593b65 Mon Sep 17 00:00:00 2001 From: Rohit Waghchaure Date: Thu, 4 Jul 2019 12:13:56 +0530 Subject: [PATCH 23/73] fix: not able to save event because of customized event category --- frappe/desk/doctype/event/event.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/desk/doctype/event/event.py b/frappe/desk/doctype/event/event.py index 1ad57246a6..e88c11b4f8 100644 --- a/frappe/desk/doctype/event/event.py +++ b/frappe/desk/doctype/event/event.py @@ -71,7 +71,7 @@ class Event(Document): communication.communication_date = self.starts_on communication.reference_doctype = self.doctype communication.reference_name = self.name - communication.communication_medium = communication_mapping[self.event_category] if self.event_category else "" + communication.communication_medium = communication_mapping.get(self.event_category) if self.event_category else "" communication.status = "Linked" communication.add_link(participant.reference_doctype, participant.reference_docname) communication.save(ignore_permissions=True) From 93bf25c098a639e72c269a5e7de365452655f6fa Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Thu, 4 Jul 2019 13:00:11 +0530 Subject: [PATCH 24/73] fix: last calendar routing --- frappe/public/js/frappe/views/calendar/calendar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/views/calendar/calendar.js b/frappe/public/js/frappe/views/calendar/calendar.js index 8a42b4b828..b84d37cff4 100644 --- a/frappe/public/js/frappe/views/calendar/calendar.js +++ b/frappe/public/js/frappe/views/calendar/calendar.js @@ -10,7 +10,7 @@ frappe.views.CalendarView = class CalendarView extends frappe.views.ListView { if (route.length === 3) { const doctype = route[1]; const user_settings = frappe.get_user_settings(doctype)['Calendar'] || {}; - route.push(user_settings.last_calendar_view || 'Default'); + route.push(user_settings.last_calendar || 'Default'); frappe.set_route(route); return true; } else { From 27a23b5eab8e24183ba8c323ed561922bd8e07c1 Mon Sep 17 00:00:00 2001 From: Suraj Shetty Date: Thu, 4 Jul 2019 15:10:20 +0530 Subject: [PATCH 25/73] fix: Inline graph for rtl languages --- frappe/public/less/form.less | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/frappe/public/less/form.less b/frappe/public/less/form.less index 06464a4bba..c82479c301 100644 --- a/frappe/public/less/form.less +++ b/frappe/public/less/form.less @@ -215,6 +215,19 @@ } } +.frappe-rtl .inline-graph { + direction: ltr; + display: block; + transform: scaleX(-1); + .inline-graph-count { + transform: scaleX(-1); + text-align: right; + } + .inline-graph-half:first-child .inline-graph-count { + text-align: left; + } +} + .progress-area { padding-top: 15px; padding-bottom: 15px; From 43c27453e9406452bcd3988999bf21f949c38559 Mon Sep 17 00:00:00 2001 From: sahil28297 <37302950+sahil28297@users.noreply.github.com> Date: Thu, 4 Jul 2019 16:09:47 +0530 Subject: [PATCH 26/73] fix(translator): send translator to .com instead of xyz (#7834) --- frappe/hooks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/hooks.py b/frappe/hooks.py index f6d173c202..db5984ddb3 100644 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -18,8 +18,8 @@ app_email = "info@frappe.io" docs_app = "frappe_io" -translation_contribution_url = "https://translate.erpnext.xyz/api/method/translator.api.add_translation" -translation_contribution_status = "https://translate.erpnext.xyz/api/method/translator.api.translation_status" +translation_contribution_url = "https://translate.erpnext.com/api/method/translator.api.add_translation" +translation_contribution_status = "https://translate.erpnext.com/api/method/translator.api.translation_status" before_install = "frappe.utils.install.before_install" after_install = "frappe.utils.install.after_install" From c12f4bc0995ab9fe6c7cf542afb6addad6a3a8c4 Mon Sep 17 00:00:00 2001 From: Prssanna Desai Date: Tue, 18 Jun 2019 12:53:20 +0530 Subject: [PATCH 27/73] feat(Sidebar): Add group by to list sidebar --- frappe/desk/listview.py | 23 ++++- frappe/public/build.json | 1 + .../public/js/frappe/list/list_sidebar.html | 19 +++- frappe/public/js/frappe/list/list_sidebar.js | 99 +++++++++++++++++++ .../js/frappe/list/list_sidebar_group_by.html | 15 +++ 5 files changed, 151 insertions(+), 6 deletions(-) create mode 100644 frappe/public/js/frappe/list/list_sidebar_group_by.html diff --git a/frappe/desk/listview.py b/frappe/desk/listview.py index f31aae401e..7bac07e357 100644 --- a/frappe/desk/listview.py +++ b/frappe/desk/listview.py @@ -49,4 +49,25 @@ def get_user_assignments_and_count(doctype, current_filters): count desc limit 50""".format(subquery_condition = subquery_condition), as_dict=True) - return todo_list \ No newline at end of file + return todo_list + +@frappe.whitelist() +def get_group_by_count(doctype, current_filters, field): + current_filters = json.loads(current_filters) + subquery= '' + if current_filters: + subquery = frappe.get_all(doctype, + filters=current_filters, return_query = True) + subquery = subquery[subquery.index('where'):subquery.index('order')] + + group_by_list = frappe.db.sql("""select `tab{doctype}`.{field} as name, count(*) as count + from + `tab{doctype}` + {subquery} + group by + `tab{doctype}`.{field} + order by + count desc + limit 50""".format(subquery= subquery, doctype = doctype, field = field), as_dict=True) + + return group_by_list diff --git a/frappe/public/build.json b/frappe/public/build.json index 203a642195..e36b29f9dd 100755 --- a/frappe/public/build.json +++ b/frappe/public/build.json @@ -276,6 +276,7 @@ "public/js/frappe/list/list_sidebar.js", "public/js/frappe/list/list_sidebar.html", "public/js/frappe/list/list_sidebar_stat.html", + "public/js/frappe/list/list_sidebar_group_by.html", "public/js/frappe/list/list_view_permission_restrictions.html", "public/js/frappe/views/gantt/gantt_view.js", diff --git a/frappe/public/js/frappe/list/list_sidebar.html b/frappe/public/js/frappe/list/list_sidebar.html index c8c2239b03..09a58251a7 100644 --- a/frappe/public/js/frappe/list/list_sidebar.html +++ b/frappe/public/js/frappe/list/list_sidebar.html @@ -52,8 +52,15 @@ -
  • {{ __("Help") }}
  • + {% } %} + + + + `; - } + }; let html = this.group_by_fields.map(get_item_html).join(''); this.$wrapper.find('.list-group-by-fields').html(html); } @@ -91,7 +91,7 @@ frappe.views.ListGroupBy = class ListGroupBy { }); } - get_group_by_dropdown_fields() { + get_group_by_dropdown_fields() { let group_by_fields = []; let fields = this.list_view.meta.fields.filter((f)=> ["Select", "Link"].includes(f.fieldtype)); group_by_fields.push({ @@ -115,7 +115,7 @@ frappe.views.ListGroupBy = class ListGroupBy { doctype: this.doctype, current_filters: this.list_view.get_filters_for_args(), field: field, - } + }; return frappe.call('frappe.desk.listview.get_group_by_count', args).then((data) => { if(field === 'assigned_to') { let current_user = data.message.find(user => user.name === frappe.session.user); @@ -139,7 +139,7 @@ frappe.views.ListGroupBy = class ListGroupBy { ${name} ${field.count} `; - } + }; let standard_html = `