diff --git a/frappe/__init__.py b/frappe/__init__.py index 5da13e5d55..ea7432f562 100644 --- a/frappe/__init__.py +++ b/frappe/__init__.py @@ -44,7 +44,7 @@ def _(msg): return msg from frappe.translate import get_full_dict - return get_full_dict(local.lang).get(msg, msg) + return get_full_dict(local.lang).get(msg) or msg def get_lang_dict(fortype, name=None): """Returns the translated language dict for the given type and name. @@ -919,6 +919,9 @@ def as_json(obj, indent=1): from frappe.utils.response import json_handler return json.dumps(obj, indent=indent, sort_keys=True, default=json_handler) +def are_emails_muted(): + return flags.mute_emails or conf.get("mute_emails") or False + def get_test_records(doctype): """Returns list of objects from `test_records.json` in the given doctype's folder.""" from frappe.modules import get_doctype_module, get_module_path diff --git a/frappe/__version__.py b/frappe/__version__.py index e062fb2d49..2a69af1984 100644 --- a/frappe/__version__.py +++ b/frappe/__version__.py @@ -1,2 +1,2 @@ from __future__ import unicode_literals -__version__ = "6.1.2" +__version__ = "6.2.0" diff --git a/frappe/boot.py b/frappe/boot.py index 20d5b2f0bf..6a88bbc091 100644 --- a/frappe/boot.py +++ b/frappe/boot.py @@ -69,7 +69,6 @@ def get_bootinfo(): bootinfo['versions'] = {k: v['version'] for k, v in get_versions().items()} bootinfo.error_report_email = frappe.get_hooks("error_report_email") - bootinfo.default_background_image = "/assets/frappe/images/ui/into-the-dawn.jpg" bootinfo.calendars = sorted(frappe.get_hooks("calendars")) return bootinfo diff --git a/frappe/change_log/v6/v6_2_0.md b/frappe/change_log/v6/v6_2_0.md new file mode 100644 index 0000000000..05253243e3 --- /dev/null +++ b/frappe/change_log/v6/v6_2_0.md @@ -0,0 +1,3 @@ +- **Permissions:** + - If User Permissions are missing for a DocType, don't show non-matching records. + - If **Ignore User Permissions If Missing** is checked in System Settings, show records even if User Permissions are not defined. diff --git a/frappe/commands.py b/frappe/commands.py index 28a6a82548..7208095db6 100644 --- a/frappe/commands.py +++ b/frappe/commands.py @@ -682,11 +682,19 @@ def request(context, args): @click.command('doctor') def doctor(): - "Get untranslated strings for lang." + "Get diagnostic info about background workers" from frappe.utils.doctor import doctor as _doctor frappe.init('') return _doctor() +@click.command('celery-doctor') +@click.option('--site', help='site name') +def celery_doctor(site=None): + "Get diagnostic info about background workers" + from frappe.utils.doctor import celery_doctor as _celery_doctor + frappe.init('') + return _celery_doctor(site=site) + @click.command('purge-all-tasks') def purge_all_tasks(): "Purge any pending periodic tasks of 'all' event. Doesn't purge hourly, daily and weekly" @@ -868,6 +876,7 @@ commands = [ serve, request, doctor, + celery_doctor, purge_all_tasks, dump_queue_status, console, diff --git a/frappe/core/doctype/report/report.json b/frappe/core/doctype/report/report.json index 9981a99afc..562cdba6e4 100644 --- a/frappe/core/doctype/report/report.json +++ b/frappe/core/doctype/report/report.json @@ -300,7 +300,7 @@ "is_submittable": 0, "issingle": 0, "istable": 0, - "modified": "2015-02-05 05:11:44.753200", + "modified": "2015-09-07 15:51:26", "modified_by": "Administrator", "module": "Core", "name": "Report", @@ -368,7 +368,7 @@ }, { "amend": 0, - "apply_user_permissions": 1, + "apply_user_permissions": 0, "cancel": 0, "create": 0, "delete": 0, diff --git a/frappe/core/doctype/role/role.json b/frappe/core/doctype/role/role.json index 85a026820e..fb4b299077 100644 --- a/frappe/core/doctype/role/role.json +++ b/frappe/core/doctype/role/role.json @@ -41,7 +41,7 @@ "is_submittable": 0, "issingle": 0, "istable": 0, - "modified": "2015-02-05 05:11:44.831475", + "modified": "2015-09-07 15:51:26", "modified_by": "Administrator", "module": "Core", "name": "Role", @@ -89,7 +89,7 @@ }, { "amend": 0, - "apply_user_permissions": 1, + "apply_user_permissions": 0, "cancel": 0, "create": 0, "delete": 0, diff --git a/frappe/core/doctype/system_settings/system_settings.json b/frappe/core/doctype/system_settings/system_settings.json index 6eaa88bd55..4142edac7c 100644 --- a/frappe/core/doctype/system_settings/system_settings.json +++ b/frappe/core/doctype/system_settings/system_settings.json @@ -335,6 +335,29 @@ "set_only_once": 0, "unique": 0 }, + { + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "description": "eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User", + "fieldname": "ignore_user_permissions_if_missing", + "fieldtype": "Check", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Ignore User Permissions If Missing", + "no_copy": 0, + "permlevel": 0, + "precision": "", + "print_hide": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "unique": 0 + }, { "allow_on_submit": 0, "bold": 0, @@ -432,7 +455,7 @@ "is_submittable": 0, "issingle": 1, "istable": 0, - "modified": "2015-05-21 07:15:55.682132", + "modified": "2015-09-07 11:36:15.465900", "modified_by": "Administrator", "module": "Core", "name": "System Settings", diff --git a/frappe/custom/doctype/customize_form/customize_form.py b/frappe/custom/doctype/customize_form/customize_form.py index 177be05f6d..2c688a20d1 100644 --- a/frappe/custom/doctype/customize_form/customize_form.py +++ b/frappe/custom/doctype/customize_form/customize_form.py @@ -38,6 +38,8 @@ class CustomizeForm(Document): 'in_filter': 'Check', 'in_list_view': 'Check', 'hidden': 'Check', + 'collapsible': 'Check', + 'collapsible_depends_on': 'Data', 'print_hide': 'Check', 'report_hide': 'Check', 'allow_on_submit': 'Check', diff --git a/frappe/custom/doctype/customize_form_field/customize_form_field.json b/frappe/custom/doctype/customize_form_field/customize_form_field.json index 3c2d7b387c..ac3725240c 100644 --- a/frappe/custom/doctype/customize_form_field/customize_form_field.json +++ b/frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -334,6 +334,52 @@ "unique": 0, "width": "50px" }, + { + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "depends_on": "eval:doc.fieldtype==\"Section Break\"", + "fieldname": "collapsible", + "fieldtype": "Check", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Collapsible", + "no_copy": 0, + "permlevel": 0, + "precision": "", + "print_hide": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "unique": 0 + }, + { + "allow_on_submit": 0, + "bold": 0, + "collapsible": 0, + "depends_on": "eval:doc.fieldtype==\"Section Break\"", + "fieldname": "collapsible_depends_on", + "fieldtype": "Data", + "hidden": 0, + "ignore_user_permissions": 0, + "in_filter": 0, + "in_list_view": 0, + "label": "Collapsible Depends On", + "no_copy": 0, + "permlevel": 0, + "precision": "", + "print_hide": 0, + "read_only": 0, + "report_hide": 0, + "reqd": 0, + "search_index": 0, + "set_only_once": 0, + "unique": 0 + }, { "allow_on_submit": 0, "bold": 0, @@ -641,7 +687,7 @@ "is_submittable": 0, "issingle": 0, "istable": 1, - "modified": "2015-07-27 01:00:32.901851", + "modified": "2015-09-04 02:49:57.129449", "modified_by": "Administrator", "module": "Custom", "name": "Customize Form Field", diff --git a/frappe/database.py b/frappe/database.py index a8120234b5..af826acd4e 100644 --- a/frappe/database.py +++ b/frappe/database.py @@ -505,11 +505,23 @@ class Database: def get_list(self, *args, **kwargs): return frappe.get_list(*args, **kwargs) - def get_single_value(self, doctype, fieldname): - """Get property of Single DocType.""" + def get_single_value(self, doctype, fieldname, cache=False): + """Get property of Single DocType. Cache locally by default""" + value = self.value_cache.setdefault(doctype, {}).get(fieldname) + if value: + return value + val = self.sql("""select value from tabSingles where doctype=%s and field=%s""", (doctype, fieldname)) - return val[0][0] if val else None + val = val[0][0] if val else None + + if val=="0" or val=="1": + # check type + val = int(val) + + self.value_cache[doctype][fieldname] = val + + return val def get_singles_value(self, *args, **kwargs): """Alias for get_single_value""" @@ -594,6 +606,10 @@ class Database: self.set_value(dt, dn, "modified", modified) self.set_value(dt, dn, "modified_by", modified_by) + + if dt in self.value_cache: + del self.value_cache[dt] + def set(self, doc, field, val): """Set value in document. **Avoid**""" doc.db_set(field, val) diff --git a/frappe/desk/doctype/event/event.json b/frappe/desk/doctype/event/event.json index 91e80b258b..33adad16c2 100644 --- a/frappe/desk/doctype/event/event.json +++ b/frappe/desk/doctype/event/event.json @@ -635,7 +635,7 @@ "is_submittable": 0, "issingle": 0, "istable": 0, - "modified": "2015-02-20 05:08:30.153381", + "modified": "2015-09-07 15:51:26", "modified_by": "Administrator", "module": "Desk", "name": "Event", @@ -643,7 +643,7 @@ "permissions": [ { "amend": 0, - "apply_user_permissions": 1, + "apply_user_permissions": 0, "cancel": 0, "create": 1, "delete": 0, diff --git a/frappe/desk/doctype/feed/feed.json b/frappe/desk/doctype/feed/feed.json index 08c6cd401a..47f0c873a1 100644 --- a/frappe/desk/doctype/feed/feed.json +++ b/frappe/desk/doctype/feed/feed.json @@ -145,7 +145,7 @@ "is_submittable": 0, "issingle": 0, "istable": 0, - "modified": "2015-01-07 13:40:10.882588", + "modified": "2015-09-07 15:51:26", "modified_by": "Administrator", "module": "Desk", "name": "Feed", @@ -173,7 +173,7 @@ }, { "amend": 0, - "apply_user_permissions": 1, + "apply_user_permissions": 0, "cancel": 0, "create": 0, "delete": 0, diff --git a/frappe/desk/doctype/note/note.json b/frappe/desk/doctype/note/note.json index 62304b7e4e..bba36ed669 100644 --- a/frappe/desk/doctype/note/note.json +++ b/frappe/desk/doctype/note/note.json @@ -84,7 +84,7 @@ "is_submittable": 0, "issingle": 0, "istable": 0, - "modified": "2015-07-28 16:18:12.301520", + "modified": "2015-09-07 15:51:26", "modified_by": "Administrator", "module": "Desk", "name": "Note", @@ -92,7 +92,7 @@ "permissions": [ { "amend": 0, - "apply_user_permissions": 1, + "apply_user_permissions": 0, "cancel": 0, "create": 1, "delete": 1, diff --git a/frappe/desk/doctype/todo/todo.json b/frappe/desk/doctype/todo/todo.json index 1454c5202e..144a4d1165 100644 --- a/frappe/desk/doctype/todo/todo.json +++ b/frappe/desk/doctype/todo/todo.json @@ -335,7 +335,7 @@ "issingle": 0, "istable": 0, "max_attachments": 0, - "modified": "2015-06-11 16:06:34.561469", + "modified": "2015-09-07 15:51:26", "modified_by": "Administrator", "module": "Desk", "name": "ToDo", @@ -343,7 +343,7 @@ "permissions": [ { "amend": 0, - "apply_user_permissions": 1, + "apply_user_permissions": 0, "cancel": 0, "create": 1, "delete": 0, diff --git a/frappe/desk/form/load.py b/frappe/desk/form/load.py index 82cc238068..345c097ad2 100644 --- a/frappe/desk/form/load.py +++ b/frappe/desk/form/load.py @@ -32,7 +32,7 @@ def getdoc(doctype, name, user=None): run_onload(doc) if not doc.has_permission("read"): - raise frappe.PermissionError, "read" + raise frappe.PermissionError, ("read", doctype, name) # add file list get_docinfo(doc) diff --git a/frappe/email/bulk.py b/frappe/email/bulk.py index c5ed6e7ca3..3d958fb51f 100644 --- a/frappe/email/bulk.py +++ b/frappe/email/bulk.py @@ -190,7 +190,7 @@ def flush(from_test=False): # additional check check_bulk_limit([]) - if frappe.flags.mute_emails or frappe.conf.get("mute_emails") or False: + if frappe.are_emails_muted(): msgprint(_("Emails are muted")) from_test = True diff --git a/frappe/email/doctype/standard_reply/standard_reply.json b/frappe/email/doctype/standard_reply/standard_reply.json index f446b97d22..049c724a9e 100644 --- a/frappe/email/doctype/standard_reply/standard_reply.json +++ b/frappe/email/doctype/standard_reply/standard_reply.json @@ -83,7 +83,7 @@ "is_submittable": 0, "issingle": 0, "istable": 0, - "modified": "2015-07-28 16:18:12.432775", + "modified": "2015-09-07 15:51:26", "modified_by": "Administrator", "module": "Email", "name": "Standard Reply", @@ -92,7 +92,7 @@ "permissions": [ { "amend": 0, - "apply_user_permissions": 1, + "apply_user_permissions": 0, "cancel": 0, "create": 1, "delete": 0, diff --git a/frappe/email/smtp.py b/frappe/email/smtp.py index 714d64423d..c24ea82807 100644 --- a/frappe/email/smtp.py +++ b/frappe/email/smtp.py @@ -15,7 +15,7 @@ def send(email, append_to=None): frappe.flags.sent_mail = email.as_string() return - if frappe.flags.mute_emails or frappe.conf.get("mute_emails") or False: + if frappe.are_emails_muted(): frappe.msgprint(_("Emails are muted")) return @@ -81,7 +81,7 @@ def get_default_outgoing_email_account(raise_exception_not_set=True): if not email_account and not raise_exception_not_set: return None - if frappe.flags.mute_emails or frappe.conf.get("mute_emails") or False: + if frappe.are_emails_muted(): # create a stub email_account = frappe.new_doc("Email Account") email_account.update({ diff --git a/frappe/geo/doctype/country/country.json b/frappe/geo/doctype/country/country.json index 8098855411..165695d7f5 100644 --- a/frappe/geo/doctype/country/country.json +++ b/frappe/geo/doctype/country/country.json @@ -105,7 +105,7 @@ "is_submittable": 0, "issingle": 0, "istable": 0, - "modified": "2015-07-28 16:18:11.855617", + "modified": "2015-09-07 15:51:26", "modified_by": "Administrator", "module": "Geo", "name": "Country", @@ -133,7 +133,7 @@ }, { "amend": 0, - "apply_user_permissions": 1, + "apply_user_permissions": 0, "cancel": 0, "create": 0, "delete": 0, diff --git a/frappe/geo/doctype/currency/currency.json b/frappe/geo/doctype/currency/currency.json index aab3d56931..4219cb9ba9 100644 --- a/frappe/geo/doctype/currency/currency.json +++ b/frappe/geo/doctype/currency/currency.json @@ -152,7 +152,7 @@ "is_submittable": 0, "issingle": 0, "istable": 0, - "modified": "2015-07-13 05:01:14.014983", + "modified": "2015-09-07 15:51:26", "modified_by": "Administrator", "module": "Geo", "name": "Currency", @@ -180,7 +180,7 @@ }, { "amend": 0, - "apply_user_permissions": 1, + "apply_user_permissions": 0, "cancel": 0, "create": 0, "delete": 0, diff --git a/frappe/hooks.py b/frappe/hooks.py index 77d12c98d2..13437285c9 100644 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -26,7 +26,7 @@ to ERPNext. """ app_icon = "octicon octicon-circuit-board" -app_version = "6.1.2" +app_version = "6.2.0" app_color = "orange" github_link = "https://github.com/frappe/frappe" diff --git a/frappe/model/db_query.py b/frappe/model/db_query.py index 10f7939d3f..411d16600c 100644 --- a/frappe/model/db_query.py +++ b/frappe/model/db_query.py @@ -323,8 +323,7 @@ class DatabaseQuery(object): tuple([frappe.db.escape(s) for s in self.shared]) def add_user_permissions(self, user_permissions, user_permission_doctypes=None): - user_permission_doctypes = frappe.permissions.get_user_permission_doctypes(user_permission_doctypes, - user_permissions) + user_permission_doctypes = frappe.permissions.get_user_permission_doctypes(user_permission_doctypes, user_permissions) meta = frappe.get_meta(self.doctype) for doctypes in user_permission_doctypes: @@ -332,13 +331,17 @@ class DatabaseQuery(object): match_conditions = [] # check in links for df in meta.get_fields_to_check_permissions(doctypes): - match_conditions.append("""(ifnull(`tab{doctype}`.`{fieldname}`, "")="" - or `tab{doctype}`.`{fieldname}` in ({values}))""".format( - doctype=self.doctype, - fieldname=df.fieldname, - values=", ".join([('"'+frappe.db.escape(v)+'"') for v in user_permissions[df.options]]) - )) - match_filters[df.options] = user_permissions[df.options] + user_permission_values = user_permissions.get(df.options, []) + + condition = 'ifnull(`tab{doctype}`.`{fieldname}`, "")=""'.format(doctype=self.doctype, fieldname=df.fieldname) + if user_permission_values: + condition += """ or `tab{doctype}`.`{fieldname}` in ({values})""".format( + doctype=self.doctype, fieldname=df.fieldname, + values=", ".join([('"'+frappe.db.escape(v)+'"') for v in user_permission_values]) + ) + match_conditions.append("({condition})".format(condition=condition)) + + match_filters[df.options] = user_permission_values if match_conditions: self.match_conditions.append(" and ".join(match_conditions)) diff --git a/frappe/model/db_schema.py b/frappe/model/db_schema.py index 02ddc78a0a..deb27d7eda 100644 --- a/frappe/model/db_schema.py +++ b/frappe/model/db_schema.py @@ -142,7 +142,7 @@ class DbTable: precisions = {} uniques = {} - if not frappe.flags.in_install: + if not frappe.flags.in_install_db and frappe.flags.in_install != "frappe": custom_fl = frappe.db.sql("""\ SELECT * FROM `tabCustom Field` WHERE dt = %s AND docstatus < 2""", (self.doctype,), as_dict=1) diff --git a/frappe/model/document.py b/frappe/model/document.py index 741dcf393a..c945c3394b 100644 --- a/frappe/model/document.py +++ b/frappe/model/document.py @@ -295,6 +295,9 @@ class Document(BaseDocument): frappe.db.sql("""insert into tabSingles(doctype, field, value) values (%s, %s, %s)""", (self.doctype, field, value)) + if self.doctype in frappe.db.value_cache: + del frappe.db.value_cache[self.doctype] + def _set_docstatus_user_and_timestamp(self): self._original_modified = self.modified self.modified = now() diff --git a/frappe/model/mapper.py b/frappe/model/mapper.py index 56677fb528..8623fe83c9 100644 --- a/frappe/model/mapper.py +++ b/frappe/model/mapper.py @@ -43,7 +43,7 @@ def get_mapped_doc(from_doctype, from_docname, table_maps, target_doc=None, table_map = { "doctype": target_child_doctype } - + if table_map: for source_d in source_doc.get(df.fieldname): if "condition" in table_map: @@ -133,10 +133,7 @@ def map_fields(source_doc, target_doc, table_map, source_parent): map_fetch_fields(target_doc, df, no_copy_fields) def map_fetch_fields(target_doc, df, no_copy_fields): - try: - linked_doc = frappe.get_doc(df.options, target_doc.get(df.fieldname)) - except: - return + linked_doc = None # options should be like "link_fieldname.fieldname_in_liked_doc" for fetch_df in target_doc.meta.get("fields", {"options": "^{0}.".format(df.fieldname)}): @@ -145,6 +142,13 @@ def map_fetch_fields(target_doc, df, no_copy_fields): if not target_doc.get(fetch_df.fieldname) and fetch_df.fieldname not in no_copy_fields: source_fieldname = fetch_df.options.split(".")[1] + + if not linked_doc: + try: + linked_doc = frappe.get_doc(df.options, target_doc.get(df.fieldname)) + except: + return + val = linked_doc.get(source_fieldname) if val not in (None, ""): @@ -156,6 +160,7 @@ def map_child_doc(source_d, target_parent, table_map, source_parent=None): target_d = frappe.new_doc(target_child_doctype, target_parent, target_parentfield) map_doc(source_d, target_d, table_map, source_parent) + target_d.idx = None target_parent.append(target_parentfield, target_d) return target_d diff --git a/frappe/patches.txt b/frappe/patches.txt index e00dfd2746..dab9cc73b2 100644 --- a/frappe/patches.txt +++ b/frappe/patches.txt @@ -89,3 +89,4 @@ frappe.patches.v6_0.communication_status_and_permission frappe.patches.v6_0.make_task_log_folder frappe.patches.v6_0.document_type_rename frappe.patches.v6_0.fix_ghana_currency +frappe.patches.v6_2.ignore_user_permissions_if_missing diff --git a/frappe/patches/v6_2/__init__.py b/frappe/patches/v6_2/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/frappe/patches/v6_2/ignore_user_permissions_if_missing.py b/frappe/patches/v6_2/ignore_user_permissions_if_missing.py new file mode 100644 index 0000000000..468f99a83d --- /dev/null +++ b/frappe/patches/v6_2/ignore_user_permissions_if_missing.py @@ -0,0 +1,9 @@ +from __future__ import unicode_literals +import frappe + +def execute(): + frappe.reload_doctype("System Settings") + system_settings = frappe.get_doc("System Settings") + system_settings.ignore_user_permissions_if_missing = 1 + system_settings.flags.ignore_mandatory = 1 + system_settings.save() diff --git a/frappe/permissions.py b/frappe/permissions.py index 15ffb23ef6..0122fbde98 100644 --- a/frappe/permissions.py +++ b/frappe/permissions.py @@ -166,6 +166,7 @@ def get_role_permissions(meta, user=None, verbose=False): perms = frappe._dict({ "apply_user_permissions": {}, "user_permission_doctypes": {}, "if_owner": {} }) user_roles = frappe.get_roles(user) dont_match = [] + has_a_role_with_apply_user_permissions = False for p in meta.permissions: if cint(p.permlevel)==0 and (p.role in user_roles): @@ -186,18 +187,20 @@ def get_role_permissions(meta, user=None, verbose=False): dont_match.append(ptype) if p.apply_user_permissions: + has_a_role_with_apply_user_permissions = True + if p.user_permission_doctypes: # set user_permission_doctypes in perms user_permission_doctypes = json.loads(p.user_permission_doctypes) - - if user_permission_doctypes: - # perms["user_permission_doctypes"][ptype] would be a list of list like [["User", "Blog Post"], ["User"]] - for ptype in rights: - if p.get(ptype): - perms["user_permission_doctypes"].setdefault(ptype, []).append(user_permission_doctypes) else: user_permission_doctypes = get_linked_doctypes(meta.name) + if user_permission_doctypes: + # perms["user_permission_doctypes"][ptype] would be a list of list like [["User", "Blog Post"], ["User"]] + for ptype in rights: + if p.get(ptype): + perms["user_permission_doctypes"].setdefault(ptype, []).append(user_permission_doctypes) + # if atleast one record having both Apply User Permission and If Owner unchecked is found, # don't match for those rights for ptype in rights: @@ -210,9 +213,11 @@ def get_role_permissions(meta, user=None, verbose=False): # if one row has only "Apply User Permissions" checked and another has only "If Owner" checked, # set Apply User Permissions as checked - for ptype in rights: - if perms["if_owner"].get(ptype) and perms["apply_user_permissions"].get(ptype)==0: - perms["apply_user_permissions"][ptype] = 1 + # i.e. the case when there is a role with apply_user_permissions as 1, but resultant apply_user_permissions is 0 + if has_a_role_with_apply_user_permissions: + for ptype in rights: + if perms["if_owner"].get(ptype) and perms["apply_user_permissions"].get(ptype)==0: + perms["apply_user_permissions"][ptype] = 1 # delete 0 values for key, value in perms.get("apply_user_permissions").items(): @@ -239,8 +244,8 @@ def user_has_permission(doc, verbose=True, user=None, user_permission_doctypes=N result = True for df in meta.get_fields_to_check_permissions(doctypes): - if (df.options in user_permissions and d.get(df.fieldname) - and d.get(df.fieldname) not in user_permissions[df.options]): + if (d.get(df.fieldname) + and d.get(df.fieldname) not in user_permissions.get(df.options, [])): result = False if verbose: @@ -334,14 +339,11 @@ def apply_user_permissions(doctype, ptype, user=None): def get_user_permission_doctypes(user_permission_doctypes, user_permissions): """returns a list of list like [["User", "Blog Post"], ["User"]]""" - if user_permission_doctypes: + if cint(frappe.db.get_single_value("System Settings", "ignore_user_permissions_if_missing")): # select those user permission doctypes for which user permissions exist! user_permission_doctypes = [list(set(doctypes).intersection(set(user_permissions.keys()))) for doctypes in user_permission_doctypes] - else: - user_permission_doctypes = [user_permissions.keys()] - if len(user_permission_doctypes) > 1: # OPTIMIZATION # if intersection exists, use that to reduce the amount of querying diff --git a/frappe/print/doctype/letter_head/letter_head.json b/frappe/print/doctype/letter_head/letter_head.json index 4fd3ccb49f..b70dd49587 100644 --- a/frappe/print/doctype/letter_head/letter_head.json +++ b/frappe/print/doctype/letter_head/letter_head.json @@ -116,7 +116,7 @@ "issingle": 0, "istable": 0, "max_attachments": 3, - "modified": "2015-02-05 05:11:40.906941", + "modified": "2015-09-07 15:51:26", "modified_by": "Administrator", "module": "Print", "name": "Letter Head", @@ -144,7 +144,7 @@ }, { "amend": 0, - "apply_user_permissions": 1, + "apply_user_permissions": 0, "cancel": 0, "create": 0, "delete": 0, diff --git a/frappe/public/images/ui/into-the-dawn.jpg b/frappe/public/images/ui/into-the-dawn.jpg deleted file mode 100644 index cfcd4ce636..0000000000 Binary files a/frappe/public/images/ui/into-the-dawn.jpg and /dev/null differ diff --git a/frappe/public/js/frappe/misc/user.js b/frappe/public/js/frappe/misc/user.js index 306ee555d3..a4ba377e0c 100644 --- a/frappe/public/js/frappe/misc/user.js +++ b/frappe/public/js/frappe/misc/user.js @@ -62,13 +62,21 @@ frappe.get_gravatar = function(email_id) { frappe.ui.set_user_background = function(src, selector, style) { if(!selector) selector = "#page-desktop"; if(!style) style = "Fill Screen"; - if(!src) src = frappe.urllib.get_full_url(frappe.boot.default_background_image); + if(src) { + var background = repl('background: url("%(src)s") center center;', {src: src}); + } else { + var background = "background-color: #4B4C9D;"; + } frappe.dom.set_style(repl('%(selector)s { \ - background: url("%(src)s") center center;\ + %(background)s \ background-attachment: fixed; \ %(style)s \ - }', {src:src, selector:selector, style: style==="Fill Screen" ? "background-size: cover;" : ""})); + }', { + selector:selector, + background:background, + style: style==="Fill Screen" ? "background-size: cover;" : "" + })); } frappe.provide('frappe.user'); diff --git a/frappe/public/js/frappe/model/create_new.js b/frappe/public/js/frappe/model/create_new.js index b53b0c8f45..8c29045ede 100644 --- a/frappe/public/js/frappe/model/create_new.js +++ b/frappe/public/js/frappe/model/create_new.js @@ -221,6 +221,7 @@ $.extend(frappe.model, { args: { "source_name": opts.source_name }, + freeze: true, callback: function(r) { if(!r.exc) { var doc = frappe.model.sync(r.message); diff --git a/frappe/share.py b/frappe/share.py index 09fec7b977..85104c0265 100644 --- a/frappe/share.py +++ b/frappe/share.py @@ -12,7 +12,8 @@ def add(doctype, name, user=None, read=1, write=0, share=0, everyone=0, flags=No if not user: user = frappe.session.user - check_share_permission(doctype, name) + if not (flags or {}).get("ignore_share_permission"): + check_share_permission(doctype, name) share_name = get_share_name(doctype, name, user, everyone) diff --git a/frappe/templates/generators/web_form.html b/frappe/templates/generators/web_form.html index 48fe7c02af..512bdd26f6 100644 --- a/frappe/templates/generators/web_form.html +++ b/frappe/templates/generators/web_form.html @@ -153,7 +153,7 @@ {% for section in layout %}
{% for column in section %} -
+
{% for field in column %} {{ render_field(field) }} {% endfor %} diff --git a/frappe/templates/includes/comments/comments.html b/frappe/templates/includes/comments/comments.html index 1e3a3734a0..de94c4a867 100644 --- a/frappe/templates/includes/comments/comments.html +++ b/frappe/templates/includes/comments/comments.html @@ -65,8 +65,13 @@ $(this).toggle(false); $("#comment-form").toggle(); - $("[name='comment_by']").val(getCookie("user_id") || ""); - $("[name='comment_by_fullname']").val(getCookie("full_name") || ""); + var full_name = "", user_id = ""; + if(frappe.is_user_logged_in()) { + full_name = getCookie("full_name"); + user_id = getCookie("user_id"); + } + $("[name='comment_by']").val(user_id); + $("[name='comment_by_fullname']").val(full_name); $("#comment-form textarea").val(""); }) $("#submit-comment").click(function() { diff --git a/frappe/templates/includes/form_macros.html b/frappe/templates/includes/form_macros.html index ad25333a82..d83974cc65 100644 --- a/frappe/templates/includes/form_macros.html +++ b/frappe/templates/includes/form_macros.html @@ -1,10 +1,12 @@ -{% macro make_select(css_class=None, options=None, attributes=None) %} +{% macro make_select(css_class=None, options=None, attributes=None, value=None) %} diff --git a/frappe/templates/pages/me.html b/frappe/templates/pages/me.html index 5ecfe8229f..913d259ce4 100644 --- a/frappe/templates/pages/me.html +++ b/frappe/templates/pages/me.html @@ -25,7 +25,8 @@
diff --git a/frappe/templates/print_formats/standard_macros.html b/frappe/templates/print_formats/standard_macros.html index 06f48ebcae..9951252a25 100644 --- a/frappe/templates/print_formats/standard_macros.html +++ b/frappe/templates/print_formats/standard_macros.html @@ -37,7 +37,7 @@ {{ d.idx }} {% for tdf in visible_columns %} - {{ print_value(tdf, d, doc) }} +
{{ print_value(tdf, d, doc) }}
{% endfor %} {% endfor %} diff --git a/frappe/templates/styles/standard.css b/frappe/templates/styles/standard.css index 6503932890..0cfb1b06d6 100644 --- a/frappe/templates/styles/standard.css +++ b/frappe/templates/styles/standard.css @@ -85,3 +85,15 @@ table.no-border, table.no-border td { .print-format p { margin: 3px 0px 3px; } + +table td div { + /* needed to avoid partial cutting of text between page break in wkhtmltopdf */ + page-break-inside: avoid !important; +} + +/* hack for webkit specific browser */ +@media (-webkit-min-device-pixel-ratio:0) { + thead, tfoot { display: table-row-group; } +} + + diff --git a/frappe/tests/test_permissions.py b/frappe/tests/test_permissions.py index 88757dd167..c0fa56062f 100644 --- a/frappe/tests/test_permissions.py +++ b/frappe/tests/test_permissions.py @@ -26,6 +26,11 @@ class TestPermissions(unittest.TestCase): user = frappe.get_doc("User", "test2@example.com") user.add_roles("Blogger") + frappe.db.sql("""update `tabDocPerm` set if_owner=0 + where parent='Blog Post' and permlevel=0 and permlevel=0 and role='Blogger'""") + + self.set_ignore_user_permissions_if_missing(0) + frappe.set_user("test1@example.com") def tearDown(self): @@ -36,18 +41,28 @@ class TestPermissions(unittest.TestCase): clear_user_permissions_for_doctype("Blog Post") clear_user_permissions_for_doctype("Blogger") - frappe.db.sql("""update `tabDocPerm` set user_permission_doctypes=null + frappe.db.sql("""update `tabDocPerm` set user_permission_doctypes=null, apply_user_permissions=0 where parent='Blog Post' and permlevel=0 and apply_user_permissions=1 and `read`=1""") frappe.db.sql("""update `tabDocPerm` set if_owner=0 where parent='Blog Post' and permlevel=0 and permlevel=0 and role='Blogger'""") + self.set_ignore_user_permissions_if_missing(0) + + def set_ignore_user_permissions_if_missing(self, ignore): + ss = frappe.get_doc("System Settings") + ss.ignore_user_permissions_if_missing = ignore + ss.flags.ignore_mandatory = 1 + ss.save() + def test_basic_permission(self): post = frappe.get_doc("Blog Post", "_test-blog-post") self.assertTrue(post.has_permission("read")) def test_user_permissions_in_doc(self): + self.set_user_permission_doctypes(["Blog Category"]) + frappe.permissions.add_user_permission("Blog Category", "_Test Blog Category 1", "test2@example.com") @@ -62,6 +77,8 @@ class TestPermissions(unittest.TestCase): self.assertTrue(get_doc_permissions(post1).get("read")) def test_user_permissions_in_report(self): + self.set_user_permission_doctypes(["Blog Category"]) + frappe.permissions.add_user_permission("Blog Category", "_Test Blog Category 1", "test2@example.com") frappe.set_user("test2@example.com") @@ -78,6 +95,8 @@ class TestPermissions(unittest.TestCase): self.assertEquals(doc.get("blog_category"), "_Test Blog Category 1") def test_user_link_match_doc(self): + self.set_user_permission_doctypes(["Blogger"]) + blogger = frappe.get_doc("Blogger", "_Test Blogger 1") blogger.user = "test2@example.com" blogger.save() @@ -91,6 +110,8 @@ class TestPermissions(unittest.TestCase): self.assertFalse(post1.has_permission("read")) def test_user_link_match_report(self): + self.set_user_permission_doctypes(["Blogger"]) + blogger = frappe.get_doc("Blogger", "_Test Blogger 1") blogger.user = "test2@example.com" blogger.save() @@ -113,6 +134,8 @@ class TestPermissions(unittest.TestCase): "test2@example.com", "Blog Post", "_test-blog-post") def test_read_if_explicit_user_permissions_are_set(self): + self.set_user_permission_doctypes(["Blog Post"]) + self.test_set_user_permissions() frappe.set_user("test2@example.com") @@ -140,6 +163,8 @@ class TestPermissions(unittest.TestCase): doc = frappe.get_doc("Blog Post", "_test-blog-post-1") self.assertTrue(doc.has_permission("read")) + self.set_user_permission_doctypes(["Blog Post"]) + frappe.set_user("test1@example.com") add("test2@example.com", "Blog Post", "_test-blog-post") @@ -166,9 +191,7 @@ class TestPermissions(unittest.TestCase): frappe.set_user("test2@example.com") - frappe.db.sql("""update `tabDocPerm` set user_permission_doctypes=%s - where parent='Blog Post' and permlevel=0 and apply_user_permissions=1 - and `read`=1""", json.dumps(["Blogger"])) + self.set_user_permission_doctypes(["Blogger"]) frappe.model.meta.clear_cache("Blog Post") @@ -195,8 +218,13 @@ class TestPermissions(unittest.TestCase): frappe.model.meta.clear_cache("Blog Post") + def set_user_permission_doctypes(self, user_permission_doctypes): + set_user_permission_doctypes(doctype="Blog Post", role="Blogger", + apply_user_permissions=1, user_permission_doctypes=user_permission_doctypes) + def test_insert_if_owner_with_user_permissions(self): """If `If Owner` is checked for a Role, check if that document is allowed to be read, updated, submitted, etc. except be created, even if the document is restricted based on User Permissions.""" + self.set_user_permission_doctypes(["Blog Category"]) self.if_owner_setup() frappe.set_user("test2@example.com") @@ -227,3 +255,42 @@ class TestPermissions(unittest.TestCase): self.assertTrue(doc.has_permission("read")) self.assertTrue(doc.has_permission("write")) self.assertFalse(doc.has_permission("create")) + + def test_ignore_user_permissions_if_missing(self): + """If `Ignore User Permissions If Missing` is checked in System Settings, show records even if User Permissions are missing for a linked doctype""" + self.set_user_permission_doctypes(['Blog Category', 'Blog Post', 'Blogger']) + + frappe.set_user("Administrator") + frappe.permissions.add_user_permission("Blog Category", "_Test Blog Category", + "test2@example.com") + frappe.set_user("test2@example.com") + + doc = frappe.get_doc({ + "doctype": "Blog Post", + "blog_category": "_Test Blog Category", + "blogger": "_Test Blogger 1", + "title": "_Test Blog Post Title", + "content": "_Test Blog Post Content" + }) + + self.assertFalse(doc.has_permission("write")) + + frappe.set_user("Administrator") + self.set_ignore_user_permissions_if_missing(1) + + frappe.set_user("test2@example.com") + self.assertTrue(doc.has_permission("write")) + +def set_user_permission_doctypes(doctype, role, apply_user_permissions, user_permission_doctypes): + user_permission_doctypes = None if not user_permission_doctypes else json.dumps(user_permission_doctypes) + frappe.db.sql("""update `tabDocPerm` set apply_user_permissions=%(apply_user_permissions)s, + user_permission_doctypes=%(user_permission_doctypes)s + where parent=%(doctype)s and permlevel=0 + and `read`=1 and role=%(role)s""", { + "apply_user_permissions": apply_user_permissions, + "user_permission_doctypes": user_permission_doctypes, + "doctype": doctype, + "role": role + }) + + frappe.clear_cache(doctype=doctype) diff --git a/frappe/translations/ar.csv b/frappe/translations/ar.csv index fb79a8d119..f5a676fc52 100644 --- a/frappe/translations/ar.csv +++ b/frappe/translations/ar.csv @@ -1091,7 +1091,7 @@ DocType: Workflow,"If checked, all other workflows become inactive.",إذا تم apps/frappe/frappe/core/doctype/report/report.js +10,[Label]:[Field Type]/[Options]:[Width],[تسمية]: [نوع الحقل] / [خيارات]: [العرض] DocType: Workflow State,folder-close,غلق مجلد DocType: Email Alert Recipient,Optional: Alert will only be sent if value is a valid email id.,اختياري: سوف يتم إرسال تنبيه فقط إذا كانت القيمة هي هوية بريد إلكتروني صحيح. -apps/frappe/frappe/model/rename_doc.py +100,{0} not allowed to be renamed,{0} غير مسموح به ويجب إعادة تسميته +apps/frappe/frappe/model/rename_doc.py +100,{0} not allowed to be renamed,{0} غير مسموح بإعادة تسميته DocType: Custom Script,Custom Script,سكربت محصص sites/assets/js/desk.min.js +622,Assigned To,كلف إلى apps/frappe/frappe/core/doctype/user/user.py +166,Verify Your Account,التحقق من حسابك الخاص diff --git a/frappe/translations/cs.csv b/frappe/translations/cs.csv index b9c78f1d52..75243a78f3 100644 --- a/frappe/translations/cs.csv +++ b/frappe/translations/cs.csv @@ -17,7 +17,7 @@ DocType: Report,Report Manager,Manažer výpisů DocType: Workflow,Document States,Dokument státy sites/assets/js/desk.min.js +902,Sorry! I could not find what you were looking for.,"Je nám líto! Nemohl jsem najít to, co jste hledali." DocType: DocPerm,This role update User Permissions for a user,Tato role aktualizuje uživatelská oprávnění pro uživatele -sites/assets/js/desk.min.js +641,Rename {0},Přejmenovat: {0} +sites/assets/js/desk.min.js +641,Rename {0},Přejmenovat {0} DocType: Workflow State,zoom-out,Zmenšit DocType: Comment,Reference DocType and Reference Name are used to render a comment as a link (href) to a Doc.,Referenční DOCTYPE a referenční Name se používají k vykreslení komentář jako odkaz (href) na Doc. apps/frappe/frappe/model/document.py +668,Table {0} cannot be empty,Tabulka: {0} nemůže být prázdná @@ -192,7 +192,7 @@ DocType: Version,Docname,Docname apps/frappe/frappe/core/doctype/version/version.js +10,Version restored,Verze obnovena DocType: Event Role,Event Role,Role události sites/assets/js/editor.min.js +125,Indent (Tab),Odsazení (Tab) -DocType: Workflow State,List,seznam +DocType: Workflow State,List,Seznam DocType: Page Role,Page Role,Role stránky apps/frappe/frappe/core/doctype/doctype/doctype.py +252,Field {0} in row {1} cannot be hidden and mandatory without default,Pole {0} na řádku {1} nemůže být skryté a povinné bez výchozí hodnoty DocType: System Settings,mm/dd/yyyy,mm/dd/rrrr @@ -570,7 +570,7 @@ sites/assets/js/form.min.js +293,Add a comment,Přidat komentář apps/frappe/frappe/config/setup.py +220,Log of error on automated events (scheduler).,Log chyb automatických událostí (plánovač). apps/frappe/frappe/utils/csvutils.py +74,Not a valid Comma Separated Value (CSV File),Není validní CSV soubor (hodnoty oddělené čárkami) DocType: Email Account,Default Incoming,Výchozí Příchozí -DocType: Workflow State,repeat,repeat +DocType: Workflow State,repeat,opakovat DocType: Website Settings,Banner,Banner sites/assets/js/desk.min.js +917,Help on Search,Nápověda k vyhledávání DocType: User,Uncheck modules to hide from user's desktop,Zrušte zaškrtnutí moduly se schovávat před desktopu uživatele @@ -771,7 +771,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +26 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +38,"If these instructions where not helpful, please add in your suggestions on GitHub Issues.","Pakliže tyto instrukce nebyly nápomocné, prosím přidejte Vaše doporučení na GitHub Issues." DocType: Workflow State,bookmark,záložka DocType: Currency,Symbol,Symbol -apps/frappe/frappe/model/base_document.py +403,Row #{0}:,Řádek #{0}: +apps/frappe/frappe/model/base_document.py +403,Row #{0}:,Řádek č.{0}: apps/frappe/frappe/core/doctype/user/user.py +81,New password emailed,Nové heslo zasláno emailem apps/frappe/frappe/auth.py +209,Login not allowed at this time,Přihlášení není povoleno v tuto dobu DocType: DocType,Permissions Settings,Nastavení oprávnění @@ -953,7 +953,7 @@ apps/frappe/frappe/core/doctype/user/user.js +45,Refreshing...,Obnovuji... DocType: Event,Starts on,Začíná DocType: Workflow State,th,th sites/assets/js/desk.min.js +576,Create a new {0},Nově Vytvořit: {0} -sites/assets/js/desk.min.js +931,Report {0},Zpráva {0} +sites/assets/js/desk.min.js +931,Report {0},Report {0} sites/assets/js/desk.min.js +931,Open {0},Otevřít {0} DocType: Workflow State,ok-sign,ok-sign sites/assets/js/form.min.js +160,Duplicate,Duplikát @@ -1173,7 +1173,7 @@ apps/frappe/frappe/email/smtp.py +146,Could not connect to outgoing email server sites/assets/js/desk.min.js +593,Rich Text,Rich Text DocType: Workflow State,resize-full,resize-full DocType: Workflow State,off,off -apps/frappe/frappe/desk/query_report.py +26,Report {0} is disabled,Výpis: {0} je vypnutý +apps/frappe/frappe/desk/query_report.py +26,Report {0} is disabled,Report {0} je vypnutý apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +24,Recommended for inserting new records.,Doporučuje se pro vkládání nových záznamů. DocType: Block Module,Core,Jádro DocType: DocField,Set non-standard precision for a Float or Currency field,Nastavit nestandardní přesnost pro desetinná čísla nebo pole měny @@ -1287,7 +1287,7 @@ DocType: Email Account,SMTP Server,SMTP server DocType: Print Format,Print Format Help,Nápověda formát tisku 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.","Pakliže aktualizujete, zvolte prosím ""Přepsat"" jinak nebudou existující řádky vymazány." DocType: Event,Every Month,Měsíčně -DocType: Letter Head,Letter Head in HTML,Letter hlavička v HTML +DocType: Letter Head,Letter Head in HTML,Záhlaví dokumentu v HTML DocType: Web Form,Web Form,Webový formulář DocType: About Us Settings,Org History Heading,Záhlaví historie organizace DocType: Web Form,Web Page Link Text,Text odkazu www stránky @@ -1443,7 +1443,7 @@ DocType: Workflow Document State,Update Value,Aktualizovat hodnotu DocType: System Settings,Number Format,Formát čísel DocType: Custom Field,Insert After,Vložit za DocType: Social Login Keys,GitHub Client Secret,GitHub tajný klíč klienta -DocType: Report,Report Name,Název výpisu +DocType: Report,Report Name,Název reportu DocType: Email Alert,Save,Uložit DocType: Website Settings,Title Prefix,Title Prefix DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Upozornění a hromadné emaily budou zaslány z tohoto odchozího serveru. diff --git a/frappe/translations/da.csv b/frappe/translations/da.csv index d3ddf1d7cf..8c6526de29 100644 --- a/frappe/translations/da.csv +++ b/frappe/translations/da.csv @@ -208,7 +208,7 @@ apps/frappe/frappe/core/doctype/role/role.js +9,Edit Permissions,Rediger tillade sites/assets/js/form.min.js +213,Edit via Upload,Edit via Upload sites/assets/js/desk.min.js +921,"document type..., e.g. customer","dokumenttype ..., fx kunde" DocType: Country,Country Name,Land Navn -DocType: About Us Team Member,About Us Team Member,Om os Team Member +DocType: About Us Team Member,About Us Team Member,Om os Team medlem apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Tilladelser er indstillet på Roller og dokumenttyper (kaldet doctypes) ved at indstille rettigheder som Læs, Skriv, Opret, Slet, Send, Annuller, Tekst, Rapport, import, eksport, Print, E-mail og Set User Tilladelser." 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.","Bortset fra Rolle baserede Tilladelse Regler, kan du anvende User Tilladelser baseret på 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.","Disse tilladelser vil gælde for alle transaktioner, hvor den tilladte record er knyttet. For eksempel, hvis firma C tilsættes Bruger Tilladelser for bruger X, bruger X vil kun være i stand til at se transaktioner, som har selskab C som en sammenkædet værdi." @@ -284,7 +284,7 @@ DocType: Website Theme,Google Font (Text),Google Font (Tekst) apps/frappe/frappe/core/page/permission_manager/permission_manager.js +323,Did not remove,Ikke fjerne DocType: Report,Query,Forespørgsel DocType: DocType,Sort Order,Sorteringsrækkefølge -apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +130,'In List View' not allowed for type {0} in row {1},»I Listevisning 'ikke tilladt for type {0} i række {1} +apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +130,'In List View' not allowed for type {0} in row {1},'I Listevisning' ikke tilladt for type {0} i række {1} DocType: Custom Field,Select the label after which you want to insert new field.,"Vælg den etiket, hvorefter du vil indsætte nyt felt." DocType: Website Settings,Tweet will be shared via your user account (if specified),Tweet vil blive delt via din brugerkonto (hvis angivet) ,Document Share Report,Dokument Del Report @@ -439,7 +439,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} på {1} DocType: Customize Form,Enter Form Type,Indtast Form Type DocType: User,Send Password Update Notification,Send adgangskode Update Notification -apps/frappe/frappe/model/db_schema.py +247,"{0} field cannot be set as unique, as there are non-unique existing values","{0} felt kan ikke indstilles som enestående, da der er ikke-entydige eksisterende værdier" +apps/frappe/frappe/model/db_schema.py +247,"{0} field cannot be set as unique, as there are non-unique existing values","{0} felt kan ikke indstilles som unikt, da kolonnen indeholder dublerede værdier" sites/assets/js/desk.min.js +1016,Updated To New Version,Opdateret Til Ny version DocType: DocField,Depends On,Afhænger DocType: DocPerm,Additional Permissions,Yderligere Tilladelser @@ -589,7 +589,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +194,No User R apps/frappe/frappe/email/doctype/email_account/email_account_list.js +10,Default Inbox,Standard Indbakke sites/assets/js/desk.min.js +607,Make a new,Lav en ny DocType: Print Settings,PDF Page Size,PDF-sidestørrelse -sites/assets/js/desk.min.js +947,About,Cirka +sites/assets/js/desk.min.js +947,About,Om apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,"For updating, you can update only selective columns.","Til opdatering, kan du opdatere kun selektive kolonner." sites/assets/js/desk.min.js +965,Attach Document Print,Vedhæft dokument Print DocType: Social Login Keys,Google Client ID,Google Client ID @@ -859,7 +859,7 @@ DocType: Web Form,Success Message,Succes Message DocType: DocType,User Cannot Search,Bruger kan ikke søge DocType: DocPerm,Apply this rule if the User is the Owner,"Anvende denne regel, hvis brugeren er ejer" apps/frappe/frappe/desk/page/activity/activity.js +47,Build Report,Byg rapport -apps/frappe/frappe/model/rename_doc.py +91,"{0} {1} does not exist, select a new target to merge","{0} {1} eksisterer ikke, skal du vælge et nyt mål for at fusionere" +apps/frappe/frappe/model/rename_doc.py +91,"{0} {1} does not exist, select a new target to merge",{0} {1} eksisterer ikke. Vælg et nyt mål for sammenlægningen apps/frappe/frappe/core/page/user_permissions/user_permissions.py +66,Cannot set permission for DocType: {0} and Name: {1},Kan ikke sætte tilladelse til DocType: {0} og Navn: {1} DocType: Comment,Comment Doctype,Kommentar DOCTYPE sites/assets/js/desk.min.js +257,Verify Password,Bekræft Adgangskode @@ -871,7 +871,7 @@ apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +160, DocType: Patch Log,List of patches executed,Liste over patches henrettet DocType: Communication,Communication Medium,Kommunikation Medium DocType: Website Settings,Banner HTML,Banner HTML -apps/frappe/frappe/model/base_document.py +407,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} kan ikke være "{2}". Det bør være en af ​​"{3}" +apps/frappe/frappe/model/base_document.py +407,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} kan ikke være ""{2}"". Den skal være en af ​​""{3}""" apps/frappe/frappe/utils/data.py +486,{0} or {1},{0} eller {1} apps/frappe/frappe/core/doctype/user/user.py +157,Password Update,Password Opdatering DocType: Workflow State,trash,trash @@ -957,7 +957,7 @@ sites/assets/js/desk.min.js +931,Open {0},Åben {0} DocType: Workflow State,ok-sign,ok-tegn sites/assets/js/form.min.js +160,Duplicate,Dupliker apps/frappe/frappe/email/doctype/email_alert/email_alert.py +16,Please specify which value field must be checked,Angiv venligst hvilken værdi felt skal kontrolleres -apps/frappe/frappe/core/page/data_import_tool/exporter.py +69,"""Parent"" signifies the parent table in which this row must be added","Forælder" betegner den overordnede tabel i hvortil skal lægges denne række +apps/frappe/frappe/core/page/data_import_tool/exporter.py +69,"""Parent"" signifies the parent table in which this row must be added",'Forælder' betegner den overordnede tabel hvor denne række skal tilføjes DocType: Website Theme,Apply Style,Anvend Style sites/assets/js/form.min.js +291,Shared With,Delt med ,Modules Setup,Moduler Setup @@ -1088,7 +1088,7 @@ apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +156, DocType: Workflow State,font,font DocType: Customize Form Field,Is Custom Field,Er Tilpasset Field DocType: Workflow,"If checked, all other workflows become inactive.","Hvis markeret, alle andre arbejdsgange bliver inaktive." -apps/frappe/frappe/core/doctype/report/report.js +10,[Label]:[Field Type]/[Options]:[Width],[Label]: [Field Type] / [Options]: [Width] +apps/frappe/frappe/core/doctype/report/report.js +10,[Label]:[Field Type]/[Options]:[Width],[Navn]: [FeltType] / [Valg]: [Bredde] DocType: Workflow State,folder-close,mappe-close DocType: Email Alert Recipient,Optional: Alert will only be sent if value is a valid email id.,"Valgfrit: Alert vil kun blive sendt, hvis værdien er en gyldig e-mail-id." apps/frappe/frappe/model/rename_doc.py +100,{0} not allowed to be renamed,{0} tillades ikke omdøbes @@ -1133,7 +1133,7 @@ DocType: DocField,Attach,Vedhæft DocType: DocType,Permission Rules,Tilladelse Regler sites/assets/js/form.min.js +159,Links,Links apps/frappe/frappe/model/base_document.py +331,Value missing for,Værdi mangler for -apps/frappe/frappe/model/delete_doc.py +135,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Indsendt Record kan ikke slettes. +apps/frappe/frappe/model/delete_doc.py +135,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Den ønskede post kan ikke slettes. sites/assets/js/desk.min.js +919,new type of document,ny type dokument DocType: DocPerm,Read,Læs apps/frappe/frappe/templates/pages/update-password.html +10,Old Password,Gammel adgangskode @@ -1236,7 +1236,7 @@ apps/frappe/frappe/model/document.py +657,Incorrect value in row {0}: {1} must b apps/frappe/frappe/workflow/doctype/workflow/workflow.py +67,Submitted Document cannot be converted back to draft. Transition row {0},Indsendt Dokument kan ikke konverteres tilbage til at udarbejde. Overgang rækken {0} apps/frappe/frappe/print/page/print_format_builder/print_format_builder_start.html +2,Select an existing format to edit or start a new format.,Vælg en eksisterende format for at redigere eller starte et nyt format. apps/frappe/frappe/workflow/doctype/workflow/workflow.py +38,Created Custom Field {0} in {1},Oprettet Brugerdefineret felt {0} i {1} -apps/frappe/frappe/core/page/user_permissions/user_permissions.js +31,A user can be permitted to multiple records of the same DocType.,En bruger kan være tilladt at flere poster af samme DocType. +apps/frappe/frappe/core/page/user_permissions/user_permissions.js +31,A user can be permitted to multiple records of the same DocType.,En bruger kan have rettighed til flere poster med samme DocType. DocType: Workflow State,Home,Hjem DocType: Workflow State,question-sign,spørgsmål-tegn DocType: Email Account,Add Signature,Tilføj signatur @@ -1270,7 +1270,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +24 DocType: Print Format,Print Format,Print Format apps/frappe/frappe/config/website.py +28,User ID of a blog writer.,Bruger ID på en blog skribent. apps/frappe/frappe/config/setup.py +32,Set Permissions on Document Types and Roles,Set Tilladelser om dokumenttyper og roller -DocType: About Us Settings,"""Company History""","Selskabet History" +DocType: About Us Settings,"""Company History""",'Virksomhedshistorie' apps/frappe/frappe/permissions.py +283,Permission already set,Tilladelse allerede indstillet apps/frappe/frappe/desk/page/activity/activity_row.html +15,Commented on {0}: {1},Kommenterede den {0}: {1} apps/frappe/frappe/core/page/user_permissions/user_permissions.js +243,These restrictions will apply for Document Types where 'Apply User Permissions' is checked for the permission rule and a field with this value is present.,"Disse begrænsninger vil gælde for dokumenttyper, hvor 'Anvend User Tilladelser «er kontrolleret for tilladelse reglen og et felt med denne værdi er til stede." @@ -1307,7 +1307,7 @@ sites/assets/js/desk.min.js +903,Sorry! You are not permitted to view this page. DocType: Workflow State,bell,klokke sites/assets/js/form.min.js +290,Share this document with,Del dette dokument med apps/frappe/frappe/desk/page/activity/activity.js +152,Jun,Juni -apps/frappe/frappe/utils/nestedset.py +227,{0} {1} cannot be a leaf node as it has children,"{0} {1} kan ikke være en blad node, som det har børn" +apps/frappe/frappe/utils/nestedset.py +227,{0} {1} cannot be a leaf node as it has children,"{0} {1} kan ikke være en blad node, da den har undernoder" DocType: Feed,Info,Info apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Tak for din besked DocType: Website Settings,Home Page,Home Page @@ -1445,7 +1445,7 @@ DocType: Email Alert,Save,Gem DocType: Website Settings,Title Prefix,Titel Præfiks DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Bemærkninger og bulk mails vil blive sendt fra denne udgående server. DocType: Workflow State,cog,tandhjul -sites/assets/js/desk.min.js +608,{0} added,{0} tilsat +sites/assets/js/desk.min.js +608,{0} added,{0} tilføjet sites/assets/js/list.min.js +67,Not In,Ikke I DocType: Workflow State,star,stjerne apps/frappe/frappe/desk/page/activity/activity.js +153,Nov,November diff --git a/frappe/translations/de.csv b/frappe/translations/de.csv index 09edfd5e0f..1805aab9fb 100644 --- a/frappe/translations/de.csv +++ b/frappe/translations/de.csv @@ -1,5 +1,5 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +224,Press Esc to close,Zum Schließen Esc drücken -apps/frappe/frappe/desk/form/assign_to.py +127,"A new task, {0}, has been assigned to you by {1}. {2}","Eine neue Aufgabe, {0}, wurde Ihnen von {1} zugeordnet. {2}" +apps/frappe/frappe/desk/form/assign_to.py +127,"A new task, {0}, has been assigned to you by {1}. {2}",Eine neue Aufgabe {0} wurde Ihnen von {1} zugewiesen. {2} apps/frappe/frappe/desk/page/messages/messages_main.html +12,Post,Beitrag apps/frappe/frappe/config/setup.py +98,Rename many items by uploading a .csv file.,Benennen Sie viele Elemente durch Hochladen einer . CSV-Datei. DocType: Workflow State,pause,anhalten @@ -38,7 +38,7 @@ apps/frappe/frappe/model/document.py +659,Incorrect value: {0} must be {1} {2},F apps/frappe/frappe/config/setup.py +179,"Change field properties (hide, readonly, permission etc.)","Feldeigenschaften ändern (verstecken , Readonly , Genehmigung etc.)" DocType: Workflow State,lock,sperren apps/frappe/frappe/config/website.py +74,Settings for Contact Us Page.,Einstellungen für die Kontaktseite. -apps/frappe/frappe/core/doctype/user/user.py +490,Administrator Logged In,Administrator angemeldet In +apps/frappe/frappe/core/doctype/user/user.py +490,Administrator Logged In,Administrator hat sich angemeldet DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontaktmöglichkeiten, wie „Verkaufsanfrage, Support-Anfrage“ usw., jede in einer neuen Zeile oder durch Kommas getrennt." sites/assets/js/editor.min.js +155,Insert,Insert sites/assets/js/desk.min.js +598,Select {0},{0} auswählen @@ -80,7 +80,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +61,"Insert After DocType: Workflow State,circle-arrow-up,Kreis-Pfeil-nach-oben sites/assets/js/desk.min.js +859,Uploading...,lade hoch... DocType: Workflow State,italic,kursiv -apps/frappe/frappe/core/doctype/doctype/doctype.py +404,{0}: Cannot set Import without Create,{0}: Kann nicht ohne Import eingestellt erstellen +apps/frappe/frappe/core/doctype/doctype/doctype.py +404,{0}: Cannot set Import without Create,{0}: Kann nicht auf IMPORT eingestellt werden ohne ERSTELLEN DocType: Comment,Post Topic,Thema veröffentlichen apps/frappe/frappe/print/page/print_format_builder/print_format_builder_column_selector.html +2,Widths can be set in px or %.,Breiten in Pixel oder% eingestellt werden. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,"Berechtigungen erhalten Sie auf Benutzer , basierend auf welche Rollen sie zugeordnet sind, aufgebracht." @@ -122,7 +122,7 @@ DocType: Workflow,Defines workflow states and rules for a document.,Definiert Wo DocType: DocType,Show this field as title,Zeigen Sie dieses Feld als Titel apps/frappe/frappe/model/db_schema.py +447,Fieldname {0} cannot have special characters like {1},Feldname {0} kann nicht Sonderzeichen wie {1} apps/frappe/frappe/model/document.py +390,Error: Document has been modified after you have opened it,"Fehler: Dokument wurde geändert, nachdem Sie es geöffnet haben" -apps/frappe/frappe/core/doctype/doctype/doctype.py +425,{0}: Cannot set Assign Submit if not Submittable,{0}: Kann nicht eingestellt Assign Absenden wenn nicht Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +425,{0}: Cannot set Assign Submit if not Submittable,"{0}: Kann nicht als ALS VERSAND MARKIEREN eingestellt werden, wenn nicht versendbar" DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/templates/pages/list.py +46,"Filtered by ""{0}""",Gefiltert "{0}" sites/assets/js/desk.min.js +1009,Message from {0},Nachricht von {0} @@ -247,7 +247,7 @@ DocType: Email Account,Notify if unreplied,"Benachrichtigen, wenn Unbeantwortete DocType: DocType,Fields,Felder DocType: System Settings,Your organization name and address for the email footer.,Ihre Organisation Name und Anschrift für die E-Mail-Footer. apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +15,Parent Table,Parent Table -apps/frappe/frappe/website/doctype/website_settings/website_settings.py +38,{0} in row {1} cannot have both URL and child items,{0} in Zeile {1} kann nicht sowohl die URL und Kind Produkte haben +apps/frappe/frappe/website/doctype/website_settings/website_settings.py +38,{0} in row {1} cannot have both URL and child items,{0} in Zeile {1} kann nicht sowohl die URL als auch Unterpunkte haben apps/frappe/frappe/utils/nestedset.py +194,Root {0} cannot be deleted,Wurzel {0} kann nicht gelöscht werden apps/frappe/frappe/website/doctype/blog_post/blog_post.py +162,No comments yet,Noch keine Kommentare apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +120,Both DocType and Name required,Sowohl DocType und Name erforderlich @@ -262,7 +262,7 @@ apps/frappe/frappe/config/setup.py +19,User Roles,Benutzerrollen DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Property Setter überschreibt einen Standard-Dokumententyp oder eine Feldeigenschaft apps/frappe/frappe/core/doctype/user/user.py +333,Cannot Update: Incorrect / Expired Link.,Kann nicht aktualisieren : Falsche / Expired -Link. DocType: DocField,Set Only Once,Nur einmal festgelegt -apps/frappe/frappe/core/doctype/doctype/doctype.py +431,{0}: Cannot set import as {1} is not importable,{0}: Kann Import als {1} ist nicht importierbar nicht gesetzt +apps/frappe/frappe/core/doctype/doctype/doctype.py +431,{0}: Cannot set import as {1} is not importable,"{0}: Kann nicht auf IMPORT eingestellt werden, da {1} nicht importierbar ist" DocType: Top Bar Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd apps/frappe/frappe/desk/query_report.py +19,You don't have access to Report: {0},Sie haben keine Zugriffsrechte für den Bericht: {0} @@ -303,7 +303,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +55,Option 1,Opti sites/assets/js/editor.min.js +107,Number list,Anzahl Liste DocType: DocShare,Everyone,Jeder DocType: Workflow State,backward,zurück -apps/frappe/frappe/core/doctype/doctype/doctype.py +378,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Nur eine Regel mit der gleichen Rolle, Niveau und erlaubt {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +378,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Nur eine Regel mit der gleichen Funktion, Ebene und {1} erlaubt" apps/frappe/frappe/config/setup.py +79,Set numbering series for transactions.,Stellen Sie die Nummerierung Serie für Transaktionen. DocType: Email Account,POP3 Server,POP3-Server DocType: User,Last IP,Letzte IP @@ -384,12 +384,12 @@ 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,Markieren Sie das Feld als Pflicht DocType: User,Google User ID,Google Benutzer-ID apps/frappe/frappe/desk/form/utils.py +66,This method can only be used to create a Comment,"Diese Methode kann nur verwendet werden, um einen Kommentar zu erstellen" -apps/frappe/frappe/config/setup.py +195,Add custom forms.,Fügen Sie benutzerdefinierte Formulare. +apps/frappe/frappe/config/setup.py +195,Add custom forms.,Benutzerdefinierte Formulare hinzufügen. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,The system provides many pre-defined roles. You can add new roles to set finer permissions.,"Das System bietet viele vordefinierte Rollen . Sie können neue Aufgaben hinzufügen , um feinere Berechtigungen festgelegt ." DocType: Country,Geo,Geo DocType: Blog Category,Blog Category,Blog-Kategorie DocType: User,Roles HTML,Rollen HTML -apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +109,All customizations will be removed. Please confirm.,Alle Anpassungen werden entfernt. Bitte bestätigen Sie diese Aktion +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +109,All customizations will be removed. Please confirm.,Alle Anpassungen werden entfernt. Bitte bestätigen. DocType: Page,Page HTML,HTML-Seite DocType: Web Page,Header,Kopfzeile sites/assets/js/desk.min.js +622,Unknown Column: {0},Unbekannte Spalte: {0} @@ -407,7 +407,7 @@ apps/frappe/frappe/desk/form/assign_to.py +114,"The task {0}, that you assigned DocType: User,Modules Access,Modules Zugang DocType: Print Format,Print Format Type,Druckformattyp sites/assets/js/desk.min.js +936,Open Source Applications for the Web,Open Source-Anwendungen für das Web -DocType: Website Theme,"Add the name of a ""Google Web Font"" e.g. ""Open Sans""",Fügen Sie den Namen eines "Google Web Font" zB "Open Sans" +DocType: Website Theme,"Add the name of a ""Google Web Font"" e.g. ""Open Sans""","Bezeichnung einer ""Google Web Schriftart"" hinzufügen, z. B. ""Open Sans""" DocType: DocType,Hide Toolbar,Symbolleiste ausblenden DocType: Email Account,SMTP Settings for outgoing emails,SMTP-Einstellungen für ausgehende E-Mails apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +125,Import Failed,Import fehlgeschlagen @@ -439,7 +439,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,Formulartyp eingeben DocType: User,Send Password Update Notification,Senden Sie Passwort-Update-Mitteilung -apps/frappe/frappe/model/db_schema.py +247,"{0} field cannot be set as unique, as there are non-unique existing values","Feld {0} kann nicht als einmalige eingestellt werden, da es nicht eindeutige vorhandene Werte" +apps/frappe/frappe/model/db_schema.py +247,"{0} field cannot be set as unique, as there are non-unique existing values","Feld {0} kann nicht als eindeutig eingestellt werden, da es nicht-eindeutige Werte gibt" sites/assets/js/desk.min.js +1016,Updated To New Version,"Aktualisiert, um neue Version" DocType: DocField,Depends On,Hängt davon ab DocType: DocPerm,Additional Permissions,Zusätzliche Berechtigungen @@ -561,7 +561,7 @@ apps/frappe/frappe/templates/includes/login/login.js +124,Invalid Login,Ungülti DocType: Communication,Phone No.,Telefonnr. DocType: Workflow State,fire,feuern DocType: Workflow State,picture,Bild -apps/frappe/frappe/core/page/user_permissions/user_permissions.js +301,Add A New Restriction,Fügen Sie eine neue Beschränkung +apps/frappe/frappe/core/page/user_permissions/user_permissions.js +301,Add A New Restriction,Eine neue Einschränkung hinzufügen DocType: Workflow Transition,Next State,Nächster Status sites/assets/js/editor.min.js +119,Align Left (Ctrl/Cmd+L),Linksbündig (Strg / Cmd + L) DocType: User,Block Modules,Block-Module @@ -618,7 +618,7 @@ sites/assets/js/desk.min.js +257,Enter your password,Geben Sie Ihr Passwort apps/frappe/frappe/core/doctype/doctype/doctype.py +296,Fold must come before a Section Break,Falten Sie müssen vor einer Section Break kommen apps/frappe/frappe/core/doctype/user/user.py +383,Not allowed to reset the password of {0},"Nicht erlaubt , das Passwort zurückzusetzen {0}" DocType: Workflow State,hand-down,Pfeil-nach-unten -apps/frappe/frappe/core/doctype/doctype/doctype.py +397,{0}: Cannot set Cancel without Submit,"{0}: kann nicht eingestellt werden , ohne Absenden Abbrechen" +apps/frappe/frappe/core/doctype/doctype/doctype.py +397,{0}: Cannot set Cancel without Submit,{0}: Abbruch ohne Versand kann nicht eingestellt werden DocType: Website Theme,Theme,Thema DocType: DocType,Is Submittable,Ist einreichbar apps/frappe/frappe/custom/doctype/property_setter/property_setter.js +7,Value for a check field can be either 0 or 1,Wert für einen Check Feld kann entweder 0 oder 1 sein @@ -799,7 +799,7 @@ DocType: Workflow State,flag,kennzeichnen DocType: Web Page,Text Align,Text ausrichten DocType: Contact Us Settings,Forward To Email Address,Weiterleiten an E-Mail -Adresse apps/frappe/frappe/core/doctype/doctype/doctype.py +78,Title field must be a valid fieldname,Titelfeld muss ein gültiger Feldname sein -DocType: Communication,Archived,Archivierte +DocType: Communication,Archived,Archiviert DocType: System Settings,Session Expiry in Hours e.g. 06:00,Sitzungsende in Stunden z.B. 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).","Sobald Sie dies eingestellt haben, werden die Benutzer nur Zugriff auf Dokumente (zB Blog Post) haben , wo der Link existiert (zB Blogger)." apps/frappe/frappe/utils/csvutils.py +33,Unable to open attached file. Please try again.,Kann nicht angehängte Datei zu öffnen. Bitte versuchen Sie es erneut . @@ -998,7 +998,7 @@ DocType: System Settings,Session Expiry,Sitzungsende DocType: Workflow State,ban-circle,ban-circle DocType: Event,Desk,Schreibtisch 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).,Eine SELECT-Abfrage schreiben. Das Ergebnis wird nicht ausgelagert (alle Daten werden in einem Rutsch gesendet). -DocType: Email Account,Attachment Limit (MB),Begrenzung Anhangsgrösse(MB) +DocType: Email Account,Attachment Limit (MB),Limit Anhangsgröße (MB) sites/assets/js/form.min.js +199,Ctrl + Down,Ctrl + Down DocType: User,User Defaults,Profil Defaults DocType: Workflow State,chevron-down,Chevron-nach-unten @@ -1014,7 +1014,7 @@ DocType: Comment,Comment Type,Kommentarart apps/frappe/frappe/config/setup.py +8,Users,Benutzer DocType: Email Account,Signature,Unterschrift apps/frappe/frappe/config/website.py +84,"Enter keys to enable login via Facebook, Google, GitHub.","Geben Sie Tasten Login über Facebook , Google, GitHub zu ermöglichen." -sites/assets/js/list.min.js +69,Add a tag,Add einen tag +sites/assets/js/list.min.js +69,Add a tag,Eine Markierung hinzufügen sites/assets/js/desk.min.js +561,Please attach a file first.,Fügen Sie zuerst eine Datei hinzu. apps/frappe/frappe/model/naming.py +156,"There were some errors setting the name, please contact the administrator","Es gab einige Fehler Setzen Sie den Namen, kontaktieren Sie bitte den Administrator" DocType: Website Slideshow Item,Website Slideshow Item,Webseite Diaschau Artikel @@ -1092,7 +1092,7 @@ DocType: Workflow,"If checked, all other workflows become inactive.","Wenn aktiv apps/frappe/frappe/core/doctype/report/report.js +10,[Label]:[Field Type]/[Options]:[Width],[Label]:[Field Type]/[Options]:[Width] DocType: Workflow State,folder-close,geschlossener Ordner DocType: Email Alert Recipient,Optional: Alert will only be sent if value is a valid email id.,"Optional: Alarm wird nur gesendet werden, wenn der Wert eine gültige E-Mail-Adresse." -apps/frappe/frappe/model/rename_doc.py +100,{0} not allowed to be renamed,"{0} nicht erlaubt, muss umbenannt werden" +apps/frappe/frappe/model/rename_doc.py +100,{0} not allowed to be renamed,{0} darf nicht umbenannt werden DocType: Custom Script,Custom Script,Benutzerdefiniertes Skript sites/assets/js/desk.min.js +622,Assigned To,zugewiesen an apps/frappe/frappe/core/doctype/user/user.py +166,Verify Your Account,Überprüfen Sie Ihr Konto @@ -1100,7 +1100,7 @@ DocType: Workflow Transition,Action,Aktion apps/frappe/frappe/core/page/data_import_tool/exporter.py +231,Info:,Info: DocType: Custom Field,Permission Level,Berechtigungsstufe DocType: User,Send Notifications for Transactions I Follow,Senden Sie Benachrichtigungen für Transaktionen Ich Folgen -apps/frappe/frappe/core/doctype/doctype/doctype.py +400,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Kann nicht eingestellt Senden , Abbrechen Amend ohne Bewertung" +apps/frappe/frappe/core/doctype/doctype/doctype.py +400,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Kann nicht auf VERSAND, ABBRUCH, GEÄNDERT eingestellt werden ohne SCHREIBEN" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Setup> Benutzer apps/frappe/frappe/templates/emails/password_reset.html +6,Thank you,Danke sites/assets/js/form.min.js +182,Saving,Sparen @@ -1140,7 +1140,7 @@ DocType: DocPerm,Read,Lesen apps/frappe/frappe/templates/pages/update-password.html +10,Old Password,Altes Passwort apps/frappe/frappe/website/doctype/blog_post/blog_post.py +97,Posts by {0},Beiträge von {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Um Spalten zu formatieren, geben Sie die Spaltenbeschriftungen in der Abfrage ein." -apps/frappe/frappe/core/doctype/doctype/doctype.py +427,{0}: Cannot set Assign Amend if not Submittable,{0}: Kann nicht eingestellt Assign Amend wenn nicht Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +427,{0}: Cannot set Assign Amend if not Submittable,"{0}: Kann nicht als ALS GEÄNDERT MARKIEREN eingestellt werden, wenn nicht versendbar" apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Rolle bearbeiten Berechtigungen DocType: Social Login Keys,Social Login Keys,Social -Login Keys DocType: Comment,Comment Date,Kommentardatum @@ -1152,7 +1152,7 @@ DocType: DocType,Child Tables are shown as a Grid in other DocTypes.,Untergeordn DocType: Website Settings,"If checked, the Home page will be the default Item Group for the website.","Wenn aktiviert, wird die Startseite zur Standardartikelgruppe für die Website." DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Beschreibung für die Auflistungsseite, im Klartext, nur ein paar Zeilen. (max. 140 Zeichen)" sites/assets/js/desk.min.js +947,Forums,Foren -apps/frappe/frappe/core/page/user_permissions/user_permissions.js +297,Add A User Restriction,Hinzufügen eines Benutzers Restriction +apps/frappe/frappe/core/page/user_permissions/user_permissions.js +297,Add A User Restriction,Eine Benützereinschränkung hinzufügen DocType: DocType,Name Case,Name in Großbuchstaben sites/assets/js/form.min.js +278,Shared with everyone,Mit allen geteilt apps/frappe/frappe/model/base_document.py +327,Data missing in table,In der Tabelle fehlen Daten @@ -1345,7 +1345,7 @@ apps/frappe/frappe/config/setup.py +115,Add / Manage Email Accounts.,Hinzufügen DocType: Blog Category,Published,Veröffentlicht apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email,Vielen Dank für Ihre E-Mail DocType: DocField,Small Text,Wenig Text -apps/frappe/frappe/core/doctype/user/user.py +481,Administrator accessed {0} on {1} via IP Address {2}.,Administrator abgerufen {0} um {1} via IP-Adresse {2}. +apps/frappe/frappe/core/doctype/user/user.py +481,Administrator accessed {0} on {1} via IP Address {2}.,Administrator hat auf {0} über {1} zugegriffen mit IP-Adresse {2}. apps/frappe/frappe/core/doctype/doctype/doctype.py +267,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"Optionen 'Dynamic Link' Feldtyp muss an einen anderen Link-Feld mit Optionen wie ""DocType"" zeigen" DocType: About Us Settings,Team Members Heading,Teammitglieder Kopfzeile DocType: DocField,Do not allow user to change after set the first time,"Lassen Sie keine Benutzer zu ändern, nachdem das erste Mal gesetzt" @@ -1389,7 +1389,7 @@ DocType: Print Settings,Send Print as PDF,Senden Drucken als PDF DocType: Workflow Transition,Allowed,Erlaubt apps/frappe/frappe/core/doctype/doctype/doctype.py +291,There can be only one Fold in a form,Es darf nur ein Fold in einem Formular zulässig apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Ungültige Startseite -apps/frappe/frappe/core/doctype/doctype/doctype.py +390,{0}: Permission at level 0 must be set before higher levels are set,{0} : Permission auf der Ebene 0 muss vor höheren Ebenen eingestellt sind +apps/frappe/frappe/core/doctype/doctype/doctype.py +390,{0}: Permission at level 0 must be set before higher levels are set,{0} : Die Erlaubnis für Ebene 0 muss gesetzt werden bevor höhere Ebenen eingestellt werden können DocType: Website Settings,Home Page is Products,Startseite zeigt Produkte apps/frappe/frappe/desk/doctype/todo/todo.py +21,Assignment closed by {0},Zuordnung von geschlossen {0} sites/assets/js/desk.min.js +926,Calculate,Berechnen @@ -1416,7 +1416,7 @@ apps/frappe/frappe/core/doctype/user/user.py +235,User {0} cannot be renamed,Ben apps/frappe/frappe/website/doctype/website_settings/website_settings.js +17,Exported,Exportierte DocType: DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON Liste der Dokumentenarten zur Anwendung von Benutzerrechten. Sofern Leer, werden alle verknüpften Dokumentenarten zur Zuordnung der Benutzerrechte herangezogen." DocType: Report,Ref DocType,Referenz-Dokumententyp -apps/frappe/frappe/core/doctype/doctype/doctype.py +402,{0}: Cannot set Amend without Cancel,{0}: Kann nicht eingestellt Amend ohne Abbrechen +apps/frappe/frappe/core/doctype/doctype/doctype.py +402,{0}: Cannot set Amend without Cancel,{0}: Geändert kann nicht eingestellt werden ohne Abbruch sites/assets/js/form.min.js +260,Full Page,Ganzseite DocType: DocType,Is Child Table,Ist untergeordnete Tabelle apps/frappe/frappe/utils/csvutils.py +123,{0} must be one of {1},{0} muss ein von {1} sein diff --git a/frappe/translations/fa.csv b/frappe/translations/fa.csv index a2710406c4..cddb29872c 100644 --- a/frappe/translations/fa.csv +++ b/frappe/translations/fa.csv @@ -864,7 +864,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.py +66,Cannot set DocType: Comment,Comment Doctype,نظر DOCTYPE sites/assets/js/desk.min.js +257,Verify Password,تائید رمز عبور apps/frappe/frappe/core/page/modules_setup/modules_setup.js +55,There were errors,خطاهایی وجود دارد -apps/frappe/frappe/desk/doctype/todo/todo.js +22,Close,نزدیک +apps/frappe/frappe/desk/doctype/todo/todo.js +22,Close,ببند apps/frappe/frappe/model/document.py +414,Cannot change docstatus from 0 to 2,آیا می docstatus از 0 تا 2 تغییر نمی apps/frappe/frappe/core/doctype/doctype/doctype.py +245,Options must be a valid DocType for field {0} in row {1},گزینه باید DOCTYPE معتبر برای درست {0} در ردیف شود {1} apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +160,Edit Properties,ویرایش ویژگیها @@ -943,7 +943,7 @@ sites/assets/js/desk.min.js +608,Added {0} ({1}),اضافه شده {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 می تواند از عوض نمی شوند {0} به {1} در ردیف {2} apps/frappe/frappe/core/doctype/doctype/doctype.py +308,Search Fields should contain valid fieldnames,زمینه جستجو باید fieldnames معتبر apps/frappe/frappe/core/doctype/user/user.js +321,Role Permissions,مجوز های نقش -sites/assets/js/form.min.js +290,Can Read,آیا می توانم به عنوان خوانده شده +sites/assets/js/form.min.js +290,Can Read,خوانش پذیر DocType: Standard Reply,Response,پاسخ sites/assets/js/form.min.js +290,Can Share,می توانید به اشتراک بگذارید apps/frappe/frappe/email/smtp.py +37,Invalid recipient address,آدرس گیرنده نامعتبر @@ -1145,7 +1145,7 @@ DocType: Social Login Keys,Social Login Keys,اجتماعی ورود به کلی DocType: Comment,Comment Date,نظر تاریخ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +54,Remove all customizations?,حذف تمام سفارشی؟ DocType: Website Slideshow,Slideshow Name,نام نمایش به صورت اسلاید -sites/assets/js/form.min.js +182,Cancelling,لغو +sites/assets/js/form.min.js +182,Cancelling,در حال لغو DocType: DocType,Allow Rename,اجازه تغییر نام DocType: DocType,Child Tables are shown as a Grid in other DocTypes.,جداول کودک به عنوان یک شبکه در دیگر DocTypes نشان داده شده است. DocType: Website Settings,"If checked, the Home page will be the default Item Group for the website.",در صورت انتخاب، صفحه اصلی خواهد بود که به طور پیش فرض گروه مورد برای وب سایت. @@ -1249,7 +1249,7 @@ DocType: Web Form,Breadcrumbs,پودرهای سوخاری apps/frappe/frappe/core/doctype/doctype/doctype.py +373,If Owner,اگر مالک apps/frappe/frappe/website/doctype/web_form/web_form.py +28,You need to be logged in to access this {0}.,شما باید به سیستم وارد شوید برای دسترسی به این {0}. 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 نظرات اضافه کنید +apps/frappe/frappe/core/doctype/comment/comment.py +39,Cannot add more than 50 comments,نمی‌توان بیشتر از ۵۰ دیدگاه افزود DocType: Website Settings,Top Bar Items,موارد بالا نوار DocType: Print Settings,Print Settings,تنظیمات چاپ DocType: DocType,Max Attachments,حداکثر فایل های پیوست @@ -1264,7 +1264,7 @@ DocType: Workflow State,resize-horizontal,تغییر اندازه-افقی DocType: Communication,Content,مقدار DocType: Web Form,Go to this url after completing the form.,برو به این آدرس پس از تکمیل فرم. DocType: Custom Field,Document,سند -DocType: DocField,Code,رمز +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,چاپ فرمت @@ -1352,7 +1352,7 @@ DocType: Email Account,Port,بندر DocType: Print Format,Arial,با Arial 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.,محتوای بیشتر برای پایین صفحه. diff --git a/frappe/translations/fi.csv b/frappe/translations/fi.csv index 486fe8ef76..4f0c60dd49 100644 --- a/frappe/translations/fi.csv +++ b/frappe/translations/fi.csv @@ -150,7 +150,7 @@ sites/assets/js/desk.min.js +265,Another transaction is blocking this one. Pleas DocType: Property Setter,Field Name,Kentän nimi sites/assets/js/desk.min.js +771,or,tai sites/assets/js/desk.min.js +925,module name...,moduulin nimi ... -apps/frappe/frappe/templates/generators/web_form.html +267,Continue,Jatkaa +apps/frappe/frappe/templates/generators/web_form.html +267,Continue,Jatka DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,todistus DocType: User,Tile,Laatta @@ -497,7 +497,7 @@ DocType: Website Settings,Address and other legal information you may want to pu sites/assets/js/list.min.js +104,Starred By Me,Tähdellä By Me apps/frappe/frappe/core/page/permission_manager/permission_manager.js +48,Select Document Type,Valitse Document Type apps/frappe/frappe/utils/nestedset.py +201,Cannot delete {0} as it has child nodes,"Voi poistaa {0}, koska se on lapsen solmut" -apps/frappe/frappe/templates/includes/list/filters.html +19,clear,kirkas +apps/frappe/frappe/templates/includes/list/filters.html +19,clear,tyhjennä apps/frappe/frappe/desk/doctype/event/event.py +28,Every day events should finish on the same day.,Joka päivä tapahtumia pitäisi päättyä samana päivänä. DocType: Communication,User Tags,Käyttäjä Tunnisteet DocType: Workflow State,download-alt,download-alt @@ -589,7 +589,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +194,No User R apps/frappe/frappe/email/doctype/email_account/email_account_list.js +10,Default Inbox,Oletus Saapuneet sites/assets/js/desk.min.js +607,Make a new,Tee uusi DocType: Print Settings,PDF Page Size,PDF Page Size -sites/assets/js/desk.min.js +947,About,Noin +sites/assets/js/desk.min.js +947,About,Tietoa meistä apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,"For updating, you can update only selective columns.","Päivitykseen, voit päivittää vain valittuja sarakkeita." sites/assets/js/desk.min.js +965,Attach Document Print,Liitä Document Tulosta DocType: Social Login Keys,Google Client ID,Google Client ID @@ -605,7 +605,7 @@ DocType: Communication,On,Päällä DocType: User,Set New Password,Set New Password DocType: User,Github User ID,Github käyttäjätunnus apps/frappe/frappe/core/page/user_permissions/user_permissions.js +246,If Document Type,Jos Document Type -DocType: Communication,Chat,Jutella +DocType: Communication,Chat,Chat apps/frappe/frappe/core/doctype/doctype/doctype.py +230,Fieldname {0} appears multiple times in rows {1},Fieldname {0} ilmestyy useita kertoja riveissä {1} DocType: Workflow State,arrow-down,arrow-down sites/assets/js/desk.min.js +874,Collapse,Romahdus @@ -742,7 +742,7 @@ apps/frappe/frappe/core/doctype/report/report.py +29,Only Administrator allowed sites/assets/js/form.min.js +182,Updating,Päivittäminen sites/assets/js/desk.min.js +965,Select Attachments,Valitse Liitteet sites/assets/js/form.min.js +291,Attach File,Liitä tiedosto -apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you,Uusi tili on luotu sinulle +apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you,Sinulle on luotu uusi käyttäjätunnus apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,Salasana päivitysilmoitus DocType: DocPerm,User Permission DocTypes,Käyttäjä Käyttöoikeus doctypes sites/assets/js/desk.min.js +641,New Name,Uusi nimi @@ -1048,7 +1048,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +61,Append To ca DocType: User,Github Username,Github Käyttäjätunnus DocType: Web Page,Title / headline of your page,Otsikko / otsikko sivusi DocType: DocType,Plugin,Plugin -sites/assets/js/desk.min.js +977,Add Attachments,Lisää Liitteet +sites/assets/js/desk.min.js +977,Add Attachments,Lisää liitteitä DocType: Workflow State,signal,signaali DocType: DocType,Show Print First,Show Tulosta Ensimmäinen DocType: Print Settings,Monochrome,Yksivärinen @@ -1352,7 +1352,7 @@ DocType: Email Account,Port,Portti DocType: Print Format,Arial,Arial DocType: Website Slideshow,Slideshow like display for the website,Diaesitys kuten näyttö verkkosivuilla sites/assets/js/editor.min.js +121,Center (Ctrl/Cmd+E),Centerin (Ctrl / Cmd + E) -apps/frappe/frappe/sessions.py +28,Cache Cleared,Cache Cleared +apps/frappe/frappe/sessions.py +28,Cache Cleared,Välimuisti tyhjennetty apps/frappe/frappe/core/doctype/user/user.py +73,User with System Manager Role should always have User Type: System User,Käyttäjälle System Manager Rooli pitäisi aina olla Käyttäjä Tyyppi: System User DocType: DocPerm,Export,Vienti DocType: About Us Settings,More content for the bottom of the page.,Enemmän sisältöä sivun alareunassa. diff --git a/frappe/translations/fr.csv b/frappe/translations/fr.csv index e2c3b5adc0..a63d18bb92 100644 --- a/frappe/translations/fr.csv +++ b/frappe/translations/fr.csv @@ -84,7 +84,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +404,{0}: Cannot set Import w DocType: Comment,Post Topic,Message Sujet apps/frappe/frappe/print/page/print_format_builder/print_format_builder_column_selector.html +2,Widths can be set in px or %.,Les largeurs peuvent être réglés en px ou%. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Autorisations se appliqués sur les utilisateurs en fonction de ce Rôles ils sont affectés. -sites/assets/js/desk.min.js +986,You are not allowed to send emails related to this document,Mettez sur le site Web +sites/assets/js/desk.min.js +986,You are not allowed to send emails related to this document,Vous n'êtes pas autorisé d'envoyer un email en relation avec ce document apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Vous n'êtes pas autorisé à supprimer un site Web thème Standard apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +176,Example,Exemple DocType: Workflow State,gift,cadeau @@ -365,7 +365,7 @@ apps/frappe/frappe/model/document.py +150,No permission to {0} {1} {2},Pas de pe apps/frappe/frappe/permissions.py +225,Not allowed to access {0} with {1} = {2},Non autorisé à l'accès {0} avec {1} = {2} apps/frappe/frappe/templates/emails/print_link.html +2,View this in your browser,Regardez cela dans votre navigateur DocType: DocType,Search Fields,Champs de recherche -sites/assets/js/desk.min.js +988,Email sent to {0},entrer une valeur +sites/assets/js/desk.min.js +988,Email sent to {0},Email envoyé à {0} DocType: Event,Event,Événement sites/assets/js/desk.min.js +997,"On {0}, {1} wrote:","Sur {0}, {1} a écrit:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +80,Cannot delete standard field. You can hide it if you want,Vous ne pouvez pas supprimer champ standard. Vous pouvez cacher si vous voulez @@ -440,7 +440,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} sur {1} DocType: Customize Form,Enter Form Type,Entrez le type de formulaire DocType: User,Send Password Update Notification,Envoyer le mot de passe de mise à jour de notification -apps/frappe/frappe/model/db_schema.py +247,"{0} field cannot be set as unique, as there are non-unique existing values","Champ {0} ne peut pas être défini comme unique, comme il ya des valeurs existantes non-uniques" +apps/frappe/frappe/model/db_schema.py +247,"{0} field cannot be set as unique, as there are non-unique existing values",Champ {0} ne peut pas être défini comme unique car il ya des valeurs existantes non-uniques sites/assets/js/desk.min.js +1016,Updated To New Version,Mise à jour vers la nouvelle version DocType: DocField,Depends On,Dépend de DocType: DocPerm,Additional Permissions,autorisations supplémentaires @@ -647,7 +647,7 @@ DocType: DocField,Mandatory,Obligatoire apps/frappe/frappe/core/doctype/doctype/doctype.py +361,{0}: No basic permissions set,{0} : Non autorisations ensemble de base apps/frappe/frappe/utils/backups.py +142,Download link for your backup will be emailed on the following email address: {0},Le lien de téléchargement pour votre sauvegarde sera envoyé sur l'adresse email suivante: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Signification de soumettre, annuler, de modifier" -apps/frappe/frappe/desk/doctype/todo/todo_list.js +7,To Do,Choses à faire +apps/frappe/frappe/desk/doctype/todo/todo_list.js +7,To Do,Tâche à faire sites/assets/js/editor.min.js +94,Paragraph,Paragraphe apps/frappe/frappe/core/page/user_permissions/user_permissions.js +133,Any existing permission will be deleted / overwritten.,Toute autorisation existante sera supprimée / écrasée. apps/frappe/frappe/desk/doctype/todo/todo.py +17,Assigned to {0}: {1},Assigné à {0}: {1} @@ -696,7 +696,7 @@ DocType: Communication,Sender,Expéditeur DocType: Web Page,Description for search engine optimization.,Description pour l'optimisation des moteurs de recherche. apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +21,Download Blank Template,Télécharger Blank Template DocType: DocField,In Filter,Dans filtre -DocType: Website Theme,Footer Color,Pied de couleur +DocType: Website Theme,Footer Color,Couleur de pied de page DocType: Web Page,"Page to show on the website ",Page à afficher sur le site Web sites/assets/js/desk.min.js +264,You have been logged out,Vous avez été déconnecté @@ -1061,7 +1061,7 @@ DocType: Website Theme,Top Bar Text Color,Top Bar couleur du texte apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +367,Remove Section,Retirer Section sites/assets/js/desk.min.js +521,Invalid Email: {0},S'il vous plaît entrer le titre ! apps/frappe/frappe/desk/doctype/event/event.py +20,Event end must be after start,Fin de l'événement doit être après le début -apps/frappe/frappe/templates/includes/sidebar.html +7,Back,Arrière +apps/frappe/frappe/templates/includes/sidebar.html +7,Back,Retour apps/frappe/frappe/desk/query_report.py +22,You don't have permission to get a report on: {0},Vous ne avez pas la permission d'obtenir un rapport sur: {0} sites/assets/js/desk.min.js +579,Advanced Search,Recherche avancée apps/frappe/frappe/core/doctype/user/user.py +390,Password reset instructions have been sent to your email,Instructions de réinitialisation de mot de passe ont été envoyés à votre adresse email @@ -1072,7 +1072,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18 apps/frappe/frappe/core/doctype/doctype/doctype.py +36,{0} not allowed in name,{0} n'est pas autorisé dans le nom DocType: Workflow State,circle-arrow-left,cercle flèche gauche apps/frappe/frappe/sessions.py +109,Redis cache server not running. Please contact Administrator / Tech support,Redis serveur de cache ne fonctionne pas. Se il vous plaît contacter l'administrateur / support technique -sites/assets/js/desk.min.js +918,Make a new record,Faire un nouveau record +sites/assets/js/desk.min.js +918,Make a new record,Faire un nouveau enregistrement DocType: Currency,Fraction,Fraction sites/assets/js/desk.min.js +550,Select from existing attachments,Choisissez parmi les pièces jointes existantes DocType: Custom Field,Field Description,Champ Description @@ -1269,7 +1269,7 @@ DocType: Communication,Content,Teneur DocType: Web Form,Go to this url after completing the form.,Aller à cette url après remplir le formulaire. DocType: Custom Field,Document,Document DocType: DocField,Code,Code -DocType: Website Theme,Footer Text Color,Pied de la couleur du texte +DocType: Website Theme,Footer Text Color,Couleur du texte du pied de page 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.","Autorisations au niveau 0 sont les autorisations de niveau document, ce est à dire qu'ils sont primaires pour l'accès au document." DocType: Print Format,Print Format,Format d'impression apps/frappe/frappe/config/website.py +28,User ID of a blog writer.,ID de l'utilisateur d'un écrivain blog. @@ -1303,7 +1303,7 @@ DocType: DocPerm,Role and Level,Rôle et le niveau apps/frappe/frappe/desk/moduleview.py +31,Custom Reports,Rapports personnalisés DocType: Website Script,Website Script,Script site web apps/frappe/frappe/config/setup.py +147,Customized HTML Templates for printing transactions.,Modèles HTML personnalisés pour les opérations d'impression. -apps/frappe/frappe/desk/form/utils.py +103,No further records,Pas d'autres enregistrements +apps/frappe/frappe/desk/form/utils.py +103,No further records,Pas d'autres dossier DocType: DocField,Long Text,Texte long apps/frappe/frappe/core/page/data_import_tool/importer.py +36,Please do not change the rows above {0},S'il vous plaît ne pas modifier les lignes ci-dessus {0} sites/assets/js/desk.min.js +947,(Ctrl + G),(Ctrl + G) @@ -1456,7 +1456,7 @@ apps/frappe/frappe/desk/page/activity/activity.js +153,Nov,Novembre apps/frappe/frappe/core/doctype/doctype/doctype.py +256,Max width for type Currency is 100px in row {0},Largeur maximale pour le type devise est 100px en ligne {0} apps/frappe/frappe/config/website.py +13,Content web page.,Contenu de page Web. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Ajouter un nouveau rôle -apps/frappe/frappe/templates/includes/login/login.js +125,Oops! Something went wrong,Oups! Oups. Quelque chose n'as pas fonctionné +apps/frappe/frappe/templates/includes/login/login.js +125,Oops! Something went wrong,Oups! Oups. Quelque chose a mal tourné DocType: Blog Settings,Blog Introduction,Introduction du blog DocType: User,Email Settings,Paramètres de messagerie apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} pas un État valide @@ -1483,7 +1483,7 @@ apps/frappe/frappe/config/setup.py +39,Set Permissions per User,Définir les aut DocType: Print Format,Edit Format,Modifier le format apps/frappe/frappe/templates/emails/new_user.html +6,Complete Registration,Terminer l'inscription apps/frappe/frappe/website/doctype/website_theme/website_theme.py +40,Top Bar Color and Text Color are the same. They should be have good contrast to be readable.,Top Bar couleur et la couleur du texte sont les mêmes. Ils devraient être présentent un bon contraste pour être lisible. -apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,You can only upload upto 5000 records in one go. (may be less in some cases),Vous ne pouvez charger jusqu'à 5000 dossiers en une seule fois. (Peut-être moins dans certains cas) +apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,You can only upload upto 5000 records in one go. (may be less in some cases),Vous pouvez selement charger jusqu'à 5000 dossiers en une seule fois. (Peut-être moins dans certains cas) DocType: Print Settings,Print Style,Style d'impression DocType: DocPerm,Import,Importer apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +125,Row {0}: Not allowed to enable Allow on Submit for standard fields,Row {0}: Non autorisé pour permettre Autoriser sur Soumettre pour champs standard diff --git a/frappe/translations/hi.csv b/frappe/translations/hi.csv index cf36bcecaf..fabdf6983e 100644 --- a/frappe/translations/hi.csv +++ b/frappe/translations/hi.csv @@ -225,7 +225,7 @@ DocType: Print Settings,Font Size,फॉन्ट का आकार sites/assets/js/desk.min.js +947,Unread Messages,अपठित संदेशों DocType: System Settings,Disable Standard Email Footer,मानक ईमेल पाद अक्षम DocType: Workflow State,facetime-video,FaceTime वीडियो -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +164,1 comment,1 टिप्पणी +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,मात्रा नीचे @@ -239,7 +239,7 @@ apps/frappe/frappe/config/setup.py +47,Check which Documents are readable by a U DocType: User,Reset Password Key,पासवर्ड को रीसेट DocType: Email Account,Enable Auto Reply,ऑटो जवाब सक्षम करें apps/frappe/frappe/core/doctype/scheduler_log/scheduler_log_list.js +7,Not Seen,नहीं देखा -DocType: Workflow State,zoom-in,ज़ूम +DocType: Workflow State,zoom-in,आकार वर्धन apps/frappe/frappe/email/bulk.py +131,Unsubscribe from this list,इस सूची से सदस्यता समाप्त apps/frappe/frappe/desk/page/activity/activity.js +153,Sep,सितम्बर DocType: DocField,Width,चौडाई @@ -314,7 +314,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +29,Fieldname not sites/assets/js/desk.min.js +622,Last Updated By,अंतिम बार अद्यतित DocType: Website Theme,Background Color,पृष्ठभूमि रंग sites/assets/js/desk.min.js +989,There were errors while sending email. Please try again.,ईमेल भेजने के दौरान त्रुटि . पुन: प्रयास करें . -DocType: Web Page,0 is highest,0 सर्वोच्च है +DocType: Web Page,0 is highest,० सबसे ज्यादा है apps/frappe/frappe/website/doctype/web_form/web_form.py +31,You don't have the permissions to access this document,आप इस दस्तावेज़ का उपयोग करने की अनुमति नहीं है DocType: Email Alert,Value Changed,मान बदल गया apps/frappe/frappe/model/base_document.py +272,Duplicate name {0} {1},डुप्लिकेट नाम {0} {1} @@ -715,14 +715,13 @@ DocType: Workflow State,fast-backward,तेजी से पिछड़े DocType: DocShare,DocShare,DocShare DocType: Report,Add Total Row,कुल पंक्ति जोड़ें apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +19,For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment.,आप रद्द करने और INV004 में संशोधन उदाहरण के लिए यदि यह एक नया दस्तावेज़ INV004-1 बन जाएगा। यह आप प्रत्येक संशोधन का ट्रैक रखने में मदद करता है। -DocType: Workflow Document State,0 - Draft; 1 - Submitted; 2 - Cancelled,0 - ड्राफ्ट; 1 - प्रस्तुत; 2 - रद्द +DocType: Workflow Document State,0 - Draft; 1 - Submitted; 2 - Cancelled,० - ड्राफ्ट; १ - प्रस्तुत; २ - रद्द apps/frappe/frappe/core/page/modules_setup/modules_setup.js +5,Show or Hide Modules,दिखाएं या छिपाएं मॉड्यूल DocType: File Data,Attached To 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","एक मुद्रा = [?] उदाहरण के लिए एक डालर के लिए अंश - = 100 प्रतिशत" +For e.g. 1 USD = 100 Cent","१ मुद्रा = [?] अंश, उदाहरण के लिए १ डालर = १०० सेन्ट" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +370,Add New Permission Rule,नई अनुमति नियम जोड़ें sites/assets/js/desk.min.js +598,You can use wildcard %,आप वाइल्डकार्ड% का उपयोग कर सकते हैं apps/frappe/frappe/desk/page/activity/activity.js +152,Mar,मार्च diff --git a/frappe/translations/hr.csv b/frappe/translations/hr.csv index df30bef525..32c8e8858d 100644 --- a/frappe/translations/hr.csv +++ b/frappe/translations/hr.csv @@ -1216,7 +1216,7 @@ DocType: Workflow State,star-empty,zvijezda-prazna DocType: Workflow State,ok,u redu DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,"Ove vrijednosti će se automatski ažuriraju u prometu, te će također biti korisno ograničiti dozvole za ovog korisnika o transakcijama koje sadrže te vrijednosti." apps/frappe/frappe/desk/page/applications/application_row.html +15,Publisher,Izdavač -sites/assets/js/desk.min.js +846,Browse,Brstiti +sites/assets/js/desk.min.js +846,Browse,Pretraži apps/frappe/frappe/templates/includes/comments/comments.py +52,View it in your browser,Pogledaj ga u svom pregledniku apps/frappe/frappe/templates/pages/update-password.html +1,Reset Password,Reset Password DocType: Workflow State,hand-left,ruka-lijeva diff --git a/frappe/translations/it.csv b/frappe/translations/it.csv index afcab64af4..d4682c506b 100644 --- a/frappe/translations/it.csv +++ b/frappe/translations/it.csv @@ -43,7 +43,7 @@ DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query sites/assets/js/editor.min.js +155,Insert,Inserire sites/assets/js/desk.min.js +598,Select {0},Selezionare {0} DocType: Feed,Color,Colore -DocType: Workflow State,indent-right,trattino-destra +DocType: Workflow State,indent-right,rientro-destra sites/assets/js/desk.min.js +846,Web Link,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.","Modifica dei record rinfusa consigliato attraverso l'importazione, o capire il formato di importazione." 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.","Oltre a System Manager, ruoli con Imposta permessi giusti possono impostare le autorizzazioni per altri utenti per questo tipo di documento." @@ -62,7 +62,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +16,Help for U DocType: Communication,Visit,Visita apps/frappe/frappe/desk/page/applications/application_row.html +7,Install,Installare DocType: Website Settings,Twitter Share via,Twitter Condividi via -apps/frappe/frappe/config/website.py +33,Embed image slideshows in website pages.,Includi slideshow di immagin nellae pagine del sito. +apps/frappe/frappe/config/website.py +33,Embed image slideshows in website pages.,Includi slideshow di immagin nelle pagine del sito. DocType: Workflow Action,Workflow Action Name,Flusso di lavoro Nome Azione apps/frappe/frappe/core/doctype/doctype/doctype.py +130,DocType can not be merged,DocType non può essere fusa DocType: Web Form Field,Fieldtype,FieldType @@ -74,7 +74,7 @@ DocType: Website Theme,lowercase,minuscolo DocType: Print Format,Helvetica,Helvetica DocType: Note,Everyone can read,Tutti possono leggere apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +25,Please specify user,Si prega di specificare l'utente -DocType: Email Unsubscribe,Email Unsubscribe,Email Cancellati +DocType: Email Unsubscribe,Email Unsubscribe,Cancella sottoscrizione E-mail DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Selezionare un'immagine di circa larghezza 150px con sfondo trasparente per i migliori risultati. apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +61,"Insert After field '{0}' mentioned in Custom Field '{1}', does not exist","Inserire Dopo campo ' {0} ' menzionato nel Campo personalizzato ' {1} ' , non esiste" DocType: Workflow State,circle-arrow-up,cerchio-freccia-up @@ -92,7 +92,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +180,Reqd,Req apps/frappe/frappe/core/doctype/communication/communication.py +124,Unable to find attachment {0},Impossibile trovare attaccamento {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +168,Assign a permission level to the field.,Assegnare un livello di autorizzazione per il campo. apps/frappe/frappe/config/setup.py +72,Show / Hide Modules,Mostra / Nascondi Moduli -apps/frappe/frappe/core/doctype/report/report.js +37,Disable Report,Disabilita Relazione +apps/frappe/frappe/core/doctype/report/report.js +37,Disable Report,Disabilita Report DocType: Report,JavaScript Format: frappe.query_reports['REPORTNAME'] = {},Formato JavaScript: frappe.query_reports ['REPORTNAME'] = {} DocType: Version,Doclist JSON,Doclist JSON DocType: Workflow State,chevron-up,chevron-up @@ -127,7 +127,7 @@ DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/templates/pages/list.py +46,"Filtered by ""{0}""",Filtrato per "{0}" sites/assets/js/desk.min.js +1009,Message from {0},Messaggio da {0} DocType: Blog Settings,Blog Title,Titolo Blog -apps/frappe/frappe/print/page/print_format_builder/print_format_builder_layout.html +12,Edit to set heading,Modifica per impostare voce +apps/frappe/frappe/print/page/print_format_builder/print_format_builder_layout.html +12,Edit to set heading,Modifica per impostare titolo DocType: About Us Settings,Team Members,Membri del Team sites/assets/js/desk.min.js +553,Please attach a file or set a URL,Si prega di allegare un file o impostare un URL DocType: DocField,Permissions,Permessi di Scrittura @@ -136,7 +136,7 @@ DocType: Workflow State,plus-sign,segno più DocType: Event,Public,Pubblico apps/frappe/frappe/email/smtp.py +134,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Non Account Email setup. Si prega di creare un nuovo account e-mail da Impostazioni> E-mail> Account e-mail DocType: Block Module,Block Module,Block Modulo -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Esporta modello +apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Esporta Modello DocType: Block Module,Module,Modulo DocType: Email Alert,Send Alert On,Invia avviso in DocType: Web Form,Website URL,URL del sito web @@ -163,12 +163,12 @@ DocType: Email Account,e.g. smtp.gmail.com,ad esempio smtp.gmail.com apps/frappe/frappe/core/page/permission_manager/permission_manager.js +366,Add A New Rule,Aggiunge una nuova regola 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,Nome del tipo di documento (DOCTYPE) che si desidera questo campo per essere collegato. ad esempio clienti DocType: User,Roles Assigned,Ruoli assegnati -DocType: Top Bar Item,Parent Label,Parent Label +DocType: Top Bar Item,Parent Label,Etichetta superiore apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","La vostra ricerca è stato ricevuto. Vi risponderemo a breve. Se avete qualsiasi ulteriore informazione, si prega di rispondere a questa mail." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Le autorizzazioni vengono tradotti automaticamente report standard e Ricerche . DocType: Event,Repeat Till,Ripetere Fino DocType: Blogger,Will be used in url (usually first name).,Saranno utilizzati in url (solitamente nome). -apps/frappe/frappe/client.py +63,Can not edit Read Only fields,Non è possibile modificare Leggi solo i campi +apps/frappe/frappe/client.py +63,Can not edit Read Only fields,Non è possibile modificare. Campi sola lettura apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +460,Edit Heading,Modifica Intestazione DocType: File Data,File URL,URL del file apps/frappe/frappe/desk/doctype/event/event.py +68,Upcoming Events for Today,Prossimi eventi di oggi @@ -192,11 +192,11 @@ DocType: Version,Docname,docname apps/frappe/frappe/core/doctype/version/version.js +10,Version restored,versione restaurata DocType: Event Role,Event Role,Ruolo Evento sites/assets/js/editor.min.js +125,Indent (Tab),Rientro (Tab) -DocType: Workflow State,List,lista +DocType: Workflow State,List,Lista DocType: Page Role,Page Role,Pagina Ruolo apps/frappe/frappe/core/doctype/doctype/doctype.py +252,Field {0} in row {1} cannot be hidden and mandatory without default,"Il campo {0} in riga {1} non può essere nascosta e obbligatoria , senza di default" -DocType: System Settings,mm/dd/yyyy,gg / mm / aaaa -apps/frappe/frappe/email/doctype/email_account/email_account.py +266,Re:,Re: +DocType: System Settings,mm/dd/yyyy,gg/mm/aaaa +apps/frappe/frappe/email/doctype/email_account/email_account.py +266,Re:,R: DocType: Currency,"Sub-currency. For e.g. ""Cent""","Sub-valuta. Per esempio, "Cent"" DocType: Letter Head,Check this to make this the default letter head in all prints,Seleziona per usare questa intestazione in tutte le stampe DocType: Print Format,Server,Server @@ -216,7 +216,7 @@ DocType: Property Setter,ID (name) of the entity whose property is to be set,ID DocType: Website Settings,Website Theme Image Link,Sito web dell'associazione Tema immagine DocType: Website Settings,Sidebar Items,articoli Sidebar DocType: Workflow State,exclamation-sign,esclamazione-sign -DocType: Website Theme,Hide Sidebar,Nascondere la barra laterale +DocType: Website Theme,Hide Sidebar,Nascondere la Barra Laterale sites/assets/js/list.min.js +100,Gantt,Gantt DocType: About Us Settings,Introduce your company to the website visitor.,Introdurre la vostra azienda per il visitatore del sito. apps/frappe/frappe/print/doctype/print_format/print_format.js +14,Please duplicate this to make changes,Si prega di duplicare questo per fare modifiche @@ -226,7 +226,7 @@ sites/assets/js/desk.min.js +947,Unread Messages,Messaggi non letti DocType: System Settings,Disable Standard Email Footer,Disabilitare standard Email Footer DocType: Workflow State,facetime-video,FaceTime-video apps/frappe/frappe/website/doctype/blog_post/blog_post.py +164,1 comment,1 commento -DocType: Email Alert,Days Before,Giorni prima +DocType: Email Alert,Days Before,Giorni Prima apps/frappe/frappe/website/doctype/website_settings/website_settings.js +72,Select a Banner Image first.,Selezionare un Banner Immagine prima. DocType: Workflow State,volume-down,volume-giù DocType: Email Account,Send Notification to,Invia notifica a @@ -255,9 +255,9 @@ apps/frappe/frappe/model/document.py +424,Cannot change docstatus from 1 to 0,Im DocType: Workflow Transition,Defines actions on states and the next step and allowed roles.,Definisce le azioni su stati e il passo successivo e ruoli consentiti. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +11,"As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User.","Come best practice , non assegnare lo stesso insieme di regole permesso di ruoli diversi. Invece , impostare più ruoli allo stesso utente ." DocType: Web Form,Message to be displayed on successful completion,Messaggio da visualizzare sul completamento -DocType: Website Settings,Footer Items,elementi Piè di pagina +DocType: Website Settings,Footer Items,Elementi Piè di Pagina sites/assets/js/desk.min.js +407,Menu,Menu -DocType: DefaultValue,DefaultValue,ValorePredefinito +DocType: DefaultValue,DefaultValue,Valore Predefinito apps/frappe/frappe/config/setup.py +19,User Roles,ruoli degli utenti DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Property Setter prevale un DOCTYPE standard o immobili Campo apps/frappe/frappe/core/doctype/user/user.py +333,Cannot Update: Incorrect / Expired Link.,Impossibile Aggiornare : Link Errato / Scaduto. @@ -275,7 +275,7 @@ DocType: Contact Us Settings,Introductory information for the Contact Us Page,In DocType: Workflow State,thumbs-down,pollice in giù apps/frappe/frappe/core/doctype/page/page.py +32,Not in Developer Mode,Non in modalità sviluppatore DocType: Comment,Comment Time,Tempo Commento -DocType: Workflow State,indent-left,trattino-sinistra +DocType: Workflow State,indent-left,rientro-sinistra DocType: Currency,Currency Name,Nome Valuta DocType: Report,Javascript,Javascript DocType: File Data,Content Hash,Hash contenuto @@ -292,7 +292,7 @@ DocType: User,Last Login,Ultimo Login apps/frappe/frappe/core/doctype/doctype/doctype.py +316,Fieldname is required in row {0},Fieldname è richiesto in riga {0} apps/frappe/frappe/print/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Colonna DocType: Custom Field,Adds a custom field to a DocType,Aggiunge un campo personalizzato a un DOCTYPE -sites/assets/js/editor.min.js +103,Bold (Ctrl/Cmd+B),Bold (Ctrl / Cmd + B) +sites/assets/js/editor.min.js +103,Bold (Ctrl/Cmd+B),Grassetto (Ctrl / Cmd + B) apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,Carica e sincronizzazione sites/assets/js/form.min.js +280,Shared with {0},Condiviso con {0} DocType: DocType,Single Types have only one record no tables associated. Values are stored in tabSingles,Tipi di singole hanno un solo record senza tabelle associate . I valori vengono memorizzati in tabSingles @@ -309,7 +309,7 @@ DocType: Email Account,POP3 Server,POP3 Server DocType: User,Last IP,Ultimo IP apps/frappe/frappe/core/doctype/communication/communication.js +17,Add To,Aggiungere A DocType: DocPerm,Filter records based on User Permissions defined for a user,Filtrare i record sulla base di autorizzazioni utente definiti per un utente -sites/assets/js/editor.min.js +111,Insert picture (or just drag & drop),Inserire la foto (o semplicemente drag & drop) +sites/assets/js/editor.min.js +111,Insert picture (or just drag & drop),Inserire la foto (o semplicemente trascina) apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +29,Fieldname not set for Custom Field,Non Fieldname fissati per Campo personalizzato sites/assets/js/desk.min.js +622,Last Updated By,Ultimo aggiornamento Di DocType: Website Theme,Background Color,Colore Sfondo @@ -319,7 +319,7 @@ apps/frappe/frappe/website/doctype/web_form/web_form.py +31,You don't have the p DocType: Email Alert,Value Changed,Valore Cambiato apps/frappe/frappe/model/base_document.py +272,Duplicate name {0} {1},Duplicare nome {0} {1} DocType: Web Form Field,Web Form Field,Web Form Campo -apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +197,Hide field in Report Builder,Hide campo in report +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +197,Hide field in Report Builder,Nascondi campo in Report Builder apps/frappe/frappe/print/page/print_format_builder/print_format_builder_field.html +14,Edit HTML,Modifica HTML apps/frappe/frappe/core/page/permission_manager/permission_manager.js +494,Restore Original Permissions,Ripristina autorizzazioni originali DocType: DocField,Button,Pulsante @@ -342,10 +342,10 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Report cannot be set for apps/frappe/frappe/desk/page/activity/activity.js +152,Feb,Febbraio DocType: DocPerm,Role,Ruolo apps/frappe/frappe/utils/data.py +382,Cent,Centesimo -apps/frappe/frappe/config/setup.py +104,Manage uploaded files.,Gestire i file caricati . +apps/frappe/frappe/config/setup.py +104,Manage uploaded files.,Gestire i file caricati. apps/frappe/frappe/config/setup.py +163,"States for workflow (e.g. Draft, Approved, Cancelled).","Uniti per il flusso di lavoro ( ad esempio, Draft , Approvato , Annullato ) ." sites/assets/js/desk.min.js +608,Set Quantity,Set Quantità -,Data Import Tool,Dati Import Tool +,Data Import Tool,Strumento per Importare Dati apps/frappe/frappe/core/doctype/user/user.py +378,Registration Details Emailed.,Dettagli di registrazione ricevuta via email. DocType: Top Bar Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Link alla pagina che si desidera aprire. Lascia vuoto se si vuole fare un capogruppo. DocType: DocType,Is Single,È single @@ -404,13 +404,13 @@ apps/frappe/frappe/desk/query_report.py +76,Must specify a Query to run,Necessar apps/frappe/frappe/config/setup.py +66,"Language, Date and Time settings","Impostazioni di lingua , data e ora" DocType: User,Represents a User in the system.,Rappresenta un utente nel sistema. apps/frappe/frappe/desk/form/assign_to.py +114,"The task {0}, that you assigned to {1}, has been closed.","Il compito {0}, che è stato assegnato a {1}, è stato chiuso." -DocType: User,Modules Access,Access Modules +DocType: User,Modules Access,Accesso Moduli DocType: Print Format,Print Format Type,Stampa Tipo di formato sites/assets/js/desk.min.js +936,Open Source Applications for the Web,Applicazioni Open Source per il web DocType: Website Theme,"Add the name of a ""Google Web Font"" e.g. ""Open Sans""",Aggiungere il nome di un "Google Web Font" per esempio "Open Sans" -DocType: DocType,Hide Toolbar,Nascondi la Barra degli strumenti +DocType: DocType,Hide Toolbar,Nascondi la Barra degli Strumenti DocType: Email Account,SMTP Settings for outgoing emails,Impostazioni SMTP per le email in uscita -apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +125,Import Failed,Import non riuscita +apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +125,Import Failed,Importazione non riuscita apps/frappe/frappe/templates/emails/password_update.html +3,Your password has been updated. Here is your new password,La tua password è stata aggiornata. Ecco la nuova password DocType: Email Account,Auto Reply Message,Auto Reply Message DocType: Email Alert,Condition,Condizione @@ -465,7 +465,7 @@ apps/frappe/frappe/email/receive.py +53,Invalid Mail Server. Please rectify and DocType: DocField,"For Links, enter the DocType as range. For Select, enter list of Options, each on a new line.","Per i collegamenti, inserire il DOCTYPE come gamma. Per Seleziona, immettere l'elenco di opzioni, ciascuna su una nuova linea." DocType: Workflow State,film,pellicola -apps/frappe/frappe/model/db_query.py +285,No permission to read {0},Nessuna autorizzazione per leggere {0} +apps/frappe/frappe/model/db_query.py +285,No permission to read {0},Non autorizzato a leggere {0} apps/frappe/frappe/utils/nestedset.py +221,Multiple root nodes not allowed.,Nodi principali multipli non ammessi. sites/assets/js/desk.min.js +689,Get,Ottieni sites/assets/js/desk.min.js +206,Confirm,Confermare @@ -473,7 +473,7 @@ DocType: System Settings,yyyy-mm-dd,aaaa-mm-gg apps/frappe/frappe/email/doctype/email_account/email_account.py +37,Login Id is required,È richiesto ID di accesso DocType: Website Slideshow,Website Slideshow,Presentazione sito web DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Collegamento che è la home page del sito . Links standard (indice , login, prodotti , blog , su , contatto)" -sites/assets/js/editor.min.js +105,Bullet list,Bullet list +sites/assets/js/editor.min.js +105,Bullet list,Elenco puntato DocType: Website Settings,Banner Image,Immagine Banner DocType: Custom Field,Custom Field,Campo Personalizzato apps/frappe/frappe/email/doctype/email_alert/email_alert.py +13,Please specify which date field must be checked,Si prega di specificare quale campo data deve essere controllato @@ -481,7 +481,7 @@ DocType: DocPerm,Set User Permissions,Impostare le autorizzazioni utente DocType: Email Account,Email Account Name,Email Nome account apps/frappe/frappe/core/page/permission_manager/permission_manager.js +249,Select Document Types,Seleziona tipi di documenti DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""","ad esempio ""Support "","" vendite "","" Jerry Yang """ -DocType: User,Facebook User ID,Facebook User ID +DocType: User,Facebook User ID,Utente Facebook DocType: Workflow State,fast-forward,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.","Controllare le colonne per selezionare, trascinare per impostare ordine." DocType: Event,Every Day,Ogni Giorno @@ -489,10 +489,10 @@ apps/frappe/frappe/email/smtp.py +58,Please setup default Email Account from Set DocType: Workflow State,move,Mossa DocType: Web Form,Actions,Azioni DocType: Workflow State,align-justify,allineamento giustificare -DocType: User,Middle Name (Optional),Nome (facoltativo) +DocType: User,Middle Name (Optional),Secondo Nome (facoltativo) sites/assets/js/desk.min.js +605,No Results,Nessun risultato DocType: System Settings,Security,sicurezza -DocType: Currency,**Currency** Master,** ** Valuta Maestro +DocType: Currency,**Currency** Master,**Valuta** Principale DocType: Website Settings,Address and other legal information you may want to put in the footer.,Indirizzo e altre informazioni legali che si intende visualizzare nel piè di pagina. sites/assets/js/list.min.js +104,Starred By Me,Preferiti By Me apps/frappe/frappe/core/page/permission_manager/permission_manager.js +48,Select Document Type,Seleziona tipo di documento @@ -503,9 +503,9 @@ DocType: Communication,User Tags,Tags utente DocType: Workflow State,download-alt,download-alt DocType: Web Page,Main Section,Sezione principale apps/frappe/frappe/core/doctype/doctype/doctype.py +225,{0} not allowed in fieldname {1},{0} non consentito in fieldname {1} -DocType: Page,Icon,icona +DocType: Page,Icon,Icona DocType: Web Page,Content in markdown format that appears on the main side of your page,Contenuto sottolineato che appare sul lato principale della pagina -DocType: System Settings,dd/mm/yyyy,gg / mm / aaaa +DocType: System Settings,dd/mm/yyyy,gg/mm/aaaa DocType: Website Settings,"An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]","Icona con estensione .ico. 16 x 16 px. Genera con favicon generator. [favicon-generator.org]" DocType: Blog Settings,Blog Settings,Impostazioni Blog apps/frappe/frappe/templates/emails/new_user.html +8,You can also copy-paste this link in your browser,È possibile anche copiare e incollare questo link nel tuo browser @@ -513,7 +513,7 @@ DocType: Workflow State,bullhorn,megafono DocType: Social Login Keys,Facebook Client Secret,Facebook client Segreto DocType: Website Settings,Copyright,Copyright DocType: Social Login Keys,Google Client Secret,Google client Segreto -DocType: Website Settings,Hide Footer Signup,Hide Footer Iscrizione +DocType: Website Settings,Hide Footer Signup,Nascondi Iscrizione a Piè di pagina 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.,Scrivere un file Python nella stessa cartella in cui questo viene salvato e colonna di ritorno e risultato. DocType: DocType,Sort Field,Ordina campo 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.","Siamo molto dispiaciuti per questo, ma la pagina che stai cercando è manca (questo potrebbe essere a causa di un errore di battitura nell'indirizzo) o trasferiti." @@ -526,8 +526,8 @@ 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.,Aggiungere campi alle forme . apps/frappe/frappe/templates/pages/me.py +14,You need to be logged in to access this page.,È necessario il login per accedere a questa pagina. DocType: Workflow State,leaf,foglia -apps/frappe/frappe/config/desktop.py +60,Installer,Installer -sites/assets/js/editor.min.js +113,Insert Link,Inserisci collegamento +apps/frappe/frappe/config/desktop.py +60,Installer,Istalla +sites/assets/js/editor.min.js +113,Insert Link,Inserisci Collegamento DocType: Contact Us Settings,Query Options,Opzioni query DocType: Patch Log,Patch Log,Patch Log DocType: Communication,Sent or Received,Inviati o ricevuti @@ -547,12 +547,12 @@ apps/frappe/frappe/templates/pages/print.py +134,No {0} permission,No {0} permes DocType: Feed,Login,Entra DocType: System Settings,Enable Scheduled Jobs,Abilita lavori pianificati apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Note: -sites/assets/js/desk.min.js +593,Markdown,Riduione di prezzo +sites/assets/js/desk.min.js +593,Markdown,Riduzione Prezzo DocType: DocShare,Document Name,Documento Nome DocType: Comment,Comment By,Commento di DocType: Customize Form,Customize Form,Personalizzare modulo DocType: Currency,A symbol for this currency. For e.g. $,Un simbolo per questa valuta. Per esempio $ -sites/assets/js/desk.min.js +934,Frappe Framework,Quadro Frappe +sites/assets/js/desk.min.js +934,Frappe Framework,Frappe Framework apps/frappe/frappe/model/naming.py +162,Name of {0} cannot be {1},Nome {0} non può essere {1} apps/frappe/frappe/config/setup.py +74,Show or hide modules globally.,Mostrare o nascondere i moduli a livello globale . DocType: Workflow State,Success,Successo @@ -581,11 +581,11 @@ apps/frappe/frappe/permissions.py +228,Row,Riga DocType: Workflow State,Check,Seleziona apps/frappe/frappe/desk/page/activity/activity.js +152,Apr,Aprile apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +58,Fieldname which will be the DocType for this link field.,Fieldname che sarà il DocType per questo campo collegamento. -DocType: User,Email Signature,Firma Email +DocType: User,Email Signature,Firma E-mail DocType: Website Settings,Google Analytics ID,ID Google Analytics DocType: Website Theme,Link to your Bootstrap theme,Link al vostro tema Bootstrap sites/assets/js/desk.min.js +593,Edit as {0},Modifica come {0} -apps/frappe/frappe/core/page/user_permissions/user_permissions.js +194,No User Restrictions found.,No Restrizioni utente trovato. +apps/frappe/frappe/core/page/user_permissions/user_permissions.js +194,No User Restrictions found.,Nessuna Restrizione trovata per l'Utente. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +10,Default Inbox,Posta in arrivo predefinita sites/assets/js/desk.min.js +607,Make a new,Effettuare una nuova DocType: Print Settings,PDF Page Size,Formato pagina PDF @@ -604,7 +604,7 @@ DocType: Report,Query Report,Rapporto sulle query DocType: Communication,On,On DocType: User,Set New Password,Imposta nuova password DocType: User,Github User ID,Github ID utente -apps/frappe/frappe/core/page/user_permissions/user_permissions.js +246,If Document Type,Se Tipo di documento +apps/frappe/frappe/core/page/user_permissions/user_permissions.js +246,If Document Type,Se Tipo di Documento DocType: Communication,Chat,Chat apps/frappe/frappe/core/doctype/doctype/doctype.py +230,Fieldname {0} appears multiple times in rows {1},Fieldname {0} appare più volte nelle file {1} DocType: Workflow State,arrow-down,freccia verso il basso @@ -653,7 +653,7 @@ apps/frappe/frappe/desk/doctype/todo/todo.py +17,Assigned to {0}: {1},Assegnato DocType: DocField,Percent,Percentuale DocType: Workflow State,book,libro DocType: Website Settings,Landing Page,Pagina di destinazione -apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Nessun permessi impostati per questo criterio. +apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Permessi non impostati per questo criterio. apps/frappe/frappe/config/setup.py +120,Setup Email Alert based on various criteria.,Setup Email Alert basa su diversi criteri. apps/frappe/frappe/website/doctype/blog_post/blog_post.py +93,Posts filed under {0},Gli articoli archiviati in {0} DocType: Email Alert,Send alert if date matches this field's value,Invia avviso se la data coincide con il valore di questo campo @@ -664,7 +664,7 @@ DocType: Workflow State,thumbs-up,pollice in su sites/assets/js/desk.min.js +965,Add Reply,Aggiungi risposta DocType: DocPerm,DocPerm,PermessiDoc apps/frappe/frappe/core/doctype/doctype/doctype.py +277,Precision should be between 1 and 6,Precisione deve essere compresa tra 1 e 6 -DocType: About Us Team Member,Image Link,Immagine link +DocType: About Us Team Member,Image Link,Link Immagine DocType: Workflow State,step-backward,passo indietro apps/frappe/frappe/utils/boilerplate.py +228,{app_title},{ app_title } DocType: Email Account,Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. ,Utilizza l'ID e-mail citato in questo account come mittente per tutte le email inviate tramite questo account. @@ -689,13 +689,13 @@ sites/assets/js/desk.min.js +265,File size exceeded the maximum allowed size of apps/frappe/frappe/core/doctype/doctype/doctype.py +349,Enter at least one permission row,Inserire almeno una riga autorizzazione sites/assets/js/desk.min.js +622,Created On,Creato il DocType: Workflow State,align-center,allineare-center -sites/assets/js/form.min.js +290,Can Write,Può Scrivi +sites/assets/js/form.min.js +290,Can Write,Può Scrivere 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.","Alcuni documenti , come una fattura , non devono essere cambiati una volta finale . Lo stato finale di tali documenti è chiamata inoltrata . È possibile limitare le quali ruoli possono Submit ." DocType: Communication,Sender,Mittente DocType: Web Page,Description for search engine optimization.,Descrizione per l'ottimizzazione dei motori di ricerca. apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +21,Download Blank Template,Scarica Template Blank DocType: DocField,In Filter,In Filtro -DocType: Website Theme,Footer Color,Footer Colore +DocType: Website Theme,Footer Color,Colore Piè di Pagina DocType: Web Page,"Page to show on the website ",Pagina di mostrare sul sito sites/assets/js/desk.min.js +264,You have been logged out,Sei stato disconnesso @@ -703,19 +703,19 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.py +58,Cannot rem sites/assets/js/editor.min.js +115,Remove Link,Rimuovi collegamento apps/frappe/frappe/desk/page/activity/activity_row.html +11,Logged in,Collegato apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default Sending and Inbox,Predefinito Invio e Posta in arrivo -DocType: Print Settings,Letter,Lettere +DocType: Print Settings,Letter,Lettera apps/frappe/frappe/core/page/permission_manager/permission_manager.js +95,Reset Permissions for {0}?,Aggiorna Autorizzazioni per {0} ? apps/frappe/frappe/permissions.py +279,{0} {1} not found,{0} {1} non trovato apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +214,Show a description below the field,Mostra la descrizione sotto il campo DocType: Workflow State,align-left,allineamento a sinistra -DocType: User,Defaults,Predefiniti +DocType: User,Defaults,Valori Predefiniti sites/assets/js/desk.min.js +641,Merge with existing,Unisci con esistente DocType: User,Birth Date,Data di Nascita DocType: Workflow State,fast-backward,indietro veloce DocType: DocShare,DocShare,DocShare DocType: Report,Add Total Row,Aggiungere Riga Totale apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +19,For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment.,"Ad esempio, se si annulla ed emendare INV004 diventerà un nuovo INV004-1 documento. Questo aiuta a tenere traccia di ogni modifica." -DocType: Workflow Document State,0 - Draft; 1 - Submitted; 2 - Cancelled,0 - Progetto; 1 - Presentata; 2 - Annullato +DocType: Workflow Document State,0 - Draft; 1 - Submitted; 2 - Cancelled,0 - Bozza; 1 - Presentata; 2 - Annullato apps/frappe/frappe/core/page/modules_setup/modules_setup.js +5,Show or Hide Modules,Mostrare o nascondere i moduli DocType: File Data,Attached To DocType,Allega aDocType apps/frappe/frappe/desk/page/activity/activity.js +153,Aug,Agosto @@ -747,7 +747,7 @@ apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been crea apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,Password Notifica aggiornamenti DocType: DocPerm,User Permission DocTypes,DOCTYPE autorizzazioni utente sites/assets/js/desk.min.js +641,New Name,Nuovo Nome -sites/assets/js/form.min.js +199,Insert Above,Inserisci sopra +sites/assets/js/form.min.js +199,Insert Above,Inserisci Sopra sites/assets/js/list.min.js +21,Not Saved,Non salvato DocType: Custom Field,Default Value,Valore Predefinito sites/assets/js/desk.min.js +257,Verify,Verificare @@ -768,7 +768,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +91,Leave blank for ne apps/frappe/frappe/config/website.py +79,List of themes for Website.,Elenco dei temi per sito web. sites/assets/js/desk.min.js +947,Logout,Esci apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +26,Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles.,Le autorizzazioni a livelli più alti sono i permessi a livello di campo. Tutti i campi sono un set di autorizzazioni di livello contro di loro e le regole definite a che le autorizzazioni si applicano al campo. Ciò è utile nel caso in cui si desidera nascondere o rendere certo campo di sola lettura per determinati ruoli. -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +38,"If these instructions where not helpful, please add in your suggestions on GitHub Issues.","Se queste istruzioni se non disponibile, si prega di aggiungere nei vostri suggerimenti sulle questioni GitHub ." +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +38,"If these instructions where not helpful, please add in your suggestions on GitHub Issues.","Se queste istruzioni non bastassero, si prega di aggiungere i vostri suggerimenti nelle Issues di GitHub." DocType: Workflow State,bookmark,segnalibro DocType: Currency,Symbol,Simbolo apps/frappe/frappe/model/base_document.py +403,Row #{0}:,Row # {0}: @@ -778,7 +778,7 @@ DocType: DocType,Permissions Settings,Impostazioni delle autorizzazioni sites/assets/js/desk.min.js +931,{0} List,{0} Lista apps/frappe/frappe/desk/form/assign_to.py +39,Already in user's To Do list,Già dagli utenti di To Do list DocType: Email Account,Enable Outgoing,Abilita uscita -DocType: System Settings,Email Footer Address,Email Footer Indirizzo +DocType: System Settings,Email Footer Address,Indirizzo in calce per Email DocType: DocField,Text,Testo apps/frappe/frappe/config/setup.py +125,Standard replies to common queries.,Standard risponde a domande comuni. sites/assets/js/desk.min.js +947,Report an Issue,Segnala un problema @@ -808,20 +808,20 @@ sites/assets/js/form.min.js +182,Submitting,Invio apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +182,Custom HTML,HTML personalizzato DocType: Comment,Comment Docname,Commento Docname apps/frappe/frappe/core/page/permission_manager/permission_manager.js +54,Select Role,Scegliere Ruolo -apps/frappe/frappe/model/delete_doc.py +200,Deleted,Soppresso +apps/frappe/frappe/model/delete_doc.py +200,Deleted,Eliminato DocType: Workflow State,adjust,regolare DocType: Website Settings,Disable Customer Signup link in Login page,Disabilita Link Iscrizione Clienti nella pagina di Login apps/frappe/frappe/core/report/todo/todo.py +21,Assigned To/Owner,Assegnato a / proprietario DocType: Workflow State,arrow-left,freccia-sinistra apps/frappe/frappe/desk/page/applications/application_row.html +5,Installed,installato -DocType: Workflow State,fullscreen,fullscreen -DocType: Event,Ref Name,Rif. Nome +DocType: Workflow State,fullscreen,Schermo intero +DocType: Event,Ref Name,Nome Rif. DocType: Web Page,Center,Centro apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup > Autorizzazioni utente Gestione DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Rappresenta gli stati ammessi in un unico documento e il ruolo assegnato per cambiare lo stato. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +49,Refresh Form,Refresh Form DocType: DocField,Select,Selezionare -apps/frappe/frappe/utils/csvutils.py +25,File not attached,File non collegato +apps/frappe/frappe/utils/csvutils.py +25,File not attached,File non allegato DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.","Se si imposta questo, questo articolo verrà in una discesa sotto il genitore selezionato ." apps/frappe/frappe/model/db_query.py +393,Please select atleast 1 column from {0} to sort,Si prega di selezionare atleast colonna 1 da {0} per ordinare apps/frappe/frappe/templates/pages/print.py +160,No template found at path: {0},Nessun modello trovato nel percorso: {0} @@ -841,7 +841,7 @@ DocType: Workflow State,tint,tinta DocType: Workflow State,Style,Stile apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +55,e.g.:,ad esempio: apps/frappe/frappe/website/doctype/blog_post/blog_post.py +166,{0} comments,{0} commenti -DocType: Customize Form Field,Label and Type,Etichetta e Type +DocType: Customize Form Field,Label and Type,Etichetta e Tipo DocType: Workflow State,forward,inoltrare sites/assets/js/form.min.js +274,{0} edited this {1},{0} modificato questa {1} DocType: Web Page,Custom Javascript,personalizzato Javascript @@ -850,7 +850,7 @@ DocType: Website Settings,Sub-domain provided by erpnext.com,Sub-dominio fornito DocType: System Settings,dd-mm-yyyy,gg-mm-aaaa apps/frappe/frappe/desk/query_report.py +70,Must have report permission to access this report.,Deve avere relazione di permesso di accedere a questo rapporto. apps/frappe/frappe/desk/doctype/event/event.py +66,Daily Event Digest is sent for Calendar Events where reminders are set.,Coda di Evento Giornaliero è inviato per Eventi del calendario quando è impostata la notifica. -sites/assets/js/desk.min.js +947,View Website,Vedi sito web +sites/assets/js/desk.min.js +947,View Website,Vesta sito web DocType: Workflow State,remove,Rimuovere DocType: Email Account,If non standard port (e.g. 587),Se la porta non standard (ad esempio 587) sites/assets/js/desk.min.js +947,Reload,Ricaricare @@ -859,7 +859,7 @@ DocType: Bulk Email,Reference DocName,Riferimento DocName DocType: Web Form,Success Message,Successo Messaggio DocType: DocType,User Cannot Search,L'utente non può cercare DocType: DocPerm,Apply this rule if the User is the Owner,Applicare questa regola se l'utente è il proprietario -apps/frappe/frappe/desk/page/activity/activity.js +47,Build Report,costruire Rapporto +apps/frappe/frappe/desk/page/activity/activity.js +47,Build Report,Crea Report apps/frappe/frappe/model/rename_doc.py +91,"{0} {1} does not exist, select a new target to merge","{0} {1} non esiste , selezionare un nuovo obiettivo di unire" apps/frappe/frappe/core/page/user_permissions/user_permissions.py +66,Cannot set permission for DocType: {0} and Name: {1},Impossibile impostare il permesso per DocType : {0} e nome : {1} DocType: Comment,Comment Doctype,Commento Doctype @@ -868,7 +868,7 @@ apps/frappe/frappe/core/page/modules_setup/modules_setup.js +55,There were error apps/frappe/frappe/desk/doctype/todo/todo.js +22,Close,Chiudi apps/frappe/frappe/model/document.py +414,Cannot change docstatus from 0 to 2,Impossibile cambiare docstatus 0-2 apps/frappe/frappe/core/doctype/doctype/doctype.py +245,Options must be a valid DocType for field {0} in row {1},Opzioni necessario essere un DocType valido per il campo {0} in riga {1} -apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +160,Edit Properties,Modifica proprietà +apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +160,Edit Properties,Modifica Proprietà DocType: Patch Log,List of patches executed,Elenco di patch eseguita DocType: Communication,Communication Medium,Mezzo di comunicazione DocType: Website Settings,Banner HTML,Banner HTML @@ -885,7 +885,7 @@ apps/frappe/frappe/desk/form/assign_to.py +120,"The task {0}, that you assigned DocType: Blogger,Short Name,Nome breve DocType: Workflow State,magnet,magnete apps/frappe/frappe/geo/doctype/currency/currency.js +7,This Currency is disabled. Enable to use in transactions,Questa valuta è disabilitata . Attiva da utilizzare nelle transazioni -DocType: Contact Us Settings,"Default: ""Contact Us""","Predefinito: ""Contattaci """ +DocType: Contact Us Settings,"Default: ""Contact Us""","Predefinito: ""Contattaci""" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +378,"Level 0 is for document level permissions, higher levels for field level permissions.","Il livello 0 è per le autorizzazioni a livello di documento, i livelli più elevati per le autorizzazioni a livello di campo." DocType: Custom Script,Sample,Esempio DocType: Event,Every Week,Ogni Settimana @@ -923,17 +923,17 @@ DocType: Web Page,Show Title,Mostra titolo DocType: Property Setter,Property Type,Tipo di proprietà DocType: Workflow State,screenshot,screenshot apps/frappe/frappe/core/doctype/report/report.py +24,Only Administrator can save a standard report. Please rename and save.,Solo amministratore può salvare un report standard. Si prega di rinominare e salvare. -DocType: DocField,Data,Data -sites/assets/js/desk.min.js +622,Document Status,Stato documento +DocType: DocField,Data,Dati +sites/assets/js/desk.min.js +622,Document Status,Stato Documento DocType: Email Account,Login Id,ID di accesso apps/frappe/frappe/core/page/data_import_tool/importer.py +176,Not allowed to Import,Non è consentito importare apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +22,Permission Levels,Livelli di autorizzazione DocType: Workflow State,Warning,Attenzione -DocType: DocType,In Dialog,Nella finestra di dialogo +DocType: DocType,In Dialog,Nella finestra di Dialogo apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +142,Help,Aiuto DocType: User,Login Before,Accedi Prima -DocType: Web Page,Insert Style,Inserire Style -apps/frappe/frappe/desk/page/applications/applications.js +94,Application Installer,Application Installer +DocType: Web Page,Insert Style,Inserire Stile +apps/frappe/frappe/desk/page/applications/applications.js +94,Application Installer,Istalla Applicazione apps/frappe/frappe/core/page/user_permissions/user_permissions.js +246,Is,È DocType: Workflow State,info-sign,Info-sign DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Come dovrebbe essere formattata questa valuta? Se non impostato, userà valori predefiniti di sistema" @@ -946,10 +946,10 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +308,Search Fields should con apps/frappe/frappe/core/doctype/user/user.js +321,Role Permissions,Autorizzazioni di ruolo sites/assets/js/form.min.js +290,Can Read,Impossibile leggere DocType: Standard Reply,Response,Risposta -sites/assets/js/form.min.js +290,Can Share,Può Condividi +sites/assets/js/form.min.js +290,Can Share,Può Condividere apps/frappe/frappe/email/smtp.py +37,Invalid recipient address,Indirizzo del destinatario non valido DocType: Workflow State,step-forward,passo in avanti -apps/frappe/frappe/core/doctype/user/user.js +45,Refreshing...,Rinfrescante ... +apps/frappe/frappe/core/doctype/user/user.js +45,Refreshing...,Aggiornamento ... DocType: Event,Starts on,Inizia il DocType: Workflow State,th,th sites/assets/js/desk.min.js +576,Create a new {0},Creare un nuovo {0} @@ -958,24 +958,24 @@ sites/assets/js/desk.min.js +931,Open {0},Aperto {0} DocType: Workflow State,ok-sign,ok-sign sites/assets/js/form.min.js +160,Duplicate,Duplicare apps/frappe/frappe/email/doctype/email_alert/email_alert.py +16,Please specify which value field must be checked,Si prega di specificare quale campo valore deve essere controllato -apps/frappe/frappe/core/page/data_import_tool/exporter.py +69,"""Parent"" signifies the parent table in which this row must be added","""Parent"" indica la tabella padre in cui si deve aggiungere la riga" +apps/frappe/frappe/core/page/data_import_tool/exporter.py +69,"""Parent"" signifies the parent table in which this row must be added","""Padre"" indica la tabella padre in cui si deve aggiungere la riga" DocType: Website Theme,Apply Style,applica stile sites/assets/js/form.min.js +291,Shared With,Condiviso con -,Modules Setup,moduli di installazione +,Modules Setup,Impostazione Moduli apps/frappe/frappe/core/page/data_import_tool/exporter.py +230,Type:,Tipo: -apps/frappe/frappe/desk/moduleview.py +57,Module Not Found,Modulo non trovato -DocType: User,Location,posizione +apps/frappe/frappe/desk/moduleview.py +57,Module Not Found,Modulo Non Trovato +DocType: User,Location,Posizione ,Permitted Documents For User,Documenti consentito per l'uso apps/frappe/frappe/core/doctype/docshare/docshare.py +40,"You need to have ""Share"" permission","È necessario disporre di autorizzazioni ""Share""" sites/assets/js/form.min.js +213,Bulk Edit {0},Modifica globale {0} -DocType: Email Alert Recipient,Email Alert Recipient,E-mail destinatario Alert +DocType: Email Alert Recipient,Email Alert Recipient,Destinatario Email d'Avviso DocType: About Us Settings,Settings for the About Us Page,Impostazioni per la Chi Siamo apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +5,Select Type of Document to Download,Selezionare il tipo di documento da scaricare apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +185,Use the field to filter records,Utilizzare il campo per filtrare i record DocType: Email Account,Outlook.com,Outlook.com DocType: System Settings,Scheduler Last Event,Scheduler Ultimo evento DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Aggiungere ID Google Analytics : es. UA-89XXX57-1. Cerca aiuto su Google Analytics per altre informazioni. -DocType: Email Alert Recipient,"Expression, Optional","Expression, Optional" +DocType: Email Alert Recipient,"Expression, Optional","Espressione, Opzionale" apps/frappe/frappe/email/bulk.py +130,This email was sent to {0},Questa email è stata inviata a {0} DocType: Email Account,Check this to pull emails from your mailbox,Seleziona per scaricare la posta dal tuo account apps/frappe/frappe/model/document.py +427,Cannot edit cancelled document,Impossibile modificare documento annullato @@ -1013,17 +1013,17 @@ apps/frappe/frappe/model/base_document.py +432,Not allowed to change {0} after s DocType: Comment,Comment Type,Commento Type apps/frappe/frappe/config/setup.py +8,Users,Utenti DocType: Email Account,Signature,Firma -apps/frappe/frappe/config/website.py +84,"Enter keys to enable login via Facebook, Google, GitHub.","Invio per abilitare l'accesso via Facebook , Google , GitHub ." +apps/frappe/frappe/config/website.py +84,"Enter keys to enable login via Facebook, Google, GitHub.","Inserire chiavi per abilitare l'accesso via Facebook , Google , GitHub ." sites/assets/js/list.min.js +69,Add a tag,Aggiungi un tag sites/assets/js/desk.min.js +561,Please attach a file first.,Si prega di allegare un file. apps/frappe/frappe/model/naming.py +156,"There were some errors setting the name, please contact the administrator","Ci sono stati alcuni errori di impostazione del nome, si prega di contattare l'amministratore" DocType: Website Slideshow Item,Website Slideshow Item,Sito Slideshow articolo DocType: DocType,Title Case,Titolo Caso -DocType: Blog Post,Email Sent,Invia Mail +DocType: Blog Post,Email Sent,E-mail Inviata sites/assets/js/desk.min.js +965,Send As Email,Invia DocType: Website Theme,Link Color,Colore link apps/frappe/frappe/core/doctype/user/user.py +47,User {0} cannot be disabled,Utente {0} non può essere disattivato -apps/frappe/frappe/core/doctype/user/user.py +479,"Dear System Manager,","Caro System Manager," +apps/frappe/frappe/core/doctype/user/user.py +479,"Dear System Manager,","Gentile System Manager," sites/assets/js/form.min.js +182,Amending,Rettificativo sites/assets/js/desk.min.js +598,Dialog box to select a Link Value,Finestra di dialogo per selezionare un collegamento Valore DocType: Contact Us Settings,Send enquiries to this email address,Invia le richieste a questo indirizzo email @@ -1042,7 +1042,7 @@ DocType: DocPerm,Create,Crea DocType: About Us Settings,Org History,org Storia DocType: Workflow,Workflow Name,Nome flusso di lavoro DocType: Web Form,Allow Edit,Consenti Edit -apps/frappe/frappe/workflow/doctype/workflow/workflow.py +64,Cannot change state of Cancelled Document. Transition row {0},Impossibile modificare lo stato di Annullato documento . +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +64,Cannot change state of Cancelled Document. Transition row {0},Impossibile modificare lo stato di un Documento Annullato. Riga transizione {0} DocType: Workflow,"Rules for how states are transitions, like next state and which role is allowed to change state etc.","Regole per come gli stati sono transizioni, come prossimo stato e quale ruolo può cambiare stato ecc" apps/frappe/frappe/desk/form/save.py +21,{0} {1} already exists,{0} {1} esiste già apps/frappe/frappe/email/doctype/email_account/email_account.py +61,Append To can be one of {0},Aggiungere a può essere uno dei {0} @@ -1089,7 +1089,7 @@ apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +156, DocType: Workflow State,font,carattere DocType: Customize Form Field,Is Custom Field,È Campo personalizzato DocType: Workflow,"If checked, all other workflows become inactive.","Se selezionata, tutti gli altri flussi di lavoro diventano inattivi." -apps/frappe/frappe/core/doctype/report/report.js +10,[Label]:[Field Type]/[Options]:[Width],[Label]: [Tipo di campo] / [Opzioni]: [Larghezza] +apps/frappe/frappe/core/doctype/report/report.js +10,[Label]:[Field Type]/[Options]:[Width],[Etichetta]: [Tipo di campo] / [Opzioni]: [Larghezza] DocType: Workflow State,folder-close,cartella-close DocType: Email Alert Recipient,Optional: Alert will only be sent if value is a valid email id.,Optional: Alert sarà inviato solo se il valore è un id e-mail valido. apps/frappe/frappe/model/rename_doc.py +100,{0} not allowed to be renamed,{0} non consentito di essere rinominato @@ -1108,7 +1108,7 @@ DocType: Print Settings,Print Style Preview,Stile di stampa Anteprima apps/frappe/frappe/website/doctype/web_form/web_form.py +96,You are not allowed to update this Web Form Document,Non è consentito di aggiornare questo modulo Documento Web DocType: About Us Settings,About Us Settings,Chi siamo Impostazioni DocType: Website Settings,Website Theme,Sito tematico -DocType: DocField,In List View,In elenco Visualizza +DocType: DocField,In List View,In Vista Elenco DocType: Email Account,Use TLS,Usa TLS apps/frappe/frappe/email/smtp.py +34,Invalid login or password,Login o password non validi apps/frappe/frappe/config/setup.py +190,Add custom javascript to forms.,Aggiungi javascript personalizzato alle forme . @@ -1118,8 +1118,8 @@ apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +111, apps/frappe/frappe/core/page/data_import_tool/exporter.py +229,Mandatory:,Obbligatorio: ,User Permissions Manager,Autorizzazioni utente Gestione DocType: Property Setter,New value to be set,Nuovo valore da impostare -DocType: Email Alert,Days Before or After,Giorni prima o dopo -DocType: Email Alert,Email Alert,Email Alert +DocType: Email Alert,Days Before or After,Giorni Prima o Dopo +DocType: Email Alert,Email Alert,Email d'Avviso 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.,Seleziona tipi di documento per impostare quali autorizzazioni utente vengono utilizzati per limitare l'accesso. apps/frappe/frappe/website/doctype/blog_post/blog_post.py +84,Blog,Blog DocType: Workflow State,hand-right,mano destra @@ -1132,16 +1132,16 @@ DocType: Email Account,Notify if unreplied for (in mins),Notifica se unreplied p apps/frappe/frappe/config/website.py +64,Categorize blog posts.,Categorizzare i post sul blog. DocType: DocField,Attach,Allega DocType: DocType,Permission Rules,Regole di autorizzazione -sites/assets/js/form.min.js +159,Links,Links +sites/assets/js/form.min.js +159,Links,Collegamenti apps/frappe/frappe/model/base_document.py +331,Value missing for,Valore mancante per apps/frappe/frappe/model/delete_doc.py +135,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Record Inviato non può essere cancellato. sites/assets/js/desk.min.js +919,new type of document,nuovo tipo di documento DocType: DocPerm,Read,Leggi apps/frappe/frappe/templates/pages/update-password.html +10,Old Password,Vecchia Password apps/frappe/frappe/website/doctype/blog_post/blog_post.py +97,Posts by {0},Messaggi di {0} -apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Per formattare le colonne, dare etichette di colonna nella query." +apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Per formattare le colonne, inserire le etichette delle colonne nella query." apps/frappe/frappe/core/doctype/doctype/doctype.py +427,{0}: Cannot set Assign Amend if not Submittable,{0} : Impossibile impostare Assegna Modificare se non Submittable -apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Modifica autorizzazioni di ruolo +apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Modifica Autorizzazioni di Ruolo DocType: Social Login Keys,Social Login Keys,Social login Keys DocType: Comment,Comment Date,Data Commento apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +54,Remove all customizations?,Rimuovere tutte le personalizzazioni ? @@ -1184,10 +1184,10 @@ DocType: DocField,Allow on Submit,Consentire su Invio apps/frappe/frappe/core/page/desktop/desktop.js +48,All Applications,Tutte le applicazioni DocType: Web Page,Add code as <script>,Aggiungi codice allo script apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +7,Select Type,Seleziona tipo -apps/frappe/frappe/core/doctype/file_data/file_data.py +42,No permission to write / remove.,Non hai il permesso di scrivere / eliminare. +apps/frappe/frappe/core/doctype/file_data/file_data.py +42,No permission to write / remove.,Non autorizzato a scrivere / eliminare. 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.,Trascinare gli elementi della barra laterale per aggiungere. Trascinate di nuovo al cestino. DocType: Workflow State,resize-small,resize-small -sites/assets/js/editor.min.js +128,Horizontal Line Break,Interruzione di riga orizzontale +sites/assets/js/editor.min.js +128,Horizontal Line Break,Riga Interruzione Orizzontale DocType: Top Bar Item,Right,Giusto DocType: User,User Type,Tipo di utente apps/frappe/frappe/core/page/user_permissions/user_permissions.js +68,Select User,Selezionare Utente @@ -1202,9 +1202,9 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +68,Please make sure t sites/assets/js/desk.min.js +686,You have unsaved changes in this form. Please save before you continue.,Hai modifiche non salvate in questa forma . apps/frappe/frappe/core/doctype/doctype/doctype.py +273,Default for {0} must be an option,Predefinito per {0} deve essere un'opzione DocType: User,User Image,Immagine Immagine -apps/frappe/frappe/email/bulk.py +178,Emails are muted,Le email sono disattivati +apps/frappe/frappe/email/bulk.py +178,Emails are muted,Le E-mail sono disattivati sites/assets/js/form.min.js +199,Ctrl + Up,Ctrl + -DocType: Website Theme,Heading Style,Rubrica Style +DocType: Website Theme,Heading Style,Stile Intestazione apps/frappe/frappe/desk/page/applications/applications.py +34,You cannot install this app,Non è possibile installare questa app DocType: Scheduler Log,Error,Errore apps/frappe/frappe/model/document.py +482,Cannot link cancelled document: {0},Impossibile collegare documento annullato: {0} @@ -1212,7 +1212,7 @@ apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +550, apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +479,Select Table Columns for {0},Seleziona colonne Tabella per {0} DocType: Custom Field,Options Help,Opzioni Aiuto DocType: DocField,Report Hide,Segnala Hide -DocType: Custom Field,Label Help,Etichetta Help +DocType: Custom Field,Label Help,Etichetta Aiuto DocType: Workflow State,star-empty,star-vuoto DocType: Workflow State,ok,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.,Questi valori saranno aggiornati automaticamente nelle transazioni e anche sarà utile per limitare le autorizzazioni per l'utente sulle operazioni che contengono questi valori. @@ -1226,12 +1226,12 @@ DocType: Email Account,Use SSL,Usa SSL DocType: Workflow State,play-circle,play-cerchio apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +75,Select Print Format to Edit,Selezionare Stampa Formato Modifica DocType: Workflow State,circle-arrow-down,cerchio-freccia-giù -DocType: DocField,Datetime,Orario +DocType: DocField,Datetime,Data Ora DocType: Workflow State,arrow-right,freccia-destra DocType: Workflow State,Workflow state represents the current state of a document.,Stato del flusso di lavoro rappresenta lo stato attuale di un documento. sites/assets/js/editor.min.js +152,Open Link in a new Window,Apri link in una nuova finestra apps/frappe/frappe/utils/file_manager.py +235,Removed {0},Rimosso {0} -DocType: Company History,Highlight,Mettere in luce +DocType: Company History,Highlight,Evidenziare apps/frappe/frappe/print/doctype/print_format/print_format.py +18,Standard Print Format cannot be updated,Standard Formato di stampa non può essere aggiornato apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +146,Help: Field Properties,Aiuto: Proprietà campo apps/frappe/frappe/model/document.py +657,Incorrect value in row {0}: {1} must be {2} {3},Valore errato nella riga {0} : {1} deve essere {2} {3} @@ -1239,13 +1239,13 @@ apps/frappe/frappe/workflow/doctype/workflow/workflow.py +67,Submitted Document apps/frappe/frappe/print/page/print_format_builder/print_format_builder_start.html +2,Select an existing format to edit or start a new format.,Selezionare un formato esistente per modificare o avviare un nuovo formato. apps/frappe/frappe/workflow/doctype/workflow/workflow.py +38,Created Custom Field {0} in {1},Creato Campo personalizzato {0} in {1} apps/frappe/frappe/core/page/user_permissions/user_permissions.js +31,A user can be permitted to multiple records of the same DocType.,Un utente può essere consentito in più record per lo stesso tipo di documento (DocType). -DocType: Workflow State,Home,casa +DocType: Workflow State,Home,Casa DocType: Workflow State,question-sign,domanda-sign DocType: Email Account,Add Signature,Aggiungi Signature apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Left this conversation,Lasciato questa conversazione apps/frappe/frappe/core/page/permission_manager/permission_manager.js +474,Did not set,Non impostato DocType: ToDo,ToDo,ToDo -DocType: DocField,No Copy,No Copy +DocType: DocField,No Copy,Copia Assente DocType: Workflow State,qrcode,QRCode DocType: Web Form,Breadcrumbs,Pangrattato apps/frappe/frappe/core/doctype/doctype/doctype.py +373,If Owner,Se Proprietario @@ -1268,7 +1268,7 @@ DocType: Communication,Content,Contenuto DocType: Web Form,Go to this url after completing the form.,Vai a questo indirizzo dopo il modulo. DocType: Custom Field,Document,Documento DocType: DocField,Code,Codice -DocType: Website Theme,Footer Text Color,Footer Colore testo +DocType: Website Theme,Footer Text Color,Colore Testo Piè di Pagina 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.","Autorizzazioni a livello 0 sono permessi a livello di documento, cioè sono primario per l'accesso al documento." DocType: Print Format,Print Format,Formato Stampa apps/frappe/frappe/config/website.py +28,User ID of a blog writer.,ID utente di uno scrittore blog. @@ -1282,7 +1282,7 @@ apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +102, DocType: Module Def,Module Def,Modulo Def sites/assets/js/form.min.js +199,Done,Fatto sites/assets/js/form.min.js +294,Reply,Risposta -DocType: Communication,By,By +DocType: Communication,By,Per DocType: Email Account,SMTP Server,Server SMTP DocType: Print Format,Print Format Help,Formato Stampa Guida 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.","Se si sta aggiornando, seleziona ""Sovrascrivi"" non saranno cancellati righe altro esistenti." @@ -1310,7 +1310,7 @@ sites/assets/js/desk.min.js +903,Sorry! You are not permitted to view this page. DocType: Workflow State,bell,campana sites/assets/js/form.min.js +290,Share this document with,Condividi questo documento con apps/frappe/frappe/desk/page/activity/activity.js +152,Jun,Giugno -apps/frappe/frappe/utils/nestedset.py +227,{0} {1} cannot be a leaf node as it has children,{0} {1} non può essere un nodo foglia come ha figli +apps/frappe/frappe/utils/nestedset.py +227,{0} {1} cannot be a leaf node as it has children,{0} {1} non può essere un nodo foglia siccome ha figli DocType: Feed,Info,Info apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Grazie per il tuo messaggio DocType: Website Settings,Home Page,Home Page @@ -1319,16 +1319,16 @@ DocType: Workflow State,share-alt,share-alt DocType: Role,Role Name,Nome Ruolo DocType: Workflow Document State,Workflow Document State,Workflow di Stato Documento 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.","Per dare acess ad un ruolo solo record specifici, selezionare la applicare autorizzazioni utente. Autorizzazioni utente sono utilizzati per limitare gli utenti con tale ruolo da record specifici." -apps/frappe/frappe/workflow/doctype/workflow/workflow.py +70,Cannot cancel before submitting. See Transition {0},Impossibile annullare prima della presentazione . +apps/frappe/frappe/workflow/doctype/workflow/workflow.py +70,Cannot cancel before submitting. See Transition {0},Impossibile annullare prima della presentazione. Vedi passaggio {0} apps/frappe/frappe/templates/pages/print.py +146,Print Format {0} is disabled,Formato di stampa {0} è disattivato DocType: Email Alert,Send days before or after the reference date,Invia giorni prima o dopo la data di riferimento DocType: User,Allow user to login only after this hour (0-24),Consentire Login Utente solo dopo questo orario (0-24) -apps/frappe/frappe/core/doctype/doctype/doctype.py +33,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Non in modalità sviluppatore! Situato in site_config.json o fare DocType 'Custom'. +apps/frappe/frappe/core/doctype/doctype/doctype.py +33,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Non in modalità sviluppatore! Situato in site_config.json o crea DocType 'Custom'. DocType: Workflow State,globe,globo DocType: System Settings,dd.mm.yyyy,gg.mm.aaaa -apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +193,Hide field in Standard Print Format,Hide campo in standard Formato di stampa +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +193,Hide field in Standard Print Format,Nascondi campo nel Formato Standard di Stampa DocType: DocField,Float,Galleggiare -DocType: Module Def,Module Name,Nome modulo +DocType: Module Def,Module Name,Nome Modulo DocType: DocType,DocType is a Table / Form in the application.,DocType è una tabella / form nell'applicazione. DocType: Feed,Feed Type,Tipo Fonte DocType: Email Account,GMail,GMail @@ -1340,7 +1340,7 @@ apps/frappe/frappe/print/page/print_format_builder/print_format_builder_sidebar. DocType: Workflow State,bold,grassetto apps/frappe/frappe/website/doctype/website_settings/website_settings.py +34,{0} does not exist in row {1},{0} non esiste nella riga {1} DocType: Event,Event Type,Tipo Evento -DocType: User,Last Known Versions,Ultimi versioni note +DocType: User,Last Known Versions,Ultime versioni note apps/frappe/frappe/config/setup.py +115,Add / Manage Email Accounts.,Aggiungere / Gestire Account di posta elettronica. DocType: Blog Category,Published,Pubblicato apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email,Grazie per la vostra e-mail @@ -1369,9 +1369,9 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +284,Fieldtype {0} for {1} ca DocType: Communication,Email Account,Account Email DocType: Workflow State,Download,Scarica DocType: Blog Post,Blog Intro,Intro Blog -apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Abilita Relazione +apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Abilita Report DocType: User,Check / Uncheck roles assigned to the User. Click on the Role to find out what permissions that Role has.,Seleziona / Deseleziona ruoli assegnati al profilo. Fare clic sul ruolo per scoprire quali autorizzazioni ha il ruolo. -DocType: Web Page,Insert Code,Inserire codice +DocType: Web Page,Insert Code,Inserire Codice apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +549,You can add dynamic properties from the document by using Jinja templating.,È possibile aggiungere proprietà dinamiche del documento utilizzando Jinja templating. sites/assets/js/desk.min.js +920,List a document type,Elencare un tipo di documento DocType: Event,Ref Type,Tipo Rif. @@ -1406,7 +1406,7 @@ DocType: Workflow State,folder-open,cartella-aprire apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +1,Search Application,Cerca applicazione apps/frappe/frappe/config/website.py +18,Single Post (article).,Messaggio singolo (articolo). DocType: Property Setter,Set Value,Imposta valore -apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +189,Hide field in form,Hide campo in forma +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +189,Hide field in form,Nascondi campo in modulo DocType: Email Alert,Optional: The alert will be sent if this expression is true,Facoltativo: L'avviso sarà inviato se questa espressione è vera apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,È possibile utilizzare Personalizza modulo per impostare i livelli sui campi . DocType: DocPerm,Report,Segnala @@ -1415,7 +1415,7 @@ apps/frappe/frappe/desk/reportview.py +69,{0} is saved,{0} viene salvato apps/frappe/frappe/core/doctype/user/user.py +235,User {0} cannot be renamed,Utente {0} non può essere rinominato apps/frappe/frappe/website/doctype/website_settings/website_settings.js +17,Exported,esportato DocType: DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","Lista JSON di DOCTYPE utilizzati per applicare autorizzazioni utente. Se vuoto, saranno utilizzati tutti i DOCTYPE legati ad applicare autorizzazioni utente." -DocType: Report,Ref DocType,Rif. DocType +DocType: Report,Ref DocType,DocType Rif. apps/frappe/frappe/core/doctype/doctype/doctype.py +402,{0}: Cannot set Amend without Cancel,{0} : Impossibile impostare Modificare senza Cancella sites/assets/js/form.min.js +260,Full Page,Pagina completa DocType: DocType,Is Child Table,È Tavola Bambino @@ -1441,7 +1441,7 @@ DocType: Website Settings,"Show title in browser window as ""Prefix - title""",M sites/assets/js/desk.min.js +923,text in document type,testo tipo di documento DocType: Workflow Document State,Update Value,Aggiornamento del valore DocType: System Settings,Number Format,Formato numero -DocType: Custom Field,Insert After,Inserisci dopo +DocType: Custom Field,Insert After,Inserisci Dopo DocType: Social Login Keys,GitHub Client Secret,Segreto GitHub client DocType: Report,Report Name,Nome rapporto DocType: Email Alert,Save,salvare @@ -1449,7 +1449,7 @@ DocType: Website Settings,Title Prefix,Title Prefix DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Notifiche e mail di massa verranno inviati da questo server in uscita. DocType: Workflow State,cog,COG sites/assets/js/desk.min.js +608,{0} added,{0} aggiunto -sites/assets/js/list.min.js +67,Not In,Not In +sites/assets/js/list.min.js +67,Not In,Non In DocType: Workflow State,star,stella apps/frappe/frappe/desk/page/activity/activity.js +153,Nov,Novembre apps/frappe/frappe/core/doctype/doctype/doctype.py +256,Max width for type Currency is 100px in row {0},Larghezza massima per il tipo di valuta è 100px in riga {0} @@ -1457,11 +1457,11 @@ apps/frappe/frappe/config/website.py +13,Content web page.,Contenuto Pagina Web. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Aggiungere un nuovo ruolo apps/frappe/frappe/templates/includes/login/login.js +125,Oops! Something went wrong,"Spiacenti, Qualcosa è andato storto" DocType: Blog Settings,Blog Introduction,Introduzione Blog -DocType: User,Email Settings,Impostazioni email +DocType: User,Email Settings,Impostazioni E-mail apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} non uno Stato valido DocType: Workflow State,ok-circle,ok-cerchio apps/frappe/frappe/core/doctype/user/user.py +102,Sorry! User should have complete access to their own record.,Sorry! L'utente dovrebbe avere accesso completo al proprio record. -DocType: Custom Field,In Report Filter,In Report Filter +DocType: Custom Field,In Report Filter,In Filtro Report DocType: DocType,Hide Actions,Nascondi Azioni DocType: DocType,"\
  • field:[fieldname] - By Field\ @@ -1474,12 +1474,12 @@ DocType: DocType,"\
  • Prompt - Richiedi all'utente per un nome \
  • [Serie] - Serie di prefisso (separati da un punto), ad esempio PRE ##### \ ') ""> Naming Options " -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +19,Label is mandatory,Label è obbligatorio +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +19,Label is mandatory,Etichetta è obbligatorio DocType: DocField,Unique,Unico DocType: File Data,File Name,Nome del file apps/frappe/frappe/core/page/data_import_tool/importer.py +261,Did not find {0} for {0} ({1}),Non {0} trovare per {0} ( {1} ) apps/frappe/frappe/config/setup.py +39,Set Permissions per User,Imposta autorizzazioni per utente -DocType: Print Format,Edit Format,Modifica formato +DocType: Print Format,Edit Format,Modifica Formato apps/frappe/frappe/templates/emails/new_user.html +6,Complete Registration,Registrazione Complete apps/frappe/frappe/website/doctype/website_theme/website_theme.py +40,Top Bar Color and Text Color are the same. They should be have good contrast to be readable.,Top Bar di colore e il colore del testo sono la stessa cosa. Essi dovrebbero essere avere un buon contrasto per essere leggibile. apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,You can only upload upto 5000 records in one go. (may be less in some cases),È possibile caricare solo fino a 5000 record in una volta. (Può essere inferiore in alcuni casi) @@ -1492,7 +1492,7 @@ DocType: Workflow State,chevron-right,chevron-destra apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +158,"Change type of field. (Currently, Type change is \ allowed among 'Currency and Float')","Cambiare tipo di campo. (Attualmente, cambiare tipo è \ consentito tra 'valuta e Float')" -DocType: Website Theme,Link to Bootstrap CSS,Link dopo Bootstrap CSS +DocType: Website Theme,Link to Bootstrap CSS,Collegamento a Bootstrap CSS DocType: Workflow State,camera,fotocamera DocType: Website Settings,Brand HTML,Marca HTML apps/frappe/frappe/templates/includes/login/login.js +18,Both login and password required,Sono richiesti login e password diff --git a/frappe/translations/ko.csv b/frappe/translations/ko.csv index 735d247a8a..fe84c103a3 100644 --- a/frappe/translations/ko.csv +++ b/frappe/translations/ko.csv @@ -89,7 +89,7 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are no apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +176,Example,예 DocType: Workflow State,gift,선물 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +180,Reqd,Reqd -apps/frappe/frappe/core/doctype/communication/communication.py +124,Unable to find attachment {0},찾을 수 없습니다 첨부 파일 {0} +apps/frappe/frappe/core/doctype/communication/communication.py +124,Unable to find attachment {0},첨부 파일 {0}을 찾을 수 없습니다 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +168,Assign a permission level to the field.,필드에 권한 수준을 할당합니다. apps/frappe/frappe/config/setup.py +72,Show / Hide Modules,표시 / 숨기기 모듈 apps/frappe/frappe/core/doctype/report/report.js +37,Disable Report,사용 안 함 보고서 @@ -160,7 +160,7 @@ DocType: User,Restrict IP,IP에게 제한 apps/frappe/frappe/email/smtp.py +172,Unable to send emails at this time,이 시간에 이메일을 보낼 수 없습니다 sites/assets/js/desk.min.js +947,Search or type a command,명령을 검색하거나 입력 DocType: Email Account,e.g. smtp.gmail.com,예) smtp.gmail.com -apps/frappe/frappe/core/page/permission_manager/permission_manager.js +366,Add A New Rule,새 규칙을 추가 +apps/frappe/frappe/core/page/permission_manager/permission_manager.js +366,Add A New Rule,새 규칙 추가 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,이 필드에 링크 할 문서 형식 (문서 종류)의 이름입니다. 예를 들어 고객 DocType: User,Roles Assigned,할당 된 역할 DocType: Top Bar Item,Parent Label,부모 라벨 @@ -201,14 +201,14 @@ DocType: Currency,"Sub-currency. For e.g. ""Cent""","하위 통화.예를 들면 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,첨부 파일이 없습니다 없습니다 +apps/frappe/frappe/utils/file_manager.py +83,No file attached,첨부 파일이 없습니다 DocType: Version,Version,버전 DocType: User,Fill Screen,화면을 가득 채운 apps/frappe/frappe/core/doctype/role/role.js +9,Edit Permissions,편집 권한 sites/assets/js/form.min.js +213,Edit via Upload,업로드를 통해 편집 sites/assets/js/desk.min.js +921,"document type..., e.g. customer","문서 유형 ..., 예를 들어, 고객" DocType: Country,Country Name,국가 이름 -DocType: About Us Team Member,About Us Team Member,우리 팀 구성원에 대한 +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.","권한은보고, 가져 오기, 내보내기, 인쇄, 전자 메일 및 사용자 설정 권한, 정정, 취소, 제출, 생성, 삭제, 읽기, 쓰기와 같은 권한을 설정하여 역할 및 문서 유형 (doctype에 호출)에 설정됩니다." 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.","떨어져 역할 기반 권한 규칙에서, 당신은 doctype에 기반으로 사용자 권한을 적용 할 수 있습니다." 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.","이 권한은 허용 된 레코드가 연결되어있는 모든 거래에 적용됩니다.회사 C는 사용자의 X의 사용자 권한에 추가 된 경우 예를 들어, 사용자 X는 연결된 값으로 회사 C가 트랜잭션을 볼 수있을 것이다." @@ -279,7 +279,7 @@ DocType: Workflow State,indent-left,들여 쓰기 왼쪽 DocType: Currency,Currency Name,통화 명 DocType: Report,Javascript,자바스크립트 DocType: File Data,Content Hash,콘텐츠 해시 -DocType: User,Stores the JSON of last known versions of various installed apps. It is used to show release notes.,상점 다양한 설치된 응용 프로그램의 마지막 알려진 버전의 JSON. 그것은 릴리스 정보를 표시하는 데 사용됩니다. +DocType: User,Stores the JSON of last known versions of various installed apps. It is used to show release notes.,상점 다양한 설치된 응용 프로그램의 최신 버전의 JSON. 그것은 릴리스 정보를 표시하는 데 사용됩니다. DocType: Website Theme,Google Font (Text),구글 폰트 (텍스트) apps/frappe/frappe/core/page/permission_manager/permission_manager.js +323,Did not remove,제거하지 않은 DocType: Report,Query,질문 @@ -359,7 +359,7 @@ DocType: About Us Settings,Company Introduction,회사 소개 DocType: DocPerm,Apply User Permissions,사용자 권한을 적용합니다 DocType: User,Modules HTML,모듈 HTML sites/assets/js/desk.min.js +484,Missing Values Required,필요없는 값 -sites/assets/js/list.min.js +107,{0} is not set,{0} 설정되어 있지 +sites/assets/js/list.min.js +107,{0} is not set,{0} 설정되어 있지 않은 apps/frappe/frappe/model/document.py +150,No permission to {0} {1} {2},에 아무런 권한이 없다 {0} {1} {2} apps/frappe/frappe/permissions.py +225,Not allowed to access {0} with {1} = {2},에 액세스 할 수없는 {0}과 {1} = {2} apps/frappe/frappe/templates/emails/print_link.html +2,View this in your browser,귀하의 브라우저에서보기 @@ -399,7 +399,7 @@ 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 +76,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.,시스템의 사용자를 나타냅니다. @@ -427,7 +427,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",여기에 정의 된 필드 이름 값을 가지고 또는 규칙이 참 (예) 경우에만이 필드가 나타납니다 myfield 평가 : doc.myfield == '나의 가치'평가 : doc.age> (18) -DocType: File Data,Attached To Name,이름에 부착 +DocType: File Data,Attached To Name,이름에 첨부 apps/frappe/frappe/email/receive.py +61,Invalid User Name or Support Password. Please rectify and try again.,잘못된 사용자 이름 또는 지원의 비밀.조정하고 다시 시도하십시오. DocType: Email Account,Login Id is Different,로그인 ID가 다른 것입니다 DocType: Email Account,Yahoo Mail,야후 메일 @@ -550,7 +550,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,주석: sites/assets/js/desk.min.js +593,Markdown,마크 다운 DocType: DocShare,Document Name,문서 이름 DocType: Comment,Comment By,에 의해 코멘트 -DocType: Customize Form,Customize Form,양식을 사용자 정의 +DocType: Customize Form,Customize Form,사용자 정의 양식 DocType: Currency,A symbol for this currency. For e.g. $,이 통화에 대한 기호.예를 들어 $ sites/assets/js/desk.min.js +934,Frappe Framework,프라페 프레임 워크 apps/frappe/frappe/model/naming.py +162,Name of {0} cannot be {1},{0}의 이름이 될 수 없습니다 {1} @@ -561,12 +561,12 @@ apps/frappe/frappe/templates/includes/login/login.js +124,Invalid Login,잘못 DocType: Communication,Phone No.,전화 번호 DocType: Workflow State,fire,~에 불을지르다 DocType: Workflow State,picture,사진 -apps/frappe/frappe/core/page/user_permissions/user_permissions.js +301,Add A New Restriction,새로운 조건 추가 +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: Web Page,Custom CSS,사용자 정의 CSS -sites/assets/js/form.min.js +293,Add a comment,코멘트를 추가 +sites/assets/js/form.min.js +293,Add a comment,코멘트 추가 apps/frappe/frappe/config/setup.py +220,Log of error on automated events (scheduler).,자동 이벤트 (스케줄러)에 대한 오류 로그. apps/frappe/frappe/utils/csvutils.py +74,Not a valid Comma Separated Value (CSV File),은 (는) 올바른 쉼표로 구분 된 값 (CSV 파일) DocType: Email Account,Default Incoming,기본 수신 @@ -591,7 +591,7 @@ sites/assets/js/desk.min.js +607,Make a new,새 만들기 DocType: Print Settings,PDF Page Size,PDF 페이지 크기 sites/assets/js/desk.min.js +947,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 +965,Attach Document Print,문서 인쇄를 부착 +sites/assets/js/desk.min.js +965,Attach Document Print,문서 인쇄물 첨부 DocType: Social Login Keys,Google Client ID,구글 클라이언트 ID apps/frappe/frappe/core/doctype/user/user.py +63,Adding System Manager to this User as there must be atleast one System Manager,이상이어야 하나의 시스템 관리자가 있어야합니다으로이 사용하기 위해 시스템 관리자를 추가 DocType: Workflow State,list-alt,목록 - 고도 @@ -636,7 +636,7 @@ sites/assets/js/desk.min.js +446,This form does not have any input,이 양식은 apps/frappe/frappe/core/doctype/system_settings/system_settings.py +19,Session Expiry must be in format {0},세션 유효 기간은 형식이어야합니다 {0} DocType: Top Bar Item,"Select target = ""_blank"" to open in a new page.","선택 대상 새 페이지에 열 = ""_blank""." sites/assets/js/desk.min.js +641,Permanently delete {0}?,영구적으로 {0}을 삭제 하시겠습니까? -apps/frappe/frappe/core/doctype/file_data/file_data.py +33,Same file has already been attached to the record,동일한 파일이 이미 기록에 첨부 된 +apps/frappe/frappe/core/doctype/file_data/file_data.py +33,Same file has already been attached to the record,동일한 파일이 이미 첨부되어 있습니다 apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +59,Ignore encoding errors.,오류를 인코딩 무시합니다. DocType: Workflow State,wrench,렌치 DocType: Website Settings,Disable Signup,회원 가입에게 사용 안 함 @@ -646,7 +646,7 @@ DocType: DocField,Mandatory,필수 apps/frappe/frappe/core/doctype/doctype/doctype.py +361,{0}: No basic permissions set,{0} : 없음 기본 사용 권한을 설정하지 apps/frappe/frappe/utils/backups.py +142,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.,기존의 모든 권한은 / 덮어 삭제됩니다. apps/frappe/frappe/desk/doctype/todo/todo.py +17,Assigned to {0}: {1},에 할당 된 {0} : {1} @@ -717,7 +717,7 @@ DocType: Report,Add Total Row,요약 행에게 추가 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +19,For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment.,취소 및 INV004을 개정 예를 들어이 새 문서 INV004-1 될 것입니다.이렇게하면 각 개정을 추적하는 데 도움이됩니다. DocType: Workflow Document State,0 - Draft; 1 - Submitted; 2 - Cancelled,0 - 초안; 1 - 제출; 2 - 취소 apps/frappe/frappe/core/page/modules_setup/modules_setup.js +5,Show or Hide Modules,표시 또는 숨기기 모듈 -DocType: File Data,Attached To DocType,문서 종류에 부착 +DocType: File Data,Attached To DocType,문서 종류에 첨부 apps/frappe/frappe/desk/page/activity/activity.js +153,Aug,8월 DocType: DocField,Int,이자 DocType: Currency,"1 Currency = [?] Fraction @@ -743,7 +743,7 @@ apps/frappe/frappe/core/doctype/report/report.py +29,Only Administrator allowed sites/assets/js/form.min.js +182,Updating,업데이트 sites/assets/js/desk.min.js +965,Select Attachments,첨부 파일을 선택합니다 sites/assets/js/form.min.js +291,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,사용자 권한 doctype에 sites/assets/js/desk.min.js +641,New Name,새 이름 @@ -776,7 +776,7 @@ apps/frappe/frappe/core/doctype/user/user.py +81,New password emailed,새 암호 apps/frappe/frappe/auth.py +209,Login not allowed at this time,로그인이 시간에 허용되지 DocType: DocType,Permissions Settings,권한 설정 sites/assets/js/desk.min.js +931,{0} List,{0} 목록 -apps/frappe/frappe/desk/form/assign_to.py +39,Already in user's To Do list,이미 사용자의 목록을 할 수있는 +apps/frappe/frappe/desk/form/assign_to.py +39,Already in user's To Do list,사용자의 할일 목록에 이미 있습니다. DocType: Email Account,Enable Outgoing,보내는 사용 DocType: System Settings,Email Footer Address,이메일 바닥 글 주소 DocType: DocField,Text,글자 @@ -813,7 +813,7 @@ DocType: Workflow State,adjust,~을 조절하다 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,설치완료 DocType: Workflow State,fullscreen,전체 화면 DocType: Event,Ref Name,참조 이름 DocType: Web Page,Center,가운데 @@ -821,7 +821,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33 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,새로 고침 양식 DocType: DocField,Select,고르기 -apps/frappe/frappe/utils/csvutils.py +25,File not attached,파일 첨부하지 +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.","이 작업을 설정하는 경우,이 항목을 선택한 부모 아래 드롭 다운에서 올 것이다." apps/frappe/frappe/model/db_query.py +393,Please select atleast 1 column from {0} to sort,{0} 정렬 할에서이어야 1 열을 선택하십시오 apps/frappe/frappe/templates/pages/print.py +160,No template found at path: {0},경로에서 발견되지 템플릿 없습니다 : {0} @@ -894,7 +894,7 @@ DocType: User,Website User,웹 사이트의 사용자 DocType: Website Script,Script to attach to all web pages.,스크립트는 모든 웹 페이지에 연결합니다. DocType: Web Form,Allow Multiple,여러 허용 sites/assets/js/form.min.js +291,Assign,지정 -apps/frappe/frappe/config/setup.py +93,Import / Export Data from .csv files.,가져 오기 / 내보내기 데이터에서. CSV 파일. +apps/frappe/frappe/config/setup.py +93,Import / Export Data from .csv files.,CSV 파일로 데이터 가져 오기 / 내보내기 DocType: Workflow State,Icon will appear on the button,아이콘이 버튼에 나타납니다 DocType: Web Page,Page url name (auto-generated),페이지 URL 이름 (자동 생성) apps/frappe/frappe/core/page/user_permissions/user_permissions.py +105,Please upload using the same template as download.,다운로드와 같은 템플릿을 사용하여 업로드하시기 바랍니다. @@ -1049,7 +1049,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +61,Append To ca DocType: User,Github Username,GitHub의 사용자 이름 DocType: Web Page,Title / headline of your page,페이지의 제목 / 헤드 라인 DocType: DocType,Plugin,플러그인 -sites/assets/js/desk.min.js +977,Add Attachments,첨부 파일을 추가 +sites/assets/js/desk.min.js +977,Add Attachments,첨부 파일 추가 DocType: Workflow State,signal,신호 DocType: DocType,Show Print First,인쇄 먼저 보여 DocType: Print Settings,Monochrome,흑백의 @@ -1066,7 +1066,7 @@ sites/assets/js/desk.min.js +579,Advanced Search,고급 검색 apps/frappe/frappe/core/doctype/user/user.py +390,Password reset instructions have been sent to your email,암호 재설정 지침은 전자 메일로 전송 한 apps/frappe/frappe/config/setup.py +214,Manage cloud backups on 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 +36,{0} not allowed in name,{0}의 이름으로 사용할 수 없습니다 DocType: Workflow State,circle-arrow-left,원형 화살표 왼쪽 @@ -1095,18 +1095,18 @@ DocType: Email Alert Recipient,Optional: Alert will only be sent if value is a v apps/frappe/frappe/model/rename_doc.py +100,{0} not allowed to be renamed,{0} 이름을 바꿀 수 없습니다 DocType: Custom Script,Custom Script,사용자 정의 스크립트 sites/assets/js/desk.min.js +622,Assigned To,담당자 -apps/frappe/frappe/core/doctype/user/user.py +166,Verify Your Account,계정을 확인 -DocType: Workflow Transition,Action,행위 +apps/frappe/frappe/core/doctype/user/user.py +166,Verify Your Account,계정 확인 +DocType: Workflow Transition,Action,수행 apps/frappe/frappe/core/page/data_import_tool/exporter.py +231,Info:,정보 : DocType: Custom Field,Permission Level,권한 수준 -DocType: User,Send Notifications for Transactions I Follow,내가 따라 거래에 대한 알림 보내기 +DocType: User,Send Notifications for Transactions I Follow,나의 거래에 대한 알림 보내기 apps/frappe/frappe/core/doctype/doctype/doctype.py +400,"{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 +182,Saving,절약 DocType: Print Settings,Print Style Preview,인쇄 스타일 미리보기 apps/frappe/frappe/website/doctype/web_form/web_form.py +96,You are not allowed to update this Web Form Document,이 웹 양식 문서를 업데이트 할 수 없습니다 -DocType: About Us Settings,About Us Settings,회사 설정 정보 +DocType: About Us Settings,About Us Settings,설정 정보에 관하여 DocType: Website Settings,Website Theme,웹 사이트 테마 DocType: DocField,In List View,목록보기 DocType: Email Account,Use TLS,TLS에게 사용 @@ -1142,7 +1142,7 @@ apps/frappe/frappe/website/doctype/blog_post/blog_post.py +97,Posts by {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 +427,{0}: Cannot set Assign Amend if not Submittable,{0} : 지정을 개정 설정할 수 Submittable 아니라면 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,역할 권한 편집 -DocType: Social Login Keys,Social Login Keys,사회 로그인 키 +DocType: Social Login Keys,Social Login Keys,소셜 로그인 키 DocType: Comment,Comment Date,댓글 날짜 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +54,Remove all customizations?,모든 사용자 지정을 삭제 하시겠습니까? DocType: Website Slideshow,Slideshow Name,슬라이드 쇼 이름 @@ -1165,7 +1165,7 @@ DocType: Website Theme,"If image is selected, color will be ignored.","이미지 DocType: Top Bar Item,Top Bar Item,상단 바 상품 apps/frappe/frappe/utils/csvutils.py +50,"Unknown file encoding. Tried utf-8, windows-1250, windows-1252.","알 수없는 파일 인코딩.시도 UTF-8, 윈도우 1250, 윈도우 1252." apps/frappe/frappe/core/doctype/user/user.py +104,Sorry! Sharing with Website User is prohibited.,죄송합니다!웹 사이트 사용자와 공유하는 것은 금지되어 있습니다. -apps/frappe/frappe/core/doctype/user/user.js +156,Add all roles,모든 역할을 추가 +apps/frappe/frappe/core/doctype/user/user.js +156,Add all roles,모든 역할 추가 apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your email and message so that we \ can get back to you. Thanks!","우리가 당신에게 얻을 수 \ 있도록 이메일과 메시지를 모두 입력하십시오.감사합니다!" @@ -1177,7 +1177,7 @@ apps/frappe/frappe/desk/query_report.py +26,Report {0} is disabled,보고서는 apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +24,Recommended for inserting new records.,새 레코드를 삽입하기위한 추천합니다. DocType: Block Module,Core,코어 DocType: DocField,Set non-standard precision for a Float or Currency field,플로트 또는 통화 필드의 설정이 아닌 표준 정밀도 -DocType: Email Account,Ignore attachments over this size,이 크기를 초과하는 첨부 파일을 무시 +DocType: Email Account,Ignore attachments over this size,이 크기를 초과하는 첨부 파일을 무시합니다 apps/frappe/frappe/database.py +217,Too many writes in one request. Please send smaller requests,너무 많은 사람들이 하나의 요청에 씁니다. 작은 요청을 보내 주시기 바랍니다 DocType: Workflow State,arrow-up,화살표까지 DocType: DocField,Allow on Submit,제출에 허용 @@ -1214,7 +1214,7 @@ DocType: Custom Field,Options Help,옵션 도움말 DocType: DocField,Report Hide,보고서 숨기기 DocType: Custom Field,Label Help,라벨 도움말 DocType: Workflow State,star-empty,스타 빈 -DocType: Workflow State,ok,OK를 +DocType: Workflow State,ok,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.,"이 값은 트랜잭션에 자동으로 업데이트되며, 이러한 값을 포함하는 거래에이 사용자에 대한 사용 권한을 제한하는 것이 도움이 될 것입니다." apps/frappe/frappe/desk/page/applications/application_row.html +15,Publisher,발행자 sites/assets/js/desk.min.js +846,Browse,검색 @@ -1341,7 +1341,7 @@ DocType: Workflow State,bold,대담한 apps/frappe/frappe/website/doctype/website_settings/website_settings.py +34,{0} does not exist in row {1},{0} 행에 존재하지 않는 {1} DocType: Event,Event Type,이벤트 종류 DocType: User,Last Known Versions,마지막으로 성공한 버전 -apps/frappe/frappe/config/setup.py +115,Add / Manage Email Accounts.,이메일 계정을 관리 / 추가합니다. +apps/frappe/frappe/config/setup.py +115,Add / Manage Email Accounts.,이메일 계정 추가/관리 DocType: Blog Category,Published,출판 apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email,이메일 주셔서 감사합니다 DocType: DocField,Small Text,작은 텍스트용 @@ -1442,7 +1442,7 @@ sites/assets/js/desk.min.js +923,text in document type,문서 형식의 텍스 DocType: Workflow Document State,Update Value,갱신 값 DocType: System Settings,Number Format,번호 형식 DocType: Custom Field,Insert After,후 삽입 -DocType: Social Login Keys,GitHub Client Secret,GitHub의 클라이언트 비밀 +DocType: Social Login Keys,GitHub Client Secret,GitHub의 클라이언트 보안 DocType: Report,Report Name,보고서 이름 DocType: Email Alert,Save,저장 DocType: Website Settings,Title Prefix,제목 접두어 @@ -1486,7 +1486,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,You can only uploa DocType: Print Settings,Print Style,인쇄 스타일 DocType: DocPerm,Import,가져오기 apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +125,Row {0}: Not allowed to enable Allow on Submit for standard fields,행 {0} : 표준 필드에 제출 허용 가능하도록 허용되지 않음 -apps/frappe/frappe/config/setup.py +91,Import / Export Data,가져 오기 / 내보내기 데이터 +apps/frappe/frappe/config/setup.py +91,Import / Export Data,데이터 가져 오기 / 내보내기 sites/assets/js/desk.min.js +1000,updated to {0},업데이트 {0} DocType: Workflow State,chevron-right,갈매기 오른쪽 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +158,"Change type of field. (Currently, Type change is \ diff --git a/frappe/translations/nl.csv b/frappe/translations/nl.csv index b4713c029a..d6cefbcbc8 100644 --- a/frappe/translations/nl.csv +++ b/frappe/translations/nl.csv @@ -880,7 +880,7 @@ apps/frappe/frappe/desk/page/activity/activity.js +153,Dec,Dec DocType: Event,Leave blank to repeat always,Laat leeg om altijd te herhalen DocType: Event,Ends on,Eindigt op apps/frappe/frappe/utils/nestedset.py +181,Item cannot be added to its own descendents,Artikel kan niet worden toegevoegd aan zijn eigen onderliggende artikelen. -sites/assets/js/form.min.js +274,{0} created this {1},{0} heeft dit {1} +sites/assets/js/form.min.js +274,{0} created this {1},{0} heeft dit {1} aangemaakt apps/frappe/frappe/desk/form/assign_to.py +120,"The task {0}, that you assigned to {1}, has been closed by {2}.","De taak {0}, die u hebt toegewezen aan {1}, is gesloten door {2}." DocType: Blogger,Short Name,Korte Naam DocType: Workflow State,magnet,magneet @@ -1310,7 +1310,7 @@ sites/assets/js/desk.min.js +903,Sorry! You are not permitted to view this page. DocType: Workflow State,bell,bel sites/assets/js/form.min.js +290,Share this document with,Deel dit document met apps/frappe/frappe/desk/page/activity/activity.js +152,Jun,Juni -apps/frappe/frappe/utils/nestedset.py +227,{0} {1} cannot be a leaf node as it has children,{0} {1} cannot be a leaf node as it has children +apps/frappe/frappe/utils/nestedset.py +227,{0} {1} cannot be a leaf node as it has children,"{0} {1} kan geen leaf node zijn, want hij is vertakt" DocType: Feed,Info,Info apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Dank u voor uw bericht DocType: Website Settings,Home Page,Home Page diff --git a/frappe/translations/pl.csv b/frappe/translations/pl.csv index c49cf0db93..7578a5cc43 100644 --- a/frappe/translations/pl.csv +++ b/frappe/translations/pl.csv @@ -7,10 +7,10 @@ apps/frappe/frappe/templates/pages/desk.py +18,You are not permitted to access t DocType: User,Facebook Username,Nazwa Użytkownika Facebook DocType: Workflow State,eye-open,Oczy Otwarte DocType: Bulk Email,Send After,Wyślij Po -apps/frappe/frappe/utils/file_manager.py +28,Please select a file or url, +apps/frappe/frappe/utils/file_manager.py +28,Please select a file or url,Proszę wybrać plik albo url DocType: DocField,DocField,DocField DocType: Comment,Comment By Fullname,Skomentowane przez (pełne imię) -DocType: DocField,Options, +DocType: DocField,Options,Opcje sites/assets/js/report.min.js +17,Cannot edit standard fields,Nie można edytować standardowych pól DocType: Print Format,Print Format Builder,Format druku Builder DocType: Report,Report Manager,Manager @@ -35,7 +35,7 @@ DocType: Communication,Unread Notification Sent,Nieprzeczytane Powiadomienie Wys sites/assets/js/desk.min.js +795,Export not allowed. You need {0} role to export.,eksport nie jest dozwolony. Potrzebujesz {0} modeli żeby eksportować apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +154,Set the display label for the field,Ustawia nazwę wyświetlaną w polu apps/frappe/frappe/config/setup.py +179,"Change field properties (hide, readonly, permission etc.)","Zmień właściwość pola (ukryj, tylko-do-odczytu, pozwolenia etc.)" -DocType: Workflow State,lock, +DocType: Workflow State,lock,Zablokowany apps/frappe/frappe/config/website.py +74,Settings for Contact Us Page., apps/frappe/frappe/core/doctype/user/user.py +490,Administrator Logged In,Administrator Zalogowani DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.", @@ -66,10 +66,10 @@ DocType: Workflow Action,Workflow Action Name,Nazwa Akcji Przepływu Pracy apps/frappe/frappe/core/doctype/doctype/doctype.py +130,DocType can not be merged,DocType nie może być połączony DocType: Web Form Field,Fieldtype,Typ pola apps/frappe/frappe/desk/form/save.py +44,Did not cancel,Nie anulowano -DocType: Workflow State,plus, +DocType: Workflow State,plus,plus DocType: Scheduler Log,Scheduler Log, sites/assets/js/desk.min.js +737,You,Ty -DocType: Website Theme,lowercase, +DocType: Website Theme,lowercase,małe litery DocType: Print Format,Helvetica,Helvetica 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 @@ -79,7 +79,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +61,"Insert After DocType: Workflow State,circle-arrow-up, sites/assets/js/desk.min.js +859,Uploading...,Przesyłanie... DocType: Workflow State,italic, -apps/frappe/frappe/core/doctype/doctype/doctype.py +404,{0}: Cannot set Import without Create, +apps/frappe/frappe/core/doctype/doctype/doctype.py +404,{0}: Cannot set Import without Create,{0}: Nie możesz ustawić importu bez jego tworzenia DocType: Comment,Post Topic, apps/frappe/frappe/print/page/print_format_builder/print_format_builder_column_selector.html +2,Widths can be set in px or %.,Szerokość może być ustawiona w px lub%. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned., @@ -107,11 +107,11 @@ sites/assets/js/desk.min.js +449,Show more details,Pokaż więcej szczegółów DocType: System Settings,Run scheduled jobs only if checked,"Uruchamiane tylko zaplanowane zadania, jeśli zaznaczone" 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"".","Wprowadź pola wartość domyślna (przyciski) i wartości. Jeśli dodać wiele wartości dla pola, pierwszy będzie zrywane. Te wartości domyślne są również używane do ustawienia "meczu" zasad uprawnień. Aby zobaczyć listę pól, przejdź do formularza "Dostosuj"." DocType: Customize Form Field,"Print Width of the field, if the field is a column in a table","Wydrukuj Szerokość pola, jeśli pole jest kolumna w tabeli" -DocType: Workflow State,headphones, +DocType: Workflow State,headphones,słuchawki DocType: Bulk Email,Bulk Email records.,Duże rekordy e-mail. DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,np replies@yourcomany.com. Wszystkie odpowiedzi przyjdą do tej skrzynki. apps/frappe/frappe/templates/includes/login/login.js +32,Valid email and name required,Wymagany poprawny adres e-mail i imię -DocType: DocType,Hide Heading, +DocType: DocType,Hide Heading,Ukryj Nagłówek DocType: Workflow State,remove-circle,usuń-koło apps/frappe/frappe/config/website.py +54,Javascript to append to the head section of the page., apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +53,Reset to defaults,Przywróć domyślną @@ -125,18 +125,18 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +425,{0}: Cannot set Assign S DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/templates/pages/list.py +46,"Filtered by ""{0}""",Filtrowane przez "{0}" sites/assets/js/desk.min.js +1009,Message from {0},Wiadomość od {0} -DocType: Blog Settings,Blog Title, +DocType: Blog Settings,Blog Title,Nazwa Blogu apps/frappe/frappe/print/page/print_format_builder/print_format_builder_layout.html +12,Edit to set heading,Edytuj aby ustawić nagłówek DocType: About Us Settings,Team Members, -sites/assets/js/desk.min.js +553,Please attach a file or set a URL, +sites/assets/js/desk.min.js +553,Please attach a file or set a URL,Proszę załączyć plik albo set URLi DocType: DocField,Permissions,Uprawnienia DocType: User,Get your globally recognized avatar from Gravatar.com,Pobierz rozpoznawany na całym świecie awatara z Gravatar.com -DocType: Workflow State,plus-sign, -DocType: Event,Public, +DocType: Workflow State,plus-sign,plus-sign +DocType: Event,Public,Publiczny apps/frappe/frappe/email/smtp.py +134,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,Szablon Eksportu -DocType: Block Module,Module, +DocType: Block Module,Module,Moduł DocType: Email Alert,Send Alert On,Wyślij alarm na DocType: Web Form,Website URL,URL strony WWW DocType: Customize Form,"Customize Label, Print Hide, Default etc.", @@ -147,8 +147,8 @@ DocType: Print Format,Verdana, apps/frappe/frappe/core/doctype/user/user.py +203,User {0} cannot be deleted,Użytkownik {0} nie może być usunięty sites/assets/js/desk.min.js +265,Another transaction is blocking this one. Please try again in a few seconds.,Kolejna transakcja jest blokowanie tego. Prosimy spróbować ponownie za kilka sekund. DocType: Property Setter,Field Name,Nazwa pola -sites/assets/js/desk.min.js +771,or, -sites/assets/js/desk.min.js +925,module name...,Moduł nazwa ... +sites/assets/js/desk.min.js +771,or,albo +sites/assets/js/desk.min.js +925,module name...,Nazwa Modułu... apps/frappe/frappe/templates/generators/web_form.html +267,Continue,Kontynuuj DocType: Custom Field,Fieldname,Nazwa pola DocType: Workflow State,certificate,certyfikat @@ -194,12 +194,12 @@ sites/assets/js/editor.min.js +125,Indent (Tab),Tiret (tab) DocType: Workflow State,List,lista DocType: Page Role,Page Role,Rola strony apps/frappe/frappe/core/doctype/doctype/doctype.py +252,Field {0} in row {1} cannot be hidden and mandatory without default,Pole {0} w rzędzie {1} nie może być ukryte i obowiązkowe bez wartości domyślnej -DocType: System Settings,mm/dd/yyyy, +DocType: System Settings,mm/dd/yyyy,mm/dd/rrrr apps/frappe/frappe/email/doctype/email_account/email_account.py +266,Re:,Re: DocType: Currency,"Sub-currency. For e.g. ""Cent""", DocType: Letter Head,Check this to make this the default letter head in all prints,Zaznacz to aby zrobić to domyślnym nagłówkiem we wszystkich drukach DocType: Print Format,Server, -DocType: DocField,Link, +DocType: DocField,Link,Łącze apps/frappe/frappe/utils/file_manager.py +83,No file attached,Brak załączonych plików DocType: Version,Version,Wersja DocType: User,Fill Screen,Wypełnij ekran @@ -268,7 +268,7 @@ apps/frappe/frappe/desk/query_report.py +19,You don't have access to Report: {0} DocType: User,Send Welcome Email,Wyślij e-mail powitalny apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,Prześlij plik CSV zawierający wszystkie uprawnienia użytkowników w tym samym formacie co Ściągniecie. DocType: Feed,Doc Name,Doc Name -DocType: DocField,Heading, +DocType: DocField,Heading,Nagłówek DocType: Workflow State,resize-vertical, DocType: Contact Us Settings,Introductory information for the Contact Us Page, DocType: Workflow State,thumbs-down, @@ -276,10 +276,10 @@ apps/frappe/frappe/core/doctype/page/page.py +32,Not in Developer Mode,Nie w try DocType: Comment,Comment Time,Czas Komentarza DocType: Workflow State,indent-left, DocType: Currency,Currency Name,Nazwa waluty -DocType: Report,Javascript, +DocType: Report,Javascript,javascript DocType: File Data,Content Hash,Hash zawartości DocType: User,Stores the JSON of last known versions of various installed apps. It is used to show release notes.,"Sklepy JSON z ostatnich znanych wersjach o różnych zainstalowanych aplikacji. Jest on stosowany, aby zobaczyć informacje o wersji." -DocType: Website Theme,Google Font (Text),Google Font (Tekst) +DocType: Website Theme,Google Font (Text),Google Czcionka (Tekst) apps/frappe/frappe/core/page/permission_manager/permission_manager.js +323,Did not remove,Nie usunięto DocType: Report,Query,Zapytanie DocType: DocType,Sort Order,Kolejność @@ -323,7 +323,7 @@ apps/frappe/frappe/print/page/print_format_builder/print_format_builder_field.ht apps/frappe/frappe/core/page/permission_manager/permission_manager.js +494,Restore Original Permissions,Przywracanie pierwotnych uprawnień DocType: DocField,Button,Przycisk DocType: Email Account,Default Outgoing,Domyślnie Wychodzący -DocType: Workflow State,play, +DocType: Workflow State,play,play apps/frappe/frappe/templates/emails/new_user.html +5,Click on the link below to complete your registration and set a new password,"Kliknij na link poniżej, aby dokończyć rejestrację i ustawić nowe hasło" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +403,Did not add,Nie dodano DocType: Contact Us Settings,Contact Us Settings,"Ustawinia ""Skontaktuj się z nami""" @@ -332,7 +332,7 @@ DocType: Email Alert,View Properties (via Customize Form),Właściwości widoku 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,Nie można edytować szablonu strony -apps/frappe/frappe/model/document.py +641,none of, +apps/frappe/frappe/model/document.py +641,none of,żadne z apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Wyślij Uprawnienia Użytkownika apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +3,Checked items will be shown on desktop,Zaznaczone elementy zostaną pokazane na pulpicie apps/frappe/frappe/core/doctype/doctype/doctype.py +421,{0} cannot be set for Single types, @@ -352,7 +352,7 @@ apps/frappe/frappe/email/bulk.py +169,{0} has left the conversation in {1} {2},{ DocType: Blogger,User ID of a Blogger,ID użytkownika który jest Bloggerem apps/frappe/frappe/core/doctype/user/user.py +198,There should remain at least one System Manager,Nie powinno pozostać przynajmniej jeden System Manager DocType: Workflow State,circle-arrow-right, -DocType: Scheduler Log,Method, +DocType: Scheduler Log,Method,Metoda DocType: Report,Script Report, DocType: About Us Settings,Company Introduction,Wstęp o firmie DocType: DocPerm,Apply User Permissions, @@ -365,19 +365,19 @@ apps/frappe/frappe/templates/emails/print_link.html +2,View this in your browser DocType: DocType,Search Fields, sites/assets/js/desk.min.js +988,Email sent to {0},Wiadomość wysłana do {0} DocType: Event,Event,Wydarzenie -sites/assets/js/desk.min.js +997,"On {0}, {1} wrote:","Na {0}, {1} napisał:" +sites/assets/js/desk.min.js +997,"On {0}, {1} wrote:","W terminie {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,Dla górnej zakładki DocType: Print Settings,In points. Default is 9.,W punktach. Domyślnie jest 9. sites/assets/js/editor.min.js +123,Reduce indent (Shift+Tab),Zmniejsz wcięcie (Shift + Tab) DocType: Print Settings,"Print with Letterhead, unless unchecked in a particular Document","Drukuj z firmowy, chyba zaznaczone w danym dokumencie" -DocType: Workflow State,heart, -DocType: Workflow State,minus, +DocType: Workflow State,heart,serce +DocType: Workflow State,minus,minus sites/assets/js/desk.min.js +266,Server Error: Please check your server logs or contact tech support., apps/frappe/frappe/core/doctype/user/user.py +116,Welcome email sent,E-mail z powitaniem został wysłany apps/frappe/frappe/core/doctype/user/user.py +361,Already Registered,Już zarejestrowano DocType: System Settings,Float Precision,Precyzja float'u -DocType: Property Setter,Property Setter, +DocType: Property Setter,Property Setter,Osoba Ustawiająca Właściwość apps/frappe/frappe/core/page/user_permissions/user_permissions.js +217,Select User or DocType to start., apps/frappe/frappe/desk/page/applications/applications.js +24,No Apps Installed,Brak aplikacji zainstalowanych apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +181,Mark the field as Mandatory,Zaznacz to pole jako obowiązkowe @@ -386,7 +386,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.,Dodaj niestandardowe formy. 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,Kategoria Blogu DocType: User,Roles HTML, apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +109,All customizations will be removed. Please confirm.,Wszystkie zmiany zostaną usunięte. Proszę potwierdzić. DocType: Page,Page HTML,Strona HTML @@ -403,7 +403,7 @@ apps/frappe/frappe/desk/query_report.py +76,Must specify a Query to run, apps/frappe/frappe/config/setup.py +66,"Language, Date and Time settings","Ustawienia Języka, Daty i Czasu" DocType: User,Represents a User in the system.,Reprezentuje użytkownika w systemie. apps/frappe/frappe/desk/form/assign_to.py +114,"The task {0}, that you assigned to {1}, has been closed.","Zadanie {0}, które przypisane do {1}, został zamknięty." -DocType: User,Modules Access,Moduły dostępu +DocType: User,Modules Access,Dostęp do Modułu DocType: Print Format,Print Format Type, sites/assets/js/desk.min.js +936,Open Source Applications for the Web,Open Source Wnioski o internecie DocType: Website Theme,"Add the name of a ""Google Web Font"" e.g. ""Open Sans""",Dodaj nazwę "Google Web Font" np "Otwórz Sans" @@ -469,7 +469,7 @@ apps/frappe/frappe/utils/nestedset.py +221,Multiple root nodes not allowed., sites/assets/js/desk.min.js +689,Get,Uzyskaj sites/assets/js/desk.min.js +206,Confirm,Potwierdzać DocType: System Settings,yyyy-mm-dd,rrrr-mm-dd -apps/frappe/frappe/email/doctype/email_account/email_account.py +37,Login Id is required,Identyfikator logowania jest wymagane +apps/frappe/frappe/email/doctype/email_account/email_account.py +37,Login Id is required,Identyfikator logowania jest wymagany DocType: Website Slideshow,Website Slideshow,Pokaz slajdów Strony Internetowej DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)", sites/assets/js/editor.min.js +105,Bullet list,Lista punktowana @@ -488,8 +488,8 @@ apps/frappe/frappe/email/smtp.py +58,Please setup default Email Account from Set DocType: Workflow State,move,ruch DocType: Web Form,Actions,Działania DocType: Workflow State,align-justify,Wyrównaj do lewej i do prawej -DocType: User,Middle Name (Optional), -sites/assets/js/desk.min.js +605,No Results, +DocType: User,Middle Name (Optional),Drugie imię (opcjonalnie) +sites/assets/js/desk.min.js +605,No Results,Brak Wyników DocType: System Settings,Security, DocType: Currency,**Currency** Master,** Waluta ** Główna DocType: Website Settings,Address and other legal information you may want to put in the footer.,"Adres i pewne informacje prawne, które załączyć można w stopce." @@ -500,13 +500,13 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,jasny apps/frappe/frappe/desk/doctype/event/event.py +28,Every day events should finish on the same day.,Codzienne wydarzenia powinny kończyć się tego samego dnia DocType: Communication,User Tags,Tagi Użytkownika DocType: Workflow State,download-alt,download-alt -DocType: Web Page,Main Section, +DocType: Web Page,Main Section,Główna Sekcja apps/frappe/frappe/core/doctype/doctype/doctype.py +225,{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, DocType: Website Settings,"An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org]", -DocType: Blog Settings,Blog Settings, +DocType: Blog Settings,Blog Settings,Ustawienia Blogu apps/frappe/frappe/templates/emails/new_user.html +8,You can also copy-paste this link in your browser,Można również skopiować i wkleić ten link w przeglądarce DocType: Workflow State,bullhorn, DocType: Social Login Keys,Facebook Client Secret,Sekret Klienta Facebook @@ -524,7 +524,7 @@ DocType: DocPerm,If user is the owner,Jeśli użytkownik jest właścicielem DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")", 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, +DocType: Workflow State,leaf,liść 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,Opcje Zapytania @@ -540,10 +540,10 @@ DocType: User,System User, DocType: Report,Is Standard, apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +218,Specify a default value,Określić wartość domyślną DocType: Website Settings,FavIcon,Favicon -DocType: Workflow State,minus-sign, +DocType: Workflow State,minus-sign,znak minusa sites/assets/js/desk.min.js +264,Not Found,Nie znaleziono apps/frappe/frappe/templates/pages/print.py +134,No {0} permission,Nie {0} zgoda -DocType: Feed,Login, +DocType: Feed,Login,Zaloguj się DocType: System Settings,Enable Scheduled Jobs,Włącz zaplanowane zadania apps/frappe/frappe/core/page/data_import_tool/exporter.py +60,Notes:,Notatki: sites/assets/js/desk.min.js +593,Markdown,Obniżka cen @@ -573,7 +573,7 @@ DocType: Workflow State,repeat,powtórz DocType: Website Settings,Banner,Baner sites/assets/js/desk.min.js +917,Help on Search,Pomoc w wyszukiwaniu DocType: User,Uncheck modules to hide from user's desktop,"Usuń zaznaczenie, aby ukryć moduły z pulpitu użytkownika" -DocType: DocType,Hide Copy, +DocType: DocType,Hide Copy,Ukryj Kopie apps/frappe/frappe/core/doctype/user/user.js +166,Clear all roles,Wyczyść wszystkie pola apps/frappe/frappe/model/base_document.py +296,{0} must be unique,{0} musi być unikalny apps/frappe/frappe/permissions.py +228,Row,Wiersz @@ -582,7 +582,7 @@ 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,Podpis pod Email DocType: Website Settings,Google Analytics ID, -DocType: Website Theme,Link to your Bootstrap theme,Link do tematu Bootstrap +DocType: Website Theme,Link to your Bootstrap theme,Łącze do motywu Bootstrap'u sites/assets/js/desk.min.js +593,Edit as {0},Edycja jako {0} 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 @@ -591,16 +591,16 @@ DocType: Print Settings,PDF Page Size,Rozmiar Strony PDF sites/assets/js/desk.min.js +947,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. sites/assets/js/desk.min.js +965,Attach Document Print, -DocType: Social Login Keys,Google Client ID, +DocType: Social Login Keys,Google Client ID,Identyfikator Klienta Google apps/frappe/frappe/core/doctype/user/user.py +63,Adding System Manager to this User as there must be atleast one System Manager, DocType: Workflow State,list-alt, apps/frappe/frappe/templates/pages/update-password.html +63,Password Updated,Hasło zaktualizowane apps/frappe/frappe/core/page/modules_setup/modules_setup.js +18,"Select modules to be shown (based on permission). If hidden, they will be hidden for all users.", apps/frappe/frappe/core/page/user_permissions/user_permissions.js +149,Permissions Updated,Zaktualizowano Uprawnienia apps/frappe/frappe/email/doctype/email_account/email_account.py +45,Append To is mandatory for incoming mails,Dołącz do jest obowiązkowe dla przychodzących maili -apps/frappe/frappe/core/doctype/doctype/doctype.py +239,Options requried for Link or Table type field {0} in row {1}, +apps/frappe/frappe/core/doctype/doctype/doctype.py +239,Options requried for Link or Table type field {0} in row {1},Opcje są wymagane dla Linku lub okienka {0} rzędu {1} DocType: Report,Query Report,Raport zapytania -DocType: Communication,On, +DocType: Communication,On,włączony DocType: User,Set New Password,Ustaw nowe hasło DocType: User,Github User ID,identyfikator klienta GitHub-u apps/frappe/frappe/core/page/user_permissions/user_permissions.js +246,If Document Type,Jeżeli Rodzaj dokumentu @@ -610,7 +610,7 @@ DocType: Workflow State,arrow-down, sites/assets/js/desk.min.js +874,Collapse,Zwiń apps/frappe/frappe/model/delete_doc.py +131,User not allowed to delete {0}: {1},Użytkownik nie może usuwać {0}: {1} DocType: Website Settings,Linked In Share, -sites/assets/js/desk.min.js +622,Last Updated On,Zmieniony +sites/assets/js/desk.min.js +622,Last Updated On,Zmieniony Dnia DocType: Website Settings,Top Bar, sites/assets/js/desk.min.js +549,Please save the document before uploading.,Proszę zapisać dokument przed wysłaniem. sites/assets/js/desk.min.js +257,Enter your password,Wpisz swoje hasło @@ -623,7 +623,7 @@ 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,Wartość dla checkboxu może wynosić 0 albo 1 apps/frappe/frappe/model/document.py +477,Could not find {0},Nie znaleziono: {0} apps/frappe/frappe/core/page/data_import_tool/exporter.py +227,Column Labels:,Etykiety kolumn: -apps/frappe/frappe/model/naming.py +62,Naming Series mandatory, +apps/frappe/frappe/model/naming.py +62,Naming Series mandatory,Seria Nazw jest obowiązkowa DocType: Social Login Keys,Facebook Client ID,ID Klienta Facebook DocType: Workflow State,Inbox,Skrzynka odbiorcza DocType: Workflow State,Tag, @@ -641,7 +641,7 @@ DocType: Workflow State,wrench,klucz DocType: Website Settings,Disable Signup,Wyłącz rejestrację 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,Szukaj na stronie internetowej -DocType: DocField,Mandatory, +DocType: DocField,Mandatory,Obowiązkowe apps/frappe/frappe/core/doctype/doctype/doctype.py +361,{0}: No basic permissions set,{0}: Brak podstawowych uprawnień apps/frappe/frappe/utils/backups.py +142,Download link for your backup will be emailed on the following email address: {0},Link pobierania dla twojej kopii zapasowej zostanie wysłany na następujący adres mailowy: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend", @@ -650,14 +650,14 @@ sites/assets/js/editor.min.js +94,Paragraph,Paragraf 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. apps/frappe/frappe/desk/doctype/todo/todo.py +17,Assigned to {0}: {1},Przypisany do {0}: {1} DocType: DocField,Percent,Procent -DocType: Workflow State,book, +DocType: Workflow State,book,książka DocType: Website Settings,Landing Page, apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria., apps/frappe/frappe/config/setup.py +120,Setup Email Alert based on various criteria.,Ustawienia E-mail Alert na podstawie różnych kryteriów. apps/frappe/frappe/website/doctype/blog_post/blog_post.py +93,Posts filed under {0},Stanowisk złożony w ramach {0} DocType: Email Alert,Send alert if date matches this field's value,"Wyślij alert, jeśli termin odpowiada wartości tego pola jest" DocType: Workflow,Transitions,Przejścia -DocType: User,Login After, +DocType: User,Login After,Logowanie Po DocType: Print Format,Monospace,Monospace DocType: Workflow State,thumbs-up, sites/assets/js/desk.min.js +965,Add Reply,Dodaj Odpowiedź @@ -709,7 +709,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +214,Show a d DocType: Workflow State,align-left,Wyrównaj do lewej DocType: User,Defaults,Wartości domyślne sites/assets/js/desk.min.js +641,Merge with existing,Połączy się z istniejącą -DocType: User,Birth Date, +DocType: User,Birth Date,Data Urodzenia DocType: Workflow State,fast-backward,fast-backward DocType: DocShare,DocShare,DocShare DocType: Report,Add Total Row, @@ -751,28 +751,28 @@ sites/assets/js/list.min.js +21,Not Saved,Nie Zapisane DocType: Custom Field,Default Value,Domyślna wartość sites/assets/js/desk.min.js +257,Verify,Zweryfikować DocType: Workflow Document State,Update Field,Zaktualizuj Pole -apps/frappe/frappe/email/doctype/email_account/email_account.py +272,Leave this conversation,Zostaw tę rozmowę -apps/frappe/frappe/model/base_document.py +362,Options not set for link field {0}, +apps/frappe/frappe/email/doctype/email_account/email_account.py +272,Leave this conversation,Opuść tę rozmowę +apps/frappe/frappe/model/base_document.py +362,Options not set for link field {0},Nie zostały wybrane opcje dla okienka {0} DocType: Workflow State,asterisk, apps/frappe/frappe/core/page/data_import_tool/exporter.py +61,Please do not change the template headings.,Proszę nie zmieniać pozycje szablonów. DocType: Workflow State,shopping-cart, -DocType: Social Login Keys,Google, +DocType: Social Login Keys,Google,Google DocType: Workflow State,Inverse, DocType: DocField,User permissions should not apply for this Link,Uprawnienia Użytkownika nie powinny być zaaplikowane do tego Linku apps/frappe/frappe/model/naming.py +90,Invalid naming series (. missing),Nieprawidłowy serii nazewnictwa (. Brakuje) DocType: System Settings,Language,Język DocType: DocPerm,Cancel,Anuluj DocType: Web Page,Page content,Zawartość strony -apps/frappe/frappe/core/page/data_import_tool/exporter.py +91,Leave blank for new records,Zostaw puste dla nowych rekordów +apps/frappe/frappe/core/page/data_import_tool/exporter.py +91,Leave blank for new records,Zostaw puste dla nowych wierszy apps/frappe/frappe/config/website.py +79,List of themes for Website.,Lista tematów na stronie internetowej. -sites/assets/js/desk.min.js +947,Logout, +sites/assets/js/desk.min.js +947,Logout,Wylogowany apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +26,Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles.,"Uprawnienia na wyższych poziomach są uprawnienia terenie. Wszystkie pola mają zestaw poziom uprawnień w stosunku do nich oraz zasady określone w które uprawnienia zastosowania w dziedzinie. Jest to przydatne w przypadku, gdy chcesz, aby ukryć lub upewnić pola tylko do odczytu dla niektórych ról." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +38,"If these instructions where not helpful, please add in your suggestions on GitHub Issues.", DocType: Workflow State,bookmark, DocType: Currency,Symbol, apps/frappe/frappe/model/base_document.py +403,Row #{0}:,Wiersz # {0}: apps/frappe/frappe/core/doctype/user/user.py +81,New password emailed, -apps/frappe/frappe/auth.py +209,Login not allowed at this time, +apps/frappe/frappe/auth.py +209,Login not allowed at this time,Login nie jest dostępny w tym czasie DocType: DocType,Permissions Settings,Ustawienia Uprawnień sites/assets/js/desk.min.js +931,{0} List,{0} Lista apps/frappe/frappe/desk/form/assign_to.py +39,Already in user's To Do list,"Jest już na liście ""To Do"" użytkownika" @@ -783,7 +783,7 @@ apps/frappe/frappe/config/setup.py +125,Standard replies to common queries.,Stan sites/assets/js/desk.min.js +947,Report an Issue, apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Domyślnie Wysyłanie DocType: Workflow State,volume-off,wyłącz-głośność -DocType: Custom Field,Properties, +DocType: Custom Field,Properties,Właściwości apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +47,"Do not update, but insert new records.","Nie aktualizuj, ale wstaw nowe rekordy." DocType: DocField,Dynamic Link,Link dynamiczny DocType: Property Setter,DocType or Field,DocType albo Pole @@ -822,12 +822,12 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +49,Refresh F DocType: DocField,Select,Wybierz apps/frappe/frappe/utils/csvutils.py +25,File not attached,Plik nie dołączony DocType: Top Bar Item,"If you set this, this Item will come in a drop-down under the selected parent.", -apps/frappe/frappe/model/db_query.py +393,Please select atleast 1 column from {0} to sort, +apps/frappe/frappe/model/db_query.py +393,Please select atleast 1 column from {0} to sort,Proszę wybrać przynajmniej jedną kolumnę dla posortowania {0} apps/frappe/frappe/templates/pages/print.py +160,No template found at path: {0},Nie znaleziono przy drodze szablon: {0} DocType: Website Settings,"Menu items in the Top Bar. For setting the color of the Top Bar, go to selected Website Theme.","Pozycje menu w górnym pasku. W celu ustawienia koloru w górnym pasku, przejdź do wybranego tematu witryny." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53,Submit after importing.,Prześlij po zaimportowaniu. DocType: Blogger,Avatar, -DocType: Blogger,Posts, +DocType: Blogger,Posts,Posty sites/assets/js/desk.min.js +992,Dear,Drogi sites/assets/js/report.min.js +2,Tip: Double click cell to edit,"Wskazówka: Kliknij dwukrotnie komórkę, aby edytować" DocType: ToDo,Description and Status,Opis i Status @@ -840,7 +840,7 @@ DocType: Workflow State,tint, DocType: Workflow State,Style, apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +55,e.g.:,np: apps/frappe/frappe/website/doctype/blog_post/blog_post.py +166,{0} comments,Komentarze {0} -DocType: Customize Form Field,Label and Type, +DocType: Customize Form Field,Label and Type,etykieta i typ DocType: Workflow State,forward,prześlij dalej sites/assets/js/form.min.js +274,{0} edited this {1},{0} edytować {1} to DocType: Web Page,Custom Javascript,Niestandardowy JavaScript @@ -876,7 +876,7 @@ apps/frappe/frappe/utils/data.py +486,{0} or {1},{0} i {1} apps/frappe/frappe/core/doctype/user/user.py +157,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,Leave blank to repeat always,Zostaw puste by zawsze powtarzać 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 +274,{0} created this {1},{0} stworzył ten {1} @@ -919,18 +919,18 @@ DocType: Custom Script,Script Type, DocType: Email Account,Footer,Stopka apps/frappe/frappe/utils/verified_command.py +39,Invalid Link,Nieprawidłowy link DocType: Web Page,Show Title,Pokaż Tytuł -DocType: Property Setter,Property Type, +DocType: Property Setter,Property Type,Typ Właściwości DocType: Workflow State,screenshot, apps/frappe/frappe/core/doctype/report/report.py +24,Only Administrator can save a standard report. Please rename and save., DocType: DocField,Data,Dane sites/assets/js/desk.min.js +622,Document Status,Stan dokumentu -DocType: Email Account,Login Id, -apps/frappe/frappe/core/page/data_import_tool/importer.py +176,Not allowed to Import, +DocType: Email Account,Login Id,identyfikator Loginu +apps/frappe/frappe/core/page/data_import_tool/importer.py +176,Not allowed to Import,Brak potwierdzenia do importu apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +22,Permission Levels,Poziomy dostępu DocType: Workflow State,Warning,Ostrzeżenie DocType: DocType,In Dialog, apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +142,Help,Pomoc -DocType: User,Login Before, +DocType: User,Login Before,Logowanie Przed DocType: Web Page,Insert Style, 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 @@ -954,16 +954,16 @@ DocType: Workflow State,th, sites/assets/js/desk.min.js +576,Create a new {0},Utwórz nowy {0} sites/assets/js/desk.min.js +931,Report {0},Zgłoś {0} sites/assets/js/desk.min.js +931,Open {0},Otwórz {0} -DocType: Workflow State,ok-sign, +DocType: Workflow State,ok-sign,ok-sign sites/assets/js/form.min.js +160,Duplicate,Duplikat apps/frappe/frappe/email/doctype/email_alert/email_alert.py +16,Please specify which value field must be checked,Proszę określić wartość pola muszą być sprawdzone apps/frappe/frappe/core/page/data_import_tool/exporter.py +69,"""Parent"" signifies the parent table in which this row must be added","""Rodzic"" oznacza tabelę nadrzędną, w której ten wiersz musi być dodany" DocType: Website Theme,Apply Style, sites/assets/js/form.min.js +291,Shared With,Udostępnione -,Modules Setup, +,Modules Setup,Ustawienia Modułów apps/frappe/frappe/core/page/data_import_tool/exporter.py +230,Type:,Typ: -apps/frappe/frappe/desk/moduleview.py +57,Module Not Found, -DocType: User,Location, +apps/frappe/frappe/desk/moduleview.py +57,Module Not Found,Moduł nie został znaleziony +DocType: User,Location,Lokacja ,Permitted Documents For User,Dopuszczalne Dokumenty dla użytkownika apps/frappe/frappe/core/doctype/docshare/docshare.py +40,"You need to have ""Share"" permission","Musisz mieć uprawnienia ""Udostępnij""" sites/assets/js/form.min.js +213,Bulk Edit {0},Luzem Edycja {0} @@ -1004,7 +1004,7 @@ DocType: Workflow State,chevron-down, DocType: Workflow State,th-list, 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) +DocType: Website Theme,Google Font (Heading),Google Czcionka (Nagłówek) sites/assets/js/desk.min.js +931,Find {0} in {1},Znajdź {0} w {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,Pozwól na Import przez Narzędzie Importu Danych @@ -1014,19 +1014,19 @@ apps/frappe/frappe/config/setup.py +8,Users,Użytkownicy DocType: Email Account,Signature,Podpis apps/frappe/frappe/config/website.py +84,"Enter keys to enable login via Facebook, Google, GitHub.","Wciśnij klawisze by umożliwić logowanie przez Facebook, Google, GitHub." sites/assets/js/list.min.js +69,Add a tag,Dodaj znacznik -sites/assets/js/desk.min.js +561,Please attach a file first., +sites/assets/js/desk.min.js +561,Please attach a file first.,Proszę najpierw załączyć plik 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,Przedmiot pokazu slajdów strony internetowej DocType: DocType,Title Case, DocType: Blog Post,Email Sent,Wiadomość wysłana sites/assets/js/desk.min.js +965,Send As Email, -DocType: Website Theme,Link Color,Link Kolor +DocType: Website Theme,Link Color,Kolor Łącza apps/frappe/frappe/core/doctype/user/user.py +47,User {0} cannot be disabled,Użytkownik {0} nie może być wyłączony apps/frappe/frappe/core/doctype/user/user.py +479,"Dear System Manager,",Szanowny Dyrektorze ds. Systemu sites/assets/js/form.min.js +182,Amending,Zmieniająca sites/assets/js/desk.min.js +598,Dialog box to select a Link Value,"Okno dialogowe, aby wybrać wartość łącza" DocType: Contact Us Settings,Send enquiries to this email address, -DocType: Letter Head,Letter Head Name, +DocType: Letter Head,Letter Head Name,Nazwa nagłówka apps/frappe/frappe/config/website.py +23,User editable form on Website.,Formularz edytowalny przez Użytkownia na stronie WWW DocType: Workflow State,file,plik apps/frappe/frappe/model/rename_doc.py +97,You need write permission to rename,Musisz mieć uprawnienia zapisu by zmienić nazwę @@ -1047,7 +1047,7 @@ apps/frappe/frappe/desk/form/save.py +21,{0} {1} already exists,{0} {1} już ist apps/frappe/frappe/email/doctype/email_account/email_account.py +61,Append To can be one of {0},Dołącz do może być jednym z {0} DocType: User,Github Username,Nazwa użytkownika Github DocType: Web Page,Title / headline of your page, -DocType: DocType,Plugin, +DocType: DocType,Plugin,plugin sites/assets/js/desk.min.js +977,Add Attachments,Dodaj załączniki DocType: Workflow State,signal, DocType: DocType,Show Print First, @@ -1059,18 +1059,18 @@ DocType: Website Theme,Top Bar Text Color,Top Bar Kolor tekstu apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +367,Remove Section,Usuń sekcję sites/assets/js/desk.min.js +521,Invalid Email: {0}, apps/frappe/frappe/desk/doctype/event/event.py +20,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,Wróć +apps/frappe/frappe/templates/includes/sidebar.html +7,Back,Wstecz apps/frappe/frappe/desk/query_report.py +22,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 +579,Advanced Search,Wyszukiwanie zaawansowane apps/frappe/frappe/core/doctype/user/user.py +390,Password reset instructions have been sent to your email, -apps/frappe/frappe/config/setup.py +214,Manage cloud backups on Dropbox, +apps/frappe/frappe/config/setup.py +214,Manage cloud backups on Dropbox,Zarządzaj kopią chmury na Dropboxie DocType: Workflow,States, DocType: Email Alert,Attach Print,Dołączyć Drukuj 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 +36,{0} not allowed in name,{0} nie jest dozwolone w nazwie DocType: Workflow State,circle-arrow-left, apps/frappe/frappe/sessions.py +109,Redis cache server not running. Please contact Administrator / Tech support,Redis serwer cache nie działa. Prosimy o kontakt administratora / wsparcia Tech -sites/assets/js/desk.min.js +918,Make a new record,Dodać nowy rekord +sites/assets/js/desk.min.js +918,Make a new record,Dodaj nowy rekord DocType: Currency,Fraction,Ułamek sites/assets/js/desk.min.js +550,Select from existing attachments,Wybierz z istniejących załączników DocType: Custom Field,Field Description,Opis pola @@ -1078,7 +1078,7 @@ 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,Pozwól na Import -apps/frappe/frappe/templates/includes/comments/comments.py +57,New comment on {0} {1}, +apps/frappe/frappe/templates/includes/comments/comments.py +57,New comment on {0} {1},Nowy komentarz na {0} {1} DocType: Workflow State,glass,szkło DocType: Country,Time Zones, DocType: Workflow State,remove-sign,usuń-znak @@ -1124,20 +1124,20 @@ apps/frappe/frappe/website/doctype/blog_post/blog_post.py +84,Blog,Blog DocType: Workflow State,hand-right, DocType: Website Settings,Subdomain, DocType: Web Form,Allow Delete,Pozwól Usuń -DocType: Email Alert,Message Examples,Przykłady wiadomość +DocType: Email Alert,Message Examples,Przykłady wiadomości DocType: Web Form,Login Required,Wymagane zalogowanie się apps/frappe/frappe/config/website.py +59,Write titles and introductions to your blog., DocType: Email Account,Notify if unreplied for (in mins),Informuj jeśli Tematy bez do (w min) apps/frappe/frappe/config/website.py +64,Categorize blog posts.,Skategoryzowane posty blogowe DocType: DocField,Attach, DocType: DocType,Permission Rules,Reguły dostępu -sites/assets/js/form.min.js +159,Links,Linki +sites/assets/js/form.min.js +159,Links,Łącza apps/frappe/frappe/model/base_document.py +331,Value missing for,Brakuje wartości dla apps/frappe/frappe/model/delete_doc.py +135,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Napisał Record nie mogą być usunięte. sites/assets/js/desk.min.js +919,new type of document,nowy typ dokumentu DocType: DocPerm,Read,Czytać apps/frappe/frappe/templates/pages/update-password.html +10,Old Password,Stare hasło -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +97,Posts by {0},Posty przez {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +97,Posts by {0},Posty stworzone przez {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 +427,{0}: Cannot set Assign Amend if not Submittable, apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Edytuj Uprawnienia ról @@ -1152,7 +1152,7 @@ DocType: Website Settings,"If checked, the Home page will be the default Item Gr DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)", sites/assets/js/desk.min.js +947,Forums,Fora apps/frappe/frappe/core/page/user_permissions/user_permissions.js +297,Add A User Restriction,Dodaj ograniczenie użytkownika -DocType: DocType,Name Case, +DocType: DocType,Name Case,Nazwa Sprawy sites/assets/js/form.min.js +278,Shared with everyone,Udostępnione wszystkim apps/frappe/frappe/model/base_document.py +327,Data missing in table,Brakujące informacje w tabelce DocType: Web Form,Success URL,Sukces URL @@ -1171,7 +1171,7 @@ apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your ema apps/frappe/frappe/email/smtp.py +146,Could not connect to outgoing email server,Nie można połączyć z wychodzącym serwerem e-mail sites/assets/js/desk.min.js +593,Rich Text,Rich Text DocType: Workflow State,resize-full, -DocType: Workflow State,off, +DocType: Workflow State,off,wyłączony apps/frappe/frappe/desk/query_report.py +26,Report {0} is disabled,Zgłoś {0} jest wyłączony apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +24,Recommended for inserting new records.,Zalecany do wstawiania nowych rekordów. DocType: Block Module,Core,Rdzeń @@ -1203,17 +1203,17 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +273,Default for {0} must be DocType: User,User Image,Zdjęcie Użytkownika apps/frappe/frappe/email/bulk.py +178,Emails are muted,Email wyciszony sites/assets/js/form.min.js +199,Ctrl + Up,Ctrl + strzałka w górę -DocType: Website Theme,Heading Style,Nagłówek Style +DocType: Website Theme,Heading Style,Nagłówek Styl apps/frappe/frappe/desk/page/applications/applications.py +34,You cannot install this app, DocType: Scheduler Log,Error,Błąd apps/frappe/frappe/model/document.py +482,Cannot link cancelled document: {0},Nie można połączyć anulowany dokument: {0} apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +550,"For example: If you want to include the document ID, use {0}","Na przykład: Jeśli chcesz dołączyć identyfikator dokumentu, należy użyć {0}" apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +479,Select Table Columns for {0},Wybierz kolumny tabeli dla {0} -DocType: Custom Field,Options Help, +DocType: Custom Field,Options Help,Opcje Pomocy DocType: DocField,Report Hide, -DocType: Custom Field,Label Help, +DocType: Custom Field,Label Help,pomoc w etykiecie DocType: Workflow State,star-empty, -DocType: Workflow State,ok, +DocType: Workflow State,ok,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., apps/frappe/frappe/desk/page/applications/application_row.html +15,Publisher,Wydawca sites/assets/js/desk.min.js +846,Browse,Przeglądaj @@ -1222,7 +1222,7 @@ apps/frappe/frappe/templates/pages/update-password.html +1,Reset Password,Reseto DocType: Workflow State,hand-left, apps/frappe/frappe/core/doctype/doctype/doctype.py +281,Fieldtype {0} for {1} cannot be unique,Typ pola {0} do {1} nie może być unikalny DocType: Email Account,Use SSL,Użyj SSL -DocType: Workflow State,play-circle, +DocType: Workflow State,play-circle,play-circle apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +75,Select Print Format to Edit,Wybierz format wydruku Edycja DocType: Workflow State,circle-arrow-down, DocType: DocField,Datetime,Data-czas @@ -1230,7 +1230,7 @@ DocType: Workflow State,arrow-right, DocType: Workflow State,Workflow state represents the current state of a document.,Stan Przepływu Pracy reprezentuje aktualny stan dokumentu. sites/assets/js/editor.min.js +152,Open Link in a new Window,Otwórz link w nowym oknie apps/frappe/frappe/utils/file_manager.py +235,Removed {0},Usunięto {0} -DocType: Company History,Highlight, +DocType: Company History,Highlight,Leflektor apps/frappe/frappe/print/doctype/print_format/print_format.py +18,Standard Print Format cannot be updated, apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +146,Help: Field Properties,Pomoc: Właściwości terenowe apps/frappe/frappe/model/document.py +657,Incorrect value in row {0}: {1} must be {2} {3}, @@ -1244,7 +1244,7 @@ DocType: Email Account,Add Signature,Dodaj podpis apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Left this conversation,Opuścił tę rozmowę apps/frappe/frappe/core/page/permission_manager/permission_manager.js +474,Did not set,Nie ustawiono DocType: ToDo,ToDo, -DocType: DocField,No Copy, +DocType: DocField,No Copy,Brak kopii DocType: Workflow State,qrcode,Kod QR DocType: Web Form,Breadcrumbs,Bułka tarta apps/frappe/frappe/core/doctype/doctype/doctype.py +373,If Owner,Jeśli Właściciela @@ -1255,7 +1255,7 @@ DocType: Website Settings,Top Bar Items, DocType: Print Settings,Print Settings,Ustawienia drukowania DocType: DocType,Max Attachments, DocType: Page,Page,Strona -DocType: Workflow State,briefcase, +DocType: Workflow State,briefcase,teczka apps/frappe/frappe/model/base_document.py +420,Value cannot be changed for {0},Wartość nie może być zmieniona dla {0} 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.","Wydaje się, że napisał swoje nazwisko zamiast e-maila. \ @@ -1278,7 +1278,7 @@ apps/frappe/frappe/desk/page/activity/activity_row.html +15,Commented on {0}: {1 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +243,These restrictions will apply for Document Types where 'Apply User Permissions' is checked for the permission rule and a field with this value is present.,"Ograniczenia te mają zastosowanie do typów dokumentów, gdzie "Zastosuj uprawnień użytkownika jest sprawdzana pod kątem zasady uprawnień i pole z tej wartości jest obecny." DocType: Email Alert,Send alert if this field's value changes,Wyślij alert w przypadku zmian wartości tego pola jest apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +102,Select a DocType to make a new format,Wybierz DOCTYPE do nowego formatu -DocType: Module Def,Module Def, +DocType: Module Def,Module Def,Definicja modułu sites/assets/js/form.min.js +199,Done,Gotowe sites/assets/js/form.min.js +294,Reply,Odpowiadać DocType: Communication,By, @@ -1286,12 +1286,12 @@ 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,Co miesiąc -DocType: Letter Head,Letter Head in HTML, +DocType: Letter Head,Letter Head in HTML,Nagłówek w HTMLu DocType: Web Form,Web Form,Formularz internetowy DocType: About Us Settings,Org History Heading, DocType: Web Form,Web Page Link Text,Tekst linku do strony WWW 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: DocType,Naming,Nazwa DocType: Event,Every Year,Co rok apps/frappe/frappe/core/doctype/user/user.py +359,Registered but disabled.,Zarejestrowany ale wyłączony sites/assets/js/list.min.js +95,Delete permanently?,Usuń na stałe? @@ -1301,12 +1301,12 @@ DocType: DocPerm,Role and Level, apps/frappe/frappe/desk/moduleview.py +31,Custom Reports,Niestandardowe raporty DocType: Website Script,Website Script,Skrypt strony WWW apps/frappe/frappe/config/setup.py +147,Customized HTML Templates for printing transactions.,Dostosowane szablony HTML dla transakcji drukowania. -apps/frappe/frappe/desk/form/utils.py +103,No further records, +apps/frappe/frappe/desk/form/utils.py +103,No further records,Nie ma dlaszych zaksięgowań DocType: DocField,Long Text, apps/frappe/frappe/core/page/data_import_tool/importer.py +36,Please do not change the rows above {0}, sites/assets/js/desk.min.js +947,(Ctrl + G),(Ctrl + G) sites/assets/js/desk.min.js +903,Sorry! You are not permitted to view this page.,"Przykro mi! Nie masz wystarczających uprawnień, aby zobaczyć tę stronę." -DocType: Workflow State,bell, +DocType: Workflow State,bell,dzwonek sites/assets/js/form.min.js +290,Share this document with,Udostępnij ten dokument 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, @@ -1327,7 +1327,7 @@ DocType: Workflow State,globe, DocType: System Settings,dd.mm.yyyy,dd.mm.rrrr apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +193,Hide field in Standard Print Format,Ukryj pola w standardowym formacie Drukuj DocType: DocField,Float,Float -DocType: Module Def,Module Name, +DocType: Module Def,Module Name,Nazwa Modułu DocType: DocType,DocType is a Table / Form in the application.,DocType jest tabelą / formularzem w aplikacji. DocType: Feed,Feed Type,Typ Feed DocType: Email Account,GMail,GMail @@ -1336,12 +1336,12 @@ DocType: User,user_image_show,pokaż_obrazek_użytkownika DocType: DocField,Print Width, 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, +DocType: Workflow State,bold,Pogrubiony 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,Typ wydarzenia -DocType: User,Last Known Versions,Ostatnio znanych wersji +DocType: User,Last Known Versions,Ostatnio znane wersje apps/frappe/frappe/config/setup.py +115,Add / Manage Email Accounts.,Dodaj / Zarządzaj kontami poczty e-mail. -DocType: Blog Category,Published, +DocType: Blog Category,Published,Opublikowany apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email,Dziękujemy za wiadomość DocType: DocField,Small Text, apps/frappe/frappe/core/doctype/user/user.py +481,Administrator accessed {0} on {1} via IP Address {2}.,Administrator obejrzano {0} na {1} poprzez adres IP {2}. @@ -1350,7 +1350,7 @@ DocType: About Us Settings,Team Members Heading, DocType: DocField,Do not allow user to change after set the first time,Nie zezwól użytkownikowi zmieniać po pierwszym ustawieniu DocType: User,Third Party Authentication, DocType: Website Settings,Banner is above the Top Menu Bar.,Baner jest nad górną zakładką menu -DocType: Email Account,Port, +DocType: Email Account,Port,Port DocType: Print Format,Arial, DocType: Website Slideshow,Slideshow like display for the website,Pokaz slajdów jak wyświetlaczem stronie sites/assets/js/editor.min.js +121,Center (Ctrl/Cmd+E),Środek (Ctrl / Cmd + E) @@ -1367,7 +1367,7 @@ DocType: Web Form,"In JSON as
    [{""title"":""Jobs"", ""name"":""jobs""}]\
     
  • field:[fieldname] - By Field\
  • naming_series: - By Naming Series (field called naming_series must be present\ @@ -1473,7 +1473,7 @@ DocType: DocType,"\
  • Wiersz - Pytaj użytkownika o nazwę \
  • [seria] - Seria prefiksem (oddzielone kropką); np PRE ##### \ ') ""> Nazywanie Opcje " -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +19,Label is mandatory, +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +19,Label is mandatory,etykieta jest obowiązkowa DocType: DocField,Unique,Unikalny DocType: File Data,File Name,Nazwa pliku apps/frappe/frappe/core/page/data_import_tool/importer.py +261,Did not find {0} for {0} ({1}),Nie znaleziono {0} dla {0} ({1}) @@ -1499,12 +1499,12 @@ apps/frappe/frappe/model/document.py +392,Please refresh to get the latest docum DocType: User,Security Settings, ,Desktop,Pulpit DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Tekst, który będzie wyświetlany na link do strony WWW, jeśli ta forma ma stronę internetową. Trasa link zostanie automatycznie generowane na podstawie `page_name` i` parent_website_route`" -sites/assets/js/desk.min.js +588,Please set {0} first,Proszę ustawić {0} pierwszy +sites/assets/js/desk.min.js +588,Please set {0} first,Proszę ustawić {0} najpierw DocType: Patch Log,Patch, apps/frappe/frappe/core/page/data_import_tool/importer.py +41,No data found,Brak danych DocType: Web Form,Allow Comments,Pozwól na Komentarze DocType: User,Background Style,Styl tła -DocType: System Settings,mm-dd-yyyy, +DocType: System Settings,mm-dd-yyyy,mm-dd-rrrr apps/frappe/frappe/desk/doctype/feed/feed.py +91,{0} logged in,{0} zalogowany DocType: Workflow,"All possible Workflow States and roles of the workflow. Docstatus Options: 0 is""Saved"", 1 is ""Submitted"" and 2 is ""Cancelled""","Wszystkie możliwe Workflow członkowskie i role workflow. Docstatus Opcje: 0 jest "zapisane", 1 "Wysłane" i 2 "Anulowane"" diff --git a/frappe/translations/pt-BR.csv b/frappe/translations/pt-BR.csv index 96f0a2bc20..41e4531139 100644 --- a/frappe/translations/pt-BR.csv +++ b/frappe/translations/pt-BR.csv @@ -1,5 +1,5 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +224,Press Esc to close,Pressione Esc para fechar -apps/frappe/frappe/desk/form/assign_to.py +127,"A new task, {0}, has been assigned to you by {1}. {2}","Uma nova tarefa, {0}, foi atribuído a você por {1}. {2}" +apps/frappe/frappe/desk/form/assign_to.py +127,"A new task, {0}, has been assigned to you by {1}. {2}","Uma nova tarefa, {0}, foi atribuída a você por {1}. {2}" apps/frappe/frappe/desk/page/messages/messages_main.html +12,Post,Postagem apps/frappe/frappe/config/setup.py +98,Rename many items by uploading a .csv file.,Renomeie muitos itens fazendo o upload de um arquivo csv . . DocType: Workflow State,pause,pausa @@ -349,7 +349,7 @@ sites/assets/js/desk.min.js +608,Set Quantity,Definir Quantidade apps/frappe/frappe/core/doctype/user/user.py +378,Registration Details Emailed.,Detalhes do registro enviado por email. DocType: Top Bar Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Link para a página que você deseja abrir. Deixe em branco se você quiser torná-lo um pai grupo. DocType: DocType,Is Single,É único -apps/frappe/frappe/email/bulk.py +169,{0} has left the conversation in {1} {2},{0} foi deixada a conversa em {1} {2} +apps/frappe/frappe/email/bulk.py +169,{0} has left the conversation in {1} {2},{0} deixou a conversa em {1} {2} DocType: Blogger,User ID of a Blogger,ID do usuário de um Blogger apps/frappe/frappe/core/doctype/user/user.py +198,There should remain at least one System Manager,Não deve permanecer pelo menos um gestor de sistema DocType: Workflow State,circle-arrow-right,círculo de seta à direita @@ -843,7 +843,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +55,e.g.:,por exe apps/frappe/frappe/website/doctype/blog_post/blog_post.py +166,{0} comments,{0} comentários DocType: Customize Form Field,Label and Type,Etiqueta e Tipo DocType: Workflow State,forward,para a frente -sites/assets/js/form.min.js +274,{0} edited this {1},{0} editou este {1} +sites/assets/js/form.min.js +274,{0} edited this {1},{0} editou {1} DocType: Web Page,Custom Javascript,JavaScript Personalizado DocType: DocPerm,Submit,Enviar DocType: Website Settings,Sub-domain provided by erpnext.com,Sub-domínio fornecido pelo erpnext.com @@ -880,7 +880,7 @@ apps/frappe/frappe/desk/page/activity/activity.js +153,Dec,Dez DocType: Event,Leave blank to repeat always,Deixe em branco para repetir sempre DocType: Event,Ends on,Termina em apps/frappe/frappe/utils/nestedset.py +181,Item cannot be added to its own descendents,O artigo não pode ser acrescentado para os seus próprios descendentes -sites/assets/js/form.min.js +274,{0} created this {1},{0} criou esta {1} +sites/assets/js/form.min.js +274,{0} created this {1},{0} criou {1} apps/frappe/frappe/desk/form/assign_to.py +120,"The task {0}, that you assigned to {1}, has been closed by {2}.","A tarefa {0}, que você atribuiu a {1}, foi fechada por {2}." DocType: Blogger,Short Name,Nome Curto DocType: Workflow State,magnet,ímã @@ -912,7 +912,7 @@ apps/frappe/frappe/model/delete_doc.py +153,Cannot delete or cancel because {0} DocType: Website Settings,Twitter Share,Compartilhar Twitter DocType: Workflow State,Workflow State,Estado do Fluxo de Trabalho apps/frappe/frappe/templates/pages/me.html +1,My Account,Minha Conta -DocType: ToDo,Allocated To,Alocados para +DocType: ToDo,Allocated To,Atribuído para apps/frappe/frappe/templates/emails/password_reset.html +4,Please click on the following link to set your new password,"Por favor, clique no link a seguir para definir a sua nova senha" DocType: Email Alert,Days After,Após dias DocType: Contact Us Settings,Settings for Contact Us Page,Configurações para a página Fale Conosco @@ -1034,7 +1034,7 @@ apps/frappe/frappe/model/rename_doc.py +97,You need write permission to rename,V apps/frappe/frappe/core/page/permission_manager/permission_manager.js +433,Apply Rule,Aplicar regra DocType: User,Karma,Carma DocType: DocField,Table,Tabela -DocType: File Data,File Size,Tamanho +DocType: File Data,File Size,Tamanho do arquivo apps/frappe/frappe/website/doctype/web_form/web_form.py +130,You must login to submit this form,Você precisa estar logado para enviar este formulário DocType: User,Background Image,Imagem de Fundo sites/assets/js/form.min.js +265,New Custom Print Format,New Custom Print Format diff --git a/frappe/translations/th.csv b/frappe/translations/th.csv index 53471d21eb..73b9cc8400 100644 --- a/frappe/translations/th.csv +++ b/frappe/translations/th.csv @@ -26,7 +26,7 @@ apps/frappe/frappe/model/document.py +642,Beginning with,เริ่มต้ apps/frappe/frappe/core/page/data_import_tool/exporter.py +51,Data Import Template,ข้อมูลนำเข้าแม่แบบ sites/assets/js/desk.min.js +622,Parent,ผู้ปกครอง apps/frappe/frappe/print/doctype/print_format/print_format.py +32,Syntax error in Jinja template,ไวยากรณ์ผิดพลาดในแม่แบบ Jinja -DocType: About Us Settings,"""Team Members"" or ""Management""","“สมาชิกทีม"" หรือ ""การจัดการ""" +DocType: About Us Settings,"""Team Members"" or ""Management""","“สมาชิกในทีม"" หรือ ""ผู้บริหาร""" apps/frappe/frappe/core/doctype/doctype/doctype.py +271,Default for 'Check' type of field must be either '0' or '1',เริ่มต้นสำหรับ 'ตรวจสอบ' ประเภทของข้อมูลต้องเป็น '0' หรือ '1' DocType: Email Account,Enable Incoming,เปิดใช้งานเข้ามา DocType: Workflow State,Danger,อันตราย @@ -337,7 +337,7 @@ apps/frappe/frappe/model/document.py +641,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 +421,{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/custom/doctype/customize_form/customize_form.py +97,{0} updated,{0} ได้รับการปรับปรุง apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Report cannot be set for Single types,รายงาน ไม่สามารถตั้งค่า สำหรับชนิด เดี่ยว apps/frappe/frappe/desk/page/activity/activity.js +152,Feb,กุมภาพันธ์ DocType: DocPerm,Role,บทบาท @@ -436,7 +436,7 @@ apps/frappe/frappe/desk/page/activity/activity_row.html +17,Updated {0}: {1},Upd DocType: DocType,Master,เจ้านาย DocType: DocType,User Cannot Create,ผู้ใช้ไม่สามารถสร้าง apps/frappe/frappe/core/page/user_permissions/user_permissions.js +27,"These will also be set as default values for those links, if only one such permission record is defined.",เหล่านี้จะ ถูกกำหนดเป็น ค่าเริ่มต้น สำหรับการเชื่อมโยง เหล่านั้น ถ้า เพียงคนเดียวที่ ได้รับอนุญาต ดังกล่าว บันทึก ถูกกำหนดไว้ -apps/frappe/frappe/desk/page/activity/activity.js +196,{0} on {1},{0} {1} +apps/frappe/frappe/desk/page/activity/activity.js +196,{0} on {1},{0} บน {1} DocType: Customize Form,Enter Form Type,ป้อนประเภทแบบฟอร์ม DocType: User,Send Password Update Notification,ส่งแจ้งเตือนการปรับปรุงรหัสผ่าน apps/frappe/frappe/model/db_schema.py +247,"{0} field cannot be set as unique, as there are non-unique existing values",{0} สนามไม่สามารถตั้งเป็นที่ไม่ซ้ำกันที่มีค่าที่มีอยู่ที่ไม่ซ้ำกัน @@ -677,7 +677,7 @@ DocType: Event,Repeat this Event,ทำซ้ำเหตุการณ์น DocType: DocPerm,Amend,แก้ไข apps/frappe/frappe/templates/includes/login/login.js +45,Valid Login id required.,เข้าสู่ระบบรหัสที่ถูกต้อง apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Re - เปิด -apps/frappe/frappe/core/doctype/docshare/docshare.py +51,{0} un-shared this document with {1},{0} ยกเลิกการใช้เอกสารร่วมกับเรื่องนี้ {1} +apps/frappe/frappe/core/doctype/docshare/docshare.py +51,{0} un-shared this document with {1},{0} ยกเลิกการแชร์เอกสารร่วมกับ{1} apps/frappe/frappe/templates/emails/auto_reply.html +5,This is an automatically generated reply,นี่คือการตอบกลับโดยอัตโนมัติ apps/frappe/frappe/model/document.py +378,Record does not exist,บันทึก ไม่อยู่ apps/frappe/frappe/templates/pages/404.html +4,Page missing or moved,หน้าขาดหายไปหรือย้าย @@ -983,7 +983,7 @@ apps/frappe/frappe/utils/nestedset.py +77,Nested set error. Please contact the A apps/frappe/frappe/print/page/print_format_builder/print_format_builder_layout.html +11,, DocType: Workflow State,envelope,ซองจดหมาย apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +55,Option 2,ตัวเลือกที่ 2 -apps/frappe/frappe/core/doctype/docshare/docshare.py +44,{0} shared this document with {1},{0} ที่ใช้ร่วมกันกับเอกสารนี้ {1} +apps/frappe/frappe/core/doctype/docshare/docshare.py +44,{0} shared this document with {1},{0} แชร์เอกสารนี้กับ {1} DocType: Website Settings,Google Plus One,Google Plus One apps/frappe/frappe/desk/page/activity/activity.js +153,Jul,กรกฎาคม DocType: Communication,Additional Info,ข้อมูลเพิ่มเติม diff --git a/frappe/translations/zh-tw.csv b/frappe/translations/zh-tw.csv index 414462a6f2..c9f18346a5 100644 --- a/frappe/translations/zh-tw.csv +++ b/frappe/translations/zh-tw.csv @@ -141,7 +141,7 @@ DocType: Block Module,Module,模組 DocType: Email Alert,Send Alert On,發送警示在 DocType: Web Form,Website URL,網站網址 DocType: Customize Form,"Customize Label, Print Hide, Default etc.",自定義標籤,列印隱藏,預設值等。 -apps/frappe/frappe/print/page/print_format_builder/print_format_builder_start.html +16,Create a New Format,創建新格式 +apps/frappe/frappe/print/page/print_format_builder/print_format_builder_start.html +16,Create a New Format,建立新格式 DocType: Website Settings,Add a banner to the site. (small banners are usually good),在網站上新增一個橫幅。(通常選小橫幅是不錯的) DocType: Website Settings,Set Banner from Image,從圖像設置橫幅 DocType: Print Format,Verdana,宋體 @@ -279,7 +279,7 @@ DocType: Workflow State,indent-left,左邊縮排 DocType: Currency,Currency Name,貨幣名稱 DocType: Report,Javascript,Javascript DocType: File Data,Content Hash,內容Hash值 -DocType: User,Stores the JSON of last known versions of various installed apps. It is used to show release notes.,商店的最後為人所知的版本的安裝的應用程序的JSON。它是用來顯示發布說明。 +DocType: User,Stores the JSON of last known versions of various installed apps. It is used to show release notes.,儲存最後安裝版本之應用程式的JSON。用來顯示發行說明。 DocType: Website Theme,Google Font (Text),谷歌字體(文本) apps/frappe/frappe/core/page/permission_manager/permission_manager.js +323,Did not remove,沒有刪除 DocType: Report,Query,查詢 @@ -380,7 +380,7 @@ apps/frappe/frappe/core/doctype/user/user.py +361,Already Registered,已註冊 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.,選擇用戶或DocType以開始。 -apps/frappe/frappe/desk/page/applications/applications.js +24,No Apps Installed,沒有安裝的應用程序 +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,標記字段作為強制性 DocType: User,Google User ID,Google的用戶ID apps/frappe/frappe/desk/form/utils.py +66,This method can only be used to create a Comment,這種方法只能用於創建註釋 @@ -396,7 +396,7 @@ sites/assets/js/desk.min.js +622,Unknown Column: {0},未知專欄: {0} DocType: Email Alert Recipient,Optional: Always send to these ids. Each email id on a new row,可選:總是發送給這些ID。每一個電子郵件ID一列 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299,Users with role {0}:,角色{0} 的用戶: DocType: Print Format,Custom Format,自定義格式 -DocType: Website Settings,Integrations,集成 +DocType: Website Settings,Integrations,整合 DocType: DocField,Section Break,分節符 DocType: Communication,Sender Full Name,發件人姓名 ,Messages,訊息 @@ -406,7 +406,7 @@ 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,列印格式類型 -sites/assets/js/desk.min.js +936,Open Source Applications for the Web,開源為Web應用程序 +sites/assets/js/desk.min.js +936,Open Source Applications for the Web,開源網路應用程式 DocType: Website Theme,"Add the name of a ""Google Web Font"" e.g. ""Open Sans""",添加一個“谷歌網頁字體”的名稱,例如“打開三世” DocType: DocType,Hide Toolbar,隱藏工具欄 DocType: Email Account,SMTP Settings for outgoing emails,SMTP設置外發郵件 @@ -415,7 +415,7 @@ apps/frappe/frappe/templates/emails/password_update.html +3,Your password has be DocType: Email Account,Auto Reply Message,自動回复留言 DocType: Email Alert,Condition,條件 sites/assets/js/desk.min.js +924,Open a module or tool,打開一個模塊或工具 -DocType: Module Def,App Name,應用程序名稱 +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},電子郵件與驗證{1} DocType: Email Account,e.g. pop.gmail.com,例如pop.gmail.com @@ -459,7 +459,7 @@ apps/frappe/frappe/email/doctype/email_alert/email_alert.py +20,Cannot set Email apps/frappe/frappe/config/website.py +49,Setup of fonts and background.,設置字體和背景。 DocType: Workflow Action,Workflow Action Master,工作流操作主 DocType: Custom Field,Field Type,欄位類型 -apps/frappe/frappe/utils/data.py +399,only.,而已。 +apps/frappe/frappe/utils/data.py +399,only.,整 DocType: Feed,Doc Type,文件類型 apps/frappe/frappe/email/receive.py +53,Invalid Mail Server. Please rectify and try again.,無效的郵件服務器。請糾正,然後再試一次。 DocType: DocField,"For Links, enter the DocType as range. @@ -587,7 +587,7 @@ DocType: Website Theme,Link to your Bootstrap theme,鏈接到你的引導主題 sites/assets/js/desk.min.js +593,Edit as {0},編輯為{0} apps/frappe/frappe/core/page/user_permissions/user_permissions.js +194,No User Restrictions found.,無用戶​​限制中。 apps/frappe/frappe/email/doctype/email_account/email_account_list.js +10,Default Inbox,預設收件匣 -sites/assets/js/desk.min.js +607,Make a new,創建一個新的 +sites/assets/js/desk.min.js +607,Make a new,建立一個新的 DocType: Print Settings,PDF Page Size,PDF頁面大小 sites/assets/js/desk.min.js +947,About,關於 apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,"For updating, you can update only selective columns.",對於更新,您可以更新只選擇列。 @@ -602,7 +602,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +45,Append To is apps/frappe/frappe/core/doctype/doctype/doctype.py +239,Options requried for Link or Table type field {0} in row {1},requried的鏈接或表類型字段選項{0}行{1} DocType: Report,Query Report,查詢報表 DocType: Communication,On,開啟 -DocType: User,Set New Password,設置新密碼 +DocType: User,Set New Password,設定新密碼 DocType: User,Github User ID,Github上的用戶ID apps/frappe/frappe/core/page/user_permissions/user_permissions.js +246,If Document Type,如果文件類型 DocType: Communication,Chat,聊天 @@ -713,7 +713,7 @@ sites/assets/js/desk.min.js +641,Merge with existing,合併與現有的 DocType: User,Birth Date,出生日期 DocType: Workflow State,fast-backward,快退 DocType: DocShare,DocShare,DocShare -DocType: Report,Add Total Row,添加總計行 +DocType: Report,Add Total Row,新增總計行列 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +19,For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment.,例如,如果你取消和修改INV004將成為一個新的文檔INV004-1。這可以幫助您跟踪每一項修正案。 DocType: Workflow Document State,0 - Draft; 1 - Submitted; 2 - Cancelled,0 - 草案; 1 - 呈交; 2 - 取消 apps/frappe/frappe/core/page/modules_setup/modules_setup.js +5,Show or Hide Modules,顯示或隱藏模塊 @@ -727,7 +727,7 @@ sites/assets/js/desk.min.js +598,You can use wildcard %,可以使用通配符% apps/frappe/frappe/desk/page/activity/activity.js +152,Mar,損傷 sites/assets/js/desk.min.js +862,"Only image extensions (.gif, .jpg, .jpeg, .tiff, .png, .svg) allowed",只有(.gif注意,.JPG,.JPEG,.TIFF,.PNG,.SVG)允許的圖片擴展 DocType: Customize Form,"Fields separated by comma (,) will be included in the ""Search By"" list of Search dialog box",字段以逗號分隔(,)將被列入“通過搜索”的搜索對話框的列表 -apps/frappe/frappe/website/doctype/website_theme/website_theme.py +35,Please Duplicate this Website Theme to customize.,請複製此網址主題定制。 +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/print/page/print_format_builder/print_format_builder.js +532,Edit Custom HTML,編輯自定義HTML @@ -898,7 +898,7 @@ DocType: Workflow State,Icon will appear on the button,圖標將顯示在按鈕 DocType: Web Page,Page url name (auto-generated),頁面的URL名稱(自動生成的) apps/frappe/frappe/core/page/user_permissions/user_permissions.py +105,Please upload using the same template as download.,上傳請使用相同的下載模板。 DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,ProTip:添加Reference: {{ reference_doctype }} {{ reference_name }}發送文檔引用 -apps/frappe/frappe/modules/__init__.py +81,App not found,應用程序未找到 +apps/frappe/frappe/modules/__init__.py +81,App not found,未找到應用程式 DocType: Workflow State,pencil,鉛筆 sites/assets/js/form.min.js +283,Share {0} with,分享{0} DocType: Workflow State,hand-up,手向上 @@ -932,7 +932,7 @@ DocType: DocType,In Dialog,在對話框 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +142,Help,幫助 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,應用程式安裝器 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +246,Is,是 DocType: Workflow State,info-sign,資訊符號 DocType: Currency,"How should this currency be formatted? If not set, will use system defaults",此貨幣使用何種格式?如果沒有設定,將使用系統預設值。 @@ -1116,7 +1116,7 @@ DocType: Website Theme,This must be checked if the below style settings are appl 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 +229,Mandatory:,強制性: ,User Permissions Manager,用戶權限管理 -DocType: Property Setter,New value to be set,新的值被設置 +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.,選擇文件類型來設置該用戶的權限來限制訪問。 @@ -1327,7 +1327,7 @@ 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,標準列印格式中的隱藏欄位 DocType: DocField,Float,浮動 DocType: Module Def,Module Name,模塊名稱 -DocType: DocType,DocType is a Table / Form in the application.,DOCTYPE要一個表/表格應用程序中。 +DocType: DocType,DocType is a Table / Form in the application.,DOCTYPE是一應用程式中的表格/表單。 DocType: Feed,Feed Type,Feed類型 DocType: Email Account,GMail,GMail的 DocType: Web Page,Template Path,模板路徑 @@ -1401,14 +1401,14 @@ DocType: Blog Category,Blogger,部落格 sites/assets/js/desk.min.js +528,Date must be in format: {0},日期格式必須是: {0} apps/frappe/frappe/print/page/print_format_builder/print_format_builder_field.html +22,Select Columns,選擇列 DocType: Workflow State,folder-open,文件夾打開 -apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +1,Search Application,搜索應用程序 +apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +1,Search Application,搜索應用程式 apps/frappe/frappe/config/website.py +18,Single Post (article).,單個帖子(文章)。 DocType: Property Setter,Set Value,設定值 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +189,Hide field in form,隱藏表單域 DocType: Email Alert,Optional: The alert will be sent if this expression is true,可選:警報會在這個表達式為true發送 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,您可以使用自定義表格中的字段設置的水平。 DocType: DocPerm,Report,報告 -apps/frappe/frappe/templates/generators/web_form.html +31,Please login to create a new {0},請登錄創建一個新的{0} +apps/frappe/frappe/templates/generators/web_form.html +31,Please login to create a new {0},請登錄建立一個新的{0} apps/frappe/frappe/desk/reportview.py +69,{0} is saved,{0}已儲存 apps/frappe/frappe/core/doctype/user/user.py +235,User {0} cannot be renamed,用戶{0}無法重命名 apps/frappe/frappe/website/doctype/website_settings/website_settings.js +17,Exported,出口 @@ -1423,7 +1423,7 @@ DocType: Workflow State,chevron-left,人字形-左 DocType: Bulk Email,Sending,發出 apps/frappe/frappe/auth.py +195,Not allowed from this IP Address,不接受來自此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.,安裝應用程式。 DocType: Event,Private,私人 DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),發送郵件列印附件為PDF格式(推薦) DocType: Workflow Action,Workflow Action,工作流程執行 diff --git a/frappe/utils/doctor.py b/frappe/utils/doctor.py index 21f4fc213e..d443f3b3bf 100644 --- a/frappe/utils/doctor.py +++ b/frappe/utils/doctor.py @@ -13,11 +13,12 @@ def get_redis_conn(): r = conn.default_channel.client return r -def get_queues(): +def get_queues(site=None): "Returns the name of queues where frappe enqueues tasks as per the configuration" queues = ["celery"] if frappe.conf.celery_queue_per_site: - for site in frappe.utils.get_sites(): + sites = [site] if site else frappe.utils.get_sites() + for site in sites: queues.append(site) queues.append('longjobs@' + site) return queues @@ -71,13 +72,13 @@ def check_if_workers_online(): return True return False -def dump_queue_status(): +def dump_queue_status(site=None): """ Dumps pending events and tasks per queue """ ret = [] r = get_redis_conn() - for queue in get_queues(): + for queue in get_queues(site=site): queue_details = { 'queue': queue, 'len': r.llen(queue), @@ -106,6 +107,26 @@ def get_task_count_for_queue(queue): 'event_counts': event_counts } +def get_running_tasks(): + ret = {} + app = get_celery() + inspect = app.control.inspect() + active = inspect.active() + if not active: + return [] + for worker in active: + ret[worker] = [] + for task in active[worker]: + ret[worker].append({ + 'id': task['id'], + 'name': task['name'], + 'routing_key': task['delivery_info']['routing_key'], + 'args': task['args'], + 'kwargs': task['kwargs'] + }) + return ret + + def doctor(): """ Prints diagnostic information for the scheduler @@ -121,3 +142,13 @@ def doctor(): if (not workers_online) or (pending_tasks > 4000) or locks: return 1 return True + +def celery_doctor(site=None): + queues = dump_queue_status(site=site) + running_tasks = get_running_tasks() + print 'Queue Status' + print '------------' + print json.dumps(queues, indent=1) + print 'Running Tasks' + print '------------' + print json.dumps(running_tasks, indent=1) diff --git a/frappe/website/doctype/blog_category/blog_category.json b/frappe/website/doctype/blog_category/blog_category.json index 56b9913279..373df96e26 100644 --- a/frappe/website/doctype/blog_category/blog_category.json +++ b/frappe/website/doctype/blog_category/blog_category.json @@ -126,7 +126,7 @@ "is_submittable": 0, "issingle": 0, "istable": 0, - "modified": "2015-07-28 16:18:11.486847", + "modified": "2015-09-07 15:51:26", "modified_by": "Administrator", "module": "Website", "name": "Blog Category", @@ -154,7 +154,7 @@ }, { "amend": 0, - "apply_user_permissions": 1, + "apply_user_permissions": 0, "cancel": 0, "create": 0, "delete": 0, diff --git a/frappe/website/doctype/blog_post/blog_post.json b/frappe/website/doctype/blog_post/blog_post.json index fd2c8049f1..ab3f83e041 100644 --- a/frappe/website/doctype/blog_post/blog_post.json +++ b/frappe/website/doctype/blog_post/blog_post.json @@ -272,7 +272,7 @@ "issingle": 0, "istable": 0, "max_attachments": 5, - "modified": "2015-04-29 01:46:16.190210", + "modified": "2015-09-07 15:51:26", "modified_by": "Administrator", "module": "Website", "name": "Blog Post", @@ -300,7 +300,7 @@ }, { "amend": 0, - "apply_user_permissions": 1, + "apply_user_permissions": 0, "cancel": 0, "create": 1, "delete": 0, diff --git a/frappe/website/doctype/blogger/blogger.json b/frappe/website/doctype/blogger/blogger.json index 5982b44155..a862f754e6 100644 --- a/frappe/website/doctype/blogger/blogger.json +++ b/frappe/website/doctype/blogger/blogger.json @@ -171,7 +171,7 @@ "issingle": 0, "istable": 0, "max_attachments": 1, - "modified": "2015-07-28 16:18:11.567110", + "modified": "2015-09-07 15:51:26", "modified_by": "Administrator", "module": "Website", "name": "Blogger", @@ -199,7 +199,7 @@ }, { "amend": 0, - "apply_user_permissions": 1, + "apply_user_permissions": 0, "cancel": 0, "create": 0, "delete": 0, diff --git a/setup.py b/setup.py index 66d00c7e23..9d929c073c 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -version = "6.1.2" +version = "6.2.0" with open("requirements.txt", "r") as f: install_requires = f.readlines()