From 3277f0f63341f2878e0812897040bf1275845bfb Mon Sep 17 00:00:00 2001 From: Tsutomu Mimori Date: Wed, 8 Jul 2015 18:03:52 +0900 Subject: [PATCH 01/14] erpnext #3361 --- frappe/public/js/frappe/upload.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frappe/public/js/frappe/upload.js b/frappe/public/js/frappe/upload.js index 6cf7b9616a..481ffda426 100644 --- a/frappe/public/js/frappe/upload.js +++ b/frappe/public/js/frappe/upload.js @@ -137,6 +137,7 @@ frappe.upload = { var a = parts[1]; } - return atob(a); + return decodeURIComponent(escape(atob(a))); + } } From 5ca8e26b75b06497c276a69096e231e9f4a91943 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Thu, 9 Jul 2015 10:29:16 +0530 Subject: [PATCH 02/14] [minor] fix help in email alert frappe/erpnext#3538 --- frappe/data/conf.py | 52 ------------------- .../doctype/email_alert/email_alert.json | 4 +- 2 files changed, 2 insertions(+), 54 deletions(-) delete mode 100644 frappe/data/conf.py diff --git a/frappe/data/conf.py b/frappe/data/conf.py deleted file mode 100644 index bce5d009a9..0000000000 --- a/frappe/data/conf.py +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors -# MIT License. See license.txt - -# DEPRECATED only for reference - -from __future__ import unicode_literals -# app configuration - -# database config -db_name = '%(db_name)s' -db_password = '%(db_password)s' - -# user attachments stored in -files_path = 'public/files' -public_path = 'public' - -# max file attachment size (default 1MB) -max_file_size = 1000000 - -# max email size in bytes -max_email_size = 0 - -# total pop session timeout in seconds -pop_timeout = 0 - -# generate schema (.txt files) -developer_mode = 0 - -# clear cache on refresh -auto_cache_clear = 0 - -# email logs to admin (beta) -admin_email_notification = 0 - -# user timezone -user_timezone = 'Asia/Calcutta' - -# outgoing mail settings -mail_server = None -mail_login = None -mail_password = None -mail_port = None -use_ssl = None -auto_email_id = None - -# logging settings -log_file_name = 'logs/error_log.txt' -debug_log_dbs = [] -log_level = 'logging.INFO' -log_file_size = 5000 -log_file_backup_count = 5 - diff --git a/frappe/email/doctype/email_alert/email_alert.json b/frappe/email/doctype/email_alert/email_alert.json index bc60787f95..ed9cc746bc 100644 --- a/frappe/email/doctype/email_alert/email_alert.json +++ b/frappe/email/doctype/email_alert/email_alert.json @@ -129,7 +129,7 @@ "fieldname": "message_examples", "fieldtype": "HTML", "label": "Message Examples", - "options": "
Message Example (Markdown)
\n
Transaction {{ doc.name }} has exceeded Due Date. Please take relevant action\n\n#### Details\n\nCustomer: {{ doc.customer }}\nAmount: {{ doc.total_amount }}
", + "options": "
Message Example
\n\n
\n

Order Overdue

\n\n

Transaction {{ doc.name }} has exceeded Due Date. Please take necessary action.

\n\n

Details

\n\n
    \n
  • Customer: {{ doc.customer }}\n
  • Amount: {{ doc.total_amount }}\n
\n
", "permlevel": 0 }, { @@ -141,7 +141,7 @@ } ], "icon": "icon-envelope", - "modified": "2015-03-25 06:20:07.472953", + "modified": "2015-07-09 00:27:00.169741", "modified_by": "Administrator", "module": "Email", "name": "Email Alert", From e585fa2552fd48589ff42cb6cec7875b5e8f6ef6 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Thu, 9 Jul 2015 11:31:36 +0530 Subject: [PATCH 03/14] [fix] catch enter in dialog as submit fixes frappe/erpnext#3555 --- frappe/public/js/frappe/ui/field_group.js | 4 ++-- frappe/public/js/frappe/ui/messages.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/frappe/public/js/frappe/ui/field_group.js b/frappe/public/js/frappe/ui/field_group.js index dfe47b5ae0..f7b1198b67 100644 --- a/frappe/public/js/frappe/ui/field_group.js +++ b/frappe/public/js/frappe/ui/field_group.js @@ -32,9 +32,9 @@ frappe.ui.FieldGroup = frappe.ui.form.Layout.extend({ var me = this; $(this.body).find('input[type="text"], input[type="password"]').keypress(function(e) { if(e.which==13) { - if(this.has_primary_action) { + if(me.has_primary_action) { e.preventDefault(); - this.get_primary_btn().trigger("click"); + me.get_primary_btn().trigger("click"); } } }); diff --git a/frappe/public/js/frappe/ui/messages.js b/frappe/public/js/frappe/ui/messages.js index 7769a0010d..bb6a114a48 100644 --- a/frappe/public/js/frappe/ui/messages.js +++ b/frappe/public/js/frappe/ui/messages.js @@ -48,7 +48,7 @@ frappe.prompt = function(fields, callback, title, primary_label) { var d = new frappe.ui.Dialog({ fields: fields, title: title || __("Enter Value"), - }) + }); d.set_primary_action(primary_label || __("Submit"), function() { var values = d.get_values(); if(!values) { @@ -56,7 +56,7 @@ frappe.prompt = function(fields, callback, title, primary_label) { } d.hide(); callback(values); - }) + }); d.show(); return d; } From 1fb5b9eebe696e665e9635791d2c754432c4299a Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 10 Jul 2015 11:16:02 +0530 Subject: [PATCH 04/14] Reset permissions for DocType --- frappe/patches.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/frappe/patches.txt b/frappe/patches.txt index c306188ee8..13c38027c1 100644 --- a/frappe/patches.txt +++ b/frappe/patches.txt @@ -80,3 +80,4 @@ frappe.patches.v5_0.fix_text_editor_file_urls execute:frappe.db.sql("update `tabComment` set comment_type='Comment' where comment_doctype='Blog Post' and ifnull(comment_type, '')=''") frappe.patches.v5_0.modify_session frappe.patches.v5_0.expire_old_scheduler_logs +execute:frappe.permissions.reset_perms("DocType") \ No newline at end of file From 466b1cac2ca2b3bceba7c26f83bedc72153bdf6a Mon Sep 17 00:00:00 2001 From: Pratik Vyas Date: Fri, 10 Jul 2015 12:04:55 +0530 Subject: [PATCH 05/14] Update translations --- frappe/translations/ar.csv | 4 +- frappe/translations/de.csv | 8 +- frappe/translations/fa.csv | 16 +-- frappe/translations/fr.csv | 6 +- frappe/translations/hr.csv | 10 +- frappe/translations/hu.csv | 264 +++++++++++++++++----------------- frappe/translations/id.csv | 32 ++--- frappe/translations/nl.csv | 2 +- frappe/translations/pl.csv | 120 ++++++++-------- frappe/translations/ro.csv | 70 ++++----- frappe/translations/sr.csv | 28 ++-- frappe/translations/zh-cn.csv | 9 -- frappe/translations/zh-tw.csv | 197 +++++++++++++------------ 13 files changed, 378 insertions(+), 388 deletions(-) diff --git a/frappe/translations/ar.csv b/frappe/translations/ar.csv index 7e0455df59..0d4653536a 100644 --- a/frappe/translations/ar.csv +++ b/frappe/translations/ar.csv @@ -19,7 +19,7 @@ DocType: Workflow,Document States,الولايات ثيقة sites/assets/js/desk.min.js +807,Sorry! I could not find what you were looking for.,آسف! أنا لا يمكن أن تجد ما تبحث عنه. DocType: DocPerm,This role update User Permissions for a user,هذا الدور ضوابط التحديث العضو لمستخدم sites/assets/js/desk.min.js +555,Rename {0},إعادة تسمية {0} -DocType: Workflow State,zoom-out,تكبير المغادرة +DocType: Workflow State,zoom-out,تصغير apps/frappe/frappe/model/document.py +664,Table {0} cannot be empty,الجدول {0} لا يمكن أن تكون فارغة DocType: Social Login Keys,GitHub,جيثب apps/frappe/frappe/model/document.py +638,Beginning with,بدءا @@ -220,7 +220,7 @@ apps/frappe/frappe/print/doctype/print_format/print_format.js +14,Please duplica DocType: Print Settings,Font Size,حجم الخط sites/assets/js/desk.min.js +852,Unread Messages,رسائل غير مقروءة DocType: Workflow State,facetime-video,فيس تايم عن طريق الفيديو -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +164,1 comment,واحد تعليق +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +164,1 comment,تعليق واحد DocType: Email Alert,Days Before,أيام قبل apps/frappe/frappe/website/doctype/website_settings/website_settings.js +72,Select a Banner Image first.,تحديد صورة بانر الأول. DocType: Workflow State,volume-down,حجم إلى أسفل diff --git a/frappe/translations/de.csv b/frappe/translations/de.csv index 2af4564bde..00c9d0dfa6 100644 --- a/frappe/translations/de.csv +++ b/frappe/translations/de.csv @@ -283,7 +283,7 @@ DocType: User,Last Login,Letzte Anmeldung apps/frappe/frappe/core/doctype/doctype/doctype.py +312,Fieldname is required in row {0},Feldname wird in der Zeile erforderlich {0} apps/frappe/frappe/print/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Spalte DocType: Custom Field,Adds a custom field to a DocType,Fügt einem Dokumententyp ein benutzerdefiniertes Feld hinzu -sites/assets/js/editor.min.js +103,Bold (Ctrl/Cmd+B),Bold (Strg / Cmd + B) +sites/assets/js/editor.min.js +103,Bold (Ctrl/Cmd+B),Fett (Strg / Cmd + B) apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,Upload und Sync sites/assets/js/form.min.js +274,Shared with {0},Mit Gemeinschaftsbad {0} DocType: DocType,Single Types have only one record no tables associated. Values are stored in tabSingles,Einzelne Arten haben nur ein Datensatz keine Tabellen verbunden. Die Werte werden in tabSingles gespeichert @@ -702,7 +702,7 @@ For e.g. 1 USD = 100 Cent","1 Währungs = [?] Fraktion Für zB 1 USD = 100 Cent" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +363,Add New Permission Rule,Zusätzliche Berechtigungsregel hinzufügen sites/assets/js/desk.min.js +512,You can use wildcard %,"Sie können den Platzhalter ""%"" verwenden" -apps/frappe/frappe/desk/page/activity/activity.js +152,Mar,Beschädigen +apps/frappe/frappe/desk/page/activity/activity.js +152,Mar,März sites/assets/js/desk.min.js +768,"Only image extensions (.gif, .jpg, .jpeg, .tiff, .png, .svg) allowed","Nur image Erweiterungen (.gif, .jpg, .jpeg, .tiff, .png, .svg) erlaubt" apps/frappe/frappe/website/doctype/website_theme/website_theme.py +35,Please Duplicate this Website Theme to customize.,Bitte Duplizieren dieser Website Thema zu gestalten. DocType: DocField,Text Editor,Texteditor @@ -911,9 +911,9 @@ sites/assets/js/desk.min.js +522,Added {0} ({1}),{0} ({1}) hinzugefügt apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +253,Fieldtype cannot be changed from {0} to {1} in row {2},Feldtyp kann nicht von {0} geändert werden {1} in Zeile {2} apps/frappe/frappe/core/doctype/doctype/doctype.py +304,Search Fields should contain valid fieldnames,"Suche Felder müssen gültige Feldnamen enthalten," apps/frappe/frappe/core/doctype/user/user.js +323,Role Permissions,Rollenberechtigungen -sites/assets/js/form.min.js +282,Can Read,Lesen können +sites/assets/js/form.min.js +282,Can Read,Kann Lesen DocType: Standard Reply,Response,Antwort -sites/assets/js/form.min.js +282,Can Share,Können Teile +sites/assets/js/form.min.js +282,Can Share,Kann Teilen apps/frappe/frappe/email/smtp.py +37,Invalid recipient address,Ungültige Empfängeradresse DocType: Workflow State,step-forward,Schritt nach vorn apps/frappe/frappe/core/doctype/user/user.js +45,Refreshing...,Aktualisiere... diff --git a/frappe/translations/fa.csv b/frappe/translations/fa.csv index 97922eff3d..b69c3f0438 100644 --- a/frappe/translations/fa.csv +++ b/frappe/translations/fa.csv @@ -324,7 +324,7 @@ apps/frappe/frappe/website/doctype/web_page/web_page.py +30,Cannot edit template apps/frappe/frappe/model/document.py +637,none of,هیچکدام از apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,آپلود مجوز کاربر apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +3,Checked items will be shown on desktop,آیتم های چک خواهد شد بر روی دسکتاپ نشان داده شده است -apps/frappe/frappe/core/doctype/doctype/doctype.py +409,{0} cannot be set for Single types,{0} می تواند برای انواع تنها نمی تواند تنظیم شود +apps/frappe/frappe/core/doctype/doctype/doctype.py +409,{0} cannot be set for Single types,{0} نمی تواند برای انوع تکی یا مجردی تنظیم شود apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +97,{0} updated,{0} بروز شد apps/frappe/frappe/core/doctype/doctype/doctype.py +399,Report cannot be set for Single types,گزارش می تواند برای انواع تنها نمی تواند تنظیم شود apps/frappe/frappe/desk/page/activity/activity.js +152,Feb,فوریه @@ -386,7 +386,7 @@ DocType: DocField,Section Break,شکستن بخش DocType: Communication,Sender Full Name,نام و نام خانوادگی فرستنده ,Messages,پیام apps/frappe/frappe/desk/query_report.py +75,Must specify a Query to run,باید یک پرس و جو مشخص برای اجرای -apps/frappe/frappe/config/setup.py +66,"Language, Date and Time settings",زبان، تاریخ و زمان تنظیمات +apps/frappe/frappe/config/setup.py +66,"Language, Date and Time settings",تنظیمات زبان، تاریخ و زمان DocType: User,Represents a User in the system.,نشان دهنده یک کاربر در سیستم. apps/frappe/frappe/desk/form/assign_to.py +114,"The task {0}, that you assigned to {1}, has been closed.",وظیفه {0}، که شما را به {1}، بسته شده است اختصاص داده است. DocType: User,Modules Access,ماژول دسترسی @@ -482,7 +482,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,واضح apps/frappe/frappe/desk/doctype/event/event.py +24,Every day events should finish on the same day.,هر روز باید وقایع در همان روز به پایان برسد. DocType: Communication,User Tags,کاربر برچسب ها DocType: Workflow State,download-alt,دانلود-ALT -DocType: Web Page,Main Section,بخش های اصلی +DocType: Web Page,Main Section,بخش اصلی apps/frappe/frappe/core/doctype/doctype/doctype.py +226,{0} not allowed in fieldname {1},{0} در fieldname مجاز نیست {1} DocType: Page,Icon,شمایل DocType: Web Page,Content in markdown format that appears on the main side of your page,محتوا در قالب markdown که در سمت اصلی صفحه شما ظاهر می شود @@ -840,7 +840,7 @@ apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +159, DocType: Patch Log,List of patches executed,فهرست تکه اعدام DocType: Communication,Communication Medium,ارتباطات متوسط DocType: Website Settings,Banner HTML,بنر HTML -apps/frappe/frappe/model/base_document.py +398,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} نمی تواند "{2}". آن را باید یکی از است "{3}" +apps/frappe/frappe/model/base_document.py +398,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} نمی تواند ""{2}"" باشد. ولی میتواند یکی از ""{3}"" باشد" apps/frappe/frappe/core/doctype/user/user.py +156,Password Update,به روز رسانی رمز عبور DocType: Workflow State,trash,نخاله apps/frappe/frappe/desk/page/activity/activity.js +153,Dec,دسامبر @@ -1094,7 +1094,7 @@ DocType: DocField,Attach,ضمیمه کردن DocType: DocType,Permission Rules,مشاهده قوانین اجازه sites/assets/js/form.min.js +157,Links,لینک apps/frappe/frappe/model/base_document.py +322,Value missing for,ارزش از دست رفته برای -apps/frappe/frappe/model/delete_doc.py +135,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: ضبط فرستاده نمی توان حذف کرد. +apps/frappe/frappe/model/delete_doc.py +135,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: رکورد ثبت شده نمی تواند حذف شود. DocType: DocPerm,Read,خواندن apps/frappe/frappe/templates/pages/update-password.html +18,Old Password,رمز عبور apps/frappe/frappe/website/doctype/blog_post/blog_post.py +97,Posts by {0},پست های {0} @@ -1149,7 +1149,7 @@ sites/assets/js/editor.min.js +128,Horizontal Line Break,خط افقی DocType: Top Bar Item,Right,راست DocType: User,User Type,نوع کاربر apps/frappe/frappe/core/page/user_permissions/user_permissions.js +68,Select User,انتخاب کاربر -DocType: Communication,Keep a track of all communications,حفظ مسیر از تمام ارتباطات +DocType: Communication,Keep a track of all communications,حفظ سابقه از تمام ارتباطات apps/frappe/frappe/desk/form/save.py +30,Did not save,نجات نداد DocType: Property Setter,Property,خاصیت DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.",توجه: برای بهترین نتایج، تصاویر باید از همان اندازه است و عرض باید بیشتر از ارتفاع باشد. @@ -1169,7 +1169,7 @@ apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +549, apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +478,Select Table Columns for {0},انتخاب ستون های جدول برای {0} DocType: Custom Field,Options Help,گزینه های راهنما DocType: DocField,Report Hide,گزارش مخفی -DocType: Custom Field,Label Help,برچسب راهنما +DocType: Custom Field,Label Help,راهنما برچسب DocType: Workflow State,star-empty,ستاره خالی DocType: Workflow State,ok,خوب DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,این مقادیر به طور خودکار در معاملات روز رسانی و نیز برای محدود کردن دسترسی این کاربر در معاملات حاوی این مقادیر مفید باشد. @@ -1266,7 +1266,7 @@ sites/assets/js/desk.min.js +808,Sorry! You are not permitted to view this page. DocType: Workflow State,bell,ناقوس sites/assets/js/form.min.js +282,Share this document with,به اشتراک گذاشتن این سند با apps/frappe/frappe/desk/page/activity/activity.js +152,Jun,ژوئن -apps/frappe/frappe/utils/nestedset.py +227,{0} {1} cannot be a leaf node as it has children,{0} {1} می تواند یک گره برگ نه به عنوان کودکان آن است +apps/frappe/frappe/utils/nestedset.py +227,{0} {1} cannot be a leaf node as it has children,{0} {1} نمی تواند یک پیام بگذارد چون ایشان بچه دارند DocType: Feed,Info,اطلاعات apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,تشکر از شما برای پیام خود را DocType: Website Settings,Home Page,صفحه اصلی وب سایت diff --git a/frappe/translations/fr.csv b/frappe/translations/fr.csv index b5c2ab32f2..b8bfea63b1 100644 --- a/frappe/translations/fr.csv +++ b/frappe/translations/fr.csv @@ -276,7 +276,7 @@ DocType: Website Theme,Google Font (Text),Google police (texte) apps/frappe/frappe/core/page/permission_manager/permission_manager.js +316,Did not remove,N'a pas été supprimer DocType: Report,Query,Requête DocType: DocType,Sort Order,Ordre -apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +130,'In List View' not allowed for type {0} in row {1},« Vu en liste » n'est pas permis pour le type {0} à la ligne {1} +apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +130,'In List View' not allowed for type {0} in row {1},« Dans la vu en liste » n'est pas permis pour le type {0} à la ligne {1} DocType: Custom Field,Select the label after which you want to insert new field.,Sélectionnez l'étiquette après lequel vous voulez insérer un nouveau champ. DocType: Website Settings,Tweet will be shared via your user account (if specified),Tweet sera partagée via votre compte utilisateur (si spécifié) ,Document Share Report,Partager document Rapport @@ -700,7 +700,7 @@ apps/frappe/frappe/desk/page/activity/activity.js +153,Aug,Août DocType: DocField,Int,Int DocType: Currency,"1 Currency = [?] Fraction For e.g. 1 USD = 100 Cent","Une devise = [?] Fraction - Pour exemple 1 USD = 100 Cent" + par exemple 1 USD = 100 sous" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +363,Add New Permission Rule,Ajouter une nouvelle règle d'autorisation sites/assets/js/desk.min.js +512,You can use wildcard %,Vous pouvez utiliser joker% apps/frappe/frappe/desk/page/activity/activity.js +152,Mar,Mar @@ -834,7 +834,7 @@ DocType: Bulk Email,Reference DocName,Référence DocName DocType: Web Form,Success Message,Succès message DocType: DocType,User Cannot Search,L'utilisateur ne peut pas effectuer de recherche apps/frappe/frappe/desk/page/activity/activity.js +47,Build Report,Créer un rapport -apps/frappe/frappe/model/rename_doc.py +92,"{0} {1} does not exist, select a new target to merge","{0} {1} n'existe pas , sélectionnez un nouvel objectif de fusionner" +apps/frappe/frappe/model/rename_doc.py +92,"{0} {1} does not exist, select a new target to merge","{0} {1} n'existe pas , sélectionnez un nouvel objectif pour fusionner" apps/frappe/frappe/core/page/user_permissions/user_permissions.py +66,Cannot set permission for DocType: {0} and Name: {1},Vous ne pouvez pas définir des autorisations pour DocType : {0} et Nom : {1} DocType: Comment,Comment Doctype,Commentaire Doctype apps/frappe/frappe/core/page/modules_setup/modules_setup.js +55,There were errors,Poster existe déjà . Vous ne pouvez pas ajouter de nouveau ! diff --git a/frappe/translations/hr.csv b/frappe/translations/hr.csv index 223b55c946..6589e02ca8 100644 --- a/frappe/translations/hr.csv +++ b/frappe/translations/hr.csv @@ -86,7 +86,7 @@ DocType: Comment,Post Topic,Post Tema apps/frappe/frappe/print/page/print_format_builder/print_format_builder_column_selector.html +2,Widths can be set in px or %.,Širina može biti postavljena u px ili%. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Prava se primjenjuju na korisnike na temelju onoga što Uloge su dodijeljeni . sites/assets/js/desk.min.js +890,You are not allowed to send emails related to this document,Nije Vam dopušteno slati e-poštu vezanu s ovim dokumentom -apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Nemate ovlasti za brisanje standardnog website temu +apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Nemate ovlasti za brisanje standardne teme web stranice apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +176,Example,Primjer DocType: Workflow State,gift,dar apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +180,Reqd,Reqd @@ -1062,7 +1062,7 @@ apps/frappe/frappe/core/doctype/user/user.py +165,Verify Your Account,Provjerite DocType: Workflow Transition,Action,Akcija apps/frappe/frappe/core/page/data_import_tool/exporter.py +221,Info:,Info: DocType: Custom Field,Permission Level,Razina ovlasti -DocType: User,Send Notifications for Transactions I Follow,Pošalji Obavijesti za pravni promet pratim +DocType: User,Send Notifications for Transactions I Follow,Pošalji obavijesti o transakcijama | Prati apps/frappe/frappe/core/doctype/doctype/doctype.py +388,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Ne mogu postaviti Podnijeti , Odustani , Izmijeniti bez zapisivanja" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Postavke > Korisnik apps/frappe/frappe/templates/emails/password_reset.html +6,Thank you,Hvala @@ -1097,7 +1097,7 @@ DocType: DocField,Attach,Pričvrstiti DocType: DocType,Permission Rules,Pravila ovlasti sites/assets/js/form.min.js +157,Links,Linkovi apps/frappe/frappe/model/base_document.py +322,Value missing for,Vrijednost nestao -apps/frappe/frappe/model/delete_doc.py +135,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Postavio Snimanje ne može se izbrisati. +apps/frappe/frappe/model/delete_doc.py +135,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Snimljeni zapis ne može biti brisan. DocType: DocPerm,Read,Pročitaj apps/frappe/frappe/templates/pages/update-password.html +18,Old Password,Stara zaporka apps/frappe/frappe/website/doctype/blog_post/blog_post.py +97,Posts by {0},Postovi po {0} @@ -1271,7 +1271,7 @@ sites/assets/js/desk.min.js +808,Sorry! You are not permitted to view this page. DocType: Workflow State,bell,zvono sites/assets/js/form.min.js +282,Share this document with,Podijelite ovaj dokument sa apps/frappe/frappe/desk/page/activity/activity.js +152,Jun,Lipnja -apps/frappe/frappe/utils/nestedset.py +227,{0} {1} cannot be a leaf node as it has children,"{0} {1} Ne može bitičvor nultog stupnja , kao da ima djecu" +apps/frappe/frappe/utils/nestedset.py +227,{0} {1} cannot be a leaf node as it has children,{0} {1} Ne može biti čvor nultog stupnja budući da ima slijednike DocType: Feed,Info,Info apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Hvala vam za vašu poruku DocType: Website Settings,Home Page,Početna stranica @@ -1334,7 +1334,7 @@ DocType: Blog Post,Blog Intro,Blog intro apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Omogućite izvješće DocType: User,Check / Uncheck roles assigned to the User. Click on the Role to find out what permissions that Role has.,Provjerite / Odznačite uloge dodijeljene profil. Kliknite na ulozi saznati što dozvole da uloga. DocType: Web Page,Insert Code,Umetnite kod -apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +548,You can add dynamic properties from the document by using Jinja templating.,Možete dodati dinamička svojstva iz dokumenta pomoću Jinja templating. +apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +548,You can add dynamic properties from the document by using Jinja templating.,Možete dodati dinamička svojstva iz dokumenta pomoću Jinja templating-a. sites/assets/js/desk.min.js +825,List a document type,Popis tipova dokumenta DocType: Event,Ref Type,Ref. Tip apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,"If you are uploading new records, leave the ""name"" (ID) column blank.","Ako ste upload nove rekorde, napustiti ""ime"" (ID) stupac prazan." diff --git a/frappe/translations/hu.csv b/frappe/translations/hu.csv index f5f36862ae..c99c4362c2 100644 --- a/frappe/translations/hu.csv +++ b/frappe/translations/hu.csv @@ -18,7 +18,7 @@ DocType: Report,Report Manager,Report Manager DocType: Workflow,Document States,Dokumentum állapotok sites/assets/js/desk.min.js +807,Sorry! I could not find what you were looking for.,"Elnézést! Nem találtam meg azt, amit keres." DocType: DocPerm,This role update User Permissions for a user,Ez a szerep frissítés felhasználói jogosultságait felhasználó -sites/assets/js/desk.min.js +555,Rename {0},Átnevezése {0} +sites/assets/js/desk.min.js +555,Rename {0},{0} átnevezése DocType: Workflow State,zoom-out,kicsinyítés apps/frappe/frappe/model/document.py +664,Table {0} cannot be empty,Táblázat {0} nem lehet üres DocType: Social Login Keys,GitHub,GitHub @@ -49,28 +49,28 @@ sites/assets/js/desk.min.js +752,Web Link,Web Link apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +33,"Recommended bulk editing records via import, or understanding the import format.","Ajánlott tömeges szerkesztési bejegyzések importálás útján, vagy megérteni a behozatali formátumban." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +36,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","Eltekintve System Manager, szerepeket Set felhasználói engedélyek jobb beállíthatja az engedélyeket a többi felhasználó számára, hogy Document Type." DocType: Company History,Company History,Cégtörténet -DocType: Workflow State,volume-up,hangerő-up +DocType: Workflow State,volume-up,hangerő növelés apps/frappe/frappe/core/page/data_import_tool/importer.py +42,Only allowed {0} rows in one import,Csak engedélyezett {0} sorok egyikében import apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To import or update records, you must first download the template for importing.","Hogy behozatali vagy frissítési rekordokat, először le kell töltenie a sablon importálására." DocType: DocType,Default Print Format,Alapértelmezett nyomtatási formátum DocType: Workflow State,Tags,Címkék apps/frappe/frappe/core/page/permission_manager/permission_manager.js +47,Document Types,Dokumentum típusok -DocType: Workflow,Workflow State Field,Workflow állam Helytelenül +DocType: Workflow,Workflow State Field,Munkafolyamat állapotmező DocType: DocType,Title Field,Cím Helytelenül apps/frappe/frappe/core/doctype/user/user.py +478,"If you think this is unauthorized, please change the Administrator password.","Ha úgy gondolja, ez nem engedélyezett, kérjük, változtassa meg a rendszergazdai jelszót." DocType: Workflow State,eject,kidob apps/frappe/frappe/core/page/user_permissions/user_permissions.js +16,Help for User Permissions,Súgó a felhasználói engedélyekhez apps/frappe/frappe/email/bulk.py +78,Unsubscribe link: {0},Leiratkozás link: {0} -DocType: Communication,Visit,Látogatás +DocType: Communication,Visit,Személyesen apps/frappe/frappe/desk/page/applications/application_row.html +7,Install,Telepítés DocType: Website Settings,Twitter Share via,Twitter Megosztás apps/frappe/frappe/config/website.py +33,Embed image slideshows in website pages.,Embed diavetítést a weblapok. -DocType: Workflow Action,Workflow Action Name,Workflow Művelet neve +DocType: Workflow Action,Workflow Action Name,Munkafolyamat művelet neve apps/frappe/frappe/core/doctype/doctype/doctype.py +131,DocType can not be merged,"DocType nem lehet összevonni," DocType: Web Form Field,Fieldtype,FieldType apps/frappe/frappe/desk/form/save.py +44,Did not cancel,Nem szakítja meg DocType: Workflow State,plus,plusz -DocType: Scheduler Log,Scheduler Log,Scheduler Belépés +DocType: Scheduler Log,Scheduler Log,Ütemezési napló sites/assets/js/desk.min.js +649,You,Ön DocType: Website Theme,lowercase,kisbetűs DocType: Note,Everyone can read,Mindenki tudja olvasni @@ -79,7 +79,7 @@ DocType: Email Unsubscribe,Email Unsubscribe,Email Leiratkozás DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Válasszon ki egy képet kb szélessége 150px átlátszó háttérrel a legjobb eredmény. apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +61,"Insert After field '{0}' mentioned in Custom Field '{1}', does not exist","Után beszúrt mező '{0}' említett egyéni mező ""{1}"", nem létezik" DocType: Workflow State,circle-arrow-up,kör-nyíl-fel -sites/assets/js/desk.min.js +765,Uploading...,Feltöltés alatt ... +sites/assets/js/desk.min.js +765,Uploading...,Feltöltés... DocType: Workflow State,italic,dőlt apps/frappe/frappe/core/doctype/doctype/doctype.py +392,{0}: Cannot set Import without Create,{0}: Nem állítható Import nélküli létrehozása DocType: Comment,Post Topic,Hozzászólás témája @@ -92,7 +92,7 @@ DocType: Workflow State,gift,ajándék apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +180,Reqd,Reqd apps/frappe/frappe/core/doctype/communication/communication.py +119,Unable to find attachment {0},Nem található mellékletet {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +168,Assign a permission level to the field.,Rendeljen egy jogosultsági szintet a mezőhöz. -apps/frappe/frappe/config/setup.py +72,Show / Hide Modules,Show / Hide modulok +apps/frappe/frappe/config/setup.py +72,Show / Hide Modules,Modulok mutatása / elrejtése apps/frappe/frappe/core/doctype/report/report.js +37,Disable Report,Jelentés tiltása DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Format: frappe.query_reports ['jelentésnév'] = {} DocType: Version,Doclist JSON,Dokumentumlista JSON @@ -114,7 +114,7 @@ apps/frappe/frappe/config/setup.py +217,Send download link of a recent backup to DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,pl. valaszok@cegem.hu. Minden válasz ebbe a postafiókba fog jönni. apps/frappe/frappe/templates/includes/login/login.js +31,Valid email and name required,Érvényes e-mail és név szükséges DocType: DocType,Hide Heading,Fejszöveg elrejtése -DocType: Workflow State,remove-circle,remove-körbe +DocType: Workflow State,remove-circle,törlés-kör apps/frappe/frappe/config/website.py +54,Javascript to append to the head section of the page.,"Javascript hozzáfűzni, hogy a fejrész az oldal." apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +53,Reset to defaults,Reset to defaults DocType: Workflow,Transition Rules,Átmeneti szabályok @@ -129,7 +129,7 @@ apps/frappe/frappe/templates/pages/list.py +59,"Filtered by ""{0}""",Szűrés &q sites/assets/js/desk.min.js +910,Message from {0},{0} üzenete DocType: Blog Settings,Blog Title,Blog Cím apps/frappe/frappe/print/page/print_format_builder/print_format_builder_layout.html +12,Edit to set heading,Szerkesztés beállítani fejezet -DocType: About Us Settings,Team Members,Csapat tagjai +DocType: About Us Settings,Team Members,Szervezeti felépítés sites/assets/js/desk.min.js +467,Please attach a file or set a URL,"Kérjük, csatolja a fájlt, vagy állítsa egy URL" DocType: DocField,Permissions,Jogosultságok DocType: Workflow State,plus-sign,plusz-jel @@ -144,25 +144,25 @@ DocType: Web Form,Website URL,Weboldal URL DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Felirat, nyomtatási mezők, alapértelmezett értékek, stb. testreszabása" apps/frappe/frappe/print/page/print_format_builder/print_format_builder_start.html +16,Create a New Format,Hozzon létre egy új formátum DocType: Website Settings,Add a banner to the site. (small banners are usually good),Add a banner az oldalon. (Kis bannerek általában jó) -DocType: Website Settings,Set Banner from Image,Állítsa Banner Image -apps/frappe/frappe/core/doctype/user/user.py +202,User {0} cannot be deleted,Felhasználó {0} nem lehet törölni +DocType: Website Settings,Set Banner from Image,Banner létrehozása képből +apps/frappe/frappe/core/doctype/user/user.py +202,User {0} cannot be deleted,A {0} felhasználó nem törölhető sites/assets/js/desk.min.js +183,Another transaction is blocking this one. Please try again in a few seconds.,"Egy másik tranzakciós blokkolja ezt. Kérjük, próbálja újra pár másodperc." DocType: Property Setter,Field Name,Mező neve sites/assets/js/desk.min.js +684,or,vagy apps/frappe/frappe/templates/generators/web_form.html +265,Continue,Folytatódik DocType: Custom Field,Fieldname,Mezőnév DocType: Workflow State,certificate,igazolás -DocType: User,Tile,Cserép +DocType: User,Tile,Mozaik DocType: User,"Get your globally recognized avatar from Gravatar.com","Hozd a világszerte elismert avatar Gravatar.com " apps/frappe/frappe/core/page/data_import_tool/exporter.py +62,First data column must be blank.,Az első adatok oszlopot üresen kell. DocType: Workflow State,Print,Nyomtatás -DocType: User,Restrict IP,Korlátozza IP +DocType: User,Restrict IP,IP korlátozás apps/frappe/frappe/email/smtp.py +169,Unable to send emails at this time,Nem lehet e-mailt küldeni ebben az időben -sites/assets/js/desk.min.js +852,Search or type a command,Keresés vagy írja be a parancsot +sites/assets/js/desk.min.js +852,Search or type a command,Keressen vagy írja be a parancsot DocType: Email Account,e.g. smtp.gmail.com,pl. smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js +359,Add A New Rule,Új szabály apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +52,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,Nevét az Document Type (DocType) szeretne ezen a területen kell kötni. pl Ügyfél -DocType: User,Roles Assigned,"Szerep," +DocType: User,Roles Assigned,Kijelölt beosztások DocType: Top Bar Item,Parent Label,Szülő Label apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Engedélyek automatikus fordítás Standard Jelentések és keresések. DocType: Event,Repeat Till,Ismételje Till @@ -170,7 +170,7 @@ DocType: Blogger,Will be used in url (usually first name).,Fogják használni ur apps/frappe/frappe/client.py +63,Can not edit Read Only fields,Nem lehet szerkeszteni csak olvasható mező apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +459,Edit Heading,Fejléc szerkesztése DocType: File Data,File URL,Fájl URL -apps/frappe/frappe/desk/doctype/event/event.py +64,Upcoming Events for Today,Közelgő események a Today +apps/frappe/frappe/desk/doctype/event/event.py +64,Upcoming Events for Today,"A mai nap eseményei, teendői" DocType: Email Alert Recipient,Email By Document Field,Email dokumentum Field DocType: File Data,File Data,Fájlok apps/frappe/frappe/utils/nestedset.py +210,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Összevonása csak akkor lehetséges közötti Group-to-csoport vagy Leaf Node-to-Leaf Node @@ -187,7 +187,7 @@ sites/assets/js/desk.min.js +867,"Your download is being built, this may take a sites/assets/js/desk.min.js +828,text in document type, text dokumentum típusa DocType: Web Page,Begin this page with a slideshow of images,Kezdje ezt az oldalt egy slideshow a képek DocType: Version,Docname,Docname -apps/frappe/frappe/core/doctype/version/version.js +10,Version restored,Verzió felújított +apps/frappe/frappe/core/doctype/version/version.js +10,Version restored,Verzió visszaállítva DocType: Event Role,Event Role,Beosztás szerint sites/assets/js/editor.min.js +125,Indent (Tab),Francia bekezdés (Tab) DocType: Workflow State,List,Lista @@ -200,7 +200,7 @@ DocType: Letter Head,Check this to make this the default letter head in all prin DocType: Print Format,Server,Szerver DocType: DocField,Link,Link apps/frappe/frappe/utils/file_manager.py +83,No file attached,Nem csatolt fájl -DocType: Version,Version,Változat +DocType: Version,Version,Verzió DocType: User,Fill Screen,Képernyő kitöltése apps/frappe/frappe/core/doctype/role/role.js +9,Edit Permissions,Engedélyek szerkesztése sites/assets/js/form.min.js +210,Edit via Upload,Szerkesztés keresztül feltöltése @@ -218,12 +218,12 @@ sites/assets/js/list.min.js +98,Gantt,Gantt DocType: About Us Settings,Introduce your company to the website visitor.,"Mutassa be a cég, hogy a honlap látogatói." apps/frappe/frappe/print/doctype/print_format/print_format.js +14,Please duplicate this to make changes,Kérjük kétszerezniük ezt a változtatásra DocType: Print Settings,Font Size,Betűméret -sites/assets/js/desk.min.js +852,Unread Messages,Az olvasatlan üzenetek +sites/assets/js/desk.min.js +852,Unread Messages,Olvasatlan üzenetek DocType: Workflow State,facetime-video,FaceTime-video apps/frappe/frappe/website/doctype/blog_post/blog_post.py +164,1 comment,1 hozzászólás DocType: Email Alert,Days Before,Napok előtt apps/frappe/frappe/website/doctype/website_settings/website_settings.js +72,Select a Banner Image first.,Válasszon egy Banner kép első. -DocType: Workflow State,volume-down,hangerõcsökkentõ +DocType: Workflow State,volume-down,hangerő csökkentés DocType: Email Account,Send Notification to,Értesítés küldése apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +626,Saved,Mentett apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +28,Please specify doctype,"Kérjük, adja meg doctype" @@ -258,13 +258,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +419,{0}: Cannot set import a DocType: Top Bar Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,HDD apps/frappe/frappe/desk/query_report.py +18,You don't have access to Report: {0},Nem férnek hozzá jelentése: {0} -DocType: User,Send Welcome Email,Küldje Üdvözöljük Email +DocType: User,Send Welcome Email,Üdvözlő e-mail küldése apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,"Töltsd fel CSV fájlt, amely tartalmazza a felhasználói jogosultságok ugyanabban a formában, mint Download." DocType: Feed,Doc Name,Doc név DocType: DocField,Heading,Fejszöveg -DocType: Workflow State,resize-vertical,átméretezése függőleges +DocType: Workflow State,resize-vertical,átméretezés-függőleges DocType: Contact Us Settings,Introductory information for the Contact Us Page,Bevezető információk a Kapcsolat oldalon -DocType: Workflow State,thumbs-down,hüvelykujját lefelé +DocType: Workflow State,thumbs-down,hüvelykujj-le DocType: Comment,Comment Time,Megjegyzés Idő DocType: Workflow State,indent-left,behúzás-balra DocType: Currency,Currency Name,Pénznem neve @@ -274,7 +274,7 @@ DocType: User,Stores the JSON of last known versions of various installed apps. DocType: Website Theme,Google Font (Text),Google betűtípus (szöveg) apps/frappe/frappe/core/page/permission_manager/permission_manager.js +316,Did not remove,Nem törölte DocType: Report,Query,Lekérdezés -DocType: DocType,Sort Order,Sort Order +DocType: DocType,Sort Order,Rendezési sorrend apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +130,'In List View' not allowed for type {0} in row {1},"""A lista nézetben"" nem megengedett {0} típusú sorban {1}" DocType: Custom Field,Select the label after which you want to insert new field.,"Válassza ki a címkét, amely után be szeretné szúrni az új területen." DocType: Website Settings,Tweet will be shared via your user account (if specified),Tweet fogják osztani keresztül a felhasználói fiók (ha meg) @@ -316,25 +316,25 @@ DocType: Workflow State,play,indítás apps/frappe/frappe/templates/emails/new_user.html +5,Click on the link below to complete your registration and set a new password,"Kattintson az alábbi linkre, hogy a regisztrációt és egy új jelszót" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +396,Did not add,Nem adja hozzá DocType: Contact Us Settings,Contact Us Settings,Kapcsolat beállítások -DocType: Workflow State,text-width,text-szélesség +DocType: Workflow State,text-width,szöveg-szélesség DocType: Email Alert,View Properties (via Customize Form),Ingatlanok megtekintése (via Customize Form) DocType: Website Settings,Sidebar,Sidebar apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Report Builder jelentéseket közvetlenül irányítja a jelentést készítő. Semmi köze. apps/frappe/frappe/website/doctype/web_page/web_page.py +30,Cannot edit templated page,Nem lehet szerkeszteni sablonalapú oldal apps/frappe/frappe/model/document.py +637,none of,egyik sem apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Töltsd fel felhasználói engedélyek -apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +3,Checked items will be shown on desktop,A bejelölt tételek jelennek meg az Asztalon +apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +3,Checked items will be shown on desktop,A bejelölt tételek megjelennek a Munkaasztalon apps/frappe/frappe/core/doctype/doctype/doctype.py +409,{0} cannot be set for Single types,{0} nem állítható be a Single típusú apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +97,{0} updated,{0} frissített apps/frappe/frappe/core/doctype/doctype/doctype.py +399,Report cannot be set for Single types,Jelentés nem lehet beállítani a Single típusú apps/frappe/frappe/desk/page/activity/activity.js +152,Feb,Február -DocType: DocPerm,Role,Szerep +DocType: DocPerm,Role,Beosztás apps/frappe/frappe/utils/data.py +380,Cent,Cent apps/frappe/frappe/config/setup.py +104,Manage uploaded files.,Kezelje feltöltött fájlok. -apps/frappe/frappe/config/setup.py +163,"States for workflow (e.g. Draft, Approved, Cancelled).","Államokban munkafolyamat (pl vázlat, jóváhagyott Törölt)." -sites/assets/js/desk.min.js +522,Set Quantity,Állítsa Mennyiség +apps/frappe/frappe/config/setup.py +163,"States for workflow (e.g. Draft, Approved, Cancelled).","Munkafolyamat állapota (pl. vázlat, jóváhagyva, törölve)" +sites/assets/js/desk.min.js +522,Set Quantity,Mennyiség megadása ,Data Import Tool,Az adatok importálása eszköz -apps/frappe/frappe/core/doctype/user/user.py +369,Registration Details Emailed.,Regisztrációs Részletek E-mailben. +apps/frappe/frappe/core/doctype/user/user.py +369,Registration Details Emailed.,Regisztrációs adatok elküldve. DocType: DocType,Is Single,Single DocType: Blogger,User ID of a Blogger,Felhasználói azonosító a Blogger apps/frappe/frappe/core/doctype/user/user.py +197,There should remain at least one System Manager,Ott kell maradnia legalább egy System Manager @@ -348,7 +348,7 @@ sites/assets/js/desk.min.js +403,Missing Values Required,Hiányzó szükséges sites/assets/js/list.min.js +105,{0} is not set,{0} nincs beállítva apps/frappe/frappe/permissions.py +168,Not allowed to access {0} with {1} = {2},Nem szabad hozzáférést {0} {1} = {2} apps/frappe/frappe/templates/emails/print_link.html +2,View this in your browser,Nézd meg ezt a böngészőjében -DocType: DocType,Search Fields,Keresés Fields +DocType: DocType,Search Fields,Mezőkben keresés sites/assets/js/desk.min.js +892,Email sent to {0},Email elküldve neki: {0} DocType: Event,Event,Esemény sites/assets/js/desk.min.js +901,"On {0}, {1} wrote:","{0}, {1} írta:" @@ -383,7 +383,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +292,Users DocType: Print Format,Custom Format,Custom Format DocType: Website Settings,Integrations,Integrációk DocType: DocField,Section Break,Szakasztörés -DocType: Communication,Sender Full Name,Feladó teljes neve +DocType: Communication,Sender Full Name,Küldő teljes neve ,Messages,Üzenetek apps/frappe/frappe/desk/query_report.py +75,Must specify a Query to run,Meg kell adnia a lekérdezést futtatni apps/frappe/frappe/config/setup.py +66,"Language, Date and Time settings","Nyelv, dátum és idő beállítások" @@ -417,7 +417,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +27,"These wil apps/frappe/frappe/desk/page/activity/activity.js +196,{0} on {1},{0} {1} DocType: Customize Form,Enter Form Type,Űrlap típusa sites/assets/js/desk.min.js +917,Updated To New Version,Frissítve az új verzióra -DocType: DocField,Depends On,"Attól függ," +DocType: DocField,Depends On,Függés ettől DocType: DocPerm,Additional Permissions,További engedélyek sites/assets/js/form.min.js +302,Compose,Összeállít apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +13,Start entering data below this line,Kezdje el beírni adatok e vonal alatt @@ -449,14 +449,14 @@ apps/frappe/frappe/utils/nestedset.py +221,Multiple root nodes not allowed.,Töb sites/assets/js/desk.min.js +603,Get,Átmásolás apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +55,Options for select. Each option on a new line. e.g.:
Option 1
Option 2
Option 3
,Options for válassza. Minden lehetőség egy új sorba. pl:
1. lehetőség
2. lehetőség
3. lehetőség
sites/assets/js/desk.min.js +125,Confirm,Erősítse meg -DocType: System Settings,yyyy-mm-dd,yyyy-mm-dd -DocType: Website Slideshow,Website Slideshow,Weboldal Slideshow +DocType: System Settings,yyyy-mm-dd,éééé-hh-nn +DocType: Website Slideshow,Website Slideshow,Weboldal diavetítés DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Link vagyis a honlap honlap. Szabványos Links (index, login, termékek, blog, mintegy, elérhetőség)" sites/assets/js/editor.min.js +105,Bullet list,Bullet list DocType: Website Settings,Banner Image,Banner Kép DocType: Custom Field,Custom Field,Egyedi mező apps/frappe/frappe/email/doctype/email_alert/email_alert.py +13,Please specify which date field must be checked,"Kérjük, nevezze meg a dátum mező ellenőrizni kell" -DocType: DocPerm,Set User Permissions,Állítsa felhasználói engedélyek +DocType: DocPerm,Set User Permissions,Felhasználói engedélyek beállítása DocType: Email Account,Email Account Name,Email fiók neve apps/frappe/frappe/core/page/permission_manager/permission_manager.js +248,Select Document Types,Válassza ki a dokumentum típusok DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""","pl. ""Support"", ""Sales"", ""Jerry Yang""" @@ -476,11 +476,11 @@ DocType: System Settings,Security,Biztonság DocType: Currency,**Currency** Master,** Valuta ** mester DocType: Website Settings,Address and other legal information you may want to put in the footer.,Cím és más hivatalos információkat érdemes lehet tenni a lábléc. sites/assets/js/list.min.js +102,Starred By Me,Csillaggal megjelölt By Me -apps/frappe/frappe/core/page/permission_manager/permission_manager.js +48,Select Document Type,Select Document Type +apps/frappe/frappe/core/page/permission_manager/permission_manager.js +48,Select Document Type,Dokumentum típus kiválasztása apps/frappe/frappe/utils/nestedset.py +201,Cannot delete {0} as it has child nodes,Nem lehet törölni a {0} hiszen a gyermek csomópontok apps/frappe/frappe/templates/includes/list/filters.html +19,clear,világos apps/frappe/frappe/desk/doctype/event/event.py +24,Every day events should finish on the same day.,Minden nap eseményeket kell befejezni az ugyanazon a napon. -DocType: Communication,User Tags,Felhasználó címkék +DocType: Communication,User Tags,Felhasználó címkéi DocType: Workflow State,download-alt,download-alt DocType: Web Page,Main Section,Fő rész apps/frappe/frappe/core/doctype/doctype/doctype.py +226,{0} not allowed in fieldname {1},{0} nem engedélyezett fieldname {1} @@ -495,12 +495,12 @@ DocType: Social Login Keys,Facebook Client Secret,Facebook Client Secret DocType: Website Settings,Copyright,Copyright DocType: Social Login Keys,Google Client Secret,Google Client Secret apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,"Írj egy Python fájl abban a mappában, ahol ez a rendszer elmenti és visszatér oszlop és az eredmény." -DocType: DocType,Sort Field,Rendezés Helytelenül +DocType: DocType,Sort Field,Rendező mező apps/frappe/frappe/templates/pages/404.html +10,"We are very sorry for this, but the page you are looking for is missing (this could be because of a typo in the address) or moved.","Nagyon sajnálom, de az oldal amit keres hiányzik (ez lehet, mert egy elírás a cím), vagy át." apps/frappe/frappe/core/doctype/doctype/doctype.py +235,Field {0} of type {1} cannot be mandatory,A {0} mező {1} típusa nem kötelező apps/frappe/frappe/core/page/permission_manager/permission_manager.js +414,If {0} is permitted,Ha {0} megengedett ,Activity,Aktivitás -DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Help: utaláshoz újabb rekord a rendszerben, használja a ""# Form / Megjegyzés / [Megjegyzés neve]"", mint a Link URL. (Ne használja a ""http: //"")" +DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Súgó: egy másik tételhez való hivatkozáshoz használja a ""#Form/Note/[Megjegyzés neve]"" formát a Link hozzáadása parancsnál. (Ne használja a ""http: //"" formát!)" apps/frappe/frappe/config/setup.py +185,Add fields to forms.,Új mezők űrlaphoz. apps/frappe/frappe/templates/pages/me.py +14,You need to be logged in to access this page.,"Be kell jelentkezned, hogy az oldal eléréséhez." DocType: Workflow State,leaf,levél @@ -515,7 +515,7 @@ sites/assets/js/desk.min.js +536,Starred By,Által csillagozott apps/frappe/frappe/templates/pages/update-password.html +22,New Password,Új jelszó DocType: Website Theme,Style using CSS,Stílus CSS segítségével DocType: Communication,Reference DocType,Referencia DocType -DocType: User,System User,Rendszer Felhasználó +DocType: User,System User,Rendszer felhasználó DocType: Report,Is Standard,Alapfelszereltség apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +218,Specify a default value,Adjon meg egy alapértelmezett érték DocType: Website Settings,FavIcon,Favicon @@ -525,15 +525,15 @@ apps/frappe/frappe/templates/pages/print.py +127,No {0} permission,{0} engedély DocType: Feed,Login,Bejelentkezés DocType: System Settings,Enable Scheduled Jobs,Engedélyezze ütemezett feladat apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Jegyzetek: -sites/assets/js/desk.min.js +507,Markdown,Árleszállítás +sites/assets/js/desk.min.js +507,Markdown,jelőlő nyelv DocType: DocShare,Document Name,Dokumentum neve DocType: Comment,Comment By,Megjegyezte DocType: Customize Form,Customize Form,Űrlap testreszabása DocType: Currency,A symbol for this currency. For e.g. $,A szimbólum erre a valuta. Pl $$ sites/assets/js/desk.min.js +839,Frappe Framework,Frappé Framework apps/frappe/frappe/model/naming.py +162,Name of {0} cannot be {1},Nevét {0} nem {1} -apps/frappe/frappe/config/setup.py +74,Show or hide modules globally.,Megjelenjen modulok világszerte. -DocType: Workflow State,Success,Siker +apps/frappe/frappe/config/setup.py +74,Show or hide modules globally.,Modulok mutatása vagy rejtése rendszerszinten +DocType: Workflow State,Success,Sikerült DocType: Website Settings,Sidebar Links for Home Page only,Sidebar Linkek Honlap csak apps/frappe/frappe/templates/includes/login/login.js +119,Invalid Login,Érvénytelen bejelentkezési DocType: Communication,Phone No.,Telefonszám @@ -551,7 +551,7 @@ DocType: Email Account,Default Incoming,Alapértelmezett bejövő DocType: Workflow State,repeat,ismétlés DocType: Website Settings,Banner,Zászló sites/assets/js/desk.min.js +822,Help on Search,Segítség a kereséshez -DocType: User,Uncheck modules to hide from user's desktop,Szüntesse modulok elrejteni a felhasználó asztalán +DocType: User,Uncheck modules to hide from user's desktop,Tedd jelöletlenné azt a modult amit el szeretnél rejteni a felhasználók Munkaasztalán DocType: DocType,Hide Copy,Rejtett másolat apps/frappe/frappe/core/doctype/user/user.js +168,Clear all roles,Egyik Beosztás sem apps/frappe/frappe/model/base_document.py +287,{0} must be unique,{0} egyedinek kell lennie @@ -599,7 +599,7 @@ DocType: Workflow State,hand-down,kéz-le apps/frappe/frappe/core/doctype/doctype/doctype.py +385,{0}: Cannot set Cancel without Submit,{0}: Nem állítható mégse beküldése DocType: Website Theme,Theme,Téma DocType: DocType,Is Submittable,Az Submittable -apps/frappe/frappe/custom/doctype/property_setter/property_setter.js +7,Value for a check field can be either 0 or 1,Érték a check mező lehet 0 vagy 1 +apps/frappe/frappe/custom/doctype/property_setter/property_setter.js +7,Value for a check field can be either 0 or 1,Az ellenőrző mező értéke 1 vagy 0 lehet apps/frappe/frappe/model/document.py +475,Could not find {0},Nem található {0} apps/frappe/frappe/core/page/data_import_tool/exporter.py +217,Column Labels:,Oszlop Címkék: apps/frappe/frappe/model/naming.py +62,Naming Series mandatory,Sorszámozási csoport kötelező @@ -620,12 +620,12 @@ DocType: Workflow State,wrench,csavarkulcs apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will back reply shortly. If you have any additional information, please reply to this mail.","A lekérdezés érkezett. Mi lesz vissza válasz röviden. Ha bármilyen további információkért kérjük, válaszoljon erre a mail." DocType: Website Settings,Disable Signup,Feliratkozás tiltása apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7,Roles can be set for users from their User page.,"Szerepek be lehet állítani, hogy a felhasználók a Felhasználó oldalon." -apps/frappe/frappe/website/doctype/web_page/web_page.py +158,Website Search,Weboldal Keresés +apps/frappe/frappe/website/doctype/web_page/web_page.py +158,Website Search,Weboldal keresés DocType: DocField,Mandatory,Kötelező apps/frappe/frappe/core/doctype/doctype/doctype.py +356,{0}: No basic permissions set,{0}: Nincs alapvető jog be apps/frappe/frappe/utils/backups.py +140,Download link for your backup will be emailed on the following email address: {0},Letöltési linket a mentésnek fogják megkapni a következő e-mail címre: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Jelentés a Submit, Mégse módosítják" -apps/frappe/frappe/desk/doctype/todo/todo_list.js +7,To Do,To Do +apps/frappe/frappe/desk/doctype/todo/todo_list.js +7,To Do,Tennivaló sites/assets/js/editor.min.js +94,Paragraph,Bekezdés apps/frappe/frappe/core/page/user_permissions/user_permissions.js +133,Any existing permission will be deleted / overwritten.,Bármely jelenlegi engedélyezési törli / felülírja. DocType: DocField,Percent,Százalék @@ -637,15 +637,15 @@ apps/frappe/frappe/website/doctype/blog_post/blog_post.py +93,Posts filed under DocType: Email Alert,Send alert if date matches this field's value,"Riasztást küld, ha a dátum megegyezik ez a mező értéke" DocType: Workflow,Transitions,Transitions DocType: User,Login After,Bejelentkezés után -DocType: Workflow State,thumbs-up,thumbs-up +DocType: Workflow State,thumbs-up,hüvelykujj-fel sites/assets/js/desk.min.js +870,Add Reply,Válaszolás DocType: DocPerm,DocPerm,DocPerm apps/frappe/frappe/core/doctype/doctype/doctype.py +273,Precision should be between 1 and 6,Precíziós között kell lennie az 1. és 6. DocType: About Us Team Member,Image Link,Képhivatkozás -DocType: Workflow State,step-backward,lépésről-hátra +DocType: Workflow State,step-backward,visszalépés apps/frappe/frappe/utils/boilerplate.py +228,{app_title},{App_title} apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Csak a kötelező mezőket szükséges új rekordok. Törölheti a nem kötelező oszlopokat, ha akarod." -DocType: Workflow State,text-height,text-magasság +DocType: Workflow State,text-height,szöveg-magasság DocType: Workflow State,map-marker,térkép-jelölő apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +39,Submit an Issue,Submit észrevételét DocType: Event,Repeat this Event,Ismételje meg ezt az eseményt @@ -656,7 +656,7 @@ apps/frappe/frappe/core/doctype/docshare/docshare.py +44,{0} un-shared this docu apps/frappe/frappe/templates/emails/auto_reply.html +4,This is an automatically generated reply,Ez egy automatikusan generált válasz apps/frappe/frappe/model/document.py +376,Record does not exist,Rekord nem létezik apps/frappe/frappe/templates/pages/404.html +4,Page missing or moved,Oldal hiányzó vagy áthelyezték -sites/assets/js/desk.min.js +479,Open Link,Open Link +sites/assets/js/desk.min.js +479,Open Link,Link megnyitása apps/frappe/frappe/desk/form/load.py +42,Did not load,Nem töltötte be apps/frappe/frappe/desk/query_report.py +79,Query must be a SELECT,A lekérdezés csak SELECT lehet DocType: Website Settings,Facebook Share,Facebook Megosztás @@ -664,9 +664,9 @@ apps/frappe/frappe/utils/file_manager.py +181,File size exceeded the maximum all apps/frappe/frappe/core/doctype/doctype/doctype.py +344,Enter at least one permission row,Adja meg legalább egy engedélyt sorban sites/assets/js/desk.min.js +536,Created On,Létrehozva DocType: Workflow State,align-center,igazítás-középre -sites/assets/js/form.min.js +282,Can Write,Írhat +sites/assets/js/form.min.js +282,Can Write,Írhatja apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Bizonyos dokumentumokat, mint egy számla, nem lehet változtatni, miután végleges. A végleges állapotot az ilyen dokumentumok hívják benyújtani. Korlátozni lehet az, amelyben a szerepeket is benyújthat." -DocType: Communication,Sender,Feladó +DocType: Communication,Sender,Küldő DocType: Web Page,Description for search engine optimization.,Leírás kereső optimalizálás. apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +21,Download Blank Template,Üres sablon letöltése DocType: DocField,In Filter,Szűrőben @@ -701,29 +701,29 @@ sites/assets/js/desk.min.js +512,You can use wildcard %,Használhatja helyettes apps/frappe/frappe/desk/page/activity/activity.js +152,Mar,Elront sites/assets/js/desk.min.js +768,"Only image extensions (.gif, .jpg, .jpeg, .tiff, .png, .svg) allowed","Csak a kép kiterjesztések (.gif, .jpg, .jpeg, .tiff, .png, .svg) megengedett" apps/frappe/frappe/website/doctype/website_theme/website_theme.py +35,Please Duplicate this Website Theme to customize.,Kérjük megkettőzése honlap téma szabni. -DocType: DocField,Text Editor,Text Editor +DocType: DocField,Text Editor,Szövegszerkesztő apps/frappe/frappe/config/website.py +69,Settings for About Us Page.,Beállításait Rólunk oldalon. apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +531,Edit Custom HTML,Egyedi HTML szerkesztése DocType: Email Alert,Value Change,Érték Változás -DocType: Standard Reply,Standard Reply,Normál Válasz +DocType: Standard Reply,Standard Reply,Válasz sablonok apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +175,Width of the input box,Szélessége a beviteli mezőbe DocType: UserRole,UserRole,UserRole DocType: Print Settings,With Letterhead,Fejléces apps/frappe/frappe/email/smtp.py +165,Invalid Outgoing Mail Server or Port,Érvénytelen Kimenő levelek kiszolgálója vagy Port DocType: DocPerm,Write,Ír apps/frappe/frappe/core/doctype/report/report.py +29,Only Administrator allowed to create Query / Script Reports,Csak Administrator hozhat létre Query / Script Jelentések -sites/assets/js/form.min.js +180,Updating,Frissítése +sites/assets/js/form.min.js +180,Updating,Frissítés sites/assets/js/desk.min.js +870,Select Attachments,Válassza ki a Mellékletek -sites/assets/js/form.min.js +283,Attach File,Fájl Csatolása +sites/assets/js/form.min.js +283,Attach File,Fájl csatolása apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you,Egy új fiókot hoztak létre az Ön számára -apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,Jelszó Update Notification +apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,Jelszó frissítési értesítő DocType: DocPerm,User Permission DocTypes,Használati Engedély DOCTYPES sites/assets/js/desk.min.js +555,New Name,Új név sites/assets/js/form.min.js +196,Insert Above,Beszúrás fölé sites/assets/js/list.min.js +21,Not Saved,Nem mentett apps/frappe/frappe/core/page/user_permissions/user_permissions.js +246,Allow User If,Hagyjuk Felhasználói Ha DocType: Custom Field,Default Value,Alapértelmezett érték -DocType: Workflow Document State,Update Field,Frissítés Helytelenül +DocType: Workflow Document State,Update Field,Mező frissítése apps/frappe/frappe/email/doctype/email_account/email_account.py +237,Leave this conversation,Hagyjuk ezt a beszélgetést apps/frappe/frappe/model/base_document.py +353,Options not set for link field {0},Options nem állította be a linket a mező {0} DocType: Workflow State,asterisk,csillag @@ -752,16 +752,16 @@ apps/frappe/frappe/desk/form/assign_to.py +39,Already in user's To Do list,Már DocType: Email Account,Enable Outgoing,Engedélyezze a kimenő DocType: DocField,Text,Szöveg apps/frappe/frappe/config/setup.py +125,Standard replies to common queries.,Típusválasz közös lekérdezéseket. -sites/assets/js/desk.min.js +852,Report an Issue,Jelentse észrevételét +sites/assets/js/desk.min.js +852,Report an Issue,Hiba jelentése apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Alapértelmezett küldése -DocType: Workflow State,volume-off,volume-off +DocType: Workflow State,volume-off,hangerő ki DocType: Custom Field,Properties,Tulajdonságok apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +47,"Do not update, but insert new records.","Ne frissíteni, de helyezzen be új rekordot." DocType: DocField,Dynamic Link,Dinamikus link DocType: Property Setter,DocType or Field,DocType vagy Helytelenül apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +3,Quick Help for Setting Permissions,Segítség a jogosultság beállításaihoz -DocType: Report,Report Builder,Report Builder -DocType: Workflow,Workflow,Workflow +DocType: Report,Report Builder,Jelentéskészítő +DocType: Workflow,Workflow,Munkafolyamat DocType: Workflow State,Upload,Feltöltés DocType: System Settings,Date Format,Dátum formátum apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js +7,Not Published,Nem tették közzé @@ -771,14 +771,14 @@ DocType: Web Page,Text Align,Szöveg igazítása DocType: Contact Us Settings,Forward To Email Address,Továbbítás emailcímekre apps/frappe/frappe/core/doctype/doctype/doctype.py +79,Title field must be a valid fieldname,Cím mezőt kell egy érvényes fieldname DocType: Communication,Archived,Archivált -DocType: System Settings,Session Expiry in Hours e.g. 06:00,Session lejárata Óra pl 06:00 +DocType: System Settings,Session Expiry in Hours e.g. 06:00,Munkamenet lejárati ideje órában: pl. 06:00 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Ha beállította ezt a felhasználók csak akkor lesz képes hozzáférést dokumentumok (pl. Blogbejegyzés), ahol a link van (pl. Blogger)." apps/frappe/frappe/utils/csvutils.py +33,Unable to open attached file. Please try again.,"Nem sikerült megnyitni a csatolt fájlt. Kérjük, próbálja újra." DocType: Scheduler Log,Log of Scheduler Errors,Bejelentkezés a Scheduler hibák sites/assets/js/form.min.js +180,Submitting,Benyújtása apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +181,Custom HTML,Egyedi HTML DocType: Comment,Comment Docname,Megjegyzés Docname -apps/frappe/frappe/core/page/permission_manager/permission_manager.js +54,Select Role,Select Role +apps/frappe/frappe/core/page/permission_manager/permission_manager.js +54,Select Role,Beosztás választása apps/frappe/frappe/model/delete_doc.py +200,Deleted,Törölt DocType: Workflow State,adjust,állítsa DocType: Website Settings,Disable Customer Signup link in Login page,Vevő feliratkozási linkjének tiltása a Bejelentkező oldalon @@ -786,12 +786,12 @@ apps/frappe/frappe/core/report/todo/todo.py +21,Assigned To/Owner,Felelős érte DocType: Workflow State,arrow-left,nyíl-balra apps/frappe/frappe/desk/page/applications/application_row.html +5,Installed,Telepített DocType: Workflow State,fullscreen,teljes-képernyő -DocType: Event,Ref Name,Ref Megnevezés +DocType: Event,Ref Name,Hivatkozott tétel DocType: Web Page,Center,Központ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Beállítás> Felhasználói engedélyek menedzser DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,"Képviseli az államok játszhat egy dokumentumot, és szerepet rendelt változtatni az állam." apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +49,Refresh Form,Frissítés Forma -DocType: DocField,Select,Választ +DocType: DocField,Select,Választás apps/frappe/frappe/utils/csvutils.py +25,File not attached,A fájl nincs mellékelve DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Ha beállítja ezt, ez a tétel jön egy legördülő listát a kiválasztott alapmotor." apps/frappe/frappe/model/db_query.py +389,Please select atleast 1 column from {0} to sort,"Kérjük, válasszon atleast 1 oszlopot {0} rendezni" @@ -804,7 +804,7 @@ sites/assets/js/desk.min.js +896,Dear,Kedves sites/assets/js/report.min.js +2,Tip: Double click cell to edit,Tipp: Kattintson duplán cella szerkesztéséhez DocType: ToDo,Description and Status,Leírás és állapot DocType: Web Page,HTML for header section. Optional,HTML for fejlécben. Választható -apps/frappe/frappe/core/doctype/userrole/userrole.py +14,Role exists,Szerepe van +apps/frappe/frappe/core/doctype/userrole/userrole.py +14,Role exists,Ez a beosztás már létezik sites/assets/js/desk.min.js +870,Select Print Format,Válassza a Print Format DocType: DocField,Print Hide,Nyomtatás elrejtése sites/assets/js/desk.min.js +163,Enter Value,Adja Érték @@ -821,9 +821,9 @@ DocType: System Settings,dd-mm-yyyy,nn-hh-éééé apps/frappe/frappe/desk/query_report.py +69,Must have report permission to access this report.,Kell a jelentés jogosultsága hozzáférni ehhez a jelentéshez. apps/frappe/frappe/desk/doctype/event/event.py +62,Daily Event Digest is sent for Calendar Events where reminders are set.,"A napi eseményekről emlékeztetőt küld a Naptár, ha be van állítva az eseménynél." sites/assets/js/desk.min.js +852,View Website,A weboldalra -DocType: Workflow State,remove,eltávolít +DocType: Workflow State,remove,eltávolítás DocType: Email Account,If non standard port (e.g. 587),Ha nem szabványos portot (pl 587) -sites/assets/js/desk.min.js +852,Reload,Reload +sites/assets/js/desk.min.js +852,Reload,Újratöltés DocType: Event,Participants,Résztvevők DocType: Bulk Email,Reference DocName,Referencia DocName DocType: Web Form,Success Message,A siker Message @@ -842,12 +842,12 @@ DocType: Communication,Communication Medium,Kommunikációs közeg DocType: Website Settings,Banner HTML,Banner HTML apps/frappe/frappe/model/base_document.py +398,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} nem lehet ""{2}"". Meg kell egyik ""{3}""" apps/frappe/frappe/core/doctype/user/user.py +156,Password Update,Jelszó frissítése -DocType: Workflow State,trash,szemét +DocType: Workflow State,trash,kuka apps/frappe/frappe/desk/page/activity/activity.js +153,Dec,December DocType: Event,Leave blank to repeat always,Üresen hagyva örökké ismétlődik DocType: Event,Ends on,Véget ér apps/frappe/frappe/utils/nestedset.py +181,Item cannot be added to its own descendents,Elemet nem lehet hozzáadni a saját leszármazottaik -sites/assets/js/form.min.js +270,{0} created this {1},{0} létre ezt a {1} +sites/assets/js/form.min.js +270,{0} created this {1},{0} hozta létre ezt {1} apps/frappe/frappe/desk/form/assign_to.py +120,"The task {0}, that you assigned to {1}, has been closed by {2}.","A feladat {0}, hogy rendelt {1}, lezárták {2}." DocType: Blogger,Short Name,Rövid név DocType: Workflow State,magnet,mágnes @@ -860,14 +860,14 @@ DocType: Custom Field,Is Mandatory Field,Kötelező mező DocType: User,Website User,Weboldal Felhasználó DocType: Website Script,Script to attach to all web pages.,Script tulajdonítanak az összes weboldalt. DocType: Web Form,Allow Multiple,Több engedélyezése -sites/assets/js/form.min.js +283,Assign,Rendeljen +sites/assets/js/form.min.js +283,Assign,Hozzárendelni apps/frappe/frappe/config/setup.py +93,Import / Export Data from .csv files.,Adatok importálása / exportálása .csv fájlból. DocType: Workflow State,Icon will appear on the button,Ikon jelenik meg a gombot DocType: Web Page,Page url name (auto-generated),Oldal url (automatikusan generált) apps/frappe/frappe/core/page/user_permissions/user_permissions.py +105,Please upload using the same template as download.,"Kérjük, töltsd fel ugyanazt a sablont letöltés." apps/frappe/frappe/modules/__init__.py +81,App not found,App nem találhatók DocType: Workflow State,pencil,ceruza -sites/assets/js/form.min.js +277,Share {0} with,Share {0} +sites/assets/js/form.min.js +277,Share {0} with,{0} megosztása DocType: Workflow State,hand-up,kéz-fel DocType: Blog Settings,Writers Introduction,Írók Bevezetés apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Select Document Type vagy Role kezdeni. @@ -876,7 +876,7 @@ DocType: DocField,Precision,Precíziós DocType: Website Slideshow,Slideshow Items,Diavetítés elemek apps/frappe/frappe/model/delete_doc.py +153,Cannot delete or cancel because {0} {1} is linked with {2} {3},"Nem lehet törölni vagy törölni, mert {0} {1} kapcsolódik {2} {3}" DocType: Website Settings,Twitter Share,Twitter Megosztás -DocType: Workflow State,Workflow State,Workflow állam +DocType: Workflow State,Workflow State,Munkafolyamat állapot apps/frappe/frappe/templates/pages/me.html +1,My Account,Fiókom apps/frappe/frappe/templates/emails/password_reset.html +4,Please click on the following link to set your new password,"Kérjük, kattintson az alábbi linkre, hogy állítsa be az új jelszót" DocType: Email Alert,Days After,Napon belül @@ -886,7 +886,7 @@ DocType: Email Account,Footer,Lábléc apps/frappe/frappe/utils/verified_command.py +38,Invalid Link,Érvénytelen link DocType: Web Page,Show Title,Cím megjelenítése DocType: Property Setter,Property Type,Ingatlan típusa -DocType: Workflow State,screenshot,screenshot +DocType: Workflow State,screenshot,képernyőkép apps/frappe/frappe/core/doctype/report/report.py +24,Only Administrator can save a standard report. Please rename and save.,"Csak Administrator menthet egy szabványos jelentést. Kérjük, nevezze át, és mentse." DocType: DocField,Data,Adat sites/assets/js/desk.min.js +536,Document Status,Dokumentum állapota @@ -906,13 +906,13 @@ apps/frappe/frappe/utils/response.py +108,You need to be logged in and have Syst sites/assets/js/desk.min.js +522,Added {0} ({1}),Hozzáadva: {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +253,Fieldtype cannot be changed from {0} to {1} in row {2},FieldType nem lehet megváltoztatni a {0} {1} sorban {2} apps/frappe/frappe/core/doctype/doctype/doctype.py +304,Search Fields should contain valid fieldnames,Keresés Fields kell tartalmaznia érvényes mezőnevek -apps/frappe/frappe/core/doctype/user/user.js +323,Role Permissions,Szerep Engedélyek +apps/frappe/frappe/core/doctype/user/user.js +323,Role Permissions,Beosztás engedélyei sites/assets/js/form.min.js +282,Can Read,Elolvashatja DocType: Standard Reply,Response,Válasz -sites/assets/js/form.min.js +282,Can Share,Megoszthatják +sites/assets/js/form.min.js +282,Can Share,Megoszthatja apps/frappe/frappe/email/smtp.py +37,Invalid recipient address,A címzett címe érvénytelen -DocType: Workflow State,step-forward,lépéssel előre -apps/frappe/frappe/core/doctype/user/user.js +45,Refreshing...,Frissítő ... +DocType: Workflow State,step-forward,előrelépés +apps/frappe/frappe/core/doctype/user/user.js +45,Refreshing...,Frissítés... DocType: Event,Starts on,Kezdődik DocType: Workflow State,th,th sites/assets/js/desk.min.js +490,Create a new {0},Hozzon létre egy új {0} @@ -949,12 +949,12 @@ apps/frappe/frappe/desk/page/activity/activity.js +153,Jul,Július DocType: Communication,Additional Info,További információ apps/frappe/frappe/config/website.py +44,"Setup of top navigation bar, footer and logo.","Beállítás a felső menüsorban, lábléc és logo." apps/frappe/frappe/core/doctype/doctype/doctype.py +352,For {0} at level {1} in {2} in row {3},{0} szinten {1} a {2} sorban {3} -DocType: Bulk Email,Recipient,Átvevő +DocType: Bulk Email,Recipient,Címzett apps/frappe/frappe/config/setup.py +137,Drag and Drop tool to build and customize Print Formats.,"Fogd és vidd eszközt építeni, és adja meg a nyomtatási formátumok." sites/assets/js/desk.min.js +779,Expand,Kibont DocType: Workflow State,align-right,igazítás-jobbra -DocType: Page,Roles,Szerepek -DocType: System Settings,Session Expiry,Session Lejárat +DocType: Page,Roles,Beosztások +DocType: System Settings,Session Expiry,Munkamenet lejárati ideje DocType: Workflow State,ban-circle,Ban-körbe DocType: Event,Desk,Íróasztal apps/frappe/frappe/core/doctype/report/report.js +8,Write a SELECT query. Note result is not paged (all data is sent in one go).,Írj egy SELECT lekérdezést. Megjegyzés eredmény nem lapozható (minden adat küldött egy menetben). @@ -974,15 +974,15 @@ DocType: Comment,Comment Type,Megjegyzés Típus apps/frappe/frappe/config/setup.py +8,Users,Felhasználók DocType: Email Account,Signature,Aláírás apps/frappe/frappe/config/website.py +84,"Enter keys to enable login via Facebook, Google, GitHub.","Adja meg a kulcsokat, hogy lehetővé tegye login via Facebook, Google, GitHub." -sites/assets/js/list.min.js +67,Add a tag,Add a tag +sites/assets/js/list.min.js +67,Add a tag,Címke hozzáadása... sites/assets/js/desk.min.js +475,Please attach a file first.,"Kérjük, csatolja a fájlt először." apps/frappe/frappe/model/naming.py +156,"There were some errors setting the name, please contact the administrator","Voltak is hibák beállította a nevet, forduljon a rendszergazda" -DocType: Website Slideshow Item,Website Slideshow Item,Weboldal Diavetítés Elem +DocType: Website Slideshow Item,Website Slideshow Item,Weboldal diavetítés eleme DocType: DocType,Title Case,Cím Case DocType: Blog Post,Email Sent,Email küldés -sites/assets/js/desk.min.js +870,Send As Email,Küldés e-mail +sites/assets/js/desk.min.js +870,Send As Email,Küldés e-mailként DocType: Website Theme,Link Color,Link színe -apps/frappe/frappe/core/doctype/user/user.py +47,User {0} cannot be disabled,Felhasználó {0} nem lehet kikapcsolni +apps/frappe/frappe/core/doctype/user/user.py +47,User {0} cannot be disabled,A(z) {0} felhasználó nem tiltható le apps/frappe/frappe/core/doctype/user/user.py +470,"Dear System Manager,","Kedves System Manager," apps/frappe/frappe/config/setup.py +214,Download Backup,Mentés letöltése sites/assets/js/form.min.js +180,Amending,Módosításáról @@ -994,14 +994,14 @@ DocType: Workflow State,file,Fájl apps/frappe/frappe/model/rename_doc.py +98,You need write permission to rename,Be kell írni engedélye átnevezni apps/frappe/frappe/core/page/permission_manager/permission_manager.js +426,Apply Rule,"Szabályok alkalmazása," DocType: User,Karma,Karma -DocType: DocField,Table,Táblázat +DocType: DocField,Table,Tábla DocType: File Data,File Size,Fájlméret apps/frappe/frappe/website/doctype/web_form/web_form.py +87,You must login to submit this form,Be kell jelentkezned küldje el az űrlapot DocType: User,Background Image,Háttérkép sites/assets/js/form.min.js +261,New Custom Print Format,Új egyedi nyomtatási forma DocType: DocPerm,Create,Létrehozás DocType: About Us Settings,Org History,Org története -DocType: Workflow,Workflow Name,Workflow név +DocType: Workflow,Workflow Name,Munkafolyamat neve DocType: Web Form,Allow Edit,Szerkesztés engedélyezése apps/frappe/frappe/workflow/doctype/workflow/workflow.py +64,Cannot change state of Cancelled Document. Transition row {0},Nem lehet megváltoztatni állapotát Törölt dokumentum. Átmeneti sorban {0} DocType: Workflow,"Rules for how states are transitions, like next state and which role is allowed to change state etc.","Szabályait, hogyan államok átmenetek, mint a következő állam, és milyen szerepet változtathatja állam stb" @@ -1030,7 +1030,7 @@ DocType: Email Alert,Attach Print,Erősítse Nyomtatás apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Ha módosítják a dokumentumot, miután a Mégse, és mentse el, akkor kap egy új számot, hogy egy változata a régi számot." apps/frappe/frappe/core/doctype/doctype/doctype.py +37,{0} not allowed in name,{0} nem engedélyezett a névben DocType: Workflow State,circle-arrow-left,kör-nyíl-bal -apps/frappe/frappe/sessions.py +106,Redis cache server not running. Please contact Administrator / Tech support,"Redis cache szerver nem fut. Kérjük, forduljon Administrator / Tech support" +apps/frappe/frappe/sessions.py +106,Redis cache server not running. Please contact Administrator / Tech support,"A Redis cache szerver nem fut. Kérjük, forduljon az adminisztrátorhoz vagy a technikai támogatáshoz" sites/assets/js/desk.min.js +823,Make a new record,Új tétel létrehozása DocType: Currency,Fraction,Töredék sites/assets/js/desk.min.js +464,Select from existing attachments,Válasszon a meglévő mellékleteket @@ -1042,7 +1042,7 @@ DocType: DocType,Allow Import,Importálás engedélyezése apps/frappe/frappe/templates/includes/comments/comments.py +57,New comment on {0} {1},Új hozzászólás {0} {1} DocType: Workflow State,glass,üveg DocType: Country,Time Zones,Időzónák -DocType: Workflow State,remove-sign,remove-jel +DocType: Workflow State,remove-sign,törlés-jel apps/frappe/frappe/config/setup.py +158,Define workflows for forms.,Határozza meg a munkafolyamatokat formák. DocType: Website Settings,Misc,Egyéb apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +155,Start new Format,Kezdje az új formátum @@ -1068,14 +1068,14 @@ DocType: Print Settings,Print Style Preview,Nyomtatvány stílus előnézet DocType: About Us Settings,About Us Settings,Névjegy beállítások DocType: Website Settings,Website Theme,Weboldal Theme DocType: DocField,In List View,Listanézetben -DocType: Email Account,Use TLS,TLS +DocType: Email Account,Use TLS,TLS használata apps/frappe/frappe/email/smtp.py +34,Invalid login or password,Érvénytelen felhasználó vagy jelszó apps/frappe/frappe/config/setup.py +190,Add custom javascript to forms.,Új egyéni JavaScript úrlaphoz. -,Role Permissions Manager,Szerep Engedélyek menedzser +,Role Permissions Manager,Beosztás jogosultság kezelő DocType: Website Theme,This must be checked if the below style settings are applicable,"Ezt ellenőrizni kell, ha az alább stílus beállításokat kell alkalmazni" apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +111,Name of the new Print Format,Neve az új Print Format apps/frappe/frappe/core/page/data_import_tool/exporter.py +219,Mandatory:,Kötelező: -,User Permissions Manager,Felhasználói engedélyek menedzser +,User Permissions Manager,Felhasználói jogosultság kezelő DocType: Property Setter,New value to be set,Új érték lesz beállítva DocType: Email Alert,Days Before or After,Napok előtt vagy után DocType: Email Alert,Email Alert,Email riasztás @@ -1101,9 +1101,9 @@ apps/frappe/frappe/website/doctype/blog_post/blog_post.py +97,Posts by {0},Hozz apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Hogy formában oszlopok, így oszlopot, a lekérdezés." apps/frappe/frappe/core/doctype/doctype/doctype.py +415,{0}: Cannot set Assign Amend if not Submittable,{0}: Nem állítható hozzárendelése módosítandó ha nem Submittable apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Szerkesztés Szerep Engedélyek -DocType: Social Login Keys,Social Login Keys,Szociális Login Keys +DocType: Social Login Keys,Social Login Keys,Közösségi oldalak adatai DocType: Comment,Comment Date,Megjegyzés dátuma -apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +54,Remove all customizations?,Távolítsa el az összes testreszabást? +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +54,Remove all customizations?,Az összes testreszabás eltávolítása? DocType: Website Slideshow,Slideshow Name,Diavetítés név sites/assets/js/form.min.js +180,Cancelling,Törlése DocType: DocType,Allow Rename,Átnevezés engedélyezése @@ -1118,7 +1118,7 @@ DocType: Web Form,Success URL,A siker URL DocType: Email Account,Append To,Csatolja a DocType: Workflow Document State,Only Allow Edit For,Csak ő szerkesztheti DocType: DocType,DocType,DocType -apps/frappe/frappe/core/doctype/user/user.py +384,User {0} does not exist,Felhasználó {0} nem létezik +apps/frappe/frappe/core/doctype/user/user.py +384,User {0} does not exist,A(z) {0} felhasználó nem létezik DocType: Website Theme,"If image is selected, color will be ignored.","Ha kép van kiválasztva, színes figyelmen kívül hagyja." DocType: Top Bar Item,Top Bar Item,Top Bar Elem apps/frappe/frappe/utils/csvutils.py +50,"Unknown file encoding. Tried utf-8, windows-1250, windows-1252.","Ismeretlen fájl kódolás. Kipróbált utf-8, a Windows-1250, a Windows-1252." @@ -1128,7 +1128,7 @@ apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your ema can get back to you. Thanks!","Írja be mindkét e-mail és üzenet, hogy mi \ tud válaszolni Önnek. Köszönjük!" apps/frappe/frappe/email/smtp.py +143,Could not connect to outgoing email server,Nem tudott csatlakozni a kimenő e-mail szerverre sites/assets/js/desk.min.js +507,Rich Text,Rich Text -DocType: Workflow State,resize-full,átméretezni-full +DocType: Workflow State,resize-full,átméretezés-teljes DocType: Workflow State,off,ki apps/frappe/frappe/desk/query_report.py +25,Report {0} is disabled,Report {0} van tiltva apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +24,Recommended for inserting new records.,Ajánlott behelyezése új rekordok. @@ -1144,10 +1144,10 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +7,Select Ty apps/frappe/frappe/core/doctype/file_data/file_data.py +42,No permission to write / remove.,Nincs jogosultság írni / törölni. DocType: Workflow,"All possible Workflow States and roles of the workflow.
Docstatus Options: 0 is""Saved"", 1 is ""Submitted"" and 2 is ""Cancelled""","Minden lehetséges Workflow Államok és szerepét a munkafolyamat.
Docstatus Options: 0 ""Saved"", 1 ""be"", és 2. ""Törölt""" apps/frappe/frappe/print/page/print_format_builder/print_format_builder_layout.html +3,Drag elements from the sidebar to add. Drag them back to trash.,Drag elemeket az oldalsáv hozzá. Húzza őket vissza a szemetet. -DocType: Workflow State,resize-small,átméretezni-small +DocType: Workflow State,resize-small,átméretezés-kicsire sites/assets/js/editor.min.js +128,Horizontal Line Break,Vízszintes tördelés DocType: Top Bar Item,Right,Jobb -DocType: User,User Type,Felhasználó típus +DocType: User,User Type,Felhasználó típusa apps/frappe/frappe/core/page/user_permissions/user_permissions.js +68,Select User,Válassza a Felhasználó DocType: Communication,Keep a track of all communications,Hogy a pálya minden kommunikáció apps/frappe/frappe/desk/form/save.py +30,Did not save,Nem mentette @@ -1158,19 +1158,19 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +169,Permissi apps/frappe/frappe/core/page/data_import_tool/importer.py +67,Please make sure that there are no empty columns in the file.,"Kérjük, győződjön meg arról, hogy nincs üres oszlopok a fájlt." sites/assets/js/desk.min.js +600,You have unsaved changes in this form. Please save before you continue.,"Nem mentett módosítások ebben a formában. Kérjük, őrizze meg a folytatás előtt." apps/frappe/frappe/core/doctype/doctype/doctype.py +269,Default for {0} must be an option,Alapértelmezett {0} kell lennie egy lehetőség -DocType: User,User Image,Felhasználó kép +DocType: User,User Image,Felhasználó képe apps/frappe/frappe/email/bulk.py +176,Emails are muted,E-mailek elnémítása sites/assets/js/form.min.js +196,Ctrl + Up,Ctrl + Fel DocType: Website Theme,Heading Style,Címsorstílus -apps/frappe/frappe/desk/page/applications/applications.py +34,You cannot install this app,Nem lehet telepíteni ezt a app +apps/frappe/frappe/desk/page/applications/applications.py +34,You cannot install this app,Nem telepítheted ezt az alkalmazást DocType: Scheduler Log,Error,Hiba apps/frappe/frappe/model/document.py +480,Cannot link cancelled document: {0},Nem tud összekapcsolódni a lemondás dokumentumot: {0} apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +549,"For example: If you want to include the document ID, use {0}","Például: Ha azt szeretné, hogy tartalmazza a dokumentum ID, használd a {0}" apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +478,Select Table Columns for {0},Válassza ki a táblázat oszlopok {0} DocType: Custom Field,Options Help,Beállítások Súgó -DocType: DocField,Report Hide,Report elrejtése +DocType: DocField,Report Hide,Jelentés elrejtése DocType: Custom Field,Label Help,Felirat súgó -DocType: Workflow State,star-empty,csillagos üres +DocType: Workflow State,star-empty,csillag-üres DocType: Workflow State,ok,rendben DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,Ezek az értékek automatikusan frissülnek a tranzakciók és hasznos lesz korlátozni jogosultságait a felhasználó tranzakciókat tartalmazó ezeket az értékeket. apps/frappe/frappe/desk/page/applications/application_row.html +15,Publisher,Kiadó @@ -1179,7 +1179,7 @@ apps/frappe/frappe/templates/includes/comments/comments.py +52,View it in your b apps/frappe/frappe/templates/pages/update-password.html +1,Reset Password,Jelszó visszaállítása DocType: Workflow State,hand-left,kéz-bal apps/frappe/frappe/core/doctype/doctype/doctype.py +277,Fieldtype {0} for {1} cannot be unique,FieldType {0} {1} nem lehet egyedi -DocType: Email Account,Use SSL,Use SSL +DocType: Email Account,Use SSL,SSL használata DocType: Workflow State,play-circle,lejátszás-kör apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +75,Select Print Format to Edit,Válassza ki Print Format Edit DocType: Workflow State,circle-arrow-down,kör-nyíl-le @@ -1187,7 +1187,7 @@ DocType: DocField,Datetime,Datetime DocType: Workflow State,arrow-right,nyíl-jobbra DocType: Workflow State,Workflow state represents the current state of a document.,Munkafolyamat állapota jelenlegi állását mutatja a dokumentum. sites/assets/js/editor.min.js +152,Open Link in a new Window,Link megnyitása új ablakban -apps/frappe/frappe/utils/file_manager.py +230,Removed {0},Távolítani {0} +apps/frappe/frappe/utils/file_manager.py +230,Removed {0},{0} eltávolítása DocType: Company History,Highlight,Fontos események apps/frappe/frappe/print/doctype/print_format/print_format.py +17,Standard Print Format cannot be updated,Normál Print Format nem lehet frissíteni apps/frappe/frappe/core/doctype/doctype/doctype.py +381,"{0}: Create, Submit, Cancel and Amend only valid at level 0","{0}: Create, Küldés, Törlés és módosítása csak akkor érvényes a 0. szinten" @@ -1202,7 +1202,7 @@ DocType: Workflow State,question-sign,kérdőjel DocType: Email Account,Add Signature,Aláírás hozzáadása apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Left this conversation,Elhagyta ezt a beszélgetést apps/frappe/frappe/core/page/permission_manager/permission_manager.js +467,Did not set,Nem állította be -DocType: ToDo,ToDo,ToDo +DocType: ToDo,ToDo,Tennivalók DocType: DocField,No Copy,Nincs másolat DocType: Workflow State,qrcode,qrcode DocType: Web Form,Breadcrumbs,Zsemlemorzsa @@ -1217,8 +1217,8 @@ apps/frappe/frappe/model/base_document.py +411,Value cannot be changed for {0},A apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ Please enter a valid email address so that we can get back.","Úgy látszik, hogy megírtad a neve helyett az e-mail. \ Adjon meg egy érvényes email címet, hogy mi is kap vissza." DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Stílus képviseli a gomb színe: Success - Zöld, Danger - Red, Inverse - fekete, Primary - Dark Blue, Info - Light Blue, Figyelmeztetés - Orange" -DocType: Workflow Transition,Workflow Transition,Workflow Transition -DocType: Workflow State,resize-horizontal,átméretezése vízszintes +DocType: Workflow Transition,Workflow Transition,Munkafolyamat átvezetés +DocType: Workflow State,resize-horizontal,átméretezés-vízszintes DocType: Communication,Content,Tartalom DocType: Web Form,Go to this url after completing the form.,Ugrás erre az url után űrlap kitöltésével. DocType: Custom Field,Document,Dokumentum @@ -1236,7 +1236,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +243,These res DocType: Email Alert,Send alert if this field's value changes,"Riasztást küld, ha ez a mező értéke változásai" apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +102,Select a DocType to make a new format,"Válassza ki a DocType, hogy egy új formátumban" DocType: Module Def,Module Def,Modul Def -sites/assets/js/form.min.js +196,Done,Csinált +sites/assets/js/form.min.js +196,Done,Rendben sites/assets/js/form.min.js +286,Reply,Válasz DocType: Communication,By,Által DocType: Email Account,SMTP Server,SMTP Server @@ -1250,13 +1250,13 @@ DocType: Web Form,Web Page Link Text,Weboldal linket szöveg apps/frappe/frappe/config/setup.py +142,"Set default format, page size, print style etc.","Alapértelmezett formátuma, lapméret, nyomtatási stílus stb" DocType: DocType,Naming,Elnevezése DocType: Event,Every Year,Évenként -apps/frappe/frappe/core/doctype/user/user.py +350,Registered but disabled.,"Regisztráltam, de tiltva." +apps/frappe/frappe/core/doctype/user/user.py +350,Registered but disabled.,"Regisztrált, de letiltott." sites/assets/js/list.min.js +93,Delete permanently?,Véglegesen törölni? -sites/assets/js/desk.min.js +827,Search in a document type,Keresés a dokumentum típusát +sites/assets/js/desk.min.js +827,Search in a document type,Keresés dokumentum típus között apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +201,Allow field to remain editable even after submission,A mező szerkeszthető maradhat a benyújtását követően is -DocType: DocPerm,Role and Level,Szerep és Level +DocType: DocPerm,Role and Level,Beosztás és szint apps/frappe/frappe/desk/moduleview.py +31,Custom Reports,Egyéni jelentések -DocType: Website Script,Website Script,Weboldal Script +DocType: Website Script,Website Script,Weboldal skript apps/frappe/frappe/config/setup.py +147,Customized HTML Templates for printing transactions.,Testreszabott HTML sablonok nyomtatáshoz tranzakciókat. apps/frappe/frappe/desk/form/utils.py +103,No further records,Nincs több sor DocType: DocField,Long Text,Hosszú szöveg @@ -1264,7 +1264,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +35,Please do not chan sites/assets/js/desk.min.js +852,(Ctrl + G),(Ctrl + G) sites/assets/js/desk.min.js +808,Sorry! You are not permitted to view this page.,Elnézést! Éppen ezért tilos az oldal megtekintéséhez. DocType: Workflow State,bell,csengő -sites/assets/js/form.min.js +282,Share this document with,Ossza meg ezt az okmányt +sites/assets/js/form.min.js +282,Share this document with,Dokumentum megosztása vele: apps/frappe/frappe/desk/page/activity/activity.js +152,Jun,Június apps/frappe/frappe/utils/nestedset.py +227,{0} {1} cannot be a leaf node as it has children,{0} {1} nem lehet levélcsomópont hiszen a gyerekek DocType: Feed,Info,Infó @@ -1272,8 +1272,8 @@ apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message, DocType: Website Settings,Home Page,Kezdőlap DocType: Email Alert,Filters,Szűrők DocType: Workflow State,share-alt,share-alt -DocType: Role,Role Name,Szerep neve -DocType: Workflow Document State,Workflow Document State,Workflow dokumentum állam +DocType: Role,Role Name,Beosztás neve +DocType: Workflow Document State,Workflow Document State,Munkafolyamat dokumentum állapot apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +32,"To give acess to a role for only specific records, check the Apply User Permissions. User Permissions are used to limit users with such role to specific records.","Hogy acess szerepe csak konkrét emlékek, jelölje be az Alkalmazás a felhasználói jogosultságok. Felhasználói engedélyek használnak, hogy korlátozza a felhasználók ilyen szerepet adott rekordok." apps/frappe/frappe/workflow/doctype/workflow/workflow.py +70,Cannot cancel before submitting. See Transition {0},Nem lehet törölni benyújtása előtt. Lásd Transition {0} apps/frappe/frappe/templates/pages/print.py +139,Print Format {0} is disabled,A(z) {0} nyomtatvány sablon le van tiltva @@ -1304,9 +1304,9 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Kis szöveg apps/frappe/frappe/core/doctype/user/user.py +472,Administrator accessed {0} on {1} via IP Address {2}.,Administrator elérhető {0} {1} n keresztül IP Address {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py +263,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"Options ""Dynamic Link"" típusú mező felé kell néznie egy másik Link Field opciókkal, mint ""DocType""" -DocType: About Us Settings,Team Members Heading,Csapat tagjai Rovat +DocType: About Us Settings,Team Members Heading,Szervezeti felépítés fejszövege DocType: DocField,Do not allow user to change after set the first time,"Ne engedje, hogy a felhasználó módosítsa a beállítást követően először" -DocType: User,Third Party Authentication,Harmadik fél Authentication +DocType: User,Third Party Authentication,Egyéb azonosítók megadása DocType: Website Settings,Banner is above the Top Menu Bar.,Banner felett van a felső menüsor. DocType: User,"Enter default value fields (keys) and values. If you add multiple values for a field, the first one will be picked. These defaults are also used to set ""match"" permission rules. To see list of fields, go to Customize Form.","Írja be alapértelmezett érték mezőkre (billentyűk) és értékeket. Ha hozzá több értéket egy területen, az első kapja el. Ezek az alapértékek is beállítható ""meccs"" engedélyt szabályokat. Ha látni fenti területeken, látogasson el a Customize Forma ." DocType: Email Account,Port,Port @@ -1316,7 +1316,7 @@ apps/frappe/frappe/sessions.py +28,Cache Cleared,Cache Törölve apps/frappe/frappe/core/doctype/user/user.py +73,User with System Manager Role should always have User Type: System User,Felhasználó System Manager Role kell mindig Felhasználó típusa: Rendszer Felhasználó DocType: DocPerm,Export,Export DocType: About Us Settings,More content for the bottom of the page.,További tartalom a lap aljára. -sites/assets/js/desk.min.js +191,Session Expired. Logging you out,Lejárt a. Kilépés a következő +sites/assets/js/desk.min.js +191,Session Expired. Logging you out,Lejárt a munkamenet időkorlátja. Ki kell lépni a programból. DocType: Workflow,DocType on which this Workflow is applicable.,DocType amelyeken ez a munkafolyamat alkalmazható. DocType: Blog Category,Category Name,Kategória neve DocType: Print Settings,PDF Settings,PDF beállítások @@ -1331,7 +1331,7 @@ DocType: User,Check / Uncheck roles assigned to the User. Click on the Role to f DocType: Web Page,Insert Code,Kód beszúrása apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +548,You can add dynamic properties from the document by using Jinja templating.,Felveheti dinamikus tulajdonságokat a dokumentumot a Jinja sablonozó. sites/assets/js/desk.min.js +825,List a document type,Adatok listázása -DocType: Event,Ref Type,Ref Type +DocType: Event,Ref Type,Hivatkozás típusa apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,"If you are uploading new records, leave the ""name"" (ID) column blank.","Ha töltesz fel új rekordokat, hagyja a ""name"" (ID) oszlopot üresen." apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +360,No of Columns,Nem oszlopok DocType: Workflow State,Calendar,Naptár @@ -1339,10 +1339,10 @@ apps/frappe/frappe/model/rename_doc.py +95,"Another {0} with name {1} exists, se DocType: DocType,Custom?,Egyedi? DocType: Website Settings,Website Theme Image,Weboldal Theme Kép DocType: Workflow State,road,út -DocType: User,Timezone,Timezone +DocType: User,Timezone,Időzóna sites/assets/js/desk.min.js +538,Unable to load: {0},Nem sikerült betölteni: {0} DocType: DocField,Read Only,Csak olvasható -DocType: Print Settings,Send Print as PDF,Küldd Nyomtatás PDF +DocType: Print Settings,Send Print as PDF,Nyomtatvány küldése PDF-ben DocType: Workflow Transition,Allowed,Jóváhagyva apps/frappe/frappe/core/doctype/doctype/doctype.py +287,There can be only one Fold in a form,Nem lehet csak egy nagyságrenddel formában apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Érvénytelen kezdőlap @@ -1360,9 +1360,9 @@ sites/assets/js/desk.min.js +444,Date must be in format: {0},Dátum kell formát apps/frappe/frappe/core/doctype/doctype/doctype.py +367,"{0}: Only one rule allowed with the same Role, Level and Apply User Permissions","{0}: csak egy szabály engedélyezettek ugyanazt a szerepet, Level és Apply felhasználói engedélyek" apps/frappe/frappe/print/page/print_format_builder/print_format_builder_field.html +22,Select Columns,Select oszlopok DocType: Workflow State,folder-open,mappa-nyitva -apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +1,Search Application,Keresés Application +apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +1,Search Application,Alkalmazás keresése apps/frappe/frappe/config/website.py +18,Single Post (article).,Single Post (cikk). -DocType: Property Setter,Set Value,Beállított érték +DocType: Property Setter,Set Value,Érték megadása apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +189,Hide field in form,Elrejtése mező formában DocType: Email Alert,Optional: The alert will be sent if this expression is true,"Választható: A riasztási küldjük, ha ez a kifejezés igaz" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Használhatja Customize űrlapot a szinten a területeken. @@ -1385,22 +1385,22 @@ DocType: Website Slideshow,This goes above the slideshow.,Ez a mérték meghalad apps/frappe/frappe/config/setup.py +208,Install Applications.,Alkalmazások telepítése. DocType: Event,Private,Magán DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),E-mail küldése Nyomtatás Mellékletek PDF (ajánlott) -DocType: Workflow Action,Workflow Action,Workflow Action -DocType: Event,Send an email reminder in the morning,E-mail küldése emlékeztető reggel +DocType: Workflow Action,Workflow Action,Munkafolyamat művelet +DocType: Event,Send an email reminder in the morning,Reggel email emlékeztető küldése DocType: Blog Post,Published On,Közzétette DocType: Feed,Feed,Hírfolyam DocType: ToDo,Reference Type,Referencia típusa DocType: Event,Repeat On,Ismétlés Be apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30,User Permissions,Felhasználói engedélyek apps/frappe/frappe/desk/page/activity/activity.js +153,Oct,Október -DocType: Workflow State,warning-sign,warning-jel +DocType: Workflow State,warning-sign,figyelmeztető jel DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Cím mutatása a böngészőablakban "előtag - cím" -DocType: Workflow Document State,Update Value,Frissítés Érték +DocType: Workflow Document State,Update Value,Érték frissítése DocType: System Settings,Number Format,Szám formátum DocType: Custom Field,Insert After,Beszúrás utána DocType: Social Login Keys,GitHub Client Secret,GitHub Client Secret DocType: Report,Report Name,Jelentés neve -DocType: Email Alert,Save,Save +DocType: Email Alert,Save,Mentés DocType: Website Settings,Title Prefix,Cím előtag DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Közlemények és ömlesztett maileket küldeni fog ez a kimenő szerver. DocType: Workflow State,cog,fogaskerék diff --git a/frappe/translations/id.csv b/frappe/translations/id.csv index 149562a7cd..4ac44afe4b 100644 --- a/frappe/translations/id.csv +++ b/frappe/translations/id.csv @@ -86,7 +86,7 @@ DocType: Comment,Post Topic,Kirim Topik apps/frappe/frappe/print/page/print_format_builder/print_format_builder_column_selector.html +2,Widths can be set in px or %.,Lebar dapat diatur dalam px atau%. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Izin bisa diterapkan pada Pengguna berdasarkan apa Peran mereka ditugaskan. sites/assets/js/desk.min.js +890,You are not allowed to send emails related to this document,Anda tidak diizinkan untuk mengirim email yang berhubungan dengan dokumen ini -apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Anda tidak diizinkan untuk menghapus Website Tema standar +apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Anda tidak diizinkan untuk menghapus Tema Website standar apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +176,Example,Contoh DocType: Workflow State,gift,hadiah apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +180,Reqd,Reqd @@ -254,7 +254,7 @@ apps/frappe/frappe/config/setup.py +19,User Roles,Peran Pengguna DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Setter Properti menimpa sebuah DOCTYPE standar atau properti Bidang apps/frappe/frappe/core/doctype/user/user.py +332,Cannot Update: Incorrect / Expired Link.,Tidak bisa Perbarui: salah / Expired Link. DocType: DocField,Set Only Once,Set Hanya Sekali -apps/frappe/frappe/core/doctype/doctype/doctype.py +419,{0}: Cannot set import as {1} is not importable,{0}: Tidak dapat mengatur impor sebagai {1} adalah tidak diimpor +apps/frappe/frappe/core/doctype/doctype/doctype.py +419,{0}: Cannot set import as {1} is not importable,{0}: Tidak dapat mengatur impor sebagai {1} bukan yang bisa diimpor DocType: Top Bar Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd apps/frappe/frappe/desk/query_report.py +18,You don't have access to Report: {0},Anda tidak memiliki akses ke Laporkan: {0} @@ -275,7 +275,7 @@ DocType: Website Theme,Google Font (Text),Google Font (Teks) apps/frappe/frappe/core/page/permission_manager/permission_manager.js +316,Did not remove,Tidak menghapus DocType: Report,Query,Query DocType: DocType,Sort Order,Tata Urutan -apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +130,'In List View' not allowed for type {0} in row {1},'Dalam Tampilan Daftar' tidak diperbolehkan untuk jenis {0} berturut-turut {1} +apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +130,'In List View' not allowed for type {0} in row {1},'Dalam Tampilan Daftar' tidak diperbolehkan untuk tipe {0} di baris {1} DocType: Custom Field,Select the label after which you want to insert new field.,Pilih label setelah itu Anda ingin memasukkan bidang baru. DocType: Website Settings,Tweet will be shared via your user account (if specified),Tweet akan dibagi melalui account pengguna Anda (bila ditentukan) ,Document Share Report,Dokumen Saham Laporkan @@ -408,7 +408,7 @@ DocType: Web Form,Advanced,Maju DocType: User,"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages.","Jenis Pengguna ""Sistem Pengguna"" dapat mengakses Desktop. ""Situs web Pengguna"" hanya dapat login ke website dan halaman Portal." DocType: File Data,Attached To Name,Terlampir Untuk Nama apps/frappe/frappe/email/receive.py +53,Invalid User Name or Support Password. Please rectify and try again.,Valid Nama Pengguna atau Dukungan Password. Harap memperbaiki dan coba lagi. -DocType: Email Account,Yahoo Mail,Yahoo Mail +DocType: Email Account,Yahoo Mail,Surat Yahoo apps/frappe/frappe/core/page/permission_manager/permission_manager.js +469,Saved!,Disimpan! apps/frappe/frappe/desk/page/activity/activity_row.html +17,Updated {0}: {1},Diperbarui {0}: {1} DocType: DocType,Master,Nahkoda @@ -599,7 +599,7 @@ sites/assets/js/desk.min.js +463,Please save the document before uploading.,Sila apps/frappe/frappe/core/doctype/doctype/doctype.py +292,Fold must come before a Section Break,Lipat harus datang sebelum Bagian istirahat apps/frappe/frappe/core/doctype/user/user.py +374,Not allowed to reset the password of {0},Tidak diizinkan untuk me-reset password dari {0} DocType: Workflow State,hand-down,tangan-down -apps/frappe/frappe/core/doctype/doctype/doctype.py +385,{0}: Cannot set Cancel without Submit,{0}: Tidak dapat mengatur Batalkan tanpa Kirim +apps/frappe/frappe/core/doctype/doctype/doctype.py +385,{0}: Cannot set Cancel without Submit,{0}: Tidak dapat mengatur Pembatalan tanpa Penyerahan DocType: Website Theme,Theme,Tema DocType: DocType,Is Submittable,Apakah Submittable apps/frappe/frappe/custom/doctype/property_setter/property_setter.js +7,Value for a check field can be either 0 or 1,Nilai untuk bidang pemeriksaan dapat berupa 0 atau 1 @@ -625,7 +625,7 @@ DocType: Website Settings,Disable Signup,Nonaktifkan Signup apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7,Roles can be set for users from their User page.,Peran dapat diatur untuk pengguna dari halaman Pengguna mereka. apps/frappe/frappe/website/doctype/web_page/web_page.py +158,Website Search,Website Search DocType: DocField,Mandatory,Wajib -apps/frappe/frappe/core/doctype/doctype/doctype.py +356,{0}: No basic permissions set,{0}: Tidak ada dasar mengatur hak akses +apps/frappe/frappe/core/doctype/doctype/doctype.py +356,{0}: No basic permissions set,{0}: Tidak ada izin dasar yang diatur apps/frappe/frappe/utils/backups.py +140,Download link for your backup will be emailed on the following email address: {0},Download link untuk cadangan Anda akan dikirimkan melalui email pada alamat email berikut: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Artinya dari Submit, Batal, Amend" apps/frappe/frappe/desk/doctype/todo/todo_list.js +7,To Do,To Do @@ -646,7 +646,7 @@ DocType: DocPerm,DocPerm,DocPerm apps/frappe/frappe/core/doctype/doctype/doctype.py +273,Precision should be between 1 and 6,Presisi harus antara 1 dan 6 DocType: About Us Team Member,Image Link,Image Link DocType: Workflow State,step-backward,langkah-mundur -apps/frappe/frappe/utils/boilerplate.py +228,{app_title},{} App_title +apps/frappe/frappe/utils/boilerplate.py +228,{app_title},{app_title} apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Hanya bidang wajib diperlukan untuk catatan baru. Anda dapat menghapus kolom non-wajib jika Anda inginkan. DocType: Workflow State,text-height,text-height DocType: Workflow State,map-marker,peta-penanda @@ -655,7 +655,7 @@ DocType: Event,Repeat this Event,Ulangi Acara ini DocType: DocPerm,Amend,Merubah apps/frappe/frappe/templates/includes/login/login.js +43,Valid Login id required.,Login id yang valid dibutuhkan. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Re-terbuka -apps/frappe/frappe/core/doctype/docshare/docshare.py +44,{0} un-shared this document with {1},{0}-un bersama dokumen ini dengan {1} +apps/frappe/frappe/core/doctype/docshare/docshare.py +44,{0} un-shared this document with {1},{0} tidak membagi dokumen ini dengan {1} apps/frappe/frappe/templates/emails/auto_reply.html +4,This is an automatically generated reply,Ini adalah balasan secara otomatis apps/frappe/frappe/model/document.py +376,Record does not exist,Rekam tidak ada apps/frappe/frappe/templates/pages/404.html +4,Page missing or moved,Halaman hilang atau dipindahkan @@ -817,7 +817,7 @@ DocType: Workflow State,Style,Gaya apps/frappe/frappe/website/doctype/blog_post/blog_post.py +166,{0} comments,{0} komentar DocType: Customize Form Field,Label and Type,Label dan Jenis DocType: Workflow State,forward,depan -sites/assets/js/form.min.js +270,{0} edited this {1},{0} diedit ini {1} +sites/assets/js/form.min.js +270,{0} edited this {1},{0} telah mengedit ini {1} DocType: Web Page,Custom Javascript,Kustom Javascript DocType: DocPerm,Submit,Kirim DocType: Website Settings,Sub-domain provided by erpnext.com,Sub-domain yang disediakan oleh erpnext.com @@ -844,14 +844,14 @@ apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +159, DocType: Patch Log,List of patches executed,Daftar patch dieksekusi DocType: Communication,Communication Medium,Komunikasi Medium DocType: Website Settings,Banner HTML,Banner HTML -apps/frappe/frappe/model/base_document.py +398,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} tidak dapat ""{2}"". Ini harus menjadi salah satu dari ""{3}""" +apps/frappe/frappe/model/base_document.py +398,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} tidak dapat ""{2}"". Seharusnya salah satu dari ""{3}""" apps/frappe/frappe/core/doctype/user/user.py +156,Password Update,Sandi Pembaruan DocType: Workflow State,trash,sampah apps/frappe/frappe/desk/page/activity/activity.js +153,Dec,Desember DocType: Event,Leave blank to repeat always,Biarkan kosong untuk mengulang selalu DocType: Event,Ends on,Berakhir pada apps/frappe/frappe/utils/nestedset.py +181,Item cannot be added to its own descendents,Item tidak dapat ditambahkan ke keturunan sendiri -sites/assets/js/form.min.js +270,{0} created this {1},{0} diciptakan ini {1} +sites/assets/js/form.min.js +270,{0} created this {1},{0} telah membuat ini {1} apps/frappe/frappe/desk/form/assign_to.py +120,"The task {0}, that you assigned to {1}, has been closed by {2}.","Tugas {0}, yang ditugaskan untuk {1}, telah ditutup oleh {2}." DocType: Blogger,Short Name,Nama pendek DocType: Workflow State,magnet,magnet @@ -924,7 +924,7 @@ sites/assets/js/desk.min.js +836,Open {0},Terbuka {0} DocType: Workflow State,ok-sign,ok-tanda sites/assets/js/form.min.js +158,Duplicate,Duplikat apps/frappe/frappe/email/doctype/email_alert/email_alert.py +16,Please specify which value field must be checked,Silakan tentukan mana bidang nilai harus diperiksa -apps/frappe/frappe/core/page/data_import_tool/exporter.py +69,"""Parent"" signifies the parent table in which this row must be added","""Parent"" menandakan tabel induk di mana baris ini harus ditambahkan" +apps/frappe/frappe/core/page/data_import_tool/exporter.py +69,"""Parent"" signifies the parent table in which this row must be added","""Induk"" menandakan tabel induk di mana baris ini harus ditambahkan" DocType: Website Theme,Apply Style,Terapkan Gaya sites/assets/js/form.min.js +283,Shared With,Bersama Dengan ,Modules Setup,Modul Pengaturan @@ -1098,7 +1098,7 @@ DocType: DocField,Attach,Melampirkan DocType: DocType,Permission Rules,Aturan Izin sites/assets/js/form.min.js +157,Links,Links apps/frappe/frappe/model/base_document.py +322,Value missing for,Nilai hilang untuk -apps/frappe/frappe/model/delete_doc.py +135,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Rekam didaftarkan tidak dapat dihapus. +apps/frappe/frappe/model/delete_doc.py +135,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Rekaman terdaftar tidak dapat dihapus. DocType: DocPerm,Read,Membaca apps/frappe/frappe/templates/pages/update-password.html +18,Old Password,Password Lama apps/frappe/frappe/website/doctype/blog_post/blog_post.py +97,Posts by {0},Posting oleh {0} @@ -1363,7 +1363,7 @@ apps/frappe/frappe/desk/doctype/event/event.py +55,Events In Today's Calendar,Ac DocType: Web Page,Web Page,Halaman web DocType: Blog Category,Blogger,Blogger sites/assets/js/desk.min.js +444,Date must be in format: {0},Tanggal harus dalam format: {0} -apps/frappe/frappe/core/doctype/doctype/doctype.py +367,"{0}: Only one rule allowed with the same Role, Level and Apply User Permissions","{0}: Hanya satu aturan diperbolehkan dengan Peran yang sama, Tingkat dan Terapkan Izin Pengguna" +apps/frappe/frappe/core/doctype/doctype/doctype.py +367,"{0}: Only one rule allowed with the same Role, Level and Apply User Permissions","{0}: Hanya satu aturan yang diperbolehkan dengan Peran, Tingkat dan Terapan Izin Pengguna yang sama" apps/frappe/frappe/print/page/print_format_builder/print_format_builder_field.html +22,Select Columns,Pilih Kolom DocType: Workflow State,folder-open,folder terbuka apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +1,Search Application,Cari Aplikasi @@ -1379,7 +1379,7 @@ apps/frappe/frappe/core/doctype/user/user.py +234,User {0} cannot be renamed,Pen apps/frappe/frappe/website/doctype/website_settings/website_settings.js +17,Exported,Diekspor DocType: DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON daftar Doctypes digunakan untuk menerapkan Izin Pengguna. Jika kosong, semua Doctypes terkait akan digunakan untuk menerapkan Izin Pengguna." DocType: Report,Ref DocType,DocType Ref -apps/frappe/frappe/core/doctype/doctype/doctype.py +390,{0}: Cannot set Amend without Cancel,{0}: Tidak dapat mengatur Mengubah tanpa Batal +apps/frappe/frappe/core/doctype/doctype/doctype.py +390,{0}: Cannot set Amend without Cancel,{0}: Tidak dapat mengatur Perubahan tanpa Pembatalan sites/assets/js/form.min.js +256,Full Page,Full Page DocType: DocType,Is Child Table,Apakah Anak Table apps/frappe/frappe/utils/csvutils.py +123,{0} must be one of {1},{0} harus menjadi salah satu {1} @@ -1420,7 +1420,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9, apps/frappe/frappe/templates/includes/login/login.js +120,Oops! Something went wrong,Ups! Ada yang salah DocType: Blog Settings,Blog Introduction,Blog Pendahuluan DocType: User,Email Settings,Pengaturan Email -apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} tidak valid Negara +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} bukan Keadaan yang valid DocType: Workflow State,ok-circle,ok-lingkaran apps/frappe/frappe/core/doctype/user/user.py +101,Sorry! User should have complete access to their own record.,Mohon Maaf! Pengguna harus memiliki akses penuh untuk merekam mereka sendiri. DocType: Custom Field,In Report Filter,Dalam Laporan Filter diff --git a/frappe/translations/nl.csv b/frappe/translations/nl.csv index 5be57496fd..3ecd3a2696 100644 --- a/frappe/translations/nl.csv +++ b/frappe/translations/nl.csv @@ -1067,7 +1067,7 @@ DocType: User,Send Notifications for Transactions I Follow,Stuur Meldingen voor apps/frappe/frappe/core/doctype/doctype/doctype.py +388,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Kan niet Indienen, Annuleren, Wijzigen zonder te Schrijven" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Instellingen > Gebruiker apps/frappe/frappe/templates/emails/password_reset.html +6,Thank you,Dankjewel -sites/assets/js/form.min.js +180,Saving,Besparing +sites/assets/js/form.min.js +180,Saving,Opslaan DocType: Print Settings,Print Style Preview,Print Stijl Voorbeeld DocType: About Us Settings,About Us Settings,Over Ons Instellingen DocType: Website Settings,Website Theme,Website Theme diff --git a/frappe/translations/pl.csv b/frappe/translations/pl.csv index 9b788091df..3faf90e44a 100644 --- a/frappe/translations/pl.csv +++ b/frappe/translations/pl.csv @@ -57,13 +57,13 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +47,Docume DocType: Workflow,Workflow State Field, DocType: DocType,Title Field, apps/frappe/frappe/core/doctype/user/user.py +478,"If you think this is unauthorized, please change the Administrator password.","Jeśli uważasz, że to jest nieuprawnione, należy zmienić hasło administratora." -DocType: Workflow State,eject, +DocType: Workflow State,eject,wysuń apps/frappe/frappe/core/page/user_permissions/user_permissions.js +16,Help for User Permissions,Pomoc dla uprawnień użytkowników apps/frappe/frappe/email/bulk.py +78,Unsubscribe link: {0},Wyrejestrowanie link: {0} DocType: Communication,Visit, -apps/frappe/frappe/desk/page/applications/application_row.html +7,Install,Zainstalować +apps/frappe/frappe/desk/page/applications/application_row.html +7,Install,Instaluj DocType: Website Settings,Twitter Share via, -apps/frappe/frappe/config/website.py +33,Embed image slideshows in website pages., +apps/frappe/frappe/config/website.py +33,Embed image slideshows in website pages.,Umieść pokazy slajdów na stronach internetowych. DocType: Workflow Action,Workflow Action Name, apps/frappe/frappe/core/doctype/doctype/doctype.py +131,DocType can not be merged, DocType: Web Form Field,Fieldtype,FieldType @@ -72,7 +72,7 @@ DocType: Workflow State,plus, DocType: Scheduler Log,Scheduler Log, sites/assets/js/desk.min.js +649,You,Ty DocType: Website Theme,lowercase, -DocType: Note,Everyone can read, +DocType: Note,Everyone can read,Wszyscy mogą przeczytać apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +25,Please specify user,Proszę podać użytkownika DocType: Email Unsubscribe,Email Unsubscribe,E-mail Wypisz się DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results., @@ -87,7 +87,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6, sites/assets/js/desk.min.js +890,You are not allowed to send emails related to this document,Nie masz uprawnień aby wysłyłać maile powiązane z tym dokumentem apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,"Nie masz uprawnień, aby usunąć standardową Strona tematyczna" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +176,Example,Przykład -DocType: Workflow State,gift, +DocType: Workflow State,gift,podarunek apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +180,Reqd, apps/frappe/frappe/core/doctype/communication/communication.py +119,Unable to find attachment {0}, apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +168,Assign a permission level to the field.,Przypisywanie poziom uprawnień do pola. @@ -99,7 +99,7 @@ DocType: Workflow State,chevron-up, sites/assets/js/desk.min.js +852,Documentation,Dokumentacja DocType: DocShare,Internal record of document shares,Rekord wewnętrzna akcji dokumentów DocType: Workflow State,Comment,Komentarz -apps/frappe/frappe/email/bulk.py +120,Email limit {0} crossed,Limit e-mail {0} skrzyżowane +apps/frappe/frappe/email/bulk.py +120,Email limit {0} crossed,Limit e-mail {0} przekroczony apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +17,"You can change Submitted documents by cancelling them and then, amending them.", DocType: DocField,Display, sites/assets/js/desk.min.js +832,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)..., na przykład (55 + 434) / 4 lub = Math.sin (Math.PI / 2) ... @@ -121,7 +121,7 @@ apps/frappe/frappe/core/doctype/report/report.js +11,Example:,Przykład: DocType: Workflow,Defines workflow states and rules for a document.,Definiuje stany przepływu pracy i zasady dokumentu. DocType: DocType,Show this field as title, apps/frappe/frappe/model/db_schema.py +417,Fieldname {0} cannot have special characters like {1},"Nazwa pola {0} nie może mieć znaków specjalnych, takich jak {1}" -apps/frappe/frappe/model/document.py +388,Error: Document has been modified after you have opened it, +apps/frappe/frappe/model/document.py +388,Error: Document has been modified after you have opened it,Błąd: Dokument został zmodyfikowany po otwarciu apps/frappe/frappe/core/doctype/doctype/doctype.py +413,{0}: Cannot set Assign Submit if not Submittable, DocType: Social Login Keys,Facebook, apps/frappe/frappe/templates/pages/list.py +59,"Filtered by ""{0}""",Filtrowane przez "{0}" @@ -134,7 +134,7 @@ DocType: DocField,Permissions, DocType: Workflow State,plus-sign, sites/assets/js/desk.min.js +830,module name..., Nazwa modułu ... DocType: Event,Public, -apps/frappe/frappe/email/smtp.py +131,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Konto e-mail nie konfiguracji. Proszę utworzyć nowe konto e-mail z Ustawienia> E-mail> Konta e-mail +apps/frappe/frappe/email/smtp.py +131,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Konto e-mail zostało skonfigurowane. Proszę utworzyć nowe konto e-mail z Ustawienia> E-mail> Konta e-mail DocType: Block Module,Block Module,Moduł bloku apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Eksport Szablon DocType: Block Module,Module, @@ -204,14 +204,14 @@ DocType: User,Fill Screen,Wypełnij ekran apps/frappe/frappe/core/doctype/role/role.js +9,Edit Permissions,Edytuj uprawnienia sites/assets/js/form.min.js +210,Edit via Upload,Edycja poprzez Upload DocType: Country,Country Name,Nazwa kraju -DocType: About Us Team Member,About Us Team Member, +DocType: About Us Team Member,About Us Team Member,O Nas Członek Zespołu apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.", apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.", apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.", DocType: Property Setter,ID (name) of the entity whose property is to be set, DocType: Website Settings,Website Theme Image Link,Strona tematyczna Link do obrazka DocType: Website Settings,Sidebar Items, -DocType: Workflow State,exclamation-sign, +DocType: Workflow State,exclamation-sign,wykrzyknik DocType: Website Theme,Hide Sidebar,Ukryj Sidebar sites/assets/js/list.min.js +98,Gantt,Gantta DocType: About Us Settings,Introduce your company to the website visitor., @@ -230,7 +230,7 @@ DocType: Print Format,Format Data,Format danych DocType: Customize Form Field,Customize Form Field, apps/frappe/frappe/config/setup.py +47,Check which Documents are readable by a User,"Sprawdź, które dokumenty są czytelne przez Użytkownika" DocType: User,Reset Password Key, -DocType: Email Account,Enable Auto Reply,Włącz automatyczne Odpowiedz +DocType: Email Account,Enable Auto Reply,Włącz automatyczną odpowiedź DocType: Workflow State,zoom-in,powiększ apps/frappe/frappe/email/bulk.py +129,Unsubscribe from this list,Wypisać się z tej listy apps/frappe/frappe/desk/page/activity/activity.js +153,Sep,Września @@ -302,7 +302,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +29,Fieldname not sites/assets/js/desk.min.js +536,Last Updated By,Zmieniony przez DocType: Website Theme,Background Color, sites/assets/js/desk.min.js +893,There were errors while sending email. Please try again., -DocType: Web Page,0 is highest,0 jest najlepsze +DocType: Web Page,0 is highest,0 jest nawyższe DocType: Email Alert,Value Changed,Wartość Zmienione apps/frappe/frappe/model/base_document.py +263,Duplicate name {0} {1}, DocType: Web Form Field,Web Form Field,Web Form Pole @@ -348,8 +348,8 @@ sites/assets/js/list.min.js +105,{0} is not set,{0} nie jest ustawiona apps/frappe/frappe/permissions.py +168,Not allowed to access {0} with {1} = {2}, apps/frappe/frappe/templates/emails/print_link.html +2,View this in your browser,Zobacz to w swojej przeglądarce DocType: DocType,Search Fields, -sites/assets/js/desk.min.js +892,Email sent to {0}, -DocType: Event,Event, +sites/assets/js/desk.min.js +892,Email sent to {0},Wiadomość wysłana do {0} +DocType: Event,Event,Wydarzenie sites/assets/js/desk.min.js +901,"On {0}, {1} wrote:","Na {0}, {1} napisał:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +80,Cannot delete standard field. You can hide it if you want,"Nie można usunąć standardowe pole. Możesz ukryć go, jeśli chcesz" DocType: Top Bar Item,For top bar, @@ -360,7 +360,7 @@ DocType: Workflow State,heart, DocType: Workflow State,minus, sites/assets/js/desk.min.js +183,Server Error: Please check your server logs or contact tech support., apps/frappe/frappe/core/doctype/user/user.py +115,Welcome email sent, -apps/frappe/frappe/core/doctype/user/user.py +352,Already Registered, +apps/frappe/frappe/core/doctype/user/user.py +352,Already Registered,Już zarejestrowano DocType: System Settings,Float Precision, DocType: Property Setter,Property Setter, apps/frappe/frappe/core/page/user_permissions/user_permissions.js +217,Select User or DocType to start., @@ -400,9 +400,9 @@ DocType: Email Alert,Condition,Stan sites/assets/js/desk.min.js +829,Open a module or tool,Otwórz moduł lub narzędzie DocType: Module Def,App Name, DocType: Workflow,"Field that represents the Workflow State of the transaction (if field is not present, a new hidden Custom Field will be created)", -apps/frappe/frappe/templates/pages/login.py +162,Email not verified with {1}, +apps/frappe/frappe/templates/pages/login.py +162,Email not verified with {1},Email nie zweryfikowany {1} DocType: Email Account,e.g. pop.gmail.com,np pop.gmail.com -apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +526,Edit to add content,"Edycja, aby dodać treść" +apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +526,Edit to add content,"Edytuj, aby dodać treść" DocType: Web Form,Advanced,Zaawansowany DocType: User,"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages.","Typ użytkownika ""System obsługi"" może uzyskać dostęp do pulpitu. ""Strona użytkownika"" może być zalogowany tylko na stronie internetowej i stron portalu." DocType: File Data,Attached To Name, @@ -448,7 +448,7 @@ For Select, enter list of Options, each on a new line.","Za linki, wprowadź DOC DocType: Workflow State,film, apps/frappe/frappe/model/db_query.py +286,No permission to read {0},Brak uprawnień do odczytu {0} apps/frappe/frappe/utils/nestedset.py +221,Multiple root nodes not allowed., -sites/assets/js/desk.min.js +603,Get, +sites/assets/js/desk.min.js +603,Get,Uzyskaj apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +55,Options for select. Each option on a new line. e.g.:
Option 1
Option 2
Option 3
,Opcje do wyboru. Każda opcja w nowej linii. np:
Opcja 1 Opcja 2

Opcja 3
sites/assets/js/desk.min.js +125,Confirm,Potwierdzać DocType: System Settings,yyyy-mm-dd, @@ -465,13 +465,13 @@ DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""","np ""Pomoc DocType: User,Facebook User ID, DocType: Workflow State,fast-forward, apps/frappe/frappe/print/page/print_format_builder/print_format_builder_column_selector.html +1,"Check columns to select, drag to set order.","Sprawdź kolumny wybrać, przeciągnij, aby określić kolejność." -DocType: Event,Every Day, +DocType: Event,Every Day,Codziennie apps/frappe/frappe/email/smtp.py +58,Please setup default Email Account from Setup > Email > Email Account,Proszę konto domyślna konfiguracja e-mail z Setup> E-mail> Konta e-mail DocType: Workflow State,move,ruch DocType: System Settings,Date and Number Format, DocType: Website Theme,"Add the name of a Google Web Font e.g. ""Open Sans""","Dodaj nazwę Google Web Font np Sans "" Open" DocType: Web Form,Actions,Działania -DocType: Workflow State,align-justify, +DocType: Workflow State,align-justify,Wyrównaj do lewej i do prawej DocType: User,Middle Name (Optional), sites/assets/js/desk.min.js +519,No Results, DocType: System Settings,Security, @@ -481,11 +481,11 @@ sites/assets/js/list.min.js +102,Starred By Me,Ulubione By Me apps/frappe/frappe/core/page/permission_manager/permission_manager.js +48,Select Document Type, apps/frappe/frappe/utils/nestedset.py +201,Cannot delete {0} as it has child nodes,Nie można skasować {0} ponieważ posiada elementy potomne apps/frappe/frappe/templates/includes/list/filters.html +19,clear,jasny -apps/frappe/frappe/desk/doctype/event/event.py +24,Every day events should finish on the same day.,Co zdarzenia dni powinno zakończyć się w tym samym dniu. +apps/frappe/frappe/desk/doctype/event/event.py +24,Every day events should finish on the same day.,Codzienne wydarzenia powinny kończyć się tego samego dnia DocType: Communication,User Tags, DocType: Workflow State,download-alt, DocType: Web Page,Main Section, -apps/frappe/frappe/core/doctype/doctype/doctype.py +226,{0} not allowed in fieldname {1}, +apps/frappe/frappe/core/doctype/doctype/doctype.py +226,{0} not allowed in fieldname {1},{0} niedozwolone w nazwie pola {1} DocType: Page,Icon,ikona DocType: Web Page,Content in markdown format that appears on the main side of your page, DocType: System Settings,dd/mm/yyyy, @@ -506,7 +506,7 @@ DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[ apps/frappe/frappe/config/setup.py +185,Add fields to forms.,Dodaj pola do formularza. apps/frappe/frappe/templates/pages/me.py +14,You need to be logged in to access this page.,"Musisz być zalogowany, aby uzyskać dostęp do tej strony." DocType: Workflow State,leaf, -apps/frappe/frappe/config/desktop.py +60,Installer, +apps/frappe/frappe/config/desktop.py +60,Installer,Instalator sites/assets/js/editor.min.js +113,Insert Link,Wstaw link DocType: Contact Us Settings,Query Options, DocType: Patch Log,Patch Log, @@ -561,14 +561,14 @@ apps/frappe/frappe/permissions.py +171,Row,Wiersz DocType: Workflow State,Check,Sprawdź apps/frappe/frappe/desk/page/activity/activity.js +152,Apr,Kwietnia apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +58,Fieldname which will be the DocType for this link field.,"Nazwa pola, które będzie DocType dla tego pola łącza." -DocType: User,Email Signature, +DocType: User,Email Signature,Podpis pod Email DocType: Website Settings,Google Analytics ID, DocType: Website Theme,Link to your Bootstrap theme,Link do tematu Bootstrap -sites/assets/js/desk.min.js +507,Edit as {0},Edycja w {0} +sites/assets/js/desk.min.js +507,Edit as {0},Edycja jako {0} sites/assets/js/desk.min.js +824,new type of document, Nowy rodzaj dokumentu apps/frappe/frappe/core/page/user_permissions/user_permissions.js +194,No User Restrictions found.,Nie znaleziono Ograniczenia użytkownika. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +10,Default Inbox,Domyślnie Skrzynka odbiorcza -sites/assets/js/desk.min.js +521,Make a new,Stwórz +sites/assets/js/desk.min.js +521,Make a new,Stwórz nowy DocType: Print Settings,PDF Page Size,PDF Rozmiar strony sites/assets/js/desk.min.js +852,About,Informacje apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,"For updating, you can update only selective columns.",Do aktualizacji można aktualizować tylko selektywnych kolumn. @@ -624,10 +624,10 @@ DocType: Website Settings,Disable Signup, apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7,Roles can be set for users from their User page., apps/frappe/frappe/website/doctype/web_page/web_page.py +158,Website Search,Strona WWW Szukaj DocType: DocField,Mandatory, -apps/frappe/frappe/core/doctype/doctype/doctype.py +356,{0}: No basic permissions set, +apps/frappe/frappe/core/doctype/doctype/doctype.py +356,{0}: No basic permissions set,{0}: Brak podstawowych uprawnień apps/frappe/frappe/utils/backups.py +140,Download link for your backup will be emailed on the following email address: {0},Pobierz link na swojej kopii zapasowej zostanie wysłane na następujący adres mailowy: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend", -apps/frappe/frappe/desk/doctype/todo/todo_list.js +7,To Do, +apps/frappe/frappe/desk/doctype/todo/todo_list.js +7,To Do,Do zrobienia sites/assets/js/editor.min.js +94,Paragraph,Ustęp apps/frappe/frappe/core/page/user_permissions/user_permissions.js +133,Any existing permission will be deleted / overwritten.,Wszelkie istniejące zezwolenia zostaną usunięte / nadpisane. DocType: DocField,Percent,Procent @@ -683,7 +683,7 @@ DocType: Print Settings,Letter,List apps/frappe/frappe/core/page/permission_manager/permission_manager.js +95,Reset Permissions for {0}?, apps/frappe/frappe/permissions.py +222,{0} {1} not found,{0} {1} Nie znaleziono apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +214,Show a description below the field,Pokaż opis poniżej pola -DocType: Workflow State,align-left, +DocType: Workflow State,align-left,Wyrównaj do lewej DocType: User,Defaults, sites/assets/js/desk.min.js +555,Merge with existing,Połączy się z istniejącą DocType: User,Birth Date, @@ -787,7 +787,7 @@ DocType: Workflow State,adjust,dopasuj DocType: Website Settings,Disable Customer Signup link in Login page, apps/frappe/frappe/core/report/todo/todo.py +21,Assigned To/Owner, DocType: Workflow State,arrow-left, -apps/frappe/frappe/desk/page/applications/application_row.html +5,Installed, +apps/frappe/frappe/desk/page/applications/application_row.html +5,Installed,Zainstalowane DocType: Workflow State,fullscreen, DocType: Event,Ref Name, DocType: Web Page,Center, @@ -832,7 +832,7 @@ DocType: Bulk Email,Reference DocName, DocType: Web Form,Success Message,Sukces wiadomość DocType: DocType,User Cannot Search, apps/frappe/frappe/desk/page/activity/activity.js +47,Build Report, -apps/frappe/frappe/model/rename_doc.py +92,"{0} {1} does not exist, select a new target to merge", +apps/frappe/frappe/model/rename_doc.py +92,"{0} {1} does not exist, select a new target to merge","{0} {1} nie istnieje, wybierz nowy cel do złączenia" apps/frappe/frappe/core/page/user_permissions/user_permissions.py +66,Cannot set permission for DocType: {0} and Name: {1}, DocType: Comment,Comment Doctype, apps/frappe/frappe/core/page/modules_setup/modules_setup.js +55,There were errors, @@ -848,7 +848,7 @@ apps/frappe/frappe/core/doctype/user/user.py +156,Password Update,Zmiana hasła DocType: Workflow State,trash, apps/frappe/frappe/desk/page/activity/activity.js +153,Dec,Grudzień DocType: Event,Leave blank to repeat always, -DocType: Event,Ends on, +DocType: Event,Ends on,Kończy się apps/frappe/frappe/utils/nestedset.py +181,Item cannot be added to its own descendents, sites/assets/js/form.min.js +270,{0} created this {1},{0} stworzył ten {1} apps/frappe/frappe/desk/form/assign_to.py +120,"The task {0}, that you assigned to {1}, has been closed by {2}.","Zadanie {0}, które przypisane do {1}, zostało zamknięte przez {2}." @@ -858,14 +858,14 @@ apps/frappe/frappe/geo/doctype/currency/currency.js +7,This Currency is disabled DocType: Contact Us Settings,"Default: ""Contact Us""", apps/frappe/frappe/core/page/permission_manager/permission_manager.js +371,"Level 0 is for document level permissions, higher levels for field level permissions.", DocType: Custom Script,Sample,Próba -DocType: Event,Every Week, +DocType: Event,Every Week,Co tydzień DocType: Custom Field,Is Mandatory Field,jest polem obowiązkowym DocType: User,Website User, DocType: Website Script,Script to attach to all web pages.,Skrypt dołączyć do wszystkich stron internetowych. DocType: Web Form,Allow Multiple,Zezwalaj na Stwardnienie sites/assets/js/form.min.js +283,Assign,Przydzielać apps/frappe/frappe/config/setup.py +93,Import / Export Data from .csv files.,Importuj z / Eksportuj do pliku csv. -DocType: Workflow State,Icon will appear on the button, +DocType: Workflow State,Icon will appear on the button,Ikona pojawi się na przycisku DocType: Web Page,Page url name (auto-generated), apps/frappe/frappe/core/page/user_permissions/user_permissions.py +105,Please upload using the same template as download.,Proszę przesłać przy użyciu tego samego szablonu jako pobrania. apps/frappe/frappe/modules/__init__.py +81,App not found, @@ -900,7 +900,7 @@ DocType: DocType,In Dialog, apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +142,Help,Pomoc DocType: User,Login Before, DocType: Web Page,Insert Style, -apps/frappe/frappe/desk/page/applications/applications.js +94,Application Installer, +apps/frappe/frappe/desk/page/applications/applications.js +94,Application Installer,Instalator aplikacji apps/frappe/frappe/core/page/user_permissions/user_permissions.js +246,Is,Czy DocType: Workflow State,info-sign, DocType: Currency,"How should this currency be formatted? If not set, will use system defaults", @@ -945,17 +945,17 @@ DocType: Email Account,Check this to pull emails from your mailbox, apps/frappe/frappe/model/document.py +425,Cannot edit cancelled document,Nie można edytować anulowany dokument apps/frappe/frappe/utils/nestedset.py +77,Nested set error. Please contact the Administrator., apps/frappe/frappe/print/page/print_format_builder/print_format_builder_layout.html +11,, -DocType: Workflow State,envelope, +DocType: Workflow State,envelope,koperta apps/frappe/frappe/core/doctype/docshare/docshare.py +37,{0} shared this document with {1},{0} podzielali ten dokument z {1} DocType: Website Settings,Google Plus One, -apps/frappe/frappe/desk/page/activity/activity.js +153,Jul,Lipca +apps/frappe/frappe/desk/page/activity/activity.js +153,Jul,Lip DocType: Communication,Additional Info,Dodatkowe Informacje apps/frappe/frappe/config/website.py +44,"Setup of top navigation bar, footer and logo.", apps/frappe/frappe/core/doctype/doctype/doctype.py +352,For {0} at level {1} in {2} in row {3}, DocType: Bulk Email,Recipient, apps/frappe/frappe/config/setup.py +137,Drag and Drop tool to build and customize Print Formats.,Przeciągnij i upuść narzędzie do tworzenia i dostosować formaty wydruku. -sites/assets/js/desk.min.js +779,Expand, -DocType: Workflow State,align-right, +sites/assets/js/desk.min.js +779,Expand,Rozwiń +DocType: Workflow State,align-right,Wyrównaj do prawej DocType: Page,Roles,Role DocType: System Settings,Session Expiry, DocType: Workflow State,ban-circle, @@ -966,12 +966,12 @@ sites/assets/js/form.min.js +196,Ctrl + Down,Ctrl + strzałka w dół DocType: User,User Defaults, DocType: Workflow State,chevron-down, DocType: Workflow State,th-list, -DocType: Web Page,Enable Comments, +DocType: Web Page,Enable Comments,Włącz komentarze DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111), DocType: Website Theme,Google Font (Heading),Google Font (Nagłówek) sites/assets/js/desk.min.js +836,Find {0} in {1},Znajdź w {0} {1} DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Dołącz jako komunikacji przeciwko tej DocType (musi mieć pola, ""status"", ""Temat"")" -DocType: DocType,Allow Import via Data Import Tool, +DocType: DocType,Allow Import via Data Import Tool,Pozwól na Import przez Narzędzie Importu Danych apps/frappe/frappe/model/base_document.py +423,Not allowed to change {0} after submission, DocType: Comment,Comment Type,Komentarz Wpisz apps/frappe/frappe/config/setup.py +8,Users,Użytkownicy @@ -982,7 +982,7 @@ sites/assets/js/desk.min.js +475,Please attach a file first., apps/frappe/frappe/model/naming.py +156,"There were some errors setting the name, please contact the administrator","Było kilka błędów ustawień nazwę, skontaktuj się z administratorem" DocType: Website Slideshow Item,Website Slideshow Item, DocType: DocType,Title Case, -DocType: Blog Post,Email Sent, +DocType: Blog Post,Email Sent,Wiadomość wysłana sites/assets/js/desk.min.js +870,Send As Email, DocType: Website Theme,Link Color,Link Kolor apps/frappe/frappe/core/doctype/user/user.py +47,User {0} cannot be disabled, @@ -1022,7 +1022,7 @@ DocType: Web Form,Web Form Fields,Pola formularzy WWW DocType: Website Theme,Top Bar Text Color,Top Bar Kolor tekstu apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +366,Remove Section,Usuń punkt sites/assets/js/desk.min.js +439,Invalid Email: {0}, -apps/frappe/frappe/desk/doctype/event/event.py +16,Event end must be after start, +apps/frappe/frappe/desk/doctype/event/event.py +16,Event end must be after start,"Zakończenie wydarzenia nie może być wcześniej, niż rozpoczęcie" apps/frappe/frappe/templates/includes/sidebar.html +7,Back,Z powrotem apps/frappe/frappe/desk/query_report.py +21,You don't have permission to get a report on: {0},"Nie masz uprawnień, aby pobrać raport na temat: {0}" sites/assets/js/desk.min.js +493,Advanced Search,Wyszukiwanie zaawansowane @@ -1041,9 +1041,9 @@ DocType: Custom Field,Field Description, apps/frappe/frappe/model/naming.py +49,Name not set via Prompt, DocType: Note,Note is a free page where users can share documents / notes,"Notes jest dostępnym dla wszystkich miejscem, gdzie użytkownicy mogą załączać i dzielić się dokumentami / informacjami" DocType: Website Theme,Top Bar Color,Top Bar Kolor -DocType: DocType,Allow Import, +DocType: DocType,Allow Import,Pozwól na Import apps/frappe/frappe/templates/includes/comments/comments.py +57,New comment on {0} {1}, -DocType: Workflow State,glass, +DocType: Workflow State,glass,szkło DocType: Country,Time Zones, DocType: Workflow State,remove-sign, apps/frappe/frappe/config/setup.py +158,Define workflows for forms., @@ -1051,7 +1051,7 @@ DocType: Website Settings,Misc, apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +155,Start new Format,Rozpocznij nowy format DocType: Workflow State,font, DocType: Customize Form Field,Is Custom Field,Czy Pole niestandardowe -DocType: Workflow,"If checked, all other workflows become inactive.", +DocType: Workflow,"If checked, all other workflows become inactive.","Jeśli zaznaczone, to wszystkie pozostałe obiegi stają się nieaktywne." apps/frappe/frappe/core/doctype/report/report.js +10,[Label]:[Field Type]/[Options]:[Width],[Etykieta]:[Typ pola]/[Opcje]:[Szerokość] DocType: Workflow State,folder-close, DocType: Email Alert Recipient,Optional: Alert will only be sent if value is a valid email id.,"Opcjonalnie: Alarm zostanie wysłany tylko wtedy, gdy wartość jest ważna id e-mail." @@ -1066,7 +1066,7 @@ DocType: User,Send Notifications for Transactions I Follow,Wysyłaj powiadomieni apps/frappe/frappe/core/doctype/doctype/doctype.py +388,"{0}: Cannot set Submit, Cancel, Amend without Write", apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User, apps/frappe/frappe/templates/emails/password_reset.html +6,Thank you,Dziękuję -sites/assets/js/form.min.js +180,Saving,Oszczędność +sites/assets/js/form.min.js +180,Saving,Zapisywanie DocType: Print Settings,Print Style Preview,Wydrukuj Style Podgląd DocType: About Us Settings,About Us Settings,O Nas - Ustawienia DocType: Website Settings,Website Theme,Strona tematyczna @@ -1122,7 +1122,7 @@ DocType: Email Account,Append To,Dołącz do DocType: Workflow Document State,Only Allow Edit For, DocType: DocType,DocType, apps/frappe/frappe/core/doctype/user/user.py +384,User {0} does not exist, -DocType: Website Theme,"If image is selected, color will be ignored.","Jeśli wybrany obraz, kolor będą ignorowane." +DocType: Website Theme,"If image is selected, color will be ignored.","Jeśli wybrano obraz, to kolor będzie ignorowany." DocType: Top Bar Item,Top Bar Item, apps/frappe/frappe/utils/csvutils.py +50,"Unknown file encoding. Tried utf-8, windows-1250, windows-1252.", apps/frappe/frappe/core/doctype/user/user.py +103,Sorry! Sharing with Website User is prohibited.,Przykro mi! Udostępnianie strony internetowej Użytkownika jest zabronione. @@ -1163,7 +1163,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +67,Please make sure t sites/assets/js/desk.min.js +600,You have unsaved changes in this form. Please save before you continue.,Masz niezapisane zmiany na tym formularzu. Zapisz zmiany aby kontynuować. apps/frappe/frappe/core/doctype/doctype/doctype.py +269,Default for {0} must be an option,Domyślnie dla {0} musi być opcja DocType: User,User Image, -apps/frappe/frappe/email/bulk.py +176,Emails are muted, +apps/frappe/frappe/email/bulk.py +176,Emails are muted,Email wyciszony sites/assets/js/form.min.js +196,Ctrl + Up,Ctrl + strzałka w górę DocType: Website Theme,Heading Style,Nagłówek Style apps/frappe/frappe/desk/page/applications/applications.py +34,You cannot install this app, @@ -1247,14 +1247,14 @@ DocType: Communication,By, DocType: Email Account,SMTP Server,Serwer SMTP DocType: Print Format,Print Format Help,Format Drukuj Pomoc apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","W przypadku aktualizacji, należy wybrać opcję ""Zastąp"" jeszcze istniejące wiersze nie zostaną usunięte." -DocType: Event,Every Month, +DocType: Event,Every Month,Co miesiąc DocType: Letter Head,Letter Head in HTML, DocType: Web Form,Web Form,Formularz internetowy DocType: About Us Settings,Org History Heading, DocType: Web Form,Web Page Link Text,Web Page Link Text apps/frappe/frappe/config/setup.py +142,"Set default format, page size, print style etc.","Ustaw domyślny format, rozmiar strony, styl wydruku itp" DocType: DocType,Naming, -DocType: Event,Every Year, +DocType: Event,Every Year,Co rok apps/frappe/frappe/core/doctype/user/user.py +350,Registered but disabled., sites/assets/js/list.min.js +93,Delete permanently?,Usuń na stałe? sites/assets/js/desk.min.js +827,Search in a document type,Szukaj w rodzaju dokumentu @@ -1270,7 +1270,7 @@ sites/assets/js/desk.min.js +852,(Ctrl + G),(Ctrl + G) sites/assets/js/desk.min.js +808,Sorry! You are not permitted to view this page.,"Przykro mi! Nie masz wystarczających uprawnień, aby zobaczyć tę stronę." DocType: Workflow State,bell, sites/assets/js/form.min.js +282,Share this document with,Udostępnij ten dokument -apps/frappe/frappe/desk/page/activity/activity.js +152,Jun,Czerwca +apps/frappe/frappe/desk/page/activity/activity.js +152,Jun,Cze apps/frappe/frappe/utils/nestedset.py +227,{0} {1} cannot be a leaf node as it has children, DocType: Feed,Info, apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Dziękuję za wiadomości @@ -1301,7 +1301,7 @@ DocType: User,Allow user to login only before this hour (0-24), apps/frappe/frappe/print/page/print_format_builder/print_format_builder_sidebar.html +3,Filter...,Filtr ... DocType: Workflow State,bold, apps/frappe/frappe/website/doctype/website_settings/website_settings.py +34,{0} does not exist in row {1},{0} nie istnieje w linii {1} -DocType: Event,Event Type, +DocType: Event,Event Type,Typ wydarzenia DocType: User,Last Known Versions,Ostatnio znanych wersji apps/frappe/frappe/config/setup.py +115,Add / Manage Email Accounts.,Dodaj / Zarządzaj kontami poczty e-mail. DocType: Blog Category,Published, @@ -1348,7 +1348,7 @@ DocType: User,Timezone,Strefa czasowa sites/assets/js/desk.min.js +538,Unable to load: {0}, DocType: DocField,Read Only, DocType: Print Settings,Send Print as PDF,Wyślij Drukuj w formacie PDF -DocType: Workflow Transition,Allowed, +DocType: Workflow Transition,Allowed,Dozwolone apps/frappe/frappe/core/doctype/doctype/doctype.py +287,There can be only one Fold in a form,Nie może być tylko jeden Fold w formie apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page, apps/frappe/frappe/core/doctype/doctype/doctype.py +378,{0}: Permission at level 0 must be set before higher levels are set, @@ -1358,7 +1358,7 @@ sites/assets/js/desk.min.js +831,Calculate,Obliczać apps/frappe/frappe/print/doctype/print_format/print_format.js +20,Please select DocType first,Proszę wybrać DOCTYPE pierwszy DocType: Social Login Keys,GitHub Client ID, DocType: DocField,Perm Level, -apps/frappe/frappe/desk/doctype/event/event.py +55,Events In Today's Calendar, +apps/frappe/frappe/desk/doctype/event/event.py +55,Events In Today's Calendar,Wydarzenia w dzisiejszym kalendarzu DocType: Web Page,Web Page,Strona internetowa DocType: Blog Category,Blogger, sites/assets/js/desk.min.js +444,Date must be in format: {0}, @@ -1387,7 +1387,7 @@ DocType: Workflow State,chevron-left, DocType: Bulk Email,Sending,Wysyłanie apps/frappe/frappe/auth.py +184,Not allowed from this IP Address,Brak dostępu z tego adresu IP DocType: Website Slideshow,This goes above the slideshow., -apps/frappe/frappe/config/setup.py +208,Install Applications., +apps/frappe/frappe/config/setup.py +208,Install Applications.,Instaluj aplikacje DocType: Event,Private, DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Wyślij e-mail Drukuj załączniki w formacie PDF (zalecana) DocType: Workflow Action,Workflow Action, @@ -1418,8 +1418,8 @@ apps/frappe/frappe/config/website.py +13,Content web page., apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Dodaj nową rolę apps/frappe/frappe/templates/includes/login/login.js +120,Oops! Something went wrong,Ups! Coś poszło nie tak DocType: Blog Settings,Blog Introduction, -DocType: User,Email Settings, -apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State, +DocType: User,Email Settings,Ustawienia Email +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} Stan niedozwolony DocType: Workflow State,ok-circle, apps/frappe/frappe/core/doctype/user/user.py +101,Sorry! User should have complete access to their own record.,Przykro mi! Użytkownik powinien mieć pełny dostęp do własnego rekordu. DocType: Custom Field,In Report Filter, @@ -1464,9 +1464,9 @@ DocType: Web Form,Text to be displayed for Link to Web Page if this form has a w sites/assets/js/desk.min.js +502,Please set {0} first,Proszę ustawić {0} pierwszy DocType: Patch Log,Patch, apps/frappe/frappe/core/page/data_import_tool/importer.py +40,No data found,Brak danych -DocType: Web Form,Allow Comments,Pozwól Komentarze +DocType: Web Form,Allow Comments,Pozwól na Komentarze DocType: User,Background Style,Styl tła DocType: System Settings,mm-dd-yyyy, apps/frappe/frappe/desk/doctype/feed/feed.py +91,{0} logged in,{0} zalogowany apps/frappe/frappe/templates/emails/new_user.html +4,Your login id is,Twój login id to -DocType: DocField,Ignore User Permissions, +DocType: DocField,Ignore User Permissions,Ignoruj uprawnienia użytkowników diff --git a/frappe/translations/ro.csv b/frappe/translations/ro.csv index ef64503d5d..ce9b57236e 100644 --- a/frappe/translations/ro.csv +++ b/frappe/translations/ro.csv @@ -43,7 +43,7 @@ apps/frappe/frappe/core/doctype/user/user.py +481,Administrator Logged In,Admini DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opțiuni de contact, cum ar fi ""Vanzari interogare, interogare Support"", etc fiecare pe o linie nouă sau separate prin virgule." sites/assets/js/editor.min.js +155,Insert,Introduceți sites/assets/js/desk.min.js +512,Select {0},Selectați {0} -DocType: Feed,Color,Culorare +DocType: Feed,Color,Culoare DocType: Workflow State,indent-right,liniuța-dreapta sites/assets/js/desk.min.js +752,Web Link,Web Link apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +33,"Recommended bulk editing records via import, or understanding the import format.","Înregistrările de editare vrac recomandate prin import, sau înțelegerea formatul de import." @@ -85,12 +85,12 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +392,{0}: Cannot set Import w DocType: Comment,Post Topic,Creaza un subiect apps/frappe/frappe/print/page/print_format_builder/print_format_builder_column_selector.html +2,Widths can be set in px or %.,Lătimea poate fi introdusă în px sau%. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Permisiuni se aplică pe Utilizatori bazat pe ceea ce Rolurile sunt atribuite. -sites/assets/js/desk.min.js +890,You are not allowed to send emails related to this document,Nu este permis pentru a trimite e-mailuri legate de acest document +sites/assets/js/desk.min.js +890,You are not allowed to send emails related to this document,Nu vi se permite trimitea e-mailuri relaționate cu acest document apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Nu vi se permite să ștergeți o temă Website standard de apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +176,Example,Exemplu DocType: Workflow State,gift,cadou apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +180,Reqd,Reqd -apps/frappe/frappe/core/doctype/communication/communication.py +119,Unable to find attachment {0},În imposibilitatea de a găsi atașament {0} +apps/frappe/frappe/core/doctype/communication/communication.py +119,Unable to find attachment {0},Nu s-a găsit atașamentul {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +168,Assign a permission level to the field.,Atribuiţi un nivel de permisiune câmpului. apps/frappe/frappe/config/setup.py +72,Show / Hide Modules,Arată / Ascunde Module apps/frappe/frappe/core/doctype/report/report.js +37,Disable Report,Dezactivați Raport @@ -157,7 +157,7 @@ DocType: User,"Get your globally recognized avatar from Gravatar.com","讓您的全球公認的頭像從 Gravatar.com " apps/frappe/frappe/core/page/data_import_tool/exporter.py +62,First data column must be blank.,第一個數據列必須為空。 -DocType: Workflow State,Print,打印 +DocType: Workflow State,Print,列印 DocType: User,Restrict IP,限制IP apps/frappe/frappe/email/smtp.py +169,Unable to send emails at this time,無法在這個時候發送電子郵件 sites/assets/js/desk.min.js +852,Search or type a command,搜索或輸入命令 @@ -177,7 +177,7 @@ apps/frappe/frappe/utils/nestedset.py +210,Merging is only possible between Grou apps/frappe/frappe/utils/file_manager.py +40,Added {0},添加{0} DocType: Currency,Fraction Units,部分單位 DocType: Web Page,Parent Web Page,家長網頁 -apps/frappe/frappe/model/base_document.py +357,{0} must be set first,{0}必須首先設置 +apps/frappe/frappe/model/base_document.py +357,{0} must be set first,{0}必須先設定 DocType: Workflow State,plane,飛機 apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.",如果您上傳新的記錄,“命名系列”變成強制性的,如果存在的話。 apps/frappe/frappe/core/doctype/doctype/doctype.py +294,Fold can not be at the end of the form,折疊不能在表單的端 @@ -185,7 +185,7 @@ apps/frappe/frappe/config/setup.py +14,System and Website Users,系統和網站 DocType: Workflow Document State,Doc Status,文件狀態 sites/assets/js/desk.min.js +867,"Your download is being built, this may take a few moments...",您的下載正在修建,這可能需要一些時間...... sites/assets/js/desk.min.js +828,text in document type,文字(B)在 文檔類型 -DocType: Web Page,Begin this page with a slideshow of images,開始這個頁面圖像的幻燈片 +DocType: Web Page,Begin this page with a slideshow of images,開始這個頁面的幻燈片播放 DocType: Version,Docname,可採用DocName apps/frappe/frappe/core/doctype/version/version.js +10,Version restored,版本恢復 DocType: Event Role,Event Role,事件角色 @@ -196,7 +196,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +248,Field {0} in row {1} can DocType: System Settings,mm/dd/yyyy,mm/dd/yyyy apps/frappe/frappe/email/doctype/email_account/email_account.py +231,Re:,回复: DocType: Currency,"Sub-currency. For e.g. ""Cent""",子貨幣。如「美分」 -DocType: Letter Head,Check this to make this the default letter head in all prints,勾選後以本項作為所有列印預設的信頭 +DocType: Letter Head,Check this to make this the default letter head in all prints,勾選後,以本項作為所有列印的預設信頭 DocType: Print Format,Server,服務器 DocType: DocField,Link,鏈接 apps/frappe/frappe/utils/file_manager.py +83,No file attached,沒有附加的文件 @@ -209,7 +209,7 @@ DocType: About Us Team Member,About Us Team Member,關於我們的團隊成員 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.",權限為對角色和文件類型(DocTypes)的設定值,諸如讀取、寫入、建立、刪除、提交、取消、修改、報表、匯入、匯出、列印、寄信與用戶權限設定等的權限設定。 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.",除了基於角色的權限規則,您可以根據文檔類型應用的用戶權限。 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.",這些權限將申請在那裡允許記錄被鏈接的所有交易。 -DocType: Property Setter,ID (name) of the entity whose property is to be set,其屬性是要設置的實體的ID(名稱) +DocType: Property Setter,ID (name) of the entity whose property is to be set,其屬性是要設定的實體的ID(名稱) DocType: Website Settings,Website Theme Image Link,網站主題圖像鏈接 DocType: Website Settings,Sidebar Items,邊欄項目 DocType: Workflow State,exclamation-sign,驚嘆號標誌 @@ -218,7 +218,7 @@ sites/assets/js/list.min.js +98,Gantt,甘特圖 DocType: About Us Settings,Introduce your company to the website visitor.,對網站訪客介紹貴公司。 apps/frappe/frappe/print/doctype/print_format/print_format.js +14,Please duplicate this to make changes,請複製此做出改變 DocType: Print Settings,Font Size,字體大小 -sites/assets/js/desk.min.js +852,Unread Messages,未讀消息 +sites/assets/js/desk.min.js +852,Unread Messages,未讀訊息 DocType: Workflow State,facetime-video,FaceTime的視頻 apps/frappe/frappe/website/doctype/blog_post/blog_post.py +164,1 comment,1條評論 DocType: Email Alert,Days Before,前幾天 @@ -229,7 +229,7 @@ apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +626, apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +28,Please specify doctype,請註明文檔類型 DocType: Print Format,Format Data,格式數據 DocType: Customize Form Field,Customize Form Field,自定義表單域 -apps/frappe/frappe/config/setup.py +47,Check which Documents are readable by a User,勾選哪些文件是用戶可讀取的 +apps/frappe/frappe/config/setup.py +47,Check which Documents are readable by a User,勾選那些文件是用戶可讀取的 DocType: User,Reset Password Key,重設密碼鍵值 DocType: Email Account,Enable Auto Reply,啟用自動回复 DocType: Workflow State,zoom-in,放大 @@ -254,7 +254,7 @@ apps/frappe/frappe/config/setup.py +19,User Roles,用戶角色 DocType: Property Setter,Property Setter overrides a standard DocType or Field property,物業二傳手覆蓋標準的DocType或實地房產 apps/frappe/frappe/core/doctype/user/user.py +332,Cannot Update: Incorrect / Expired Link.,無法更新:不正確的/過期的鏈接。 DocType: DocField,Set Only Once,設置一次 -apps/frappe/frappe/core/doctype/doctype/doctype.py +419,{0}: Cannot set import as {1} is not importable,{0} :無法設置導入為{1}不是可導入 +apps/frappe/frappe/core/doctype/doctype/doctype.py +419,{0}: Cannot set import as {1} is not importable,{0} :無法設定導入,因為{1}不是可導入的 DocType: Top Bar Item,"target = ""_blank""",目標=“_blank” DocType: Workflow State,hdd,硬盤 apps/frappe/frappe/desk/query_report.py +18,You don't have access to Report: {0},您沒有訪問報告:{0} @@ -299,7 +299,7 @@ DocType: User,Last IP,最後一個IP apps/frappe/frappe/core/doctype/communication/communication.js +17,Add To,添加 DocType: DocPerm,Filter records based on User Permissions defined for a user,基於對用戶定義的用戶權限篩選記錄 sites/assets/js/editor.min.js +111,Insert picture (or just drag & drop),插入圖片(或只是拖放) -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +29,Fieldname not set for Custom Field,字段名不為自定義字段設置 +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +29,Fieldname not set for Custom Field,自定義欄位之欄位名稱未設定 sites/assets/js/desk.min.js +536,Last Updated By,最後更新人 DocType: Website Theme,Background Color,背景顏色 sites/assets/js/desk.min.js +893,There were errors while sending email. Please try again.,還有在發送電子郵件是錯誤的。請再試一次。 @@ -310,7 +310,7 @@ DocType: Web Form Field,Web Form Field,Web窗體域 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +197,Hide field in Report Builder,在報表生成器隱藏領域 apps/frappe/frappe/print/page/print_format_builder/print_format_builder_field.html +14,Edit HTML,編輯HTML apps/frappe/frappe/core/page/permission_manager/permission_manager.js +487,Restore Original Permissions,恢復原始權限 -DocType: DocField,Button,鈕 +DocType: DocField,Button,按鍵 DocType: Email Account,Default Outgoing,默認傳出 DocType: Workflow State,play,玩 apps/frappe/frappe/templates/emails/new_user.html +5,Click on the link below to complete your registration and set a new password,點擊下面的鏈接完成註冊,並設置新密碼 @@ -320,11 +320,11 @@ DocType: Workflow State,text-width,文字寬度 DocType: Email Alert,View Properties (via Customize Form),視圖屬性(通過自定義窗體) DocType: Website Settings,Sidebar,邊欄 apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,報表生成器報表直接由報表生成器來管理。無事可做。 -apps/frappe/frappe/website/doctype/web_page/web_page.py +30,Cannot edit templated page,不能編輯模板頁面 +apps/frappe/frappe/website/doctype/web_page/web_page.py +30,Cannot edit templated page,無法編輯模板頁面 apps/frappe/frappe/model/document.py +637,none of,沒有 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,上傳用戶權限 -apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +3,Checked items will be shown on desktop,檢查項目將在桌面上顯示 -apps/frappe/frappe/core/doctype/doctype/doctype.py +409,{0} cannot be set for Single types,{0}不能單類型設置 +apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +3,Checked items will be shown on desktop,勾選將在桌面上顯示的項目 +apps/frappe/frappe/core/doctype/doctype/doctype.py +409,{0} cannot be set for Single types,{0}不能設定為單類型 apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +97,{0} updated,{0}更新 apps/frappe/frappe/core/doctype/doctype/doctype.py +399,Report cannot be set for Single types,報告不能單類型設置 apps/frappe/frappe/desk/page/activity/activity.js +152,Feb,二月 @@ -363,7 +363,7 @@ sites/assets/js/desk.min.js +183,Server Error: Please check your server logs or apps/frappe/frappe/core/doctype/user/user.py +115,Welcome email sent,歡迎發送電子郵件 apps/frappe/frappe/core/doctype/user/user.py +352,Already Registered,已註冊 DocType: System Settings,Float Precision,浮點數精度 -DocType: Property Setter,Property Setter,屬性設置器 +DocType: Property Setter,Property Setter,屬性設定器 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +217,Select User or DocType to start.,選擇用戶或DocType以開始。 apps/frappe/frappe/desk/page/applications/applications.js +24,No Apps Installed,沒有安裝的應用程序 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +181,Mark the field as Mandatory,標記字段作為強制性 @@ -372,7 +372,7 @@ apps/frappe/frappe/desk/form/utils.py +66,This method can only be used to create apps/frappe/frappe/config/setup.py +195,Add custom forms.,添加自定義表單。 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,The system provides many pre-defined roles. You can add new roles to set finer permissions.,該系統提供了許多預先定義的角色。您可以添加新的角色設定更精細的權限。 DocType: Country,Geo,GEO -DocType: Blog Category,Blog Category,博客分類 +DocType: Blog Category,Blog Category,部落格分類 DocType: User,Roles HTML,角色的HTML apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +109,All customizations will be removed. Please confirm.,所有自定義都將被刪除。請確認。 DocType: Page,Page HTML,頁面的HTML @@ -384,13 +384,13 @@ DocType: Print Format,Custom Format,自定義格式 DocType: Website Settings,Integrations,集成 DocType: DocField,Section Break,分節符 DocType: Communication,Sender Full Name,發件人姓名 -,Messages,消息 +,Messages,訊息 apps/frappe/frappe/desk/query_report.py +75,Must specify a Query to run,必須指定一個欲執行查詢 apps/frappe/frappe/config/setup.py +66,"Language, Date and Time settings",語言,日期和時間設置 DocType: User,Represents a User in the system.,表示系統中一個用戶。 apps/frappe/frappe/desk/form/assign_to.py +114,"The task {0}, that you assigned to {1}, has been closed.",任務{0},您分配給{1},已關閉。 DocType: User,Modules Access,模塊訪問 -DocType: Print Format,Print Format Type,打印格式類型 +DocType: Print Format,Print Format Type,列印格式類型 sites/assets/js/desk.min.js +841,Open Source Applications for the Web,開源為Web應用程序 DocType: DocType,Hide Toolbar,隱藏工具欄 DocType: Email Account,SMTP Settings for outgoing emails,SMTP設置外發郵件 @@ -459,7 +459,7 @@ sites/assets/js/editor.min.js +105,Bullet list,符號列表 DocType: Website Settings,Banner Image,橫幅圖片 DocType: Custom Field,Custom Field,自定義欄位 apps/frappe/frappe/email/doctype/email_alert/email_alert.py +13,Please specify which date field must be checked,請指定必須檢查哪些日期欄位 -DocType: DocPerm,Set User Permissions,設置用戶權限 +DocType: DocPerm,Set User Permissions,設定用戶權限 DocType: Email Account,Email Account Name,電子郵件帳戶名稱 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +248,Select Document Types,選擇文檔類型 DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""",例如“支持“,”銷售“,”傑里楊“ @@ -467,7 +467,7 @@ DocType: User,Facebook User ID,Facebook的用戶ID DocType: Workflow State,fast-forward,快進 apps/frappe/frappe/print/page/print_format_builder/print_format_builder_column_selector.html +1,"Check columns to select, drag to set order.",檢查列選擇,拖放設置順序。 DocType: Event,Every Day,每天 -apps/frappe/frappe/email/smtp.py +58,Please setup default Email Account from Setup > Email > Email Account,請設置默認的電子郵件從設置>電子郵件>電子郵件帳戶 +apps/frappe/frappe/email/smtp.py +58,Please setup default Email Account from Setup > Email > Email Account,請設置預設的電子郵件。從設定>電子郵件>電子郵件帳戶 DocType: Workflow State,move,舉 DocType: System Settings,Date and Number Format,日期和數字格式 DocType: Website Theme,"Add the name of a Google Web Font e.g. ""Open Sans""","添加的名字谷歌網頁字體如“打開三世”" @@ -481,7 +481,7 @@ DocType: Website Settings,Address and other legal information you may want to pu sites/assets/js/list.min.js +102,Starred By Me,出演由我 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +48,Select Document Type,選擇文件類型 apps/frappe/frappe/utils/nestedset.py +201,Cannot delete {0} as it has child nodes,無法刪除{0} ,因為它有子節點 -apps/frappe/frappe/templates/includes/list/filters.html +19,clear,明確 +apps/frappe/frappe/templates/includes/list/filters.html +19,clear,清除 apps/frappe/frappe/desk/doctype/event/event.py +24,Every day events should finish on the same day.,每天的活動應該結束在同一天。 DocType: Communication,User Tags,用戶標籤 DocType: Workflow State,download-alt,下載的Alt @@ -491,7 +491,7 @@ DocType: Page,Icon,圖標 DocType: Web Page,Content in markdown format that appears on the main side of your page,在降價格式的內容,在頁面的主側出現 DocType: System Settings,dd/mm/yyyy,dd/mm/yyyy DocType: Website Settings,"An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]","一個圖標文件,擴展名為。ico。應該是16×16像素。使用的favicon生成器生成。 [ 網站圖標- generator.org ]" -DocType: Blog Settings,Blog Settings,博客設置 +DocType: Blog Settings,Blog Settings,部落格設定 apps/frappe/frappe/templates/emails/new_user.html +8,You can also copy-paste this link in your browser,您也可以複製粘貼到瀏覽器此鏈接 DocType: Workflow State,bullhorn,擴音器 DocType: Social Login Keys,Facebook Client Secret,Facebook的客戶端秘密 @@ -545,7 +545,7 @@ DocType: Workflow State,picture,圖片 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +301,Add A New Restriction,添加了新的限制 DocType: Workflow Transition,Next State,下一狀態 sites/assets/js/editor.min.js +119,Align Left (Ctrl/Cmd+L),左對齊(按Ctrl / Cmd + L) -DocType: User,Block Modules,塊模塊 +DocType: User,Block Modules,封鎖模組 DocType: Web Page,Custom CSS,自定義CSS sites/assets/js/form.min.js +285,Add a comment,添加評論 apps/frappe/frappe/config/setup.py +229,Log of error on automated events (scheduler).,登錄自動化事件(調度)的錯誤。 @@ -573,7 +573,7 @@ sites/assets/js/desk.min.js +521,Make a new,創建一個新的 DocType: Print Settings,PDF Page Size,PDF頁面大小 sites/assets/js/desk.min.js +852,About,關於 apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,"For updating, you can update only selective columns.",對於更新,您可以更新只選擇列。 -sites/assets/js/desk.min.js +870,Attach Document Print,附加文檔打印 +sites/assets/js/desk.min.js +870,Attach Document Print,附加文件列印 DocType: Social Login Keys,Google Client ID,Google客戶ID apps/frappe/frappe/core/doctype/user/user.py +63,Adding System Manager to this User as there must be atleast one System Manager,至少要有一名系統管理員,將該用戶設定成系統管理員 apps/frappe/frappe/desk/doctype/todo/todo.py +17,Assigned to {0},分配給{0} @@ -599,7 +599,7 @@ sites/assets/js/desk.min.js +463,Please save the document before uploading.,請 apps/frappe/frappe/core/doctype/doctype/doctype.py +292,Fold must come before a Section Break,折疊一定要來一個分節符前 apps/frappe/frappe/core/doctype/user/user.py +374,Not allowed to reset the password of {0},{0}的密碼不許重設 DocType: Workflow State,hand-down,手向下 -apps/frappe/frappe/core/doctype/doctype/doctype.py +385,{0}: Cannot set Cancel without Submit,{0} :無法設置取消沒有提交 +apps/frappe/frappe/core/doctype/doctype/doctype.py +385,{0}: Cannot set Cancel without Submit,{0} :沒有提交便無法設為取消 DocType: Website Theme,Theme,主題 DocType: DocType,Is Submittable,是可提交的 apps/frappe/frappe/custom/doctype/property_setter/property_setter.js +7,Value for a check field can be either 0 or 1,一檢查字段值可以為0或1 @@ -625,10 +625,10 @@ DocType: Website Settings,Disable Signup,禁止註冊 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7,Roles can be set for users from their User page.,角色可以從他們的用戶頁面的用戶進行設置。 apps/frappe/frappe/website/doctype/web_page/web_page.py +158,Website Search,網站搜索 DocType: DocField,Mandatory,強制性 -apps/frappe/frappe/core/doctype/doctype/doctype.py +356,{0}: No basic permissions set,{0} :無基本權限設置 +apps/frappe/frappe/core/doctype/doctype/doctype.py +356,{0}: No basic permissions set,{0} :無基本權限設定 apps/frappe/frappe/utils/backups.py +140,Download link for your backup will be emailed on the following email address: {0},下載鏈接,您的備份將通過電子郵件發送的以下電子郵件地址:{0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend",的含義提交,取消,修改 -apps/frappe/frappe/desk/doctype/todo/todo_list.js +7,To Do,要不要 +apps/frappe/frappe/desk/doctype/todo/todo_list.js +7,To Do,待辦事項 sites/assets/js/editor.min.js +94,Paragraph,段 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +133,Any existing permission will be deleted / overwritten.,任何現有的權限將被刪除/覆蓋。 DocType: DocField,Percent,百分比 @@ -698,15 +698,14 @@ DocType: File Data,Attached To DocType,附著的DocType apps/frappe/frappe/desk/page/activity/activity.js +153,Aug,八月 DocType: DocField,Int,詮釋 DocType: Currency,"1 Currency = [?] Fraction -For e.g. 1 USD = 100 Cent","1貨幣= [?]部分 -對於如1美元= 100美分" +For e.g. 1 USD = 100 Cent",1 貨幣= [?] 如:1美元= 100美分 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +363,Add New Permission Rule,添加新的權限規則 sites/assets/js/desk.min.js +512,You can use wildcard %,可以使用通配符% apps/frappe/frappe/desk/page/activity/activity.js +152,Mar,損傷 sites/assets/js/desk.min.js +768,"Only image extensions (.gif, .jpg, .jpeg, .tiff, .png, .svg) allowed",只有(.gif注意,.JPG,.JPEG,.TIFF,.PNG,.SVG)允許的圖片擴展 apps/frappe/frappe/website/doctype/website_theme/website_theme.py +35,Please Duplicate this Website Theme to customize.,請複製此網址主題定制。 DocType: DocField,Text Editor,文本編輯器 -apps/frappe/frappe/config/website.py +69,Settings for About Us Page.,設置關於我們頁面。 +apps/frappe/frappe/config/website.py +69,Settings for About Us Page.,設定關於我們頁面。 apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +531,Edit Custom HTML,編輯自定義HTML DocType: Email Alert,Value Change,值變動 DocType: Standard Reply,Standard Reply,標準回复 @@ -719,7 +718,7 @@ apps/frappe/frappe/core/doctype/report/report.py +29,Only Administrator allowed sites/assets/js/form.min.js +180,Updating,更新 sites/assets/js/desk.min.js +870,Select Attachments,選擇附件 sites/assets/js/form.min.js +283,Attach File,附加文件 -apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you,一個新的帳戶已經為您創建 +apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you,新帳戶已經為您新增 apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,密碼更新通知 DocType: DocPerm,User Permission DocTypes,用戶權限的文檔類型 sites/assets/js/desk.min.js +555,New Name,新名稱 @@ -727,7 +726,7 @@ sites/assets/js/form.min.js +196,Insert Above,插入以上 sites/assets/js/list.min.js +21,Not Saved,不儲存 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +246,Allow User If,允許用戶如果 DocType: Custom Field,Default Value,默認值 -DocType: Workflow Document State,Update Field,更新域 +DocType: Workflow Document State,Update Field,更新欄位 apps/frappe/frappe/email/doctype/email_account/email_account.py +237,Leave this conversation,離開這個談話 apps/frappe/frappe/model/base_document.py +353,Options not set for link field {0},對於鏈接欄位沒有設置選項{0} DocType: Workflow State,asterisk,星號 @@ -763,13 +762,13 @@ DocType: Custom Field,Properties,屬性 apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +47,"Do not update, but insert new records.",不更新,但插入新記錄。 DocType: DocField,Dynamic Link,動態鏈接 DocType: Property Setter,DocType or Field,的DocType或現場 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +3,Quick Help for Setting Permissions,設置權限快速幫助 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +3,Quick Help for Setting Permissions,設定權限快速求助 DocType: Report,Report Builder,報表生成器 DocType: Workflow,Workflow,工作流程 DocType: Workflow State,Upload,上載 DocType: System Settings,Date Format,日期格式 apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js +7,Not Published,未發布 -apps/frappe/frappe/config/setup.py +168,"Actions for workflow (e.g. Approve, Cancel).",流程的操作(如審批、取消)。 +apps/frappe/frappe/config/setup.py +168,"Actions for workflow (e.g. Approve, Cancel).",流程的操作(如批准、取消)。 DocType: Workflow State,flag,旗標 DocType: Web Page,Text Align,文本對齊 DocType: Contact Us Settings,Forward To Email Address,轉發到郵件地址 @@ -792,9 +791,9 @@ apps/frappe/frappe/desk/page/applications/application_row.html +5,Installed,安 DocType: Workflow State,fullscreen,全屏 DocType: Event,Ref Name,參考名稱 DocType: Web Page,Center,中心 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,設置>用戶權限管理 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,設定>用戶權限管理 DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,代表一個文檔和角色分配給改變國家允許的狀態。 -apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +49,Refresh Form,刷新表 +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +49,Refresh Form,更新表格 DocType: DocField,Select,選擇 apps/frappe/frappe/utils/csvutils.py +25,File not attached,文件未附 DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.",如果你設置這個,這個項目會成為選定的父物件的下拉菜單中。 @@ -809,8 +808,8 @@ sites/assets/js/report.min.js +2,Tip: Double click cell to edit,提示:雙擊 DocType: ToDo,Description and Status,描述和狀態 DocType: Web Page,HTML for header section. Optional,標題區塊的HTML。可選 apps/frappe/frappe/core/doctype/userrole/userrole.py +14,Role exists,角色存在 -sites/assets/js/desk.min.js +870,Select Print Format,選擇打印格式 -DocType: DocField,Print Hide,打印隱藏 +sites/assets/js/desk.min.js +870,Select Print Format,選擇列印格式 +DocType: DocField,Print Hide,列印隱藏 sites/assets/js/desk.min.js +163,Enter Value,輸入值 DocType: Workflow State,tint,色彩 DocType: Workflow State,Style,風格 @@ -827,10 +826,10 @@ apps/frappe/frappe/desk/doctype/event/event.py +62,Daily Event Digest is sent fo sites/assets/js/desk.min.js +852,View Website,查看網站 DocType: Workflow State,remove,拆除 DocType: Email Account,If non standard port (e.g. 587),如果非標準端口(如587) -sites/assets/js/desk.min.js +852,Reload,刷新 +sites/assets/js/desk.min.js +852,Reload,重新載入 DocType: Event,Participants,參與者 DocType: Bulk Email,Reference DocName,DocName參照 -DocType: Web Form,Success Message,成功的消息 +DocType: Web Form,Success Message,成功的訊息 DocType: DocType,User Cannot Search,無法搜尋使用者 apps/frappe/frappe/desk/page/activity/activity.js +47,Build Report,建立報告 apps/frappe/frappe/model/rename_doc.py +92,"{0} {1} does not exist, select a new target to merge",{0} {1}不存在,選擇一個新的目標合併 @@ -916,10 +915,10 @@ DocType: Standard Reply,Response,回應 sites/assets/js/form.min.js +282,Can Share,可以共享 apps/frappe/frappe/email/smtp.py +37,Invalid recipient address,無效的收件人地址 DocType: Workflow State,step-forward,往前進 -apps/frappe/frappe/core/doctype/user/user.js +45,Refreshing...,刷新... +apps/frappe/frappe/core/doctype/user/user.js +45,Refreshing...,更新中... DocType: Event,Starts on,開始於 DocType: Workflow State,th,日 -sites/assets/js/desk.min.js +490,Create a new {0},創建一個新的{0} +sites/assets/js/desk.min.js +490,Create a new {0},建立一個新的{0} sites/assets/js/desk.min.js +836,Open {0},打開{0} DocType: Workflow State,ok-sign,OK符號 sites/assets/js/form.min.js +158,Duplicate,複製 @@ -942,8 +941,8 @@ DocType: Email Account,Outlook.com,Outlook.com DocType: System Settings,Scheduler Last Event,調度上次事件 DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,添加Google Analytics ID:如UA-89XXX57-1。請搜尋Google Analytics相關文件以獲取更多信息。 DocType: Email Alert Recipient,"Expression, Optional",表達,可選 -DocType: Email Account,Check this to pull emails from your mailbox,檢查這從你的郵箱的郵件拉 -apps/frappe/frappe/model/document.py +425,Cannot edit cancelled document,無法編輯文檔取消 +DocType: Email Account,Check this to pull emails from your mailbox,勾選此選項,則從你的郵箱取出電子郵件地址 +apps/frappe/frappe/model/document.py +425,Cannot edit cancelled document,無法編輯已取消文件 apps/frappe/frappe/utils/nestedset.py +77,Nested set error. Please contact the Administrator.,嵌套組的錯誤。請聯繫管理員。 apps/frappe/frappe/print/page/print_format_builder/print_format_builder_layout.html +11,,的 DocType: Workflow State,envelope,信封 @@ -954,7 +953,7 @@ DocType: Communication,Additional Info,附加信息 apps/frappe/frappe/config/website.py +44,"Setup of top navigation bar, footer and logo.",安裝程序的頂部導航欄,頁腳和徽標。 apps/frappe/frappe/core/doctype/doctype/doctype.py +352,For {0} at level {1} in {2} in row {3},{0}在水平{1}的{2}行{3} DocType: Bulk Email,Recipient,接受者 -apps/frappe/frappe/config/setup.py +137,Drag and Drop tool to build and customize Print Formats.,拖放工具來構建和定制打印格式。 +apps/frappe/frappe/config/setup.py +137,Drag and Drop tool to build and customize Print Formats.,拖放工具來構建和定製列印格式。 sites/assets/js/desk.min.js +779,Expand,擴大 DocType: Workflow State,align-right,靠右對齊 DocType: Page,Roles,角色 @@ -965,7 +964,7 @@ apps/frappe/frappe/core/doctype/report/report.js +8,Write a SELECT query. Note r DocType: Email Account,Attachment Limit (MB),附件限制(MB) sites/assets/js/form.min.js +196,Ctrl + Down,按Ctrl +向下 DocType: User,User Defaults,使用者預設 -DocType: Workflow State,chevron-down,雪佛龍跌 +DocType: Workflow State,chevron-down,人字形-下 DocType: Workflow State,th-list,日列表 DocType: Web Page,Enable Comments,啟用評論 DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),僅限此IP地址用戶。多個IP地址可以通過用逗號分隔的方式輸入。也接受部分的IP地址區段如(111.111.111) @@ -1002,8 +1001,8 @@ DocType: DocField,Table,表 DocType: File Data,File Size,文件大小 apps/frappe/frappe/website/doctype/web_form/web_form.py +87,You must login to submit this form,您必須登錄才能提交此表 DocType: User,Background Image,背景圖片 -sites/assets/js/form.min.js +261,New Custom Print Format,新的自定義打印格式 -DocType: DocPerm,Create,創建 +sites/assets/js/form.min.js +261,New Custom Print Format,新自定義列印格式 +DocType: DocPerm,Create,建立 DocType: About Us Settings,Org History,組織歷史 DocType: Workflow,Workflow Name,工作流程名稱 DocType: Web Form,Allow Edit,讓編輯 @@ -1015,7 +1014,7 @@ DocType: Web Page,Title / headline of your page,你的頁面標題/標題 DocType: DocType,Plugin,插件 sites/assets/js/desk.min.js +881,Add Attachments,添加附件 DocType: Workflow State,signal,信號 -DocType: DocType,Show Print First,先顯示打印 +DocType: DocType,Show Print First,先顯示列印 DocType: Print Settings,Monochrome,單色 DocType: Workflow,"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.",本文件可存在的不同「狀態」。如「開啟」、「延後批准」等。 apps/frappe/frappe/utils/verified_command.py +39,This link is invalid or expired. Please make sure you have pasted correctly.,此鏈接是無效或過期。請確保你已經正確粘貼。 @@ -1024,15 +1023,15 @@ DocType: Website Theme,Top Bar Text Color,最上面一欄文字顏色 apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +366,Remove Section,刪除部分 sites/assets/js/desk.min.js +439,Invalid Email: {0},無效的電子郵件: {0} apps/frappe/frappe/desk/doctype/event/event.py +16,Event end must be after start,活動必須在開始後才能結束 -apps/frappe/frappe/templates/includes/sidebar.html +7,Back,背部 +apps/frappe/frappe/templates/includes/sidebar.html +7,Back,回到上一步 apps/frappe/frappe/desk/query_report.py +21,You don't have permission to get a report on: {0},你無權得到一份報告:{0} sites/assets/js/desk.min.js +493,Advanced Search,高級搜索 apps/frappe/frappe/core/doctype/user/user.py +381,Password reset instructions have been sent to your email,密碼重置說明已發送到您的電子郵件 apps/frappe/frappe/config/setup.py +223,Manage cloud backups on Dropbox,管理Dropbox上的雲備份 DocType: Workflow,States,州 -DocType: Email Alert,Attach Print,附加打印 +DocType: Email Alert,Attach Print,附加列印 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",當您修改一個文件後,取消和保存,它會得到一個新的數字,是一個版本的舊號碼。 -apps/frappe/frappe/core/doctype/doctype/doctype.py +37,{0} not allowed in name,{0}名不允許 +apps/frappe/frappe/core/doctype/doctype/doctype.py +37,{0} not allowed in name,{0}不允許用在名稱中 DocType: Workflow State,circle-arrow-left,圓圈箭頭向左 apps/frappe/frappe/sessions.py +106,Redis cache server not running. Please contact Administrator / Tech support,Redis的緩存服務器無法運行。請聯繫管理員/技術支持 sites/assets/js/desk.min.js +823,Make a new record,建立新紀錄 @@ -1064,11 +1063,11 @@ DocType: Workflow Transition,Action,行動 apps/frappe/frappe/core/page/data_import_tool/exporter.py +221,Info:,信息: DocType: Custom Field,Permission Level,權限級別 DocType: User,Send Notifications for Transactions I Follow,發送通知進行交易我跟隨 -apps/frappe/frappe/core/doctype/doctype/doctype.py +388,"{0}: Cannot set Submit, Cancel, Amend without Write",{0} :無法設置提交,取消,修改不寫 +apps/frappe/frappe/core/doctype/doctype/doctype.py +388,"{0}: Cannot set Submit, Cancel, Amend without Write",{0} :沒有寫入則無法設定提交,取消,修改 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,設置>用戶 apps/frappe/frappe/templates/emails/password_reset.html +6,Thank you,謝謝 sites/assets/js/form.min.js +180,Saving,節約 -DocType: Print Settings,Print Style Preview,打印樣式預覽 +DocType: Print Settings,Print Style Preview,列印樣式預覽 DocType: About Us Settings,About Us Settings,關於我們的設置 DocType: Website Settings,Website Theme,網站主題 DocType: DocField,In List View,在列表視圖 @@ -1077,19 +1076,19 @@ apps/frappe/frappe/email/smtp.py +34,Invalid login or password,無效的登錄 apps/frappe/frappe/config/setup.py +190,Add custom javascript to forms.,添加自定義的JavaScript到表單內。 ,Role Permissions Manager,角色權限管理 DocType: Website Theme,This must be checked if the below style settings are applicable,這必須進行檢查,如果下面的樣式設置都適用 -apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +111,Name of the new Print Format,新的打印格式的名稱 +apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +111,Name of the new Print Format,新列印格式的名稱 apps/frappe/frappe/core/page/data_import_tool/exporter.py +219,Mandatory:,強制性: ,User Permissions Manager,用戶權限管理 DocType: Property Setter,New value to be set,新的值被設置 DocType: Email Alert,Days Before or After,日前或後 DocType: Email Alert,Email Alert,電子郵件警報 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +34,Select Document Types to set which User Permissions are used to limit access.,選擇文件類型來設置該用戶的權限來限制訪問。 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +84,Blog,博客 +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +84,Blog,部落格 apps/frappe/frappe/email/bulk.py +167,{0} has has left the conversation in {1} {2},{0}已經離開了對話{1} {2} DocType: Workflow State,hand-right,手向右 DocType: Website Settings,Subdomain,子域名 DocType: Web Form,Allow Delete,允許刪除 -DocType: Email Alert,Message Examples,消息示例 +DocType: Email Alert,Message Examples,訊息範例 DocType: Web Form,Login Required,需要登錄 apps/frappe/frappe/config/website.py +59,Write titles and introductions to your blog.,寫標題和介紹給你的博客。 DocType: Email Account,Notify if unreplied for (in mins),對於通知,如果沒有回复(以分鐘) @@ -1103,7 +1102,7 @@ DocType: DocPerm,Read,閱讀 apps/frappe/frappe/templates/pages/update-password.html +18,Old Password,舊密碼 apps/frappe/frappe/website/doctype/blog_post/blog_post.py +97,Posts by {0},帖子{0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.",要格式化列,給列標籤在查詢中。 -apps/frappe/frappe/core/doctype/doctype/doctype.py +415,{0}: Cannot set Assign Amend if not Submittable,{0} :無法設置指定修改,如果不Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,{0}: Cannot set Assign Amend if not Submittable,{0} :如果不可提交的話,便無法設為指定修改 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,編輯角色權限 DocType: Social Login Keys,Social Login Keys,社交登入碼 DocType: Comment,Comment Date,評論日期 @@ -1111,7 +1110,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +54,Remove al DocType: Website Slideshow,Slideshow Name,幻燈片放映名稱 sites/assets/js/form.min.js +180,Cancelling,取消 DocType: DocType,Allow Rename,允許重新命名 -DocType: DocType,Child Tables are shown as a Grid in other DocTypes.,子表中顯示為其他文檔類型的Grid。 +DocType: DocType,Child Tables are shown as a Grid in other DocTypes.,子表在其他文件類型中顯示為Grid。 DocType: Website Settings,"If checked, the Home page will be the default Item Group for the website.",如果選中,主頁將是默認的項目組的網站上。 DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",說明列表頁面,在純文本中,只有幾行。 (最多140個字符) sites/assets/js/desk.min.js +852,Forums,論壇 @@ -1169,7 +1168,7 @@ sites/assets/js/form.min.js +196,Ctrl + Up,按Ctrl +向上 DocType: Website Theme,Heading Style,標題樣式 apps/frappe/frappe/desk/page/applications/applications.py +34,You cannot install this app,您無法安裝這個程式 DocType: Scheduler Log,Error,錯誤 -apps/frappe/frappe/model/document.py +480,Cannot link cancelled document: {0},不能鏈接取消文件:{0} +apps/frappe/frappe/model/document.py +480,Cannot link cancelled document: {0},無法鏈接取消文件:{0} apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +549,"For example: If you want to include the document ID, use {0}",例如:如果要包括文件ID,使用{0} apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +478,Select Table Columns for {0},選擇表列{0} DocType: Custom Field,Options Help,選項幫助 @@ -1186,7 +1185,7 @@ DocType: Workflow State,hand-left,手向左 apps/frappe/frappe/core/doctype/doctype/doctype.py +277,Fieldtype {0} for {1} cannot be unique,FIELDTYPE {0} {1}不能是唯一的 DocType: Email Account,Use SSL,使用SSL DocType: Workflow State,play-circle,玩圈 -apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +75,Select Print Format to Edit,選擇打印格式編輯 +apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +75,Select Print Format to Edit,選擇編輯的列印格式 DocType: Workflow State,circle-arrow-down,圓圈箭頭向下 DocType: DocField,Datetime,日期時間 DocType: Workflow State,arrow-right,箭頭向右 @@ -1194,8 +1193,8 @@ DocType: Workflow State,Workflow state represents the current state of a documen sites/assets/js/editor.min.js +152,Open Link in a new Window,打開鏈接在新窗口 apps/frappe/frappe/utils/file_manager.py +230,Removed {0},刪除{0} DocType: Company History,Highlight,突出 -apps/frappe/frappe/print/doctype/print_format/print_format.py +17,Standard Print Format cannot be updated,標準打印格式不能被更新 -apps/frappe/frappe/core/doctype/doctype/doctype.py +381,"{0}: Create, Submit, Cancel and Amend only valid at level 0",{0} :創建,提交,取消和修改只適用於0級 +apps/frappe/frappe/print/doctype/print_format/print_format.py +17,Standard Print Format cannot be updated,標準列印格式不能被更新 +apps/frappe/frappe/core/doctype/doctype/doctype.py +381,"{0}: Create, Submit, Cancel and Amend only valid at level 0",{0} :新增,提交,取消和修改只適用於0級 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +146,Help: Field Properties,幫助:字段屬性 apps/frappe/frappe/model/document.py +653,Incorrect value in row {0}: {1} must be {2} {3},不正確的值在列{0} : {1}必須是{2} {3} apps/frappe/frappe/workflow/doctype/workflow/workflow.py +67,Submitted Document cannot be converted back to draft. Transition row {0},提交的文件不能被轉換回起草。 @@ -1206,7 +1205,7 @@ DocType: Workflow State,Home,家 DocType: Workflow State,question-sign,問號 DocType: Email Account,Add Signature,添加簽名 apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Left this conversation,離開了這個談話 -apps/frappe/frappe/core/page/permission_manager/permission_manager.js +467,Did not set,沒有設置 +apps/frappe/frappe/core/page/permission_manager/permission_manager.js +467,Did not set,沒有設定 DocType: ToDo,ToDo,待辦事項 DocType: DocField,No Copy,沒有複製 DocType: Workflow State,qrcode,QRcode @@ -1214,7 +1213,7 @@ DocType: Web Form,Breadcrumbs,麵包屑 apps/frappe/frappe/templates/includes/comments/comments.py +50,{0} by {1},{0} {1} apps/frappe/frappe/core/doctype/comment/comment.py +39,Cannot add more than 50 comments,無法添加超過50評論 DocType: Website Settings,Top Bar Items,頂欄項目 -DocType: Print Settings,Print Settings,打印設置 +DocType: Print Settings,Print Settings,列印設置 DocType: DocType,Max Attachments,最大附件 DocType: Page,Page,頁面 DocType: Workflow State,briefcase,公文包 @@ -1231,7 +1230,7 @@ DocType: Custom Field,Document,文件 DocType: DocField,Code,源碼 DocType: Website Theme,Footer Text Color,頁腳文本顏色 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +24,"Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document.",0級權限是文檔級的權限,也就是說,它們是主要用於訪問文件。 -DocType: Print Format,Print Format,打印格式 +DocType: Print Format,Print Format,列印格式 apps/frappe/frappe/config/website.py +28,User ID of a blog writer.,一個博客寫手用戶ID。 apps/frappe/frappe/config/setup.py +32,Set Permissions on Document Types and Roles,在文件類型和角色設置權限 sites/assets/js/desk.min.js +904,New in version {0},新版本中的{0} @@ -1246,14 +1245,14 @@ sites/assets/js/form.min.js +196,Done,DONE sites/assets/js/form.min.js +286,Reply,回复 DocType: Communication,By,通過 DocType: Email Account,SMTP Server,SMTP服務器 -DocType: Print Format,Print Format Help,打印格式幫助 +DocType: Print Format,Print Format Help,列印格式求助 apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.",如果要更新,請選擇“覆蓋”其他現有行不會被刪除。 DocType: Event,Every Month,每月 DocType: Letter Head,Letter Head in HTML,信頭中的HTML DocType: Web Form,Web Form,Web窗體 DocType: About Us Settings,Org History Heading,組織歷史航向 DocType: Web Form,Web Page Link Text,網頁鏈接文本 -apps/frappe/frappe/config/setup.py +142,"Set default format, page size, print style etc.",設置默認格式,頁面大小,打印樣式等。 +apps/frappe/frappe/config/setup.py +142,"Set default format, page size, print style etc.",設置預設格式,頁面大小,列印樣式等。 DocType: DocType,Naming,命名 DocType: Event,Every Year,每年 apps/frappe/frappe/core/doctype/user/user.py +350,Registered but disabled.,註冊但被禁用。 @@ -1263,7 +1262,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +201,Allow fi DocType: DocPerm,Role and Level,角色和級別 apps/frappe/frappe/desk/moduleview.py +31,Custom Reports,自定義報告 DocType: Website Script,Website Script,網站腳本 -apps/frappe/frappe/config/setup.py +147,Customized HTML Templates for printing transactions.,定制HTML模板打印交易。 +apps/frappe/frappe/config/setup.py +147,Customized HTML Templates for printing transactions.,定製列印交易用之 HTML 模板。 apps/frappe/frappe/desk/form/utils.py +103,No further records,沒有進一步的記錄 DocType: DocField,Long Text,長文本 apps/frappe/frappe/core/page/data_import_tool/importer.py +35,Please do not change the rows above {0},請不要更改上面的{0}列 @@ -1282,13 +1281,13 @@ DocType: Role,Role Name,角色名稱 DocType: Workflow Document State,Workflow Document State,工作流程文件狀態 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +32,"To give acess to a role for only specific records, check the Apply User Permissions. User Permissions are used to limit users with such role to specific records.",為了讓接取到了只有特定記錄的作用,檢查應用的用戶權限。用戶權限用於限制用戶這樣的角色,具體的記錄。 apps/frappe/frappe/workflow/doctype/workflow/workflow.py +70,Cannot cancel before submitting. See Transition {0},可以在提交之前不會取消。 -apps/frappe/frappe/templates/pages/print.py +139,Print Format {0} is disabled,打印格式{0}被禁用 +apps/frappe/frappe/templates/pages/print.py +139,Print Format {0} is disabled,列印格式{0}被禁用 DocType: Email Alert,Send days before or after the reference date,之前或基準日後發送天 DocType: User,Allow user to login only after this hour (0-24),允許用戶在幾小時後登入(0 - 24) apps/frappe/frappe/core/doctype/doctype/doctype.py +34,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,不是在開發模式!坐落在site_config.json或進行“自定義”的DocType。 DocType: Workflow State,globe,地球 DocType: System Settings,dd.mm.yyyy,dd.mm.yyyy -apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +193,Hide field in Standard Print Format,在標準打印格式隱藏領域 +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +193,Hide field in Standard Print Format,標準列印格式中的隱藏欄位 DocType: DocField,Float,浮動 DocType: Module Def,Module Name,模塊名稱 DocType: DocType,DocType is a Table / Form in the application.,DOCTYPE要一個表/表格應用程序中。 @@ -1297,7 +1296,7 @@ DocType: Email Account,GMail,GMail的 DocType: Customize Form,"Fields separated by comma (,) will be included in the
Search By list of Search dialog box",字段用逗號(,)分隔將被納入
搜索的搜索對話框列表 DocType: Web Page,Template Path,模板路徑 DocType: User,user_image_show,user_image_show -DocType: DocField,Print Width,打印寬度 +DocType: DocField,Print Width,列印寬度 DocType: User,Allow user to login only before this hour (0-24),允許用戶在幾小時前登入(0 - 24) apps/frappe/frappe/print/page/print_format_builder/print_format_builder_sidebar.html +3,Filter...,過濾器... DocType: Workflow State,bold,粗體 @@ -1318,7 +1317,7 @@ DocType: User,"Enter default value fields (keys) and values. If you add multiple DocType: Email Account,Port,端口 DocType: Website Slideshow,Slideshow like display for the website,幻燈片一樣顯示的網站 sites/assets/js/editor.min.js +121,Center (Ctrl/Cmd+E),中心(按Ctrl / Cmd + E) -apps/frappe/frappe/sessions.py +28,Cache Cleared,緩存清除 +apps/frappe/frappe/sessions.py +28,Cache Cleared,快取已清除 apps/frappe/frappe/core/doctype/user/user.py +73,User with System Manager Role should always have User Type: System User,用戶與系統管理角色應該始終有用戶類型:系統用戶 DocType: DocPerm,Export,出口 DocType: About Us Settings,More content for the bottom of the page.,更多的內容的頁面的底部。 @@ -1331,7 +1330,7 @@ DocType: Web Form,"In JSON as
[{""title"":""Jobs"", ""name"":""jobs""}]
Date: Fri, 10 Jul 2015 09:45:11 +0530
Subject: [PATCH 06/14] =?UTF-8?q?Fix=20lang=20code=20for=20=C4=8Desky?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 frappe/data/languages.txt              | 2 +-
 frappe/translations/{cz.csv => cs.csv} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)
 rename frappe/translations/{cz.csv => cs.csv} (100%)

diff --git a/frappe/data/languages.txt b/frappe/data/languages.txt
index 616c444e77..638dcd44cc 100644
--- a/frappe/data/languages.txt
+++ b/frappe/data/languages.txt
@@ -2,7 +2,7 @@ ar	العربية
 bg	bǎlgarski
 bs	bosanski
 ca	català
-cz	česky
+cs	česky
 da	dansk
 de	deutsch
 el	ελληνικά
diff --git a/frappe/translations/cz.csv b/frappe/translations/cs.csv
similarity index 100%
rename from frappe/translations/cz.csv
rename to frappe/translations/cs.csv

From 8523ebe6a51fa3c222efa98bb4da25ebf7bd1fcc Mon Sep 17 00:00:00 2001
From: Pratik Vyas 
Date: Fri, 10 Jul 2015 10:54:26 +0530
Subject: [PATCH 07/14] [fix] pretty date in website

---
 frappe/public/js/frappe/misc/pretty_date.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/frappe/public/js/frappe/misc/pretty_date.js b/frappe/public/js/frappe/misc/pretty_date.js
index 1d0a8bee43..d766c5a784 100644
--- a/frappe/public/js/frappe/misc/pretty_date.js
+++ b/frappe/public/js/frappe/misc/pretty_date.js
@@ -1,7 +1,7 @@
 function prettyDate(time, mini){
 
 	if(moment) {
-		if(sys_defaults.time_zone) {
+		if(window.sys_defaults && sys_defaults.time_zone) {
 			var ret = moment.tz(time, sys_defaults.time_zone).fromNow(mini);
 		} else {
 			var ret = moment(time).fromNow(mini);

From 110edcdc2d3794fd406eb8531eb06a18fd811cd7 Mon Sep 17 00:00:00 2001
From: Pratik Vyas 
Date: Fri, 10 Jul 2015 10:54:48 +0530
Subject: [PATCH 08/14] [fix] get commands from all apps

---
 frappe/utils/bench_helper.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/frappe/utils/bench_helper.py b/frappe/utils/bench_helper.py
index 691b0ba568..451baf0c60 100644
--- a/frappe/utils/bench_helper.py
+++ b/frappe/utils/bench_helper.py
@@ -15,7 +15,7 @@ def main():
 
 def get_app_groups():
 	ret = {}
-	for app in ["frappe"]: #get_apps():
+	for app in get_apps():
 		app_group = get_app_group(app)
 		if app_group:
 			ret[app] = app_group
@@ -31,7 +31,7 @@ def get_app_group(app):
 @click.option('--verbose', is_flag=True, default=False, help='Verbose')
 @click.option('--force', is_flag=True, default=False, help='Force')
 @click.pass_context
-def app_group(ctx, site, force, verbose, profile):
+def app_group(ctx, site=False, force=False, verbose=False, profile=False):
 	ctx.obj = {
 		'sites': get_sites(site),
 		'force': force,

From 5140ff38dff73daae82c5158f00c83ec43420204 Mon Sep 17 00:00:00 2001
From: Rushabh Mehta 
Date: Fri, 10 Jul 2015 11:24:46 +0530
Subject: [PATCH 09/14] [filter] fix for filters and fix tabs in web_form.html

---
 frappe/public/js/frappe/form/control.js       |   1 +
 frappe/public/js/frappe/ui/filters/filters.js |  21 +++-
 frappe/templates/generators/web_form.html     | 102 +++++++++---------
 3 files changed, 68 insertions(+), 56 deletions(-)

diff --git a/frappe/public/js/frappe/form/control.js b/frappe/public/js/frappe/form/control.js
index e489c96e25..f28df12f2b 100644
--- a/frappe/public/js/frappe/form/control.js
+++ b/frappe/public/js/frappe/form/control.js
@@ -1024,6 +1024,7 @@ frappe.ui.form.ControlLink = frappe.ui.form.ControlData.extend({
 		this.$input.cache = {};
 		this.$input.autocomplete({
 			minLength: 0,
+			autoFocus: true,
 			source: function(request, response) {
 				var doctype = me.get_options();
 				if(!doctype) return;
diff --git a/frappe/public/js/frappe/ui/filters/filters.js b/frappe/public/js/frappe/ui/filters/filters.js
index 0c3f22f333..41411e881c 100644
--- a/frappe/public/js/frappe/ui/filters/filters.js
+++ b/frappe/public/js/frappe/ui/filters/filters.js
@@ -272,7 +272,8 @@ frappe.ui.Filter = Class.extend({
 		} else if(df.fieldtype=='Check') {
 			df.fieldtype='Select';
 			df.options='No\nYes';
-		} else if(['Text','Small Text','Text Editor','Code','Tag','Comments','Dynamic Link', 'Read Only'].indexOf(df.fieldtype)!=-1) {
+		} else if(['Text','Small Text','Text Editor','Code','Tag','Comments',
+			'Dynamic Link','Read Only','Assign'].indexOf(df.fieldtype)!=-1) {
 			df.fieldtype = 'Data';
 		} else if(df.fieldtype=='Link' && this.$w.find('.condition').val()!="=") {
 			df.fieldtype = 'Data';
@@ -306,13 +307,20 @@ frappe.ui.Filter = Class.extend({
 		}
 
 		if(this.get_condition()==='like') {
-			// add % only if not there at the end
-			if ((val.length === 0) || (val.lastIndexOf("%") !== (val.length - 1))) {
-				val = (val || "") + '%';
+			// automatically append wildcards
+			if(val) {
+				if(val.slice(0,1) !== "%") {
+					val = "%" + val;
+				}
+				if(val.slice(-1) !== "%") {
+					val = val + "%";
+				}
 			}
 		} else if(in_list(["in", "not in"], this.get_condition())) {
 			val = $.map(val.split(","), function(v) { return strip(v); });
-		} if(val === '%') val = "";
+		} if(val === '%') {
+			val = "";
+		}
 
 		return val;
 	},
@@ -368,6 +376,8 @@ frappe.ui.Filter = Class.extend({
 			value = this.field.get_value();
 		}
 
+		console.log(value);
+
 		this.$btn_group.find(".toggle-filter")
 			.html(repl('%(label)s %(condition)s "%(value)s"', {
 				label: __(this.field.df.label),
@@ -392,6 +402,7 @@ frappe.ui.FieldSelect = Class.extend({
 			.autocomplete({
 				source: me.options,
 				minLength: 0,
+				autoFocus: true,
 				focus: function(event, ui) {
 					ui.item && me.$select.val(ui.item.label);
 					return false;
diff --git a/frappe/templates/generators/web_form.html b/frappe/templates/generators/web_form.html
index ee3ecaa839..48fe7c02af 100644
--- a/frappe/templates/generators/web_form.html
+++ b/frappe/templates/generators/web_form.html
@@ -5,25 +5,25 @@
 {% endblock %}
 
 {% block header_actions %}
-    {% if params.name or params.new %}
-	
-	
-        {{ _("Cancel") }}
-    {% elif is_list %}
-	
-		{{ _("New {0}").format(_(doc_type)) }}
-	
-    {% endif %}
+  {% if params.name or params.new %}
+    
+    
+    		{{ _("Cancel") }}
+  {% elif is_list %}
+    
+    {{ _("New {0}").format(_(doc_type)) }}
+    
+  {% endif %}
 {% endblock %}
 
 {% block content %}
 
 
- {% if introduction_text %} -

{{ introduction_text }}

-
- {% endif %} + {% if introduction_text %} +

{{ introduction_text }}

+
+ {% endif %}
{% if login_required and frappe.user=="Guest" %} {% elif is_list %} - {% include "templates/includes/list/list.html" %} - + {% include "templates/includes/list/list.html" %} + {% else %}
{%- macro properties(field) %} - name="{{ field.fieldname }}" id="{{ field.fieldname }}" - {% if field.placeholder %}placeholder="{{ field.placeholder }}"{% endif %} - data-label="{{ field.label }}" data-fieldtype="{{ field.fieldtype }}" - {{ (field.reqd and field.fieldtype!="Attach") and "required" or "" }} - {{ field.read_only and "disabled" or "" }} + name="{{ field.fieldname }}" id="{{ field.fieldname }}" + {% if field.placeholder %}placeholder="{{ field.placeholder }}"{% endif %} + data-label="{{ field.label }}" data-fieldtype="{{ field.fieldtype }}" + {{ (field.reqd and field.fieldtype!="Attach") and "required" or "" }} + {{ field.read_only and "disabled" or "" }} {% endmacro -%} {%- macro value(field) -%}{% if doc %}{{ doc.get(field.fieldname) or field.default or "" }}{% else %}{{ getCookie(field.options) or field.default or "" }}{% endif %}{%- endmacro -%} {%- macro help(field) -%} - {% if field.description -%} - {{ field.description }} - {%- endif -%} + {% if field.description -%} + {{ field.description }} + {%- endif -%} {%- endmacro %} {% macro label(field) %} - + {% endmacro %} {% macro render_field(field) %} @@ -138,7 +138,7 @@
@@ -150,17 +150,17 @@ {%- endif %} - {% for section in layout %} -
- {% for column in section %} -
- {% for field in column %} - {{ render_field(field) }} - {% endfor %} -
- {% endfor %} -
- {% endfor %} + {% for section in layout %} +
+ {% for column in section %} +
+ {% for field in column %} + {{ render_field(field) }} + {% endfor %} +
+ {% endfor %} +
+ {% endfor %} {% if allow_comments and not params.new -%}
@@ -176,7 +176,7 @@