Merge branch 'develop'

This commit is contained in:
Anand Doshi 2015-09-09 15:28:33 +05:30
commit e33a4f914a
63 changed files with 704 additions and 453 deletions

View file

@ -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

View file

@ -1,2 +1,2 @@
from __future__ import unicode_literals
__version__ = "6.1.2"
__version__ = "6.2.0"

View file

@ -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

View file

@ -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.

View file

@ -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,

View file

@ -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,

View file

@ -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,

View file

@ -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",

View file

@ -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',

View file

@ -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",

View file

@ -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)

View file

@ -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,

View file

@ -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,

View file

@ -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,

View file

@ -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,

View file

@ -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)

View file

@ -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

View file

@ -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,

View file

@ -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({

View file

@ -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,

View file

@ -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,

View file

@ -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"

View file

@ -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))

View file

@ -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)

View file

@ -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()

View file

@ -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

View file

@ -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

View file

View file

@ -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()

View file

@ -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

View file

@ -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,

Binary file not shown.

Before

Width:  |  Height:  |  Size: 540 KiB

View file

@ -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');

View file

@ -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);

View file

@ -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)

View file

@ -153,7 +153,7 @@
{% for section in layout %}
<div class="row">
{% for column in section %}
<div class="col-sm-{{ (12 / (section|len))|int }}">
<div class="col-sm-{{ (12 / (section|len))|int }}" style="max-width: 500px;">
{% for field in column %}
{{ render_field(field) }}
{% endfor %}

View file

@ -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() {

View file

@ -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) %}
<select class="form-control{% if css_class %} {{ css_class }}{% endif %}" {% if attributes -%}
{% for key, value in attributes.iteritems() -%}
{{ key }}="{{ value }}" {% endfor %}{% endif %}>
{% if options -%}
{% for option in options -%}
<option value="{{ option.value if option is mapping else option }}">{{ _(option.label if option is mapping else option) }}</option>
{% set option_value = option.value if option is mapping else option %}
<option value="{{ option_value }}"
{{ "selected" if value == option_value else "" }}>{{ _(option.label if option is mapping else option) }}</option>
{%- endfor %}
{%- endif %}
</select>

View file

@ -25,7 +25,8 @@
<div class="col-sm-9">
<ul class="list-group" style="margin: 15px 0px;">
{% for opts in my_account_list -%}
<li class="list-group-item"><a href="{{ opts.url }}">
<li class="list-group-item"><a href="{{ opts.url }}"
class="no-decoration">
<h4>{{ opts.label }}</h4></a></li>
{%- endfor %}
</ul>

View file

@ -37,7 +37,7 @@
<td>{{ d.idx }}</td>
{% for tdf in visible_columns %}
<td class="{{ get_align_class(tdf.fieldtype) }}">
{{ print_value(tdf, d, doc) }}</td>
<div>{{ print_value(tdf, d, doc) }}</div></td>
{% endfor %}
</tr>
{% endfor %}

View file

@ -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; }
}

View file

@ -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)

View file

@ -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,التحقق من حسابك الخاص

1 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +224 Press Esc to close اضغط على ESC لإغلاق
1091 apps/frappe/frappe/core/doctype/user/user.py +166 Verify Your Account التحقق من حسابك الخاص
1092 DocType: Workflow Transition Action حدث
1093 apps/frappe/frappe/core/page/data_import_tool/exporter.py +231 Info: معلومات:
1094 DocType: Custom Field Permission Level إذن المستوى
1095 DocType: User Send Notifications for Transactions I Follow إرسال الإخطارات عن المعاملات أنا اتبع
1096 apps/frappe/frappe/core/doctype/doctype/doctype.py +400 {0}: Cannot set Submit, Cancel, Amend without Write {0} : لا يمكن تحديد تأكيد ، الغاء ، تعديل دون كتابة
1097 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8 Setup > User الإعداد > العضو

View file

@ -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.

1 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +224 Press Esc to close Pro zavření zmáčkněte Esc
17 DocType: Workflow Document States Dokument státy
18 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.
19 DocType: DocPerm This role update User Permissions for a user Tato role aktualizuje uživatelská oprávnění pro uživatele
20 sites/assets/js/desk.min.js +641 Rename {0} Přejmenovat: {0} Přejmenovat {0}
21 DocType: Workflow State zoom-out Zmenšit
22 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.
23 apps/frappe/frappe/model/document.py +668 Table {0} cannot be empty Tabulka: {0} nemůže být prázdná
192 apps/frappe/frappe/core/doctype/version/version.js +10 Version restored Verze obnovena
193 DocType: Event Role Event Role Role události
194 sites/assets/js/editor.min.js +125 Indent (Tab) Odsazení (Tab)
195 DocType: Workflow State List seznam Seznam
196 DocType: Page Role Page Role Role stránky
197 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
198 DocType: System Settings mm/dd/yyyy mm/dd/rrrr
570 DocType: Website Settings Banner Banner
571 sites/assets/js/desk.min.js +917 Help on Search Nápověda k vyhledávání
572 DocType: User Uncheck modules to hide from user's desktop Zrušte zaškrtnutí moduly se schovávat před desktopu uživatele
573 DocType: DocType Hide Copy Skrýt kopii
574 apps/frappe/frappe/core/doctype/user/user.js +166 Clear all roles Odebrat všechny role
575 apps/frappe/frappe/model/base_document.py +296 {0} must be unique {0} musí být jedinečný
576 apps/frappe/frappe/permissions.py +228 Row Řádek
771 sites/assets/js/desk.min.js +931 {0} List Seznam: {0}
772 apps/frappe/frappe/desk/form/assign_to.py +39 Already in user's To Do list Je již v uživatelském seznamu úkolů
773 DocType: Email Account Enable Outgoing Povolit odchozí
774 DocType: System Settings Email Footer Address E-mailová adresa zápatí
775 DocType: DocField Text Text
776 apps/frappe/frappe/config/setup.py +125 Standard replies to common queries. Standardní odpovědi na běžné dotazy.
777 sites/assets/js/desk.min.js +947 Report an Issue Nahlásit problém
953 apps/frappe/frappe/email/doctype/email_alert/email_alert.py +16 Please specify which value field must be checked Prosím specifikujte která hodnota musí být prověřena
954 apps/frappe/frappe/core/page/data_import_tool/exporter.py +69 "Parent" signifies the parent table in which this row must be added "Nadřazeno" značí tabulku, ve které musí být přidán tento řádek
955 DocType: Website Theme Apply Style Aplikovat styl
956 sites/assets/js/form.min.js +291 Shared With Sdílené S
957 Modules Setup Nastavení modulů
958 apps/frappe/frappe/core/page/data_import_tool/exporter.py +230 Type: Typu:
959 apps/frappe/frappe/desk/moduleview.py +57 Module Not Found Modul nenalezen
1173 DocType: Workflow State arrow-up šipka-nahoru
1174 DocType: DocField Allow on Submit Povolit při Odeslání
1175 apps/frappe/frappe/core/page/desktop/desktop.js +48 All Applications Všechny aplikace
1176 DocType: Web Page Add code as &lt;script&gt; Přidat kód jako &lt;script&gt;
1177 apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +7 Select Type Vyberte typ
1178 apps/frappe/frappe/core/doctype/file_data/file_data.py +42 No permission to write / remove. Bez oprávnění k zápisu / odebrání.
1179 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. Přetáhnout prvky z postranního panelu přidat. Přetáhnout zpátky do koše.
1287 sites/assets/js/list.min.js +95 Delete permanently? Smazat trvale?
1288 sites/assets/js/desk.min.js +922 Search in a document type Hledat v typu dokumentu
1289 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +201 Allow field to remain editable even after submission Povolit aby pole zůstalo upravovatelné i po vložení
1290 DocType: DocPerm Role and Level Role a úroveň
1291 apps/frappe/frappe/desk/moduleview.py +31 Custom Reports Přizpůsobené Reporty
1292 DocType: Website Script Website Script Skript www stránky
1293 apps/frappe/frappe/config/setup.py +147 Customized HTML Templates for printing transactions. Upravené HTML Šablony pro tisk transakcí.
1443 apps/frappe/frappe/desk/page/activity/activity.js +153 Nov Listopad
1444 apps/frappe/frappe/core/doctype/doctype/doctype.py +256 Max width for type Currency is 100px in row {0} Max šířka pro typ měny je 100px na řádku {0}
1445 apps/frappe/frappe/config/website.py +13 Content web page. Obsah www stránky.
1446 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9 Add a New Role Přidat novou roli
1447 apps/frappe/frappe/templates/includes/login/login.js +125 Oops! Something went wrong Jejda! Něco nevyšlo dobře :(
1448 DocType: Blog Settings Blog Introduction Představení blogu
1449 DocType: User Email Settings Nastavení emailu

View file

@ -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 &#39;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 &quot;{2}&quot;. Det bør være en af &quot;{3}&quot;
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",&quot;Forælder&quot; 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""",&quot;Selskabet History&quot;
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 &#39;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

1 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +224 Press Esc to close Tryk på Esc for at lukke
208 sites/assets/js/form.min.js +213 Edit via Upload Edit via Upload
209 sites/assets/js/desk.min.js +921 document type..., e.g. customer dokumenttype ..., fx kunde
210 DocType: Country Country Name Land Navn
211 DocType: About Us Team Member About Us Team Member Om os Team Member Om os Team medlem
212 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.
213 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.
214 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 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +323 Did not remove Ikke fjerne
285 DocType: Report Query Forespørgsel
286 DocType: DocType Sort Order Sorteringsrækkefølge
287 apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +130 'In List View' not allowed for type {0} in row {1} »I Listevisning &#39;ikke tilladt for type {0} i række {1} 'I Listevisning' ikke tilladt for type {0} i række {1}
288 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.
289 DocType: Website Settings Tweet will be shared via your user account (if specified) Tweet vil blive delt via din brugerkonto (hvis angivet)
290 Document Share Report Dokument Del Report
439 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 {0} felt kan ikke indstilles som unikt, da kolonnen indeholder dublerede værdier
440 sites/assets/js/desk.min.js +1016 Updated To New Version Opdateret Til Ny version
441 DocType: DocField Depends On Afhænger
442 DocType: DocPerm Additional Permissions Yderligere Tilladelser
443 sites/assets/js/form.min.js +310 Compose Komponere
444 apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +13 Start entering data below this line Begynde at indtaste data under denne linje
445 DocType: Workflow State retweet retweet
589 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.
590 sites/assets/js/desk.min.js +965 Attach Document Print Vedhæft dokument Print
591 DocType: Social Login Keys Google Client ID Google Client ID
592 apps/frappe/frappe/core/doctype/user/user.py +63 Adding System Manager to this User as there must be atleast one System Manager Tilføjelse System Manager til denne Bruger da der skal være mindst én System Manager
593 DocType: Workflow State list-alt liste-alt
594 apps/frappe/frappe/templates/pages/update-password.html +63 Password Updated Password Opdateret
595 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. Vælg moduler, der skal vises (baseret på tilladelse). Hvis skjult, vil de være skjult for alle brugere.
859 sites/assets/js/desk.min.js +257 Verify Password Bekræft Adgangskode
860 apps/frappe/frappe/core/page/modules_setup/modules_setup.js +55 There were errors Der var fejl
861 apps/frappe/frappe/desk/doctype/todo/todo.js +22 Close Luk
862 apps/frappe/frappe/model/document.py +414 Cannot change docstatus from 0 to 2 Kan ikke ændre docstatus fra 0 til 2
863 apps/frappe/frappe/core/doctype/doctype/doctype.py +245 Options must be a valid DocType for field {0} in row {1} Muligheder skal være en gyldig DocType for feltet {0} i række {1}
864 apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +160 Edit Properties Rediger egenskaber
865 DocType: Patch Log List of patches executed Liste over patches henrettet
871 DocType: Workflow State trash trash
872 apps/frappe/frappe/desk/page/activity/activity.js +153 Dec December
873 DocType: Event Leave blank to repeat always Lad stå tomt for at gentage altid
874 DocType: Event Ends on Slutter den
875 apps/frappe/frappe/utils/nestedset.py +181 Item cannot be added to its own descendents Punkt kan ikke føjes til sine egne efterkommere
876 sites/assets/js/form.min.js +274 {0} created this {1} {0} oprettet denne {1}
877 apps/frappe/frappe/desk/form/assign_to.py +120 The task {0}, that you assigned to {1}, has been closed by {2}. Opgaven {0}, som du har tildelt {1}, er blevet lukket af {2}.
957 Modules Setup Moduler Setup
958 apps/frappe/frappe/core/page/data_import_tool/exporter.py +230 Type: Type:
959 apps/frappe/frappe/desk/moduleview.py +57 Module Not Found Modul ikke fundet
960 DocType: User Location Beliggenhed
961 Permitted Documents For User Tilladte dokumenter til Bruger
962 apps/frappe/frappe/core/doctype/docshare/docshare.py +40 You need to have "Share" permission Du skal have &quot;Del&quot; tilladelsen
963 sites/assets/js/form.min.js +213 Bulk Edit {0} Bulk Edit {0}
1088 apps/frappe/frappe/model/rename_doc.py +100 {0} not allowed to be renamed {0} tillades ikke omdøbes
1089 DocType: Custom Script Custom Script Tilpasset Script
1090 sites/assets/js/desk.min.js +622 Assigned To Tildelt til
1091 apps/frappe/frappe/core/doctype/user/user.py +166 Verify Your Account Bekræft din konto
1092 DocType: Workflow Transition Action Handling
1093 apps/frappe/frappe/core/page/data_import_tool/exporter.py +231 Info: Info:
1094 DocType: Custom Field Permission Level Tilladelse Level
1133 apps/frappe/frappe/templates/pages/update-password.html +10 Old Password Gammel adgangskode
1134 apps/frappe/frappe/website/doctype/blog_post/blog_post.py +97 Posts by {0} Meddelelser fra {0}
1135 apps/frappe/frappe/core/doctype/report/report.js +9 To format columns, give column labels in the query. For at formatere kolonner, giver kolonneetiketter i forespørgslen.
1136 apps/frappe/frappe/core/doctype/doctype/doctype.py +427 {0}: Cannot set Assign Amend if not Submittable {0}: Kan ikke sætte Tildel Tekst hvis ikke Submittable
1137 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14 Edit Role Permissions Edit Rolle Tilladelser
1138 DocType: Social Login Keys Social Login Keys Social Login Keys
1139 DocType: Comment Comment Date Kommentar Dato
1236 apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13 Left this conversation Forladt denne samtale
1237 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +474 Did not set Ikke indstillet
1238 DocType: ToDo ToDo ToDo
1239 DocType: DocField No Copy Ingen Copy
1240 DocType: Workflow State qrcode QRCode
1241 DocType: Web Form Breadcrumbs Rasp
1242 apps/frappe/frappe/core/doctype/doctype/doctype.py +373 If Owner Hvis Owner
1270 apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +102 Select a DocType to make a new format Vælg en DocType at lave et nyt format
1271 DocType: Module Def Module Def Modul Def
1272 sites/assets/js/form.min.js +199 Done Udført
1273 sites/assets/js/form.min.js +294 Reply Svar
1274 DocType: Communication By Ved
1275 DocType: Email Account SMTP Server SMTP-server
1276 DocType: Print Format Print Format Help Print Format Hjælp
1307 DocType: Workflow State share-alt aktie-alt
1308 DocType: Role Role Name Rolle Navn
1309 DocType: Workflow Document State Workflow Document State Workflow Document State
1310 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. At give acess til en rolle for kun specifikke poster, skal du kontrollere Anvend User Tilladelser. User Tilladelser til at begrænse brugere med sådan rolle til bestemte poster.
1311 apps/frappe/frappe/workflow/doctype/workflow/workflow.py +70 Cannot cancel before submitting. See Transition {0} Kan ikke annullere inden fremlæggelsen. Se Overgang {0}
1312 apps/frappe/frappe/templates/pages/print.py +146 Print Format {0} is disabled Print Format {0} er deaktiveret
1313 DocType: Email Alert Send days before or after the reference date Send dage før eller efter skæringsdatoen
1445 apps/frappe/frappe/config/website.py +13 Content web page. Indhold webside.
1446 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9 Add a New Role Tilføj en ny rolle
1447 apps/frappe/frappe/templates/includes/login/login.js +125 Oops! Something went wrong Ups! Noget gik galt
1448 DocType: Blog Settings Blog Introduction Blog Introduktion
1449 DocType: User Email Settings E-mail-indstillinger
1450 apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57 {0} not a valid State {0} ikke en gyldig stat
1451 DocType: Workflow State ok-circle ok-cirkel

View file

@ -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 &quot;{0}&quot;
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 &quot;Google Web Font&quot; zB &quot;Open Sans&quot;
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

1 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +224 Press Esc to close Zum Schließen Esc drücken
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} zugeordnet. {2} Eine neue Aufgabe {0} wurde Ihnen von {1} zugewiesen. {2}
3 apps/frappe/frappe/desk/page/messages/messages_main.html +12 Post Beitrag
4 apps/frappe/frappe/config/setup.py +98 Rename many items by uploading a .csv file. Benennen Sie viele Elemente durch Hochladen einer . CSV-Datei.
5 DocType: Workflow State pause anhalten
38 apps/frappe/frappe/config/setup.py +179 Change field properties (hide, readonly, permission etc.) Feldeigenschaften ändern (verstecken , Readonly , Genehmigung etc.)
39 DocType: Workflow State lock sperren
40 apps/frappe/frappe/config/website.py +74 Settings for Contact Us Page. Einstellungen für die Kontaktseite.
41 apps/frappe/frappe/core/doctype/user/user.py +490 Administrator Logged In Administrator angemeldet In Administrator hat sich angemeldet
42 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.
43 sites/assets/js/editor.min.js +155 Insert Insert
44 sites/assets/js/desk.min.js +598 Select {0} {0} auswählen
80 DocType: Workflow State circle-arrow-up Kreis-Pfeil-nach-oben
81 sites/assets/js/desk.min.js +859 Uploading... lade hoch...
82 DocType: Workflow State italic kursiv
83 apps/frappe/frappe/core/doctype/doctype/doctype.py +404 {0}: Cannot set Import without Create {0}: Kann nicht ohne Import eingestellt erstellen {0}: Kann nicht auf IMPORT eingestellt werden ohne ERSTELLEN
84 DocType: Comment Post Topic Thema veröffentlichen
85 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.
86 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 DocType: DocType Show this field as title Zeigen Sie dieses Feld als Titel
123 apps/frappe/frappe/model/db_schema.py +447 Fieldname {0} cannot have special characters like {1} Feldname {0} kann nicht Sonderzeichen wie {1}
124 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
125 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 {0}: Kann nicht als ALS VERSAND MARKIEREN eingestellt werden, wenn nicht versendbar
126 DocType: Social Login Keys Facebook Facebook
127 apps/frappe/frappe/templates/pages/list.py +46 Filtered by "{0}" Gefiltert &quot;{0}&quot;
128 sites/assets/js/desk.min.js +1009 Message from {0} Nachricht von {0}
247 DocType: DocType Fields Felder
248 DocType: System Settings Your organization name and address for the email footer. Ihre Organisation Name und Anschrift für die E-Mail-Footer.
249 apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +15 Parent Table Parent Table
250 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 {0} in Zeile {1} kann nicht sowohl die URL als auch Unterpunkte haben
251 apps/frappe/frappe/utils/nestedset.py +194 Root {0} cannot be deleted Wurzel {0} kann nicht gelöscht werden
252 apps/frappe/frappe/website/doctype/blog_post/blog_post.py +162 No comments yet Noch keine Kommentare
253 apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +120 Both DocType and Name required Sowohl DocType und Name erforderlich
262 DocType: Property Setter Property Setter overrides a standard DocType or Field property Property Setter überschreibt einen Standard-Dokumententyp oder eine Feldeigenschaft
263 apps/frappe/frappe/core/doctype/user/user.py +333 Cannot Update: Incorrect / Expired Link. Kann nicht aktualisieren : Falsche / Expired -Link.
264 DocType: DocField Set Only Once Nur einmal festgelegt
265 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 {0}: Kann nicht auf IMPORT eingestellt werden, da {1} nicht importierbar ist
266 DocType: Top Bar Item target = "_blank" target = "_blank"
267 DocType: Workflow State hdd hdd
268 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 sites/assets/js/editor.min.js +107 Number list Anzahl Liste
304 DocType: DocShare Everyone Jeder
305 DocType: Workflow State backward zurück
306 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} {0}: Nur eine Regel mit der gleichen Funktion, Ebene und {1} erlaubt
307 apps/frappe/frappe/config/setup.py +79 Set numbering series for transactions. Stellen Sie die Nummerierung Serie für Transaktionen.
308 DocType: Email Account POP3 Server POP3-Server
309 DocType: User Last IP Letzte IP
384 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +181 Mark the field as Mandatory Markieren Sie das Feld als Pflicht
385 DocType: User Google User ID Google Benutzer-ID
386 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
387 apps/frappe/frappe/config/setup.py +195 Add custom forms. Fügen Sie benutzerdefinierte Formulare. Benutzerdefinierte Formulare hinzufügen.
388 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 .
389 DocType: Country Geo Geo
390 DocType: Blog Category Blog Category Blog-Kategorie
391 DocType: User Roles HTML Rollen HTML
392 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 Alle Anpassungen werden entfernt. Bitte bestätigen.
393 DocType: Page Page HTML HTML-Seite
394 DocType: Web Page Header Kopfzeile
395 sites/assets/js/desk.min.js +622 Unknown Column: {0} Unbekannte Spalte: {0}
407 DocType: User Modules Access Modules Zugang
408 DocType: Print Format Print Format Type Druckformattyp
409 sites/assets/js/desk.min.js +936 Open Source Applications for the Web Open Source-Anwendungen für das Web
410 DocType: Website Theme Add the name of a "Google Web Font" e.g. "Open Sans" Fügen Sie den Namen eines &quot;Google Web Font&quot; zB &quot;Open Sans&quot; Bezeichnung einer "Google Web Schriftart" hinzufügen, z. B. "Open Sans"
411 DocType: DocType Hide Toolbar Symbolleiste ausblenden
412 DocType: Email Account SMTP Settings for outgoing emails SMTP-Einstellungen für ausgehende E-Mails
413 apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +125 Import Failed Import fehlgeschlagen
439 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 Feld {0} kann nicht als eindeutig eingestellt werden, da es nicht-eindeutige Werte gibt
440 sites/assets/js/desk.min.js +1016 Updated To New Version Aktualisiert, um neue Version
441 DocType: DocField Depends On Hängt davon ab
442 DocType: DocPerm Additional Permissions Zusätzliche Berechtigungen
443 sites/assets/js/form.min.js +310 Compose Komponieren
444 apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +13 Start entering data below this line Beginnen Sie die Eingabe von Daten unterhalb dieser Linie
445 DocType: Workflow State retweet retweet
561 DocType: Workflow Transition Next State Nächster Status
562 sites/assets/js/editor.min.js +119 Align Left (Ctrl/Cmd+L) Linksbündig (Strg / Cmd + L)
563 DocType: User Block Modules Block-Module
564 DocType: Web Page Custom CSS Benutzerdefinierte CSS
565 sites/assets/js/form.min.js +293 Add a comment Einen Kommentar hinzufügen
566 apps/frappe/frappe/config/setup.py +220 Log of error on automated events (scheduler). Melden Sie sich an automatisierten Fehlerereignisse ( Scheduler ) .
567 apps/frappe/frappe/utils/csvutils.py +74 Not a valid Comma Separated Value (CSV File) Keine gültige Comma Separated Value (CSV -Datei)
618 DocType: Website Theme Theme Thema
619 DocType: DocType Is Submittable Ist einreichbar
620 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
621 apps/frappe/frappe/model/document.py +477 Could not find {0} Konnte nicht gefunden {0}
622 apps/frappe/frappe/core/page/data_import_tool/exporter.py +227 Column Labels: Column Labels:
623 apps/frappe/frappe/model/naming.py +62 Naming Series mandatory Benennungsreihenfolge obligatorisch
624 DocType: Social Login Keys Facebook Client ID Facebook -Client-ID
799 DocType: Scheduler Log Log of Scheduler Errors Protokoll der Scheduler-Fehler
800 sites/assets/js/form.min.js +182 Submitting Einreichen
801 apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +182 Custom HTML Benutzerdefinierte HTML
802 DocType: Comment Comment Docname Dokumentenname Kommentar
803 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +54 Select Role Rolle auswählen
804 apps/frappe/frappe/model/delete_doc.py +200 Deleted Gelöscht
805 DocType: Workflow State adjust anpassen
998 DocType: Workflow State th-list th-list
999 DocType: Web Page Enable Comments Kommentare aktivieren
1000 DocType: User Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111) Nur Benutzer von dieser IP-Adresse beschränken. Mehrere IP-Adressen können durch Trennung mit Komma hinzugefügt werden. Auch übernimmt teilweise IP-Adressen wie (111.111.111)
1001 DocType: Website Theme Google Font (Heading) Google Font (Heading)
1002 sites/assets/js/desk.min.js +931 Find {0} in {1} Finden Sie in {0} {1}
1003 DocType: Email Account Append as communication against this DocType (must have fields, "Status", "Subject") Hängen Sie die Kommunikation gegen diese DocType (müssen Felder, "Status" haben, "Subject")
1004 DocType: DocType Allow Import via Data Import Tool Import über Datenimport-Tool zulassen
1014 DocType: DocType Title Case Titel in Großbuchstaben
1015 DocType: Blog Post Email Sent E-Mail wurde abgesendet
1016 sites/assets/js/desk.min.js +965 Send As Email Senden als E-Mail
1017 DocType: Website Theme Link Color Linkfarbe
1018 apps/frappe/frappe/core/doctype/user/user.py +47 User {0} cannot be disabled Benutzer {0} kann nicht deaktiviert werden
1019 apps/frappe/frappe/core/doctype/user/user.py +479 Dear System Manager, Lieber System Manager,
1020 sites/assets/js/form.min.js +182 Amending Zur Änderung der
1092 DocType: Workflow Transition Action Aktion
1093 apps/frappe/frappe/core/page/data_import_tool/exporter.py +231 Info: Info:
1094 DocType: Custom Field Permission Level Berechtigungsstufe
1095 DocType: User Send Notifications for Transactions I Follow Senden Sie Benachrichtigungen für Transaktionen Ich Folgen
1096 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 {0}: Kann nicht auf VERSAND, ABBRUCH, GEÄNDERT eingestellt werden ohne SCHREIBEN
1097 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8 Setup > User Setup> Benutzer
1098 apps/frappe/frappe/templates/emails/password_reset.html +6 Thank you Danke
1100 DocType: Print Settings Print Style Preview Print Style Vorschau
1101 apps/frappe/frappe/website/doctype/web_form/web_form.py +96 You are not allowed to update this Web Form Document Sie sind nicht berechtigt, diese Web Form Document aktualisieren
1102 DocType: About Us Settings About Us Settings "Über uns" Einstellungen
1103 DocType: Website Settings Website Theme Website Theme
1104 DocType: DocField In List View In der Listenansicht
1105 DocType: Email Account Use TLS TLS verwenden
1106 apps/frappe/frappe/email/smtp.py +34 Invalid login or password Login oder Passwort ungültig
1140 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +54 Remove all customizations? Alle Anpassungen entfernen ?
1141 DocType: Website Slideshow Slideshow Name Name der Diaschau
1142 sites/assets/js/form.min.js +182 Cancelling Stornierung
1143 DocType: DocType Allow Rename Umbenennen zulassen
1144 DocType: DocType Child Tables are shown as a Grid in other DocTypes. Untergeordnete Tabellen werden als Raster in anderen Dokumententypen angezeigt.
1145 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.
1146 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)
1152 DocType: Web Form Success URL Erfolgs-URL
1153 DocType: Email Account Append To Anhängen Um
1154 DocType: Workflow Document State Only Allow Edit For Änderungen nur zulassen für
1155 DocType: DocType DocType Dokumententyp
1156 apps/frappe/frappe/core/doctype/user/user.py +393 User {0} does not exist Benutzer {0} existiert nicht
1157 DocType: Website Theme If image is selected, color will be ignored. Wenn Bild ausgewählt wird, werden Farb ignoriert.
1158 DocType: Top Bar Item Top Bar Item Symbol der obersten Leiste
1345 DocType: Website Slideshow Slideshow like display for the website Diaschauähnliche Anzeige für die Website
1346 sites/assets/js/editor.min.js +121 Center (Ctrl/Cmd+E) Center (Strg / Cmd + E)
1347 apps/frappe/frappe/sessions.py +28 Cache Cleared Cache gelöscht
1348 apps/frappe/frappe/core/doctype/user/user.py +73 User with System Manager Role should always have User Type: System User Benutzer mit System-Manager-Rolle sollte immer Benutzer Typ: System-Benutzer
1349 DocType: DocPerm Export Export
1350 DocType: About Us Settings More content for the bottom of the page. Mehr Inhalt für den unteren Teil der Seite.
1351 sites/assets/js/desk.min.js +274 Session Expired. Logging you out Sitzung abgelaufen. Abmeldung läuft
1389 apps/frappe/frappe/desk/doctype/event/event.py +59 Events In Today's Calendar Heutige Ereignisse im Kalender
1390 DocType: Web Page Web Page Webseite
1391 DocType: Blog Category Blogger Blogger
1392 sites/assets/js/desk.min.js +528 Date must be in format: {0} Datum muss im Format : {0}
1393 apps/frappe/frappe/print/page/print_format_builder/print_format_builder_field.html +22 Select Columns Spalten auswählen
1394 DocType: Workflow State folder-open geöffneter Ordner
1395 apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +1 Search Application Suche nach Anwendung
1416 DocType: Website Slideshow This goes above the slideshow. Dies erscheint oberhalb der Diaschau.
1417 apps/frappe/frappe/config/setup.py +208 Install Applications. Anwendungen installieren .
1418 DocType: Event Private Privat
1419 DocType: Print Settings Send Email Print Attachments as PDF (Recommended) Senden Sie E-Mail-Anhänge als PDF drucken (empfohlen)
1420 DocType: Workflow Action Workflow Action Workflow-Aktion
1421 DocType: Event Send an email reminder in the morning E-Mail-Erinnerung am Morgen senden
1422 DocType: Blog Post Published On Veröffentlicht am

View file

@ -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.,محتوای بیشتر برای پایین صفحه.

1 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +224 Press Esc to close Esc را فشار دهید برای بستن
864 apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +160 Edit Properties ویرایش ویژگیها
865 DocType: Patch Log List of patches executed فهرست تکه اعدام
866 DocType: Communication Communication Medium ارتباطات متوسط
867 DocType: Website Settings Banner HTML بنر HTML
868 apps/frappe/frappe/model/base_document.py +407 {0} {1} cannot be "{2}". It should be one of "{3}" {0} {1} نمی تواند "{2}" باشد. ولی میتواند یکی از "{3}" باشد
869 apps/frappe/frappe/utils/data.py +486 {0} or {1} {0} یا {1}
870 apps/frappe/frappe/core/doctype/user/user.py +157 Password Update به روز رسانی رمز عبور
943 apps/frappe/frappe/email/smtp.py +37 Invalid recipient address آدرس گیرنده نامعتبر
944 DocType: Workflow State step-forward گام رو به جلو
945 apps/frappe/frappe/core/doctype/user/user.js +45 Refreshing... تازه کردن ...
946 DocType: Event Starts on شروع می شود در
947 DocType: Workflow State th هفتم
948 sites/assets/js/desk.min.js +576 Create a new {0} ایجاد جدید {0}
949 sites/assets/js/desk.min.js +931 Report {0} گزارش {0}
1145 DocType: Website Settings If checked, the Home page will be the default Item Group for the website. در صورت انتخاب، صفحه اصلی خواهد بود که به طور پیش فرض گروه مورد برای وب سایت.
1146 DocType: Blog Post Description for listing page, in plain text, only a couple of lines. (max 140 characters) توضیحات برای لیست صفحه، در متن ساده، تنها یک زن و شوهر از خطوط. (حداکثر 140 حرف)
1147 sites/assets/js/desk.min.js +947 Forums انجمن
1148 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +297 Add A User Restriction اضافه کردن محدودیت کاربر
1149 DocType: DocType Name Case نام مورد
1150 sites/assets/js/form.min.js +278 Shared with everyone اشتراک گذاری با همه
1151 apps/frappe/frappe/model/base_document.py +327 Data missing in table اطلاعات از دست رفته در جدول
1249 DocType: Page Page صفحه
1250 DocType: Workflow State briefcase کیف
1251 apps/frappe/frappe/model/base_document.py +420 Value cannot be changed for {0} ارزش می تواند برای عوض نمی شوند {0}
1252 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. به نظر میرسد شما نام خود را به جای ایمیل خود را نوشته اند. \ لطفا یک آدرس ایمیل معتبر وارد کنید به طوری که ما می توانید دریافت کنید.
1253 DocType: Workflow State Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange سبک نشان دهنده رنگ دکمه: موفقیت - سبز، خطر - قرمز، معکوس - سیاه و سفید، اولیه - آبی تیره، اطلاعات - آبی روشن، هشدار - نارنجی
1254 DocType: Workflow Transition Workflow Transition انتقال گردش کار
1255 DocType: Workflow State resize-horizontal تغییر اندازه-افقی
1264 apps/frappe/frappe/config/setup.py +32 Set Permissions on Document Types and Roles اجازه انتخاب در نوع مستندات و نقش
1265 DocType: About Us Settings "Company History" &quot;تاریخچه شرکت&quot;
1266 apps/frappe/frappe/permissions.py +283 Permission already set اجازه در حال حاضر مجموعه
1267 apps/frappe/frappe/desk/page/activity/activity_row.html +15 Commented on {0}: {1} نظر در {0}: {1}
1268 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. این محدودیت ها را برای انواع سند که در آن &#39;درخواست مجوز کاربر &quot;برای حکومت اجازه چک شده و یک میدان با این ارزش فعلی است اعمال می شود.
1269 DocType: Email Alert Send alert if this field's value changes ارسال هشدار در صورت تغییرات ارزش این زمینه را
1270 apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +102 Select a DocType to make a new format انتخاب یک DOCTYPE را به یک فرمت جدید
1352 DocType: Workflow DocType on which this Workflow is applicable. DOCTYPE که این گردش کار قابل اجرا می باشد.
1353 DocType: Blog Category Category Name نام بخش
1354 DocType: Print Settings PDF Settings تنظیمات PDF
1355 apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +16 Column Name نام ستون
1356 DocType: Web Form In JSON as <pre>[{"title":"Jobs", "name":"jobs"}]</pre> در JSON به عنوان <pre style=";text-align:right;direction:rtl"> [{&quot;عنوان&quot;: &quot;شغل&quot;، &quot;نام&quot;: &quot;شغل&quot;}] </pre>
1357 apps/frappe/frappe/core/doctype/doctype/doctype.py +284 Fieldtype {0} for {1} cannot be indexed Fieldtype {0} برای {1} نمی تواند نمایه می شود
1358 DocType: Communication Email Account حساب کاربری ایمیل

View file

@ -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.

1 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +224 Press Esc to close Paina Esc Sulje
150 DocType: Property Setter Field Name Kentän nimi
151 sites/assets/js/desk.min.js +771 or tai
152 sites/assets/js/desk.min.js +925 module name... moduulin nimi ...
153 apps/frappe/frappe/templates/generators/web_form.html +267 Continue Jatkaa Jatka
154 DocType: Custom Field Fieldname Fieldname
155 DocType: Workflow State certificate todistus
156 DocType: User Tile Laatta
497 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ä.
498 DocType: Communication User Tags Käyttäjä Tunnisteet
499 DocType: Workflow State download-alt download-alt
500 DocType: Web Page Main Section Main §
501 apps/frappe/frappe/core/doctype/doctype/doctype.py +225 {0} not allowed in fieldname {1} {0} ei ole sallittua fieldname {1}
502 DocType: Page Icon Ikoni
503 DocType: Web Page Content in markdown format that appears on the main side of your page Sisältöä markdown muodossa, joka näkyy tärkeimmistä puolella sivusi
589 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.
590 sites/assets/js/desk.min.js +965 Attach Document Print Liitä Document Tulosta
591 DocType: Social Login Keys Google Client ID Google Client ID
592 apps/frappe/frappe/core/doctype/user/user.py +63 Adding System Manager to this User as there must be atleast one System Manager Lisäämällä System Manager tähän User sillä täytyy olla vähintään yksi System Manager
593 DocType: Workflow State list-alt list-alt
594 apps/frappe/frappe/templates/pages/update-password.html +63 Password Updated Salasana Päivitetty
595 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. Valitse moduulit näytetään (perusteella lupa). Jos piilossa, ne piilotetaan kaikille käyttäjille.
605 apps/frappe/frappe/core/doctype/doctype/doctype.py +230 Fieldname {0} appears multiple times in rows {1} Fieldname {0} ilmestyy useita kertoja riveissä {1}
606 DocType: Workflow State arrow-down arrow-down
607 sites/assets/js/desk.min.js +874 Collapse Romahdus
608 apps/frappe/frappe/model/delete_doc.py +131 User not allowed to delete {0}: {1} Käyttäjä ei saa poistaa {0}: {1}
609 DocType: Website Settings Linked In Share Linked In Share
610 sites/assets/js/desk.min.js +622 Last Updated On Viimeksi päivitetty
611 DocType: Website Settings Top Bar Top Bar
742 sites/assets/js/desk.min.js +641 New Name Uusi nimi
743 sites/assets/js/form.min.js +199 Insert Above Insert Above
744 sites/assets/js/list.min.js +21 Not Saved Ei tallennettu
745 DocType: Custom Field Default Value Oletusarvo
746 sites/assets/js/desk.min.js +257 Verify Tarkistaa
747 DocType: Workflow Document State Update Field Päivitä Field
748 apps/frappe/frappe/email/doctype/email_account/email_account.py +272 Leave this conversation Jätä tämä keskustelu
1048 DocType: Print Settings Monochrome Yksivärinen
1049 DocType: Workflow Different "States" this document can exist in. Like "Open", "Pending Approval" etc. Eri &quot;valtiot&quot; tämän asiakirjan voi esiintyä. Kuten &quot;Avaa&quot;, &quot;Odottaa hyväksyntää&quot; jne
1050 apps/frappe/frappe/utils/verified_command.py +40 This link is invalid or expired. Please make sure you have pasted correctly. Tämä linkki on virheellinen tai vanhentunut. Varmista, että olet liittänyt oikein.
1051 DocType: Web Form Web Form Fields Web Form Fields
1052 DocType: Website Theme Top Bar Text Color Top Bar Tekstin väri
1053 apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +367 Remove Section Poista jakso
1054 sites/assets/js/desk.min.js +521 Invalid Email: {0} Virheellinen Email: {0}
1352 DocType: Workflow DocType on which this Workflow is applicable. DOCTYPE johon tämä Workflow on sovellettavissa.
1353 DocType: Blog Category Category Name Luokan nimi
1354 DocType: Print Settings PDF Settings PDF-asetukset
1355 apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +16 Column Name Sarake Name
1356 DocType: Web Form In JSON as <pre>[{"title":"Jobs", "name":"jobs"}]</pre> JSON kuten <pre> [{&quot;Title&quot;: &quot;Jobs&quot;, &quot;name&quot;: &quot;työpaikat&quot;}] </pre>
1357 apps/frappe/frappe/core/doctype/doctype/doctype.py +284 Fieldtype {0} for {1} cannot be indexed Fieldtype {0} on {1} ei voida indeksoida
1358 DocType: Communication Email Account Email Account

View file

@ -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&#39;ê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&#39;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&#39;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&#39;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 fonction
apps/frappe/frappe/templates/includes/login/login.js +125,Oops! Something went wrong,Oups! Oups. Quelque chose a mal tour
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

1 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +224 Press Esc to close Appuyez sur Echap pour fermer
84 DocType: Comment Post Topic Message Sujet
85 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%.
86 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.
87 sites/assets/js/desk.min.js +986 You are not allowed to send emails related to this document Mettez sur le site Web Vous n'êtes pas autorisé d'envoyer un email en relation avec ce document
88 apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30 You are not allowed to delete a standard Website Theme Vous n&#39;êtes pas autorisé à supprimer un site Web thème Standard
89 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +176 Example Exemple
90 DocType: Workflow State gift cadeau
365 apps/frappe/frappe/templates/emails/print_link.html +2 View this in your browser Regardez cela dans votre navigateur
366 DocType: DocType Search Fields Champs de recherche
367 sites/assets/js/desk.min.js +988 Email sent to {0} entrer une valeur Email envoyé à {0}
368 DocType: Event Event Événement
369 sites/assets/js/desk.min.js +997 On {0}, {1} wrote: Sur {0}, {1} a écrit:
370 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
371 DocType: Top Bar Item For top bar Pour la barre supérieure
440 sites/assets/js/desk.min.js +1016 Updated To New Version Mise à jour vers la nouvelle version
441 DocType: DocField Depends On Dépend de
442 DocType: DocPerm Additional Permissions autorisations supplémentaires
443 sites/assets/js/form.min.js +310 Compose Composer
444 apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +13 Start entering data below this line Commencez à entrer les données ci-dessous cette ligne
445 DocType: Workflow State retweet retweet
446 apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +40 Update the template and save in CSV (Comma Separate Values) format before attaching. Mettre à jour le modèle et l'enregistrer au format CSV (Comma valeurs distinctes) avant de fixer le format.
647 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.
648 apps/frappe/frappe/desk/doctype/todo/todo.py +17 Assigned to {0}: {1} Assigné à {0}: {1}
649 DocType: DocField Percent Pour cent
650 DocType: Workflow State book livre
651 DocType: Website Settings Landing Page Landing Page
652 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162 No Permissions set for this criteria. Aucun Permission fixé pour ce critère.
653 apps/frappe/frappe/config/setup.py +120 Setup Email Alert based on various criteria. Configuration Alerte E-mail basée sur différents critères.
696 sites/assets/js/desk.min.js +264 You have been logged out Vous avez été déconnecté
697 apps/frappe/frappe/core/page/user_permissions/user_permissions.py +58 Cannot remove permission for DocType: {0} and Name: {1} Vous ne pouvez pas retirer l'autorisation de DocType : {0} et Nom : {1}
698 sites/assets/js/editor.min.js +115 Remove Link Supprimer le lien
699 apps/frappe/frappe/desk/page/activity/activity_row.html +11 Logged in Connecté
700 apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6 Default Sending and Inbox Par défaut Envoi et boîte de réception
701 DocType: Print Settings Letter Lettre
702 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +95 Reset Permissions for {0}? Réinitialiser des autorisations pour {0} ?
1061 DocType: Workflow States Etats-
1062 DocType: Email Alert Attach Print Fixez Imprimer
1063 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. Lorsque vous modifiez un document après Annuler et enregistrez-le , il va obtenir un nouveau numéro qui est une version de l'ancien numéro .
1064 apps/frappe/frappe/core/doctype/doctype/doctype.py +36 {0} not allowed in name {0} n'est pas autorisé dans le nom
1065 DocType: Workflow State circle-arrow-left cercle flèche gauche
1066 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
1067 sites/assets/js/desk.min.js +918 Make a new record Faire un nouveau record Faire un nouveau enregistrement
1072 DocType: Note Note is a free page where users can share documents / notes Note est un free page où les utilisateurs peuvent partager des documents / notes
1073 DocType: Website Theme Top Bar Color Top Bar Couleur
1074 DocType: DocType Allow Import Permettre l&#39;importation
1075 apps/frappe/frappe/templates/includes/comments/comments.py +57 New comment on {0} {1} Nouveau commentaire sur {0} {1}
1076 DocType: Workflow State glass verre
1077 DocType: Country Time Zones Fuseaux horaires
1078 DocType: Workflow State remove-sign retirez-signer
1269 DocType: Email Alert Send alert if this field's value changes Envoyer une alerte si les variations de la valeur de ce terrain
1270 apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +102 Select a DocType to make a new format Sélectionnez un DOCTYPE pour faire un nouveau format
1271 DocType: Module Def Module Def Module Def
1272 sites/assets/js/form.min.js +199 Done Fini
1273 sites/assets/js/form.min.js +294 Reply Répondre
1274 DocType: Communication By Par
1275 DocType: Email Account SMTP Server Serveur SMTP
1303 DocType: Feed Info Infos
1304 apps/frappe/frappe/templates/includes/contact.js +30 Thank you for your message Je vous remercie pour votre message
1305 DocType: Website Settings Home Page Page d&#39;accueil
1306 DocType: Email Alert Filters Filtres
1307 DocType: Workflow State share-alt actions alt
1308 DocType: Role Role Name Rôle Nom
1309 DocType: Workflow Document State Workflow Document State Etat du document de workflow
1456 apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +19 Label is mandatory Étiquette est obligatoire
1457 DocType: DocField Unique Unique
1458 DocType: File Data File Name Nom du fichier
1459 apps/frappe/frappe/core/page/data_import_tool/importer.py +261 Did not find {0} for {0} ({1}) Nous n'avons pas trouvé {0} pour {0} ( {1} )
1460 apps/frappe/frappe/config/setup.py +39 Set Permissions per User Définir les autorisations par utilisateur
1461 DocType: Print Format Edit Format Modifier le format
1462 apps/frappe/frappe/templates/emails/new_user.html +6 Complete Registration Terminer l'inscription
1483 DocType: Web Form Allow Comments Autoriser les commentaires
1484 DocType: User Background Style Style du fond
1485 DocType: System Settings mm-dd-yyyy mm-jj-aaaa
1486 apps/frappe/frappe/desk/doctype/feed/feed.py +91 {0} logged in {0} connecté
1487 DocType: Workflow All possible Workflow States and roles of the workflow. Docstatus Options: 0 is"Saved", 1 is "Submitted" and 2 is "Cancelled" Toutes possible Unis workflow et les rôles du workflow. Options de Docstatus: 0 est &quot;Saved&quot;, 1 est «soumis» et 2 est «ANNULÉ»
1488 apps/frappe/frappe/templates/emails/new_user.html +4 Your login id is Votre ID de connexion est
1489 DocType: DocField Ignore User Permissions Ignorer les autorisations des utilisateurs

View file

@ -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,मार्च

1 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +224 Press Esc to close ईएससी प्रेस बंद करने के लिए
225 sites/assets/js/desk.min.js +947 Unread Messages अपठित संदेशों
226 DocType: System Settings Disable Standard Email Footer मानक ईमेल पाद अक्षम
227 DocType: Workflow State facetime-video FaceTime वीडियो
228 apps/frappe/frappe/website/doctype/blog_post/blog_post.py +164 1 comment 1 टिप्पणी १ टिप्पणी
229 DocType: Email Alert Days Before एक दिन पहले
230 apps/frappe/frappe/website/doctype/website_settings/website_settings.js +72 Select a Banner Image first. पहले एक बैनर छवि का चयन करें.
231 DocType: Workflow State volume-down मात्रा नीचे
239 DocType: User Reset Password Key पासवर्ड को रीसेट
240 DocType: Email Account Enable Auto Reply ऑटो जवाब सक्षम करें
241 apps/frappe/frappe/core/doctype/scheduler_log/scheduler_log_list.js +7 Not Seen नहीं देखा
242 DocType: Workflow State zoom-in ज़ूम आकार वर्धन
243 apps/frappe/frappe/email/bulk.py +131 Unsubscribe from this list इस सूची से सदस्यता समाप्त
244 apps/frappe/frappe/desk/page/activity/activity.js +153 Sep सितम्बर
245 DocType: DocField Width चौडाई
314 sites/assets/js/desk.min.js +622 Last Updated By अंतिम बार अद्यतित
315 DocType: Website Theme Background Color पृष्ठभूमि रंग
316 sites/assets/js/desk.min.js +989 There were errors while sending email. Please try again. ईमेल भेजने के दौरान त्रुटि . पुन: प्रयास करें .
317 DocType: Web Page 0 is highest 0 सर्वोच्च है ० सबसे ज्यादा है
318 apps/frappe/frappe/website/doctype/web_form/web_form.py +31 You don't have the permissions to access this document आप इस दस्तावेज़ का उपयोग करने की अनुमति नहीं है
319 DocType: Email Alert Value Changed मान बदल गया
320 apps/frappe/frappe/model/base_document.py +272 Duplicate name {0} {1} डुप्लिकेट नाम {0} {1}
715 DocType: File Data Attached To DocType टैग से जुड़ी
716 apps/frappe/frappe/desk/page/activity/activity.js +153 Aug अगस्त
717 DocType: DocField Int इंट
718 DocType: Currency 1 Currency = [?] Fraction For e.g. 1 USD = 100 Cent एक मुद्रा = [?] उदाहरण के लिए एक डालर के लिए अंश = 100 प्रतिशत १ मुद्रा = [?] अंश, उदाहरण के लिए १ डालर = १०० सेन्ट
719 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +370 Add New Permission Rule नई अनुमति नियम जोड़ें
720 sites/assets/js/desk.min.js +598 You can use wildcard % आप वाइल्डकार्ड% का उपयोग कर सकते हैं
721 apps/frappe/frappe/desk/page/activity/activity.js +152 Mar मार्च
722 sites/assets/js/desk.min.js +862 Only image extensions (.gif, .jpg, .jpeg, .tiff, .png, .svg) allowed (.gif, .jpg, .jpeg, झगड़ा, .png, .svg) की अनुमति केवल छवि एक्सटेंशन
723 DocType: Customize Form Fields separated by comma (,) will be included in the "Search By" list of Search dialog box अल्पविराम द्वारा अलग फील्ड्स (,) में शामिल किया जाएगा खोज डायलॉग बॉक्स की सूची &quot;द्वारा खोज&quot;
724 apps/frappe/frappe/website/doctype/website_theme/website_theme.py +35 Please Duplicate this Website Theme to customize. इस वेबसाइट विषय को अनुकूलित करने के लिए डुप्लीकेट करें।
DocType: DocField Text Editor पाठ संपादक
725 apps/frappe/frappe/config/website.py +69 DocType: DocField Settings for About Us Page. Text Editor हमारे बारे में पृष्ठ के लिए सेटिंग्स. पाठ संपादक
726 apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +532 apps/frappe/frappe/config/website.py +69 Edit Custom HTML Settings for About Us Page. संपादित कस्टम HTML हमारे बारे में पृष्ठ के लिए सेटिंग्स.
727 DocType: Email Alert apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +532 Value Change Edit Custom HTML मान बदलने संपादित कस्टम HTML

View file

@ -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

1 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +224 Press Esc to close Pritisnite Esc za zatvaranje
1216 DocType: Email Account Use SSL Koristite SSL
1217 DocType: Workflow State play-circle play-krug
1218 apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +75 Select Print Format to Edit Odaberite format ispisa za uređivanje
1219 DocType: Workflow State circle-arrow-down krug sa strelicom prema dolje
1220 DocType: DocField Datetime Datum i vrijeme
1221 DocType: Workflow State arrow-right Strelica desno
1222 DocType: Workflow State Workflow state represents the current state of a document. Stanje hodograma predstavlja trenutno stanje dokumenta.

View file

@ -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&#39;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 [&#39;REPORTNAME&#39;] = {}
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 &quot;{0}&quot;
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, &quot;Cent&quot;"
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&#39;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 &quot;Google Web Font&quot; per esempio &quot;Open Sans&quot;
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&#39;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. [<a href=""http://favicon-generator.org/"" target=""_blank"">favicon-generator.org</a>]","Icona con estensione .ico. 16 x 16 px. Genera con favicon generator. [<a href=""http://favicon-generator.org/"" target=""_blank"">favicon-generator.org</a>]"
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&#39;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&#39;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&#39;utente non può cercare
DocType: DocPerm,Apply this rule if the User is the Owner,Applicare questa regola se l&#39;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 &lt;script&gt;,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&#39;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&#39;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,"<a onclick=""msgprint('<ol>\
<li><b>field:[fieldname]</b> - By Field\
@ -1474,12 +1474,12 @@ DocType: DocType,"<a onclick=""msgprint('<ol>\
<li> <b> Prompt </ b> - Richiedi all'utente per un nome \
<li> <b> [Serie] </ . b> - Serie di prefisso (separati da un punto), ad esempio PRE ##### \
</ ol> ') ""> Naming Options </a>"
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

1 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +224 Press Esc to close Premi Esc per chiudere
43 sites/assets/js/editor.min.js +155 Insert Inserire
44 sites/assets/js/desk.min.js +598 Select {0} Selezionare {0}
45 DocType: Feed Color Colore
46 DocType: Workflow State indent-right trattino-destra rientro-destra
47 sites/assets/js/desk.min.js +846 Web Link Link
48 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.
49 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 DocType: Communication Visit Visita
63 apps/frappe/frappe/desk/page/applications/application_row.html +7 Install Installare
64 DocType: Website Settings Twitter Share via Twitter Condividi via
65 apps/frappe/frappe/config/website.py +33 Embed image slideshows in website pages. Includi slideshow di immagin nellae pagine del sito. Includi slideshow di immagin nelle pagine del sito.
66 DocType: Workflow Action Workflow Action Name Flusso di lavoro Nome Azione
67 apps/frappe/frappe/core/doctype/doctype/doctype.py +130 DocType can not be merged DocType non può essere fusa
68 DocType: Web Form Field Fieldtype FieldType
74 DocType: Print Format Helvetica Helvetica
75 DocType: Note Everyone can read Tutti possono leggere
76 apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +25 Please specify user Si prega di specificare l'utente
77 DocType: Email Unsubscribe Email Unsubscribe Email Cancellati Cancella sottoscrizione E-mail
78 DocType: Website Settings Select an image of approx width 150px with a transparent background for best results. Selezionare un&#39;immagine di circa larghezza 150px con sfondo trasparente per i migliori risultati.
79 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
80 DocType: Workflow State circle-arrow-up cerchio-freccia-up
92 apps/frappe/frappe/core/doctype/communication/communication.py +124 Unable to find attachment {0} Impossibile trovare attaccamento {0}
93 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.
94 apps/frappe/frappe/config/setup.py +72 Show / Hide Modules Mostra / Nascondi Moduli
95 apps/frappe/frappe/core/doctype/report/report.js +37 Disable Report Disabilita Relazione Disabilita Report
96 DocType: Report JavaScript Format: frappe.query_reports['REPORTNAME'] = {} Formato JavaScript: frappe.query_reports [&#39;REPORTNAME&#39;] = {}
97 DocType: Version Doclist JSON Doclist JSON
98 DocType: Workflow State chevron-up chevron-up
127 apps/frappe/frappe/templates/pages/list.py +46 Filtered by "{0}" Filtrato per &quot;{0}&quot;
128 sites/assets/js/desk.min.js +1009 Message from {0} Messaggio da {0}
129 DocType: Blog Settings Blog Title Titolo Blog
130 apps/frappe/frappe/print/page/print_format_builder/print_format_builder_layout.html +12 Edit to set heading Modifica per impostare voce Modifica per impostare titolo
131 DocType: About Us Settings Team Members Membri del Team
132 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
133 DocType: DocField Permissions Permessi di Scrittura
136 DocType: Event Public Pubblico
137 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
138 DocType: Block Module Block Module Block Modulo
139 apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3 Export Template Esporta modello Esporta Modello
140 DocType: Block Module Module Modulo
141 DocType: Email Alert Send Alert On Invia avviso in
142 DocType: Web Form Website URL URL del sito web
163 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +366 Add A New Rule Aggiunge una nuova regola
164 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
165 DocType: User Roles Assigned Ruoli assegnati
166 DocType: Top Bar Item Parent Label Parent Label Etichetta superiore
167 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.
168 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 .
169 DocType: Event Repeat Till Ripetere Fino
170 DocType: Blogger Will be used in url (usually first name). Saranno utilizzati in url (solitamente nome).
171 apps/frappe/frappe/client.py +63 Can not edit Read Only fields Non è possibile modificare Leggi solo i campi Non è possibile modificare. Campi sola lettura
172 apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +460 Edit Heading Modifica Intestazione
173 DocType: File Data File URL URL del file
174 apps/frappe/frappe/desk/doctype/event/event.py +68 Upcoming Events for Today Prossimi eventi di oggi
192 apps/frappe/frappe/core/doctype/version/version.js +10 Version restored versione restaurata
193 DocType: Event Role Event Role Ruolo Evento
194 sites/assets/js/editor.min.js +125 Indent (Tab) Rientro (Tab)
195 DocType: Workflow State List lista Lista
196 DocType: Page Role Page Role Pagina Ruolo
197 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
198 DocType: System Settings mm/dd/yyyy gg / mm / aaaa gg/mm/aaaa
199 apps/frappe/frappe/email/doctype/email_account/email_account.py +266 Re: Re: R:
200 DocType: Currency Sub-currency. For e.g. "Cent" Sub-valuta. Per esempio, &quot;Cent&quot;
201 DocType: Letter Head Check this to make this the default letter head in all prints Seleziona per usare questa intestazione in tutte le stampe
202 DocType: Print Format Server Server
216 DocType: Website Settings Website Theme Image Link Sito web dell&#39;associazione Tema immagine
217 DocType: Website Settings Sidebar Items articoli Sidebar
218 DocType: Workflow State exclamation-sign esclamazione-sign
219 DocType: Website Theme Hide Sidebar Nascondere la barra laterale Nascondere la Barra Laterale
220 sites/assets/js/list.min.js +100 Gantt Gantt
221 DocType: About Us Settings Introduce your company to the website visitor. Introdurre la vostra azienda per il visitatore del sito.
222 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 DocType: System Settings Disable Standard Email Footer Disabilitare standard Email Footer
227 DocType: Workflow State facetime-video FaceTime-video
228 apps/frappe/frappe/website/doctype/blog_post/blog_post.py +164 1 comment 1 commento
229 DocType: Email Alert Days Before Giorni prima Giorni Prima
230 apps/frappe/frappe/website/doctype/website_settings/website_settings.js +72 Select a Banner Image first. Selezionare un Banner Immagine prima.
231 DocType: Workflow State volume-down volume-giù
232 DocType: Email Account Send Notification to Invia notifica a
255 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.
256 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 .
257 DocType: Web Form Message to be displayed on successful completion Messaggio da visualizzare sul completamento
258 DocType: Website Settings Footer Items elementi Piè di pagina Elementi Piè di Pagina
259 sites/assets/js/desk.min.js +407 Menu Menu
260 DocType: DefaultValue DefaultValue ValorePredefinito Valore Predefinito
261 apps/frappe/frappe/config/setup.py +19 User Roles ruoli degli utenti
262 DocType: Property Setter Property Setter overrides a standard DocType or Field property Property Setter prevale un DOCTYPE standard o immobili Campo
263 apps/frappe/frappe/core/doctype/user/user.py +333 Cannot Update: Incorrect / Expired Link. Impossibile Aggiornare : Link Errato / Scaduto.
275 DocType: Workflow State thumbs-down pollice in giù
276 apps/frappe/frappe/core/doctype/page/page.py +32 Not in Developer Mode Non in modalità sviluppatore
277 DocType: Comment Comment Time Tempo Commento
278 DocType: Workflow State indent-left trattino-sinistra rientro-sinistra
279 DocType: Currency Currency Name Nome Valuta
280 DocType: Report Javascript Javascript
281 DocType: File Data Content Hash Hash contenuto
292 apps/frappe/frappe/core/doctype/doctype/doctype.py +316 Fieldname is required in row {0} Fieldname è richiesto in riga {0}
293 apps/frappe/frappe/print/page/print_format_builder/print_format_builder_column_selector.html +4 Column Colonna
294 DocType: Custom Field Adds a custom field to a DocType Aggiunge un campo personalizzato a un DOCTYPE
295 sites/assets/js/editor.min.js +103 Bold (Ctrl/Cmd+B) Bold (Ctrl / Cmd + B) Grassetto (Ctrl / Cmd + B)
296 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140 Upload and Sync Carica e sincronizzazione
297 sites/assets/js/form.min.js +280 Shared with {0} Condiviso con {0}
298 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 DocType: User Last IP Ultimo IP
310 apps/frappe/frappe/core/doctype/communication/communication.js +17 Add To Aggiungere A
311 DocType: DocPerm Filter records based on User Permissions defined for a user Filtrare i record sulla base di autorizzazioni utente definiti per un utente
312 sites/assets/js/editor.min.js +111 Insert picture (or just drag & drop) Inserire la foto (o semplicemente drag & drop) Inserire la foto (o semplicemente trascina)
313 apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +29 Fieldname not set for Custom Field Non Fieldname fissati per Campo personalizzato
314 sites/assets/js/desk.min.js +622 Last Updated By Ultimo aggiornamento Di
315 DocType: Website Theme Background Color Colore Sfondo
319 DocType: Email Alert Value Changed Valore Cambiato
320 apps/frappe/frappe/model/base_document.py +272 Duplicate name {0} {1} Duplicare nome {0} {1}
321 DocType: Web Form Field Web Form Field Web Form Campo
322 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +197 Hide field in Report Builder Hide campo in report Nascondi campo in Report Builder
323 apps/frappe/frappe/print/page/print_format_builder/print_format_builder_field.html +14 Edit HTML Modifica HTML
324 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +494 Restore Original Permissions Ripristina autorizzazioni originali
325 DocType: DocField Button Pulsante
342 apps/frappe/frappe/desk/page/activity/activity.js +152 Feb Febbraio
343 DocType: DocPerm Role Ruolo
344 apps/frappe/frappe/utils/data.py +382 Cent Centesimo
345 apps/frappe/frappe/config/setup.py +104 Manage uploaded files. Gestire i file caricati . Gestire i file caricati.
346 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 ) .
347 sites/assets/js/desk.min.js +608 Set Quantity Set Quantità
348 Data Import Tool Dati Import Tool Strumento per Importare Dati
349 apps/frappe/frappe/core/doctype/user/user.py +378 Registration Details Emailed. Dettagli di registrazione ricevuta via email.
350 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.
351 DocType: DocType Is Single È single
404 apps/frappe/frappe/config/setup.py +66 Language, Date and Time settings Impostazioni di lingua , data e ora
405 DocType: User Represents a User in the system. Rappresenta un utente nel sistema.
406 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.
407 DocType: User Modules Access Access Modules Accesso Moduli
408 DocType: Print Format Print Format Type Stampa Tipo di formato
409 sites/assets/js/desk.min.js +936 Open Source Applications for the Web Applicazioni Open Source per il web
410 DocType: Website Theme Add the name of a "Google Web Font" e.g. "Open Sans" Aggiungere il nome di un &quot;Google Web Font&quot; per esempio &quot;Open Sans&quot;
411 DocType: DocType Hide Toolbar Nascondi la Barra degli strumenti Nascondi la Barra degli Strumenti
412 DocType: Email Account SMTP Settings for outgoing emails Impostazioni SMTP per le email in uscita
413 apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +125 Import Failed Import non riuscita Importazione non riuscita
414 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
415 DocType: Email Account Auto Reply Message Auto Reply Message
416 DocType: Email Alert Condition Condizione
465 apps/frappe/frappe/utils/nestedset.py +221 Multiple root nodes not allowed. Nodi principali multipli non ammessi.
466 sites/assets/js/desk.min.js +689 Get Ottieni
467 sites/assets/js/desk.min.js +206 Confirm Confermare
468 DocType: System Settings yyyy-mm-dd aaaa-mm-gg
469 apps/frappe/frappe/email/doctype/email_account/email_account.py +37 Login Id is required È richiesto ID di accesso
470 DocType: Website Slideshow Website Slideshow Presentazione sito web
471 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)
473 DocType: Website Settings Banner Image Immagine Banner
474 DocType: Custom Field Custom Field Campo Personalizzato
475 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
476 DocType: DocPerm Set User Permissions Impostare le autorizzazioni utente
477 DocType: Email Account Email Account Name Email Nome account
478 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +249 Select Document Types Seleziona tipi di documenti
479 DocType: Email Account e.g. "Support", "Sales", "Jerry Yang" ad esempio "Support "," vendite "," Jerry Yang "
481 DocType: Workflow State fast-forward fast-forward
482 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.
483 DocType: Event Every Day Ogni Giorno
484 apps/frappe/frappe/email/smtp.py +58 Please setup default Email Account from Setup > Email > Email Account Si prega di Account impostazione predefinita E-mail da Impostazioni> E-mail> Account e-mail
485 DocType: Workflow State move Mossa
486 DocType: Web Form Actions Azioni
487 DocType: Workflow State align-justify allineamento giustificare
489 sites/assets/js/desk.min.js +605 No Results Nessun risultato
490 DocType: System Settings Security sicurezza
491 DocType: Currency **Currency** Master ** ** Valuta Maestro **Valuta** Principale
492 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.
493 sites/assets/js/list.min.js +104 Starred By Me Preferiti By Me
494 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +48 Select Document Type Seleziona tipo di documento
495 apps/frappe/frappe/utils/nestedset.py +201 Cannot delete {0} as it has child nodes Impossibile eliminare {0} come ha nodi figlio
496 apps/frappe/frappe/templates/includes/list/filters.html +19 clear chiaro
497 apps/frappe/frappe/desk/doctype/event/event.py +28 Every day events should finish on the same day. Ogni giorno gli eventi dovrebbero terminare nello stesso giorno.
498 DocType: Communication User Tags Tags utente
503 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
504 DocType: System Settings dd/mm/yyyy gg / mm / aaaa gg/mm/aaaa
505 DocType: Website Settings An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [<a href="http://favicon-generator.org/" target="_blank">favicon-generator.org</a>] Icona con estensione .ico. 16 x 16 px. Genera con favicon generator. [<a href="http://favicon-generator.org/" target="_blank">favicon-generator.org</a>]
506 DocType: Blog Settings Blog Settings Impostazioni Blog
507 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
508 DocType: Workflow State bullhorn megafono
509 DocType: Social Login Keys Facebook Client Secret Facebook client Segreto
510 DocType: Website Settings Copyright Copyright
511 DocType: Social Login Keys Google Client Secret Google client Segreto
513 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.
514 DocType: DocType Sort Field Ordina campo
515 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.
516 apps/frappe/frappe/core/doctype/doctype/doctype.py +234 Field {0} of type {1} cannot be mandatory Il campo {0} di tipo {1} non può essere obbligatorio
517 DocType: System Settings Session Expiry Mobile Sessione Scadenza mobile
518 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +421 If {0} is permitted Se è consentito {0}
519 DocType: DocPerm If user is the owner Se l&#39;utente è il proprietario
526 sites/assets/js/editor.min.js +113 Insert Link Inserisci collegamento Inserisci Collegamento
527 DocType: Contact Us Settings Query Options Opzioni query
528 DocType: Patch Log Patch Log Patch Log
529 DocType: Communication Sent or Received Inviati o ricevuti
530 DocType: DefaultValue Key Chiave
531 apps/frappe/frappe/config/setup.py +54 Report of all document shares Rapporto del totale delle azioni di documenti
532 sites/assets/js/desk.min.js +622 Starred By Interpretato da
533 apps/frappe/frappe/templates/pages/update-password.html +14 New Password Nuova password
547 DocType: DocShare Document Name Documento Nome
548 DocType: Comment Comment By Commento di
549 DocType: Customize Form Customize Form Personalizzare modulo
550 DocType: Currency A symbol for this currency. For e.g. $ Un simbolo per questa valuta. Per esempio $
551 sites/assets/js/desk.min.js +934 Frappe Framework Quadro Frappe Frappe Framework
552 apps/frappe/frappe/model/naming.py +162 Name of {0} cannot be {1} Nome {0} non può essere {1}
553 apps/frappe/frappe/config/setup.py +74 Show or hide modules globally. Mostrare o nascondere i moduli a livello globale .
554 DocType: Workflow State Success Successo
555 DocType: Website Settings Sidebar Links for Home Page only Link Sidebar per pagina solo
556 apps/frappe/frappe/templates/includes/login/login.js +124 Invalid Login Accesso non valido
557 DocType: Communication Phone No. No. Telefono
558 DocType: Workflow State fire fuoco
581 DocType: Website Settings Google Analytics ID ID Google Analytics
582 DocType: Website Theme Link to your Bootstrap theme Link al vostro tema Bootstrap
583 sites/assets/js/desk.min.js +593 Edit as {0} Modifica come {0}
584 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +194 No User Restrictions found. No Restrizioni utente trovato. Nessuna Restrizione trovata per l'Utente.
585 apps/frappe/frappe/email/doctype/email_account/email_account_list.js +10 Default Inbox Posta in arrivo predefinita
586 sites/assets/js/desk.min.js +607 Make a new Effettuare una nuova
587 DocType: Print Settings PDF Page Size Formato pagina PDF
588 sites/assets/js/desk.min.js +947 About About
589 apps/frappe/frappe/core/page/data_import_tool/exporter.py +66 For updating, you can update only selective columns. Per l'aggiornamento, è possibile aggiornare le colonne solo selettivi.
590 sites/assets/js/desk.min.js +965 Attach Document Print Allega documento Stampa
591 DocType: Social Login Keys Google Client ID Google client ID
604 DocType: Communication Chat Chat
605 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}
606 DocType: Workflow State arrow-down freccia verso il basso
607 sites/assets/js/desk.min.js +874 Collapse crollo
608 apps/frappe/frappe/model/delete_doc.py +131 User not allowed to delete {0}: {1} L'utente non ha permesso di eliminare {0}: {1}
609 DocType: Website Settings Linked In Share Linked In Condividi
610 sites/assets/js/desk.min.js +622 Last Updated On Ultimo aggiornamento il
653 apps/frappe/frappe/config/setup.py +120 Setup Email Alert based on various criteria. Setup Email Alert basa su diversi criteri.
654 apps/frappe/frappe/website/doctype/blog_post/blog_post.py +93 Posts filed under {0} Gli articoli archiviati in {0}
655 DocType: Email Alert Send alert if date matches this field's value Invia avviso se la data coincide con il valore di questo campo
656 DocType: Workflow Transitions Transizioni
657 DocType: User Login After Accedi Dopo
658 DocType: Print Format Monospace Monospace
659 DocType: Workflow State thumbs-up pollice in su
664 DocType: Workflow State step-backward passo indietro
665 apps/frappe/frappe/utils/boilerplate.py +228 {app_title} { app_title }
666 DocType: Email Account Uses the Email ID mentioned in this Account as the Sender for all emails sent using this Account. Utilizza l&#39;ID e-mail citato in questo account come mittente per tutte le email inviate tramite questo account.
667 apps/frappe/frappe/core/page/data_import_tool/exporter.py +65 Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish. Solo campi obbligatori sono necessari per i nuovi record. È possibile eliminare le colonne non obbligatori, se lo si desidera.
668 sites/assets/js/list.min.js +160 Unable to update event Impossibile aggiornare evento
669 DocType: Workflow State text-height text-altezza
670 DocType: Workflow State map-marker mappa-marcatore
689 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 .
690 DocType: Communication Sender Mittente
691 DocType: Web Page Description for search engine optimization. Descrizione per l&#39;ottimizzazione dei motori di ricerca.
692 apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +21 Download Blank Template Scarica Template Blank
693 DocType: DocField In Filter In Filtro
694 DocType: Website Theme Footer Color Footer Colore Colore Piè di Pagina
695 DocType: Web Page Page to show on the website Pagina di mostrare sul sito
696 sites/assets/js/desk.min.js +264 You have been logged out Sei stato disconnesso
697 apps/frappe/frappe/core/page/user_permissions/user_permissions.py +58 Cannot remove permission for DocType: {0} and Name: {1} Impossibile rimuovere l'autorizzazione per DocType : {0} e nome : {1}
698 sites/assets/js/editor.min.js +115 Remove Link Rimuovi collegamento
699 apps/frappe/frappe/desk/page/activity/activity_row.html +11 Logged in Collegato
700 apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6 Default Sending and Inbox Predefinito Invio e Posta in arrivo
701 DocType: Print Settings Letter Lettere Lettera
703 apps/frappe/frappe/permissions.py +279 {0} {1} not found {0} {1} non trovato
704 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +214 Show a description below the field Mostra la descrizione sotto il campo
705 DocType: Workflow State align-left allineamento a sinistra
706 DocType: User Defaults Predefiniti Valori Predefiniti
707 sites/assets/js/desk.min.js +641 Merge with existing Unisci con esistente
708 DocType: User Birth Date Data di Nascita
709 DocType: Workflow State fast-backward indietro veloce
710 DocType: DocShare DocShare DocShare
711 DocType: Report Add Total Row Aggiungere Riga Totale
712 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.
713 DocType: Workflow Document State 0 - Draft; 1 - Submitted; 2 - Cancelled 0 - Progetto; 1 - Presentata; 2 - Annullato 0 - Bozza; 1 - Presentata; 2 - Annullato
714 apps/frappe/frappe/core/page/modules_setup/modules_setup.js +5 Show or Hide Modules Mostrare o nascondere i moduli
715 DocType: File Data Attached To DocType Allega aDocType
716 apps/frappe/frappe/desk/page/activity/activity.js +153 Aug Agosto
717 DocType: DocField Int Int.
718 DocType: Currency 1 Currency = [?] Fraction For e.g. 1 USD = 100 Cent 1 valuta = [?] Frazione Per esempio 1 USD = 100 Cent
719 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +370 Add New Permission Rule Aggiungere Nuova Autorizzazione
720 sites/assets/js/desk.min.js +598 You can use wildcard % È possibile utilizzare il carattere jolly%
721 apps/frappe/frappe/desk/page/activity/activity.js +152 Mar Mar
747 DocType: Workflow Document State Update Field Aggiorna campo
748 apps/frappe/frappe/email/doctype/email_account/email_account.py +272 Leave this conversation Lasciare questa conversazione
749 apps/frappe/frappe/model/base_document.py +362 Options not set for link field {0} Le opzioni non impostate per il campo link {0}
750 DocType: Workflow State asterisk asterisco
751 apps/frappe/frappe/core/page/data_import_tool/exporter.py +61 Please do not change the template headings. Si prega di non modificare le intestazioni modello.
752 DocType: Workflow State shopping-cart shopping cart
753 DocType: Social Login Keys Google Google
768 apps/frappe/frappe/core/doctype/user/user.py +81 New password emailed Nuova password inviata per email
769 apps/frappe/frappe/auth.py +209 Login not allowed at this time Accesso non consentito in questo momento
770 DocType: DocType Permissions Settings Impostazioni delle autorizzazioni
771 sites/assets/js/desk.min.js +931 {0} List {0} Lista
772 apps/frappe/frappe/desk/form/assign_to.py +39 Already in user's To Do list Già dagli utenti di To Do list
773 DocType: Email Account Enable Outgoing Abilita uscita
774 DocType: System Settings Email Footer Address Email Footer Indirizzo Indirizzo in calce per Email
778 apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14 Default Sending Invio di default
779 DocType: Workflow State volume-off volume-off
780 DocType: Custom Field Properties Proprietà
781 apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +47 Do not update, but insert new records. Non aggiornare, ma inserire nuovi record.
782 DocType: DocField Dynamic Link Dynamic Link
783 DocType: Property Setter DocType or Field DocType Campo
784 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +3 Quick Help for Setting Permissions Guida rapida per Impostazione delle autorizzazioni
808 DocType: Workflow State arrow-left freccia-sinistra
809 apps/frappe/frappe/desk/page/applications/application_row.html +5 Installed installato
810 DocType: Workflow State fullscreen fullscreen Schermo intero
811 DocType: Event Ref Name Rif. Nome Nome Rif.
812 DocType: Web Page Center Centro
813 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33 Setup > User Permissions Manager Setup > Autorizzazioni utente Gestione
814 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.
815 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +49 Refresh Form Refresh Form
816 DocType: DocField Select Selezionare
817 apps/frappe/frappe/utils/csvutils.py +25 File not attached File non collegato File non allegato
818 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 .
819 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
820 apps/frappe/frappe/templates/pages/print.py +160 No template found at path: {0} Nessun modello trovato nel percorso: {0}
821 DocType: Website Settings Menu items in the Top Bar. For setting the color of the Top Bar, go to selected Website Theme. Le voci di menu nel Top Bar. Per impostare il colore del Top Bar, andare al sito web selezionato tema.
822 apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53 Submit after importing. Invia dopo l'importazione.
823 DocType: Blogger Avatar Avatar
824 DocType: Blogger Posts Messaggi
825 sites/assets/js/desk.min.js +992 Dear Gentile
826 sites/assets/js/report.min.js +2 Tip: Double click cell to edit Suggerimento: Doppio cella click per modificare
827 DocType: ToDo Description and Status Descrizione e stato
841 DocType: DocPerm Submit Presentare
842 DocType: Website Settings Sub-domain provided by erpnext.com Sub-dominio fornito dal erpnext.com
843 DocType: System Settings dd-mm-yyyy gg-mm-aaaa
844 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.
845 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.
846 sites/assets/js/desk.min.js +947 View Website Vedi sito web Vesta sito web
847 DocType: Workflow State remove Rimuovere
850 DocType: Event Participants Partecipanti
851 DocType: Bulk Email Reference DocName Riferimento DocName
852 DocType: Web Form Success Message Successo Messaggio
853 DocType: DocType User Cannot Search L&#39;utente non può cercare
854 DocType: DocPerm Apply this rule if the User is the Owner Applicare questa regola se l&#39;utente è il proprietario
855 apps/frappe/frappe/desk/page/activity/activity.js +47 Build Report costruire Rapporto Crea Report
856 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
859 sites/assets/js/desk.min.js +257 Verify Password Verifica La Password
860 apps/frappe/frappe/core/page/modules_setup/modules_setup.js +55 There were errors Ci sono stati degli errori
861 apps/frappe/frappe/desk/doctype/todo/todo.js +22 Close Chiudi
862 apps/frappe/frappe/model/document.py +414 Cannot change docstatus from 0 to 2 Impossibile cambiare docstatus 0-2
863 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}
864 apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +160 Edit Properties Modifica proprietà Modifica Proprietà
865 DocType: Patch Log List of patches executed Elenco di patch eseguita
868 apps/frappe/frappe/model/base_document.py +407 {0} {1} cannot be "{2}". It should be one of "{3}" {0} {1} non può essere "{2}". Dovrebbe essere uno dei "{3}"
869 apps/frappe/frappe/utils/data.py +486 {0} or {1} {0} o {1}
870 apps/frappe/frappe/core/doctype/user/user.py +157 Password Update Aggiornamento password
871 DocType: Workflow State trash cestinare
872 apps/frappe/frappe/desk/page/activity/activity.js +153 Dec Dicembre
873 DocType: Event Leave blank to repeat always Lascia in bianco per ripetere sempre
874 DocType: Event Ends on Termina il
885 DocType: Custom Field Is Mandatory Field È Campo obbligatorio
886 DocType: User Website User Website Utente
887 DocType: Website Script Script to attach to all web pages. Script di allegare a tutte le pagine web.
888 DocType: Web Form Allow Multiple Consenti multipla
889 sites/assets/js/form.min.js +291 Assign Assegnare
890 apps/frappe/frappe/config/setup.py +93 Import / Export Data from .csv files. Import / Export dati da file. Csv .
891 DocType: Workflow State Icon will appear on the button Icona apparirà sul tasto
923 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +22 Permission Levels Livelli di autorizzazione
924 DocType: Workflow State Warning Attenzione
925 DocType: DocType In Dialog Nella finestra di dialogo Nella finestra di Dialogo
926 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +142 Help Aiuto
927 DocType: User Login Before Accedi Prima
928 DocType: Web Page Insert Style Inserire Style Inserire Stile
929 apps/frappe/frappe/desk/page/applications/applications.js +94 Application Installer Application Installer Istalla Applicazione
930 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +246 Is È
931 DocType: Workflow State info-sign Info-sign
932 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
933 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +250 Show User Permissions Permessi Mostra utenti
934 apps/frappe/frappe/utils/response.py +107 You need to be logged in and have System Manager Role to be able to access backups. Devi essere registrato ed avere Sistema Role Manager per poter accedere backup.
935 apps/frappe/frappe/email/bulk.py +78 This email was sent to {0}. To unsubscribe click on this link: {1} Questa email è stata inviata a {0}. Per annullare l&#39;iscrizione clicca su questo link: {1}
936 sites/assets/js/desk.min.js +608 Added {0} ({1}) Aggiunto {0} ({1})
937 apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +253 Fieldtype cannot be changed from {0} to {1} in row {2} FieldType non può essere modificato da {0} a {1} in riga {2}
938 apps/frappe/frappe/core/doctype/doctype/doctype.py +308 Search Fields should contain valid fieldnames Cerca campi dovrebbero contenere fieldnames validi
939 apps/frappe/frappe/core/doctype/user/user.js +321 Role Permissions Autorizzazioni di ruolo
946 DocType: Event Starts on Inizia il
947 DocType: Workflow State th th
948 sites/assets/js/desk.min.js +576 Create a new {0} Creare un nuovo {0}
949 sites/assets/js/desk.min.js +931 Report {0} Relazione {0}
950 sites/assets/js/desk.min.js +931 Open {0} Aperto {0}
951 DocType: Workflow State ok-sign ok-sign
952 sites/assets/js/form.min.js +160 Duplicate Duplicare
953 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
954 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 "Padre" indica la tabella padre in cui si deve aggiungere la riga
955 DocType: Website Theme Apply Style applica stile
958 apps/frappe/frappe/core/page/data_import_tool/exporter.py +230 Type: Tipo:
959 apps/frappe/frappe/desk/moduleview.py +57 Module Not Found Modulo non trovato Modulo Non Trovato
960 DocType: User Location posizione Posizione
961 Permitted Documents For User Documenti consentito per l'uso
962 apps/frappe/frappe/core/doctype/docshare/docshare.py +40 You need to have "Share" permission È necessario disporre di autorizzazioni "Share"
963 sites/assets/js/form.min.js +213 Bulk Edit {0} Modifica globale {0}
964 DocType: Email Alert Recipient Email Alert Recipient E-mail destinatario Alert Destinatario Email d'Avviso
965 DocType: About Us Settings Settings for the About Us Page Impostazioni per la Chi Siamo
966 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
967 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +185 Use the field to filter records Utilizzare il campo per filtrare i record
968 DocType: Email Account Outlook.com Outlook.com
969 DocType: System Settings Scheduler Last Event Scheduler Ultimo evento
970 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.
971 DocType: Email Alert Recipient Expression, Optional Expression, Optional Espressione, Opzionale
972 apps/frappe/frappe/email/bulk.py +130 This email was sent to {0} Questa email è stata inviata a {0}
973 DocType: Email Account Check this to pull emails from your mailbox Seleziona per scaricare la posta dal tuo account
974 apps/frappe/frappe/model/document.py +427 Cannot edit cancelled document Impossibile modificare documento annullato
975 apps/frappe/frappe/utils/nestedset.py +77 Nested set error. Please contact the Administrator. Errore insieme nidificato . Si prega di contattare l'amministratore .
976 apps/frappe/frappe/print/page/print_format_builder/print_format_builder_layout.html +11 <span class=text-muted data-no-content=1> <Span class = text-mute data-no-content = 1>
977 DocType: Workflow State envelope busta
978 apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +55 Option 2 Opzione 2
979 apps/frappe/frappe/core/doctype/docshare/docshare.py +44 {0} shared this document with {1} {0} condiviso questo documento con {1}
980 DocType: Website Settings Google Plus One Google+ One
981 apps/frappe/frappe/desk/page/activity/activity.js +153 Jul Luglio
1013 DocType: Website Slideshow Item Website Slideshow Item Sito Slideshow articolo
1014 DocType: DocType Title Case Titolo Caso
1015 DocType: Blog Post Email Sent Invia Mail E-mail Inviata
1016 sites/assets/js/desk.min.js +965 Send As Email Invia
1017 DocType: Website Theme Link Color Colore link
1018 apps/frappe/frappe/core/doctype/user/user.py +47 User {0} cannot be disabled Utente {0} non può essere disattivato
1019 apps/frappe/frappe/core/doctype/user/user.py +479 Dear System Manager, Caro System Manager, Gentile System Manager,
1020 sites/assets/js/form.min.js +182 Amending Rettificativo
1021 sites/assets/js/desk.min.js +598 Dialog box to select a Link Value Finestra di dialogo per selezionare un collegamento Valore
1022 DocType: Contact Us Settings Send enquiries to this email address Invia le richieste a questo indirizzo email
1023 DocType: Letter Head Letter Head Name Lettera Responsabile Nome
1024 apps/frappe/frappe/config/website.py +23 User editable form on Website. Utente forma modificabile sul Sito.
1025 DocType: Workflow State file file
1026 apps/frappe/frappe/model/rename_doc.py +97 You need write permission to rename È necessario permesso di scrittura per rinominare
1027 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +433 Apply Rule Applicare regole
1028 DocType: User Karma Karma
1029 DocType: DocField Table Tabella
1042 DocType: User Github Username github Nome utente
1043 DocType: Web Page Title / headline of your page Titolo / intestazione della pagina
1044 DocType: DocType Plugin Plugin
1045 sites/assets/js/desk.min.js +977 Add Attachments Aggiungere Allegato
1046 DocType: Workflow State signal segnalare
1047 DocType: DocType Show Print First Mostra Stampa Prima
1048 DocType: Print Settings Monochrome Monocromatico
1089 DocType: Custom Script Custom Script Script Personalizzato
1090 sites/assets/js/desk.min.js +622 Assigned To assegnato a
1091 apps/frappe/frappe/core/doctype/user/user.py +166 Verify Your Account Verifica tuo account
1092 DocType: Workflow Transition Action Azione
1093 apps/frappe/frappe/core/page/data_import_tool/exporter.py +231 Info: Info:
1094 DocType: Custom Field Permission Level Livello di autorizzazione
1095 DocType: User Send Notifications for Transactions I Follow Invia notifiche per le operazioni che seguo
1108 Role Permissions Manager Autorizzazioni ruolo di Manager
1109 DocType: Website Theme This must be checked if the below style settings are applicable Questo deve essere verificato se le impostazioni di stile che seguono sono applicabili
1110 apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +111 Name of the new Print Format Nome del nuovo formato di stampa
1111 apps/frappe/frappe/core/page/data_import_tool/exporter.py +229 Mandatory: Obbligatorio:
1112 User Permissions Manager Autorizzazioni utente Gestione
1113 DocType: Property Setter New value to be set Nuovo valore da impostare
1114 DocType: Email Alert Days Before or After Giorni prima o dopo Giorni Prima o Dopo
1118 DocType: Workflow State hand-right mano destra
1119 DocType: Website Settings Subdomain Sottodominio
1120 DocType: Web Form Allow Delete Consenti Cancella
1121 DocType: Email Alert Message Examples Esempi di messaggi
1122 DocType: Web Form Login Required Login Necessario
1123 apps/frappe/frappe/config/website.py +59 Write titles and introductions to your blog. Scrivi i titoli e le introduzioni al tuo blog.
1124 DocType: Email Account Notify if unreplied for (in mins) Notifica se unreplied per (in minuti)
1125 apps/frappe/frappe/config/website.py +64 Categorize blog posts. Categorizzare i post sul blog.
1132 DocType: DocPerm Read Leggi
1133 apps/frappe/frappe/templates/pages/update-password.html +10 Old Password Vecchia Password
1134 apps/frappe/frappe/website/doctype/blog_post/blog_post.py +97 Posts by {0} Messaggi di {0}
1135 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. Per formattare le colonne, inserire le etichette delle colonne nella query.
1136 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
1137 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14 Edit Role Permissions Modifica autorizzazioni di ruolo Modifica Autorizzazioni di Ruolo
1138 DocType: Social Login Keys Social Login Keys Social login Keys
1139 DocType: Comment Comment Date Data Commento
1140 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +54 Remove all customizations? Rimuovere tutte le personalizzazioni ?
1141 DocType: Website Slideshow Slideshow Name Nome Slideshow
1142 sites/assets/js/form.min.js +182 Cancelling Annullamento
1143 DocType: DocType Allow Rename Consentire Rinominare
1144 DocType: DocType Child Tables are shown as a Grid in other DocTypes. Tabelle figlio sono mostrati come una griglia in altre DOCTYPE.
1145 DocType: Website Settings If checked, the Home page will be the default Item Group for the website. Se selezionato, la pagina iniziale sarà il Gruppo Item predefinita per il sito web.
1146 DocType: Blog Post Description for listing page, in plain text, only a couple of lines. (max 140 characters) Descrizione per la pagina di profilo, in testo normale, solo un paio di righe. (max 140 caratteri)
1147 sites/assets/js/desk.min.js +947 Forums Forum
1184 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +68 Select User Selezionare Utente
1185 DocType: Communication Keep a track of all communications Mantenere una traccia di tutte le comunicazioni
1186 apps/frappe/frappe/desk/form/save.py +30 Did not save Non salvare
1187 DocType: Property Setter Property Proprietà
1188 DocType: Website Slideshow Note: For best results, images must be of the same size and width must be greater than height. Nota: Per ottenere risultati ottimali, le immagini devono essere della stessa dimensione e la larghezza non deve essere superiore all&#39;altezza.
1189 DocType: DocType Auto Name Nome Automatico
1190 apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +55 Option 3 Opzione 3
1191 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +169 Permissions can be managed via Setup &gt; Role Permissions Manager Le autorizzazioni possono essere gestiti tramite il programma di installazione & gt; Permessi Role Manager
1192 apps/frappe/frappe/core/page/data_import_tool/importer.py +68 Please make sure that there are no empty columns in the file. Assicurarsi che non ci sono le colonne vuote nel file prega.
1193 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 .
1202 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} Ad esempio: se si desidera includere l&#39;ID del documento, utilizzare {0}
1203 apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +479 Select Table Columns for {0} Seleziona colonne Tabella per {0}
1204 DocType: Custom Field Options Help Opzioni Aiuto
1205 DocType: DocField Report Hide Segnala Hide
1206 DocType: Custom Field Label Help Etichetta Help Etichetta Aiuto
1207 DocType: Workflow State star-empty star-vuoto
1208 DocType: Workflow State ok ok
1209 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&#39;utente sulle operazioni che contengono questi valori.
1210 apps/frappe/frappe/desk/page/applications/application_row.html +15 Publisher Editore
1212 apps/frappe/frappe/templates/includes/comments/comments.py +52 View it in your browser Guarda nel tuo browser
1213 apps/frappe/frappe/templates/pages/update-password.html +1 Reset Password Ripristino password
1214 DocType: Workflow State hand-left mano sinistra
1215 apps/frappe/frappe/core/doctype/doctype/doctype.py +281 Fieldtype {0} for {1} cannot be unique FieldType {0} a {1} non può essere unico
1216 DocType: Email Account Use SSL Usa SSL
1217 DocType: Workflow State play-circle play-cerchio
1218 apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +75 Select Print Format to Edit Selezionare Stampa Formato Modifica
1226 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
1227 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +146 Help: Field Properties Aiuto: Proprietà campo
1228 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}
1229 apps/frappe/frappe/workflow/doctype/workflow/workflow.py +67 Submitted Document cannot be converted back to draft. Transition row {0} Presentata documento non può essere riconvertito alla redazione .
1230 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.
1231 apps/frappe/frappe/workflow/doctype/workflow/workflow.py +38 Created Custom Field {0} in {1} Creato Campo personalizzato {0} in {1}
1232 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).
1233 DocType: Workflow State Home casa Casa
1234 DocType: Workflow State question-sign domanda-sign
1235 DocType: Email Account Add Signature Aggiungi Signature
1236 apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13 Left this conversation Lasciato questa conversazione
1237 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +474 Did not set Non impostato
1239 DocType: DocField No Copy No Copy Copia Assente
1240 DocType: Workflow State qrcode QRCode
1241 DocType: Web Form Breadcrumbs Pangrattato
1242 apps/frappe/frappe/core/doctype/doctype/doctype.py +373 If Owner Se Proprietario
1243 apps/frappe/frappe/website/doctype/web_form/web_form.py +28 You need to be logged in to access this {0}. Devi essere loggato per accedere a questa {0}.
1244 apps/frappe/frappe/templates/includes/comments/comments.py +50 {0} by {1} {0} di {1}
1245 apps/frappe/frappe/core/doctype/comment/comment.py +39 Cannot add more than 50 comments Impossibile aggiungere più di 50 commenti
1246 DocType: Website Settings Top Bar Items Top Articoli Bar
1247 DocType: Print Settings Print Settings Impostazioni di stampa
1248 DocType: DocType Max Attachments Numero massimo allegati
1249 DocType: Page Page Pagina
1250 DocType: Workflow State briefcase ventiquattrore
1251 apps/frappe/frappe/model/base_document.py +420 Value cannot be changed for {0} Il valore non può essere cambiato per {0}
1268 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. Queste restrizioni si applicano per i tipi di documenti in cui &#39;l&#39;applicazione delle autorizzazioni degli utenti&#39; è selezionata per la regola permesso e un campo con questo valore è presente.
1269 DocType: Email Alert Send alert if this field's value changes Invia avviso se cambia il valore di questo campo
1270 apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +102 Select a DocType to make a new format Selezionare un DOCTYPE per fare un nuovo formato
1271 DocType: Module Def Module Def Modulo Def
1272 sites/assets/js/form.min.js +199 Done Fatto
1273 sites/assets/js/form.min.js +294 Reply Risposta
1274 DocType: Communication By By Per
1282 DocType: Web Form Web Page Link Text Pagina Web Link Text
1283 apps/frappe/frappe/config/setup.py +142 Set default format, page size, print style etc. Impostare il formato predefinito, formato pagina, stile di stampa, ecc
1284 DocType: DocType Naming Naming
1285 DocType: Event Every Year Ogni Anno
1286 apps/frappe/frappe/core/doctype/user/user.py +359 Registered but disabled. Registrato ma disabilitato.
1287 sites/assets/js/list.min.js +95 Delete permanently? Eliminare in modo permanente?
1288 sites/assets/js/desk.min.js +922 Search in a document type Cerca in un tipo di documento
1310 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.
1311 apps/frappe/frappe/workflow/doctype/workflow/workflow.py +70 Cannot cancel before submitting. See Transition {0} Impossibile annullare prima della presentazione . Impossibile annullare prima della presentazione. Vedi passaggio {0}
1312 apps/frappe/frappe/templates/pages/print.py +146 Print Format {0} is disabled Formato di stampa {0} è disattivato
1313 DocType: Email Alert Send days before or after the reference date Invia giorni prima o dopo la data di riferimento
1314 DocType: User Allow user to login only after this hour (0-24) Consentire Login Utente solo dopo questo orario (0-24)
1315 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'. Non in modalità sviluppatore! Situato in site_config.json o crea DocType 'Custom'.
1316 DocType: Workflow State globe globo
1319 DocType: DocField Float Galleggiare
1320 DocType: Module Def Module Name Nome modulo Nome Modulo
1321 DocType: DocType DocType is a Table / Form in the application. DocType è una tabella / form nell'applicazione.
1322 DocType: Feed Feed Type Tipo Fonte
1323 DocType: Email Account GMail GMail
1324 DocType: Web Page Template Path Percorso Template
1325 DocType: User user_image_show user_image_show
1326 DocType: DocField Print Width Larghezza di stampa
1327 DocType: User Allow user to login only before this hour (0-24) Consentire Login Utente solo prima di questo orario (0-24)
1328 apps/frappe/frappe/print/page/print_format_builder/print_format_builder_sidebar.html +3 Filter... Filtro ...
1329 DocType: Workflow State bold grassetto
1330 apps/frappe/frappe/website/doctype/website_settings/website_settings.py +34 {0} does not exist in row {1} {0} non esiste nella riga {1}
1331 DocType: Event Event Type Tipo Evento
1332 DocType: User Last Known Versions Ultimi versioni note Ultime versioni note
1333 apps/frappe/frappe/config/setup.py +115 Add / Manage Email Accounts. Aggiungere / Gestire Account di posta elettronica.
1334 DocType: Blog Category Published Pubblicato
1340 DocType: DocField Do not allow user to change after set the first time Non permettere all'utente di cambiare dopo impostare la prima volta
1341 DocType: User Third Party Authentication L'autenticazione di terze parti
1342 DocType: Website Settings Banner is above the Top Menu Bar. Il Banner è sopra la Barra Menu Top
1343 DocType: Email Account Port porto
1344 DocType: Print Format Arial Arial
1345 DocType: Website Slideshow Slideshow like display for the website Slideshow come visualizzazione per il sito web
1346 sites/assets/js/editor.min.js +121 Center (Ctrl/Cmd+E) Center (Ctrl / Cmd + E)
1369 DocType: Workflow State Calendar Calendario
1370 apps/frappe/frappe/model/rename_doc.py +94 Another {0} with name {1} exists, select another name Un altro {0} con il nome {1} esiste , selezionare un altro nome
1371 DocType: DocType Custom? Personalizzato?
1372 DocType: Website Settings Website Theme Image Sito Theme Immagine
1373 DocType: Workflow State road stradale
1374 DocType: User Timezone Fuso orario
1375 sites/assets/js/desk.min.js +624 Unable to load: {0} Incapace di carico : {0}
1376 DocType: DocField Read Only Solo lettura
1377 DocType: Print Settings Send Print as PDF Invia Stampa in formato PDF
1406 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.
1407 DocType: Report Ref DocType Rif. DocType DocType Rif.
1408 apps/frappe/frappe/core/doctype/doctype/doctype.py +402 {0}: Cannot set Amend without Cancel {0} : Impossibile impostare Modificare senza Cancella
1409 sites/assets/js/form.min.js +260 Full Page Pagina completa
1410 DocType: DocType Is Child Table È Tavola Bambino
1411 apps/frappe/frappe/utils/csvutils.py +123 {0} must be one of {1} {0} deve essere uno di {1}
1412 apps/frappe/frappe/templates/emails/password_reset.html +1 Password Reset Password Reset
1415 apps/frappe/frappe/auth.py +195 Not allowed from this IP Address Non consentito da questo indirizzo IP
1416 DocType: Website Slideshow This goes above the slideshow. Questo va al di sopra della presentazione.
1417 apps/frappe/frappe/config/setup.py +208 Install Applications. Installare Applicazioni.
1418 DocType: Event Private Privato
1419 DocType: Print Settings Send Email Print Attachments as PDF (Recommended) Invia Email Print allegati in formato PDF (consigliata)
1420 DocType: Workflow Action Workflow Action Azione del flusso di lavoro
1421 DocType: Event Send an email reminder in the morning Invia un promemoria tramite email al mattino
1441 sites/assets/js/list.min.js +67 Not In Not In Non In
1442 DocType: Workflow State star stella
1443 apps/frappe/frappe/desk/page/activity/activity.js +153 Nov Novembre
1444 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}
1445 apps/frappe/frappe/config/website.py +13 Content web page. Contenuto Pagina Web.
1446 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9 Add a New Role Aggiungere un nuovo ruolo
1447 apps/frappe/frappe/templates/includes/login/login.js +125 Oops! Something went wrong Spiacenti, Qualcosa è andato storto
1449 DocType: User Email Settings Impostazioni email Impostazioni E-mail
1450 apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57 {0} not a valid State {0} non uno Stato valido
1451 DocType: Workflow State ok-circle ok-cerchio
1452 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.
1453 DocType: Custom Field In Report Filter In Report Filter In Filtro Report
1454 DocType: DocType Hide Actions Nascondi Azioni
1455 DocType: DocType <a onclick="msgprint('<ol>\ <li><b>field:[fieldname]</b> - By Field\ <li><b>naming_series:</b> - By Naming Series (field called naming_series must be present\ <li><b>Prompt</b> - Prompt user for a name\ <li><b>[series]</b> - Series by prefix (separated by a dot); for example PRE.#####\ </ol>')">Naming Options</a> <a onclick="msgprint('<ol> \ <li> <b>: [fieldname] </ b> - In campo \ <li> <b> naming_series: </ b > - Da Naming Series (naming_series campo chiamato deve essere presente \ <li> <b> Prompt </ b> - Richiedi all'utente per un nome \ <li> <b> [Serie] </ . b> - Serie di prefisso (separati da un punto), ad esempio PRE ##### \ </ ol> ') "> Naming Options </a>
1457 DocType: DocField Unique Unico
1458 DocType: File Data File Name Nome del file
1459 apps/frappe/frappe/core/page/data_import_tool/importer.py +261 Did not find {0} for {0} ({1}) Non {0} trovare per {0} ( {1} )
1460 apps/frappe/frappe/config/setup.py +39 Set Permissions per User Imposta autorizzazioni per utente
1461 DocType: Print Format Edit Format Modifica formato Modifica Formato
1462 apps/frappe/frappe/templates/emails/new_user.html +6 Complete Registration Registrazione Complete
1463 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.
1464 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)
1465 DocType: Print Settings Print Style Stile di stampa
1466 DocType: DocPerm Import Importazione
1467 apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +125 Row {0}: Not allowed to enable Allow on Submit for standard fields Riga {0}: Non consentito per attivare Consenti su Invia per campi standard
1474 DocType: Website Settings Brand HTML Marca HTML
1475 apps/frappe/frappe/templates/includes/login/login.js +18 Both login and password required Sono richiesti login e password
1476 apps/frappe/frappe/model/document.py +392 Please refresh to get the latest document. Si prega di aggiornamento per ottenere l&#39;ultimo documento.
1477 DocType: User Security Settings Impostazioni di sicurezza
1478 Desktop Desktop
1479 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` Testo da visualizzare per collegamento alla pagina Web, se questa forma ha una pagina web. Percorso di collegamento verrà automaticamente generato in base `page_name` e` parent_website_route`
1480 sites/assets/js/desk.min.js +588 Please set {0} first Impostare {0} prima
1481 DocType: Patch Log Patch Patch
1482 apps/frappe/frappe/core/page/data_import_tool/importer.py +41 No data found Nessun dato trovato
1483 DocType: Web Form Allow Comments Consenti commenti
1484 DocType: User Background Style Stile sfondo
1485 DocType: System Settings mm-dd-yyyy gg-mm-aaaa
1492
1493
1494
1495
1496
1497
1498

View file

@ -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 == &#39;나의 가치&#39;평가 : doc.age&gt; (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 \

1 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +224 Press Esc to close Esc를 눌러 닫습니다
89 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +176 Example
90 DocType: Workflow State gift 선물
91 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +180 Reqd Reqd
92 apps/frappe/frappe/core/doctype/communication/communication.py +124 Unable to find attachment {0} 찾을 수 없습니다 첨부 파일 {0} 첨부 파일 {0}을 찾을 수 없습니다
93 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +168 Assign a permission level to the field. 필드에 권한 수준을 할당합니다.
94 apps/frappe/frappe/config/setup.py +72 Show / Hide Modules 표시 / 숨기기 모듈
95 apps/frappe/frappe/core/doctype/report/report.js +37 Disable Report 사용 안 함 보고서
160 apps/frappe/frappe/email/smtp.py +172 Unable to send emails at this time 이 시간에 이메일을 보낼 수 없습니다
161 sites/assets/js/desk.min.js +947 Search or type a command 명령을 검색하거나 입력
162 DocType: Email Account e.g. smtp.gmail.com 예) smtp.gmail.com
163 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +366 Add A New Rule 새 규칙을 추가 새 규칙 추가
164 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 이 필드에 링크 할 문서 형식 (문서 종류)의 이름입니다. 예를 들어 고객
165 DocType: User Roles Assigned 할당 된 역할
166 DocType: Top Bar Item Parent Label 부모 라벨
201 DocType: Letter Head Check this to make this the default letter head in all prints 모든 지문이 기본 문자 머리를 만들기 위해이 옵션을 선택
202 DocType: Print Format Server 서버
203 DocType: DocField Link 링크
204 apps/frappe/frappe/utils/file_manager.py +83 No file attached 첨부 파일이 없습니다 없습니다 첨부 파일이 없습니다
205 DocType: Version Version 버전
206 DocType: User Fill Screen 화면을 가득 채운
207 apps/frappe/frappe/core/doctype/role/role.js +9 Edit Permissions 편집 권한
208 sites/assets/js/form.min.js +213 Edit via Upload 업로드를 통해 편집
209 sites/assets/js/desk.min.js +921 document type..., e.g. customer 문서 유형 ..., 예를 들어, 고객
210 DocType: Country Country Name 국가 이름
211 DocType: About Us Team Member About Us Team Member 우리 팀 구성원에 대한 팀 구성원에 대한
212 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에 호출)에 설정됩니다.
213 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에 기반으로 사용자 권한을 적용 할 수 있습니다.
214 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 DocType: Currency Currency Name 통화 명
280 DocType: Report Javascript 자바스크립트
281 DocType: File Data Content Hash 콘텐츠 해시
282 DocType: User Stores the JSON of last known versions of various installed apps. It is used to show release notes. 상점 다양한 설치된 응용 프로그램의 마지막 알려진 버전의 JSON. 그것은 릴리스 정보를 표시하는 데 사용됩니다. 상점 다양한 설치된 응용 프로그램의 최신 버전의 JSON. 그것은 릴리스 정보를 표시하는 데 사용됩니다.
283 DocType: Website Theme Google Font (Text) 구글 폰트 (텍스트)
284 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +323 Did not remove 제거하지 않은
285 DocType: Report Query 질문
359 DocType: DocPerm Apply User Permissions 사용자 권한을 적용합니다
360 DocType: User Modules HTML 모듈 HTML
361 sites/assets/js/desk.min.js +484 Missing Values Required 필요없는 값
362 sites/assets/js/list.min.js +107 {0} is not set {0} 설정되어 있지 {0} 설정되어 있지 않은
363 apps/frappe/frappe/model/document.py +150 No permission to {0} {1} {2} 에 아무런 권한이 없다 {0} {1} {2}
364 apps/frappe/frappe/permissions.py +225 Not allowed to access {0} with {1} = {2} 에 액세스 할 수없는 {0}과 {1} = {2}
365 apps/frappe/frappe/templates/emails/print_link.html +2 View this in your browser 귀하의 브라우저에서보기
399 DocType: Website Settings Integrations 통합
400 DocType: DocField Section Break 구역 나누기
401 DocType: Communication Sender Full Name 보낸 사람 전체 이름
402 Messages 쪽지 메세지
403 apps/frappe/frappe/desk/query_report.py +76 Must specify a Query to run 실행 쿼리를 지정해야합니다
404 apps/frappe/frappe/config/setup.py +66 Language, Date and Time settings 언어, 날짜 및 시간 설정
405 DocType: User Represents a User in the system. 시스템의 사용자를 나타냅니다.
427 DocType: File Data Attached To Name 이름에 부착 이름에 첨부
428 apps/frappe/frappe/email/receive.py +61 Invalid User Name or Support Password. Please rectify and try again. 잘못된 사용자 이름 또는 지원의 비밀.조정하고 다시 시도하십시오.
429 DocType: Email Account Login Id is Different 로그인 ID가 다른 것입니다
430 DocType: Email Account Yahoo Mail 야후 메일
431 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +476 Saved! 저장!
432 apps/frappe/frappe/desk/page/activity/activity_row.html +17 Updated {0}: {1} 업데이트 {0} : {1}
433 DocType: DocType Master 지도자
550 DocType: Currency A symbol for this currency. For e.g. $ 이 통화에 대한 기호.예를 들어 $
551 sites/assets/js/desk.min.js +934 Frappe Framework 프라페 프레임 워크
552 apps/frappe/frappe/model/naming.py +162 Name of {0} cannot be {1} {0}의 이름이 될 수 없습니다 {1}
553 apps/frappe/frappe/config/setup.py +74 Show or hide modules globally. 표시 또는 전 세계적으로 모듈을 숨 깁니다.
554 DocType: Workflow State Success 성공
555 DocType: Website Settings Sidebar Links for Home Page only 홈 페이지에 대한 사이드 바 링크 만
556 apps/frappe/frappe/templates/includes/login/login.js +124 Invalid Login 잘못된 로그인
561 DocType: Workflow Transition Next State 다음 주
562 sites/assets/js/editor.min.js +119 Align Left (Ctrl/Cmd+L) 왼쪽 (Ctrl 키 / Cmd를 + L)를 맞 춥니 다
563 DocType: User Block Modules 블록 모듈
564 DocType: Web Page Custom CSS 사용자 정의 CSS
565 sites/assets/js/form.min.js +293 Add a comment 코멘트를 추가 코멘트 추가
566 apps/frappe/frappe/config/setup.py +220 Log of error on automated events (scheduler). 자동 이벤트 (스케줄러)에 대한 오류 로그.
567 apps/frappe/frappe/utils/csvutils.py +74 Not a valid Comma Separated Value (CSV File) 은 (는) 올바른 쉼표로 구분 된 값 (CSV 파일)
568 DocType: Email Account Default Incoming 기본 수신
569 DocType: Workflow State repeat 반복
570 DocType: Website Settings Banner 기치
571 sites/assets/js/desk.min.js +917 Help on Search 검색에 대한 도움말
572 DocType: User Uncheck modules to hide from user's desktop 선택을 취소 모듈은 사용자의 바탕 화면에서 숨기려면
591 DocType: Social Login Keys Google Client ID 구글 클라이언트 ID
592 apps/frappe/frappe/core/doctype/user/user.py +63 Adding System Manager to this User as there must be atleast one System Manager 이상이어야 하나의 시스템 관리자가 있어야합니다으로이 사용하기 위해 시스템 관리자를 추가
593 DocType: Workflow State list-alt 목록 - 고도
594 apps/frappe/frappe/templates/pages/update-password.html +63 Password Updated 암호 업데이트
595 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. 선택 모듈 (허가 기준) 표시합니다.숨겨진 경우, 모든 사용자에 대해 숨겨집니다.
596 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +149 Permissions Updated 권한 업데이트
597 apps/frappe/frappe/email/doctype/email_account/email_account.py +45 Append To is mandatory for incoming mails 로 들어오는 메일에 대한 필수 추가
636 apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +59 Ignore encoding errors. 오류를 인코딩 무시합니다.
637 DocType: Workflow State wrench 렌치
638 DocType: Website Settings Disable Signup 회원 가입에게 사용 안 함
639 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7 Roles can be set for users from their User page. 역할은 사용자 페이지에서 사용자가 설정할 수 있습니다.
640 apps/frappe/frappe/website/doctype/web_page/web_page.py +158 Website Search 웹 사이트 검색
641 DocType: DocField Mandatory 필수
642 apps/frappe/frappe/core/doctype/doctype/doctype.py +361 {0}: No basic permissions set {0} : 없음 기본 사용 권한을 설정하지
646 sites/assets/js/editor.min.js +94 Paragraph
647 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +133 Any existing permission will be deleted / overwritten. 기존의 모든 권한은 / 덮어 삭제됩니다.
648 apps/frappe/frappe/desk/doctype/todo/todo.py +17 Assigned to {0}: {1} 에 할당 된 {0} : {1}
649 DocType: DocField Percent 퍼센트
650 DocType: Workflow State book ~을 기입하다, ~을 예약하다
651 DocType: Website Settings Landing Page 방문 페이지
652 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162 No Permissions set for this criteria. 사용 권한이 기준이 설정되어 있지.
717 DocType: DocField Int 이자
718 DocType: Currency 1 Currency = [?] Fraction For e.g. 1 USD = 100 Cent (1) 환율 = [?]예를 들어 1 USD를 들어 분수 = 100 센트
719 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +370 Add New Permission Rule 새 권한 규칙 추가
720 sites/assets/js/desk.min.js +598 You can use wildcard % 와일드 카드 %를 사용할 수 있습니다
721 apps/frappe/frappe/desk/page/activity/activity.js +152 Mar
722 sites/assets/js/desk.min.js +862 Only image extensions (.gif, .jpg, .jpeg, .tiff, .png, .svg) allowed (.gif 참고, .JPG, .JPEG, .TIFF, .PNG, .svg)이 허용하는 이미지 확장
723 DocType: Customize Form Fields separated by comma (,) will be included in the "Search By" list of Search dialog box 쉼표로 구분 된 필드 (,)에 포함됩니다 검색 대화 상자의 목록 &quot;으로 검색&quot;
743 sites/assets/js/form.min.js +199 Insert Above 삽입 위
744 sites/assets/js/list.min.js +21 Not Saved 저장되지
745 DocType: Custom Field Default Value Default Value(기본값)
746 sites/assets/js/desk.min.js +257 Verify 확인
747 DocType: Workflow Document State Update Field 필드 업데이트
748 apps/frappe/frappe/email/doctype/email_account/email_account.py +272 Leave this conversation 이 대화를 남겨주세요
749 apps/frappe/frappe/model/base_document.py +362 Options not set for link field {0} 옵션 링크 필드에 대해 설정되지 {0}
776 apps/frappe/frappe/config/setup.py +125 Standard replies to common queries. 표준은 일반적으로 쿼리에 응답합니다.
777 sites/assets/js/desk.min.js +947 Report an Issue 문제 신고
778 apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14 Default Sending 기본 보내기
779 DocType: Workflow State volume-off 볼륨 오프
780 DocType: Custom Field Properties 속성
781 apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +47 Do not update, but insert new records. 업데이트,하지만 새로운 레코드를 삽입하지 마십시오.
782 DocType: DocField Dynamic Link 동적 링크
813 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33 Setup > User Permissions Manager 설정> 사용자 권한 관리자
814 DocType: Workflow Document State Represents the states allowed in one document and role assigned to change the state. 상태를 변경하기 위해 할당 한 문서 및 역할에 허용 된 상태를 나타냅니다.
815 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +49 Refresh Form 새로 고침 양식
816 DocType: DocField Select 고르기
817 apps/frappe/frappe/utils/csvutils.py +25 File not attached 파일 첨부하지 파일이 첨부되지 않았습니다
818 DocType: Top Bar Item If you set this, this Item will come in a drop-down under the selected parent. 이 작업을 설정하는 경우,이 항목을 선택한 부모 아래 드롭 다운에서 올 것이다.
819 apps/frappe/frappe/model/db_query.py +393 Please select atleast 1 column from {0} to sort {0} 정렬 할에서이어야 1 열을 선택하십시오
821 DocType: Website Settings Menu items in the Top Bar. For setting the color of the Top Bar, go to selected Website Theme. 상단 바의 메뉴 항목. 상단 바의 색상을 설정하려면, 선택한 웹 사이트 테마로 이동합니다.
822 apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +53 Submit after importing. 가져온 후 제출.
823 DocType: Blogger Avatar 화신
824 DocType: Blogger Posts 게시물
825 sites/assets/js/desk.min.js +992 Dear 귀하께
826 sites/assets/js/report.min.js +2 Tip: Double click cell to edit 팁 : 두 번 클릭하여 셀을 편집 할 수
827 DocType: ToDo Description and Status 설명 및 상태
894 DocType: Email Account ProTip: Add <code>Reference: {{ reference_doctype }} {{ reference_name }}</code> to send document reference ProTip : 추가 <code>Reference: {{ reference_doctype }} {{ reference_name }}</code> 보낼 문서 참조
895 apps/frappe/frappe/modules/__init__.py +81 App not found 앱을 찾을 수 없습니다
896 DocType: Workflow State pencil 연필
897 sites/assets/js/form.min.js +283 Share {0} with 공유 {0}와
898 DocType: Workflow State hand-up 손으로 업
899 DocType: Blog Settings Writers Introduction 작가 소개
900 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140 Select Document Type or Role to start. 시작 문서 형식 또는 역할을 선택합니다.
1049 DocType: Workflow Different "States" this document can exist in. Like "Open", "Pending Approval" etc. 이 문서가이 존재하는 수있는 다른 "상태""열기"와 같은, "승인 보류"등
1050 apps/frappe/frappe/utils/verified_command.py +40 This link is invalid or expired. Please make sure you have pasted correctly. 이 링크가 잘못되었거나 만료되었습니다. 제대로 붙여 넣은 확인하십시오.
1051 DocType: Web Form Web Form Fields 웹 폼 필드
1052 DocType: Website Theme Top Bar Text Color 상단 바 텍스트 색상
1053 apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +367 Remove Section 섹션을 제거
1054 sites/assets/js/desk.min.js +521 Invalid Email: {0} 잘못된 이메일 : {0}
1055 apps/frappe/frappe/desk/doctype/event/event.py +20 Event end must be after start 이벤트의 끝은 시작 이후 여야합니다
1066 apps/frappe/frappe/sessions.py +109 Redis cache server not running. Please contact Administrator / Tech support 레디 스 캐시 서버가 실행되고 있지 않습니다.관리자 / 기술 지원 센터에 문의하시기 바랍니다
1067 sites/assets/js/desk.min.js +918 Make a new record 새 레코드를 만들
1068 DocType: Currency Fraction 분수
1069 sites/assets/js/desk.min.js +550 Select from existing attachments 기존의 첨부 파일에서 선택
1070 DocType: Custom Field Field Description 필드 설명
1071 apps/frappe/frappe/model/naming.py +49 Name not set via Prompt 프롬프트를 통해 설정되지 않은 이름
1072 DocType: Note Note is a free page where users can share documents / notes 참고 사용자가 문서 / 노트를 공유 할 수있는 무료 페이지입니다
1095 DocType: User Send Notifications for Transactions I Follow 내가 따라 거래에 대한 알림 보내기 나의 거래에 대한 알림 보내기
1096 apps/frappe/frappe/core/doctype/doctype/doctype.py +400 {0}: Cannot set Submit, Cancel, Amend without Write {0} : 쓰기없이 정정, 취소, 제출 설정할 수
1097 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8 Setup > User 설정> 사용자
1098 apps/frappe/frappe/templates/emails/password_reset.html +6 Thank you 감사합니다
1099 sites/assets/js/form.min.js +182 Saving 절약
1100 DocType: Print Settings Print Style Preview 인쇄 스타일 미리보기
1101 apps/frappe/frappe/website/doctype/web_form/web_form.py +96 You are not allowed to update this Web Form Document 이 웹 양식 문서를 업데이트 할 수 없습니다
1102 DocType: About Us Settings About Us Settings 회사 설정 정보 설정 정보에 관하여
1103 DocType: Website Settings Website Theme 웹 사이트 테마
1104 DocType: DocField In List View 목록보기
1105 DocType: Email Account Use TLS TLS에게 사용
1106 apps/frappe/frappe/email/smtp.py +34 Invalid login or password 잘못된 로그인 또는 암호
1107 apps/frappe/frappe/config/setup.py +190 Add custom javascript to forms. 형태의 사용자 정의 자바 스크립트를 추가합니다.
1108 Role Permissions Manager 역할 권한 관리자
1109 DocType: Website Theme This must be checked if the below style settings are applicable 아래의 스타일 설정을 적용 할 수있는 경우는 확인해야합니다
1110 apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +111 Name of the new Print Format 새로운 인쇄 형식의 이름
1111 apps/frappe/frappe/core/page/data_import_tool/exporter.py +229 Mandatory: 필수 :
1112 User Permissions Manager 사용자 권한 관리
1142 sites/assets/js/form.min.js +182 Cancelling 취소
1143 DocType: DocType Allow Rename 이름 변경이 허용
1144 DocType: DocType Child Tables are shown as a Grid in other DocTypes. 자식 테이블은 다른 doctype에있는 그리드로 표시됩니다.
1145 DocType: Website Settings If checked, the Home page will be the default Item Group for the website. 이 옵션을 선택하면 홈 페이지는 웹 사이트에 대한 기본 항목의 그룹이 될 것입니다.
1146 DocType: Blog Post Description for listing page, in plain text, only a couple of lines. (max 140 characters) 일반 텍스트로 목록 페이지에 대한 설명, 라인의 단 몇. (최대 140 자)
1147 sites/assets/js/desk.min.js +947 Forums 포럼
1148 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +297 Add A User Restriction 사용자 제한 추가
1165 DocType: Workflow State resize-full 크기를 조정 - 전체
1166 DocType: Workflow State off 떨어져서
1167 apps/frappe/frappe/desk/query_report.py +26 Report {0} is disabled 보고서는 {0} 비활성화
1168 apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +24 Recommended for inserting new records. 새 레코드를 삽입하기위한 추천합니다.
1169 DocType: Block Module Core 코어
1170 DocType: DocField Set non-standard precision for a Float or Currency field 플로트 또는 통화 필드의 설정이 아닌 표준 정밀도
1171 DocType: Email Account Ignore attachments over this size 이 크기를 초과하는 첨부 파일을 무시 이 크기를 초과하는 첨부 파일을 무시합니다
1177 apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +7 Select Type 유형 선택
1178 apps/frappe/frappe/core/doctype/file_data/file_data.py +42 No permission to write / remove. / 제거를 기록 할 권한이 없습니다.
1179 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. 사이드 바에서 드래그 요소를 추가 할 수 있습니다.휴지통으로 다시 끕니다.
1180 DocType: Workflow State resize-small 크기를 작은
1181 sites/assets/js/editor.min.js +128 Horizontal Line Break 수평 라인 브레이크
1182 DocType: Top Bar Item Right 오른쪽
1183 DocType: User User Type 사용자 유형
1214 DocType: Workflow State hand-left 손으로 왼쪽
1215 apps/frappe/frappe/core/doctype/doctype/doctype.py +281 Fieldtype {0} for {1} cannot be unique Fieldtype {0} {1} 고유 수 없기 때문
1216 DocType: Email Account Use SSL SSL을 사용하여
1217 DocType: Workflow State play-circle 재생 원
1218 apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +75 Select Print Format to Edit 편집하는 인쇄 형식을 선택합니다
1219 DocType: Workflow State circle-arrow-down 원형 화살표 아래로
1220 DocType: DocField Datetime 날짜
1341 DocType: User Third Party Authentication 타사 인증
1342 DocType: Website Settings Banner is above the Top Menu Bar. 배너 상단 메뉴 표시 줄 이상입니다.
1343 DocType: Email Account Port 포트
1344 DocType: Print Format Arial 굴림
1345 DocType: Website Slideshow Slideshow like display for the website 웹 사이트에 대한 디스플레이와 같은 슬라이드 쇼
1346 sites/assets/js/editor.min.js +121 Center (Ctrl/Cmd+E) 센터 (Ctrl 키 / Cmd를 + E)
1347 apps/frappe/frappe/sessions.py +28 Cache Cleared 캐시 해제
1442 DocType: Workflow State star
1443 apps/frappe/frappe/desk/page/activity/activity.js +153 Nov 11월
1444 apps/frappe/frappe/core/doctype/doctype/doctype.py +256 Max width for type Currency is 100px in row {0} 유형의 통화에 대한 최대 폭은 행에있는 100 픽셀 {0}
1445 apps/frappe/frappe/config/website.py +13 Content web page. 콘텐츠 웹 페이지.
1446 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9 Add a New Role 새 역할 추가
1447 apps/frappe/frappe/templates/includes/login/login.js +125 Oops! Something went wrong 죄송합니다. 문제가 발생했습니다
1448 DocType: Blog Settings Blog Introduction 블로그 소개
1486 apps/frappe/frappe/desk/doctype/feed/feed.py +91 {0} logged in {0} 로그인
1487 DocType: Workflow All possible Workflow States and roles of the workflow. Docstatus Options: 0 is"Saved", 1 is "Submitted" and 2 is "Cancelled" 가능한 모든 워크 플로우 미국과 워크 플로우의 역할. Docstatus 옵션 : 0 &quot;저장&quot;, 1은 &quot;제출&quot;하고 2 &quot;취소&quot;한다
1488 apps/frappe/frappe/templates/emails/new_user.html +4 Your login id is 사용자의 로그인 ID입니다
1489 DocType: DocField Ignore User Permissions 사용자 권한을 무시
1490
1491
1492

View file

@ -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

1 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +224 Press Esc to close Druk op Esc om te sluiten
880 apps/frappe/frappe/geo/doctype/currency/currency.js +7 This Currency is disabled. Enable to use in transactions Deze valuta is uitgeschakeld. Schakel het in om deze valuta te kunnen gebruiken in transacties.
881 DocType: Contact Us Settings Default: "Contact Us" Default: &quot;Contact&quot;
882 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +378 Level 0 is for document level permissions, higher levels for field level permissions. Niveau 0 is voor document niveau machtigingen, hogere niveaus voor veldniveau machtigingen.
883 DocType: Custom Script Sample Monster
884 DocType: Event Every Week Elke Week
885 DocType: Custom Field Is Mandatory Field Is Verplicht veld
886 DocType: User Website User Website Gebruiker
1310 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. Om acess te geven aan een rol voor alleen bepaalde records, controleer dan de Apply Gebruikersmachtigingen. Gebruiker Machtigingen worden gebruikt om gebruikers te voorzien van een dergelijke rol aan bepaalde records te beperken.
1311 apps/frappe/frappe/workflow/doctype/workflow/workflow.py +70 Cannot cancel before submitting. See Transition {0} Opzeggen kan niet vóór de indiening .
1312 apps/frappe/frappe/templates/pages/print.py +146 Print Format {0} is disabled Print Formaat {0} is uitgeschakeld
1313 DocType: Email Alert Send days before or after the reference date Stuur dagen voor of na de peildatum
1314 DocType: User Allow user to login only after this hour (0-24) Gebruiker mag alleen inloggen na dit uur (0-24)
1315 apps/frappe/frappe/core/doctype/doctype/doctype.py +33 Not in Developer Mode! Set in site_config.json or make 'Custom' DocType. Niet in Developer Mode! Stel in site_config.json of maak DocType 'Aangepast'.
1316 DocType: Workflow State globe wereldbol

View file

@ -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 &quot;meczu&quot; zasad uprawnień. Aby zobaczyć listę pól, przejdź do formularza &quot;Dostosuj&quot;."
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 &quot;{0}&quot;
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ę &quot;Google Web Font&quot; np &quot;Otwórz Sans&quot;
@ -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. [<a href=""http://favicon-generator.org/"" target=""_blank"">favicon-generator.org</a>]",
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 &quot;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 <pre>[{""title"":""Jobs"", ""name"":""jobs""}]</pr
apps/frappe/frappe/core/doctype/doctype/doctype.py +284,Fieldtype {0} for {1} cannot be indexed,Typ pola {0} do {1} nie może być zindeksowany
DocType: Communication,Email Account,Konto e-mail
DocType: Workflow State,Download,Ściągnij
DocType: Blog Post,Blog Intro,
DocType: Blog Post,Blog Intro,Wprowadzenie Blogu
apps/frappe/frappe/core/doctype/report/report.js +37,Enable Report,Włącz raport
DocType: User,Check / Uncheck roles assigned to the User. Click on the Role to find out what permissions that Role has.,
DocType: Web Page,Insert Code,
@ -1375,7 +1375,7 @@ apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +549,
sites/assets/js/desk.min.js +920,List a document type,Listy typ dokumentu
DocType: Event,Ref Type,Typ Ref
apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,"If you are uploading new records, leave the ""name"" (ID) column blank.","Jeśli wysyłasz nowe rekordy, pozostawić ""Nazwa"" (ID) kolumnę pustą."
apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +361,No of Columns,Nie Kolumnowej
apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +361,No of Columns,Numer kolumn
DocType: Workflow State,Calendar,Kalendarz
apps/frappe/frappe/model/rename_doc.py +94,"Another {0} with name {1} exists, select another name","Inny {0} z nazwą {1} istnieje, wybierz inną nazwę"
DocType: DocType,Custom?,Niestandardowy?
@ -1392,13 +1392,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +390,{0}: Permission at level
DocType: Website Settings,Home Page is Products,
apps/frappe/frappe/desk/doctype/todo/todo.py +21,Assignment closed by {0},Cesja zamknięty przez {0}
sites/assets/js/desk.min.js +926,Calculate,Obliczać
apps/frappe/frappe/print/doctype/print_format/print_format.js +20,Please select DocType first,Proszę wybrać DOCTYPE pierwszy
apps/frappe/frappe/print/doctype/print_format/print_format.js +20,Please select DocType first,Najpierw wybierz DOCTYPE
sites/assets/js/desk.min.js +927,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,na przykład (55 + 434) / 4 lub = Math.sin (Math.PI / 2) ...
DocType: Social Login Keys,GitHub Client ID,GITHub identyfikator klienta
DocType: DocField,Perm Level,Poziom Perm
apps/frappe/frappe/desk/doctype/event/event.py +59,Events In Today's Calendar,Wydarzenia w dzisiejszym kalendarzu
DocType: Web Page,Web Page,Strona internetowa
DocType: Blog Category,Blogger,
DocType: Blog Category,Blogger,Blogger
sites/assets/js/desk.min.js +528,Date must be in format: {0},Data musi być w formacie: {0}
apps/frappe/frappe/print/page/print_format_builder/print_format_builder_field.html +22,Select Columns,Wybierz kolumny
DocType: Workflow State,folder-open,Otwarty folder
@ -1415,7 +1415,7 @@ apps/frappe/frappe/core/doctype/user/user.py +235,User {0} cannot be renamed,Nie
apps/frappe/frappe/website/doctype/website_settings/website_settings.js +17,Exported,Eksportowane
DocType: DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON lista DocTypes używanych do zastosowania uprawnień użytkownika. Jeśli jest puste, wszystkie związane DocTypes zostaną wykorzystane do zastosowania uprawnień użytkownika."
DocType: Report,Ref DocType,Ref DocType
apps/frappe/frappe/core/doctype/doctype/doctype.py +402,{0}: Cannot set Amend without Cancel,
apps/frappe/frappe/core/doctype/doctype/doctype.py +402,{0}: Cannot set Amend without Cancel,{0} Nie możesz wnieść poprawek bez anulowania
sites/assets/js/form.min.js +260,Full Page,Cała strona
DocType: DocType,Is Child Table,
apps/frappe/frappe/utils/csvutils.py +123,{0} must be one of {1},{0} musi być jednym z {1}
@ -1425,11 +1425,11 @@ DocType: Bulk Email,Sending,Wysyłanie
apps/frappe/frappe/auth.py +195,Not allowed from this IP Address,Brak dostępu z tego adresu IP
DocType: Website Slideshow,This goes above the slideshow.,
apps/frappe/frappe/config/setup.py +208,Install Applications.,Instaluj aplikacje
DocType: Event,Private,
DocType: Event,Private,Prywatny
DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Wyślij e-mail Drukuj załączniki w formacie PDF (zalecana)
DocType: Workflow Action,Workflow Action,Akcja przepływu pracy
DocType: Event,Send an email reminder in the morning,Wyślij rano e-mail z przypomnieniem
DocType: Blog Post,Published On,
DocType: Blog Post,Published On,Opublikowany
DocType: Feed,Feed,
DocType: ToDo,Reference Type,Typ Odniesienia
DocType: Event,Repeat On,
@ -1439,7 +1439,7 @@ DocType: Workflow State,warning-sign,znak-ostrzeżenie
DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Pokaż tytuł w oknie przeglądarki jako &quot;Prefiks - tytuł&quot;
sites/assets/js/desk.min.js +923,text in document type,Tekst w rodzaju dokumentu
DocType: Workflow Document State,Update Value,Zaktualizuj Wartość
DocType: System Settings,Number Format,
DocType: System Settings,Number Format,numer formatu
DocType: Custom Field,Insert After,
DocType: Social Login Keys,GitHub Client Secret,GitGub Klient
DocType: Report,Report Name,Nazwa raportu
@ -1455,13 +1455,13 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +256,Max width for type Curre
apps/frappe/frappe/config/website.py +13,Content web page.,Strona WWW zawartości
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Dodaj nową rolę
apps/frappe/frappe/templates/includes/login/login.js +125,Oops! Something went wrong,Ups! Coś poszło nie tak
DocType: Blog Settings,Blog Introduction,
DocType: Blog Settings,Blog Introduction,Wprowadzenie Blogu
DocType: User,Email Settings,Ustawienia Email
apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} Stan niedozwolony
DocType: Workflow State,ok-circle,
DocType: Workflow State,ok-circle,ok-circle
apps/frappe/frappe/core/doctype/user/user.py +102,Sorry! User should have complete access to their own record.,Przykro mi! Użytkownik powinien mieć pełny dostęp do własnego rekordu.
DocType: Custom Field,In Report Filter,
DocType: DocType,Hide Actions,
DocType: DocType,Hide Actions,Ukryj Akcje
DocType: DocType,"<a onclick=""msgprint('<ol>\
<li><b>field:[fieldname]</b> - By Field\
<li><b>naming_series:</b> - By Naming Series (field called naming_series must be present\
@ -1473,7 +1473,7 @@ DocType: DocType,"<a onclick=""msgprint('<ol>\
<li> <b> Wiersz </ b> - Pytaj użytkownika o nazwę \
<li> <b> [seria] </ b.> - Seria prefiksem (oddzielone kropką); np PRE ##### \
</ ol> ') ""> Nazywanie Opcje </a>"
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 &quot;zapisane&quot;, 1 &quot;Wysłane&quot; i 2 &quot;Anulowane&quot;"

1 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +224 Press Esc to close Naciśnij klawisz Esc, aby zamknąć
7 DocType: User Facebook Username Nazwa Użytkownika Facebook
8 DocType: Workflow State eye-open Oczy Otwarte
9 DocType: Bulk Email Send After Wyślij Po
10 apps/frappe/frappe/utils/file_manager.py +28 Please select a file or url Proszę wybrać plik albo url
11 DocType: DocField DocField DocField
12 DocType: Comment Comment By Fullname Skomentowane przez (pełne imię)
13 DocType: DocField Options Opcje
14 sites/assets/js/report.min.js +17 Cannot edit standard fields Nie można edytować standardowych pól
15 DocType: Print Format Print Format Builder Format druku Builder
16 DocType: Report Report Manager Manager
35 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ć
36 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +154 Set the display label for the field Ustawia nazwę wyświetlaną w polu
37 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.)
38 DocType: Workflow State lock Zablokowany
39 apps/frappe/frappe/config/website.py +74 Settings for Contact Us Page.
40 apps/frappe/frappe/core/doctype/user/user.py +490 Administrator Logged In Administrator Zalogowani
41 DocType: Contact Us Settings Contact options, like "Sales Query, Support Query" etc each on a new line or separated by commas.
66 apps/frappe/frappe/core/doctype/doctype/doctype.py +130 DocType can not be merged DocType nie może być połączony
67 DocType: Web Form Field Fieldtype Typ pola
68 apps/frappe/frappe/desk/form/save.py +44 Did not cancel Nie anulowano
69 DocType: Workflow State plus plus
70 DocType: Scheduler Log Scheduler Log
71 sites/assets/js/desk.min.js +737 You Ty
72 DocType: Website Theme lowercase małe litery
73 DocType: Print Format Helvetica Helvetica
74 DocType: Note Everyone can read Wszyscy mogą przeczytać
75 apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +25 Please specify user Proszę podać użytkownika
79 DocType: Workflow State circle-arrow-up
80 sites/assets/js/desk.min.js +859 Uploading... Przesyłanie...
81 DocType: Workflow State italic
82 apps/frappe/frappe/core/doctype/doctype/doctype.py +404 {0}: Cannot set Import without Create {0}: Nie możesz ustawić importu bez jego tworzenia
83 DocType: Comment Post Topic
84 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%.
85 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 DocType: System Settings Run scheduled jobs only if checked Uruchamiane tylko zaplanowane zadania, jeśli zaznaczone
108 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 &quot;meczu&quot; zasad uprawnień. Aby zobaczyć listę pól, przejdź do formularza &quot;Dostosuj&quot;.
109 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
110 DocType: Workflow State headphones słuchawki
111 DocType: Bulk Email Bulk Email records. Duże rekordy e-mail.
112 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.
113 apps/frappe/frappe/templates/includes/login/login.js +32 Valid email and name required Wymagany poprawny adres e-mail i imię
114 DocType: DocType Hide Heading Ukryj Nagłówek
115 DocType: Workflow State remove-circle usuń-koło
116 apps/frappe/frappe/config/website.py +54 Javascript to append to the head section of the page.
117 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +53 Reset to defaults Przywróć domyślną
125 DocType: Social Login Keys Facebook Facebook
126 apps/frappe/frappe/templates/pages/list.py +46 Filtered by "{0}" Filtrowane przez &quot;{0}&quot;
127 sites/assets/js/desk.min.js +1009 Message from {0} Wiadomość od {0}
128 DocType: Blog Settings Blog Title Nazwa Blogu
129 apps/frappe/frappe/print/page/print_format_builder/print_format_builder_layout.html +12 Edit to set heading Edytuj aby ustawić nagłówek
130 DocType: About Us Settings Team Members
131 sites/assets/js/desk.min.js +553 Please attach a file or set a URL Proszę załączyć plik albo set URLi
132 DocType: DocField Permissions Uprawnienia
133 DocType: User Get your globally recognized avatar from Gravatar.com Pobierz rozpoznawany na całym świecie awatara z Gravatar.com
134 DocType: Workflow State plus-sign plus-sign
135 DocType: Event Public Publiczny
136 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
137 DocType: Block Module Block Module Moduł bloku
138 apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3 Export Template Szablon Eksportu
139 DocType: Block Module Module Moduł
140 DocType: Email Alert Send Alert On Wyślij alarm na
141 DocType: Web Form Website URL URL strony WWW
142 DocType: Customize Form Customize Label, Print Hide, Default etc.
147 apps/frappe/frappe/core/doctype/user/user.py +203 User {0} cannot be deleted Użytkownik {0} nie może być usunięty
148 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.
149 DocType: Property Setter Field Name Nazwa pola
150 sites/assets/js/desk.min.js +771 or albo
151 sites/assets/js/desk.min.js +925 module name... Moduł nazwa ... Nazwa Modułu...
152 apps/frappe/frappe/templates/generators/web_form.html +267 Continue Kontynuuj
153 DocType: Custom Field Fieldname Nazwa pola
154 DocType: Workflow State certificate certyfikat
194 DocType: Workflow State List lista
195 DocType: Page Role Page Role Rola strony
196 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
197 DocType: System Settings mm/dd/yyyy mm/dd/rrrr
198 apps/frappe/frappe/email/doctype/email_account/email_account.py +266 Re: Re:
199 DocType: Currency Sub-currency. For e.g. "Cent"
200 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
201 DocType: Print Format Server
202 DocType: DocField Link Łącze
203 apps/frappe/frappe/utils/file_manager.py +83 No file attached Brak załączonych plików
204 DocType: Version Version Wersja
205 DocType: User Fill Screen Wypełnij ekran
268 DocType: User Send Welcome Email Wyślij e-mail powitalny
269 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.
270 DocType: Feed Doc Name Doc Name
271 DocType: DocField Heading Nagłówek
272 DocType: Workflow State resize-vertical
273 DocType: Contact Us Settings Introductory information for the Contact Us Page
274 DocType: Workflow State thumbs-down
276 DocType: Comment Comment Time Czas Komentarza
277 DocType: Workflow State indent-left
278 DocType: Currency Currency Name Nazwa waluty
279 DocType: Report Javascript javascript
280 DocType: File Data Content Hash Hash zawartości
281 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.
282 DocType: Website Theme Google Font (Text) Google Font (Tekst) Google Czcionka (Tekst)
283 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +323 Did not remove Nie usunięto
284 DocType: Report Query Zapytanie
285 DocType: DocType Sort Order Kolejność
323 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +494 Restore Original Permissions Przywracanie pierwotnych uprawnień
324 DocType: DocField Button Przycisk
325 DocType: Email Account Default Outgoing Domyślnie Wychodzący
326 DocType: Workflow State play play
327 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
328 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +403 Did not add Nie dodano
329 DocType: Contact Us Settings Contact Us Settings Ustawinia "Skontaktuj się z nami"
332 DocType: Website Settings Sidebar
333 apps/frappe/frappe/core/doctype/report/report.js +5 Report Builder reports are managed directly by the report builder. Nothing to do.
334 apps/frappe/frappe/website/doctype/web_page/web_page.py +30 Cannot edit templated page Nie można edytować szablonu strony
335 apps/frappe/frappe/model/document.py +641 none of żadne z
336 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127 Upload User Permissions Wyślij Uprawnienia Użytkownika
337 apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +3 Checked items will be shown on desktop Zaznaczone elementy zostaną pokazane na pulpicie
338 apps/frappe/frappe/core/doctype/doctype/doctype.py +421 {0} cannot be set for Single types
352 DocType: Blogger User ID of a Blogger ID użytkownika który jest Bloggerem
353 apps/frappe/frappe/core/doctype/user/user.py +198 There should remain at least one System Manager Nie powinno pozostać przynajmniej jeden System Manager
354 DocType: Workflow State circle-arrow-right
355 DocType: Scheduler Log Method Metoda
356 DocType: Report Script Report
357 DocType: About Us Settings Company Introduction Wstęp o firmie
358 DocType: DocPerm Apply User Permissions
365 DocType: DocType Search Fields
366 sites/assets/js/desk.min.js +988 Email sent to {0} Wiadomość wysłana do {0}
367 DocType: Event Event Wydarzenie
368 sites/assets/js/desk.min.js +997 On {0}, {1} wrote: Na {0}, {1} napisał: W terminie {0}, {1} napisał:
369 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
370 DocType: Top Bar Item For top bar Dla górnej zakładki
371 DocType: Print Settings In points. Default is 9. W punktach. Domyślnie jest 9.
372 sites/assets/js/editor.min.js +123 Reduce indent (Shift+Tab) Zmniejsz wcięcie (Shift + Tab)
373 DocType: Print Settings Print with Letterhead, unless unchecked in a particular Document Drukuj z firmowy, chyba zaznaczone w danym dokumencie
374 DocType: Workflow State heart serce
375 DocType: Workflow State minus minus
376 sites/assets/js/desk.min.js +266 Server Error: Please check your server logs or contact tech support.
377 apps/frappe/frappe/core/doctype/user/user.py +116 Welcome email sent E-mail z powitaniem został wysłany
378 apps/frappe/frappe/core/doctype/user/user.py +361 Already Registered Już zarejestrowano
379 DocType: System Settings Float Precision Precyzja float'u
380 DocType: Property Setter Property Setter Osoba Ustawiająca Właściwość
381 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +217 Select User or DocType to start.
382 apps/frappe/frappe/desk/page/applications/applications.js +24 No Apps Installed Brak aplikacji zainstalowanych
383 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +181 Mark the field as Mandatory Zaznacz to pole jako obowiązkowe
386 apps/frappe/frappe/config/setup.py +195 Add custom forms. Dodaj niestandardowe formy.
387 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.
388 DocType: Country Geo Geo
389 DocType: Blog Category Blog Category Kategoria Blogu
390 DocType: User Roles HTML
391 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ć.
392 DocType: Page Page HTML Strona HTML
403 apps/frappe/frappe/config/setup.py +66 Language, Date and Time settings Ustawienia Języka, Daty i Czasu
404 DocType: User Represents a User in the system. Reprezentuje użytkownika w systemie.
405 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.
406 DocType: User Modules Access Moduły dostępu Dostęp do Modułu
407 DocType: Print Format Print Format Type
408 sites/assets/js/desk.min.js +936 Open Source Applications for the Web Open Source Wnioski o internecie
409 DocType: Website Theme Add the name of a "Google Web Font" e.g. "Open Sans" Dodaj nazwę &quot;Google Web Font&quot; np &quot;Otwórz Sans&quot;
469 DocType: Website Slideshow Website Slideshow Pokaz slajdów Strony Internetowej
470 DocType: Website Settings Link that is the website home page. Standard Links (index, login, products, blog, about, contact)
471 sites/assets/js/editor.min.js +105 Bullet list Lista punktowana
472 DocType: Website Settings Banner Image Zdjęcie Baneru
473 DocType: Custom Field Custom Field Niestandardowe pole
474 apps/frappe/frappe/email/doctype/email_alert/email_alert.py +13 Please specify which date field must be checked Proszę określić, która z tych dat pole musi być zaznaczone
475 DocType: DocPerm Set User Permissions
488 sites/assets/js/desk.min.js +605 No Results Brak Wyników
489 DocType: System Settings Security
490 DocType: Currency **Currency** Master ** Waluta ** Główna
491 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.
492 sites/assets/js/list.min.js +104 Starred By Me Ulubione By Me
493 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +48 Select Document Type
494 apps/frappe/frappe/utils/nestedset.py +201 Cannot delete {0} as it has child nodes Nie można skasować {0} ponieważ posiada elementy potomne
495 apps/frappe/frappe/templates/includes/list/filters.html +19 clear jasny
500 apps/frappe/frappe/core/doctype/doctype/doctype.py +225 {0} not allowed in fieldname {1} {0} niedozwolone w nazwie pola {1}
501 DocType: Page Icon ikona
502 DocType: Web Page Content in markdown format that appears on the main side of your page
503 DocType: System Settings dd/mm/yyyy
504 DocType: Website Settings An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [<a href="http://favicon-generator.org/" target="_blank">favicon-generator.org</a>]
505 DocType: Blog Settings Blog Settings Ustawienia Blogu
506 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
507 DocType: Workflow State bullhorn
508 DocType: Social Login Keys Facebook Client Secret Sekret Klienta Facebook
509 DocType: Website Settings Copyright Prawa autorskie
510 DocType: Social Login Keys Google Client Secret
511 DocType: Website Settings Hide Footer Signup Ukryj stopki Zarejestruj
512 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. Zapisz plik Python w tym samym folderze gdzie to jest zapisane i zwróć kolumnę i rezultat.
524 apps/frappe/frappe/config/desktop.py +60 Installer Instalator
525 sites/assets/js/editor.min.js +113 Insert Link Wstaw link
526 DocType: Contact Us Settings Query Options Opcje Zapytania
527 DocType: Patch Log Patch Log
528 DocType: Communication Sent or Received
529 DocType: DefaultValue Key Klucz
530 apps/frappe/frappe/config/setup.py +54 Report of all document shares Zgłoś wszystkich akcji dokumentów
540 sites/assets/js/desk.min.js +264 Not Found Nie znaleziono
541 apps/frappe/frappe/templates/pages/print.py +134 No {0} permission Nie {0} zgoda
542 DocType: Feed Login Zaloguj się
543 DocType: System Settings Enable Scheduled Jobs Włącz zaplanowane zadania
544 apps/frappe/frappe/core/page/data_import_tool/exporter.py +60 Notes: Notatki:
545 sites/assets/js/desk.min.js +593 Markdown Obniżka cen
546 DocType: DocShare Document Name Nazwa dokumentu
547 DocType: Comment Comment By Skomentowane przez
548 DocType: Customize Form Customize Form Dostosuj formularz
549 DocType: Currency A symbol for this currency. For e.g. $ Symbol waluty. Np. $
573 apps/frappe/frappe/core/doctype/user/user.js +166 Clear all roles Wyczyść wszystkie pola
574 apps/frappe/frappe/model/base_document.py +296 {0} must be unique {0} musi być unikalny
575 apps/frappe/frappe/permissions.py +228 Row Wiersz
576 DocType: Workflow State Check Sprawdź
577 apps/frappe/frappe/desk/page/activity/activity.js +152 Apr Kwietnia
578 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.
579 DocType: User Email Signature Podpis pod Email
582 sites/assets/js/desk.min.js +593 Edit as {0} Edycja jako {0}
583 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +194 No User Restrictions found. Nie znaleziono Ograniczenia użytkownika.
584 apps/frappe/frappe/email/doctype/email_account/email_account_list.js +10 Default Inbox Domyślnie Skrzynka odbiorcza
585 sites/assets/js/desk.min.js +607 Make a new Stwórz nowy
586 DocType: Print Settings PDF Page Size Rozmiar Strony PDF
587 sites/assets/js/desk.min.js +947 About Informacje
588 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.
591 apps/frappe/frappe/core/doctype/user/user.py +63 Adding System Manager to this User as there must be atleast one System Manager
592 DocType: Workflow State list-alt
593 apps/frappe/frappe/templates/pages/update-password.html +63 Password Updated Hasło zaktualizowane
594 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.
595 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +149 Permissions Updated Zaktualizowano Uprawnienia
596 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
597 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}
598 DocType: Report Query Report Raport zapytania
599 DocType: Communication On włączony
600 DocType: User Set New Password Ustaw nowe hasło
601 DocType: User Github User ID identyfikator klienta GitHub-u
602 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +246 If Document Type Jeżeli Rodzaj dokumentu
603 DocType: Communication Chat Czat
604 apps/frappe/frappe/core/doctype/doctype/doctype.py +230 Fieldname {0} appears multiple times in rows {1} Nazwa pola {0} pojawia się wiele razy w rzędzie {1}
605 DocType: Workflow State arrow-down
606 sites/assets/js/desk.min.js +874 Collapse Zwiń
610 DocType: Website Settings Top Bar
611 sites/assets/js/desk.min.js +549 Please save the document before uploading. Proszę zapisać dokument przed wysłaniem.
612 sites/assets/js/desk.min.js +257 Enter your password Wpisz swoje hasło
613 apps/frappe/frappe/core/doctype/doctype/doctype.py +296 Fold must come before a Section Break Złożyć musi przyjść przed podział sekcji
614 apps/frappe/frappe/core/doctype/user/user.py +383 Not allowed to reset the password of {0} Hasło dla {0} nie może być resetowane
615 DocType: Workflow State hand-down
616 apps/frappe/frappe/core/doctype/doctype/doctype.py +397 {0}: Cannot set Cancel without Submit
623 DocType: Social Login Keys Facebook Client ID ID Klienta Facebook
624 DocType: Workflow State Inbox Skrzynka odbiorcza
625 DocType: Workflow State Tag
626 DocType: Custom Script Script
627 sites/assets/js/desk.min.js +947 My Settings Moje ustawienia
628 DocType: Website Theme Text Color Kolor tekstu
629 apps/frappe/frappe/website/doctype/web_form/web_form.py +93 Invalid Request Nieprawidłowe żądanie
641 apps/frappe/frappe/core/doctype/doctype/doctype.py +361 {0}: No basic permissions set {0}: Brak podstawowych uprawnień
642 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}
643 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14 Meaning of Submit, Cancel, Amend
644 apps/frappe/frappe/desk/doctype/todo/todo_list.js +7 To Do Do zrobienia
645 sites/assets/js/editor.min.js +94 Paragraph Paragraf
646 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.
647 apps/frappe/frappe/desk/doctype/todo/todo.py +17 Assigned to {0}: {1} Przypisany do {0}: {1}
650 DocType: Website Settings Landing Page
651 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162 No Permissions set for this criteria.
652 apps/frappe/frappe/config/setup.py +120 Setup Email Alert based on various criteria. Ustawienia E-mail Alert na podstawie różnych kryteriów.
653 apps/frappe/frappe/website/doctype/blog_post/blog_post.py +93 Posts filed under {0} Stanowisk złożony w ramach {0}
654 DocType: Email Alert Send alert if date matches this field's value Wyślij alert, jeśli termin odpowiada wartości tego pola jest
655 DocType: Workflow Transitions Przejścia
656 DocType: User Login After Logowanie Po
657 DocType: Print Format Monospace Monospace
658 DocType: Workflow State thumbs-up
659 sites/assets/js/desk.min.js +965 Add Reply Dodaj Odpowiedź
660 DocType: DocPerm DocPerm DocPerm
661 apps/frappe/frappe/core/doctype/doctype/doctype.py +277 Precision should be between 1 and 6 Precyzja obliczeń powinna być pomiędzy 1 i 6
662 DocType: About Us Team Member Image Link
663 DocType: Workflow State step-backward
709 DocType: DocShare DocShare DocShare
710 DocType: Report Add Total Row
711 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +19 For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment. Na przykład w przypadku anulowania i zmiany INV004 stanie się nowym INV004-1 dokument. To pozwala na śledzenie każdej poprawki.
712 DocType: Workflow Document State 0 - Draft; 1 - Submitted; 2 - Cancelled 0 - Projekt; 1 - Wysłane; 2 - Anulowane
713 apps/frappe/frappe/core/page/modules_setup/modules_setup.js +5 Show or Hide Modules Pokaż lub Ukryj Moduły
714 DocType: File Data Attached To DocType
715 apps/frappe/frappe/desk/page/activity/activity.js +153 Aug Sierpień
751 DocType: Workflow State shopping-cart
752 DocType: Social Login Keys Google Google
753 DocType: Workflow State Inverse
754 DocType: DocField User permissions should not apply for this Link Uprawnienia Użytkownika nie powinny być zaaplikowane do tego Linku
755 apps/frappe/frappe/model/naming.py +90 Invalid naming series (. missing) Nieprawidłowy serii nazewnictwa (. Brakuje)
756 DocType: System Settings Language Język
757 DocType: DocPerm Cancel Anuluj
758 DocType: Web Page Page content Zawartość strony
759 apps/frappe/frappe/core/page/data_import_tool/exporter.py +91 Leave blank for new records Zostaw puste dla nowych rekordów Zostaw puste dla nowych wierszy
760 apps/frappe/frappe/config/website.py +79 List of themes for Website. Lista tematów na stronie internetowej.
761 sites/assets/js/desk.min.js +947 Logout Wylogowany
762 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.
763 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.
764 DocType: Workflow State bookmark
765 DocType: Currency Symbol
766 apps/frappe/frappe/model/base_document.py +403 Row #{0}: Wiersz # {0}:
767 apps/frappe/frappe/core/doctype/user/user.py +81 New password emailed
768 apps/frappe/frappe/auth.py +209 Login not allowed at this time Login nie jest dostępny w tym czasie
769 DocType: DocType Permissions Settings Ustawienia Uprawnień
770 sites/assets/js/desk.min.js +931 {0} List {0} Lista
771 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
772 DocType: Email Account Enable Outgoing Włącz wychodzących
773 DocType: System Settings Email Footer Address Stopka Adres e-mail
774 DocType: DocField Text
775 apps/frappe/frappe/config/setup.py +125 Standard replies to common queries. Standardowe odpowiedzi na najczęściej zadawane pytania.
776 sites/assets/js/desk.min.js +947 Report an Issue
777 apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14 Default Sending Domyślnie Wysyłanie
778 DocType: Workflow State volume-off wyłącz-głośność
783 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +3 Quick Help for Setting Permissions Szybka pomoc dla Ustawień Pozwoleń
784 DocType: Report Report Builder
785 DocType: Workflow Workflow Przepływ pracy
786 DocType: Workflow State Upload Prześlij
787 DocType: System Settings Date Format Format daty
788 apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js +7 Not Published Nie Opublikowany
789 apps/frappe/frappe/config/setup.py +168 Actions for workflow (e.g. Approve, Cancel).
822 DocType: Blogger Avatar
823 DocType: Blogger Posts Posty
824 sites/assets/js/desk.min.js +992 Dear Drogi
825 sites/assets/js/report.min.js +2 Tip: Double click cell to edit Wskazówka: Kliknij dwukrotnie komórkę, aby edytować
826 DocType: ToDo Description and Status Opis i Status
827 DocType: Web Page HTML for header section. Optional
828 apps/frappe/frappe/core/doctype/userrole/userrole.py +14 Role exists
829 sites/assets/js/desk.min.js +965 Select Print Format
830 DocType: DocField Print Hide
831 sites/assets/js/desk.min.js +246 Enter Value Wpisz Wartość
832 DocType: Workflow State tint
833 DocType: Workflow State Style
840 DocType: DocPerm Submit
841 DocType: Website Settings Sub-domain provided by erpnext.com
842 DocType: System Settings dd-mm-yyyy dd-mm-rrrr
843 apps/frappe/frappe/desk/query_report.py +70 Must have report permission to access this report.
844 apps/frappe/frappe/desk/doctype/event/event.py +66 Daily Event Digest is sent for Calendar Events where reminders are set.
845 sites/assets/js/desk.min.js +947 View Website Zobacz stronę WWW
846 DocType: Workflow State remove usunąć
876 apps/frappe/frappe/desk/form/assign_to.py +120 The task {0}, that you assigned to {1}, has been closed by {2}. Zadanie {0}, które przypisane do {1}, zostało zamknięte przez {2}.
877 DocType: Blogger Short Name
878 DocType: Workflow State magnet
879 apps/frappe/frappe/geo/doctype/currency/currency.js +7 This Currency is disabled. Enable to use in transactions
880 DocType: Contact Us Settings Default: "Contact Us" Domyślne: "Skontaktuj się z Nami"
881 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +378 Level 0 is for document level permissions, higher levels for field level permissions.
882 DocType: Custom Script Sample Próba
919 sites/assets/js/desk.min.js +622 Document Status Stan dokumentu
920 DocType: Email Account Login Id identyfikator Loginu
921 apps/frappe/frappe/core/page/data_import_tool/importer.py +176 Not allowed to Import Brak potwierdzenia do importu
922 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +22 Permission Levels Poziomy dostępu
923 DocType: Workflow State Warning Ostrzeżenie
924 DocType: DocType In Dialog
925 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +142 Help Pomoc
926 DocType: User Login Before Logowanie Przed
927 DocType: Web Page Insert Style
928 apps/frappe/frappe/desk/page/applications/applications.js +94 Application Installer Instalator aplikacji
929 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +246 Is Czy
930 DocType: Workflow State info-sign
931 DocType: Currency How should this currency be formatted? If not set, will use system defaults
932 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +250 Show User Permissions Uprawnienia Pokaż użytkowników
933 apps/frappe/frappe/utils/response.py +107 You need to be logged in and have System Manager Role to be able to access backups. Musisz być zalogowany jako Administrator Systemu aby mieć dostęp do backup'ów.
934 apps/frappe/frappe/email/bulk.py +78 This email was sent to {0}. To unsubscribe click on this link: {1} Ten e-mail został wysłany do {0}. Aby wypisać kliknij na ten link: {1}
935 sites/assets/js/desk.min.js +608 Added {0} ({1}) Dodano {0} ({1})
936 apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +253 Fieldtype cannot be changed from {0} to {1} in row {2} FieldType nie może być zmieniony z {0} na {1} w rzędzie{2}
954 DocType: Website Theme Apply Style
955 sites/assets/js/form.min.js +291 Shared With Udostępnione
956 Modules Setup Ustawienia Modułów
957 apps/frappe/frappe/core/page/data_import_tool/exporter.py +230 Type: Typ:
958 apps/frappe/frappe/desk/moduleview.py +57 Module Not Found Moduł nie został znaleziony
959 DocType: User Location Lokacja
960 Permitted Documents For User Dopuszczalne Dokumenty dla użytkownika
961 apps/frappe/frappe/core/doctype/docshare/docshare.py +40 You need to have "Share" permission Musisz mieć uprawnienia "Udostępnij"
962 sites/assets/js/form.min.js +213 Bulk Edit {0} Luzem Edycja {0}
963 DocType: Email Alert Recipient Email Alert Recipient Powiadomienie e-mailowo odbiorcy
964 DocType: About Us Settings Settings for the About Us Page Ustawienia dla O nas Page
965 apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +5 Select Type of Document to Download Wybierz typ dokumentu do pobrania
966 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +185 Use the field to filter records Użyj pola do filtrowania rekordów
967 DocType: Email Account Outlook.com Outlook.com
968 DocType: System Settings Scheduler Last Event Harmonogram Ostatni wyścig
969 DocType: Website Settings Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information. Dodaj Google Analytics ID: np. UA-89XXX57-1. Więcej informacji znajdziesz w pomocy Google Analytics.
1004 apps/frappe/frappe/model/base_document.py +432 Not allowed to change {0} after submission
1005 DocType: Comment Comment Type Typ Komentarza
1006 apps/frappe/frappe/config/setup.py +8 Users Użytkownicy
1007 DocType: Email Account Signature Podpis
1008 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.
1009 sites/assets/js/list.min.js +69 Add a tag Dodaj znacznik
1010 sites/assets/js/desk.min.js +561 Please attach a file first. Proszę najpierw załączyć plik
1014 DocType: Blog Post Email Sent Wiadomość wysłana
1015 sites/assets/js/desk.min.js +965 Send As Email
1016 DocType: Website Theme Link Color Link Kolor Kolor Łącza
1017 apps/frappe/frappe/core/doctype/user/user.py +47 User {0} cannot be disabled Użytkownik {0} nie może być wyłączony
1018 apps/frappe/frappe/core/doctype/user/user.py +479 Dear System Manager, Szanowny Dyrektorze ds. Systemu
1019 sites/assets/js/form.min.js +182 Amending Zmieniająca
1020 sites/assets/js/desk.min.js +598 Dialog box to select a Link Value Okno dialogowe, aby wybrać wartość łącza
1021 DocType: Contact Us Settings Send enquiries to this email address
1022 DocType: Letter Head Letter Head Name Nazwa nagłówka
1023 apps/frappe/frappe/config/website.py +23 User editable form on Website. Formularz edytowalny przez Użytkownia na stronie WWW
1024 DocType: Workflow State file plik
1025 apps/frappe/frappe/model/rename_doc.py +97 You need write permission to rename Musisz mieć uprawnienia zapisu by zmienić nazwę
1026 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +433 Apply Rule Zastosuj regułę
1027 DocType: User Karma Karma
1028 DocType: DocField Table
1029 DocType: File Data File Size Rozmiar pliku
1030 apps/frappe/frappe/website/doctype/web_form/web_form.py +130 You must login to submit this form Musisz się zalogować, aby przesłać ten formularz
1031 DocType: User Background Image Obrazek tła
1032 sites/assets/js/form.min.js +265 New Custom Print Format Nowy format wydruku klienta
1047 DocType: Print Settings Monochrome Monochromatyczne
1048 DocType: Workflow Different "States" this document can exist in. Like "Open", "Pending Approval" etc.
1049 apps/frappe/frappe/utils/verified_command.py +40 This link is invalid or expired. Please make sure you have pasted correctly. Ten link jest nieprawidłowy lub wygasł. Proszę upewnić się, że wklejony prawidłowo.
1050 DocType: Web Form Web Form Fields Pola formularza internetowego
1051 DocType: Website Theme Top Bar Text Color Top Bar Kolor tekstu
1052 apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +367 Remove Section Usuń sekcję
1053 sites/assets/js/desk.min.js +521 Invalid Email: {0}
1059 apps/frappe/frappe/config/setup.py +214 Manage cloud backups on Dropbox Zarządzaj kopią chmury na Dropboxie
1060 DocType: Workflow States
1061 DocType: Email Alert Attach Print Dołączyć Drukuj
1062 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.
1063 apps/frappe/frappe/core/doctype/doctype/doctype.py +36 {0} not allowed in name {0} nie jest dozwolone w nazwie
1064 DocType: Workflow State circle-arrow-left
1065 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
1066 sites/assets/js/desk.min.js +918 Make a new record Dodać nowy rekord Dodaj nowy rekord
1067 DocType: Currency Fraction Ułamek
1068 sites/assets/js/desk.min.js +550 Select from existing attachments Wybierz z istniejących załączników
1069 DocType: Custom Field Field Description Opis pola
1070 apps/frappe/frappe/model/naming.py +49 Name not set via Prompt
1071 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
1072 DocType: Website Theme Top Bar Color Top Bar Kolor
1073 DocType: DocType Allow Import Pozwól na Import
1074 apps/frappe/frappe/templates/includes/comments/comments.py +57 New comment on {0} {1} Nowy komentarz na {0} {1}
1075 DocType: Workflow State glass szkło
1076 DocType: Country Time Zones
1078 apps/frappe/frappe/config/setup.py +158 Define workflows for forms. Domyślny przepływ pracy dla formularzy
1079 DocType: Website Settings Misc
1080 apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +156 Start new Format Rozpocznij nowy format
1081 DocType: Workflow State font czcionka
1082 DocType: Customize Form Field Is Custom Field Czy Pole niestandardowe
1083 DocType: Workflow If checked, all other workflows become inactive. Jeśli zaznaczone, to wszystkie pozostałe obiegi stają się nieaktywne.
1084 apps/frappe/frappe/core/doctype/report/report.js +10 [Label]:[Field Type]/[Options]:[Width] [Etykieta]:[Typ pola]/[Opcje]:[Szerokość]
1124 apps/frappe/frappe/config/website.py +64 Categorize blog posts. Skategoryzowane posty blogowe
1125 DocType: DocField Attach
1126 DocType: DocType Permission Rules Reguły dostępu
1127 sites/assets/js/form.min.js +159 Links Linki Łącza
1128 apps/frappe/frappe/model/base_document.py +331 Value missing for Brakuje wartości dla
1129 apps/frappe/frappe/model/delete_doc.py +135 {0} {1}: Submitted Record cannot be deleted. {0} {1}: Napisał Record nie mogą być usunięte.
1130 sites/assets/js/desk.min.js +919 new type of document nowy typ dokumentu
1131 DocType: DocPerm Read Czytać
1132 apps/frappe/frappe/templates/pages/update-password.html +10 Old Password Stare hasło
1133 apps/frappe/frappe/website/doctype/blog_post/blog_post.py +97 Posts by {0} Posty przez {0} Posty stworzone przez {0}
1134 apps/frappe/frappe/core/doctype/report/report.js +9 To format columns, give column labels in the query.
1135 apps/frappe/frappe/core/doctype/doctype/doctype.py +427 {0}: Cannot set Assign Amend if not Submittable
1136 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14 Edit Role Permissions Edytuj Uprawnienia ról
1137 DocType: Social Login Keys Social Login Keys
1138 DocType: Comment Comment Date Data komentarza
1139 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +54 Remove all customizations? Usunąć wszystkie ustawienia niestandardowe?
1140 DocType: Website Slideshow Slideshow Name
1141 sites/assets/js/form.min.js +182 Cancelling Anulowanie
1142 DocType: DocType Allow Rename
1143 DocType: DocType Child Tables are shown as a Grid in other DocTypes.
1152 DocType: Email Account Append To Dołącz do
1153 DocType: Workflow Document State Only Allow Edit For
1154 DocType: DocType DocType DocType
1155 apps/frappe/frappe/core/doctype/user/user.py +393 User {0} does not exist Użytkownik {0} nie istnieje
1156 DocType: Website Theme If image is selected, color will be ignored. Jeśli wybrano obraz, to kolor będzie ignorowany.
1157 DocType: Top Bar Item Top Bar Item
1158 apps/frappe/frappe/utils/csvutils.py +50 Unknown file encoding. Tried utf-8, windows-1250, windows-1252. Nieznane kodowanie pliku. System próbował utf-8, windows-1250, windows-1252.
1171 apps/frappe/frappe/database.py +217 Too many writes in one request. Please send smaller requests
1172 DocType: Workflow State arrow-up
1173 DocType: DocField Allow on Submit
1174 apps/frappe/frappe/core/page/desktop/desktop.js +48 All Applications Wszystkie aplikacje
1175 DocType: Web Page Add code as &lt;script&gt; Dodaj kod jako &lt;script&gt;
1176 apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +7 Select Type
1177 apps/frappe/frappe/core/doctype/file_data/file_data.py +42 No permission to write / remove. Brak uprawnień do zapisu / usuwania.
1203 DocType: Custom Field Options Help Opcje Pomocy
1204 DocType: DocField Report Hide
1205 DocType: Custom Field Label Help pomoc w etykiecie
1206 DocType: Workflow State star-empty
1207 DocType: Workflow State ok ok
1208 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.
1209 apps/frappe/frappe/desk/page/applications/application_row.html +15 Publisher Wydawca
1210 sites/assets/js/desk.min.js +846 Browse Przeglądaj
1211 apps/frappe/frappe/templates/includes/comments/comments.py +52 View it in your browser Zobacz w swojej przeglądarce
1212 apps/frappe/frappe/templates/pages/update-password.html +1 Reset Password Resetowanie hasła
1213 DocType: Workflow State hand-left
1214 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
1215 DocType: Email Account Use SSL Użyj SSL
1216 DocType: Workflow State play-circle play-circle
1217 apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +75 Select Print Format to Edit Wybierz format wydruku Edycja
1218 DocType: Workflow State circle-arrow-down
1219 DocType: DocField Datetime Data-czas
1222 sites/assets/js/editor.min.js +152 Open Link in a new Window Otwórz link w nowym oknie
1223 apps/frappe/frappe/utils/file_manager.py +235 Removed {0} Usunięto {0}
1224 DocType: Company History Highlight Leflektor
1225 apps/frappe/frappe/print/doctype/print_format/print_format.py +18 Standard Print Format cannot be updated
1226 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +146 Help: Field Properties Pomoc: Właściwości terenowe
1227 apps/frappe/frappe/model/document.py +657 Incorrect value in row {0}: {1} must be {2} {3}
1228 apps/frappe/frappe/workflow/doctype/workflow/workflow.py +67 Submitted Document cannot be converted back to draft. Transition row {0}
1230 apps/frappe/frappe/workflow/doctype/workflow/workflow.py +38 Created Custom Field {0} in {1}
1231 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +31 A user can be permitted to multiple records of the same DocType. Użytkownik może mieć dostęp do wielu wierszy tego samego DocType'u
1232 DocType: Workflow State Home dom
1233 DocType: Workflow State question-sign question-sign
1234 DocType: Email Account Add Signature Dodaj podpis
1235 apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13 Left this conversation Opuścił tę rozmowę
1236 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +474 Did not set Nie ustawiono
1244 apps/frappe/frappe/core/doctype/comment/comment.py +39 Cannot add more than 50 comments Nie można dodawać więcej niż 50 komentarzy
1245 DocType: Website Settings Top Bar Items
1246 DocType: Print Settings Print Settings Ustawienia drukowania
1247 DocType: DocType Max Attachments
1248 DocType: Page Page Strona
1249 DocType: Workflow State briefcase teczka
1250 apps/frappe/frappe/model/base_document.py +420 Value cannot be changed for {0} Wartość nie może być zmieniona dla {0}
1255 DocType: Communication Content Zawartość
1256 DocType: Web Form Go to this url after completing the form. Idź do tego adresu URL po wypełnieniu formularza.
1257 DocType: Custom Field Document Dokument
1258 DocType: DocField Code Kod
1259 DocType: Website Theme Footer Text Color Kolor tekstu stopki
1260 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. Uprawnienia na poziomie 0 są uprawnienia na poziomie dokumentu, czyli są one podstawowym dostępu do dokumentu.
1261 DocType: Print Format Print Format Format druku
1278 DocType: Letter Head Letter Head in HTML Nagłówek w HTMLu
1279 DocType: Web Form Web Form Formularz internetowy
1280 DocType: About Us Settings Org History Heading
1281 DocType: Web Form Web Page Link Text Tekst linku do strony WWW
1282 apps/frappe/frappe/config/setup.py +142 Set default format, page size, print style etc. Ustaw domyślny format, rozmiar strony, styl wydruku itp
1283 DocType: DocType Naming Nazwa
1284 DocType: Event Every Year Co rok
1286 sites/assets/js/list.min.js +95 Delete permanently? Usuń na stałe?
1287 sites/assets/js/desk.min.js +922 Search in a document type Szukaj w rodzaju dokumentu
1288 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +201 Allow field to remain editable even after submission Pozwól pola pozostaną edytowalne nawet po przedłożeniu
1289 DocType: DocPerm Role and Level
1290 apps/frappe/frappe/desk/moduleview.py +31 Custom Reports Niestandardowe raporty
1291 DocType: Website Script Website Script Skrypt strony WWW
1292 apps/frappe/frappe/config/setup.py +147 Customized HTML Templates for printing transactions. Dostosowane szablony HTML dla transakcji drukowania.
1293 apps/frappe/frappe/desk/form/utils.py +103 No further records Nie ma dlaszych zaksięgowań
1294 DocType: DocField Long Text
1295 apps/frappe/frappe/core/page/data_import_tool/importer.py +36 Please do not change the rows above {0}
1296 sites/assets/js/desk.min.js +947 (Ctrl + G) (Ctrl + G)
1297 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ę.
1301 apps/frappe/frappe/utils/nestedset.py +227 {0} {1} cannot be a leaf node as it has children
1302 DocType: Feed Info
1303 apps/frappe/frappe/templates/includes/contact.js +30 Thank you for your message Dziękuję za wiadomości
1304 DocType: Website Settings Home Page Strona główna
1305 DocType: Email Alert Filters Filtry
1306 DocType: Workflow State share-alt
1307 DocType: Role Role Name Nazwa roli
1308 DocType: Workflow Document State Workflow Document State Stan Dokumentu Przepływu Pracy
1309 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. Aby dać acess do roli tylko do poszczególnych zapisów, zaznacz opcję Zastosuj uprawnień użytkownika. Uprawnienia użytkownika są wykorzystywane w celu ograniczenia użytkownikom takiej roli do konkretnych zapisów.
1310 apps/frappe/frappe/workflow/doctype/workflow/workflow.py +70 Cannot cancel before submitting. See Transition {0}
1311 apps/frappe/frappe/templates/pages/print.py +146 Print Format {0} is disabled Drukuj Format {0} jest wyłączony
1312 DocType: Email Alert Send days before or after the reference date Wyślij dni przed lub po dacie odniesienia
1327 apps/frappe/frappe/print/page/print_format_builder/print_format_builder_sidebar.html +3 Filter... Filtr ...
1328 DocType: Workflow State bold Pogrubiony
1329 apps/frappe/frappe/website/doctype/website_settings/website_settings.py +34 {0} does not exist in row {1} {0} nie istnieje w linii {1}
1330 DocType: Event Event Type Typ wydarzenia
1331 DocType: User Last Known Versions Ostatnio znanych wersji Ostatnio znane wersje
1332 apps/frappe/frappe/config/setup.py +115 Add / Manage Email Accounts. Dodaj / Zarządzaj kontami poczty e-mail.
1333 DocType: Blog Category Published Opublikowany
1336 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}.
1337 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' Typ Opcje "Dynamic Link 'pola muszą wskazywać na inny link Pole z opcji jak" DocType "
1338 DocType: About Us Settings Team Members Heading
1339 DocType: DocField Do not allow user to change after set the first time Nie zezwól użytkownikowi zmieniać po pierwszym ustawieniu
1340 DocType: User Third Party Authentication
1341 DocType: Website Settings Banner is above the Top Menu Bar. Baner jest nad górną zakładką menu
1342 DocType: Email Account Port Port
1343 DocType: Print Format Arial
1344 DocType: Website Slideshow Slideshow like display for the website Pokaz slajdów jak wyświetlaczem stronie
1345 sites/assets/js/editor.min.js +121 Center (Ctrl/Cmd+E) Środek (Ctrl / Cmd + E)
1346 apps/frappe/frappe/sessions.py +28 Cache Cleared Wyczyszczone cache
1347 apps/frappe/frappe/core/doctype/user/user.py +73 User with System Manager Role should always have User Type: System User Użytkownik z rolą Menedżera Systemu powinien zawsze mieć Typ użytkownika: Użytkownik Systemu
1350 sites/assets/js/desk.min.js +274 Session Expired. Logging you out
1351 DocType: Workflow DocType on which this Workflow is applicable.
1352 DocType: Blog Category Category Name Nazwa kategorii
1353 DocType: Print Settings PDF Settings Ustawienia PDF
1354 apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +16 Column Name Nazwa kolumny
1355 DocType: Web Form In JSON as <pre>[{"title":"Jobs", "name":"jobs"}]</pre> W JSON jako <pre> [{"title": "Praca", "Nazwa": "miejsc pracy"}] </ pre>
1356 apps/frappe/frappe/core/doctype/doctype/doctype.py +284 Fieldtype {0} for {1} cannot be indexed Typ pola {0} do {1} nie może być zindeksowany
1367 apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +361 No of Columns Nie Kolumnowej Numer kolumn
1368 DocType: Workflow State Calendar Kalendarz
1369 apps/frappe/frappe/model/rename_doc.py +94 Another {0} with name {1} exists, select another name Inny {0} z nazwą {1} istnieje, wybierz inną nazwę
1370 DocType: DocType Custom? Niestandardowy?
1371 DocType: Website Settings Website Theme Image Zdjęcie stylu strony WWW
1372 DocType: Workflow State road
1373 DocType: User Timezone Strefa czasowa
1375 DocType: DocField Read Only Tylko do odczytu
1376 DocType: Print Settings Send Print as PDF Wyślij Drukuj w formacie PDF
1377 DocType: Workflow Transition Allowed Dozwolone
1378 apps/frappe/frappe/core/doctype/doctype/doctype.py +291 There can be only one Fold in a form Nie może być tylko jeden Fold w formie
1379 apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23 Invalid Home Page
1380 apps/frappe/frappe/core/doctype/doctype/doctype.py +390 {0}: Permission at level 0 must be set before higher levels are set
1381 DocType: Website Settings Home Page is Products
1392 apps/frappe/frappe/print/page/print_format_builder/print_format_builder_field.html +22 Select Columns Wybierz kolumny
1393 DocType: Workflow State folder-open Otwarty folder
1394 apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +1 Search Application Szukaj Zastosowanie
1395 apps/frappe/frappe/config/website.py +18 Single Post (article).
1396 DocType: Property Setter Set Value
1397 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +189 Hide field in form Ukryj pola w formularzu
1398 DocType: Email Alert Optional: The alert will be sent if this expression is true Opcjonalnie: powiadomienie zostanie wysłane, jeśli wyrażenie jest prawdziwe
1399 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27 You can use Customize Form to set levels on fields.
1400 DocType: DocPerm Report Raport
1401 apps/frappe/frappe/templates/generators/web_form.html +31 Please login to create a new {0} Proszę się zalogować, aby utworzyć nowy {0}
1402 apps/frappe/frappe/desk/reportview.py +69 {0} is saved {0} został zapisany
1403 apps/frappe/frappe/core/doctype/user/user.py +235 User {0} cannot be renamed Nie można zmienić imienia Użytkownika {0}
1404 apps/frappe/frappe/website/doctype/website_settings/website_settings.js +17 Exported Eksportowane
1415 DocType: Website Slideshow This goes above the slideshow.
1416 apps/frappe/frappe/config/setup.py +208 Install Applications. Instaluj aplikacje
1417 DocType: Event Private Prywatny
1418 DocType: Print Settings Send Email Print Attachments as PDF (Recommended) Wyślij e-mail Drukuj załączniki w formacie PDF (zalecana)
1419 DocType: Workflow Action Workflow Action Akcja przepływu pracy
1420 DocType: Event Send an email reminder in the morning Wyślij rano e-mail z przypomnieniem
1421 DocType: Blog Post Published On Opublikowany
1425 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 User Permissions Uprawnienia Użytkownika
1426 apps/frappe/frappe/desk/page/activity/activity.js +153 Oct Październik
1427 DocType: Workflow State warning-sign znak-ostrzeżenie
1428 DocType: Website Settings Show title in browser window as "Prefix - title" Pokaż tytuł w oknie przeglądarki jako &quot;Prefiks - tytuł&quot;
1429 sites/assets/js/desk.min.js +923 text in document type Tekst w rodzaju dokumentu
1430 DocType: Workflow Document State Update Value Zaktualizuj Wartość
1431 DocType: System Settings Number Format numer formatu
1432 DocType: Custom Field Insert After
1433 DocType: Social Login Keys GitHub Client Secret GitGub Klient
1434 DocType: Report Report Name Nazwa raportu
1435 DocType: Email Alert Save Zapisz
1439 sites/assets/js/desk.min.js +608 {0} added {0} dodane
1440 sites/assets/js/list.min.js +67 Not In Nie W
1441 DocType: Workflow State star
1442 apps/frappe/frappe/desk/page/activity/activity.js +153 Nov Listopad
1443 apps/frappe/frappe/core/doctype/doctype/doctype.py +256 Max width for type Currency is 100px in row {0}
1444 apps/frappe/frappe/config/website.py +13 Content web page. Strona WWW zawartości
1445 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9 Add a New Role Dodaj nową rolę
1455 apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +19 Label is mandatory etykieta jest obowiązkowa
1456 DocType: DocField Unique Unikalny
1457 DocType: File Data File Name Nazwa pliku
1458 apps/frappe/frappe/core/page/data_import_tool/importer.py +261 Did not find {0} for {0} ({1}) Nie znaleziono {0} dla {0} ({1})
1459 apps/frappe/frappe/config/setup.py +39 Set Permissions per User
1460 DocType: Print Format Edit Format Edytuj Format
1461 apps/frappe/frappe/templates/emails/new_user.html +6 Complete Registration Pełna Rejestracja
1462 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 Kolor i Kolor tekstu są takie same. Powinny być one mają dobry kontrast, aby być czytelny.
1463 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) Możesz przesłać do 5000 rekordów za jednym zamachem (w niektórych przypadkach jeszcze mniej).
1464 DocType: Print Settings Print Style Styl Drukuj
1465 DocType: DocPerm Import
1466 apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +125 Row {0}: Not allowed to enable Allow on Submit for standard fields Wiersz {0}: Nie mógł włączyć Zezwalaj na Wyślij do standardowych pól
1467 apps/frappe/frappe/config/setup.py +91 Import / Export Data Importuj / Eksportuj dane
1473 DocType: Website Settings Brand HTML
1474 apps/frappe/frappe/templates/includes/login/login.js +18 Both login and password required Zarówno login i hasło wymagane
1475 apps/frappe/frappe/model/document.py +392 Please refresh to get the latest document.
1476 DocType: User Security Settings
1477 Desktop Pulpit
1478 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`
1479 sites/assets/js/desk.min.js +588 Please set {0} first Proszę ustawić {0} pierwszy Proszę ustawić {0} najpierw
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510

View file

@ -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

1 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +224 Press Esc to close Pressione Esc para fechar
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ído a você por {1}. {2} Uma nova tarefa, {0}, foi atribuída a você por {1}. {2}
3 apps/frappe/frappe/desk/page/messages/messages_main.html +12 Post Postagem
4 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 . .
5 DocType: Workflow State pause pausa
349 apps/frappe/frappe/core/doctype/user/user.py +378 Registration Details Emailed. Detalhes do registro enviado por email.
350 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.
351 DocType: DocType Is Single É único
352 apps/frappe/frappe/email/bulk.py +169 {0} has left the conversation in {1} {2} {0} foi deixada a conversa em {1} {2} {0} deixou a conversa em {1} {2}
353 DocType: Blogger User ID of a Blogger ID do usuário de um Blogger
354 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
355 DocType: Workflow State circle-arrow-right círculo de seta à direita
843 DocType: System Settings dd-mm-yyyy dd-mm-aaaa
844 apps/frappe/frappe/desk/query_report.py +70 Must have report permission to access this report. Deve ter permissão para acessar relatório deste relatório.
845 apps/frappe/frappe/desk/doctype/event/event.py +66 Daily Event Digest is sent for Calendar Events where reminders are set. O resumo de eventos diário é enviado para Calendário de eventos onde os lembretes são definidos.
846 sites/assets/js/desk.min.js +947 View Website Veja o Website
847 DocType: Workflow State remove Remover
848 DocType: Email Account If non standard port (e.g. 587) Se não for a porta padrão (por exemplo, 587)
849 sites/assets/js/desk.min.js +947 Reload Recarregar
880 apps/frappe/frappe/geo/doctype/currency/currency.js +7 This Currency is disabled. Enable to use in transactions Esta moeda é desativado. Ativar para usar em transações
881 DocType: Contact Us Settings Default: "Contact Us" Padrão: "Fale Conosco"
882 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +378 Level 0 is for document level permissions, higher levels for field level permissions. Nível 0 é para permissões em nível de documento, os níveis mais elevados são permissões em nível de campo.
883 DocType: Custom Script Sample Amostra
884 DocType: Event Every Week Todas as semanas
885 DocType: Custom Field Is Mandatory Field É campo obrigatório
886 DocType: User Website User Usuário do Site
912 DocType: Custom Script Script Type Tipo de Script
913 DocType: Email Account Footer Rodapé
914 apps/frappe/frappe/utils/verified_command.py +39 Invalid Link Fazer a ligação inválido
915 DocType: Web Page Show Title Mostrar título
916 DocType: Property Setter Property Type Tipo de propriedade
917 DocType: Workflow State screenshot captura de tela
918 apps/frappe/frappe/core/doctype/report/report.py +24 Only Administrator can save a standard report. Please rename and save. Somente o administrador pode salvar um relatório padrão. Por favor, renomear e salvar.
1034 DocType: DocPerm Create Criar
1035 DocType: About Us Settings Org History org História
1036 DocType: Workflow Workflow Name Nome do Fluxo de Trabalho
1037 DocType: Web Form Allow Edit Permitir Editar
1038 apps/frappe/frappe/workflow/doctype/workflow/workflow.py +64 Cannot change state of Cancelled Document. Transition row {0} Não é possível alterar o estado de Documento Cancelado .
1039 DocType: Workflow Rules for how states are transitions, like next state and which role is allowed to change state etc. Regras de como os estados são transições, como o próximo estado e que função terá permissão para mudar de estado, etc
1040 apps/frappe/frappe/desk/form/save.py +21 {0} {1} already exists {0} {1} já existe

View file

@ -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,<span class=text-muted data-no-content=1>,<span class = ข้อความออกเสียงข้อมูลไม่มีเนื้อหา = 1>
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,ข้อมูลเพิ่มเติม

1 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +224 Press Esc to close กด Esc เพื่อปิด
26 apps/frappe/frappe/core/page/data_import_tool/exporter.py +51 Data Import Template ข้อมูลนำเข้าแม่แบบ
27 sites/assets/js/desk.min.js +622 Parent ผู้ปกครอง
28 apps/frappe/frappe/print/doctype/print_format/print_format.py +32 Syntax error in Jinja template ไวยากรณ์ผิดพลาดในแม่แบบ Jinja
29 DocType: About Us Settings "Team Members" or "Management" “สมาชิกทีม" หรือ "การจัดการ" “สมาชิกในทีม" หรือ "ผู้บริหาร"
30 apps/frappe/frappe/core/doctype/doctype/doctype.py +271 Default for 'Check' type of field must be either '0' or '1' เริ่มต้นสำหรับ 'ตรวจสอบ' ประเภทของข้อมูลต้องเป็น '0' หรือ '1'
31 DocType: Email Account Enable Incoming เปิดใช้งานเข้ามา
32 DocType: Workflow State Danger อันตราย
337 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127 Upload User Permissions อัปโหลดสิทธิ์ของผู้ใช้
338 apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +3 Checked items will be shown on desktop รายการตรวจสอบจะแสดงบนเดสก์ทอป
339 apps/frappe/frappe/core/doctype/doctype/doctype.py +421 {0} cannot be set for Single types {0} ไม่สามารถตั้งค่า สำหรับชนิด เดี่ยว
340 apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +97 {0} updated {0} การปรับปรุง {0} ได้รับการปรับปรุง
341 apps/frappe/frappe/core/doctype/doctype/doctype.py +411 Report cannot be set for Single types รายงาน ไม่สามารถตั้งค่า สำหรับชนิด เดี่ยว
342 apps/frappe/frappe/desk/page/activity/activity.js +152 Feb กุมภาพันธ์
343 DocType: DocPerm Role บทบาท
436 apps/frappe/frappe/desk/page/activity/activity.js +196 {0} on {1} {0} {1} {0} บน {1}
437 DocType: Customize Form Enter Form Type ป้อนประเภทแบบฟอร์ม
438 DocType: User Send Password Update Notification ส่งแจ้งเตือนการปรับปรุงรหัสผ่าน
439 apps/frappe/frappe/model/db_schema.py +247 {0} field cannot be set as unique, as there are non-unique existing values {0} สนามไม่สามารถตั้งเป็นที่ไม่ซ้ำกันที่มีค่าที่มีอยู่ที่ไม่ซ้ำกัน
440 sites/assets/js/desk.min.js +1016 Updated To New Version การปรับปรุงเพื่อให้รุ่นใหม่
441 DocType: DocField Depends On ขึ้นอยู่กับ
442 DocType: DocPerm Additional Permissions สิทธิ์ เพิ่มเติม
677 apps/frappe/frappe/templates/emails/auto_reply.html +5 This is an automatically generated reply นี่คือการตอบกลับโดยอัตโนมัติ
678 apps/frappe/frappe/model/document.py +378 Record does not exist บันทึก ไม่อยู่
679 apps/frappe/frappe/templates/pages/404.html +4 Page missing or moved หน้าขาดหายไปหรือย้าย
680 sites/assets/js/desk.min.js +565 Open Link เปิดการเชื่อมโยง
681 apps/frappe/frappe/desk/form/load.py +42 Did not load ไม่ได้โหลด
682 apps/frappe/frappe/desk/query_report.py +80 Query must be a SELECT แบบสอบถามจะต้องเลือก
683 DocType: Website Settings Facebook Share Facebook แบ่งปัน
983 apps/frappe/frappe/config/website.py +44 Setup of top navigation bar, footer and logo. การติดตั้งจากด้านบนแถบนำทางท้ายและโลโก้
984 apps/frappe/frappe/core/doctype/doctype/doctype.py +357 For {0} at level {1} in {2} in row {3} สำหรับ {0} ในระดับ {1} ใน {2} ในแถว {3}
985 DocType: Bulk Email Recipient ผู้รับ
986 apps/frappe/frappe/config/setup.py +137 Drag and Drop tool to build and customize Print Formats. ลากและวางเครื่องมือในการสร้างและปรับแต่งรูปแบบการพิมพ์
987 sites/assets/js/desk.min.js +874 Expand ขยายความ
988 DocType: Workflow State align-right จัดขวา
989 DocType: Page Roles บทบาท

View file

@ -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 <code>Reference: {{ reference_doctype }} {{ reference_name }}</code> to send document reference,ProTip添加<code>Reference: {{ reference_doctype }} {{ reference_name }}</code>發送文檔引用
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,工作流程執行

1 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +224 Press Esc to close 按Esc鍵關閉
141 DocType: Email Alert Send Alert On 發送警示在
142 DocType: Web Form Website URL 網站網址
143 DocType: Customize Form Customize Label, Print Hide, Default etc. 自定義標籤,列印隱藏,預設值等。
144 apps/frappe/frappe/print/page/print_format_builder/print_format_builder_start.html +16 Create a New Format 創建新格式 建立新格式
145 DocType: Website Settings Add a banner to the site. (small banners are usually good) 在網站上新增一個橫幅。(通常選小橫幅是不錯的)
146 DocType: Website Settings Set Banner from Image 從圖像設置橫幅
147 DocType: Print Format Verdana 宋體
279 DocType: Currency Currency Name 貨幣名稱
280 DocType: Report Javascript Javascript
281 DocType: File Data Content Hash 內容Hash值
282 DocType: User Stores the JSON of last known versions of various installed apps. It is used to show release notes. 商店的最後為人所知的版本的安裝的應用程序的JSON。它是用來顯示發布說明。 儲存最後安裝版本之應用程式的JSON。用來顯示發行說明。
283 DocType: Website Theme Google Font (Text) 谷歌字體(文本)
284 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +323 Did not remove 沒有刪除
285 DocType: Report Query 查詢
380 DocType: System Settings Float Precision 浮點數精度
381 DocType: Property Setter Property Setter 屬性設定器
382 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +217 Select User or DocType to start. 選擇用戶或DocType以開始。
383 apps/frappe/frappe/desk/page/applications/applications.js +24 No Apps Installed 沒有安裝的應用程序 應用程式未安裝
384 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +181 Mark the field as Mandatory 標記字段作為強制性
385 DocType: User Google User ID Google的用戶ID
386 apps/frappe/frappe/desk/form/utils.py +66 This method can only be used to create a Comment 這種方法只能用於創建註釋
396 DocType: Email Alert Recipient Optional: Always send to these ids. Each email id on a new row 可選:總是發送給這些ID。每一個電子郵件ID一列
397 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +299 Users with role {0}: 角色{0} 的用戶:
398 DocType: Print Format Custom Format 自定義格式
399 DocType: Website Settings Integrations 集成 整合
400 DocType: DocField Section Break 分節符
401 DocType: Communication Sender Full Name 發件人姓名
402 Messages 訊息
406 apps/frappe/frappe/desk/form/assign_to.py +114 The task {0}, that you assigned to {1}, has been closed. 任務{0},您分配給{1},已關閉。
407 DocType: User Modules Access 模塊訪問
408 DocType: Print Format Print Format Type 列印格式類型
409 sites/assets/js/desk.min.js +936 Open Source Applications for the Web 開源為Web應用程序 開源網路應用程式
410 DocType: Website Theme Add the name of a "Google Web Font" e.g. "Open Sans" 添加一個“谷歌網頁字體”的名稱,例如“打開三世”
411 DocType: DocType Hide Toolbar 隱藏工具欄
412 DocType: Email Account SMTP Settings for outgoing emails SMTP設置外發郵件
415 DocType: Email Account Auto Reply Message 自動回复留言
416 DocType: Email Alert Condition 條件
417 sites/assets/js/desk.min.js +924 Open a module or tool 打開一個模塊或工具
418 DocType: Module Def App Name 應用程序名稱 應用程式名稱
419 DocType: Workflow Field that represents the Workflow State of the transaction (if field is not present, a new hidden Custom Field will be created) 代表交易的工作流程狀態的欄位(如果不存在,一個新的隱藏的自定義欄位將被創建)
420 apps/frappe/frappe/templates/pages/login.py +162 Email not verified with {1} 電子郵件與驗證{1}
421 DocType: Email Account e.g. pop.gmail.com 例如pop.gmail.com
459 apps/frappe/frappe/utils/data.py +399 only. 而已。
460 DocType: Feed Doc Type 文件類型
461 apps/frappe/frappe/email/receive.py +53 Invalid Mail Server. Please rectify and try again. 無效的郵件服務器。請糾正,然後再試一次。
462 DocType: DocField For Links, enter the DocType as range. For Select, enter list of Options, each on a new line. 對於鏈接,輸入文檔類型的範圍。對於選擇,輸入選項列表,每一個新的生產線。
463 DocType: Workflow State film 影片
464 apps/frappe/frappe/model/db_query.py +285 No permission to read {0} 沒有權限讀取{0}
465 apps/frappe/frappe/utils/nestedset.py +221 Multiple root nodes not allowed. 不允許多個根節點。
587 DocType: Print Settings PDF Page Size PDF頁面大小
588 sites/assets/js/desk.min.js +947 About 關於
589 apps/frappe/frappe/core/page/data_import_tool/exporter.py +66 For updating, you can update only selective columns. 對於更新,您可以更新只選擇列。
590 sites/assets/js/desk.min.js +965 Attach Document Print 附加文件列印
591 DocType: Social Login Keys Google Client ID Google客戶ID
592 apps/frappe/frappe/core/doctype/user/user.py +63 Adding System Manager to this User as there must be atleast one System Manager 至少要有一名系統管理員,將該用戶設定成系統管理員
593 DocType: Workflow State list-alt 列表ALT
602 DocType: User Github User ID Github上的用戶ID
603 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +246 If Document Type 如果文件類型
604 DocType: Communication Chat 聊天
605 apps/frappe/frappe/core/doctype/doctype/doctype.py +230 Fieldname {0} appears multiple times in rows {1} 列{1}中多次出現欄位名稱{0}
606 DocType: Workflow State arrow-down 箭頭向下
607 sites/assets/js/desk.min.js +874 Collapse 摺疊
608 apps/frappe/frappe/model/delete_doc.py +131 User not allowed to delete {0}: {1} 用戶不得刪除{0}:{1}
713 DocType: Workflow Document State 0 - Draft; 1 - Submitted; 2 - Cancelled 0 - 草案; 1 - 呈交; 2 - 取消
714 apps/frappe/frappe/core/page/modules_setup/modules_setup.js +5 Show or Hide Modules 顯示或隱藏模塊
715 DocType: File Data Attached To DocType 附著的DocType
716 apps/frappe/frappe/desk/page/activity/activity.js +153 Aug 八月
717 DocType: DocField Int 詮釋
718 DocType: Currency 1 Currency = [?] Fraction For e.g. 1 USD = 100 Cent 1 貨幣= [?] 如:1美元= 100美分
719 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +370 Add New Permission Rule 添加新的權限規則
727 apps/frappe/frappe/print/page/print_format_builder/print_format_builder.js +532 Edit Custom HTML 編輯自定義HTML
728 DocType: Email Alert Value Change 值變動
729 DocType: Standard Reply Standard Reply 標準回复
730 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +175 Width of the input box 寬度的輸入框的
731 DocType: UserRole UserRole 用戶角色
732 DocType: Print Settings With Letterhead 與信
733 apps/frappe/frappe/email/smtp.py +168 Invalid Outgoing Mail Server or Port 無效的發送郵件服務器或端口
898 DocType: Workflow State hand-up 手向上
899 DocType: Blog Settings Writers Introduction 作家簡介
900 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140 Select Document Type or Role to start. 選擇文件類型或角色開始。
901 sites/assets/js/desk.min.js +883 Page not found 找不到網頁
902 DocType: DocField Precision 精確
903 DocType: Website Slideshow Slideshow Items 幻燈片項目
904 apps/frappe/frappe/model/delete_doc.py +153 Cannot delete or cancel because {0} {1} is linked with {2} {3} 不能刪除或取消,因為{0} {1}以連結到{2} {3}
932 DocType: Currency How should this currency be formatted? If not set, will use system defaults 此貨幣使用何種格式?如果沒有設定,將使用系統預設值。
933 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +250 Show User Permissions 顯示用戶權限
934 apps/frappe/frappe/utils/response.py +107 You need to be logged in and have System Manager Role to be able to access backups. 您需要先登錄,並具有系統管理員角色才能夠訪問備份。
935 apps/frappe/frappe/email/bulk.py +78 This email was sent to {0}. To unsubscribe click on this link: {1} 這封電子郵件被發送到{0}。要退訂點擊此鏈接:{1}
936 sites/assets/js/desk.min.js +608 Added {0} ({1}) 添加{0}({1})
937 apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +253 Fieldtype cannot be changed from {0} to {1} in row {2} 列{2}的欄位類型不能從{0}改變為{1}
938 apps/frappe/frappe/core/doctype/doctype/doctype.py +308 Search Fields should contain valid fieldnames 搜索字段應包含有效的字段名
1116 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. 選擇文件類型來設置該用戶的權限來限制訪問。
1117 apps/frappe/frappe/website/doctype/blog_post/blog_post.py +84 Blog 部落格
1118 DocType: Workflow State hand-right 手向右
1119 DocType: Website Settings Subdomain 子域名
1120 DocType: Web Form Allow Delete 允許刪除
1121 DocType: Email Alert Message Examples 訊息範例
1122 DocType: Web Form Login Required 需要登錄
1327 DocType: User Allow user to login only before this hour (0-24) 允許用戶在幾小時前登入(0 - 24)
1328 apps/frappe/frappe/print/page/print_format_builder/print_format_builder_sidebar.html +3 Filter... 過濾器...
1329 DocType: Workflow State bold 粗體
1330 apps/frappe/frappe/website/doctype/website_settings/website_settings.py +34 {0} does not exist in row {1} {0}中不存在的行{1}
1331 DocType: Event Event Type 事件類型
1332 DocType: User Last Known Versions 最後已知版本
1333 apps/frappe/frappe/config/setup.py +115 Add / Manage Email Accounts. 新增/管理電子郵件帳戶。
1401 DocType: DocPerm Report 報告
1402 apps/frappe/frappe/templates/generators/web_form.html +31 Please login to create a new {0} 請登錄創建一個新的{0} 請登錄建立一個新的{0}
1403 apps/frappe/frappe/desk/reportview.py +69 {0} is saved {0}已儲存
1404 apps/frappe/frappe/core/doctype/user/user.py +235 User {0} cannot be renamed 用戶{0}無法重命名
1405 apps/frappe/frappe/website/doctype/website_settings/website_settings.js +17 Exported 出口
1406 DocType: DocPerm JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions. 用於應用用戶權限的文檔類型的JSON列表。如果為空,所有鏈接的文檔類型將用於應用的用戶權限。
1407 DocType: Report Ref DocType 參考的DocType
1408 apps/frappe/frappe/core/doctype/doctype/doctype.py +402 {0}: Cannot set Amend without Cancel {0} :如果沒有取消便無法設為修改
1409 sites/assets/js/form.min.js +260 Full Page 全頁
1410 DocType: DocType Is Child Table 是子表
1411 apps/frappe/frappe/utils/csvutils.py +123 {0} must be one of {1} {0}必須是{1} 之一
1412 apps/frappe/frappe/templates/emails/password_reset.html +1 Password Reset 密碼重置
1413 DocType: Workflow State chevron-left 人字形-左
1414 DocType: Bulk Email Sending 發出
1423 DocType: Feed Feed Feed
1424 DocType: ToDo Reference Type 參考類型
1425 DocType: Event Repeat On 重複在
1426 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 User Permissions 用戶權限
1427 apps/frappe/frappe/desk/page/activity/activity.js +153 Oct 十月
1428 DocType: Workflow State warning-sign 警告符號
1429 DocType: Website Settings Show title in browser window as "Prefix - title" 標題顯示在瀏覽器窗口中的“前綴 - 標題”

View file

@ -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)

View file

@ -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,

View file

@ -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,

View file

@ -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,

View file

@ -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()