This commit is contained in:
Rushabh Mehta 2014-11-28 12:00:15 +05:30
commit 2b9f6bace1
45 changed files with 2309 additions and 2238 deletions

View file

@ -808,7 +808,7 @@ def run_tests(app=None, module=None, doctype=None, verbose=False, tests=(), driv
import frappe.test_runner
from frappe.utils import sel
#sel.start(verbose, driver)
# sel.start(verbose, driver)
ret = 1
try:
@ -817,7 +817,8 @@ def run_tests(app=None, module=None, doctype=None, verbose=False, tests=(), driv
if len(ret.failures) == 0 and len(ret.errors) == 0:
ret = 0
finally:
sel.close()
pass
# sel.close()
return ret

View file

@ -9,7 +9,6 @@ from frappe import _
from frappe.model.document import Document
class CustomField(Document):
def autoname(self):
self.set_fieldname()
self.name = self.dt + "-" + self.fieldname
@ -40,9 +39,9 @@ class CustomField(Document):
self.create_property_setter()
# update the schema
if not frappe.flags.in_test:
from frappe.model.db_schema import updatedb
updatedb(self.dt)
# if not frappe.flags.in_test:
from frappe.model.db_schema import updatedb
updatedb(self.dt)
def on_trash(self):
# delete property setter entries

View file

@ -1,10 +1,16 @@
# -*- coding: utf-8 -*-
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# See license.txt
from __future__ import unicode_literals
import frappe
import unittest
test_records = frappe.get_test_records('Custom Field')
from frappe.model.db_schema import InvalidColumnName
class TestCustomField(unittest.TestCase):
pass

View file

@ -576,4 +576,6 @@ class Database:
self._conn = None
def escape(self, s):
return unicode(MySQLdb.escape_string((s or "").encode("utf-8")), "utf-8")
if isinstance(s, unicode):
s = (s or "").encode("utf-8")
return unicode(MySQLdb.escape_string(s), "utf-8")

View file

@ -14,6 +14,9 @@ class Event(Document):
def validate(self):
if self.starts_on and self.ends_on and self.starts_on > self.ends_on:
frappe.msgprint(frappe._("Event end must be after start"), raise_exception=True)
if self.starts_on and self.ends_on and int(date_diff(self.ends_on.split(" ")[0], self.starts_on.split(" ")[0])) > 0 \
and self.repeat_on == "Every Day":
frappe.msgprint(frappe._("Every day events should finish on the same day."), raise_exception=True)
def get_permission_query_conditions(user):
if not user: user = frappe.session.user
@ -71,7 +74,7 @@ def get_events(start, end, user=None, for_reminder=False):
user = frappe.session.user
roles = frappe.get_roles(user)
events = frappe.db.sql("""select name, subject, description,
starts_on, ends_on, owner, all_day, event_type, repeat_this_event, repeat_on,
starts_on, ends_on, owner, all_day, event_type, repeat_this_event, repeat_on,repeat_till,
monday, tuesday, wednesday, thursday, friday, saturday, sunday
from tabEvent where ((
(date(starts_on) between date('%(start)s') and date('%(end)s'))
@ -104,14 +107,21 @@ def get_events(start, end, user=None, for_reminder=False):
def add_event(e, date):
new_event = e.copy()
enddate = add_days(date,int(date_diff(e.ends_on.split(" ")[0], e.starts_on.split(" ")[0]))) \
if (e.starts_on and e.ends_on) else date
new_event.starts_on = date + " " + e.starts_on.split(" ")[1]
if e.ends_on:
new_event.ends_on = date + " " + e.ends_on.split(" ")[1]
new_event.ends_on = enddate + " " + e.ends_on.split(" ")[1]
add_events.append(new_event)
for e in events:
if e.repeat_this_event:
event_start, time_str = e.starts_on.split(" ")
if e.repeat_till == None or "":
repeat = "3000-01-01"
else:
repeat = e.repeat_till
if e.repeat_on=="Every Year":
start_year = cint(start.split("-")[0])
end_year = cint(end.split("-")[0])
@ -120,7 +130,7 @@ def get_events(start, end, user=None, for_reminder=False):
# repeat for all years in period
for year in range(start_year, end_year+1):
date = str(year) + "-" + event_start
if date >= start and date <= end:
if date >= start and date <= end and date <= repeat:
add_event(e, date)
remove_events.append(e)
@ -137,7 +147,7 @@ def get_events(start, end, user=None, for_reminder=False):
start_from = date
for i in xrange(int(date_diff(end, start) / 30) + 3):
if date >= start and date <= end and date >= event_start:
if date >= start and date <= end and date <= repeat and date >= event_start:
add_event(e, date)
date = add_months(start_from, i+1)
@ -152,7 +162,7 @@ def get_events(start, end, user=None, for_reminder=False):
date = add_days(start, weekday - start_weekday)
for cnt in xrange(int(date_diff(end, start) / 7) + 3):
if date >= start and date <= end and date >= event_start:
if date >= start and date <= end and date <= repeat and date >= event_start:
add_event(e, date)
date = add_days(date, 7)
@ -162,7 +172,7 @@ def get_events(start, end, user=None, for_reminder=False):
if e.repeat_on=="Every Day":
for cnt in xrange(date_diff(end, start) + 1):
date = add_days(start, cnt)
if date >= event_start and date <= end \
if date >= event_start and date <= end and date <= repeat \
and e[weekdays[getdate(date).weekday()]]:
add_event(e, date)
remove_events.append(e)

View file

@ -8,6 +8,8 @@ import frappe.defaults
import unittest
import json
from frappe.core.doctype.event.event import get_events
test_records = frappe.get_test_records('Event')
class TestEvent(unittest.TestCase):
@ -80,7 +82,7 @@ class TestEvent(unittest.TestCase):
ev = frappe.get_doc("Event", ev.name)
self.assertEquals(ev._assign, json.dumps(["test@example.com", "test1@example.com"]))
self.assertEquals(set(json.loads(ev._assign)), set(["test@example.com", "test1@example.com"]))
# close an assignment
todo = frappe.get_doc("ToDo", {"reference_type": ev.doctype, "reference_name": ev.name,
@ -94,3 +96,26 @@ class TestEvent(unittest.TestCase):
# cleanup
ev.delete()
def test_recurring(self):
ev = frappe.get_doc({
"doctype":"Event",
"subject": "_Test Event",
"starts_on": "2014-02-01",
"event_type": "Public",
"repeat_this_event": 1,
"repeat_on": "Every Year"
})
ev.insert()
ev_list = get_events("2014-02-01", "2014-02-01", "Administrator", for_reminder=True)
self.assertTrue(filter(lambda e: e.name==ev.name, ev_list))
ev_list1 = get_events("2015-01-20", "2015-01-20", "Administrator", for_reminder=True)
self.assertFalse(filter(lambda e: e.name==ev.name, ev_list1))
ev_list2 = get_events("2014-02-20", "2014-02-20", "Administrator", for_reminder=True)
self.assertFalse(filter(lambda e: e.name==ev.name, ev_list2))
ev_list3 = get_events("2015-02-01", "2015-02-01", "Administrator", for_reminder=True)
self.assertTrue(filter(lambda e: e.name==ev.name, ev_list3))

View file

@ -20,6 +20,7 @@ def execute(doctype, query=None, filters=None, fields=None, or_filters=None, doc
order_by, limit_start, limit_page_length, as_list, with_childnames, debug)
def get_form_params():
"""Stringify GET request parameters."""
data = frappe._dict(frappe.local.form_dict)
del data["cmd"]
@ -31,6 +32,9 @@ def get_form_params():
if isinstance(data.get("docstatus"), basestring):
data["docstatus"] = json.loads(data["docstatus"])
# queries must always be server side
data.query = None
return data
def compress(data):

View file

@ -10,6 +10,7 @@ import os, json
import frappe
import frappe.database
import getpass
import importlib
from frappe.model.db_schema import DbManager
from frappe.model.sync import sync_for
from frappe.utils.fixtures import sync_fixtures
@ -33,6 +34,7 @@ def install_db(root_login="root", root_password=None, db_name=None, source_sql=N
frappe.connect(db_name=db_name)
import_db_from_sql(source_sql, verbose)
remove_missing_apps()
create_auth_table()
frappe.flags.in_install_db = False
@ -207,3 +209,14 @@ def add_module_defs(app):
d.app_name = app
d.module_name = module
d.save()
def remove_missing_apps():
apps = ('frappe_subscription',)
installed_apps = frappe.get_installed_apps()
for app in apps:
if app in installed_apps:
try:
importlib.import_module(app)
except ImportError:
installed_apps.remove(app)
frappe.db.set_global("installed_apps", json.dumps(installed_apps))

View file

@ -95,7 +95,10 @@ class DatabaseQuery(object):
if isinstance(self.filters, basestring):
self.filters = json.loads(self.filters)
if isinstance(self.fields, basestring):
self.fields = json.loads(self.fields)
if self.fields == "*":
self.fields = ["*"]
else:
self.fields = json.loads(self.fields)
if isinstance(self.filters, dict):
fdict = self.filters
self.filters = []
@ -321,13 +324,12 @@ class DatabaseQuery(object):
) and not self.group_by)
if not group_function_without_group_by:
args.order_by = "`tab{0}`.`{1}` {2}".format(self.doctype,
meta.sort_field or "modified", meta.sort_order or "desc")
meta.get("sort_field") or "modified", meta.get("sort_order") or "desc")
# draft docs always on top
if meta.is_submittable:
args.order_by = "`tab{0}`.docstatus asc, ".format(self.doctype) + args.order_by
args.order_by = "`tab{0}`.docstatus asc, {1}".format(self.doctype, args.order_by)
def check_sort_by_table(self, order_by):
if "." in order_by:

View file

@ -13,6 +13,8 @@ import frappe
from frappe import _
from frappe.utils import cstr, cint
class InvalidColumnName(frappe.ValidationError): pass
type_map = {
'Currency': ('decimal', '18,6')
,'Int': ('int', '11')
@ -401,7 +403,7 @@ def validate_column_name(n):
n = n.replace(' ','_').strip().lower()
import re
if re.search("[\W]", n):
frappe.throw(_("Fieldname {0} cannot contain letters, numbers or spaces").format(n))
frappe.throw(_("Fieldname {0} cannot contain letters, numbers or spaces").format(n), InvalidColumnName)
return n

View file

@ -80,6 +80,8 @@ def make_autoname(key, doctype=''):
if not "#" in key:
key = key + ".#####"
elif not "." in key:
frappe.throw(_("Invalid naming series (. missing)") + (_(" for {0}").format(doctype) if doctype else ""))
n = ''
l = key.split('.')

View file

@ -4,4 +4,4 @@ def execute():
# clear all static web pages
frappe.delete_doc("DocType", "Website Route", force=1)
frappe.delete_doc("Page", "sitemap-browser", force=1)
frappe.db.sql("drop table `tabWebsite Route`")
frappe.db.sql("drop table if exists `tabWebsite Route`")

View file

@ -4,6 +4,7 @@
from __future__ import unicode_literals
import frappe
import frappe.utils
from jinja2 import TemplateSyntaxError
from frappe.model.document import Document
@ -16,6 +17,12 @@ class PrintFormat(Document):
self.old_doc_type = frappe.db.get_value('Print Format',
self.name, 'doc_type')
jenv = frappe.get_jenv()
try:
jenv.from_string(self.html)
except TemplateSyntaxError:
frappe.throw(frappe._("Syntax error in Jinja template"))
def on_update(self):
if hasattr(self, 'old_doc_type') and self.old_doc_type:
frappe.clear_cache(doctype=self.old_doc_type)

View file

@ -3,6 +3,7 @@
"doctype": "Print Format",
"name": "_Test Print Format 1",
"module": "core",
"doc_type": "User"
"doc_type": "User",
"html": ""
}
]

View file

@ -114,6 +114,13 @@ frappe.ui.form.save = function(frm, action, callback, btn) {
// btn: btn
// }
$(opts.btn).prop("disabled", true);
if(frappe.ui.form.is_saving) {
msgprint(__("Already saving. Please wait a few moments."));
throw "saving";
}
frappe.ui.form.is_saving = true;
return frappe.call({
freeze: true,
method: opts.method,
@ -121,6 +128,9 @@ frappe.ui.form.save = function(frm, action, callback, btn) {
callback: function(r) {
$(opts.btn).prop("disabled", false);
opts.callback && opts.callback(r);
},
always: function() {
frappe.ui.form.is_saving = false;
}
})
};

View file

@ -31,6 +31,7 @@ frappe.call = function(opts) {
args: args,
success: opts.callback,
error: opts.error,
always: opts.always,
btn: opts.btn,
freeze: opts.freeze,
show_spinner: !opts.no_spinner,
@ -126,6 +127,7 @@ frappe.request.call = function(opts) {
data = JSON.parse(data.responseText);
}
frappe.request.cleanup(opts, data);
if(opts.always) opts.always(data);
})
.done(function(data, textStatus, xhr) {
var status_code_handler = statusCode[xhr.statusCode().status];

View file

@ -525,31 +525,3 @@ frappe.views.ListView = Class.extend({
$(parent).append(repl(icon_html, {icon_class: icon_class, label: __(label) || ''}));
}
});
// embeddable
frappe.provide('frappe.views.RecordListView');
frappe.views.RecordListView = frappe.views.DocListView.extend({
init: function(doctype, wrapper, ListView) {
this.doctype = doctype;
this.wrapper = wrapper;
this.listview = new ListView(this, doctype);
this.listview.parent = this;
this.setup();
},
setup: function() {
var me = this;
me.page_length = 10;
$(me.wrapper).empty();
me.init_list();
},
get_args: function() {
var args = this._super();
$.each((this.default_filters || []), function(i, f) {
args.filters.push(f);
});
args.docstatus = args.docstatus.concat((this.default_docstatus || []));
return args;
},
});

View file

@ -5,7 +5,7 @@
body {
{% if doc.background_image %}
background: url("../{{ doc.background_image }}") repeat;
background: url("{{ doc.background_image }}") repeat;
{% elif doc.background_color %}
background-color: #{{ doc.background_color }};
background-image: none;

View file

@ -1,3 +1,5 @@
# -*- coding: utf-8 -*-
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
# MIT License. See license.txt
@ -14,3 +16,6 @@ class TestDB(unittest.TestCase):
self.assertEquals(frappe.db.get_value("User", {"name": ["<=", "Administrator"]}), "Administrator")
self.assertEquals("test1@example.com", frappe.db.get_value("User", {"name": [">", "s"]}))
self.assertEquals("test1@example.com", frappe.db.get_value("User", {"name": [">=", "t"]}))
def test_escape(self):
frappe.db.escape("香港濟生堂製藥有限公司 - IT".encode("utf-8"))

View file

@ -340,7 +340,6 @@ def read_csv_file(path):
# for japanese! #wtf
data = data.replace(chr(28), "").replace(chr(29), "")
data = reader([r.encode('utf-8') for r in data.splitlines()])
newdata = [[unicode(val, 'utf-8') for val in row] for row in data]
return newdata

View file

@ -948,7 +948,7 @@ Select Type,حدد نوع
Select User or DocType to start.,حدد العضو أو DOCTYPE للبدء.
Select a Banner Image first.,تحديد صورة بانر الأول.
Select an image of approx width 150px with a transparent background for best results.,اختر صورة من تقريبا عرض 150px مع خلفية شفافة للحصول على أفضل النتائج.
Select dates to create a new ,
Select dates to create a new ,Select dates to create a new
"Select modules to be shown (based on permission). If hidden, they will be hidden for all users.",حدد وحدات ليتم عرضها (على أساس إذن ) . إذا مخفي ، وسوف تكون مخفية لجميع المستخدمين.
Select or drag across time slots to create a new event.,حدد أو اسحب عبر فتحات الوقت لإنشاء حدث جديد.
"Select target = ""_blank"" to open in a new page.","حدد الهدف = "" _blank "" لفتح صفحة جديدة في ."
@ -1070,7 +1070,7 @@ Table,جدول
Table {0} cannot be empty,الجدول {0} لا يمكن أن تكون فارغة
Tag,بطاقة
Tag Name,علامة الاسم
Tags,به
Tags,علامات
Tahoma,تاهوما
Target,الهدف
Tasks,المهام
@ -1169,7 +1169,7 @@ User Permissions Manager,مدير ضوابط المستخدم
User Roles,أدوار المستخدم
User Tags,الكلمات المستخدم
User Type,نوع المستخدم
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ",
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ","User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. "
User Vote,تصويت المستخدم
User not allowed to delete {0}: {1},المستخدم لا يسمح لحذف {0}: {1}
User permissions should not apply for this Link,لا ينبغي تطبيق أذونات المستخدم لهذا الرابط

1 by Role حسب الصلاحية
948 Select User or DocType to start. حدد العضو أو DOCTYPE للبدء.
949 Select a Banner Image first. تحديد صورة بانر الأول.
950 Select an image of approx width 150px with a transparent background for best results. اختر صورة من تقريبا عرض 150px مع خلفية شفافة للحصول على أفضل النتائج.
951 Select dates to create a new Select dates to create a new
952 Select modules to be shown (based on permission). If hidden, they will be hidden for all users. حدد وحدات ليتم عرضها (على أساس إذن ) . إذا مخفي ، وسوف تكون مخفية لجميع المستخدمين.
953 Select or drag across time slots to create a new event. حدد أو اسحب عبر فتحات الوقت لإنشاء حدث جديد.
954 Select target = "_blank" to open in a new page. حدد الهدف = " _blank " لفتح صفحة جديدة في .
1070 Table {0} cannot be empty الجدول {0} لا يمكن أن تكون فارغة
1071 Tag بطاقة
1072 Tag Name علامة الاسم
1073 Tags به علامات
1074 Tahoma تاهوما
1075 Target الهدف
1076 Tasks المهام
1169 User Roles أدوار المستخدم
1170 User Tags الكلمات المستخدم
1171 User Type نوع المستخدم
1172 User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages. User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages.
1173 User Vote تصويت المستخدم
1174 User not allowed to delete {0}: {1} المستخدم لا يسمح لحذف {0}: {1}
1175 User permissions should not apply for this Link لا ينبغي تطبيق أذونات المستخدم لهذا الرابط

View file

@ -8,16 +8,16 @@
"000 is black, fff is white","000 ist schwarz, fff ist weiß"
2 days ago,vor 2 Tagen
"<a href=""https://en.wikipedia.org/wiki/Transport_Layer_Security"" target=""_blank"">[?]</a>","<a href=""https://en.wikipedia.org/wiki/Transport_Layer_Security"" target=""_blank""> [?] </ a>"
"<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>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>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>"
<b>new</b> <i>type of document</i>,<b> neue </ b> <i> Art von Dokument </ i>
"<i>document type...</i>, e.g. <b>customer</b>","<i> Dokumententyp ... </ i>, z. B. <b> Kunden </ b>"
<i>e.g. <strong>(55 + 434) / 4</strong> or <strong>=Math.sin(Math.PI/2)</strong>...</i>,<i> zB <strong> (55 + 434) / 4 </ strong> oder = <strong> Math.sin (Math.PI / 2) </ strong> ... </ i>
<i>module name...</i>,<i> Modulnamen ... </ i>
<i>text</i> <b>in</b> <i>document type</i>,<i> Text </ i> <b> in </ b> <i> Dokumenttyp </ i>
A user can be permitted to multiple records of the same DocType.,Ein Benutzer kann die Genehmigung für mehrere Datensätze des gleichen DocType haben.
About,Info
About Us Settings,Über uns Einstellungen
About Us Team Member,Über uns Teammitglied
About,Information
About Us Settings,"""Über uns"" Einstellungen"
About Us Team Member,"""Über uns"" Teammitglied"
Action,Aktion
"Actions for workflow (e.g. Approve, Cancel).","Aktionen für Workflows (z. B. genehmigen , Abbruch) ."
Add,Hinzufügen
@ -27,45 +27,45 @@ Add Attachments,Anhänge hinzufügen
Add Bookmark,Lesezeichen hinzufügen
Add CSS,CSS hinzufügen
Add Column,Spalte hinzufügen
Add Filter,
Add Filter,Filter hinzufügen
Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,Google Analytics-ID hinzufügen: z. B. UA-89XXX57-1. Weitere Informationen finden Sie bei Google Analytics.
Add Message,Nachricht hinzufügen
Add New Permission Rule,Neue Berechtigungsregel hinzufügen
Add Reply,Antwort hinzufügen
Add Tag,
Add Total Row,Gesamtzeile hinzufügen
Add Tag,Stichwort hinzufügen
Add Total Row,Summenzeile hinzufügen
Add a New Role,Neue Rolle hinzufügen
Add a banner to the site. (small banners are usually good),Der Website ein Werbebanner hinzufügen. (kleine Banner sind in der Regel gut)
Add all roles,Alle Rollen hinzufügen
Add attachment,Anhang hinzufügen
Add code as &lt;script&gt;,Code als <script> hinzfügen
Add comment,
Add custom javascript to forms.,"Fügen Sie benutzerdefinierte Javascript, um Formen ."
Add fields to forms.,Fügen Sie Felder zu Formularen .
Add code as &lt;script&gt;,Code als hinzufügen &lt;script&gt;
Add comment,Kommentar hinzufügen
Add custom javascript to forms.,Hinzufügen von benutzerdefiniertem Javascript für Formulare.
Add fields to forms.,HInzufügen von Feldern zu Formularen .
Add multiple rows,In mehreren Reihen
Add new row,Neue Zeile hinzufügen
"Add the name of <a href=""http://google.com/webfonts"" target=""_blank"">Google Web Font</a> e.g. ""Open Sans""","Den Namen von <a href=""http://google.com/webfonts"" target=""_blank"">Google Web Font</a> hinzufügen, z. B. ""Open Sans"""
Add to To Do,Zur Aufgabenliste hinzufügen
Add to To Do List Of,In den Aufgabenliste von DO
Added {0},
Added {0} ({1}),Hinzugefügt {0} ({1})
Adding System Manager to this User as there must be atleast one System Manager,Hinzufügen von System-Manager zu dieser Benutzer da muss atleast ein System-Manager sein
Add to To Do List Of,Zur Aufgabenliste hinzufügen von
Added {0},{0} hinzugefügt
Added {0} ({1}),{0} ({1}) hinzugefügt
Adding System Manager to this User as there must be atleast one System Manager,"System-Manager Rolle zu diesem Benutzer hinzugefügt, da mindestens ein System-Manager vorhanden sein muss"
Additional Info,Weitere Informationen
Additional Permissions,Zusätzliche Berechtigungen
"Additional filters based on User Permissions, having:",
"Additional filters based on User Permissions, having:","Zusätzliche Filter basierend auf den Benutzerberechtigungen, die folgendes beinhalten:"
Address,Adresse
Address Line 1,Adresszeile 1
Address Line 2,Adresszeile 2
Address Title,Adresse Titel
Address and other legal information you may want to put in the footer.,"Adresse und andere rechtliche Informationen, die Sie in die Fußzeile setzen können."
Adds a custom field to a DocType,Fügt einem Dokumententyp ein benutzerdefiniertes Feld hinzu
Adds a custom script (client or server) to a DocType,Fügt ein benutzerdefiniertes Skript (Client oder Server) zu einem Dokumententyp hinzu
Adds a custom script (client or server) to a DocType,Fügt ein benutzerdefiniertes Skript (Client oder Server) einem Dokumententyp hinzu
Admin,Admin
Administrator,
All,
Administrator,Administrator
All,All
All Applications,Alle Anwendungen
All Day,Ganzer Tag
All Tables (Main + Child Tables),
All Tables (Main + Child Tables),All Tables (Main + Child Tables)
All customizations will be removed. Please confirm.,Alle Anpassungen werden entfernt. Bitte bestätigen Sie .
"All possible Workflow States and roles of the workflow. <br>Docstatus Options: 0 is""Saved"", 1 is ""Submitted"" and 2 is ""Cancelled""","Alle möglichen Workflow-Status und Rollen des Workflows. Dokumentenstatus-Optionen: 0 bedeutet „Gespeichert“, 1 „Abgesendet“ und 2 „Abgebrochen“"
Allow Import,Import zulassen
@ -89,33 +89,33 @@ Anyone Can Read,Jeder kann lesen
Anyone Can Write,Jeder kann schreiben
"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Neben Rollenbasierte Berechtigungsregeln , können Sie Benutzerberechtigungen auf der Grundlage DocTypes gelten ."
"Apart from System Manager, roles with 'Set User Permissions' right can set permissions for other users for that Document Type.","Neben System-Manager können Rollen mit Recht "" Set User -Berechtigungen "" die Berechtigungen für andere Benutzer für diesen Dokumenttyp festgelegt ."
App Name,App- Namen
App Name,App-Name
App not found,App nicht gefunden
Application Installer,Application Installer
Applications,Anwendungen
Apply Style,Stil anwenden
Apply User Permissions,Anwenden von Benutzerberechtigungen
Apply User Permissions of these Document Types,
Apply User Permissions of these Document Types,Apply User Permissions of these Document Types
Are you sure you want to delete the attachment?,Soll die Anlage wirklich gelöscht werden?
Arial,Arial
"As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User.","Als bewährte Methode , nicht den gleichen Satz von Berechtigungs Vorschrift auf unterschiedliche Rollen zuzuweisen. Stattdessen legen mehrere Rollen auf den gleichen Benutzer ."
Ascending,Aufsteigend
Assign To,Zuweisen zu
Assign To,Zuordnen zu
Assigned By,Zugewiesen von
Assigned To,zugewiesen an
Assigned To Fullname,Zuständig Fullname
Assigned To,zugeordnet zu
Assigned To Fullname,zugeordnet zu (vollständiger Name)
Assigned To/Owner,Zuständig / Inhaber
Assigned to {0},
Assignment Complete,
Assignment Status Changed,Einsatzstatus geändert
Assigned to {0},zugeordnet zu {0}
Assignment Complete,Zuordnung vollständig
Assignment Status Changed,Zuordnungsstatus geändert
Assignments,Zuordnungen
Attach,Anhängen
Attach .csv file to import data,
Attach .csv file to import data,.csv Datei für den Datenimport anhängen
Attach Document Print,Dokumentendruck anhängen
Attach as web link,Bringen Sie als Web-Link
Attach as web link,Web-Link anhängen
Attached To DocType,Angehängt an Dokumententyp
Attached To Name,Angehängt an Namen
Attachments,Anhänge:
Attached To Name,Angehängt an Name
Attachments,Anhänge
Auto Email Id,Auto-E-Mail-ID
Auto Name,Automatische Benennung
Auto generated,Automatisch erstellt
@ -146,10 +146,10 @@ Bulk Email,Spam
Bulk Email records.,Spam-Aufzeichnungen
Bulk email limit {0} crossed,Bulk E-Mail Grenze {0} gekreuzt
Button,Schaltfläche
By,Nach
By,von
Calculate,Berechnen
Calendar,Kalender
Can not edit Read Only fields,
Can not edit Read Only fields,Can not edit Read Only fields
Cancel,Abbrechen
Cancelled,Abgebrochen
"Cannot Edit {0} directly: To edit {0} properties, create / update {1}, {2} and {3}","Kann nicht bearbeiten {0} direkt: Zum {0} Eigenschaften bearbeiten, erstellen / aktualisieren {1}, {2} und {3}"
@ -163,8 +163,8 @@ Cannot change {0},Kann {0} nicht ändern
Cannot delete or cancel because {0} {1} is linked with {2} {3},"Kann nicht gelöscht oder kündigen, weil {0} {1} ist mit verbunden {2} {3}"
Cannot delete {0} as it has child nodes,"Kann nicht gelöscht werden {0} , wie es untergeordnete Knoten hat"
Cannot edit standard fields,Kann Standardfelder nicht bearbeiten
Cannot edit templated page,
Cannot link cancelled document: {0},
Cannot edit templated page,Cannot edit templated page
Cannot link cancelled document: {0},Cannot link cancelled document: {0}
Cannot map because following condition fails: ,"Kann nicht zuordnen, da folgende Bedingung nicht:"
Cannot open instance when its {0} is open,"Kann nicht geöffnet werden , wenn sein Beispiel {0} offen ist"
Cannot open {0} when its instance is open,"Kann nicht öffnen {0}, wenn ihre Instanz geöffnet ist"
@ -191,8 +191,8 @@ City,Stadt
Classic,Klassisch
Clear Cache,Cache löschen
Clear all roles,Deaktivieren Sie alle Rollen
Click on File -&gt; Save As,
Click on Save,
Click on File -&gt; Save As,Click on File -&gt; Save As
Click on Save,Click on Save
Click on row to view / edit.,Klicken Sie auf die Reihe zu bearbeiten / anzeigen.
Client,Kunde
Client-side formats are now deprecated,Client-side-Formate werden jetzt veraltet
@ -209,7 +209,7 @@ Comment Date,Kommentardatum
Comment Docname,Kommentar Dokumentenname
Comment Doctype,Kommentar Dokumententyp
Comment Time,Kommentarzeit
Comment Type,
Comment Type,Comment Type
Comments,Kommentare
Communication,Kommunikation
Communication Medium,Kommunikationsmedium
@ -219,7 +219,7 @@ Complaint,Reklamation
Complete By,Abschließen bis
Completed,Abgeschlossen
Condition,Zustand
Confirm,
Confirm,Confirm
Contact Us Settings,Einstellungen „Kontaktieren Sie uns“
"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."
Content,Inhalt
@ -228,7 +228,7 @@ Content in markdown format that appears on the main side of your page,"Inhalt in
Content web page.,Inhalt der Webseite
Copy,Kopie
Copyright,Urheberrecht
Core,Kern
Core,Kernkompenten
Could not connect to outgoing email server,"Konnte nicht , um ausgehende E-Mail -Server verbinden"
Could not find {0},Konnte nicht gefunden {0}
Count,zählen
@ -238,7 +238,7 @@ Create a new {0},Erstellen Sie eine neue {0}
Created By,Erstellt von
Created Custom Field {0} in {1},Erstellt benutzerdefiniertes Feld {0} in {1}
Created Customer Issue,Kundenproblem erstellt
Created On,
Created On,Created On
Created Opportunity,Gelegenheit erstellt
Created Support Ticket,Support-Ticket erstellt
Creation / Modified By,Creation / Geändert von
@ -291,17 +291,17 @@ Description and Status,Beschreibung und Status-
Description for page header.,Beschreibung für Seitenkopf.
Desktop,Desktop
Details,Details
Dialog box to select a Link Value,
Dialog box to select a Link Value,Dialog box to select a Link Value
Did not add,Haben Sie nicht hinzufügen
Did not cancel,Nicht storniert
Did not find {0} for {0} ({1}),Haben Sie nicht für {0} {0} ({1})
Did not load,Haben Sie nicht laden
Did not remove,Haben Sie nicht entfernen
Did not save,Nicht gespeichert
Did not set,
Did not set,Did not set
"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.","Dieses Dokument kann unterschiedliche „Status“ haben, zum Beispiel „Offen“, „Genehmigung ausstehend“ usw."
Disable Customer Signup link in Login page,Kunden-Anmeldelink auf der Anmeldeseite deaktivieren
Disable Report,
Disable Report,Disable Report
Disable Signup,Anmelden deaktivieren
Disabled,Deaktiviert
Display,Anzeige
@ -320,27 +320,27 @@ DocType or Field,Dokumententyp oder Feld
Doclist JSON,DocList JSON
Docname,docname
Document,Dokument
Document Status,
Document Status,Document Status
Document Status transition from ,Document Status Übergang von
Document Status transition from {0} to {1} is not allowed,Dokumentstatus Übergang von {0} {1} ist nicht erlaubt
Document Type,Dokumenttyp
Document Types,
Document Types,Document Types
Document is only editable by users of role,Das Dokument kann nur von Benutzern der Rolle bearbeitet werden
Documentation,Dokumentation
Documents,Dokumente
Download,Herunterladen
Download Backup,Backup herunterladen
Download Template,Vorlage herunterladen
Download a template for importing a table.,
Download a template for importing a table.,Download a template for importing a table.
Download link for your backup will be emailed on the following email address:,Download-Link für die Datensicherung wird auf der folgenden E-Mail -Adresse gesendet werden :
Download with data,
Download with data,Download with data
Drag to sort columns,Spalten durch Ziehen sortieren
Due Date,Fälligkeitsdatum
Duplicate name {0} {1},Doppelte Namen {0} {1}
Dynamic Link,Dynamic Link
ERPNext Demo,ERPNext Demo
Edit,Bearbeiten
Edit Filter,
Edit Filter,Filter bearbeiten
Edit Permissions,Berechtigungen bearbeiten
Editable,Editierbar
Email,E-Mail
@ -363,9 +363,9 @@ Email sent to {0},E-Mail an {0} gesendet
Email...,E-Mail...
Emails are muted,E-Mails sind stumm geschaltet
Embed image slideshows in website pages.,Diashows in Internet-Seiten einbetten.
Enable,ermöglichen
Enable,aktivieren
Enable Comments,aktivieren Kommentare
Enable Report,
Enable Report,Bericht aktivieren
Enable Scheduled Jobs,Aktivieren Geplante Jobs
Enabled,Aktiviert
Ends on,Endet am
@ -374,9 +374,9 @@ Enter Value,Wert eingeben
Enter at least one permission row,Geben Sie mindestens eine Erlaubnis Reihe
"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 <a href=""#Form/Customize Form/Customize Form"">Customize Form</a>.","Standardwertfelder (Schlüssel) und Werte eingeben. Wenn Sie mehrere Werte für ein Feld hinzufügen, wird der erste ausgewählt. Diese Standardwerte werden auch zum Festlegen der Berechtigungsregeln für die  „Zuordnung“ verwendet. Eine Auflistung der Felder finden Sie unter <a href=""#Form/Customize Form/Customize Form"">Formular anpassen</a>."
"Enter keys to enable login via Facebook, Google, GitHub.","Geben Sie Tasten Login über Facebook , Google, GitHub zu ermöglichen."
Equals,Equals
Equals,entspricht
Error,Fehler
"Error generating PDF, attachment sent as HTML","Fehler beim Generieren PDF, als HTML-Anhang gesendet"
"Error generating PDF, attachment sent as HTML","Fehler beim Generieren des PDF, Anhang wird als HTML gesendet"
Error: Document has been modified after you have opened it,"Fehler: Dokument wurde geändert, nachdem Sie es geöffnet haben"
Event,Ereignis
Event Datetime,Event- Datetime
@ -386,17 +386,17 @@ Event Roles,Ereignis-Rollen
Event Type,Ereignistyp
Event User,Ereignis-Benutzer
Event end must be after start,Event- Ende muss nach Anfang sein
Events,Geschehen
Events,Ereignisse
Events In Today's Calendar,Heutige Ereignisse im Kalender
Every Day,Täglich
Every Month,Monatlich
Every Week,Wöchentlich
Every Year,Jährlich
Every Day,täglich
Every Month,monatlich
Every Week,wöchentlich
Every Year,jährlich
Everyone,Jeder
Example:,Beispiel:
Expand,erweitern
Export,Export
Export all rows in CSV fields for re-upload. This is ideal for bulk-editing.,
Export all rows in CSV fields for re-upload. This is ideal for bulk-editing.,Export all rows in CSV fields for re-upload. This is ideal for bulk-editing.
Export not allowed. You need {0} role to export.,Export nicht erlaubt. Sie müssen {0} Rolle zu exportieren.
Exported,Exportierte
"Expression, Optional","Expression, Optional"
@ -427,7 +427,7 @@ Fieldtype cannot be changed from {0} to {1} in row {2},Feldtyp kann nicht von {0
File,Datei
File Data,Dateidaten
File Name,Dateiname
File Name: &lt;your filename&gt;.csv<br />\ Save as type: Text Documents (*.txt)<br />\ Encoding: UTF-8,
File Name: &lt;your filename&gt;.csv<br />\ Save as type: Text Documents (*.txt)<br />\ Encoding: UTF-8,File Name: &lt;your filename&gt;.csv<br />\ Save as type: Text Documents (*.txt)<br />\ Encoding: UTF-8
File Size,Dateigröße
File URL,Datei-URL
File not attached,Datei nicht angebracht
@ -440,9 +440,9 @@ Find {0} in {1},Finden Sie in {0} {1}
First Name,Vorname
Float,Fließkomma
Float Precision,Float-Genauigkeit
Fold,
Fold can not be at the end of the form,
Fold must come before a labelled Section Break,
Fold,Fold
Fold can not be at the end of the form,Fold can not be at the end of the form
Fold must come before a labelled Section Break,Fold must come before a labelled Section Break
Font (Heading),Schriftart (Überschrift)
Font (Text),Schriftart (Text)
Font Size,Schriftgröße
@ -453,7 +453,7 @@ Footer Background,Footer Hintergrund
Footer Items,Inhalte der Fußzeile
Footer Text,Footer Text
For DocType,für DocType
"For Links, enter the DocType as rangeFor Select, enter list of Options separated by comma",
"For Links, enter the DocType as rangeFor Select, enter list of Options separated by comma","For Links, enter the DocType as rangeFor Select, enter list of Options separated by comma"
"For comparative filters, start with","Bei Vergleichsfiltern, beginnen mit"
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.,"Wenn Sie beispielsweise 'INV004' abbrechen und ändern, wird daraus ein neues Dokument 'INV004-1'. Dies hilft Ihnen, den Überblick über jede Änderung zu behalten."
For ranges,Für Bereiche
@ -492,19 +492,19 @@ Group Name,Gruppenname
Group Title,Gruppe Titel
Group Type,Gruppentyp
Groups,Gruppen
Guest,
Guest,Guest
HTML for header section. Optional,HTML für Header-Bereich . fakultativ
Header,Kopfzeile
Heading,Überschrift
Heading Text As,Überschriftstext als
Help,Hilfe
Help on Search,Hilfe zur Suche
Help: Importing non-English data in Microsoft Excel,
Help: Importing non-English data in Microsoft Excel,Help: Importing non-English data in Microsoft Excel
Helvetica Neue,Helvetica Neu
Hidden,Ausgeblendet
Hide Actions,Aktionen ausblenden
Hide Copy,Kopie ausblenden
Hide Details,
Hide Details,Hide Details
Hide Heading,Überschrift ausblenden
Hide Toolbar,Symbolleiste ausblenden
Hide the sidebar,Ausblenden der Seitenleiste
@ -514,7 +514,7 @@ History,Historie
Home Page,Homepage
Home Page is Products,Homepage ist Produkte
ID (name) of the entity whose property is to be set,"ID (Name) der Einheit, deren Eigenschaft festgelegt werden muss"
ID field is required to edit values using Report. Please select the ID field using the Column Picker,
ID field is required to edit values using Report. Please select the ID field using the Column Picker,ID field is required to edit values using Report. Please select the ID field using the Column Picker
Icon,Symbol
Icon will appear on the button,Symbol wird auf der Schaltfläche angezeigt
"If a Role does not have access at Level 0, then higher levels are meaningless.","Wenn eine Rolle hat keinen Zugriff auf Level 0 ist, dann höheren Ebenen sind bedeutungslos ."
@ -523,10 +523,10 @@ Icon will appear on the button,Symbol wird auf der Schaltfläche angezeigt
"If image is selected, color will be ignored (attach first)","Wenn das Bild ausgewählt ist, wird die Farbe ignoriert (zuerst anhängen)"
If non standard port (e.g. 587),Wenn kein Standardport (z. B. 587)
"If these instructions where not helpful, please add in your suggestions on GitHub Issues.","Werden diese Hinweise nicht geholfen , wo , fügen Sie bitte in Ihre Anregungen auf GitHub Themen."
"If you are inserting new records (overwrite not checked) \ and if you have submit permission, the record will be submitted.",
"If you are uploading a child table (for example Item Price), the all the entries of that table will be deleted (for that parent record) and new entries will be made.",
"If you are inserting new records (overwrite not checked) \ and if you have submit permission, the record will be submitted.","If you are inserting new records (overwrite not checked) \ and if you have submit permission, the record will be submitted."
"If you are uploading a child table (for example Item Price), the all the entries of that table will be deleted (for that parent record) and new entries will be made.","If you are uploading a child table (for example Item Price), the all the entries of that table will be deleted (for that parent record) and new entries will be made."
"If you set this, this Item will come in a drop-down under the selected parent.","Wenn Sie diese Einstellung , wird dieser Artikel in einer Drop-Down unter der ausgewählten Mutter kommen ."
Ignore Encoding Errors,
Ignore Encoding Errors,Ignore Encoding Errors
Ignore User Permissions,Ignorieren von Benutzerberechtigungen
"Ignoring Item {0}, because a group exists with the same name!","Ignorieren Artikel {0} , weil eine Gruppe mit dem gleichen Namen existiert!"
Image,Bild
@ -534,12 +534,12 @@ Image Link,Link zum Bild
Import,Import
Import / Export Data,Import / Export Data
Import / Export Data from .csv files.,Import / Export von Daten aus . Csv -Dateien.
Import Data,
Import Data,Import Data
Import Failed!,Import fehlgeschlagen !
Import Successful!,Importieren Sie erfolgreich!
In,in
In Dialog,Im Dialog
"In Excel, save the file in CSV (Comma Delimited) format",
"In Excel, save the file in CSV (Comma Delimited) format","In Excel, save the file in CSV (Comma Delimited) format"
In Filter,Im Filter
In List View,In der Listenansicht
In Report Filter,Im Berichtsfilter
@ -558,7 +558,7 @@ Insert Row,Zeile einfügen
Insert Style,Stil einfügen
Install Applications.,Anwendungen installieren .
Installed,Installierte
Installer,Installer
Installer,Installationen
Int,Int
Integrations,Integrationen
Introduce your company to the website visitor.,Präsentieren Sie Ihr Unternehmen dem Besucher der Website.
@ -582,7 +582,7 @@ Is Standard,Ist Standard
Is Submittable,Ist einreichbar
Is Task,ist Aufgaben
Item cannot be added to its own descendents,Artikel kann nicht auf seine eigenen Nachkommen hinzugefügt werden
"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.",
"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions."
JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript- Format: frappe.query_reports [' REPORT '] = {}
Javascript,JavaScript
Javascript to append to the head section of the page.,"JavaScript, das dem Kopfbereich der Seite angehängt wird."
@ -590,19 +590,19 @@ Keep a track of all communications,Alle Kommunikationen verfolgen
Key,Schlüssel
Label,Etikett
Label Help,Etikettierungshilfe
Label and Type,Label- und Typ
Label and Type,Etikett und Typ
Label is mandatory,Etikett ist obligatorisch
Landing Page,Landingpage
Landing Page,Zielseite
Language,Sprache
Language preference for user interface (only if available).,Spracheinstellung für die Benutzeroberfläche (nur wenn vorhanden).
"Language, Date and Time settings","Sprache , Datum und Uhrzeit -Einstellungen"
Last IP,Letzte IP
Last Login,Letzte Anmeldung
Last Name,Familienname
Last Updated By,
Last Updated On,
Last Updated By,zuletzt aktualisiert von
Last Updated On,zuletzt aktualisiert am
Lato,Lato
Leave blank to repeat always,"Leer lassen , immer wiederholen"
Leave blank to repeat always,Freilassen um es immer zu wiederholen
Left,Links
Letter,Brief
Letter Head,Briefkopf
@ -612,54 +612,54 @@ Level,Ebene
"Level 0 is for document level permissions, higher levels for field level permissions.","Ebene 0 gilt für Dokumentenberechtigungen, höhere Ebenen gelten für Berechtigungen auf Feldebene."
Like,wie
Link,Link
"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Link, ist die Homepage der Website . Standard- Verbindungen (Index , Login, Artikel , Blog , über, Kontakt)"
"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Link zur Homepage der Website . Standard-Links (Index, Anmeldung, Artikel, Blog, Über uns, Kontakt)"
Link to other pages in the side bar and next section,Link zu anderen Seiten in der Seitenleiste und im nächsten Abschnitt
Link to the page you want to open,"Link zu der Seite, die Sie öffnen möchten"
Linked In Share,LinkedIn-Freigabe
Linked With,Verknüpft mit
List,Liste
List a document type,Liste einen Dokumenttyp
List of Web Site Forum's Posts.,Liste der Web-Site Forum Beiträge .
List a document type, Dokumenttyp auflisten
List of Web Site Forum's Posts.,Liste der Forum Beiträge der Website.
List of patches executed,Liste der ausgeführten Patches
Loading,Ladevorgang läuft
Loading Report,Report wird geladen
Loading Report,Bericht wird geladen
Loading...,Wird geladen ...
Localization,Lokalisierung
Location,Lage
Location,Standort
Log of Scheduler Errors,Protokoll der Scheduler-Fehler
Log of error on automated events (scheduler).,Melden Sie sich an automatisierten Fehlerereignisse ( Scheduler ) .
Login After,Anmelden nach
Login Before,Anmelden vor
Login Id,Anmelde-ID
Login not allowed at this time,Anmelden zu diesem Zeitpunkt nicht erlaubt
Login not allowed at this time,Anmeldung zu diesem Zeitpunkt nicht erlaubt
Logout,Abmelden
Long Text,Langtext
Low,Niedrig
Lucida Grande,Lucida Grande
Mail Password,Mail-Passwort
Main Section,Hauptbereich
Make New,
Make a new,Machen Sie einen neuen
Make a new record,Einen neuen Rekord
Make a new {0},
Make New,Hinzufügen
Make a new,Hinzufügen
Make a new record,Hinzufügen eines neuen Eintrags
Make a new {0},Hinzufügen eines
Male,Männlich
Manage cloud backups on Dropbox,Verwalten Cloud -Backups auf Dropbox
Manage uploaded files.,Hochgeladene Dateien verwalten .
Manage cloud backups on Dropbox,Dropbox Backups verwalten
Manage uploaded files.,Hochgeladene Dateien verwalten.
Mandatory,Obligatorisch
Mandatory fields required in {0},Pflichtfelder in erforderlich {0}
Mandatory fields required in {0},Pflichtfelder erforderlich in {0}
Master,Stamm
Max Attachments,Höchstanzahl Anhänge
Max width for type Currency is 100px in row {0},Max. Breite für Typ Währung 100px in Zeile {0}
Maximum Attachment Limit for this record reached.,
Maximum Attachment Limit for this record reached.,Maximum Attachment Limit for this record reached.
"Meaning of Submit, Cancel, Amend","Bedeutung von Senden, Abbrechen, Abändern"
Medium,Mittel
"Menu items in the Top Bar. For setting the color of the Top Bar, go to <a href=""#Form/Style Settings"">Style Settings</a>","Menüeinträge in der oberen Symbolleiste. Um die Farbe der obersten Symbolleiste festzulegen, öffnen Sie die  <a href=""#Form/Style Settings"">Stileinstellungen</a>"
Merge with existing,
Merge with existing,Merge with existing
Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Zusammenführung ist nur möglich zwischen Konzern -zu- Gruppen-oder Blatt- Node -to- Node -Blatt
Message,Nachricht
Message Examples,Beispiele Nachricht
Messages,Nachrichten
Messages from everyone,
Messages from everyone,Messages from everyone
Method,Methode
Middle Name (Optional),Weiterer Vorname (optional)
Misc,Sonst.
@ -673,7 +673,7 @@ Module Name,Modulname
Module Not Found,Modul nicht gefunden
Modules Setup,Module -Setup
Monday,Montag
Monochrome,
Monochrome,Monochrome
More,Weiter
More content for the bottom of the page.,Mehr Inhalt für den unteren Teil der Seite.
Move Down: {0},Nach unten : {0}
@ -694,7 +694,7 @@ Naming,Benennung
Naming Series mandatory,Benennungsreihenfolge obligatorisch
Nested set error. Please contact the Administrator.,Verschachtelte Satz Fehler. Bitte kontaktieren Sie das Administrator.
New,Neu
New Name,
New Name,New Name
New Password,Neues Passwort
New Record,Neuer Datensatz
New comment on {0} {1},Neuer Kommentar auf {0} {1}
@ -707,7 +707,7 @@ Next State,Nächster Status
Next actions,Nächste Aktionen
No,Nein
No Action,Keine Aktion
No Communication tagged with this {0} yet.,
No Communication tagged with this {0} yet.,No Communication tagged with this {0} yet.
No Copy,Keine Kopie
No Permissions set for this criteria.,Keine Berechtigungen für diese Kriterien gesetzt.
No Report Loaded. Please use query-report/[Report Name] to run a report.,"Kein Bericht geladen Benutzen Sie den Abfragebericht/[Berichtname], um einen Bericht auszuführen."
@ -720,18 +720,18 @@ No further records,Keine weiteren Datensätze
No one,Niemand
No permission to '{0}' {1},Keine Berechtigung um '{0} ' {1}
No permission to edit,Keine Berechtigung zum Bearbeiten
No permission to read {0},
No permission to read {0},No permission to read {0}
No permission to write / remove.,Keine Berechtigung zum Schreiben/Entfernen.
No records tagged.,Keine Einträge markiert.
No template found at path: {0},Keine Vorlage an Pfad gefunden: {0}
No {0} found,
No {0} found,No {0} found
No {0} permission,Keine Berechtigung {0}
None,Keine
None: End of Workflow,Keine: Ende des Workflows
Not Found,Nicht gefunden
Not Linked to any record.,Nicht mit einem Datensatz verknüpft.
Not Permitted,Nicht gestattet
Not Published,
Not Published,Not Published
Not Submitted,advertisement
Not a valid Comma Separated Value (CSV File),Keine gültige Comma Separated Value (CSV -Datei)
Not allowed,Nicht erlaubt
@ -747,7 +747,7 @@ Not in Developer Mode! Set in site_config.json,Nicht in Developer -Modus! In sit
Not permitted,Nicht zulässig
"Note: For best results, images must be of the same size and width must be greater than height.",Hinweis: Für optimale Ergebnisse müssen die Bilder die gleiche Größe haben und die Breite muss größer als die Höhe sein.
Note: Other permission rules may also apply,Hinweis: Andere Berechtigungsregeln können ebenfalls gelten
Note: fields having empty value for above criteria are not filtered out.,
Note: fields having empty value for above criteria are not filtered out.,Note: fields having empty value for above criteria are not filtered out.
Nothing to show,Nichts anzuzeigen
Nothing to show for this selection,Nichts für diese Auswahl zeigen
Notification Count,Benachrichtigungsanzahl
@ -763,11 +763,11 @@ Only allowed {0} rows in one import,Nur darf {0} Zeilen in einer Import-
Oops! Something went wrong,Hoppla! Etwas ist schiefgelaufen
Open,Offen
Open Count,Offene Graf
Open Link,
Open Link,Open Link
Open Sans,Open Sans
Open Source Web Applications for the Web,Open-Source-Web-Anwendungen für das Web
Open a module or tool,Öffnen Sie ein Modul oder Werkzeug
Open this saved file in Notepad,
Open this saved file in Notepad,Open this saved file in Notepad
Open {0},Offene {0}
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-ID."
Optional: Always send to these ids. Each email id on a new row,Optional: Immer an diesen IDs. Jede E-Mail-ID in einer neuen Zeile
@ -786,7 +786,7 @@ Other,Sonstige
Outgoing Email Settings,Ausgehende E-Mail -Einstellungen
Outgoing Mail Server,Postausgangsserver
Outgoing Mail Server not specified,Postausgangsserver nicht angegeben
Overwrite,
Overwrite,Overwrite
Owner,Eigentümer
PDF Page Size,PDF-Seitengröße
PDF Settings,PDF-Einstellungen
@ -803,13 +803,13 @@ Page Role,Seitenrolle
Page Text,Seitentext
Page content,Seiteninhalt
Page not found,Seite nicht gefunden
Page to show on the website,
Page to show on the website,Page to show on the website
Page url name (auto-generated),Seiten-URL -Namen ( automatisch generiert)
Parent,
Parent,Parent
Parent Label,Übergeordnete Bezeichnung
Parent Post,Eltern- Beitrag
Parent Web Page,
Parent Website Group,
Parent Web Page,Parent Web Page
Parent Website Group,Parent Website Group
Parent Website Route,Eltern- Webseite Routen
Participants,Teilnehmer
Password,Passwort
@ -818,7 +818,7 @@ Password reset instructions have been sent to your email,Kennworts Hinweise wurd
Patch,Patch
Patch Log,Patch-Protokoll
Percent,Prozent
Performing hardcore import process,
Performing hardcore import process,Performing hardcore import process
Perm Level,Ber.-Ebene
Permanently Cancel {0}?,Dauerhaft Abbrechen {0} ?
Permanently Submit {0}?,Dauerhaft Absenden {0} ?
@ -847,7 +847,7 @@ Please attach a file or set a URL,Fügen Sie eine Datei hinzu oder legen Sie ein
Please do not change the rows above {0},Bitte nicht die Zeilen oben ändern {0}
Please enable pop-ups,Bitte aktivieren Sie Pop-ups
Please enter Event's Date and Time!,Bitte geben Sie das Datum und Ereignis -Zeit!
Please enter both your email and message so that we \ can get back to you. Thanks!,
Please enter both your email and message so that we \ can get back to you. Thanks!,Please enter both your email and message so that we \ can get back to you. Thanks!
Please enter email address,Bitte geben Sie E-Mail -Adresse
Please enter some text!,Bitte geben Sie einen Text!
Please enter title!,Bitte Titel !
@ -855,10 +855,10 @@ Please login to Upvote!,"Bitte loggen Sie sich ein , um upvote !"
Please make sure that there are no empty columns in the file.,"Stellen Sie sicher, dass es keine leeren Spalten in der Datei gibt."
Please refresh to get the latest document.,"Aktualisieren Sie, um zum neuesten Dokument zu gelangen."
Please reply above this line or remove it if you are replying below it,"Bitte antworten Sie mir über dieser Linie oder entfernen Sie sie, wenn Sie es sind unten Antworten"
Please save before attaching.,
Please save before attaching.,Please save before attaching.
Please select a file or url,Wählen Sie eine Datei oder URL aus
Please select atleast 1 column from {0} to sort,Bitte wählen Sie atleast 1 Spalte {0} zu sortieren
Please set filters,
Please set filters,Please set filters
Please set {0} first,Bitte setzen Sie {0} zuerst
Please specify,Geben Sie Folgendes an
Please specify 'Auto Email Id' in Setup > Outgoing Email Settings,Bitte geben 'Auto Email Id' in Setup> Ausgehende E-Mail -Einstellungen
@ -890,7 +890,7 @@ Print Settings,Druckeinstellungen
Print Style,Druckstil
Print Style Preview,Print Style Vorschau
Print Width,Druckbreite
"Print Width of the field, if the field is a column in a table",
"Print Width of the field, if the field is a column in a table","Print Width of the field, if the field is a column in a table"
"Print with Letterhead, unless unchecked in a particular Document","Drucken mit Briefkopf, es sei denn, unkontrolliert in einem bestimmten Dokument"
Print...,Drucken...
Printing and Branding,Druck-und Branding-
@ -911,7 +911,7 @@ Query Options,Abfrageoptionen
Query Report,Abfragebericht
Query must be a SELECT,Abfrage muss eine AUSWAHL sein
Quick Help for Setting Permissions,Schnellinfo zum Festlegen von Berechtigungen
Quick Help for User Permissions,Schnelle Hilfe für Benutzerberechtigungen
Quick Help for User Permissions,Schnellinfo für Benutzerberechtigungen
Re-open,Re -open
Read,Lesen
Read Only,Schreibgeschützt
@ -933,12 +933,12 @@ Registered but disabled.,"Registriert, aber deaktiviert."
Registration Details Emailed.,Per E-Mail zugesendete Details zur Anmeldung
Reload Page,Seite neu laden
Remove Bookmark,Lesezeichen entfernen
Remove Filter,
Remove Filter,Remove Filter
Remove all customizations?,Alle Anpassungen entfernen ?
Removed {0},
Removed {0},Removed {0}
Rename,umbenennen
Rename many items by uploading a .csv file.,Benennen Sie viele Elemente durch Hochladen einer . CSV-Datei.
Rename {0},
Rename {0},Rename {0}
Rename...,Umbenennen...
Repeat On,Wiederholen am
Repeat Till,Wiederholen bis
@ -948,32 +948,32 @@ Report,Bericht
Report Builder,Bericht-Generator
Report Builder reports are managed directly by the report builder. Nothing to do.,Berichte des Berichts-Generators werden direkt von diesem verwaltet. Nichts zu tun.
Report Hide,Bericht ausblenden
Report Manager,
Report Manager,Berichte Verantwortlicher
Report Name,Berichtsname
Report Type,Berichtstyp
Report an Issue,Ein Problem melden
Report cannot be set for Single types,Bericht kann nicht für Einzel- Typen festgelegt werden
Report this issue,Dieses Problem melden
Report was not saved (there were errors),Bericht wurde nicht gespeichert (es waren Fehler vorhanden)
Report {0} is disabled,
Represents a User in the system.,
Report {0} is disabled,Report {0} is disabled
Represents a User in the system.,Represents a User in the system.
Represents the states allowed in one document and role assigned to change the state.,Stellt die in einem Dokument erlaubten Status und die zugewiesene Rolle zum Ändern des Status dar.
Reqd,Erf
Reset Password Key,Passwort zurücksetzen Key
Reset Permissions for {0}?,Zurücksetzen von Berechtigungen für {0} ?
Response,Antwort
Restore Original Permissions,
Restore Original Permissions,Restore Original Permissions
Restrict IP,IP beschränken
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)
Right,Rechts
Role,Rolle
Role Name,Rollenname
Role Permissions Manager,Rollenberechtigungen -Manager
Role Permissions Manager,Festlegen Rollenberechtigungen
Role and Level,Rolle und Ebene
Role exists,Rolle existiert
Roles,Rollen
Roles Assigned,Zugewiesene Rollen
Roles Assigned To User,Rollen Zugewiesen an Benutzer
Roles Assigned To User,Zugewiesene Rollen
Roles HTML,Rollen HTML
Roles can be set for users from their User page.,Rollen können für die Nutzer von ihrer Benutzerseite eingestellt werden.
Root {0} cannot be deleted,Wurzel {0} kann nicht gelöscht werden
@ -985,24 +985,24 @@ Run scheduled jobs only if checked,"Führen Sie geplante Aufträge nur, wenn üb
Run the report first,Führen Sie den Bericht zuerst
SMTP Server (e.g. smtp.gmail.com),SMTP-Server (z. B. smtp.gmail.com)
Sales,Vertrieb
Sales Manager,
Sales User,
Sales Manager,Verkauf Verantwortlicher
Sales User,Verkauf Mitarbeiter
Same file has already been attached to the record,Gleiche Datei wurde bereits dem Datensatz hinzugefügt
Sample,Beispiel
Sample,Muster
Saturday,Samstag
Save,Sichern
Saved!,
Scheduler Log,Scheduler-Protokoll
Save,Speichern
Saved!,gespeichert!
Scheduler Log,Zeitplan Protokoll
Script,Skript
Script Report,Skriptbericht
Script Type,Skripttyp
Script to attach to all web pages.,"Skript, das allen Webseiten hinzugefügt wird."
Search,Suchen
Search,Suche
Search Fields,Suchfelder
Search Filter,
Search Link,
Search Filter,Search Filter
Search Link,Suche Link
Search in a document type,Suche in einem Dokumenttyp
Search or type a command,Suchen oder geben Sie einen Befehl
Search or type a command,Suche oder geben Sie einen Befehl ein
Section Break,Abschnittswechsel
Security,Sicherheit
Security Settings,Sicherheitseinstellungen
@ -1011,61 +1011,61 @@ Select All,Alle auswählen
Select Attachments,Anhänge auswählen
Select Document Type,Dokumenttyp auswählen
Select Document Type or Role to start.,Dokumenttyp oder Rolle für den Anfang auswählen.
Select Document Types,
Select Document Types to set which User Permissions are used to limit access.,
Select Document Types,Dokumententypen auswählen
Select Document Types to set which User Permissions are used to limit access.,Dokumententypen auswählen um die Benutzerberechtigungen einzustellen um den Zugriff einzuschränken.
Select Print Format,Druckformat auswählen
Select Report Name,Berichtsname auswählen
Select Role,Rolle auswählen
Select To Download:,Wählen Sie Zum Herunterladen:
Select To Download:,Auswahl zum Download:
Select Type,Typ auswählen
Select User or DocType to start.,Wählen Sie Benutzer oder DocType zu starten.
Select a Banner Image first.,Wählen Sie zuerst eine Bannerbild aus.
Select an image of approx width 150px with a transparent background for best results.,Für beste Ergebnisse wählen Sie ein Bild mit ca. 150px Breite und transparentem Hintergrund aus.
Select dates to create a new ,
"Select modules to be shown (based on permission). If hidden, they will be hidden for all users.","Wählen Sie Module gezeigt werden (basierend auf Genehmigung) . Wenn ausgeblendet , werden sie für alle Benutzer ausgeblendet werden."
Select or drag across time slots to create a new event.,Wählen oder ziehen Sie zum Erstellen eines neuen Ereignisses über die Zeitpunkte.
"Select target = ""_blank"" to open in a new page.","Select target = "" _blank"" in einer neuen Seite zu öffnen."
Select dates to create a new ,Wählen Sie Termine zur Neuerstellung von
"Select modules to be shown (based on permission). If hidden, they will be hidden for all users.","Wählen Sie aus, welche Module gezeigt werden sollen (basierend auf Benutzerrechten). Sofern ausgeblendet werden soll, werden diese für alle Benutzer ausgeblendet."
Select or drag across time slots to create a new event.,Wählen oder ziehen Sie zum Erstellen eines neuen Ereignisses über die Zeitabschnitte.
"Select target = ""_blank"" to open in a new page.","Wählen Sie target = "" _blank"" aus, um es in einer neuen Seite zu öffnen."
Select the label after which you want to insert new field.,"Wählen Sie das Etikett/die Kennzeichnung aus, nach dem Sie ein neues Feld einfügen möchten."
Select {0},
Select {0},Auswahl von {0}
Send,Absenden
Send Alert On,Senden Alert On
Send As Email,Senden als E-Mail
Send Email,E-Mail absenden
Send Email Print Attachments as PDF (Recommended),Senden Sie E-Mail-Anhänge als PDF drucken (empfohlen)
Send Me A Copy,Kopie an mich senden
Send Print as PDF,Senden Drucken als PDF
Send Print as PDF,Ausdruck als PDF versenden
Send alert if date matches this field's value,"Benachrichtigung senden, wenn das Datum der Wert dieses Feldes entspricht"
Send alert if this field's value changes,"Alarm senden, wenn Wert dieses Feld"
Send an email reminder in the morning,E-Mail-Erinnerung am Morgen senden
Send download link of a recent backup to System Managers,Senden Download-Link von einer aktuellen Sicherung im System Manager
Send enquiries to this email address,Senden Sie Anfragen an diese E-Mail -Adresse
Sender,Absender
Sent,Sent
Sent,verschickt
Sent Mail,Abgesendete Nachrichten
Sent Quotation,Angebot absenden
Sent or Received,Gesendet oder empfangen
Series,Serie
Series {0} already used in {1},Serie {0} bereits verwendet {1}
Server,Server
Server & Credentials,Server & Credentials
Server Error: Please check your server logs or contact tech support.,Server-Fehler: Bitte überprüfen Sie Ihre Server-Logs oder Kontakt -Tech-Unterstützung .
Server & Credentials,Server & Zugangsdaten
Server Error: Please check your server logs or contact tech support.,Server-Fehler: Bitte überprüfen Sie Ihre Server-Logs oder kontaktieren Sie Ihre IT-Unterstützung.
Session Expired. Logging you out,Sitzung abgelaufen. Abmeldung läuft
Session Expiry,Sitzungsende
Session Expiry in Hours e.g. 06:00,Sitzungsende in Stunden z.B. 06:00
Session Expiry must be in format {0},Gültig Session müssen im Format {0}
Session Expiry must be in format {0},Gültig Sitzungen müssen im Format {0} sein
Set,Set
Set Banner from Image,Banner von Bild einrichten
Set Link,Link- Set
Set Login and Password if authentication is required.,"Anmeldung und Passwort festlegen, wenn eine Authentifizierung erforderlich ist."
Set Only Once,Nur einmal festgelegt
Set Password,Set Password
Set Password,Passwort festlegen
Set Permissions on Document Types and Roles,Festlegen von Berechtigungen für Dokumenttypen und Rollen
Set Permissions per User,Festlegen von Berechtigungen pro Benutzer
Set User Permissions,Set User Berechtigungen
Set Value,Wert festlegen
"Set default format, page size, print style etc.","Legen Standardformat, Seitengröße, Druckstil usw."
"Set default format, page size, print style etc.","Standardformat, Seitengröße, Druckstil usw. festlegen"
Set numbering series for transactions.,Stellen Sie die Nummerierung Serie für Transaktionen.
Set outgoing mail server.,Stellen ausgehende Mail-Server.
Set outgoing mail server.,ausgehenden Mail-Server festlegen.
"Set your background color, font and image (tiled)","Legen Sie Hintergrundfarbe, Schriftart und Bild (Kachel) fest"
Settings,Einstellungen
Settings for About Us Page.,"Einstellungen für die Seite ""Über uns""."
@ -1083,8 +1083,8 @@ Short Name,Kürzel
Shortcut,Verknüpfung
Show / Hide Modules,Module anzeigen / ausblenden
Show Print First,Ausdruck zuerst anzeigen
Show Tags,Tags anzeigen
Show User Permissions,
Show Tags,Stichworte anzeigen
Show User Permissions,Benutzerberechtigungen anzeigen
Show or hide modules globally.,Anzeigen oder verbergen Module weltweit .
Show rows with zero values,Zeilen mit Nullwerten anzeigen
Show tags,Tags anzeigen
@ -1132,12 +1132,12 @@ Submitted Document cannot be converted back to draft. Transition row {0},Eingere
Success,Erfolg
Suggestion,Vorschlag
Sunday,Sonntag
Support Manager,
Support Team,
Support Manager,Support Verantwortlicher
Support Team,Support-Team
Switch to Website,Zur Webseite wechseln
Sync Inbox,Posteingang synchronisieren
System,System
System Manager,
System Manager,System Verantwortlicher
System Settings,Systemeinstellungen
System User,Systembenutzer
System and Website Users,System- und Webseiten-Nutzer
@ -1152,7 +1152,7 @@ Target,Ziel
Tasks,Aufgaben
Team Members,Teammitglieder
Team Members Heading,Teammitglieder Kopfzeile
Template Path,
Template Path,Template Path
Test Runner,Runner testen
Text,Text
Text Align,Text ausrichten
@ -1161,7 +1161,7 @@ Thank you for your message,Vielen Dank für Ihre Nachricht
The name of your company / website as you want to appear on browser title bar. All pages will have this as the prefix to the title.,"Der Name Ihrer Firma/Website, wie er in der Titelzeile des Browsers angezeigt werden soll. Bei allen Seiten ist  dies das Präfix des Titels."
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 ."
Then By (optional),Dann nach (optional)
There can be only one Fold in a form,
There can be only one Fold in a form,There can be only one Fold in a form
There should remain at least one System Manager,Es sollte mindestens eine System-Manager bleiben
There were errors,Es gab Fehler
There were errors while sending email. Please try again.,Es gab Fehler beim Versenden der E-Mail. Bitte versuchen Sie es erneut .
@ -1170,8 +1170,8 @@ There were errors while sending email. Please try again.,Es gab Fehler beim Vers
These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,"Diese Werte werden automatisch bei Transaktionen aktualisiert. Außerdem sind sie nützlich, um die Berechtigungen dieses Benutzers bei Transaktionen mit diesen Werten zu beschränken."
"These will also be set as default values for those links, if only one such permission record is defined.","Diese werden auch als Standardwerte für diese Links gesetzt werden , wenn nur eine solche Erlaubnis Datensatz definiert."
Third Party Authentication,Third Party Authentication
This field will appear only if the fieldname defined here has value OR the rules are true (examples): <br>myfieldeval:doc.myfield=='My Value'<br>eval:doc.age>18,
This form does not have any input,
This field will appear only if the fieldname defined here has value OR the rules are true (examples): <br>myfieldeval:doc.myfield=='My Value'<br>eval:doc.age>18,This field will appear only if the fieldname defined here has value OR the rules are true (examples): <br>myfieldeval:doc.myfield=='My Value'<br>eval:doc.age>18
This form does not have any input,This form does not have any input
This goes above the slideshow.,Dies kommt über der Diaschau.
This is PERMANENT action and you cannot undo. Continue?,"Dies ist eine DAUERHAFTE Aktion, die Sie nicht rückgängig machen können. Fortsetzen?"
"This is a standard format. To make changes, please copy it make make a new format.","Dies ist ein Standard-Format. Um Änderungen vorzunehmen, kopieren Sie bitte es zu machen, ein neues Format."
@ -1210,7 +1210,7 @@ Tweet will be shared via your user account (if specified),Tweet wird über Ihr B
Twitter Share,Twitter-Freigabe
Twitter Share via,Twitter-Freigabe über
Type,Typ
"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",
"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions."
Unable to find attachment {0},Kann nicht finden Befestigung {0}
Unable to load: {0},Kann nicht geladen werden: {0}
Unable to open attached file. Please try again.,Kann nicht angehängte Datei zu öffnen. Bitte versuchen Sie es erneut .
@ -1225,12 +1225,12 @@ Update,Aktualisierung
Update Field,Feld aktualisieren
Update Value,Wert aktualisieren
Updated,Aktualisiert
Upload,laden
Upload,Hochladen
Upload Attachment,Anhang hochladen
Upload CSV file containing all user permissions in the same format as Download.,"Laden Sie CSV-Datei, die alle Benutzerberechtigungen im gleichen Format als Download."
Upload a file,Datei hochladen
Upload and Import,Upload und Import
Upload and Sync,Upload und Sync
Upload and Import,Hochladen und Importieren
Upload and Sync,Hochladen und Synchronsieren
Uploading...,Upload läuft...
Upvotes,upvotes
Use TLS,Verwenden Sie TLS
@ -1238,17 +1238,17 @@ User,Benutzer
User Cannot Create,Benutzer kann nicht erstellen
User Cannot Search,Benutzer kann nicht suchen
User Defaults,Profil Defaults
User ID of a Blogger,
User ID of a Blogger,User ID of a Blogger
User ID of a blog writer.,Benutzer-ID eines Blogs Schriftsteller.
User Image,Benutzerbild
User Permission,Benutzerberechtigung
User Permission DocTypes,
User Permission DocTypes,User Permission DocTypes
User Permissions,Benutzerberechtigungen
User Permissions Manager,Benutzerrechte -Manager
User Roles,Benutzerrollen
User Tags,Benutzer-Tags
User Type,Benutzertyp
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ",
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ","User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. "
User Vote,User- Vote
User not allowed to delete {0}: {1},"Benutzer nicht erlaubt, zu löschen {0}: {1}"
User permissions should not apply for this Link,Benutzerrechte sollten nicht für dieses Link- Anwendung
@ -1257,7 +1257,7 @@ User {0} cannot be disabled,Benutzer {0} kann nicht deaktiviert werden
User {0} cannot be renamed,Benutzer {0} kann nicht umbenannt werden
User {0} does not exist,Benutzer {0} existiert nicht
UserRole,Benutzerrolle
Users,
Users,Users
Users and Permissions,Benutzer und Berechtigungen
Users with role {0}:,Benutzer mit Rolle {0}:
Valid Login id required.,Gültige Login-ID erforderlich.
@ -1271,26 +1271,26 @@ Value missing for,Wert fehlt für
Verdana,Verdana
Version,Version
Version restored,Version wiederhergestellt
View Details,
View Details,View Details
Visit,Besuch
Warning,Warnung
Warning: This Print Format is in old style and cannot be generated via the API.,WARNUNG: Diese Druckformat ist im alten Stil und kann nicht über die API generiert werden.
Web Page,Webseite
Web Site Forum Page.,Web-Site Forum Seite .
Website,Webseite
Website Group,Website- Gruppe
Website Manager,
Website,Website
Website Group,Website-Gruppe
Website Manager,Website-Administrator
Website Route,Website Route
Website Route Permission,Website- Route-Permission
Website Script,Webseitenskript
Website Settings,Webseiteneinstellungen
Website Slideshow,Webseite Diaschau
Website Slideshow Item,Webseite Diaschau Artikel
Website User,Webseitenbenutzer
Website Route Permission,Website-Route-Permission
Website Script,Website-Skript
Website Settings,Website-Einstellungen
Website Slideshow,Website-Diaschau
Website Slideshow Item,Website-Diaschau-Artikel
Website User,Website-Benutzer
Wednesday,Mittwoch
Welcome email sent,Willkommen E-Mail verschickt
Welcome email sent,Willkommensnachricht verschickt
"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Wenn Sie ein Dokument ändern , nachdem Sie auf Abbrechen und speichern Sie sie , wird es eine neue Nummer , die eine Version der alten Nummer ist zu bekommen."
While uploading non English files ensure that the encoding is UTF-8.,
While uploading non English files ensure that the encoding is UTF-8.,While uploading non English files ensure that the encoding is UTF-8.
Width,Breite
Will be used in url (usually first name).,Wird in URL verwendet (in der Regel Vorname).
With Groups,mit Gruppen
@ -1317,28 +1317,28 @@ Writers Introduction,Einführung des Autors
Year,Jahr
Yes,Ja
Yesterday,Gestern
You are not allowed to create / edit reports,"Sie sind nicht berechtigt, bearbeiten / Berichte erstellen"
You are not allowed to export the data of: {0}. Downloading empty template.,"Sie sind nicht berechtigt , die Daten zu exportieren: {0}. Herunterladen leer Vorlage."
You are not allowed to export this report,"Sie sind nicht berechtigt , diesen Bericht zu exportieren"
You are not allowed to print this document,"Sie sind nicht berechtigt , dieses Dokument zu drucken"
You are not allowed to send emails related to this document,"Es ist nicht erlaubt , E-Mails zu diesem Dokument im Zusammenhang senden"
You can also drag and drop attachments,
You are not allowed to create / edit reports,Sie sind nicht berechtigt Berichte zu erstellen / zu bearbeiten
You are not allowed to export the data of: {0}. Downloading empty template.,Sie haben nicht die Berechtigung die Daten von {0} zu exportieren. Es wird eine leere Vorlage heruntergeladen.
You are not allowed to export this report,Sie haben nicht die Berechtigung diesen Bericht zu exportieren
You are not allowed to print this document,Sie haben nicht die Berechtigung dieses Dokument zu drucken
You are not allowed to send emails related to this document,Sie haben nicht die Berechtigung E-Mails die diesem Dokument verknüpft sind zu versenden
You can also drag and drop attachments,Sie können auch Anhänge ziehen und ablegen (drag & drop)
"You can change Submitted documents by cancelling them and then, amending them.","Sie können eingereichten Unterlagen durch Löschen und sie dann , zur Änderung der sie zu ändern."
You can use Customize Form to set levels on fields.,"Sie können Formular anpassen , um Ebenen auf Feldern eingestellt ."
You can use wildcard %,Sie können Platzhalter% verwenden
You cannot install this app,Sie können diese App installieren
You don't have access to Report: {0},
You don't have permission to get a report on: {0},
You have unsaved changes in this form. Please save before you continue.,Sie haben noch nicht gespeicherte Änderungen in dieser Form .
You can use wildcard %,Sie können als Platzhalter % verwenden
You cannot install this app,Sie können diese App nicht installieren
You don't have access to Report: {0},Sie haben keinen Zugriff auf den Bericht: {0}
You don't have permission to get a report on: {0},Sie haben keine Benutzerberechtigung um einen einen Bericht zu {0} zu erhalten
You have unsaved changes in this form. Please save before you continue.,Sie haben noch nicht gespeicherte Änderungen in diesem Formular.
You need to be logged in and have System Manager Role to be able to access backups.,"Sie müssen eingeloggt sein und über System-Manager -Rolle an der Lage, Backups zugreifen."
You need write permission to rename,Sie benötigen Schreibberechtigung umbenennen
You seem to have written your name instead of your email. \ Please enter a valid email address so that we can get back.,
You need write permission to rename,Sie benötigen Schreibberechtigung zur Umbennung
You seem to have written your name instead of your email. \ Please enter a valid email address so that we can get back.,Es scheint als hätten Sie Ihren Namen anstatt Ihrer Email-Adresse angegeben. Bitte geben Sie Ihre Emailadresse ein damit wir zurückkehren können.
"Your download is being built, this may take a few moments...","Ihr Download wird aufgebaut, dies kann einige Sekunden dauern ..."
[Label]:[Field Type]/[Options]:[Width],[Label]:[Field Type]/[Options]:[Width]
[No Subject],
[No Subject],[No Subject]
[Optional] Send the email X days in advance of the specified date. 0 equals same day.,[Optional] Senden Sie die E-Mail-X Tage vor dem angegebenen Datum. 0 entspricht selben Tag.
[no content],
[unknown sender],
[no content],[no content]
[unknown sender],[unknown sender]
add your own CSS (careful!),fügen Sie Ihr eigenes CSS hinzu (Vorsicht!)
adjust,anpassen
align-center,zentriert ausrichten
@ -1418,14 +1418,14 @@ indent-right,Einzug rechts
info-sign,Info-Zeichen
is not allowed.,nicht zulässig
italic,kursiv
leaf,leaf
leaf,Blatt
lft,li
list,Liste
list-alt,Liste-Alt
lock,sperren
lowercase,Kleinbuchstaben
magnet,Magnet
map-marker,Map-Marker
map-marker,Kartenmarkierungen
memcached is not working / stopped. Please start memcached for best results.,Memcached nicht funktioniert / gestoppt. Bitte starten Sie Memcached für beste Ergebnisse.
minus,Minus
minus-sign,Minuszeichen
@ -1469,7 +1469,7 @@ screenshot,Screenshot
search,suchen
share,teilen
share-alt,teilen-alt
shopping-cart,Einkaufswagen
shopping-cart,Warenkorb
signal,Signal
star,Stern
star-empty,Stern-leer

1 by Role von Rolle
8 000 is black, fff is white 000 ist schwarz, fff ist weiß
9 2 days ago vor 2 Tagen
10 <a href="https://en.wikipedia.org/wiki/Transport_Layer_Security" target="_blank">[?]</a> <a href="https://en.wikipedia.org/wiki/Transport_Layer_Security" target="_blank"> [?] </ a>
11 <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>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>
12 <b>new</b> <i>type of document</i> <b> neue </ b> <i> Art von Dokument </ i>
13 <i>document type...</i>, e.g. <b>customer</b> <i> Dokumententyp ... </ i>, z. B. <b> Kunden </ b>
14 <i>e.g. <strong>(55 + 434) / 4</strong> or <strong>=Math.sin(Math.PI/2)</strong>...</i> <i> zB <strong> (55 + 434) / 4 </ strong> oder = <strong> Math.sin (Math.PI / 2) </ strong> ... </ i>
15 <i>module name...</i> <i> Modulnamen ... </ i>
16 <i>text</i> <b>in</b> <i>document type</i> <i> Text </ i> <b> in </ b> <i> Dokumenttyp </ i>
17 A user can be permitted to multiple records of the same DocType. Ein Benutzer kann die Genehmigung für mehrere Datensätze des gleichen DocType haben.
18 About Info Information
19 About Us Settings Über uns Einstellungen "Über uns" Einstellungen
20 About Us Team Member Über uns Teammitglied "Über uns" Teammitglied
21 Action Aktion
22 Actions for workflow (e.g. Approve, Cancel). Aktionen für Workflows (z. B. genehmigen , Abbruch) .
23 Add Hinzufügen
27 Add Bookmark Lesezeichen hinzufügen
28 Add CSS CSS hinzufügen
29 Add Column Spalte hinzufügen
30 Add Filter Filter hinzufügen
31 Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information. Google Analytics-ID hinzufügen: z. B. UA-89XXX57-1. Weitere Informationen finden Sie bei Google Analytics.
32 Add Message Nachricht hinzufügen
33 Add New Permission Rule Neue Berechtigungsregel hinzufügen
34 Add Reply Antwort hinzufügen
35 Add Tag Stichwort hinzufügen
36 Add Total Row Gesamtzeile hinzufügen Summenzeile hinzufügen
37 Add a New Role Neue Rolle hinzufügen
38 Add a banner to the site. (small banners are usually good) Der Website ein Werbebanner hinzufügen. (kleine Banner sind in der Regel gut)
39 Add all roles Alle Rollen hinzufügen
40 Add attachment Anhang hinzufügen
41 Add code as &lt;script&gt; Code als <script> hinzfügen Code als hinzufügen &lt;script&gt;
42 Add comment Kommentar hinzufügen
43 Add custom javascript to forms. Fügen Sie benutzerdefinierte Javascript, um Formen . Hinzufügen von benutzerdefiniertem Javascript für Formulare.
44 Add fields to forms. Fügen Sie Felder zu Formularen . HInzufügen von Feldern zu Formularen .
45 Add multiple rows In mehreren Reihen
46 Add new row Neue Zeile hinzufügen
47 Add the name of <a href="http://google.com/webfonts" target="_blank">Google Web Font</a> e.g. "Open Sans" Den Namen von <a href="http://google.com/webfonts" target="_blank">Google Web Font</a> hinzufügen, z. B. "Open Sans"
48 Add to To Do Zur Aufgabenliste hinzufügen
49 Add to To Do List Of In den Aufgabenliste von DO Zur Aufgabenliste hinzufügen von
50 Added {0} {0} hinzugefügt
51 Added {0} ({1}) Hinzugefügt {0} ({1}) {0} ({1}) hinzugefügt
52 Adding System Manager to this User as there must be atleast one System Manager Hinzufügen von System-Manager zu dieser Benutzer da muss atleast ein System-Manager sein System-Manager Rolle zu diesem Benutzer hinzugefügt, da mindestens ein System-Manager vorhanden sein muss
53 Additional Info Weitere Informationen
54 Additional Permissions Zusätzliche Berechtigungen
55 Additional filters based on User Permissions, having: Zusätzliche Filter basierend auf den Benutzerberechtigungen, die folgendes beinhalten:
56 Address Adresse
57 Address Line 1 Adresszeile 1
58 Address Line 2 Adresszeile 2
59 Address Title Adresse Titel
60 Address and other legal information you may want to put in the footer. Adresse und andere rechtliche Informationen, die Sie in die Fußzeile setzen können.
61 Adds a custom field to a DocType Fügt einem Dokumententyp ein benutzerdefiniertes Feld hinzu
62 Adds a custom script (client or server) to a DocType Fügt ein benutzerdefiniertes Skript (Client oder Server) zu einem Dokumententyp hinzu Fügt ein benutzerdefiniertes Skript (Client oder Server) einem Dokumententyp hinzu
63 Admin Admin
64 Administrator Administrator
65 All All
66 All Applications Alle Anwendungen
67 All Day Ganzer Tag
68 All Tables (Main + Child Tables) All Tables (Main + Child Tables)
69 All customizations will be removed. Please confirm. Alle Anpassungen werden entfernt. Bitte bestätigen Sie .
70 All possible Workflow States and roles of the workflow. <br>Docstatus Options: 0 is"Saved", 1 is "Submitted" and 2 is "Cancelled" Alle möglichen Workflow-Status und Rollen des Workflows. Dokumentenstatus-Optionen: 0 bedeutet „Gespeichert“, 1 „Abgesendet“ und 2 „Abgebrochen“
71 Allow Import Import zulassen
89 Anyone Can Write Jeder kann schreiben
90 Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes. Neben Rollenbasierte Berechtigungsregeln , können Sie Benutzerberechtigungen auf der Grundlage DocTypes gelten .
91 Apart from System Manager, roles with 'Set User Permissions' right can set permissions for other users for that Document Type. Neben System-Manager können Rollen mit Recht " Set User -Berechtigungen " die Berechtigungen für andere Benutzer für diesen Dokumenttyp festgelegt .
92 App Name App- Namen App-Name
93 App not found App nicht gefunden
94 Application Installer Application Installer
95 Applications Anwendungen
96 Apply Style Stil anwenden
97 Apply User Permissions Anwenden von Benutzerberechtigungen
98 Apply User Permissions of these Document Types Apply User Permissions of these Document Types
99 Are you sure you want to delete the attachment? Soll die Anlage wirklich gelöscht werden?
100 Arial Arial
101 As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User. Als bewährte Methode , nicht den gleichen Satz von Berechtigungs Vorschrift auf unterschiedliche Rollen zuzuweisen. Stattdessen legen mehrere Rollen auf den gleichen Benutzer .
102 Ascending Aufsteigend
103 Assign To Zuweisen zu Zuordnen zu
104 Assigned By Zugewiesen von
105 Assigned To zugewiesen an zugeordnet zu
106 Assigned To Fullname Zuständig Fullname zugeordnet zu (vollständiger Name)
107 Assigned To/Owner Zuständig / Inhaber
108 Assigned to {0} zugeordnet zu {0}
109 Assignment Complete Zuordnung vollständig
110 Assignment Status Changed Einsatzstatus geändert Zuordnungsstatus geändert
111 Assignments Zuordnungen
112 Attach Anhängen
113 Attach .csv file to import data .csv Datei für den Datenimport anhängen
114 Attach Document Print Dokumentendruck anhängen
115 Attach as web link Bringen Sie als Web-Link Web-Link anhängen
116 Attached To DocType Angehängt an Dokumententyp
117 Attached To Name Angehängt an Namen Angehängt an Name
118 Attachments Anhänge: Anhänge
119 Auto Email Id Auto-E-Mail-ID
120 Auto Name Automatische Benennung
121 Auto generated Automatisch erstellt
146 Bulk Email records. Spam-Aufzeichnungen
147 Bulk email limit {0} crossed Bulk E-Mail Grenze {0} gekreuzt
148 Button Schaltfläche
149 By Nach von
150 Calculate Berechnen
151 Calendar Kalender
152 Can not edit Read Only fields Can not edit Read Only fields
153 Cancel Abbrechen
154 Cancelled Abgebrochen
155 Cannot Edit {0} directly: To edit {0} properties, create / update {1}, {2} and {3} Kann nicht bearbeiten {0} direkt: Zum {0} Eigenschaften bearbeiten, erstellen / aktualisieren {1}, {2} und {3}
163 Cannot delete or cancel because {0} {1} is linked with {2} {3} Kann nicht gelöscht oder kündigen, weil {0} {1} ist mit verbunden {2} {3}
164 Cannot delete {0} as it has child nodes Kann nicht gelöscht werden {0} , wie es untergeordnete Knoten hat
165 Cannot edit standard fields Kann Standardfelder nicht bearbeiten
166 Cannot edit templated page Cannot edit templated page
167 Cannot link cancelled document: {0} Cannot link cancelled document: {0}
168 Cannot map because following condition fails: Kann nicht zuordnen, da folgende Bedingung nicht:
169 Cannot open instance when its {0} is open Kann nicht geöffnet werden , wenn sein Beispiel {0} offen ist
170 Cannot open {0} when its instance is open Kann nicht öffnen {0}, wenn ihre Instanz geöffnet ist
191 Classic Klassisch
192 Clear Cache Cache löschen
193 Clear all roles Deaktivieren Sie alle Rollen
194 Click on File -&gt; Save As Click on File -&gt; Save As
195 Click on Save Click on Save
196 Click on row to view / edit. Klicken Sie auf die Reihe zu bearbeiten / anzeigen.
197 Client Kunde
198 Client-side formats are now deprecated Client-side-Formate werden jetzt veraltet
209 Comment Docname Kommentar Dokumentenname
210 Comment Doctype Kommentar Dokumententyp
211 Comment Time Kommentarzeit
212 Comment Type Comment Type
213 Comments Kommentare
214 Communication Kommunikation
215 Communication Medium Kommunikationsmedium
219 Complete By Abschließen bis
220 Completed Abgeschlossen
221 Condition Zustand
222 Confirm Confirm
223 Contact Us Settings Einstellungen „Kontaktieren Sie uns“
224 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.
225 Content Inhalt
228 Content web page. Inhalt der Webseite
229 Copy Kopie
230 Copyright Urheberrecht
231 Core Kern Kernkompenten
232 Could not connect to outgoing email server Konnte nicht , um ausgehende E-Mail -Server verbinden
233 Could not find {0} Konnte nicht gefunden {0}
234 Count zählen
238 Created By Erstellt von
239 Created Custom Field {0} in {1} Erstellt benutzerdefiniertes Feld {0} in {1}
240 Created Customer Issue Kundenproblem erstellt
241 Created On Created On
242 Created Opportunity Gelegenheit erstellt
243 Created Support Ticket Support-Ticket erstellt
244 Creation / Modified By Creation / Geändert von
291 Description for page header. Beschreibung für Seitenkopf.
292 Desktop Desktop
293 Details Details
294 Dialog box to select a Link Value Dialog box to select a Link Value
295 Did not add Haben Sie nicht hinzufügen
296 Did not cancel Nicht storniert
297 Did not find {0} for {0} ({1}) Haben Sie nicht für {0} {0} ({1})
298 Did not load Haben Sie nicht laden
299 Did not remove Haben Sie nicht entfernen
300 Did not save Nicht gespeichert
301 Did not set Did not set
302 Different "States" this document can exist in. Like "Open", "Pending Approval" etc. Dieses Dokument kann unterschiedliche „Status“ haben, zum Beispiel „Offen“, „Genehmigung ausstehend“ usw.
303 Disable Customer Signup link in Login page Kunden-Anmeldelink auf der Anmeldeseite deaktivieren
304 Disable Report Disable Report
305 Disable Signup Anmelden deaktivieren
306 Disabled Deaktiviert
307 Display Anzeige
320 Doclist JSON DocList JSON
321 Docname docname
322 Document Dokument
323 Document Status Document Status
324 Document Status transition from Document Status Übergang von
325 Document Status transition from {0} to {1} is not allowed Dokumentstatus Übergang von {0} {1} ist nicht erlaubt
326 Document Type Dokumenttyp
327 Document Types Document Types
328 Document is only editable by users of role Das Dokument kann nur von Benutzern der Rolle bearbeitet werden
329 Documentation Dokumentation
330 Documents Dokumente
331 Download Herunterladen
332 Download Backup Backup herunterladen
333 Download Template Vorlage herunterladen
334 Download a template for importing a table. Download a template for importing a table.
335 Download link for your backup will be emailed on the following email address: Download-Link für die Datensicherung wird auf der folgenden E-Mail -Adresse gesendet werden :
336 Download with data Download with data
337 Drag to sort columns Spalten durch Ziehen sortieren
338 Due Date Fälligkeitsdatum
339 Duplicate name {0} {1} Doppelte Namen {0} {1}
340 Dynamic Link Dynamic Link
341 ERPNext Demo ERPNext Demo
342 Edit Bearbeiten
343 Edit Filter Filter bearbeiten
344 Edit Permissions Berechtigungen bearbeiten
345 Editable Editierbar
346 Email E-Mail
363 Email... E-Mail...
364 Emails are muted E-Mails sind stumm geschaltet
365 Embed image slideshows in website pages. Diashows in Internet-Seiten einbetten.
366 Enable ermöglichen aktivieren
367 Enable Comments aktivieren Kommentare
368 Enable Report Bericht aktivieren
369 Enable Scheduled Jobs Aktivieren Geplante Jobs
370 Enabled Aktiviert
371 Ends on Endet am
374 Enter at least one permission row Geben Sie mindestens eine Erlaubnis Reihe
375 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 <a href="#Form/Customize Form/Customize Form">Customize Form</a>. Standardwertfelder (Schlüssel) und Werte eingeben. Wenn Sie mehrere Werte für ein Feld hinzufügen, wird der erste ausgewählt. Diese Standardwerte werden auch zum Festlegen der Berechtigungsregeln für die  „Zuordnung“ verwendet. Eine Auflistung der Felder finden Sie unter <a href="#Form/Customize Form/Customize Form">Formular anpassen</a>.
376 Enter keys to enable login via Facebook, Google, GitHub. Geben Sie Tasten Login über Facebook , Google, GitHub zu ermöglichen.
377 Equals Equals entspricht
378 Error Fehler
379 Error generating PDF, attachment sent as HTML Fehler beim Generieren PDF, als HTML-Anhang gesendet Fehler beim Generieren des PDF, Anhang wird als HTML gesendet
380 Error: Document has been modified after you have opened it Fehler: Dokument wurde geändert, nachdem Sie es geöffnet haben
381 Event Ereignis
382 Event Datetime Event- Datetime
386 Event Type Ereignistyp
387 Event User Ereignis-Benutzer
388 Event end must be after start Event- Ende muss nach Anfang sein
389 Events Geschehen Ereignisse
390 Events In Today's Calendar Heutige Ereignisse im Kalender
391 Every Day Täglich täglich
392 Every Month Monatlich monatlich
393 Every Week Wöchentlich wöchentlich
394 Every Year Jährlich jährlich
395 Everyone Jeder
396 Example: Beispiel:
397 Expand erweitern
398 Export Export
399 Export all rows in CSV fields for re-upload. This is ideal for bulk-editing. Export all rows in CSV fields for re-upload. This is ideal for bulk-editing.
400 Export not allowed. You need {0} role to export. Export nicht erlaubt. Sie müssen {0} Rolle zu exportieren.
401 Exported Exportierte
402 Expression, Optional Expression, Optional
427 File Datei
428 File Data Dateidaten
429 File Name Dateiname
430 File Name: &lt;your filename&gt;.csv<br />\ Save as type: Text Documents (*.txt)<br />\ Encoding: UTF-8 File Name: &lt;your filename&gt;.csv<br />\ Save as type: Text Documents (*.txt)<br />\ Encoding: UTF-8
431 File Size Dateigröße
432 File URL Datei-URL
433 File not attached Datei nicht angebracht
440 First Name Vorname
441 Float Fließkomma
442 Float Precision Float-Genauigkeit
443 Fold Fold
444 Fold can not be at the end of the form Fold can not be at the end of the form
445 Fold must come before a labelled Section Break Fold must come before a labelled Section Break
446 Font (Heading) Schriftart (Überschrift)
447 Font (Text) Schriftart (Text)
448 Font Size Schriftgröße
453 Footer Items Inhalte der Fußzeile
454 Footer Text Footer Text
455 For DocType für DocType
456 For Links, enter the DocType as rangeFor Select, enter list of Options separated by comma For Links, enter the DocType as rangeFor Select, enter list of Options separated by comma
457 For comparative filters, start with Bei Vergleichsfiltern, beginnen mit
458 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. Wenn Sie beispielsweise 'INV004' abbrechen und ändern, wird daraus ein neues Dokument 'INV004-1'. Dies hilft Ihnen, den Überblick über jede Änderung zu behalten.
459 For ranges Für Bereiche
492 Group Title Gruppe Titel
493 Group Type Gruppentyp
494 Groups Gruppen
495 Guest Guest
496 HTML for header section. Optional HTML für Header-Bereich . fakultativ
497 Header Kopfzeile
498 Heading Überschrift
499 Heading Text As Überschriftstext als
500 Help Hilfe
501 Help on Search Hilfe zur Suche
502 Help: Importing non-English data in Microsoft Excel Help: Importing non-English data in Microsoft Excel
503 Helvetica Neue Helvetica Neu
504 Hidden Ausgeblendet
505 Hide Actions Aktionen ausblenden
506 Hide Copy Kopie ausblenden
507 Hide Details Hide Details
508 Hide Heading Überschrift ausblenden
509 Hide Toolbar Symbolleiste ausblenden
510 Hide the sidebar Ausblenden der Seitenleiste
514 Home Page Homepage
515 Home Page is Products Homepage ist Produkte
516 ID (name) of the entity whose property is to be set ID (Name) der Einheit, deren Eigenschaft festgelegt werden muss
517 ID field is required to edit values using Report. Please select the ID field using the Column Picker ID field is required to edit values using Report. Please select the ID field using the Column Picker
518 Icon Symbol
519 Icon will appear on the button Symbol wird auf der Schaltfläche angezeigt
520 If a Role does not have access at Level 0, then higher levels are meaningless. Wenn eine Rolle hat keinen Zugriff auf Level 0 ist, dann höheren Ebenen sind bedeutungslos .
523 If image is selected, color will be ignored (attach first) Wenn das Bild ausgewählt ist, wird die Farbe ignoriert (zuerst anhängen)
524 If non standard port (e.g. 587) Wenn kein Standardport (z. B. 587)
525 If these instructions where not helpful, please add in your suggestions on GitHub Issues. Werden diese Hinweise nicht geholfen , wo , fügen Sie bitte in Ihre Anregungen auf GitHub Themen.
526 If you are inserting new records (overwrite not checked) \ and if you have submit permission, the record will be submitted. If you are inserting new records (overwrite not checked) \ and if you have submit permission, the record will be submitted.
527 If you are uploading a child table (for example Item Price), the all the entries of that table will be deleted (for that parent record) and new entries will be made. If you are uploading a child table (for example Item Price), the all the entries of that table will be deleted (for that parent record) and new entries will be made.
528 If you set this, this Item will come in a drop-down under the selected parent. Wenn Sie diese Einstellung , wird dieser Artikel in einer Drop-Down unter der ausgewählten Mutter kommen .
529 Ignore Encoding Errors Ignore Encoding Errors
530 Ignore User Permissions Ignorieren von Benutzerberechtigungen
531 Ignoring Item {0}, because a group exists with the same name! Ignorieren Artikel {0} , weil eine Gruppe mit dem gleichen Namen existiert!
532 Image Bild
534 Import Import
535 Import / Export Data Import / Export Data
536 Import / Export Data from .csv files. Import / Export von Daten aus . Csv -Dateien.
537 Import Data Import Data
538 Import Failed! Import fehlgeschlagen !
539 Import Successful! Importieren Sie erfolgreich!
540 In in
541 In Dialog Im Dialog
542 In Excel, save the file in CSV (Comma Delimited) format In Excel, save the file in CSV (Comma Delimited) format
543 In Filter Im Filter
544 In List View In der Listenansicht
545 In Report Filter Im Berichtsfilter
558 Insert Style Stil einfügen
559 Install Applications. Anwendungen installieren .
560 Installed Installierte
561 Installer Installer Installationen
562 Int Int
563 Integrations Integrationen
564 Introduce your company to the website visitor. Präsentieren Sie Ihr Unternehmen dem Besucher der Website.
582 Is Submittable Ist einreichbar
583 Is Task ist Aufgaben
584 Item cannot be added to its own descendents Artikel kann nicht auf seine eigenen Nachkommen hinzugefügt werden
585 JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions. JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.
586 JavaScript Format: frappe.query_reports['REPORTNAME'] = {} JavaScript- Format: frappe.query_reports [' REPORT '] = {}
587 Javascript JavaScript
588 Javascript to append to the head section of the page. JavaScript, das dem Kopfbereich der Seite angehängt wird.
590 Key Schlüssel
591 Label Etikett
592 Label Help Etikettierungshilfe
593 Label and Type Label- und Typ Etikett und Typ
594 Label is mandatory Etikett ist obligatorisch
595 Landing Page Landingpage Zielseite
596 Language Sprache
597 Language preference for user interface (only if available). Spracheinstellung für die Benutzeroberfläche (nur wenn vorhanden).
598 Language, Date and Time settings Sprache , Datum und Uhrzeit -Einstellungen
599 Last IP Letzte IP
600 Last Login Letzte Anmeldung
601 Last Name Familienname
602 Last Updated By zuletzt aktualisiert von
603 Last Updated On zuletzt aktualisiert am
604 Lato Lato
605 Leave blank to repeat always Leer lassen , immer wiederholen Freilassen um es immer zu wiederholen
606 Left Links
607 Letter Brief
608 Letter Head Briefkopf
612 Level 0 is for document level permissions, higher levels for field level permissions. Ebene 0 gilt für Dokumentenberechtigungen, höhere Ebenen gelten für Berechtigungen auf Feldebene.
613 Like wie
614 Link Link
615 Link that is the website home page. Standard Links (index, login, products, blog, about, contact) Link, ist die Homepage der Website . Standard- Verbindungen (Index , Login, Artikel , Blog , über, Kontakt) Link zur Homepage der Website . Standard-Links (Index, Anmeldung, Artikel, Blog, Über uns, Kontakt)
616 Link to other pages in the side bar and next section Link zu anderen Seiten in der Seitenleiste und im nächsten Abschnitt
617 Link to the page you want to open Link zu der Seite, die Sie öffnen möchten
618 Linked In Share LinkedIn-Freigabe
619 Linked With Verknüpft mit
620 List Liste
621 List a document type Liste einen Dokumenttyp Dokumenttyp auflisten
622 List of Web Site Forum's Posts. Liste der Web-Site Forum Beiträge . Liste der Forum Beiträge der Website.
623 List of patches executed Liste der ausgeführten Patches
624 Loading Ladevorgang läuft
625 Loading Report Report wird geladen Bericht wird geladen
626 Loading... Wird geladen ...
627 Localization Lokalisierung
628 Location Lage Standort
629 Log of Scheduler Errors Protokoll der Scheduler-Fehler
630 Log of error on automated events (scheduler). Melden Sie sich an automatisierten Fehlerereignisse ( Scheduler ) .
631 Login After Anmelden nach
632 Login Before Anmelden vor
633 Login Id Anmelde-ID
634 Login not allowed at this time Anmelden zu diesem Zeitpunkt nicht erlaubt Anmeldung zu diesem Zeitpunkt nicht erlaubt
635 Logout Abmelden
636 Long Text Langtext
637 Low Niedrig
638 Lucida Grande Lucida Grande
639 Mail Password Mail-Passwort
640 Main Section Hauptbereich
641 Make New Hinzufügen
642 Make a new Machen Sie einen neuen Hinzufügen
643 Make a new record Einen neuen Rekord Hinzufügen eines neuen Eintrags
644 Make a new {0} Hinzufügen eines
645 Male Männlich
646 Manage cloud backups on Dropbox Verwalten Cloud -Backups auf Dropbox Dropbox Backups verwalten
647 Manage uploaded files. Hochgeladene Dateien verwalten . Hochgeladene Dateien verwalten.
648 Mandatory Obligatorisch
649 Mandatory fields required in {0} Pflichtfelder in erforderlich {0} Pflichtfelder erforderlich in {0}
650 Master Stamm
651 Max Attachments Höchstanzahl Anhänge
652 Max width for type Currency is 100px in row {0} Max. Breite für Typ Währung 100px in Zeile {0}
653 Maximum Attachment Limit for this record reached. Maximum Attachment Limit for this record reached.
654 Meaning of Submit, Cancel, Amend Bedeutung von Senden, Abbrechen, Abändern
655 Medium Mittel
656 Menu items in the Top Bar. For setting the color of the Top Bar, go to <a href="#Form/Style Settings">Style Settings</a> Menüeinträge in der oberen Symbolleiste. Um die Farbe der obersten Symbolleiste festzulegen, öffnen Sie die  <a href="#Form/Style Settings">Stileinstellungen</a>
657 Merge with existing Merge with existing
658 Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node Zusammenführung ist nur möglich zwischen Konzern -zu- Gruppen-oder Blatt- Node -to- Node -Blatt
659 Message Nachricht
660 Message Examples Beispiele Nachricht
661 Messages Nachrichten
662 Messages from everyone Messages from everyone
663 Method Methode
664 Middle Name (Optional) Weiterer Vorname (optional)
665 Misc Sonst.
673 Module Not Found Modul nicht gefunden
674 Modules Setup Module -Setup
675 Monday Montag
676 Monochrome Monochrome
677 More Weiter
678 More content for the bottom of the page. Mehr Inhalt für den unteren Teil der Seite.
679 Move Down: {0} Nach unten : {0}
694 Naming Series mandatory Benennungsreihenfolge obligatorisch
695 Nested set error. Please contact the Administrator. Verschachtelte Satz Fehler. Bitte kontaktieren Sie das Administrator.
696 New Neu
697 New Name New Name
698 New Password Neues Passwort
699 New Record Neuer Datensatz
700 New comment on {0} {1} Neuer Kommentar auf {0} {1}
707 Next actions Nächste Aktionen
708 No Nein
709 No Action Keine Aktion
710 No Communication tagged with this {0} yet. No Communication tagged with this {0} yet.
711 No Copy Keine Kopie
712 No Permissions set for this criteria. Keine Berechtigungen für diese Kriterien gesetzt.
713 No Report Loaded. Please use query-report/[Report Name] to run a report. Kein Bericht geladen Benutzen Sie den Abfragebericht/[Berichtname], um einen Bericht auszuführen.
720 No one Niemand
721 No permission to '{0}' {1} Keine Berechtigung um '{0} ' {1}
722 No permission to edit Keine Berechtigung zum Bearbeiten
723 No permission to read {0} No permission to read {0}
724 No permission to write / remove. Keine Berechtigung zum Schreiben/Entfernen.
725 No records tagged. Keine Einträge markiert.
726 No template found at path: {0} Keine Vorlage an Pfad gefunden: {0}
727 No {0} found No {0} found
728 No {0} permission Keine Berechtigung {0}
729 None Keine
730 None: End of Workflow Keine: Ende des Workflows
731 Not Found Nicht gefunden
732 Not Linked to any record. Nicht mit einem Datensatz verknüpft.
733 Not Permitted Nicht gestattet
734 Not Published Not Published
735 Not Submitted advertisement
736 Not a valid Comma Separated Value (CSV File) Keine gültige Comma Separated Value (CSV -Datei)
737 Not allowed Nicht erlaubt
747 Not permitted Nicht zulässig
748 Note: For best results, images must be of the same size and width must be greater than height. Hinweis: Für optimale Ergebnisse müssen die Bilder die gleiche Größe haben und die Breite muss größer als die Höhe sein.
749 Note: Other permission rules may also apply Hinweis: Andere Berechtigungsregeln können ebenfalls gelten
750 Note: fields having empty value for above criteria are not filtered out. Note: fields having empty value for above criteria are not filtered out.
751 Nothing to show Nichts anzuzeigen
752 Nothing to show for this selection Nichts für diese Auswahl zeigen
753 Notification Count Benachrichtigungsanzahl
763 Oops! Something went wrong Hoppla! Etwas ist schiefgelaufen
764 Open Offen
765 Open Count Offene Graf
766 Open Link Open Link
767 Open Sans Open Sans
768 Open Source Web Applications for the Web Open-Source-Web-Anwendungen für das Web
769 Open a module or tool Öffnen Sie ein Modul oder Werkzeug
770 Open this saved file in Notepad Open this saved file in Notepad
771 Open {0} Offene {0}
772 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-ID.
773 Optional: Always send to these ids. Each email id on a new row Optional: Immer an diesen IDs. Jede E-Mail-ID in einer neuen Zeile
786 Outgoing Email Settings Ausgehende E-Mail -Einstellungen
787 Outgoing Mail Server Postausgangsserver
788 Outgoing Mail Server not specified Postausgangsserver nicht angegeben
789 Overwrite Overwrite
790 Owner Eigentümer
791 PDF Page Size PDF-Seitengröße
792 PDF Settings PDF-Einstellungen
803 Page Text Seitentext
804 Page content Seiteninhalt
805 Page not found Seite nicht gefunden
806 Page to show on the website Page to show on the website
807 Page url name (auto-generated) Seiten-URL -Namen ( automatisch generiert)
808 Parent Parent
809 Parent Label Übergeordnete Bezeichnung
810 Parent Post Eltern- Beitrag
811 Parent Web Page Parent Web Page
812 Parent Website Group Parent Website Group
813 Parent Website Route Eltern- Webseite Routen
814 Participants Teilnehmer
815 Password Passwort
818 Patch Patch
819 Patch Log Patch-Protokoll
820 Percent Prozent
821 Performing hardcore import process Performing hardcore import process
822 Perm Level Ber.-Ebene
823 Permanently Cancel {0}? Dauerhaft Abbrechen {0} ?
824 Permanently Submit {0}? Dauerhaft Absenden {0} ?
847 Please do not change the rows above {0} Bitte nicht die Zeilen oben ändern {0}
848 Please enable pop-ups Bitte aktivieren Sie Pop-ups
849 Please enter Event's Date and Time! Bitte geben Sie das Datum und Ereignis -Zeit!
850 Please enter both your email and message so that we \ can get back to you. Thanks! Please enter both your email and message so that we \ can get back to you. Thanks!
851 Please enter email address Bitte geben Sie E-Mail -Adresse
852 Please enter some text! Bitte geben Sie einen Text!
853 Please enter title! Bitte Titel !
855 Please make sure that there are no empty columns in the file. Stellen Sie sicher, dass es keine leeren Spalten in der Datei gibt.
856 Please refresh to get the latest document. Aktualisieren Sie, um zum neuesten Dokument zu gelangen.
857 Please reply above this line or remove it if you are replying below it Bitte antworten Sie mir über dieser Linie oder entfernen Sie sie, wenn Sie es sind unten Antworten
858 Please save before attaching. Please save before attaching.
859 Please select a file or url Wählen Sie eine Datei oder URL aus
860 Please select atleast 1 column from {0} to sort Bitte wählen Sie atleast 1 Spalte {0} zu sortieren
861 Please set filters Please set filters
862 Please set {0} first Bitte setzen Sie {0} zuerst
863 Please specify Geben Sie Folgendes an
864 Please specify 'Auto Email Id' in Setup > Outgoing Email Settings Bitte geben 'Auto Email Id' in Setup> Ausgehende E-Mail -Einstellungen
890 Print Style Druckstil
891 Print Style Preview Print Style Vorschau
892 Print Width Druckbreite
893 Print Width of the field, if the field is a column in a table Print Width of the field, if the field is a column in a table
894 Print with Letterhead, unless unchecked in a particular Document Drucken mit Briefkopf, es sei denn, unkontrolliert in einem bestimmten Dokument
895 Print... Drucken...
896 Printing and Branding Druck-und Branding-
911 Query Report Abfragebericht
912 Query must be a SELECT Abfrage muss eine AUSWAHL sein
913 Quick Help for Setting Permissions Schnellinfo zum Festlegen von Berechtigungen
914 Quick Help for User Permissions Schnelle Hilfe für Benutzerberechtigungen Schnellinfo für Benutzerberechtigungen
915 Re-open Re -open
916 Read Lesen
917 Read Only Schreibgeschützt
933 Registration Details Emailed. Per E-Mail zugesendete Details zur Anmeldung
934 Reload Page Seite neu laden
935 Remove Bookmark Lesezeichen entfernen
936 Remove Filter Remove Filter
937 Remove all customizations? Alle Anpassungen entfernen ?
938 Removed {0} Removed {0}
939 Rename umbenennen
940 Rename many items by uploading a .csv file. Benennen Sie viele Elemente durch Hochladen einer . CSV-Datei.
941 Rename {0} Rename {0}
942 Rename... Umbenennen...
943 Repeat On Wiederholen am
944 Repeat Till Wiederholen bis
948 Report Builder Bericht-Generator
949 Report Builder reports are managed directly by the report builder. Nothing to do. Berichte des Berichts-Generators werden direkt von diesem verwaltet. Nichts zu tun.
950 Report Hide Bericht ausblenden
951 Report Manager Berichte Verantwortlicher
952 Report Name Berichtsname
953 Report Type Berichtstyp
954 Report an Issue Ein Problem melden
955 Report cannot be set for Single types Bericht kann nicht für Einzel- Typen festgelegt werden
956 Report this issue Dieses Problem melden
957 Report was not saved (there were errors) Bericht wurde nicht gespeichert (es waren Fehler vorhanden)
958 Report {0} is disabled Report {0} is disabled
959 Represents a User in the system. Represents a User in the system.
960 Represents the states allowed in one document and role assigned to change the state. Stellt die in einem Dokument erlaubten Status und die zugewiesene Rolle zum Ändern des Status dar.
961 Reqd Erf
962 Reset Password Key Passwort zurücksetzen Key
963 Reset Permissions for {0}? Zurücksetzen von Berechtigungen für {0} ?
964 Response Antwort
965 Restore Original Permissions Restore Original Permissions
966 Restrict IP IP beschränken
967 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)
968 Right Rechts
969 Role Rolle
970 Role Name Rollenname
971 Role Permissions Manager Rollenberechtigungen -Manager Festlegen Rollenberechtigungen
972 Role and Level Rolle und Ebene
973 Role exists Rolle existiert
974 Roles Rollen
975 Roles Assigned Zugewiesene Rollen
976 Roles Assigned To User Rollen Zugewiesen an Benutzer Zugewiesene Rollen
977 Roles HTML Rollen HTML
978 Roles can be set for users from their User page. Rollen können für die Nutzer von ihrer Benutzerseite eingestellt werden.
979 Root {0} cannot be deleted Wurzel {0} kann nicht gelöscht werden
985 Run the report first Führen Sie den Bericht zuerst
986 SMTP Server (e.g. smtp.gmail.com) SMTP-Server (z. B. smtp.gmail.com)
987 Sales Vertrieb
988 Sales Manager Verkauf Verantwortlicher
989 Sales User Verkauf Mitarbeiter
990 Same file has already been attached to the record Gleiche Datei wurde bereits dem Datensatz hinzugefügt
991 Sample Beispiel Muster
992 Saturday Samstag
993 Save Sichern Speichern
994 Saved! gespeichert!
995 Scheduler Log Scheduler-Protokoll Zeitplan Protokoll
996 Script Skript
997 Script Report Skriptbericht
998 Script Type Skripttyp
999 Script to attach to all web pages. Skript, das allen Webseiten hinzugefügt wird.
1000 Search Suchen Suche
1001 Search Fields Suchfelder
1002 Search Filter Search Filter
1003 Search Link Suche Link
1004 Search in a document type Suche in einem Dokumenttyp
1005 Search or type a command Suchen oder geben Sie einen Befehl Suche oder geben Sie einen Befehl ein
1006 Section Break Abschnittswechsel
1007 Security Sicherheit
1008 Security Settings Sicherheitseinstellungen
1011 Select Attachments Anhänge auswählen
1012 Select Document Type Dokumenttyp auswählen
1013 Select Document Type or Role to start. Dokumenttyp oder Rolle für den Anfang auswählen.
1014 Select Document Types Dokumententypen auswählen
1015 Select Document Types to set which User Permissions are used to limit access. Dokumententypen auswählen um die Benutzerberechtigungen einzustellen um den Zugriff einzuschränken.
1016 Select Print Format Druckformat auswählen
1017 Select Report Name Berichtsname auswählen
1018 Select Role Rolle auswählen
1019 Select To Download: Wählen Sie Zum Herunterladen: Auswahl zum Download:
1020 Select Type Typ auswählen
1021 Select User or DocType to start. Wählen Sie Benutzer oder DocType zu starten.
1022 Select a Banner Image first. Wählen Sie zuerst eine Bannerbild aus.
1023 Select an image of approx width 150px with a transparent background for best results. Für beste Ergebnisse wählen Sie ein Bild mit ca. 150px Breite und transparentem Hintergrund aus.
1024 Select dates to create a new Wählen Sie Termine zur Neuerstellung von
1025 Select modules to be shown (based on permission). If hidden, they will be hidden for all users. Wählen Sie Module gezeigt werden (basierend auf Genehmigung) . Wenn ausgeblendet , werden sie für alle Benutzer ausgeblendet werden. Wählen Sie aus, welche Module gezeigt werden sollen (basierend auf Benutzerrechten). Sofern ausgeblendet werden soll, werden diese für alle Benutzer ausgeblendet.
1026 Select or drag across time slots to create a new event. Wählen oder ziehen Sie zum Erstellen eines neuen Ereignisses über die Zeitpunkte. Wählen oder ziehen Sie zum Erstellen eines neuen Ereignisses über die Zeitabschnitte.
1027 Select target = "_blank" to open in a new page. Select target = " _blank" in einer neuen Seite zu öffnen. Wählen Sie target = " _blank" aus, um es in einer neuen Seite zu öffnen.
1028 Select the label after which you want to insert new field. Wählen Sie das Etikett/die Kennzeichnung aus, nach dem Sie ein neues Feld einfügen möchten.
1029 Select {0} Auswahl von {0}
1030 Send Absenden
1031 Send Alert On Senden Alert On
1032 Send As Email Senden als E-Mail
1033 Send Email E-Mail absenden
1034 Send Email Print Attachments as PDF (Recommended) Senden Sie E-Mail-Anhänge als PDF drucken (empfohlen)
1035 Send Me A Copy Kopie an mich senden
1036 Send Print as PDF Senden Drucken als PDF Ausdruck als PDF versenden
1037 Send alert if date matches this field's value Benachrichtigung senden, wenn das Datum der Wert dieses Feldes entspricht
1038 Send alert if this field's value changes Alarm senden, wenn Wert dieses Feld
1039 Send an email reminder in the morning E-Mail-Erinnerung am Morgen senden
1040 Send download link of a recent backup to System Managers Senden Download-Link von einer aktuellen Sicherung im System Manager
1041 Send enquiries to this email address Senden Sie Anfragen an diese E-Mail -Adresse
1042 Sender Absender
1043 Sent Sent verschickt
1044 Sent Mail Abgesendete Nachrichten
1045 Sent Quotation Angebot absenden
1046 Sent or Received Gesendet oder empfangen
1047 Series Serie
1048 Series {0} already used in {1} Serie {0} bereits verwendet {1}
1049 Server Server
1050 Server & Credentials Server & Credentials Server & Zugangsdaten
1051 Server Error: Please check your server logs or contact tech support. Server-Fehler: Bitte überprüfen Sie Ihre Server-Logs oder Kontakt -Tech-Unterstützung . Server-Fehler: Bitte überprüfen Sie Ihre Server-Logs oder kontaktieren Sie Ihre IT-Unterstützung.
1052 Session Expired. Logging you out Sitzung abgelaufen. Abmeldung läuft
1053 Session Expiry Sitzungsende
1054 Session Expiry in Hours e.g. 06:00 Sitzungsende in Stunden z.B. 06:00
1055 Session Expiry must be in format {0} Gültig Session müssen im Format {0} Gültig Sitzungen müssen im Format {0} sein
1056 Set Set
1057 Set Banner from Image Banner von Bild einrichten
1058 Set Link Link- Set
1059 Set Login and Password if authentication is required. Anmeldung und Passwort festlegen, wenn eine Authentifizierung erforderlich ist.
1060 Set Only Once Nur einmal festgelegt
1061 Set Password Set Password Passwort festlegen
1062 Set Permissions on Document Types and Roles Festlegen von Berechtigungen für Dokumenttypen und Rollen
1063 Set Permissions per User Festlegen von Berechtigungen pro Benutzer
1064 Set User Permissions Set User Berechtigungen
1065 Set Value Wert festlegen
1066 Set default format, page size, print style etc. Legen Standardformat, Seitengröße, Druckstil usw. Standardformat, Seitengröße, Druckstil usw. festlegen
1067 Set numbering series for transactions. Stellen Sie die Nummerierung Serie für Transaktionen.
1068 Set outgoing mail server. Stellen ausgehende Mail-Server. ausgehenden Mail-Server festlegen.
1069 Set your background color, font and image (tiled) Legen Sie Hintergrundfarbe, Schriftart und Bild (Kachel) fest
1070 Settings Einstellungen
1071 Settings for About Us Page. Einstellungen für die Seite "Über uns".
1083 Shortcut Verknüpfung
1084 Show / Hide Modules Module anzeigen / ausblenden
1085 Show Print First Ausdruck zuerst anzeigen
1086 Show Tags Tags anzeigen Stichworte anzeigen
1087 Show User Permissions Benutzerberechtigungen anzeigen
1088 Show or hide modules globally. Anzeigen oder verbergen Module weltweit .
1089 Show rows with zero values Zeilen mit Nullwerten anzeigen
1090 Show tags Tags anzeigen
1132 Success Erfolg
1133 Suggestion Vorschlag
1134 Sunday Sonntag
1135 Support Manager Support Verantwortlicher
1136 Support Team Support-Team
1137 Switch to Website Zur Webseite wechseln
1138 Sync Inbox Posteingang synchronisieren
1139 System System
1140 System Manager System Verantwortlicher
1141 System Settings Systemeinstellungen
1142 System User Systembenutzer
1143 System and Website Users System- und Webseiten-Nutzer
1152 Tasks Aufgaben
1153 Team Members Teammitglieder
1154 Team Members Heading Teammitglieder Kopfzeile
1155 Template Path Template Path
1156 Test Runner Runner testen
1157 Text Text
1158 Text Align Text ausrichten
1161 The name of your company / website as you want to appear on browser title bar. All pages will have this as the prefix to the title. Der Name Ihrer Firma/Website, wie er in der Titelzeile des Browsers angezeigt werden soll. Bei allen Seiten ist  dies das Präfix des Titels.
1162 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 .
1163 Then By (optional) Dann nach (optional)
1164 There can be only one Fold in a form There can be only one Fold in a form
1165 There should remain at least one System Manager Es sollte mindestens eine System-Manager bleiben
1166 There were errors Es gab Fehler
1167 There were errors while sending email. Please try again. Es gab Fehler beim Versenden der E-Mail. Bitte versuchen Sie es erneut .
1170 These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values. Diese Werte werden automatisch bei Transaktionen aktualisiert. Außerdem sind sie nützlich, um die Berechtigungen dieses Benutzers bei Transaktionen mit diesen Werten zu beschränken.
1171 These will also be set as default values for those links, if only one such permission record is defined. Diese werden auch als Standardwerte für diese Links gesetzt werden , wenn nur eine solche Erlaubnis Datensatz definiert.
1172 Third Party Authentication Third Party Authentication
1173 This field will appear only if the fieldname defined here has value OR the rules are true (examples): <br>myfieldeval:doc.myfield=='My Value'<br>eval:doc.age>18 This field will appear only if the fieldname defined here has value OR the rules are true (examples): <br>myfieldeval:doc.myfield=='My Value'<br>eval:doc.age>18
1174 This form does not have any input This form does not have any input
1175 This goes above the slideshow. Dies kommt über der Diaschau.
1176 This is PERMANENT action and you cannot undo. Continue? Dies ist eine DAUERHAFTE Aktion, die Sie nicht rückgängig machen können. Fortsetzen?
1177 This is a standard format. To make changes, please copy it make make a new format. Dies ist ein Standard-Format. Um Änderungen vorzunehmen, kopieren Sie bitte es zu machen, ein neues Format.
1210 Twitter Share Twitter-Freigabe
1211 Twitter Share via Twitter-Freigabe über
1212 Type Typ
1213 Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions. Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.
1214 Unable to find attachment {0} Kann nicht finden Befestigung {0}
1215 Unable to load: {0} Kann nicht geladen werden: {0}
1216 Unable to open attached file. Please try again. Kann nicht angehängte Datei zu öffnen. Bitte versuchen Sie es erneut .
1225 Update Field Feld aktualisieren
1226 Update Value Wert aktualisieren
1227 Updated Aktualisiert
1228 Upload laden Hochladen
1229 Upload Attachment Anhang hochladen
1230 Upload CSV file containing all user permissions in the same format as Download. Laden Sie CSV-Datei, die alle Benutzerberechtigungen im gleichen Format als Download.
1231 Upload a file Datei hochladen
1232 Upload and Import Upload und Import Hochladen und Importieren
1233 Upload and Sync Upload und Sync Hochladen und Synchronsieren
1234 Uploading... Upload läuft...
1235 Upvotes upvotes
1236 Use TLS Verwenden Sie TLS
1238 User Cannot Create Benutzer kann nicht erstellen
1239 User Cannot Search Benutzer kann nicht suchen
1240 User Defaults Profil Defaults
1241 User ID of a Blogger User ID of a Blogger
1242 User ID of a blog writer. Benutzer-ID eines Blogs Schriftsteller.
1243 User Image Benutzerbild
1244 User Permission Benutzerberechtigung
1245 User Permission DocTypes User Permission DocTypes
1246 User Permissions Benutzerberechtigungen
1247 User Permissions Manager Benutzerrechte -Manager
1248 User Roles Benutzerrollen
1249 User Tags Benutzer-Tags
1250 User Type Benutzertyp
1251 User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages. User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages.
1252 User Vote User- Vote
1253 User not allowed to delete {0}: {1} Benutzer nicht erlaubt, zu löschen {0}: {1}
1254 User permissions should not apply for this Link Benutzerrechte sollten nicht für dieses Link- Anwendung
1257 User {0} cannot be renamed Benutzer {0} kann nicht umbenannt werden
1258 User {0} does not exist Benutzer {0} existiert nicht
1259 UserRole Benutzerrolle
1260 Users Users
1261 Users and Permissions Benutzer und Berechtigungen
1262 Users with role {0}: Benutzer mit Rolle {0}:
1263 Valid Login id required. Gültige Login-ID erforderlich.
1271 Verdana Verdana
1272 Version Version
1273 Version restored Version wiederhergestellt
1274 View Details View Details
1275 Visit Besuch
1276 Warning Warnung
1277 Warning: This Print Format is in old style and cannot be generated via the API. WARNUNG: Diese Druckformat ist im alten Stil und kann nicht über die API generiert werden.
1278 Web Page Webseite
1279 Web Site Forum Page. Web-Site Forum Seite .
1280 Website Webseite Website
1281 Website Group Website- Gruppe Website-Gruppe
1282 Website Manager Website-Administrator
1283 Website Route Website Route
1284 Website Route Permission Website- Route-Permission Website-Route-Permission
1285 Website Script Webseitenskript Website-Skript
1286 Website Settings Webseiteneinstellungen Website-Einstellungen
1287 Website Slideshow Webseite Diaschau Website-Diaschau
1288 Website Slideshow Item Webseite Diaschau Artikel Website-Diaschau-Artikel
1289 Website User Webseitenbenutzer Website-Benutzer
1290 Wednesday Mittwoch
1291 Welcome email sent Willkommen E-Mail verschickt Willkommensnachricht verschickt
1292 When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number. Wenn Sie ein Dokument ändern , nachdem Sie auf Abbrechen und speichern Sie sie , wird es eine neue Nummer , die eine Version der alten Nummer ist zu bekommen.
1293 While uploading non English files ensure that the encoding is UTF-8. While uploading non English files ensure that the encoding is UTF-8.
1294 Width Breite
1295 Will be used in url (usually first name). Wird in URL verwendet (in der Regel Vorname).
1296 With Groups mit Gruppen
1317 Year Jahr
1318 Yes Ja
1319 Yesterday Gestern
1320 You are not allowed to create / edit reports Sie sind nicht berechtigt, bearbeiten / Berichte erstellen Sie sind nicht berechtigt Berichte zu erstellen / zu bearbeiten
1321 You are not allowed to export the data of: {0}. Downloading empty template. Sie sind nicht berechtigt , die Daten zu exportieren: {0}. Herunterladen leer Vorlage. Sie haben nicht die Berechtigung die Daten von {0} zu exportieren. Es wird eine leere Vorlage heruntergeladen.
1322 You are not allowed to export this report Sie sind nicht berechtigt , diesen Bericht zu exportieren Sie haben nicht die Berechtigung diesen Bericht zu exportieren
1323 You are not allowed to print this document Sie sind nicht berechtigt , dieses Dokument zu drucken Sie haben nicht die Berechtigung dieses Dokument zu drucken
1324 You are not allowed to send emails related to this document Es ist nicht erlaubt , E-Mails zu diesem Dokument im Zusammenhang senden Sie haben nicht die Berechtigung E-Mails die diesem Dokument verknüpft sind zu versenden
1325 You can also drag and drop attachments Sie können auch Anhänge ziehen und ablegen (drag & drop)
1326 You can change Submitted documents by cancelling them and then, amending them. Sie können eingereichten Unterlagen durch Löschen und sie dann , zur Änderung der sie zu ändern.
1327 You can use Customize Form to set levels on fields. Sie können Formular anpassen , um Ebenen auf Feldern eingestellt .
1328 You can use wildcard % Sie können Platzhalter% verwenden Sie können als Platzhalter % verwenden
1329 You cannot install this app Sie können diese App installieren Sie können diese App nicht installieren
1330 You don't have access to Report: {0} Sie haben keinen Zugriff auf den Bericht: {0}
1331 You don't have permission to get a report on: {0} Sie haben keine Benutzerberechtigung um einen einen Bericht zu {0} zu erhalten
1332 You have unsaved changes in this form. Please save before you continue. Sie haben noch nicht gespeicherte Änderungen in dieser Form . Sie haben noch nicht gespeicherte Änderungen in diesem Formular.
1333 You need to be logged in and have System Manager Role to be able to access backups. Sie müssen eingeloggt sein und über System-Manager -Rolle an der Lage, Backups zugreifen.
1334 You need write permission to rename Sie benötigen Schreibberechtigung umbenennen Sie benötigen Schreibberechtigung zur Umbennung
1335 You seem to have written your name instead of your email. \ Please enter a valid email address so that we can get back. Es scheint als hätten Sie Ihren Namen anstatt Ihrer Email-Adresse angegeben. Bitte geben Sie Ihre Emailadresse ein damit wir zurückkehren können.
1336 Your download is being built, this may take a few moments... Ihr Download wird aufgebaut, dies kann einige Sekunden dauern ...
1337 [Label]:[Field Type]/[Options]:[Width] [Label]:[Field Type]/[Options]:[Width]
1338 [No Subject] [No Subject]
1339 [Optional] Send the email X days in advance of the specified date. 0 equals same day. [Optional] Senden Sie die E-Mail-X Tage vor dem angegebenen Datum. 0 entspricht selben Tag.
1340 [no content] [no content]
1341 [unknown sender] [unknown sender]
1342 add your own CSS (careful!) fügen Sie Ihr eigenes CSS hinzu (Vorsicht!)
1343 adjust anpassen
1344 align-center zentriert ausrichten
1418 info-sign Info-Zeichen
1419 is not allowed. nicht zulässig
1420 italic kursiv
1421 leaf leaf Blatt
1422 lft li
1423 list Liste
1424 list-alt Liste-Alt
1425 lock sperren
1426 lowercase Kleinbuchstaben
1427 magnet Magnet
1428 map-marker Map-Marker Kartenmarkierungen
1429 memcached is not working / stopped. Please start memcached for best results. Memcached nicht funktioniert / gestoppt. Bitte starten Sie Memcached für beste Ergebnisse.
1430 minus Minus
1431 minus-sign Minuszeichen
1469 search suchen
1470 share teilen
1471 share-alt teilen-alt
1472 shopping-cart Einkaufswagen Warenkorb
1473 signal Signal
1474 star Stern
1475 star-empty Stern-leer

View file

@ -16,8 +16,8 @@
<i>text</i> <b>in</b> <i>document type</i>,<i> κείμενο </ i> <b> </ b> <i> τύπο εγγράφου </ i>
A user can be permitted to multiple records of the same DocType.,Ένας χρήστης μπορεί να επιτραπεί σε πολλαπλές εγγραφές του ίδιου DocType .
About,Σχετικά
About Us Settings,Σχετικά με εμάς Ρυθμίσεις
About Us Team Member,Σχετικά με εμάς Μέλος της Ομάδας
About Us Settings,Ρυθμίσεις σχετικά με εμάς
About Us Team Member,Μέλος της Ομάδας σχετικά με εμάς
Action,Δράση
Actions,δράσεις
"Actions for workflow (e.g. Approve, Cancel).","Ενέργειες για τη ροή εργασίας ( π.χ. Έγκριση , Ακύρωση ) ."
@ -77,7 +77,7 @@ Amend,Τροποποιούνται
"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>]","Ένα αρχείο με το εικονίδιο. Επέκταση ICO. Θα πρέπει να είναι 16 x 16 px. Generated χρησιμοποιώντας μια γεννήτρια favicon. [ <a href=""http://favicon-generator.org/"" target=""_blank"">favicon-generator.org</a> ]"
"Another {0} with name {1} exists, select another name","Ένας άλλος {0} με το όνομα {1} υπάρχει, επιλέξτε ένα άλλο όνομα"
Any existing permission will be deleted / overwritten.,Κάθε υφιστάμενη άδεια θα διαγραφούν / αντικατασταθούν.
Anyone Can Read,Ο καθένας μπορεί να διαβάσει
Anyone Can Read,Οποιοσδηποτε μπορεί να διαβάσει
Anyone Can Write,Οποιοσδήποτε μπορεί να γράψει
"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Εκτός από το ρόλο που βασίζονται Κανόνες άδεια , μπορείτε να εφαρμόσετε τα δικαιώματα χρήσης με βάση doctypes ."
"Apart from System Manager, roles with 'Set User Permissions' right can set permissions for other users for that Document Type.","Εκτός από το Διαχειριστή του Συστήματος , οι ρόλοι με το δικαίωμα 'Ρύθμιση δικαιωμάτων χρήστη » να ορίσετε δικαιώματα για άλλους χρήστες για αυτόν τον τύπο εγγράφου ."
@ -91,14 +91,14 @@ Are you sure you want to delete the attachment?,Είστε σίγουροι ότ
Arial,Arial
"As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User.","Ως βέλτιστη πρακτική , δεν αποδίδουν το ίδιο σύνολο κανόνα άδεια για διαφορετικούς ρόλους . Αντ 'αυτού , που πολλούς ρόλους στο ίδιο το χρήστη ."
Ascending,Αύξουσα
Assign To,Εκχώρηση σε
Assign To,Ανάθεση σε
Assigned By,Ανατέθηκε από
Assigned To,Ανατέθηκε σε
Assigned To Fullname,Ανατέθηκε σε Ονοματεπώνυμο
Assigned To/Owner,Ανατέθηκε σε / Ιδιοκτήτης
Assignment Added,εκχώρηση Προστέθηκε
Assignment Status Changed,Εκχώρηση Άλλαξε Η Κατάσταση
Assignments,αναθέσεις
Assignment Added,Προστέθηκε Ανάθεση
Assignment Status Changed,Η ανάθεση άλλαξε κατάσταση
Assignments,Αναθέσεις
Attach,Επισυνάψτε
Attach Document Print,Συνδέστε Εκτύπωση εγγράφου
Attach as web link,Να επισυναφθεί ως σύνδεσμο ιστού
@ -948,7 +948,7 @@ Select Type,Επιλέξτε Τύπο
Select User or DocType to start.,Επιλέξτε το χρήστη ή DocType για να ξεκινήσει .
Select a Banner Image first.,Επιλέξτε μια εικόνα banner πρώτα.
Select an image of approx width 150px with a transparent background for best results.,Επιλέξτε μια εικόνα 150px πλάτους περ. με ένα διαφανές φόντο για καλύτερα αποτελέσματα.
Select dates to create a new ,
Select dates to create a new ,Select dates to create a new
"Select modules to be shown (based on permission). If hidden, they will be hidden for all users.","Επιλέξτε ενότητες που πρέπει να δείξει ( με βάση την άδεια ) . Αν κρύβεται , θα είναι κρυμμένα για όλους τους χρήστες ."
Select or drag across time slots to create a new event.,Επιλέξτε ή σύρετε χρονοθυρίδες για να δημιουργήσετε ένα νέο συμβάν.
"Select target = ""_blank"" to open in a new page.","Επιλέξτε target = "" _blank "" για να ανοίξει σε μια νέα σελίδα ."
@ -1169,7 +1169,7 @@ User Permissions Manager,Δικαιώματα χρήστης του Διαχει
User Roles,Ρόλοι Χρηστών
User Tags,Ετικέτες
User Type,Τύπος χρήστη
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ",
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ","User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. "
User Vote,Ψηφοφορία χρήστη
User not allowed to delete {0}: {1},Ο χρήστης δεν επιτρέπεται να διαγράψετε {0}: {1}
User permissions should not apply for this Link,Δικαιώματα χρήστη δεν πρέπει να εφαρμόζονται για αυτή την σύνδεση

1 by Role από το ρόλο
16 <i>text</i> <b>in</b> <i>document type</i> <i> κείμενο </ i> <b> </ b> <i> τύπο εγγράφου </ i>
17 A user can be permitted to multiple records of the same DocType. Ένας χρήστης μπορεί να επιτραπεί σε πολλαπλές εγγραφές του ίδιου DocType .
18 About Σχετικά
19 About Us Settings Σχετικά με εμάς Ρυθμίσεις Ρυθμίσεις σχετικά με εμάς
20 About Us Team Member Σχετικά με εμάς Μέλος της Ομάδας Μέλος της Ομάδας σχετικά με εμάς
21 Action Δράση
22 Actions δράσεις
23 Actions for workflow (e.g. Approve, Cancel). Ενέργειες για τη ροή εργασίας ( π.χ. Έγκριση , Ακύρωση ) .
77 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>] Ένα αρχείο με το εικονίδιο. Επέκταση ICO. Θα πρέπει να είναι 16 x 16 px. Generated χρησιμοποιώντας μια γεννήτρια favicon. [ <a href="http://favicon-generator.org/" target="_blank">favicon-generator.org</a> ]
78 Another {0} with name {1} exists, select another name Ένας άλλος {0} με το όνομα {1} υπάρχει, επιλέξτε ένα άλλο όνομα
79 Any existing permission will be deleted / overwritten. Κάθε υφιστάμενη άδεια θα διαγραφούν / αντικατασταθούν.
80 Anyone Can Read Ο καθένας μπορεί να διαβάσει Οποιοσδηποτε μπορεί να διαβάσει
81 Anyone Can Write Οποιοσδήποτε μπορεί να γράψει
82 Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes. Εκτός από το ρόλο που βασίζονται Κανόνες άδεια , μπορείτε να εφαρμόσετε τα δικαιώματα χρήσης με βάση doctypes .
83 Apart from System Manager, roles with 'Set User Permissions' right can set permissions for other users for that Document Type. Εκτός από το Διαχειριστή του Συστήματος , οι ρόλοι με το δικαίωμα 'Ρύθμιση δικαιωμάτων χρήστη » να ορίσετε δικαιώματα για άλλους χρήστες για αυτόν τον τύπο εγγράφου .
91 Arial Arial
92 As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User. Ως βέλτιστη πρακτική , δεν αποδίδουν το ίδιο σύνολο κανόνα άδεια για διαφορετικούς ρόλους . Αντ 'αυτού , που πολλούς ρόλους στο ίδιο το χρήστη .
93 Ascending Αύξουσα
94 Assign To Εκχώρηση σε Ανάθεση σε
95 Assigned By Ανατέθηκε από
96 Assigned To Ανατέθηκε σε
97 Assigned To Fullname Ανατέθηκε σε Ονοματεπώνυμο
98 Assigned To/Owner Ανατέθηκε σε / Ιδιοκτήτης
99 Assignment Added εκχώρηση Προστέθηκε Προστέθηκε Ανάθεση
100 Assignment Status Changed Εκχώρηση Άλλαξε Η Κατάσταση Η ανάθεση άλλαξε κατάσταση
101 Assignments αναθέσεις Αναθέσεις
102 Attach Επισυνάψτε
103 Attach Document Print Συνδέστε Εκτύπωση εγγράφου
104 Attach as web link Να επισυναφθεί ως σύνδεσμο ιστού
948 Select User or DocType to start. Επιλέξτε το χρήστη ή DocType για να ξεκινήσει .
949 Select a Banner Image first. Επιλέξτε μια εικόνα banner πρώτα.
950 Select an image of approx width 150px with a transparent background for best results. Επιλέξτε μια εικόνα 150px πλάτους περ. με ένα διαφανές φόντο για καλύτερα αποτελέσματα.
951 Select dates to create a new Select dates to create a new
952 Select modules to be shown (based on permission). If hidden, they will be hidden for all users. Επιλέξτε ενότητες που πρέπει να δείξει ( με βάση την άδεια ) . Αν κρύβεται , θα είναι κρυμμένα για όλους τους χρήστες .
953 Select or drag across time slots to create a new event. Επιλέξτε ή σύρετε χρονοθυρίδες για να δημιουργήσετε ένα νέο συμβάν.
954 Select target = "_blank" to open in a new page. Επιλέξτε target = " _blank " για να ανοίξει σε μια νέα σελίδα .
1169 User Roles Ρόλοι Χρηστών
1170 User Tags Ετικέτες
1171 User Type Τύπος χρήστη
1172 User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages. User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages.
1173 User Vote Ψηφοφορία χρήστη
1174 User not allowed to delete {0}: {1} Ο χρήστης δεν επιτρέπεται να διαγράψετε {0}: {1}
1175 User permissions should not apply for this Link Δικαιώματα χρήστη δεν πρέπει να εφαρμόζονται για αυτή την σύνδεση

View file

@ -30,85 +30,85 @@ Add CSS,Añadir CSS
Add Column,Añadir columna
Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,"Añadir Google Analytics ID : ej . UA- 89XXX57 - 1 . Por favor, busca ayuda sobre Google Analytics para obtener más información ."
Add Message,Añadir Mensaje
Add New Permission Rule,Añadir nueva regla de permiso
Add Reply,Añadir respuesta
Add Total Row,Añadir fila Total
Add New Permission Rule,Añadir Nueva Regla de Permiso
Add Reply,Añadir Respuesta
Add Total Row,Añadir Fila Total
Add a New Role,Añadir un Nuevo Rol
Add a banner to the site. (small banners are usually good),Añadir un banner al sitio. (banners pequeños son mejores generalmente)
Add all roles,Agregar todos los roles
Add attachment,Agregar archivo adjunto
Add code as &lt;script&gt;,Añadir código como <script>
Add custom javascript to forms.,Añadir personalizada javascript formas .
Add code as &lt;script&gt;,Añadir código como
Add custom javascript to forms.,Añadir javascript personalizado las formas .
Add fields to forms.,Agregar campos a los formularios.
Add multiple rows,Añadir varias filas
Add new row,Añadir nueva fila
Add multiple rows,Añadir Varias Filas
Add new row,Añadir Nueva Fila
"Add the name of <a href=""http://google.com/webfonts"" target=""_blank"">Google Web Font</a> e.g. ""Open Sans""","Agregue el nombre del <a href=""http://google.com/webfonts"" target=""_blank""> Google Web Font < / a> por ejemplo, ""Open Sans """
Add to To Do,Añadir a Tareas
Add to To Do List Of,Agregar a la lista de tareas pendientes de
Add to To Do List Of,Agregar a la lista de tareas pendientes
Added {0} ({1}),Añadido: {0} ({1})
Adding System Manager to this User as there must be atleast one System Manager,Añadiendo el Administrador del sistema para este usuario ya que debe haber al menos un Responsable de Sistema
Additional Info,Información adicional
Additional Permissions,Permisos adicionales
Address,dirección
Adding System Manager to this User as there must be atleast one System Manager,Añadiendo el Administrador del sistema para este usuario ya que debe haber al menos un Administrador de Sistema
Additional Info,Información Adicional
Additional Permissions,Permisos Adicionales
Address,Dirección
Address Line 1,Dirección Línea 1
Address Line 2,Dirección Línea 2
Address Title,Dirección Título
Address and other legal information you may want to put in the footer.,Dirección y otra información legal es posible que desee poner en el pie de página.
Admin,administración
All Applications,Todas las aplicaciones
All Day,Todo el día
Address and other legal information you may want to put in the footer.,Dirección y otra información legal que desee poner en el pie de página.
Admin,Administración
All Applications,Todas las Aplicaciones
All Day,Todo el Día
All customizations will be removed. Please confirm.,Se eliminarán todas las personalizaciones. Por favor confirmar.
"All possible Workflow States and roles of the workflow. <br>Docstatus Options: 0 is""Saved"", 1 is ""Submitted"" and 2 is ""Cancelled""","Todos los posibles estados de flujo de trabajo y las funciones de flujo de trabajo. <br> Opciones DocStatus : 0 es ""salvado "" , 1 es "" Enviado "" y 2 está "" Cancelado """
Allow Attach,Permitir Adjuntar
Allow Import,Permitir la importación
Allow Import via Data Import Tool,Permitir la importación a través de herramientas de importación de datos
Allow Rename,Permitir Rename
Allow Import,Permitir la Importación
Allow Import via Data Import Tool,Permitir la importación a través de Herramientas de Importación de Datos
Allow Rename,Permitir Renombrar
Allow on Submit,Permitir en Enviar
Allow user to login only after this hour (0-24),Permitir que el usuario ingresa sólo después de esta hora ( 0-24)
Allow user to login only before this hour (0-24),Permitir que el usuario ingresa sólo antes de esta hora ( 0-24)
Allowed,mascotas
Allow user to login only after this hour (0-24),Permitir que el usuario ingrese sólo después de esta hora ( 0-24)
Allow user to login only before this hour (0-24),Permitir que el usuario ingrese sólo antes de esta hora ( 0-24)
Allowed,Permitido
"Allowing DocType, DocType. Be careful!","Permitir DocType , tipo de documento . ¡Ten cuidado!"
Already Registered,Ya está registrado
Already in user's To Do list,Ya en de usuario para hacer la lista
Already in user's To Do list,Ya en la Lista por Hacer del Usuario
Alternative download link,Enlace de descarga alternativo
"Alternatively, you can also specify 'auto_email_id' in site_config.json","Como alternativa, también se puede especificar ' auto_email_id ' en site_config.json"
Always use above Login Id as sender,Utilice siempre por encima de identificación de acceso como remitente
Amend,enmendar
Always use above Login Id as sender,Utilice siempre ID de Inicio de Sesión de arriba como remitente
Amend,Corregir
"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>]","Un archivo de icono con . Ico . En caso de ser de 16 x 16 píxeles . Generado usando un generador de favicon . [ <a href=""http://favicon-generator.org/"" target=""_blank""> favicon - generator.org < / a >]"
"Another {0} with name {1} exists, select another name","Otra {0} con el nombre {1} que existe, seleccione otro nombre"
Any existing permission will be deleted / overwritten.,Cualquier permiso existente se eliminará / sobrescribe.
"Another {0} with name {1} exists, select another name","Otra {0} con el nombre {1} existe, seleccione otro nombre"
Any existing permission will be deleted / overwritten.,Cualquier permiso existente se eliminará / reemplazara.
Anyone Can Read,Cualquiera puede leer
Anyone Can Write,Cualquiera puede escribir
"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Además de reglas de permisos basado en roles , puede aplicar permisos de usuario basado en de DocTypes ."
"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Además de reglas de permisos basado en roles , puede aplicar permisos de usuario basado en DocTypes ."
"Apart from System Manager, roles with 'Set User Permissions' right can set permissions for other users for that Document Type.","Además de administrador del sistema, papeles con derecho de establecer permisos de usuario ""pueden establecer permisos para otros usuarios de ese tipo de documento ."
App Name,Nombre de aplicación
App not found,App no encontrado
Application Installer,instalador de aplicaciones
App Name,Nombre de la Aplicación
App not found,Aplicación no encontrada
Application Installer,Instalador de Aplicaciones
Applications,Aplicaciones
Apply Style,Aplicar Estilo
Apply User Permissions,Aplicar permisos de usuario
Are you sure you want to delete the attachment?,¿Está seguro que desea eliminar el apego?
Are you sure you want to delete the attachment?,¿Está seguro que desea eliminar el adjunto?
Arial,Arial
"As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User.","Como práctica recomendada , no asigne el mismo conjunto de reglas permiso para diferentes funciones. En su lugar, establecer varias funciones al mismo usuario ."
"As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User.","Como práctica recomendada , no asigne el mismo conjunto de permisos para diferentes funciones. En su lugar, establecer varias funciones al mismo usuario ."
Ascending,Ascendente
Assign To,Asignar a
Assigned By,Asignado por
Assigned To,Asignado a
Assigned To Fullname,Asignado a Nombre completo
Assigned To Fullname,Asignado a Nombre Completo
Assigned To/Owner,Asignado a / Propietario
Assignment Added,Asignación de Alta
Assignment Status Changed,Estado Asignación cambió
Assignment Added,Asignación agregada.
Assignment Status Changed,Estado de Asignación Cambió
Assignments,Asignaciones
Attach,adjuntar
Attach Document Print,Adjuntar Documento Imprimir
Attach,Adjuntar
Attach Document Print,Adjuntar Documento para Imprimir
Attach as web link,Adjuntar como enlace web
Attached To DocType,Asociado A DocType
Attached To Name,Asociado A Nombre
Attachments,Adjuntos
Auto Email Id,Auto Identificación del email
Auto Name,Auto Nombre
Auto generated,generada Auto
Avatar,avatar
Auto Email Id,Auto Identificación del Correo
Auto Name,Nombre Automático
Auto generated,Generada Automaticamente
Avatar,Avatar
Back to Login,Volver a Inicio de Sesión
Background Color,Color de Fondo
Background Image,Imagen de Fondo
@ -124,17 +124,17 @@ Bio,Bio
Birth Date,Fecha de Nacimiento
Blog Category,Blog Categoría
Blog Intro,Intro al Blog
Blog Introduction,Blog Introducción
Blog Post,Entrada al Blog
Blog Settings,Configuración de blog
Blog Title,Título del blog
Blog Introduction,Presentación del Blog
Blog Post,Entrada en el Blog
Blog Settings,Configuración del Blog
Blog Title,Título del Blog
Blogger,Blogger
Bookmarks,marcadores
Both login and password required,Se requiere tanto usuario como contraseña
Brand HTML,HTML Marca
Bulk Email,"Correo Masivo
"
Bulk email limit {0} crossed,Límite de correo electrónico a granel {0} cruzado
Bulk email limit {0} crossed,Límite de correo electrónico masivo {0} sobrepasado
Button,Botón
By,por
Calculate,Calcular
@ -142,7 +142,7 @@ Calendar,Calendario
Cancel,Cancelar
Cancelled,Cancelado
"Cannot Edit {0} directly: To edit {0} properties, create / update {1}, {2} and {3}","No se puede modificar {0} directamente : Para editar {0} propiedades , crear / actualizar {1}, {2} y {3}"
Cannot Update: Incorrect / Expired Link.,No se puede actualizar : Link incorrecta / expirada .
Cannot Update: Incorrect / Expired Link.,No se puede actualizar : Link incorrecto / caducado .
Cannot Update: Incorrect Password,No se puede actualizar : Contraseña incorrecta
Cannot add more than 50 comments,No se puede añadir más de 50 comentarios
Cannot cancel before submitting. See Transition {0},No se puede cancelar antes de enviar .
@ -152,32 +152,32 @@ Cannot change {0},No se puede cambiar {0}
Cannot delete or cancel because {0} {1} is linked with {2} {3},No se puede eliminar o cancelar porque {0} {1} está vinculado con {2} {3}
Cannot delete {0} as it has child nodes,"No se puede eliminar {0} , ya que tiene nodos secundarios"
Cannot edit standard fields,No se puede editar campos estándar
Cannot map because following condition fails: ,No se puede asignar por la condición siguiente falla:
Cannot open instance when its {0} is open,No se puede abrir instancia cuando su {0} es abierto
Cannot open {0} when its instance is open,No se puede abrir {0} cuando su instancia está abierto
Cannot map because following condition fails: ,No se puede asignar porque la condición siguiente falla:
Cannot open instance when its {0} is open,No se puede abrir instancia cuando su {0} esta abierto/a
Cannot open {0} when its instance is open,No se puede abrir {0} cuando su instancia está abierto/a
Cannot print cancelled documents,No se pueden imprimir documentos cancelados
Cannot remove permission for DocType: {0} and Name: {1},No se puede quitar el permiso de tipo de documento : {0} y nombre: {1}
Cannot remove permission for DocType: {0} and Name: {1},No se puede quitar el permiso para tipo de documento : {0} y nombre: {1}
Cannot reply to a reply,No se puede responder a una respuesta
Cannot set Email Alert on Document Type {0},No se puede establecer una alerta de correo electrónico en Tipo de documento {0}
Cannot set permission for DocType: {0} and Name: {1},No se puede establecer el permiso de tipo de documento : {0} y nombre: {1}
Categorize blog posts.,Clasificar las entradas de blog.
Categorize blog posts.,Clasificar las entradas del blog.
Category,Categoría
Category Name,Nombre Categoría
Center,Centro
"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.","Algunos documentos , como una factura , no se deben cambiar una vez final. El estado final de dichos documentos se llama Enviado . Puede restringir qué roles pueden Submit."
"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.","Algunos documentos , como una Factura , no se deben cambiar una vez finalizados. El estado final de dichos documentos se llama Presentado . Puede restringir qué roles pueden Presentar Documentos"
"Change field properties (hide, readonly, permission etc.)","Cambiar las propiedades de campo (ocultar , de sólo lectura , permisos , etc )"
Chat,Chat
Check,comprobar
Check / Uncheck roles assigned to the User. Click on the Role to find out what permissions that Role has.,Marcar / desmarcar roles asignados al usuario . Haga clic sobre el papel para averiguar los permisos que ese papel lo ha hecho.
Check,Marcar
Check / Uncheck roles assigned to the User. Click on the Role to find out what permissions that Role has.,Marcar / Desmarcar roles asignados al usuario . Haga clic sobre el Rol para averiguar los permisos que ese Rol posee.
Check this if you want to send emails as this id only (in case of restriction by your email provider).,Seleccione esta opción si desea enviar mensajes de correo electrónico como este id único (en caso de restricción de su proveedor de correo electrónico).
Check this to make this the default letter head in all prints,Active esta opción para hacer que esta cabeza de la letra por defecto en todas las impresiones
Check which Documents are readable by a User,Compruebe qué documentos pueden ser leídos por un usuario
Check which Documents are readable by a User,Marque que documentos pueden ser leídos por un usuario
Checked items shown on desktop,Los elementos seleccionados se muestran en el escritorio
Child Tables are shown as a Grid in other DocTypes.,Tablas secundarias se muestran como una cuadrícula en otras de DocTypes .
City,Ciudad
Classic,Clásico
Clear Cache,Borrar la caché
Clear all roles,Desactive todas las funciones
Clear all roles,Desactive todos los roles
Click on a link to get options,Haga clic en un enlace para obtener opciones
Click on row to view / edit.,Haga clic en la fila para ver / editar .
Client,Cliente
@ -186,23 +186,23 @@ Close,Cerrar
Close: {0},Cerrar: {0}
Closed,Cerrado
Code,Código
Collapse,Colapso
Collapse,Colapsar
Column Break,Salto de columna
Comment,Comentario
Comment By,Comentario por
Comment By Fullname,Comentario Por Nombre completo
Comment By,Comentado por
Comment By Fullname,Comentado Por Nombre completo
Comment Date,"Fecha de Comentario
"
Comment Docname,docName Comentario
Comment Docname,Docname del Comentario
Comment Doctype,Doctype Comentario
Comment Time,Tiempo Comentario
Comments,Comentarios
Communication,comunicación
Communication Medium,Comunicación Medio
Communication,Comunicación
Communication Medium,Medio de Comunicación
Company History,Historia de la empresa
Company Introduction,Empresa Introducción
Company Introduction,Presentación de la Empresa
Complaint,Queja
Complete By,Por completo
Complete By,Completado Por
Condition,Condición
Contact Us Settings,Contáctenos Configuración
"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opciones de contacto , como "" Ventas de consultas , Soporte de consultas"" , etc cada uno en una nueva línea o separados por comas."
@ -211,8 +211,8 @@ Content Hash,Hash contenido
Content in markdown format that appears on the main side of your page,El contenido en formato Markdown que aparece en la parte principal de su página
Content web page.,Contenido de la página web.
Controller,controlador
Copy,copia
Copyright,Derechos de autor
Copy,Copia
Copyright,Derechos de Autor
Core,Núcleo
Could not connect to outgoing email server,No se pudo conectar con el servidor de correo electrónico saliente
Could not find {0},No se pudo encontrar {0}
@ -226,10 +226,10 @@ Created Opportunity,Creado Oportunidad
Created Support Ticket,Ticket Creado
Creation / Modified By,Creación / modificación realizada por
Currency,Divisa
Current status,Situación actual
Current status,Situación Actual
Custom CSS,CSS personalizado
Custom Field,campo personalizado
Custom Javascript,Custom Javascript
Custom Field,Campo Personalizado
Custom Javascript,Javascript Personalizado
Custom Reports,Informes personalizados
Custom Script,secuencia de personalización
Custom?,Personalizado?
@ -237,7 +237,7 @@ Customize,Personalizar
Customize Form,Personalizar Formulario
Customize Form Field,Personalizar Campos de Formulario
"Customize Label, Print Hide, Default etc.","Personaliza etiquetas, impresión Hide , Default , etc"
Customized HTML Templates for printing transctions.,Plantillas HTML personalizados para transctions impresión.
Customized HTML Templates for printing transctions.,Plantillas HTML personalizados para imprimir transacciones.
Daily Event Digest is sent for Calendar Events where reminders are set.,Resumen diario de eventos se envía para Eventos en el Calendario donde se configura recordatorios.
Danger,Peligro
Data,Datos
@ -248,7 +248,7 @@ Date,Fecha
Date Change,Cambio de fecha
Date Changed,Fecha Modificado
Date Format,Formato de la fecha
Date and Number Format,Fecha y Formato de número
Date and Number Format,Formato de Fecha y Número
Date must be in format: {0},La fecha debe estar en formato : {0}
Datetime,Fecha y hora
Days in Advance,Días de anticipación
@ -312,44 +312,44 @@ Due Date,Fecha de vencimiento
Duplicate name {0} {1},Nombre duplicado {0} {1}
Dynamic Link,Enlace Dinámico
ERPNext Demo,ERPNext demo
Edit,editar
Edit,Editar
Edit Permissions,Editar permisos
Editable,editable
Editable,Editable
Email,Email
Email Alert,Alerta de Correo
Email Alert Recipient,Email destinatario Alerta
Email Alert Recipients,Destinatarios de las Alertas de correo electrónico
Email By Document Field,Email Por Documento Campo
Email Footer,Email Footer
Email Host,email al anfitrión
Email Alert,Alerta por Email
Email Alert Recipient,Destinatario Alerta Email
Email Alert Recipients,Destinatarios Alerta Email
Email By Document Field,Email Por Campo Documento
Email Footer,Pie Email
Email Host,Hospedaje Email
Email Id,Identificación del email
Email Login,Email Login
Email Password,Correo electrónico Contraseña
Email Password,Contraseña Email
Email Sent,Correo electrónico enviado
Email Settings,Configuración del correo electrónico
Email Signature,Email Firma
Email Use SSL,Email Usar SSL
Email address,dirección de correo electrónico
Email Signature,Firma Email
Email Use SSL,Usar SSL en Email
Email address,Dirección de correo electrónico
"Email addresses, separted by commas","Direcciones de correo electrónico , separted por comas"
Email not verified with {1},Enviar no verificado con {1}
Email not verified with {1},Email no verificado con {1}
Email sent to {0},Correo electrónico enviado a {0}
Email...,Email ...
Emails are muted,Los correos electrónicos se silencian
Embed image slideshows in website pages.,Presentaciones de imágenes Incrustar en páginas web .
Enable,permitir
Embed image slideshows in website pages.,Presentacion de imágenes incrustadas en páginas web .
Enable,Habilitar
Enable Comments,Habilitar Comentarios
Enable Scheduled Jobs,Habilitar tareas programadas
Enabled,Activado
Ends on,finaliza el
Enter Form Type,Escriba Tipo de formulario
Enabled,Habilitado
Ends on,Finaliza el
Enter Form Type,Introduzca Tipo de formulario
Enter Value,Introducir valor
Enter at least one permission row,Ingrese al menos una fila permiso
Enter at least one permission row,Introduzca al menos una fila permiso
"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 <a href=""#Form/Customize Form/Customize Form"">Customize Form</a>.","Introduzca los campos de valores por defecto (claves) y valores. Si agrega varios valores para un campo, el primero de ellos será elegido . Estos valores por omisión también se utilizan para establecer "" match"" reglas de permisos . Para ver la lista de campos , vaya a <a href=""#Form/Customize Form/Customize Form""> Personalizar formulario < / a> ."
"Enter keys to enable login via Facebook, Google, GitHub.","Enter para activar la conexión a través de Facebook, Google , GitHub ."
"Enter keys to enable login via Facebook, Google, GitHub.","Introduzca las claves para habilitar login a través de Facebook, Google , GitHub ."
Equals,Iguales
Error,error
Error,Error
"Error generating PDF, attachment sent as HTML","Error de generación de PDF, adjuntos enviados como HTML"
Error: Document has been modified after you have opened it,Error : El documento se ha modificado después de que has abierto
Error: Document has been modified after you have opened it,Error : El documento se ha modificado después de que lo hayas abierto
Event,Evento
Event Datetime,Evento de fecha y hora
Event Individuals,Los individuos de eventos
@ -416,7 +416,7 @@ Font Size,Tamaño de la Fuente
Font Size (Text),Tamaño de fuente ( Texto)
Fonts,Fuentes
Footer,Pie de Página
Footer Background,Pie de Página de fondo
Footer Background,Fondo de Pie de Página
Footer Items,Elementos del Pie de Página
Footer Text,Texto del Pie de Página
For DocType,Por tipo de documento
@ -437,10 +437,10 @@ Friday,Viernes
From Date must be before To Date,Desde la fecha debe ser antes de la fecha
Full Name,Nombre Completo
Gantt Chart,Diagrama de Gantt
Gender,género
Generator,generador
Gender,Género
Generator,Generador
Georgia,Georgia
Get,conseguir
Get,Conseguir
Get From ,Obtener de
"Get your globally recognized avatar from <a href=""https://gravatar.com/"">Gravatar.com</a>","Obtenga su avatar global de <a href=""https://gravatar.com/""> Gravatar.com </ a>"
GitHub,GitHub
@ -453,15 +453,15 @@ Google Analytics ID,Google Analytics ID
Google Client ID,Google Client ID
Google Client Secret,Google Client Secret
Google Plus One,Google Plus One
Google User ID,Google ID de usuario
Google User ID,Google User ID
Google Web Font (Heading),Google Web Font (partida )
Google Web Font (Text),Google Web Font (Texto )
Greater or equals,Mayor o igual que
Greater than,más que
Greater than,Mayor a
"Group Added, refreshing...","Grupo Agregado , refrescante ..."
Group Description,Descripción del Grupo
Group Name,Nombre del grupo
Group Title,Grupo Título
Group Name,Nombre del Grupo
Group Title,Título del Grupo
Group Type,Tipo de grupo
Groups,Grupos
HTML for header section. Optional,HTML para la sección de encabezado. opcional
@ -498,8 +498,8 @@ Ignore User Permissions,No haga caso de los permisos de usuario
Image,imagen
Image Link,Enlace a la imagen
Import,importación
Import / Export Data,Importar / Exportar datos
Import / Export Data from .csv files.,Importar / Exportar Datos de . Csv .
Import / Export Data,Importar / Exportar Datos
Import / Export Data from .csv files.,Importar / Exportar Datos desde archivos .csv
In,en
In Dialog,En diálogo
In Filter,En Filtro
@ -509,19 +509,19 @@ In points. Default is 9.,En puntos. El valor predeterminado es 9.
In response to,En respuesta a
Incorrect value in row {0}: {1} must be {2} {3},Valor incorrecto en la fila {0}: {1} debe ser {2} {3}
Incorrect value: {0} must be {1} {2},Valor incorrecto: {0} debe ser {1} {2}
Index,Indice
Index,Índice
Individuals,individuos
Info,Información
Insert After,insertar después
Insert After,insertar Después
"Insert After field '{0}' mentioned in Custom Field '{1}', does not exist","Inserte Después campo '{0}' se ha mencionado en el Campo Personalizado ' {1}' , no existe"
Insert Below,Inserte Abajo
Insert Below,Insertar Abajo
Insert Code,Insertar Código
Insert Row,Insertar Fila
Insert Style,Inserte Estilo
Install Applications.,Instalación de aplicaciones .
Install Applications.,Instalación de Aplicaciones
Installed,Instalado
Installer,Instalador
Int,Int.
Int,Int
Integrations,Integraciones
Introduce your company to the website visitor.,Dar a conocer su empresa al visitante del sitio Web .
Introduction,Introducción
@ -542,7 +542,7 @@ Is Mandatory Field,Es Campo Obligatorio
Is Single,Es Individual
Is Standard,Es Estándar
Is Submittable,Es submittable
Is Task,es tarea
Is Task,Es Tarea
Item cannot be added to its own descendents,El artículo no se puede añadir a sus propios descendientes
JavaScript Format: frappe.query_reports['REPORTNAME'] = {},JavaScript Formato: frappe.query_reports [' REPORTNAME '] = { }
Javascript,Javascript
@ -555,12 +555,12 @@ Label is mandatory,Etiqueta es obligatoria
Landing Page,la página de destino
Language,Idioma
Language preference for user interface (only if available).,Preferencia de idioma para la interfaz de usuario (sólo si está disponible) .
"Language, Date and Time settings","Ajustes de idioma, fecha y hora"
"Language, Date and Time settings","Ajustes de Idioma, Fecha y Hora"
Last IP,Última IP
Last Login,Último ingreso
Last Name,Apellido
Last updated by,Última actualización de
Lastmod,lastmod
Last updated by,Última actualización por
Lastmod,Lastmod
Lato,Lato
Leave blank to repeat always,Dejar en blanco para repetir siempre
Left,Izquierda
@ -578,13 +578,13 @@ Link,Vinculo
Link to other pages in the side bar and next section,Enlace a otras páginas en la barra lateral y sección siguiente
Link to the page you want to open,Enlace a la página que desea abrir
Linked In Share,Compartir en LinkedIn
Linked With,Vinculado con
Linked With,Vinculado Con
List,Lista
List a document type,Incluya un tipo de documento
List of Web Site Forum's Posts.,Lista de Mensajes de Web Foro Sitio.
Loading,loading
Loading,Cargando
Loading Report,Cargando Reportar
Loading...,Loading ...
Loading...,Cargando ...
Localization,Localización
Location,Ubicación
Log of error on automated events (scheduler).,Log de error en eventos automáticos ( planificador ) .
@ -600,7 +600,7 @@ Lucida Grande,Lucida Grande
Mail Password,mail Contraseña
Main Section,Sección Principal
Make a new,Hacer una nueva
Make a new record,Hacer un nuevo récord
Make a new record,Hacer un nuevo registro
Male,Masculino
Manage cloud backups on Dropbox,Administrar copias de seguridad de nubes en Dropbox
Manage uploaded files.,Administrar los archivos subidos.
@ -608,19 +608,19 @@ Mandatory,obligatorio
Mandatory fields required in {0},Los campos obligatorios requeridos en {0}
Mandatory filters required:\n,Filtros obligatorios exigidos: \ n
Master,Maestro
Max Attachments,Número máximo de archivos adjuntos
Max Attachments,Máximo de Adjuntos
Max width for type Currency is 100px in row {0},Anchura máxima para el tipo de moneda es 100px en la fila {0}
"Meaning of Submit, Cancel, Amend","Significado de Enviar, cancelación, rectificación"
Medium,Medio
"Menu items in the Top Bar. For setting the color of the Top Bar, go to <a href=""#Form/Style Settings"">Style Settings</a>","Los elementos de menú en la barra superior. Para ajustar el color de la barra de Inicio , vaya a <a href=""#Form/Style Settings""> Ajustes Style < / a>"
Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,La fusión sólo es posible entre el Grupo - a - grupo o la hoja de nodo - a - nodo de la hoja
Message,Mensaje
Message Examples,Ejemplos de mensajes
Message Examples,Ejemplos de Mensajes
Messages,Mensajes
Method,método
Method,Método
Middle Name (Optional),Segundo Nombre ( Opcional)
Misc,Misc
Miscellaneous,diverso
Misc,Varios
Miscellaneous,Varios
Missing Values Required,Valores perdidos requeridos
Modern,Moderno
Modified by,Modificado por
@ -637,7 +637,7 @@ Move Up: {0},Move Up : {0}
Multiple root nodes not allowed.,Nodos raíz múltiples no permitidos.
Must have report permission to access this report.,Debe tener informe de permiso para acceder a este informe.
Must specify a Query to run,Debe especificar una consulta para ejecutar
My Settings,Mis Opciones
My Settings,Mi Configuración
Name,Nombre
Name Case,Nombre del Caso
Name and Description,Nombre y descripción
@ -660,7 +660,7 @@ Next Communcation On,Siguiente Communcation On
Next Record,próximo registro
Next State,Siguiente Estado
Next actions,próximas acciones
No,no
No,Ningún
No Action,Ninguna acción
No Communication tagged with this ,No hay comunicación etiquetado con este
No Copy,No Copy
@ -708,18 +708,18 @@ Notification Count,Conde Notificación
Notify by Email,Notificarme por e-Mail
Number Format,Formato de número
Old Parent,Antiguo Padres
On,en
"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Una vez que haya establecido esto, los usuarios sólo tendrán acceso a los documentos que puedan (por ejemplo, Entrada de blog ) donde se encuentra el enlace (por ejemplo, Blogger ) ."
Only Administrator allowed to create Query / Script Reports,Administrador con permiso para crear consultas / informes de secuencias de comandos
On,Encendido
"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Una vez que haya establecido esto, los usuarios sólo tendrán acceso a los documentos que puedan (por ejemplo, Entrada de blog ) donde se encuentra la relación (por ejemplo, Blogger ) ."
Only Administrator allowed to create Query / Script Reports,Solo el Administrador puede crear consultas / Informes de Secuencias de Comandos
Only Administrator can save a standard report. Please rename and save.,"Sólo el administrador puede guardar un informe estándar. Por favor, cambie el nombre y guardar."
Only Allow Edit For,Sólo Permitir Editar Para
Only allowed {0} rows in one import,{0} filas autorizada únicamente en una importación
Only allowed {0} rows in one import,Soló esta filas {0} permitidas para una importación
Oops! Something went wrong,Oups! Algo salió mal
Open,abierto
Open Count,Abrir Conde
Open,Abierto
Open Count,Abrir Cuenta
Open Sans,Abrir Sans
Open Source Web Applications for the Web,Open Source Aplicaciones Web para la Web
Open a module or tool,Abra un módulo o herramienta
Open a module or tool,Abra un Módulo o Herramienta
Open {0},Abrir {0}
Optional: Alert will only be sent if value is a valid email id.,Opcional: Alerta sólo se enviará si el valor es un identificador de correo electrónico válida.
Optional: Always send to these ids. Each email id on a new row,Opcional: Enviar siempre a estos identificadores. Cada correo electrónico de identificación en una nueva fila
@ -734,11 +734,11 @@ Options requried for Link or Table type field {0} in row {1},Opciones requried d
Org History,org Historia
Org History Heading,Org Historia Heading
Original Message,Mensaje Original
Other,otro
Other,Otro
Outgoing Email Settings,Configuración del correo electrónico saliente
Outgoing Mail Server,Servidor de correo saliente
Outgoing Mail Server not specified,Servidor de correo saliente no especificada
Owner,propietario
Outgoing Mail Server,Servidor de Correo Saliente
Outgoing Mail Server not specified,Servidor de Correo Saliente no Especificada
Owner,Propietario
PDF Page Size,Tamaño de Página PDF
PDF Settings,Configuración de PDF
POP3 Mail Server (e.g. pop.gmail.com),POP3 Mail Server (por ejemplo pop.gmail.com )
@ -855,28 +855,28 @@ Pull Emails from the Inbox and attach them as Communication records (for known c
Query,Consulta
Query Options,Opciones de consulta
Query Report,Informe de consultas
Query must be a SELECT,Consulta debe ser un SELECT
Quick Help for Setting Permissions,Ayuda Rápida para Establecer permisos
Quick Help for User Permissions,Ayuda rápida para los permisos de usuario
Query must be a SELECT,Debe seleccionar la Consulta
Quick Help for Setting Permissions,Ayuda Rápida para Establecer Permisos
Quick Help for User Permissions,Ayuda Rápida para los Permisos de Usuario
Re-open,Vuelva a abrir
Read,Lectura
Read Only,Sólo Lectura
Received,recibido
Recipient,beneficiario
Recipients,destinatarios
Received,Recibido
Recipient,Beneficiario
Recipients,Destinatarios
Record does not exist,Registro no existe
Ref DocType,DocType Ref
Ref DocType,Referencia Tipo de Documento
Ref Name,Nombre Ref
Ref Type,Tipo Ref
Reference,referencia
Reference,Referencia
Reference DocName,Referencia DocNombre
Reference DocType,Referencia DocType
Reference Name,Referencia Nombre
Reference Type,Tipo de referencia
Reference Type,Tipo de Referencia
Refresh,Actualizar
Refreshing...,Refrescante ...
Refreshing...,Actualizando...
Registered but disabled.,"De registro , pero está deshabilitado ."
Registration Details Emailed.,Detalles del registro enviadas por correo electrónico .
Registration Details Emailed.,Detalles del Registro enviadas por Correo Electrónico .
Reload Page,recargar página
Remove Bookmark,Retire Bookmark
Remove all customizations?,Retire todas las personalizaciones ?
@ -885,14 +885,14 @@ Rename...,Cambiar el nombre de ...
Repeat On,Repeat On
Repeat Till,Repita Hasta
Repeat this Event,Repita este Evento
Replies,respuestas
Report,informe
Replies,Respuestas
Report,Informe
Report Builder,Generador de informes
Report Builder reports are managed directly by the report builder. Nothing to do.,Informes del Generador de informes son enviadas por el generador de informes . No hay nada que hacer.
Report Hide,Ocultar Informe
Report Name,Nombre del informe
Report Type,Tipo de informe
Report an Issue,Informar un problema
Report an Issue,Informar un Problema
Report cannot be set for Single types,Reportar no se puede configurar para los tipos individuales
Report this issue,Señalar este tema
Report was not saved (there were errors),Informe no se guardó ( hubo errores )
@ -914,7 +914,7 @@ Roles Assigned To User,Roles asignados a Usuario
Roles HTML,Roles HTML
Roles can be set for users from their User page.,Las funciones se pueden configurar para los usuarios de su página de usuario .
Root {0} cannot be deleted,Raíz {0} no se puede eliminar
Row,fila
Row,Fila
Row #{0}:,Fila # {0}:
Rules defining transition of state in the workflow.,Reglas que definen la transición de estado del flujo de trabajo .
"Rules for how states are transitions, like next state and which role is allowed to change state etc.","Reglas para cómo los estados son las transiciones , como el siguiente estado y qué papel se le permite cambiar de estado , etc"
@ -950,7 +950,7 @@ Select Type,Seleccione el tipo de
Select User or DocType to start.,Seleccionar usuario o tipo de documento para empezar.
Select a Banner Image first.,Seleccione una imagen de encabezado primero .
Select an image of approx width 150px with a transparent background for best results.,Seleccione una imagen de ancho aprox 150px con fondo transparente para obtener mejores resultados .
Select dates to create a new ,
Select dates to create a new ,Select dates to create a new
"Select modules to be shown (based on permission). If hidden, they will be hidden for all users.","Seleccione los módulos que expondrá ( basado en el permiso) . Si oculta , se oculta para todos los usuarios ."
Select or drag across time slots to create a new event.,Seleccione o arrastre a través de los intervalos de tiempo para crear un nuevo evento.
"Select target = ""_blank"" to open in a new page.","Select target = "" _blank"" para abrir en una nueva página."
@ -958,11 +958,11 @@ Select the label after which you want to insert new field.,Seleccione la etiquet
Send,Enviar
Send Alert On,Enviar Alerta en
Send As Email,Enviar como correo electrónico
Send Email,Enviar Email
Send Email,Enviar Correo Electronico
Send Email Print Attachments as PDF (Recommended),Enviar Email Imprimir adjuntos en formato PDF (recomendado)
Send Me A Copy,Enviarme una copia
Send Password,Enviar contraseña
Send Print as PDF,Enviar Imprimir en PDF
Send Print as PDF,Enviar Impresión como PDF
Send alert if date matches this field's value,Envíe la alarma si la fecha coincide con el valor de este campo
Send alert if this field's value changes,Enviar alerta si cambia el valor de este campo
Send an email reminder in the morning,Enviar un recordatorio por correo electrónico en la mañana
@ -1099,7 +1099,7 @@ These values will be automatically updated in transactions and also will be usef
Third Party Authentication,Tercer partido de autenticación
This field will appear only if the fieldname defined here has value OR the rules are true (examples): <br>myfieldeval:doc.myfield=='My Value'<br>eval:doc.age>18,Este campo sólo aparecerá si el nombre del campo definido de aquí tiene valor o las reglas son verdaderas (ejemplos): <br> myfield eval: doc.myfield == 'Mi Value' <br> eval: doc.age> 18
This goes above the slideshow.,Esto va por encima de la presentación de diapositivas.
This is PERMANENT action and you cannot undo. Continue?,Esta es una acción permanente y no se puede deshacer . ¿Desea continuar?
This is PERMANENT action and you cannot undo. Continue?,Esta es una acción PERMANENTE y no se puede deshacer . ¿Desea continuar?
"This is a standard format. To make changes, please copy it make make a new format.","Este es un formato estándar. Para realizar cambios, por favor cópielo hacer hacer un nuevo formato."
This is permanent action and you cannot undo. Continue?,Esta es una acción permanente y no se puede deshacer . ¿Desea continuar?
This must be checked if Style Settings are applicable,Esto se debe comprobar si la configuración de estilo son aplicables
@ -1136,42 +1136,42 @@ Tweet will be shared via your user account (if specified),Tweet será compartida
Twitter Share,Compartir en Twitter
Twitter Share via,Twitter Compartir a través de
Type,Tipo
Unable to find attachment {0},No es posible encontrar el apego {0}
Unable to find attachment {0},No es posible encontrar adjunto {0}
Unable to load: {0},No se puede cargar : {0}
Unable to open attached file. Please try again.,"No se puede abrir el archivo adjunto. Por favor, inténtelo de nuevo."
Unable to send emails at this time,No se pueden enviar mensajes de correo electrónico en este momento
Unknown Column: {0},Desconocido Columna: {0}
"Unknown file encoding. Tried utf-8, windows-1250, windows-1252.","Codificación de archivo desconocido . Intentado utf- 8 , Windows -1250 , windows-1252 ."
Unread Messages,Los mensajes no leídos
Unread Messages,Mensajes no leídos
Unsubscribe,Cancelar la suscripción
Unsubscribed,no suscribirse
Upcoming Events for Today,Eventos para Hoy
Update,actualización
Update,Actualización
Update Field,Actualizar campos
Update Value,Update Valor
Update Value,Actualizar Valor
Updated,actualizado
Upload,subir
Upload Attachment,carga de archivos adjuntos
Upload,Subir
Upload Attachment,Subir Archivos Adjuntos
Upload CSV file containing all user permissions in the same format as Download.,Subir archivo CSV que contiene todos los permisos de usuario en el mismo formato que en Descargar.
Upload a file,Subir un archivo
Upload and Import,Subir e importar
Upload and Import,Subir e Importar
Upload and Sync,Carga y Sincronización
Uploading...,Subiendo ...
Upvotes,upvotes
Use TLS,Utilice TLS
User,usuario
User,Usuario
User Cannot Create,El usuario no puede crear
User Cannot Search,El usuario no puede buscar
User Defaults,predeterminadas del usuario
User ID of a blog writer.,ID de usuario de un escritor de blog.
User Image,Imagen de Usuario
User Permission,El permiso de usuario
User Permission,Permiso de Usuario
User Permissions,Permisos de usuario
User Permissions Manager,Permisos de usuario Administrador
User Roles,funciones de usuario
User Tags,Nube de etiquetas
User Type,Tipo de usuario
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ",
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ","User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. "
User Vote,Vota usuario
User not allowed to delete {0}: {1},El usuario no permite eliminar {0}: {1}
User permissions should not apply for this Link,Los permisos de usuario no deben aplicarse para este enlace
@ -1236,24 +1236,24 @@ Year,Año
Yes,
Yesterday,Ayer
You are not allowed to create / edit reports,No se le permite crear / editar reportes
You are not allowed to export the data of: {0}. Downloading empty template.,No se le permite exportar los datos de : {0} . Descargando plantilla vacía .
You are not allowed to export this report,No se le permite exportar este informe
You are not allowed to export the data of: {0}. Downloading empty template.,No se le permite exportar los datos de: {0} . Descargando plantilla vacía.
You are not allowed to export this report,No se le permite exportar este reporte
You are not allowed to print this document,No está autorizado a imprimir este documento
You are not allowed to send emails related to this document,Usted no tiene permiso para enviar mensajes de correo electrónico relacionados con este documento
"You can change Submitted documents by cancelling them and then, amending them.","Puede cambiar los documentos presentados por la cancelación de ellos y luego , de enmendarlos."
"You can change Submitted documents by cancelling them and then, amending them.","Puede cambiar los documentos Enviados cancelándolos y luego, haciendo los cambios pertinentes."
You can use Customize Form to set levels on fields.,Usted puede utilizar Personalizar formulario para establecer los niveles de los campos .
You can use wildcard %,Puede utilizar caracteres comodín%
You cannot install this app,No se puede instalar esta aplicación
You have unsaved changes in this form. Please save before you continue.,Usted tiene cambios sin guardar en este formulario.
You need to be logged in and have System Manager Role to be able to access backups.,Necesitas estar conectado y tener el Administrador del sistema de funciones para poder tener acceso a las copias de seguridad .
You have unsaved changes in this form. Please save before you continue.,Usted tiene cambios sin guardar en este formulario. Por favor dale a guardar antes de continuar.
You need to be logged in and have System Manager Role to be able to access backups.,"Necesitas estar conectado y tener rol de Administrador del Sistema, para poder tener acceso a las copias de seguridad ."
You need write permission to rename,Usted necesita permiso de escritura para cambiar el nombre
You seem to have written your name instead of your email. \ Please enter a valid email address so that we can get back.,"Parece que ha escrito su nombre en lugar de su correo electrónico. \ Por favor, introduce una dirección de email válida para que podamos volver."
"Your download is being built, this may take a few moments...","Su descarga se está construyendo , esto puede tardar unos minutos ..."
You seem to have written your name instead of your email. \ Please enter a valid email address so that we can get back.,"Parece que ha escrito su nombre en lugar de su correo electrónico. \ Por favor, introduce una dirección de email válida para que podamos volver a contactarte."
"Your download is being built, this may take a few moments...","Se está generando su descarga, esto puede tardar unos minutos..."
[Label]:[Field Type]/[Options]:[Width],[ Label ] : [ Tipo de Campo] / [ Opciones] : [Ancho ]
[Optional] Send the email X days in advance of the specified date. 0 equals same day.,[Opcional] Enviar los días email X antes de la fecha especificada. 0 es igual mismo día.
add your own CSS (careful!),añada su propio CSS ( ¡cuidado! )
adjust,ajustar
align-center,align -center
add your own CSS (careful!),Añada su propio CSS ( ¡cuidado! )
adjust,Ajustar
align-center,align - centrado
align-justify,alinear - justificar
align-left,alinear -izquierda
align-right,alinear a la derecha
@ -1264,7 +1264,7 @@ arrow-right,arrow-right
arrow-up,flecha hacia arriba
asterisk,asterisco
backward,hacia atrás
ban-circle,círculo-prohibición
ban-circle,Círculo-Prohibición
barcode,código de barras
beginning with,a partir de
bell,campana
@ -1294,8 +1294,8 @@ dd/mm/yyyy,dd / mm / aaaa
download,descargar
download-alt,descargar -alt
edit,editar
eject,expulsar
envelope,sobre
eject,Expulsar
envelope,Sobre
exclamation-sign,exclamación signo
eye-close,ojo -cierre
eye-open,- ojo abierto
@ -1311,8 +1311,8 @@ folder-close,carpeta de cerca
folder-open,- carpeta abierta
font,Fuente
forward,adelante
found,fundar
fullscreen,fullscreen
found,encontrado
fullscreen,pantalla completa
gift,regalo
glass,vidrio
globe,globo
@ -1342,13 +1342,13 @@ map-marker,mapa del marcador
memcached is not working / stopped. Please start memcached for best results.,"memcached no funciona / se detuvo. Por favor, inicie memcached para obtener mejores resultados ."
minus,menos
minus-sign,signo menos
mm-dd-yyyy,dd-mm- aaaa
mm/dd/yyyy,mm / dd / aaaa
move,movimiento
mm-dd-yyyy,mm-dd-aaaa
mm/dd/yyyy,mm/dd/aaaa
move,mover
music,música
none of,ninguno de
off,apagado
ok,bueno
off,Apagado
ok,Bueno
ok-circle,ok- círculo
ok-sign,ok- signo
one of,uno de
@ -1362,14 +1362,14 @@ play-circle,play- círculo
plus,más
plus-sign,signo más
print,impresión
qrcode,qrcode
question-sign,pregunta signo
qrcode,Código QR
question-sign,Consultar Firma
random,azar
refresh,refrescar
remove,eliminar
remove-circle,eliminar el efecto de círculo
remove-sign,eliminar el efecto de signo
repeat,repetición
repeat,Repetir
resize-full,cambiar el tamaño completo
resize-horizontal,cambiar el tamaño horizontal
resize-small,cambiar el tamaño pequeño
@ -1402,7 +1402,7 @@ thumbs-up,pulgar hacia arriba
time,tiempo
tint,tinte
to,a
trash,Basura
trash,basura
upload,subir
use % as wildcard,Use% como comodín
user,usuario
@ -1414,11 +1414,9 @@ volume-off,volumen de despegue
volume-up,volumen -up
warning-sign,advertencia signo
wrench,llave inglesa
yyyy-mm-dd,aaaa- mm -dd
zoom-in,"Acercar Vista
"
zoom-out,"Alejar Vista
"
yyyy-mm-dd,aaaa-mm-dd
zoom-in,Acercar
zoom-out,Alejar
{0} List,{0} Lista
{0} added,{0} agregado
{0} by {1},{0} por {1}

1 by Role por función
30 Add Column Añadir columna
31 Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information. Añadir Google Analytics ID : ej . UA- 89XXX57 - 1 . Por favor, busca ayuda sobre Google Analytics para obtener más información .
32 Add Message Añadir Mensaje
33 Add New Permission Rule Añadir nueva regla de permiso Añadir Nueva Regla de Permiso
34 Add Reply Añadir respuesta Añadir Respuesta
35 Add Total Row Añadir fila Total Añadir Fila Total
36 Add a New Role Añadir un Nuevo Rol
37 Add a banner to the site. (small banners are usually good) Añadir un banner al sitio. (banners pequeños son mejores generalmente)
38 Add all roles Agregar todos los roles
39 Add attachment Agregar archivo adjunto
40 Add code as &lt;script&gt; Añadir código como <script> Añadir código como
41 Add custom javascript to forms. Añadir personalizada javascript formas . Añadir javascript personalizado las formas .
42 Add fields to forms. Agregar campos a los formularios.
43 Add multiple rows Añadir varias filas Añadir Varias Filas
44 Add new row Añadir nueva fila Añadir Nueva Fila
45 Add the name of <a href="http://google.com/webfonts" target="_blank">Google Web Font</a> e.g. "Open Sans" Agregue el nombre del <a href="http://google.com/webfonts" target="_blank"> Google Web Font < / a> por ejemplo, "Open Sans "
46 Add to To Do Añadir a Tareas
47 Add to To Do List Of Agregar a la lista de tareas pendientes de Agregar a la lista de tareas pendientes
48 Added {0} ({1}) Añadido: {0} ({1})
49 Adding System Manager to this User as there must be atleast one System Manager Añadiendo el Administrador del sistema para este usuario ya que debe haber al menos un Responsable de Sistema Añadiendo el Administrador del sistema para este usuario ya que debe haber al menos un Administrador de Sistema
50 Additional Info Información adicional Información Adicional
51 Additional Permissions Permisos adicionales Permisos Adicionales
52 Address dirección Dirección
53 Address Line 1 Dirección Línea 1
54 Address Line 2 Dirección Línea 2
55 Address Title Dirección Título
56 Address and other legal information you may want to put in the footer. Dirección y otra información legal es posible que desee poner en el pie de página. Dirección y otra información legal que desee poner en el pie de página.
57 Admin administración Administración
58 All Applications Todas las aplicaciones Todas las Aplicaciones
59 All Day Todo el día Todo el Día
60 All customizations will be removed. Please confirm. Se eliminarán todas las personalizaciones. Por favor confirmar.
61 All possible Workflow States and roles of the workflow. <br>Docstatus Options: 0 is"Saved", 1 is "Submitted" and 2 is "Cancelled" Todos los posibles estados de flujo de trabajo y las funciones de flujo de trabajo. <br> Opciones DocStatus : 0 es "salvado " , 1 es " Enviado " y 2 está " Cancelado "
62 Allow Attach Permitir Adjuntar
63 Allow Import Permitir la importación Permitir la Importación
64 Allow Import via Data Import Tool Permitir la importación a través de herramientas de importación de datos Permitir la importación a través de Herramientas de Importación de Datos
65 Allow Rename Permitir Rename Permitir Renombrar
66 Allow on Submit Permitir en Enviar
67 Allow user to login only after this hour (0-24) Permitir que el usuario ingresa sólo después de esta hora ( 0-24) Permitir que el usuario ingrese sólo después de esta hora ( 0-24)
68 Allow user to login only before this hour (0-24) Permitir que el usuario ingresa sólo antes de esta hora ( 0-24) Permitir que el usuario ingrese sólo antes de esta hora ( 0-24)
69 Allowed mascotas Permitido
70 Allowing DocType, DocType. Be careful! Permitir DocType , tipo de documento . ¡Ten cuidado!
71 Already Registered Ya está registrado
72 Already in user's To Do list Ya en de usuario para hacer la lista Ya en la Lista por Hacer del Usuario
73 Alternative download link Enlace de descarga alternativo
74 Alternatively, you can also specify 'auto_email_id' in site_config.json Como alternativa, también se puede especificar ' auto_email_id ' en site_config.json
75 Always use above Login Id as sender Utilice siempre por encima de identificación de acceso como remitente Utilice siempre ID de Inicio de Sesión de arriba como remitente
76 Amend enmendar Corregir
77 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>] Un archivo de icono con . Ico . En caso de ser de 16 x 16 píxeles . Generado usando un generador de favicon . [ <a href="http://favicon-generator.org/" target="_blank"> favicon - generator.org < / a >]
78 Another {0} with name {1} exists, select another name Otra {0} con el nombre {1} que existe, seleccione otro nombre Otra {0} con el nombre {1} existe, seleccione otro nombre
79 Any existing permission will be deleted / overwritten. Cualquier permiso existente se eliminará / sobrescribe. Cualquier permiso existente se eliminará / reemplazara.
80 Anyone Can Read Cualquiera puede leer
81 Anyone Can Write Cualquiera puede escribir
82 Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes. Además de reglas de permisos basado en roles , puede aplicar permisos de usuario basado en de DocTypes . Además de reglas de permisos basado en roles , puede aplicar permisos de usuario basado en DocTypes .
83 Apart from System Manager, roles with 'Set User Permissions' right can set permissions for other users for that Document Type. Además de administrador del sistema, papeles con derecho de establecer permisos de usuario "pueden establecer permisos para otros usuarios de ese tipo de documento .
84 App Name Nombre de aplicación Nombre de la Aplicación
85 App not found App no ​​encontrado Aplicación no ​​encontrada
86 Application Installer instalador de aplicaciones Instalador de Aplicaciones
87 Applications Aplicaciones
88 Apply Style Aplicar Estilo
89 Apply User Permissions Aplicar permisos de usuario
90 Are you sure you want to delete the attachment? ¿Está seguro que desea eliminar el apego? ¿Está seguro que desea eliminar el adjunto?
91 Arial Arial
92 As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User. Como práctica recomendada , no asigne el mismo conjunto de reglas permiso para diferentes funciones. En su lugar, establecer varias funciones al mismo usuario . Como práctica recomendada , no asigne el mismo conjunto de permisos para diferentes funciones. En su lugar, establecer varias funciones al mismo usuario .
93 Ascending Ascendente
94 Assign To Asignar a
95 Assigned By Asignado por
96 Assigned To Asignado a
97 Assigned To Fullname Asignado a Nombre completo Asignado a Nombre Completo
98 Assigned To/Owner Asignado a / Propietario
99 Assignment Added Asignación de Alta Asignación agregada.
100 Assignment Status Changed Estado Asignación cambió Estado de Asignación Cambió
101 Assignments Asignaciones
102 Attach adjuntar Adjuntar
103 Attach Document Print Adjuntar Documento Imprimir Adjuntar Documento para Imprimir
104 Attach as web link Adjuntar como enlace web
105 Attached To DocType Asociado A DocType
106 Attached To Name Asociado A Nombre
107 Attachments Adjuntos
108 Auto Email Id Auto Identificación del email Auto Identificación del Correo
109 Auto Name Auto Nombre Nombre Automático
110 Auto generated generada Auto Generada Automaticamente
111 Avatar avatar Avatar
112 Back to Login Volver a Inicio de Sesión
113 Background Color Color de Fondo
114 Background Image Imagen de Fondo
124 Birth Date Fecha de Nacimiento
125 Blog Category Blog Categoría
126 Blog Intro Intro al Blog
127 Blog Introduction Blog Introducción Presentación del Blog
128 Blog Post Entrada al Blog Entrada en el Blog
129 Blog Settings Configuración de blog Configuración del Blog
130 Blog Title Título del blog Título del Blog
131 Blogger Blogger
132 Bookmarks marcadores
133 Both login and password required Se requiere tanto usuario como contraseña
134 Brand HTML HTML Marca
135 Bulk Email Correo Masivo
136 Bulk email limit {0} crossed Límite de correo electrónico a granel {0} cruzado Límite de correo electrónico masivo {0} sobrepasado
137 Button Botón
138 By por
139 Calculate Calcular
140 Calendar Calendario
142 Cancelled Cancelado
143 Cannot Edit {0} directly: To edit {0} properties, create / update {1}, {2} and {3} No se puede modificar {0} directamente : Para editar {0} propiedades , crear / actualizar {1}, {2} y {3}
144 Cannot Update: Incorrect / Expired Link. No se puede actualizar : Link incorrecta / expirada . No se puede actualizar : Link incorrecto / caducado .
145 Cannot Update: Incorrect Password No se puede actualizar : Contraseña incorrecta
146 Cannot add more than 50 comments No se puede añadir más de 50 comentarios
147 Cannot cancel before submitting. See Transition {0} No se puede cancelar antes de enviar .
148 Cannot change picture No se puede cambiar la imagen
152 Cannot delete {0} as it has child nodes No se puede eliminar {0} , ya que tiene nodos secundarios
153 Cannot edit standard fields No se puede editar campos estándar
154 Cannot map because following condition fails: No se puede asignar por la condición siguiente falla: No se puede asignar porque la condición siguiente falla:
155 Cannot open instance when its {0} is open No se puede abrir instancia cuando su {0} es abierto No se puede abrir instancia cuando su {0} esta abierto/a
156 Cannot open {0} when its instance is open No se puede abrir {0} cuando su instancia está abierto No se puede abrir {0} cuando su instancia está abierto/a
157 Cannot print cancelled documents No se pueden imprimir documentos cancelados
158 Cannot remove permission for DocType: {0} and Name: {1} No se puede quitar el permiso de tipo de documento : {0} y nombre: {1} No se puede quitar el permiso para tipo de documento : {0} y nombre: {1}
159 Cannot reply to a reply No se puede responder a una respuesta
160 Cannot set Email Alert on Document Type {0} No se puede establecer una alerta de correo electrónico en Tipo de documento {0}
161 Cannot set permission for DocType: {0} and Name: {1} No se puede establecer el permiso de tipo de documento : {0} y nombre: {1}
162 Categorize blog posts. Clasificar las entradas de blog. Clasificar las entradas del blog.
163 Category Categoría
164 Category Name Nombre Categoría
165 Center Centro
166 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. Algunos documentos , como una factura , no se deben cambiar una vez final. El estado final de dichos documentos se llama Enviado . Puede restringir qué roles pueden Submit. Algunos documentos , como una Factura , no se deben cambiar una vez finalizados. El estado final de dichos documentos se llama Presentado . Puede restringir qué roles pueden Presentar Documentos
167 Change field properties (hide, readonly, permission etc.) Cambiar las propiedades de campo (ocultar , de sólo lectura , permisos , etc )
168 Chat Chat
169 Check comprobar Marcar
170 Check / Uncheck roles assigned to the User. Click on the Role to find out what permissions that Role has. Marcar / desmarcar roles asignados al usuario . Haga clic sobre el papel para averiguar los permisos que ese papel lo ha hecho. Marcar / Desmarcar roles asignados al usuario . Haga clic sobre el Rol para averiguar los permisos que ese Rol posee.
171 Check this if you want to send emails as this id only (in case of restriction by your email provider). Seleccione esta opción si desea enviar mensajes de correo electrónico como este id único (en caso de restricción de su proveedor de correo electrónico).
172 Check this to make this the default letter head in all prints Active esta opción para hacer que esta cabeza de la letra por defecto en todas las impresiones
173 Check which Documents are readable by a User Compruebe qué documentos pueden ser leídos por un usuario Marque que documentos pueden ser leídos por un usuario
174 Checked items shown on desktop Los elementos seleccionados se muestran en el escritorio
175 Child Tables are shown as a Grid in other DocTypes. Tablas secundarias se muestran como una cuadrícula en otras de DocTypes .
176 City Ciudad
177 Classic Clásico
178 Clear Cache Borrar la caché
179 Clear all roles Desactive todas las funciones Desactive todos los roles
180 Click on a link to get options Haga clic en un enlace para obtener opciones
181 Click on row to view / edit. Haga clic en la fila para ver / editar .
182 Client Cliente
183 Client-side formats are now deprecated Formatos en el cliente se consideran obsoletas
186 Closed Cerrado
187 Code Código
188 Collapse Colapso Colapsar
189 Column Break Salto de columna
190 Comment Comentario
191 Comment By Comentario por Comentado por
192 Comment By Fullname Comentario Por Nombre completo Comentado Por Nombre completo
193 Comment Date Fecha de Comentario
194 Comment Docname docName Comentario Docname del Comentario
195 Comment Doctype Doctype Comentario
196 Comment Time Tiempo Comentario
197 Comments Comentarios
198 Communication comunicación Comunicación
199 Communication Medium Comunicación Medio Medio de Comunicación
200 Company History Historia de la empresa
201 Company Introduction Empresa Introducción Presentación de la Empresa
202 Complaint Queja
203 Complete By Por completo Completado Por
204 Condition Condición
205 Contact Us Settings Contáctenos Configuración
206 Contact options, like "Sales Query, Support Query" etc each on a new line or separated by commas. Opciones de contacto , como " Ventas de consultas , Soporte de consultas" , etc cada uno en una nueva línea o separados por comas.
207 Content Contenido
208 Content Hash Hash contenido
211 Controller controlador
212 Copy copia Copia
213 Copyright Derechos de autor Derechos de Autor
214 Core Núcleo
215 Could not connect to outgoing email server No se pudo conectar con el servidor de correo electrónico saliente
216 Could not find {0} No se pudo encontrar {0}
217 Count Contar
218 Country País
226 Currency Divisa
227 Current status Situación actual Situación Actual
228 Custom CSS CSS personalizado
229 Custom Field campo personalizado Campo Personalizado
230 Custom Javascript Custom Javascript Javascript Personalizado
231 Custom Reports Informes personalizados
232 Custom Script secuencia de personalización
233 Custom? Personalizado?
234 Customize Personalizar
235 Customize Form Personalizar Formulario
237 Customize Label, Print Hide, Default etc. Personaliza etiquetas, impresión Hide , Default , etc
238 Customized HTML Templates for printing transctions. Plantillas HTML personalizados para transctions impresión. Plantillas HTML personalizados para imprimir transacciones.
239 Daily Event Digest is sent for Calendar Events where reminders are set. Resumen diario de eventos se envía para Eventos en el Calendario donde se configura recordatorios.
240 Danger Peligro
241 Data Datos
242 Data Import / Export Tool Herramienta de importación / exportación de datos
243 Data Import Tool Herramienta de importación de datos
248 Date Format Formato de la fecha
249 Date and Number Format Fecha y Formato de número Formato de Fecha y Número
250 Date must be in format: {0} La fecha debe estar en formato : {0}
251 Datetime Fecha y hora
252 Days in Advance Días de anticipación
253 Dear querido
254 Default defecto
312 ERPNext Demo ERPNext demo
313 Edit editar Editar
314 Edit Permissions Editar permisos
315 Editable editable Editable
316 Email Email
317 Email Alert Alerta de Correo Alerta por Email
318 Email Alert Recipient Email destinatario Alerta Destinatario Alerta Email
319 Email Alert Recipients Destinatarios de las Alertas de correo electrónico Destinatarios Alerta Email
320 Email By Document Field Email Por Documento Campo Email Por Campo Documento
321 Email Footer Email Footer Pie Email
322 Email Host email al anfitrión Hospedaje Email
323 Email Id Identificación del email
324 Email Login Email Login
325 Email Password Correo electrónico Contraseña Contraseña Email
326 Email Sent Correo electrónico enviado
327 Email Settings Configuración del correo electrónico
328 Email Signature Email Firma Firma Email
329 Email Use SSL Email Usar SSL Usar SSL en Email
330 Email address dirección de correo electrónico Dirección de correo electrónico
331 Email addresses, separted by commas Direcciones de correo electrónico , separted por comas
332 Email not verified with {1} Enviar no verificado con {1} Email no verificado con {1}
333 Email sent to {0} Correo electrónico enviado a {0}
334 Email... Email ...
335 Emails are muted Los correos electrónicos se silencian
336 Embed image slideshows in website pages. Presentaciones de imágenes Incrustar en páginas web . Presentacion de imágenes incrustadas en páginas web .
337 Enable permitir Habilitar
338 Enable Comments Habilitar Comentarios
339 Enable Scheduled Jobs Habilitar tareas programadas
340 Enabled Activado Habilitado
341 Ends on finaliza el Finaliza el
342 Enter Form Type Escriba Tipo de formulario Introduzca Tipo de formulario
343 Enter Value Introducir valor
344 Enter at least one permission row Ingrese al menos una fila permiso Introduzca al menos una fila permiso
345 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 <a href="#Form/Customize Form/Customize Form">Customize Form</a>. Introduzca los campos de valores por defecto (claves) y valores. Si agrega varios valores para un campo, el primero de ellos será elegido . Estos valores por omisión también se utilizan para establecer " match" reglas de permisos . Para ver la lista de campos , vaya a <a href="#Form/Customize Form/Customize Form"> Personalizar formulario < / a> .
346 Enter keys to enable login via Facebook, Google, GitHub. Enter para activar la conexión a través de Facebook, Google , GitHub . Introduzca las claves para habilitar login a través de Facebook, Google , GitHub .
347 Equals Iguales
348 Error error Error
349 Error generating PDF, attachment sent as HTML Error de generación de PDF, adjuntos enviados como HTML
350 Error: Document has been modified after you have opened it Error : El documento se ha modificado después de que has abierto Error : El documento se ha modificado después de que lo hayas abierto
351 Event Evento
352 Event Datetime Evento de fecha y hora
353 Event Individuals Los individuos de eventos
354 Event Role Papel Evento
355 Event Roles Clases de eventos
416 Footer Pie de Página
417 Footer Background Pie de Página de fondo Fondo de Pie de Página
418 Footer Items Elementos del Pie de Página
419 Footer Text Texto del Pie de Página
420 For DocType Por tipo de documento
421 For Links, enter the DocType as rangeFor Select, enter list of Options separated by comma Para Links, introduzca el tipo de documento como rango Para Select, entrar en la lista de opciones separadas por comas
422 For comparative filters, start with Para los filtros comparativas , comience con
437 Gantt Chart Diagrama de Gantt
438 Gender género Género
439 Generator generador Generador
440 Georgia Georgia
441 Get conseguir Conseguir
442 Get From Obtener de
443 Get your globally recognized avatar from <a href="https://gravatar.com/">Gravatar.com</a> Obtenga su avatar global de <a href="https://gravatar.com/"> Gravatar.com </ a>
444 GitHub GitHub
445 GitHub Client ID GitHub Client ID
446 GitHub Client Secret GitHub Client Secret
453 Google Plus One Google Plus One
454 Google User ID Google ID de usuario Google User ID
455 Google Web Font (Heading) Google Web Font (partida )
456 Google Web Font (Text) Google Web Font (Texto )
457 Greater or equals Mayor o igual que
458 Greater than más que Mayor a
459 Group Added, refreshing... Grupo Agregado , refrescante ...
460 Group Description Descripción del Grupo
461 Group Name Nombre del grupo Nombre del Grupo
462 Group Title Grupo Título Título del Grupo
463 Group Type Tipo de grupo
464 Groups Grupos
465 HTML for header section. Optional HTML para la sección de encabezado. opcional
466 Have an account? Login ¿Tienes una cuenta? login
467 Header Encabezado
498 Import importación
499 Import / Export Data Importar / Exportar datos Importar / Exportar Datos
500 Import / Export Data from .csv files. Importar / Exportar Datos de . Csv . Importar / Exportar Datos desde archivos .csv
501 In en
502 In Dialog En diálogo
503 In Filter En Filtro
504 In List View En Vista de lista
505 In Report Filter En Filtro de informe
509 Incorrect value: {0} must be {1} {2} Valor incorrecto: {0} debe ser {1} {2}
510 Index Indice Índice
511 Individuals individuos
512 Info Información
513 Insert After insertar después insertar Después
514 Insert After field '{0}' mentioned in Custom Field '{1}', does not exist Inserte Después campo '{0}' se ha mencionado en el Campo Personalizado ' {1}' , no existe
515 Insert Below Inserte Abajo Insertar Abajo
516 Insert Code Insertar Código
517 Insert Row Insertar Fila
518 Insert Style Inserte Estilo
519 Install Applications. Instalación de aplicaciones . Instalación de Aplicaciones
520 Installed Instalado
521 Installer Instalador
522 Int Int. Int
523 Integrations Integraciones
524 Introduce your company to the website visitor. Dar a conocer su empresa al visitante del sitio Web .
525 Introduction Introducción
526 Introductory information for the Contact Us Page Información preliminar de la página de contacto
527 Invalid Email: {0} Email no válido : {0}
542 Is Submittable Es submittable
543 Is Task es tarea Es Tarea
544 Item cannot be added to its own descendents El artículo no se puede añadir a sus propios descendientes
545 JavaScript Format: frappe.query_reports['REPORTNAME'] = {} JavaScript Formato: frappe.query_reports [' REPORTNAME '] = { }
546 Javascript Javascript
547 Javascript to append to the head section of the page. Javascript para anexar a la sección de encabezado de la página .
548 Key Clave
555 Language preference for user interface (only if available). Preferencia de idioma para la interfaz de usuario (sólo si está disponible) .
556 Language, Date and Time settings Ajustes de idioma, fecha y hora Ajustes de Idioma, Fecha y Hora
557 Last IP Última IP
558 Last Login Último ingreso
559 Last Name Apellido
560 Last updated by Última actualización de Última actualización por
561 Lastmod lastmod Lastmod
562 Lato Lato
563 Leave blank to repeat always Dejar en blanco para repetir siempre
564 Left Izquierda
565 Less or equals Menor o Igual
566 Less than Menos que
578 Linked In Share Compartir en LinkedIn
579 Linked With Vinculado con Vinculado Con
580 List Lista
581 List a document type Incluya un tipo de documento
582 List of Web Site Forum's Posts. Lista de Mensajes de Web Foro Sitio.
583 Loading loading Cargando
584 Loading Report Cargando Reportar
585 Loading... Loading ... Cargando ...
586 Localization Localización
587 Location Ubicación
588 Log of error on automated events (scheduler). Log de ​​error en eventos automáticos ( planificador ) .
589 Login Iniciar Sesión
590 Login After Acceda Después
600 Make a new Hacer una nueva
601 Make a new record Hacer un nuevo récord Hacer un nuevo registro
602 Male Masculino
603 Manage cloud backups on Dropbox Administrar copias de seguridad de nubes en Dropbox
604 Manage uploaded files. Administrar los archivos subidos.
605 Mandatory obligatorio
606 Mandatory fields required in {0} Los campos obligatorios requeridos en {0}
608 Master Maestro
609 Max Attachments Número máximo de archivos adjuntos Máximo de Adjuntos
610 Max width for type Currency is 100px in row {0} Anchura máxima para el tipo de moneda es 100px en la fila {0}
611 Meaning of Submit, Cancel, Amend Significado de Enviar, cancelación, rectificación
612 Medium Medio
613 Menu items in the Top Bar. For setting the color of the Top Bar, go to <a href="#Form/Style Settings">Style Settings</a> Los elementos de menú en la barra superior. Para ajustar el color de la barra de Inicio , vaya a <a href="#Form/Style Settings"> Ajustes Style < / a>
614 Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node La fusión sólo es posible entre el Grupo - a - grupo o la hoja de nodo - a - nodo de la hoja
615 Message Mensaje
616 Message Examples Ejemplos de mensajes Ejemplos de Mensajes
617 Messages Mensajes
618 Method método Método
619 Middle Name (Optional) Segundo Nombre ( Opcional)
620 Misc Misc Varios
621 Miscellaneous diverso Varios
622 Missing Values Required Valores perdidos requeridos
623 Modern Moderno
624 Modified by Modificado por
625 Module Módulo
626 Module Def Módulo Def
637 Must specify a Query to run Debe especificar una consulta para ejecutar
638 My Settings Mis Opciones Mi Configuración
639 Name Nombre
640 Name Case Nombre del Caso
641 Name and Description Nombre y descripción
642 Name is required El nombre es necesario
643 Name not permitted Nombre no permitido
660 Next actions próximas acciones
661 No no Ningún
662 No Action Ninguna acción
663 No Communication tagged with this No hay comunicación etiquetado con este
664 No Copy No Copy
665 No Permissions set for this criteria. No hay permisos establecidos para este criterio.
666 No Report Loaded. Please use query-report/[Report Name] to run a report. No informe Cargado . Utilice consulta de informe / [ Nombre del informe ] para ejecutar un informe .
708 Old Parent Antiguo Padres
709 On en Encendido
710 Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger). Una vez que haya establecido esto, los usuarios sólo tendrán acceso a los documentos que puedan (por ejemplo, Entrada de blog ) donde se encuentra el enlace (por ejemplo, Blogger ) . Una vez que haya establecido esto, los usuarios sólo tendrán acceso a los documentos que puedan (por ejemplo, Entrada de blog ) donde se encuentra la relación (por ejemplo, Blogger ) .
711 Only Administrator allowed to create Query / Script Reports Administrador con permiso para crear consultas / informes de secuencias de comandos Solo el Administrador puede crear consultas / Informes de Secuencias de Comandos
712 Only Administrator can save a standard report. Please rename and save. Sólo el administrador puede guardar un informe estándar. Por favor, cambie el nombre y guardar.
713 Only Allow Edit For Sólo Permitir Editar Para
714 Only allowed {0} rows in one import {0} filas autorizada únicamente en una importación Soló esta filas {0} permitidas para una importación
715 Oops! Something went wrong Oups! Algo salió mal
716 Open abierto Abierto
717 Open Count Abrir Conde Abrir Cuenta
718 Open Sans Abrir Sans
719 Open Source Web Applications for the Web Open Source Aplicaciones Web para la Web
720 Open a module or tool Abra un módulo o herramienta Abra un Módulo o Herramienta
721 Open {0} Abrir {0}
722 Optional: Alert will only be sent if value is a valid email id. Opcional: Alerta sólo se enviará si el valor es un identificador de correo electrónico válida.
723 Optional: Always send to these ids. Each email id on a new row Opcional: Enviar siempre a estos identificadores. Cada correo electrónico de identificación en una nueva fila
724 Optional: The alert will be sent if this expression is true Opcional: La alerta será enviado si esta expresión es verdadera
725 Options Opciones
734 Original Message Mensaje Original
735 Other otro Otro
736 Outgoing Email Settings Configuración del correo electrónico saliente
737 Outgoing Mail Server Servidor de correo saliente Servidor de Correo Saliente
738 Outgoing Mail Server not specified Servidor de correo saliente no especificada Servidor de Correo Saliente no Especificada
739 Owner propietario Propietario
740 PDF Page Size Tamaño de Página PDF
741 PDF Settings Configuración de PDF
742 POP3 Mail Server (e.g. pop.gmail.com) POP3 Mail Server (por ejemplo pop.gmail.com )
743 Page Página
744 Page #{0} of {1} Página # {0} de {1}
855 Query Report Informe de consultas
856 Query must be a SELECT Consulta debe ser un SELECT Debe seleccionar la Consulta
857 Quick Help for Setting Permissions Ayuda Rápida para Establecer permisos Ayuda Rápida para Establecer Permisos
858 Quick Help for User Permissions Ayuda rápida para los permisos de usuario Ayuda Rápida para los Permisos de Usuario
859 Re-open Vuelva a abrir
860 Read Lectura
861 Read Only Sólo Lectura
862 Received recibido Recibido
863 Recipient beneficiario Beneficiario
864 Recipients destinatarios Destinatarios
865 Record does not exist Registro no existe
866 Ref DocType DocType Ref Referencia Tipo de Documento
867 Ref Name Nombre Ref
868 Ref Type Tipo Ref
869 Reference referencia Referencia
870 Reference DocName Referencia DocNombre
871 Reference DocType Referencia DocType
872 Reference Name Referencia Nombre
873 Reference Type Tipo de referencia Tipo de Referencia
874 Refresh Actualizar
875 Refreshing... Refrescante ... Actualizando...
876 Registered but disabled. De registro , pero está deshabilitado .
877 Registration Details Emailed. Detalles del registro enviadas por correo electrónico . Detalles del Registro enviadas por Correo Electrónico .
878 Reload Page recargar página
879 Remove Bookmark Retire Bookmark
880 Remove all customizations? Retire todas las personalizaciones ?
881 Rename many items by uploading a .csv file. Cambiar el nombre de muchos artículos mediante la subida de un archivo csv . .
882 Rename... Cambiar el nombre de ...
885 Repeat this Event Repita este Evento
886 Replies respuestas Respuestas
887 Report informe Informe
888 Report Builder Generador de informes
889 Report Builder reports are managed directly by the report builder. Nothing to do. Informes del Generador de informes son enviadas por el generador de informes . No hay nada que hacer.
890 Report Hide Ocultar Informe
891 Report Name Nombre del informe
892 Report Type Tipo de informe
893 Report an Issue Informar un problema Informar un Problema
894 Report cannot be set for Single types Reportar no se puede configurar para los tipos individuales
895 Report this issue Señalar este tema
896 Report was not saved (there were errors) Informe no se guardó ( hubo errores )
897 Reqd reqd
898 Reset Password Key Restablecer contraseña de clave
914 Root {0} cannot be deleted Raíz {0} no se puede eliminar
915 Row fila Fila
916 Row #{0}: Fila # {0}:
917 Rules defining transition of state in the workflow. Reglas que definen la transición de estado del flujo de trabajo .
918 Rules for how states are transitions, like next state and which role is allowed to change state etc. Reglas para cómo los estados son las transiciones , como el siguiente estado y qué papel se le permite cambiar de estado , etc
919 Run scheduled jobs only if checked Ejecutar los trabajos programados sólo si controladas
920 Run the report first Ejecute el informe primero
950 Select an image of approx width 150px with a transparent background for best results. Seleccione una imagen de ancho aprox 150px con fondo transparente para obtener mejores resultados .
951 Select dates to create a new Select dates to create a new
952 Select modules to be shown (based on permission). If hidden, they will be hidden for all users. Seleccione los módulos que expondrá ( basado en el permiso) . Si oculta , se oculta para todos los usuarios .
953 Select or drag across time slots to create a new event. Seleccione o arrastre a través de los intervalos de tiempo para crear un nuevo evento.
954 Select target = "_blank" to open in a new page. Select target = " _blank" para abrir en una nueva página.
955 Select the label after which you want to insert new field. Seleccione la etiqueta después de la cual desea insertar el nuevo campo .
956 Send Enviar
958 Send As Email Enviar como correo electrónico
959 Send Email Enviar Email Enviar Correo Electronico
960 Send Email Print Attachments as PDF (Recommended) Enviar Email Imprimir adjuntos en formato PDF (recomendado)
961 Send Me A Copy Enviarme una copia
962 Send Password Enviar contraseña
963 Send Print as PDF Enviar Imprimir en PDF Enviar Impresión como PDF
964 Send alert if date matches this field's value Envíe la alarma si la fecha coincide con el valor de este campo
965 Send alert if this field's value changes Enviar alerta si cambia el valor de este campo
966 Send an email reminder in the morning Enviar un recordatorio por correo electrónico en la mañana
967 Send download link of a recent backup to System Managers Enviar enlace de descarga de una copia de seguridad reciente para Gerentes de Sistemas
968 Send enquiries to this email address Puede enviar sus preguntas a la siguiente dirección de correo electrónico
1099 This goes above the slideshow. Esto va por encima de la presentación de diapositivas.
1100 This is PERMANENT action and you cannot undo. Continue? Esta es una acción permanente y no se puede deshacer . ¿Desea continuar? Esta es una acción PERMANENTE y no se puede deshacer . ¿Desea continuar?
1101 This is a standard format. To make changes, please copy it make make a new format. Este es un formato estándar. Para realizar cambios, por favor cópielo hacer hacer un nuevo formato.
1102 This is permanent action and you cannot undo. Continue? Esta es una acción permanente y no se puede deshacer . ¿Desea continuar?
1103 This must be checked if Style Settings are applicable Esto se debe comprobar si la configuración de estilo son aplicables
1104 This role update User Permissions for a user Este papel Permisos de actualización de usuario para un usuario
1105 Thursday Jueves
1136 Type Tipo
1137 Unable to find attachment {0} No es posible encontrar el apego {0} No es posible encontrar adjunto {0}
1138 Unable to load: {0} No se puede cargar : {0}
1139 Unable to open attached file. Please try again. No se puede abrir el archivo adjunto. Por favor, inténtelo de nuevo.
1140 Unable to send emails at this time No se pueden enviar mensajes de correo electrónico en este momento
1141 Unknown Column: {0} Desconocido Columna: {0}
1142 Unknown file encoding. Tried utf-8, windows-1250, windows-1252. Codificación de archivo desconocido . Intentado utf- 8 , Windows -1250 , windows-1252 .
1143 Unread Messages Los mensajes no leídos Mensajes no leídos
1144 Unsubscribe Cancelar la suscripción
1145 Unsubscribed no suscribirse
1146 Upcoming Events for Today Eventos para Hoy
1147 Update actualización Actualización
1148 Update Field Actualizar campos
1149 Update Value Update Valor Actualizar Valor
1150 Updated actualizado
1151 Upload subir Subir
1152 Upload Attachment carga de archivos adjuntos Subir Archivos Adjuntos
1153 Upload CSV file containing all user permissions in the same format as Download. Subir archivo CSV que contiene todos los permisos de usuario en el mismo formato que en Descargar.
1154 Upload a file Subir un archivo
1155 Upload and Import Subir e importar Subir e Importar
1156 Upload and Sync Carga y Sincronización
1157 Uploading... Subiendo ...
1158 Upvotes upvotes
1159 Use TLS Utilice TLS
1160 User usuario Usuario
1161 User Cannot Create El usuario no puede crear
1162 User Cannot Search El usuario no puede buscar
1163 User Defaults predeterminadas del usuario
1164 User ID of a blog writer. ID de usuario de un escritor de blog.
1165 User Image Imagen de Usuario
1166 User Permission El permiso de usuario Permiso de Usuario
1167 User Permissions Permisos de usuario
1168 User Permissions Manager Permisos de usuario Administrador
1169 User Roles funciones de usuario
1170 User Tags Nube de etiquetas
1171 User Type Tipo de usuario
1172 User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages. User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages.
1173 User Vote Vota usuario
1174 User not allowed to delete {0}: {1} El usuario no permite eliminar {0}: {1}
1175 User permissions should not apply for this Link Los permisos de usuario no deben aplicarse para este enlace
1176 User {0} cannot be deleted El usuario {0} no se puede eliminar
1177 User {0} cannot be disabled El usuario {0} no se puede deshabilitar
1236 You are not allowed to create / edit reports No se le permite crear / editar reportes
1237 You are not allowed to export the data of: {0}. Downloading empty template. No se le permite exportar los datos de : {0} . Descargando plantilla vacía . No se le permite exportar los datos de: {0} . Descargando plantilla vacía.
1238 You are not allowed to export this report No se le permite exportar este informe No se le permite exportar este reporte
1239 You are not allowed to print this document No está autorizado a imprimir este documento
1240 You are not allowed to send emails related to this document Usted no tiene permiso para enviar mensajes de correo electrónico relacionados con este documento
1241 You can change Submitted documents by cancelling them and then, amending them. Puede cambiar los documentos presentados por la cancelación de ellos y luego , de enmendarlos. Puede cambiar los documentos Enviados cancelándolos y luego, haciendo los cambios pertinentes.
1242 You can use Customize Form to set levels on fields. Usted puede utilizar Personalizar formulario para establecer los niveles de los campos .
1243 You can use wildcard % Puede utilizar caracteres comodín%
1244 You cannot install this app No se puede instalar esta aplicación
1245 You have unsaved changes in this form. Please save before you continue. Usted tiene cambios sin guardar en este formulario. Usted tiene cambios sin guardar en este formulario. Por favor dale a guardar antes de continuar.
1246 You need to be logged in and have System Manager Role to be able to access backups. Necesitas estar conectado y tener el Administrador del sistema de funciones para poder tener acceso a las copias de seguridad . Necesitas estar conectado y tener rol de Administrador del Sistema, para poder tener acceso a las copias de seguridad .
1247 You need write permission to rename Usted necesita permiso de escritura para cambiar el nombre
1248 You seem to have written your name instead of your email. \ Please enter a valid email address so that we can get back. Parece que ha escrito su nombre en lugar de su correo electrónico. \ Por favor, introduce una dirección de email válida para que podamos volver. Parece que ha escrito su nombre en lugar de su correo electrónico. \ Por favor, introduce una dirección de email válida para que podamos volver a contactarte.
1249 Your download is being built, this may take a few moments... Su descarga se está construyendo , esto puede tardar unos minutos ... Se está generando su descarga, esto puede tardar unos minutos...
1250 [Label]:[Field Type]/[Options]:[Width] [ Label ] : [ Tipo de Campo] / [ Opciones] : [Ancho ]
1251 [Optional] Send the email X days in advance of the specified date. 0 equals same day. [Opcional] Enviar los días email X antes de la fecha especificada. 0 es igual mismo día.
1252 add your own CSS (careful!) añada su propio CSS ( ¡cuidado! ) Añada su propio CSS ( ¡cuidado! )
1253 adjust ajustar Ajustar
1254 align-center align -center align - centrado
1255 align-justify alinear - justificar
1256 align-left alinear -izquierda
1257 align-right alinear a la derecha
1258 and y
1259 arrow-down flecha hacia abajo
1264 backward hacia atrás
1265 ban-circle círculo-prohibición Círculo-Prohibición
1266 barcode código de barras
1267 beginning with a partir de
1268 bell campana
1269 bold negrita
1270 book libro
1294 edit editar
1295 eject expulsar Expulsar
1296 envelope sobre Sobre
1297 exclamation-sign exclamación signo
1298 eye-close ojo -cierre
1299 eye-open - ojo abierto
1300 facetime-video FaceTime y vídeo
1301 fast-backward retroceso rápido
1311 forward adelante
1312 found fundar encontrado
1313 fullscreen fullscreen pantalla completa
1314 gift regalo
1315 glass vidrio
1316 globe globo
1317 hand-down mano hacia abajo
1318 hand-left a mano izquierda
1342 minus-sign signo menos
1343 mm-dd-yyyy dd-mm- aaaa mm-dd-aaaa
1344 mm/dd/yyyy mm / dd / aaaa mm/dd/aaaa
1345 move movimiento mover
1346 music música
1347 none of ninguno de
1348 off apagado Apagado
1349 ok bueno Bueno
1350 ok-circle ok- círculo
1351 ok-sign ok- signo
1352 one of uno de
1353 or o
1354 pause Pausa
1362 print impresión
1363 qrcode qrcode Código QR
1364 question-sign pregunta signo Consultar Firma
1365 random azar
1366 refresh refrescar
1367 remove eliminar
1368 remove-circle eliminar el efecto de círculo
1369 remove-sign eliminar el efecto de signo
1370 repeat repetición Repetir
1371 resize-full cambiar el tamaño completo
1372 resize-horizontal cambiar el tamaño horizontal
1373 resize-small cambiar el tamaño pequeño
1374 resize-vertical cambiar el tamaño vertical
1375 retweet Retweet
1402 to a
1403 trash Basura basura
1404 upload subir
1405 use % as wildcard Use% como comodín
1406 user usuario
1407 user_image_show user_image_show
1408 values and dates valores y fechas
1414 wrench llave inglesa
1415 yyyy-mm-dd aaaa- mm -dd aaaa-mm-dd
1416 zoom-in Acercar Vista Acercar
1417 zoom-out Alejar Vista Alejar
1418 {0} List {0} Lista
1419 {0} added {0} agregado
{0} by {1} {0} por {1}
{0} cannot be set for Single types {0} no se puede establecer para los tipos individuales
1420 {0} does not exist in row {1} {0} by {1} {0} no existe en la fila {1} {0} por {1}
1421 {0} in row {1} cannot have both URL and child items {0} cannot be set for Single types {0} en la fila {1} no se puede tener ambas cosas URL y elementos secundarios {0} no se puede establecer para los tipos individuales
1422 {0} is not a valid email id {0} does not exist in row {1} {0} no es un correo electrónico de identificación válida {0} no existe en la fila {1}

View file

@ -20,7 +20,7 @@ About Us Settings,Paramètrages À propos
About Us Team Member,À propos du membre de l'équipe
Action,Action
Actions,Actions
"Actions for workflow (e.g. Approve, Cancel).","Actions pour flux de travail (par exemple approuver, Annuler ) ."
"Actions for workflow (e.g. Approve, Cancel).","Actions pour workflow (par exemple approuver, Annuler ) ."
Add,Ajouter
Add A New Rule,Ajouter une nouvelle règle
Add A User Permission,Ajouter une permission d'utilisateur
@ -53,7 +53,7 @@ Address,Adresse
Address Line 1,Adresse ligne 1
Address Line 2,Adresse ligne 2
Address Title,Titre de l'adresse
Address and other legal information you may want to put in the footer.,Adresse et autres informations juridiques que vous voulez mettre dans le pied de page.
Address and other legal information you may want to put in the footer.,Adresse et autres informations juridiques que vous voudriez mettre dans le pied de page.
Admin,admin
All Applications,toutes les applications
All Day,Toute la journée
@ -70,21 +70,21 @@ Allowed,Permis
"Allowing DocType, DocType. Be careful!",Vous ne pouvez pas ouvrir {0} lorsque son instance est ouverte
Already Registered,Déjà inscrit
Already in user's To Do list,Déjà dans la liste des tâches de l'utilisateur
Alternative download link,Les champs obligatoires requises dans {0}
Alternative download link,Lien de téléchargement alternatif
"Alternatively, you can also specify 'auto_email_id' in site_config.json","Sinon, vous pouvez également spécifier ' auto_email_id ' dans site_config.json"
Always use above Login Id as sender,Utiliser toujours au-dessus Id de connexion comme expéditeur
Amend,Modifier
"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>]","Un fichier d&#39;icône avec l&#39;extension. Ico. Doit être de 16 x 16 px. Généré à l&#39;aide d&#39;un générateur de favicon. [ <a href=""http://favicon-generator.org/"" target=""_blank"">favicon-generator.org</a> ]"
"Another {0} with name {1} exists, select another name","Un autre {0} avec le nom {1} existe, choisir un autre nom"
Any existing permission will be deleted / overwritten.,Toute autorisation existante ne sera supprimée / écrasé.
Any existing permission will be deleted / overwritten.,Toute autorisation existante sera supprimée / écrasée.
Anyone Can Read,N'importe qui peut lire
Anyone Can Write,N'importe qui peut écrire
"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Outre les règles d'autorisation de rôle basé , vous pouvez appliquer des autorisations des utilisateurs sur la base de DocTypes ."
"Apart from System Manager, roles with 'Set User Permissions' right can set permissions for other users for that Document Type.","En dehors de System Manager , les rôles avec le droit "" Définir les autorisations des utilisateurs de définir des autorisations pour les autres utilisateurs pour ce type de document ."
App Name,Nom de l'App
App not found,App introuvable
App Name,Nom de l'application
App not found,Application introuvable
Application Installer,Installer des applications
Applications,applications
Applications,Applications
Apply Style,appliquer le style
Apply User Permissions,Appliquer les autorisations par utilisateurs
Are you sure you want to delete the attachment?,Êtes-vous sûr de vouloir supprimer la pièce jointe?
@ -101,9 +101,9 @@ Assignment Status Changed,Changement état d'affectation
Assignments,Envoyer permanence {0} ?
Attach,Joindre
Attach Document Print,Joindre Imprimer de document
Attach as web link,Joindre lien web
Attached To DocType,Attaché au document de type
Attached To Name,Attaché au document de nom
Attach as web link,Joindre comme lien web
Attached To DocType,Joint au document
Attached To Name,Joint au nom
Attachments,Pièces jointes
Auto Email Id,Identification d&#39;email automatique
Auto Name,Nom Auto
@ -125,12 +125,12 @@ Birth Date,Date de naissance
Blog Category,Catégorie du blog
Blog Intro,Blog Intro
Blog Introduction,Introduction du blog
Blog Post,Blog
Blog Post,Article de blog
Blog Settings,Paramètres du blog
Blog Title,Titre du blog
Blogger,Blogger
Bookmarks,Favoris
Both login and password required,Les deux login et mot de passe requis
Both login and password required,Un login et un mot de passe sont requis
Brand HTML,Marque HTML
Bulk Email,Courriel groupé
Bulk email limit {0} crossed,La limite du courriel groupé {0} est atteinte
@ -154,7 +154,7 @@ Cannot edit standard fields,Vous ne pouvez pas modifier les champs standards
Cannot map because following condition fails: ,Impossible de mapper parce condition suivante échoue:
Cannot open instance when its {0} is open,Création / modification par
Cannot open {0} when its instance is open,pas trouvé
Cannot print cancelled documents,Vous n'êtes pas autorisé à envoyer des e-mails relatifs à ce document
Cannot print cancelled documents,Impossible d'imprimer les documents annulés
Cannot remove permission for DocType: {0} and Name: {1},Vous ne pouvez pas retirer l'autorisation de DocType : {0} et Nom : {1}
Cannot reply to a reply,Vous ne pouvez pas répondre à une réponse
Cannot set Email Alert on Document Type {0},Vous ne pouvez pas définir une alerte email sur Type de document {0}
@ -247,7 +247,7 @@ Date Change,Changement de date
Date Changed,Date de modification
Date Format,Format de date
Date and Number Format,Format de date et numéro
Date must be in format: {0},Il y avait des erreurs
Date must be in format: {0},Les dates doivent être au format: {0}
Datetime,Datetime
Days in Advance,Jours à l'avance
Dear,Cher
@ -948,7 +948,7 @@ Select Type,Sélectionnez le type de
Select User or DocType to start.,Sélectionnez l'utilisateur ou Doctype pour commencer.
Select a Banner Image first.,Choisissez une bannière image première.
Select an image of approx width 150px with a transparent background for best results.,Sélectionnez une image d&#39;une largeur d&#39;environ 150px avec un fond transparent pour de meilleurs résultats.
Select dates to create a new ,
Select dates to create a new ,Select dates to create a new
"Select modules to be shown (based on permission). If hidden, they will be hidden for all users.","Sélectionnez les modules à être affichées ( sur la base de l'autorisation ) . Si caché , ils seront cachés pour tous les utilisateurs ."
Select or drag across time slots to create a new event.,Sélectionnez ou glisser sur des intervalles de temps pour créer un nouvel événement.
"Select target = ""_blank"" to open in a new page.","Sélectionnez target = "" _blank "" pour ouvrir dans une nouvelle page ."
@ -1169,7 +1169,7 @@ User Permissions Manager,Les autorisations des utilisateurs Gestionnaire
User Roles,Rôles de l'utilisateur
User Tags,Nuage de Tags
User Type,Type d&#39;utilisateur
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ",
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ","User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. "
User Vote,Vote de l'utilisateur
User not allowed to delete {0}: {1},Utilisateur non autorisé à supprimer {0}: {1}
User permissions should not apply for this Link,Autorisations de l'utilisateur ne devraient pas s'appliquer pour ce Lien

1 by Role par rôle
20 About Us Team Member À propos du membre de l'équipe
21 Action Action
22 Actions Actions
23 Actions for workflow (e.g. Approve, Cancel). Actions pour flux de travail (par exemple approuver, Annuler ) . Actions pour workflow (par exemple approuver, Annuler ) .
24 Add Ajouter
25 Add A New Rule Ajouter une nouvelle règle
26 Add A User Permission Ajouter une permission d'utilisateur
53 Address Line 1 Adresse ligne 1
54 Address Line 2 Adresse ligne 2
55 Address Title Titre de l'adresse
56 Address and other legal information you may want to put in the footer. Adresse et autres informations juridiques que vous voulez mettre dans le pied de page. Adresse et autres informations juridiques que vous voudriez mettre dans le pied de page.
57 Admin admin
58 All Applications toutes les applications
59 All Day Toute la journée
70 Allowing DocType, DocType. Be careful! Vous ne pouvez pas ouvrir {0} lorsque son instance est ouverte
71 Already Registered Déjà inscrit
72 Already in user's To Do list Déjà dans la liste des tâches de l'utilisateur
73 Alternative download link Les champs obligatoires requises dans {0} Lien de téléchargement alternatif
74 Alternatively, you can also specify 'auto_email_id' in site_config.json Sinon, vous pouvez également spécifier ' auto_email_id ' dans site_config.json
75 Always use above Login Id as sender Utiliser toujours au-dessus Id de connexion comme expéditeur
76 Amend Modifier
77 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>] Un fichier d&#39;icône avec l&#39;extension. Ico. Doit être de 16 x 16 px. Généré à l&#39;aide d&#39;un générateur de favicon. [ <a href="http://favicon-generator.org/" target="_blank">favicon-generator.org</a> ]
78 Another {0} with name {1} exists, select another name Un autre {0} avec le nom {1} existe, choisir un autre nom
79 Any existing permission will be deleted / overwritten. Toute autorisation existante ne sera supprimée / écrasé. Toute autorisation existante sera supprimée / écrasée.
80 Anyone Can Read N'importe qui peut lire
81 Anyone Can Write N'importe qui peut écrire
82 Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes. Outre les règles d'autorisation de rôle basé , vous pouvez appliquer des autorisations des utilisateurs sur la base de DocTypes .
83 Apart from System Manager, roles with 'Set User Permissions' right can set permissions for other users for that Document Type. En dehors de System Manager , les rôles avec le droit " Définir les autorisations des utilisateurs de définir des autorisations pour les autres utilisateurs pour ce type de document .
84 App Name Nom de l'App Nom de l'application
85 App not found App introuvable Application introuvable
86 Application Installer Installer des applications
87 Applications applications Applications
88 Apply Style appliquer le style
89 Apply User Permissions Appliquer les autorisations par utilisateurs
90 Are you sure you want to delete the attachment? Êtes-vous sûr de vouloir supprimer la pièce jointe?
101 Assignments Envoyer permanence {0} ?
102 Attach Joindre
103 Attach Document Print Joindre Imprimer de document
104 Attach as web link Joindre lien web Joindre comme lien web
105 Attached To DocType Attaché au document de type Joint au document
106 Attached To Name Attaché au document de nom Joint au nom
107 Attachments Pièces jointes
108 Auto Email Id Identification d&#39;email automatique
109 Auto Name Nom Auto
125 Blog Category Catégorie du blog
126 Blog Intro Blog Intro
127 Blog Introduction Introduction du blog
128 Blog Post Blog Article de blog
129 Blog Settings Paramètres du blog
130 Blog Title Titre du blog
131 Blogger Blogger
132 Bookmarks Favoris
133 Both login and password required Les deux login et mot de passe requis Un login et un mot de passe sont requis
134 Brand HTML Marque HTML
135 Bulk Email Courriel groupé
136 Bulk email limit {0} crossed La limite du courriel groupé {0} est atteinte
154 Cannot map because following condition fails: Impossible de mapper parce condition suivante échoue:
155 Cannot open instance when its {0} is open Création / modification par
156 Cannot open {0} when its instance is open pas trouvé
157 Cannot print cancelled documents Vous n'êtes pas autorisé à envoyer des e-mails relatifs à ce document Impossible d'imprimer les documents annulés
158 Cannot remove permission for DocType: {0} and Name: {1} Vous ne pouvez pas retirer l'autorisation de DocType : {0} et Nom : {1}
159 Cannot reply to a reply Vous ne pouvez pas répondre à une réponse
160 Cannot set Email Alert on Document Type {0} Vous ne pouvez pas définir une alerte email sur Type de document {0}
247 Date Changed Date de modification
248 Date Format Format de date
249 Date and Number Format Format de date et numéro
250 Date must be in format: {0} Il y avait des erreurs Les dates doivent être au format: {0}
251 Datetime Datetime
252 Days in Advance Jours à l'avance
253 Dear Cher
948 Select User or DocType to start. Sélectionnez l'utilisateur ou Doctype pour commencer.
949 Select a Banner Image first. Choisissez une bannière image première.
950 Select an image of approx width 150px with a transparent background for best results. Sélectionnez une image d&#39;une largeur d&#39;environ 150px avec un fond transparent pour de meilleurs résultats.
951 Select dates to create a new Select dates to create a new
952 Select modules to be shown (based on permission). If hidden, they will be hidden for all users. Sélectionnez les modules à être affichées ( sur la base de l'autorisation ) . Si caché , ils seront cachés pour tous les utilisateurs .
953 Select or drag across time slots to create a new event. Sélectionnez ou glisser sur des intervalles de temps pour créer un nouvel événement.
954 Select target = "_blank" to open in a new page. Sélectionnez target = " _blank " pour ouvrir dans une nouvelle page .
1169 User Roles Rôles de l'utilisateur
1170 User Tags Nuage de Tags
1171 User Type Type d&#39;utilisateur
1172 User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages. User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages.
1173 User Vote Vote de l'utilisateur
1174 User not allowed to delete {0}: {1} Utilisateur non autorisé à supprimer {0}: {1}
1175 User permissions should not apply for this Link Autorisations de l'utilisateur ne devraient pas s'appliquer pour ce Lien

View file

@ -948,7 +948,7 @@ Select Type,प्रकार का चयन करें
Select User or DocType to start.,शुरू करने के लिए प्रयोक्ता या टैग का चयन करें.
Select a Banner Image first.,पहले एक बैनर छवि का चयन करें.
Select an image of approx width 150px with a transparent background for best results.,अच्छे परिणाम के लिए एक पारदर्शी पृष्ठभूमि के साथ लगभग चौड़ाई 150px की एक छवि का चयन करें.
Select dates to create a new ,
Select dates to create a new ,Select dates to create a new
"Select modules to be shown (based on permission). If hidden, they will be hidden for all users.","चयन मॉड्यूल (अनुमति के आधार पर) दिखाया जाएगा . छिपे हुए हैं, वे सभी उपयोगकर्ताओं के लिए छिपा हुआ होगा ."
Select or drag across time slots to create a new event.,का चयन करें या एक नई घटना बनाने के लिए टाइम स्लॉट भर में खींचें.
"Select target = ""_blank"" to open in a new page.","चुनने का लक्ष्य एक नया पेज में खोलने के लिए = "" _blank"" ."
@ -1169,7 +1169,7 @@ User Permissions Manager,उपयोगकर्ता अनुमतिया
User Roles,उपयोगकर्ता भूमिका
User Tags,उपयोगकर्ता के टैग
User Type,प्रयोक्ता प्रकार
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ",
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ","User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. "
User Vote,उपयोगकर्ता वोट
User not allowed to delete {0}: {1},उपयोगकर्ता को नष्ट करने की अनुमति नहीं {0} {1}
User permissions should not apply for this Link,उपयोगकर्ता अनुमतियाँ इस लिंक के लिए आवेदन नहीं करना चाहिए

1 by Role रोल से
948 Select User or DocType to start. शुरू करने के लिए प्रयोक्ता या टैग का चयन करें.
949 Select a Banner Image first. पहले एक बैनर छवि का चयन करें.
950 Select an image of approx width 150px with a transparent background for best results. अच्छे परिणाम के लिए एक पारदर्शी पृष्ठभूमि के साथ लगभग चौड़ाई 150px की एक छवि का चयन करें.
951 Select dates to create a new Select dates to create a new
952 Select modules to be shown (based on permission). If hidden, they will be hidden for all users. चयन मॉड्यूल (अनुमति के आधार पर) दिखाया जाएगा . छिपे हुए हैं, वे सभी उपयोगकर्ताओं के लिए छिपा हुआ होगा .
953 Select or drag across time slots to create a new event. का चयन करें या एक नई घटना बनाने के लिए टाइम स्लॉट भर में खींचें.
954 Select target = "_blank" to open in a new page. चुनने का लक्ष्य एक नया पेज में खोलने के लिए = " _blank" .
1169 User Roles उपयोगकर्ता भूमिका
1170 User Tags उपयोगकर्ता के टैग
1171 User Type प्रयोक्ता प्रकार
1172 User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages. User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages.
1173 User Vote उपयोगकर्ता वोट
1174 User not allowed to delete {0}: {1} उपयोगकर्ता को नष्ट करने की अनुमति नहीं {0} {1}
1175 User permissions should not apply for this Link उपयोगकर्ता अनुमतियाँ इस लिंक के लिए आवेदन नहीं करना चाहिए

View file

@ -948,7 +948,7 @@ Select Type,Odaberite Vid
Select User or DocType to start.,Odaberite korisnik ili vrstu dokumenata za početak .
Select a Banner Image first.,Odaberite Slika Banner prvi.
Select an image of approx width 150px with a transparent background for best results.,Odaberite sliku od cca 150px širine s transparentnom pozadinom za najbolje rezultate.
Select dates to create a new ,
Select dates to create a new ,Select dates to create a new
"Select modules to be shown (based on permission). If hidden, they will be hidden for all users.","Odaberite modula koji će biti prikazan ( na temelju odobrenja ) . Ako skriveno , oni će biti skriven za sve korisnike ."
Select or drag across time slots to create a new event.,Odaberite ili povucite preko minutaže stvoriti novi događaj.
"Select target = ""_blank"" to open in a new page.","Select target = "" _blank "" otvara se u novu stranicu ."
@ -1169,7 +1169,7 @@ User Permissions Manager,Korisnik Dozvole Manager
User Roles,Korisničke Uloge
User Tags,Upute Tags
User Type,Vrsta korisnika
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ",
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ","User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. "
User Vote,Korisnik Glasaj
User not allowed to delete {0}: {1},Korisnik nije dopušteno brisati {0}: {1}
User permissions should not apply for this Link,Ovlaštenja korisnika ne bi trebao podnijeti zahtjev za ovaj link

1 by Role prema ulozi
948 Select User or DocType to start. Odaberite korisnik ili vrstu dokumenata za početak .
949 Select a Banner Image first. Odaberite Slika Banner prvi.
950 Select an image of approx width 150px with a transparent background for best results. Odaberite sliku od cca 150px širine s transparentnom pozadinom za najbolje rezultate.
951 Select dates to create a new Select dates to create a new
952 Select modules to be shown (based on permission). If hidden, they will be hidden for all users. Odaberite modula koji će biti prikazan ( na temelju odobrenja ) . Ako skriveno , oni će biti skriven za sve korisnike .
953 Select or drag across time slots to create a new event. Odaberite ili povucite preko minutaže stvoriti novi događaj.
954 Select target = "_blank" to open in a new page. Select target = " _blank " otvara se u novu stranicu .
1169 User Roles Korisničke Uloge
1170 User Tags Upute Tags
1171 User Type Vrsta korisnika
1172 User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages. User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages.
1173 User Vote Korisnik Glasaj
1174 User not allowed to delete {0}: {1} Korisnik nije dopušteno brisati {0}: {1}
1175 User permissions should not apply for this Link Ovlaštenja korisnika ne bi trebao podnijeti zahtjev za ovaj link

View file

@ -1,5 +1,5 @@
by Role ,
is not set,
by Role , by Role
is not set, is not set
"""Company History""","""Sejarah Perusahaan"""
"""Team Members"" or ""Management""","""Anggota Tim"" atau ""Manajemen"""
'In List View' not allowed for type {0} in row {1},'Dalam Daftar View' tidak diperbolehkan untuk jenis {0} berturut-turut {1}
@ -16,14 +16,14 @@
<i>text</i> <b>in</b> <i>document type</i>,teks <i> </ i> <b> di </ b> <i> jenis dokumen </ i>
A user can be permitted to multiple records of the same DocType.,Seorang pengguna dapat diizinkan untuk beberapa catatan dari DocType sama.
About,Tentang
About Us Settings,Tentang Kami Pengaturan
About Us Settings,Pengaturan Tetang Kami
About Us Team Member,Tentang Kami Anggota Tim
Action,Tindakan
Actions,Tindakan
"Actions for workflow (e.g. Approve, Cancel).","Tindakan untuk alur kerja (misalnya Menyetujui, Batal)."
Add,Tambahkan
Add A New Rule,Tambah Aturan Baru
Add A User Permission,Tambah Pengguna Izin
Add A User Permission,Tambah Izin Pengguna
Add Attachments,Tambahkan Lampiran
Add Bookmark,Tambahkan Bookmark
Add CSS,Tambah CSS
@ -34,10 +34,10 @@ Add New Permission Rule,Tambahkan Rule Izin Baru
Add Reply,Add Reply
Add Total Row,Tambah Jumlah Row
Add a New Role,Tambahkan Peran Baru
Add a banner to the site. (small banners are usually good),Tambahkan iklan ke situs. (Spanduk kecil biasanya baik)
Add a banner to the site. (small banners are usually good),Tambahkan iklan ke situs. (Spanduk kecil biasanya lebih baik)
Add all roles,Tambahkan semua peran
Add attachment,Tambahkan lampiran
Add code as &lt;script&gt;,Tambahkan kode sebagai <script>
Add code as &lt;script&gt;,Tambahkan kode sebagai
Add custom javascript to forms.,Tambahkan kustom javascript untuk bentuk.
Add fields to forms.,Menambahkan kolom ke bentuk.
Add multiple rows,Tambahkan beberapa baris
@ -151,7 +151,7 @@ Cannot change {0},Tidak dapat mengubah {0}
Cannot delete or cancel because {0} {1} is linked with {2} {3},Tidak dapat menghapus atau membatalkan karena {0} {1} dihubungkan dengan {2} {3}
Cannot delete {0} as it has child nodes,Tidak dapat menghapus {0} karena memiliki node anak
Cannot edit standard fields,Tidak dapat mengedit bidang standar
Cannot map because following condition fails: ,
Cannot map because following condition fails: ,Cannot map because following condition fails:
Cannot open instance when its {0} is open,Tidak dapat membuka contoh ketika nya {0} terbuka
Cannot open {0} when its instance is open,Tidak dapat membuka {0} ketika misalnya yang terbuka
Cannot print cancelled documents,Tidak dapat mencetak dokumen dibatalkan
@ -295,7 +295,7 @@ DocType or Field,DocType atau Bidang
Doclist JSON,Doclist JSON
Docname,Docname
Document,Dokumen
Document Status transition from ,
Document Status transition from ,Document Status transition from
Document Status transition from {0} to {1} is not allowed,Transisi Dokumen Status dari {0} ke {1} tidak diperbolehkan
Document Type,Jenis Dokumen
Document is only editable by users of role,Dokumen hanya dapat diedit oleh pengguna dari peran
@ -438,7 +438,7 @@ Gender,Jenis Kelamin
Generator,Generator
Georgia,Georgia
Get,Mendapatkan
Get From ,
Get From ,Get From
"Get your globally recognized avatar from <a href=""https://gravatar.com/"">Gravatar.com</a>","Dapatkan avatar Anda diakui secara global dari <a href=""https://gravatar.com/""> Gravatar.com </ a>"
GitHub,GitHub
GitHub Client ID,GitHub ID Client
@ -659,7 +659,7 @@ Next State,Negara berikutnya
Next actions,Tindakan berikutnya
No,Nomor
No Action,No Action
No Communication tagged with this ,
No Communication tagged with this ,No Communication tagged with this
No Copy,Tidak ada Copy
No Permissions set for this criteria.,Tidak ada Izin ditetapkan untuk kriteria ini.
No Report Loaded. Please use query-report/[Report Name] to run a report.,Ada Laporan Loaded. Silakan gunakan laporan query / [Nama Laporan] untuk menjalankan laporan.
@ -947,7 +947,7 @@ Select Type,Pilih Type
Select User or DocType to start.,Pilih Pengguna atau DocType untuk memulai.
Select a Banner Image first.,Pilih Gambar Banner pertama.
Select an image of approx width 150px with a transparent background for best results.,Pilih gambar lebar kira-kira 150px dengan latar belakang transparan untuk hasil terbaik.
Select dates to create a new ,
Select dates to create a new ,Select dates to create a new
"Select modules to be shown (based on permission). If hidden, they will be hidden for all users.","Pilih modul yang akan ditampilkan (berdasarkan izin). Jika tersembunyi, mereka akan tersembunyi untuk semua pengguna."
Select or drag across time slots to create a new event.,Pilih atau seret di slot waktu untuk membuat acara baru.
"Select target = ""_blank"" to open in a new page.","Pilih target = ""_blank"" untuk membuka di halaman baru."
@ -1168,7 +1168,7 @@ User Permissions Manager,Permissions User Manager
User Roles,Peran Pengguna
User Tags,Pengguna Tags
User Type,Tipe Pengguna
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ",
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ","User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. "
User Vote,Vote Pengguna
User not allowed to delete {0}: {1},Pengguna tidak diperbolehkan untuk menghapus {0}: {1}
User permissions should not apply for this Link,Akses user harus tidak berlaku untuk Link ini

1 by Role by Role
2 is not set is not set
3 "Company History" "Sejarah Perusahaan"
4 "Team Members" or "Management" "Anggota Tim" atau "Manajemen"
5 'In List View' not allowed for type {0} in row {1} 'Dalam Daftar View' tidak diperbolehkan untuk jenis {0} berturut-turut {1}
16 <i>text</i> <b>in</b> <i>document type</i> teks <i> </ i> <b> di </ b> <i> jenis dokumen </ i>
17 A user can be permitted to multiple records of the same DocType. Seorang pengguna dapat diizinkan untuk beberapa catatan dari DocType sama.
18 About Tentang
19 About Us Settings Tentang Kami Pengaturan Pengaturan Tetang Kami
20 About Us Team Member Tentang Kami Anggota Tim
21 Action Tindakan
22 Actions Tindakan
23 Actions for workflow (e.g. Approve, Cancel). Tindakan untuk alur kerja (misalnya Menyetujui, Batal).
24 Add Tambahkan
25 Add A New Rule Tambah Aturan Baru
26 Add A User Permission Tambah Pengguna Izin Tambah Izin Pengguna
27 Add Attachments Tambahkan Lampiran
28 Add Bookmark Tambahkan Bookmark
29 Add CSS Tambah CSS
34 Add Reply Add Reply
35 Add Total Row Tambah Jumlah Row
36 Add a New Role Tambahkan Peran Baru
37 Add a banner to the site. (small banners are usually good) Tambahkan iklan ke situs. (Spanduk kecil biasanya baik) Tambahkan iklan ke situs. (Spanduk kecil biasanya lebih baik)
38 Add all roles Tambahkan semua peran
39 Add attachment Tambahkan lampiran
40 Add code as &lt;script&gt; Tambahkan kode sebagai <script> Tambahkan kode sebagai
41 Add custom javascript to forms. Tambahkan kustom javascript untuk bentuk.
42 Add fields to forms. Menambahkan kolom ke bentuk.
43 Add multiple rows Tambahkan beberapa baris
151 Cannot delete or cancel because {0} {1} is linked with {2} {3} Tidak dapat menghapus atau membatalkan karena {0} {1} dihubungkan dengan {2} {3}
152 Cannot delete {0} as it has child nodes Tidak dapat menghapus {0} karena memiliki node anak
153 Cannot edit standard fields Tidak dapat mengedit bidang standar
154 Cannot map because following condition fails: Cannot map because following condition fails:
155 Cannot open instance when its {0} is open Tidak dapat membuka contoh ketika nya {0} terbuka
156 Cannot open {0} when its instance is open Tidak dapat membuka {0} ketika misalnya yang terbuka
157 Cannot print cancelled documents Tidak dapat mencetak dokumen dibatalkan
295 Doclist JSON Doclist JSON
296 Docname Docname
297 Document Dokumen
298 Document Status transition from Document Status transition from
299 Document Status transition from {0} to {1} is not allowed Transisi Dokumen Status dari {0} ke {1} tidak diperbolehkan
300 Document Type Jenis Dokumen
301 Document is only editable by users of role Dokumen hanya dapat diedit oleh pengguna dari peran
438 Generator Generator
439 Georgia Georgia
440 Get Mendapatkan
441 Get From Get From
442 Get your globally recognized avatar from <a href="https://gravatar.com/">Gravatar.com</a> Dapatkan avatar Anda diakui secara global dari <a href="https://gravatar.com/"> Gravatar.com </ a>
443 GitHub GitHub
444 GitHub Client ID GitHub ID Client
659 Next actions Tindakan berikutnya
660 No Nomor
661 No Action No Action
662 No Communication tagged with this No Communication tagged with this
663 No Copy Tidak ada Copy
664 No Permissions set for this criteria. Tidak ada Izin ditetapkan untuk kriteria ini.
665 No Report Loaded. Please use query-report/[Report Name] to run a report. Ada Laporan Loaded. Silakan gunakan laporan query / [Nama Laporan] untuk menjalankan laporan.
947 Select User or DocType to start. Pilih Pengguna atau DocType untuk memulai.
948 Select a Banner Image first. Pilih Gambar Banner pertama.
949 Select an image of approx width 150px with a transparent background for best results. Pilih gambar lebar kira-kira 150px dengan latar belakang transparan untuk hasil terbaik.
950 Select dates to create a new Select dates to create a new
951 Select modules to be shown (based on permission). If hidden, they will be hidden for all users. Pilih modul yang akan ditampilkan (berdasarkan izin). Jika tersembunyi, mereka akan tersembunyi untuk semua pengguna.
952 Select or drag across time slots to create a new event. Pilih atau seret di slot waktu untuk membuat acara baru.
953 Select target = "_blank" to open in a new page. Pilih target = "_blank" untuk membuka di halaman baru.
1168 User Roles Peran Pengguna
1169 User Tags Pengguna Tags
1170 User Type Tipe Pengguna
1171 User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages. User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages.
1172 User Vote Vote Pengguna
1173 User not allowed to delete {0}: {1} Pengguna tidak diperbolehkan untuk menghapus {0}: {1}
1174 User permissions should not apply for this Link Akses user harus tidak berlaku untuk Link ini

View file

@ -948,7 +948,7 @@ Select Type,Seleziona tipo
Select User or DocType to start.,Selezionare utente o DocType per iniziare.
Select a Banner Image first.,Selezionare un Banner Immagine prima.
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.
Select dates to create a new ,
Select dates to create a new ,Select dates to create a new
"Select modules to be shown (based on permission). If hidden, they will be hidden for all users.","Selezionare i moduli da visualizzare ( sulla base di permesso) . Se nascosto , essi vengono nascosti per tutti gli utenti ."
Select or drag across time slots to create a new event.,Selezionare o trascinare gli intervalli di tempo per creare un nuovo evento.
"Select target = ""_blank"" to open in a new page.","Selezionare target = "" _blank "" per aprire in una nuova pagina ."
@ -1169,7 +1169,7 @@ User Permissions Manager,Autorizzazioni utente Gestione
User Roles,ruoli degli utenti
User Tags,Tags utente
User Type,Tipo di utente
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ",
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ","User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. "
User Vote,Voto degli utenti
User not allowed to delete {0}: {1},L'utente non ha permesso di eliminare {0}: {1}
User permissions should not apply for this Link,Autorizzazioni utente non deve applicare per questo link

1 by Role per Ruolo
948 Select User or DocType to start. Selezionare utente o DocType per iniziare.
949 Select a Banner Image first. Selezionare un Banner Immagine prima.
950 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.
951 Select dates to create a new Select dates to create a new
952 Select modules to be shown (based on permission). If hidden, they will be hidden for all users. Selezionare i moduli da visualizzare ( sulla base di permesso) . Se nascosto , essi vengono nascosti per tutti gli utenti .
953 Select or drag across time slots to create a new event. Selezionare o trascinare gli intervalli di tempo per creare un nuovo evento.
954 Select target = "_blank" to open in a new page. Selezionare target = " _blank " per aprire in una nuova pagina .
1169 User Roles ruoli degli utenti
1170 User Tags Tags utente
1171 User Type Tipo di utente
1172 User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages. User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages.
1173 User Vote Voto degli utenti
1174 User not allowed to delete {0}: {1} L'utente non ha permesso di eliminare {0}: {1}
1175 User permissions should not apply for this Link Autorizzazioni utente non deve applicare per questo link

View file

@ -1,5 +1,5 @@
by Role ,
is not set,
by Role , by Role
is not set, is not set
"""Company History""",「会社の歴史」
"""Team Members"" or ""Management""",「チームメンバー」または「管理」
'In List View' not allowed for type {0} in row {1},「リスト表示では「許可されていないタイプのため{0}行{1}
@ -33,7 +33,7 @@ Add Message,メッセージを追加
Add New Permission Rule,新しいアクセス許可ルールの追加
Add Reply,返事を追加する
Add Total Row,合計行を追加
Add a New Role,新しいロールの追加
Add a New Role,新しい役割の追加
Add a banner to the site. (small banners are usually good),サイトにバナーを追加します。 (小バナーは、通常は良いです)
Add all roles,すべての役割を追加する
Add attachment,添付ファイルを追加
@ -128,7 +128,7 @@ Blog Introduction,ブログの紹介
Blog Post,ブログの投稿
Blog Settings,ブログ設定
Blog Title,ブログのタイトル
Blogger,Blogger
Blogger,ブロガー
Bookmarks,ブックマーク
Both login and password required,ログインとパスワードの両方が必要
Brand HTML,ブランドのHTML
@ -141,8 +141,8 @@ Calendar,カレンダー
Cancel,キャンセル
Cancelled,キャンセル済み
"Cannot Edit {0} directly: To edit {0} properties, create / update {1}, {2} and {3}",編集することはできません{0}に直接:{0}のプロパティを編集するには、作成/更新{1}、{2}と{3}
Cannot Update: Incorrect / Expired Link.,更新することはできません:期限切れ/不正なリンク
Cannot Update: Incorrect Password,更新することはできません。間違ったパスワードを
Cannot Update: Incorrect / Expired Link.,更新することはできません:不適切な/期限切れリンク
Cannot Update: Incorrect Password,更新することはできません。パスワードが間違っています。
Cannot add more than 50 comments,50以上のコメントを追加することはできません
Cannot cancel before submitting. See Transition {0},送信する前にキャンセルすることはできません。トランジション{0}を参照してください。
Cannot change picture,画像を変更することはできません
@ -151,7 +151,7 @@ Cannot change {0},変更することはできません{0}
Cannot delete or cancel because {0} {1} is linked with {2} {3},{0} {1}が{2} {3}とリンクされているため、削除するか、キャンセルすることはできません
Cannot delete {0} as it has child nodes,それが子ノードを持っているように{0}を削除することはできません
Cannot edit standard fields,標準フィールドを編集することはできません
Cannot map because following condition fails: ,
Cannot map because following condition fails: ,Cannot map because following condition fails:
Cannot open instance when its {0} is open,その{0}開いているときに、インスタンスを開くことはできません
Cannot open {0} when its instance is open,そのインスタンスが開いているときに{0}を開くことはできません
Cannot print cancelled documents,キャンセルの文書を印刷することはできません
@ -173,9 +173,9 @@ Check this to make this the default letter head in all prints,すべての印刷
Check which Documents are readable by a User,ドキュメントは、ユーザーが読み取り可能であるかを確認
Checked items shown on desktop,デスクトップに表示されるチェックされた項目
Child Tables are shown as a Grid in other DocTypes.,子テーブルは、他の文書型のグリッドとして表示されます。
City,区町村
City,
Classic,クラシック
Clear Cache,キャッシュをクリア
Clear Cache,現金をクリア
Clear all roles,すべての役割をクリア
Click on a link to get options,オプションを取得するには、リンクをクリックして
Click on row to view / edit.,/編集]を表示するには、行をクリックしてください。
@ -183,7 +183,7 @@ Client,顧客
Client-side formats are now deprecated,クライアント側の書式も推奨されていません
Close,閉じる
Close: {0},閉じる:{0}
Closed,クローズ
Closed,閉じました。
Code,コード
Collapse,折りたたみ
Column Break,列の区切り
@ -194,7 +194,7 @@ Comment Date,評価日時
Comment Docname,DOCNAMEコメント
Comment Doctype,文書型コメント
Comment Time,タイムコメント
Comments,解説
Comments,コメント
Communication,コミュニケーション
Communication Medium,通信メディア
Company History,社史
@ -204,7 +204,7 @@ Complete By,までに完了
Condition,条件
Contact Us Settings,お問い合わせの設定
"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",「セールスクエリ、クエリのサポート」などのような接触オプション、新しい行にそれぞれまたはカンマで区切ります。
Content,目次
Content,内容
Content Hash,コンテンツハッシュ
Content in markdown format that appears on the main side of your page,あなたのページのメイン側に表示されるマークダウン形式のコンテンツ
Content web page.,コンテンツのWebページ。
@ -268,38 +268,38 @@ Description,説明
Description and Status,説明とステータス
"Description for listing page, in plain text, only a couple of lines. (max 140 characters)",プレーンテキストで一覧ページの説明、行の唯一のカップル。 最大140文字
Description for page header.,ページヘッダの説明。
Desktop,デスクトップ
Desktop,デスクトップ
Details,詳細
Did not add,追加しませんでした
Did not cancel,キャンセルされませんでした
Did not find {0} for {0} ({1}),{1}{0} {0}のために見つけられませんでした
Did not load,ロードされませんでした
Did not remove,削除しなかった
Did not save,保存していない
Did not remove,削除されませんでした。
Did not save,保存しませんでした。
"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.",このドキュメントはインチ存在できる異なる「状態」「開く」、「承認待ち」などのような
Disable Customer Signup link in Login page,ログインページに顧客のサインアップリンクを無効にする
Disable Signup,登録を無効にする
Disabled,無効
Disabled,無効にしました。
Display,表示
Display Settings,ディスプレイの設定
Display in the sidebar of this Website Route node,このウェブサイトのルートノードのサイドバーに表示
Do not allow user to change after set the first time,ユーザーは後の最初の時間を設定変更することはできません
Doc Status,DOCの状態
DocField,DocField
DocPerm,DocPerm
DocType,のDocType
DocType Details,のDocTypeの詳細
DocType can not be merged,DOCTYPEがマージすることはできません
Doc Status,ドキュメントの状態
DocField,ドキュメントの分野
DocPerm,ドキュメントの管理
DocType,ドキュメントタイプ
DocType Details,ドキュメントタイプの詳細
DocType can not be merged,ドキュメントタイプが合併することはできません。
DocType on which this Workflow is applicable.,DOCTYPEがどのこのワークフローを適用することができる。
DocType or Field,のDocTypeまたはフィールド
Doclist JSON,Doclist、JSON
Docname,DOCNAME
DocType or Field,ドキュメントタイプまたは分野
Doclist JSON,ドキュメントリスト、JSON
Docname,ドキュメント名
Document,ドキュメント
Document Status transition from ,
Document Status transition from {0} to {1} is not allowed,{1}の{0}からの文書の状態遷移は許可されていません
Document Type,伝票タイプ
Document is only editable by users of role,文書には、ロールのユーザーのみ編集可能です
Documentation,ドキュメン
Document Status transition from ,Document Status transition from
Document Status transition from {0} to {1} is not allowed,{{0}から{1}までのドキュメント・ステータス推移は許可されません。
Document Type,ドキュメントタイプ
Document is only editable by users of role,文書は、役割のユーザーによって編集可能です。
Documentation,ドキュメンテーション
Documents,文書
Download,ダウンロード
Download Backup,ダウンロードバックアップ
@ -314,9 +314,9 @@ Edit,編集
Edit Permissions,認可を編集する
Editable,編集可能な
Email,Eメール
Email Alert,電子メールアラート
Email Alert,電子メール警告
Email Alert Recipient,電子メール警告の受信者
Email Alert Recipients,電子メールアラートの受信者
Email Alert Recipients,電子メール警告の受信者
Email By Document Field,ドキュメントフィールドによって電子メール
Email Footer,電子メールのフッター
Email Host,電子メールホスト
@ -559,10 +559,10 @@ Last Login,最終ログイン
Last Name,お名前(姓)
Last updated by,最終更新者
Lastmod,LASTMOD
Lato,ラト
Lato,LATO
Leave blank to repeat always,常に繰り返す空白のままにします
Left,
Less or equals,以下のequals
Less or equals,以下か同等
Less than,未満
Letter,手紙
Letter Head,レターヘッド(会社名•所在地などを便箋上部に印刷したもの)
@ -581,22 +581,22 @@ List,リスト
List a document type,ドキュメントタイプを一覧表示します
List of Web Site Forum's Posts.,Webサイトのフォーラムの投稿のリスト。
Loading,読み込み中
Loading Report,積載レポート
Loading Report,レポートを読み込み中
Loading...,読み込んでいます...
Localization,ローカライズ
Location,ロケーション
Localization,現地化
Location,位置
Log of error on automated events (scheduler).,自動化されたイベント(スケジューラ)にエラーのログ。
Login,ログイン
Login After,ログイン後
Login Before,前にログイン
Login Before,ログインする前に
Login Id,ログインID
Login not allowed at this time,ログインこの時点では許可されていません
Login not allowed at this time,この時点でログインは許可されていません
Logout,ログアウト
Long Text,長いテキスト
Low,
Lucida Grande,ルシーダグランデ
Mail Password,メールパスワード
Main Section,要部
Main Section,主なセクション
Make a new,新しいを作成する
Make a new record,新しいレコードを作る
Male,男性
@ -660,14 +660,14 @@ Next State,次の状態
Next actions,次のアクション
No,いいえ
No Action,何もしない
No Communication tagged with this ,
No Communication tagged with this ,No Communication tagged with this
No Copy,何をコピーしない
No Permissions set for this criteria.,いいえ権限は、この基準に設定されていません。
No Report Loaded. Please use query-report/[Report Name] to run a report.,報告はロードされません。レポートを実行するためにクエリレポート/ [レポート名]を使用してください。
No Results,がありませんでした
No Sidebar,いいえサイドバーません
No User Permissions found.,いいえユーザーのアクセス許可が見つかりませんでした。
No data found,見つからデータなし
No data found,データーが見つかりません
No file attached,添付ファイルがありません
No further records,これ以上のレコードがない
No one,誰も見ることができない
@ -700,7 +700,7 @@ Not permitted,許可されていません
"Note: For best results, images must be of the same size and width must be greater than height.",注:最良の結果を得るには、画像が同じ大きさと幅のものでなければならない高さよりも大きくなければなりません。
Note: Other permission rules may also apply,注意:他の許可ルールも適用される場合があります
Note: maximum attachment size = 1mb,添付ファイルの最大サイズは1メガバイト=
Nothing to show,表示することは何もない
Nothing to show,表示するものがありません
Nothing to show for this selection,この選択のために表示することは何もない
Notification Count,通知回数
Notify by Email,電子メールによる通知
@ -919,10 +919,10 @@ Rules defining transition of state in the workflow.,ワークフローの状態
Run scheduled jobs only if checked,スケジュールされたジョブを実行して確認した場合にのみ
Run the report first,最初のレポートを実行します。
SMTP Server (e.g. smtp.gmail.com),SMTPサーバーsmtp.gmail.com
Sales,セールス
Sales,販売
Same file has already been attached to the record,同じファイルが既に記録に添付されています
Sample,
Saturday,土曜日 (午前中のみ)
Saturday,土曜日
Save,保存
Scheduler Log,スケジューラログ
Script,スクリプト
@ -948,7 +948,7 @@ Select Type,タイプを選択
Select User or DocType to start.,開始するにはユーザーまたはのDocTypeを選択します。
Select a Banner Image first.,最初のバナー画像を選択します。
Select an image of approx width 150px with a transparent background for best results.,最良の結果を得るための透明な背景を持つ約幅150ピクセルの画像を選択します。
Select dates to create a new ,
Select dates to create a new ,Select dates to create a new
"Select modules to be shown (based on permission). If hidden, they will be hidden for all users.",(許可に基づいて)表示されるようにモジュールを選択します。隠された場合は、すべてのユーザーに対して非表示になります。
Select or drag across time slots to create a new event.,選択するか、新規イベントを作成するためのタイムスロットをドラッグ。
"Select target = ""_blank"" to open in a new page.","新しいページで開くように選択し、ターゲット= ""_blank"""
@ -966,7 +966,7 @@ Send alert if this field's value changes,アラートを送信し、このフィ
Send an email reminder in the morning,午前中にメールリマインダーを送る
Send download link of a recent backup to System Managers,システム管理者への最新のバックアップのダウンロードリンクを送信
Send enquiries to this email address,このメールアドレスに問い合わせ先】
Sender,センダー
Sender,送信者
Sent,送信済み
Sent Mail,送信済みメール
Sent Quotation,送信された引用
@ -1022,7 +1022,7 @@ Single Post (article).,シングルポスト(記事)。
Single Types have only one record no tables associated. Values are stored in tabSingles,シングルタイプはテーブルが関連付けられていない唯一の記録がある。値がtabSinglesに格納されてい
Sitemap Browser,サイトマップブラウザー
Slideshow,スライドショー(一連の画像を順次表示するもの)
Slideshow Items,スライドショーアイテム
Slideshow Items,スライドショー項目
Slideshow Name,スライドショーの名前
Small Text,小さなテキスト
Social Login Keys,社会ログインキー
@ -1067,64 +1067,65 @@ System User,システムユーザー
System and Website Users,システムとウェブサイトユーザー
System generated mails will be sent from this email id.,システム生成されたメールは、この電子メールIDから送信されます。
Table,表(テーブル)
Table {0} cannot be empty,テーブル{0}空にすることはできません
Tag,タグ
Tag Name,タグ名
Tags,タグ
Table {0} cannot be empty,表{0}を空欄にすることはできません。
Tag,タグ(札/マークする)
Tag Name,タグ名(札名)
Tags,タグ(札/マークする)
Tahoma,MS Pゴシック
Target,ターゲット
Tasks,タスク
Target,ターゲット/標的/目標
Tasks,タスク/仕事/任務
Team Members,チームメンバー
Team Members Heading,チームメンバー見出し
Template,テンプレート
Team Members Heading,チームメンバー見出し
Template,テンプレート(パソコンのデータ版で資料作成時などに役立つ定型的な表や書式のこと)
Template Pages cannot be moved,テンプレートページを移動することはできません
Test,テスト
Test Runner,テストランナー
Text,テキスト
Text Align,テキストの整列
Text Editor,テキストエディタ
Thank you for your message,あなたのメッセージをありがとうございました
The name of your company / website as you want to appear on browser title bar. All pages will have this as the prefix to the title.,あなたの会社/ウェブサイトの名前は、ブラウザのタイトルバーに表示するように。すべてのページは、タイトルの接頭辞として、これを持つことになります。
The system provides many pre-defined roles. You can add new roles to set finer permissions.,このシステムは、多くの事前定義された役割を提供しています。あなたが細かい権限を設定するために新しいロールを追加することができます。
Then By (optional),それまでに(オプション
There should remain at least one System Manager,少なくとも1つのシステム·マネージャーが残されている必要があります
Test Runner,テストランナー/テストを実行する人。
Text,文章/メッセージ
Text Align,文章を行を整える。
Text Editor,文章の編集。
Thank you for your message,メッセージをありがとうございました
The name of your company / website as you want to appear on browser title bar. All pages will have this as the prefix to the title.,あなたの会社/ウェブサイトの名前は、観覧者のタイトルバーに表示されます。すべてのページにタイトルの接頭辞として、これが付きます。
The system provides many pre-defined roles. You can add new roles to set finer permissions.,このシステムは、多くの事前定義された機能/役割を提供しています。あなたは細かい権限を設定するための新しい機能/役割を追加することができます。
Then By (optional),それまでに(オプション/任意の
There should remain at least one System Manager,少なくとも1つのシステム·マネージャーが残っているはずです。
There were errors,エラーが発生しました
There were errors while sending email. Please try again.,電子メールの送信中にエラーが発生しました。もう一度お試しください。
"There were some errors setting the name, please contact the administrator",の設定は多少の誤差がありました、管理者に連絡してください
"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社を持って取引を見ることができます。
These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,これらの値は自動的にトランザクションで更新され、また、これらの値を含む取引に、このユーザーの権限を制限するのに有用であろう。
"These will also be set as default values for those links, if only one such permission record is defined.",唯一つのそのような許可レコードが定義されている場合、これらはまた、それらのリンクのデフォルト値として設定される。
There were errors while sending email. Please try again.,メールの送信中にエラーが発生しました。もう一度お試しください。
"There were some errors setting the name, please contact the administrator",前の設定で多少のエラーが発生しました。管理者に連絡してください。
"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社のリンクされた取引を見ることができます。
These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,これらの値は自動的に処理の段階で更新され、また取引にこの値が含まれているユーザーの権限を制限するのに役立つでしょう。
"These will also be set as default values for those links, if only one such permission record is defined.",許可記録が定義されている場合のみ、それらのリンクは既定値として設定される。
Third Party Authentication,第三者認証
This field will appear only if the fieldname defined here has value OR the rules are true (examples): <br>myfieldeval:doc.myfield=='My Value'<br>eval:doc.age>18,ここで定義されたフィールド名が値を持っているかのルールが真(例)している場合にのみ、このフィールドが表示されます:検索 myFieldという評価doc.myfield == '私の値'検索評価: doc.age> 18
This goes above the slideshow.,これは、スライドショーを上回った
This is PERMANENT action and you cannot undo. Continue?,これは永久的な行動であり、あなたは元に戻すことはできません。続行しますか。
"This is a standard format. To make changes, please copy it make make a new format.",これは標準的な形式です。変更を行うには、新しいフォーマットを作成すること、それをコピーしてください。
This goes above the slideshow.,これは、スライドショーの上にいきます
This is PERMANENT action and you cannot undo. Continue?,これは固定された行動/作業であり、あなたが取り消すことはできません。続行しますか?
"This is a standard format. To make changes, please copy it make make a new format.",これは標準的な形式です。修正する場合は、これをコピーして新しい形式を作成して下さい。
This is permanent action and you cannot undo. Continue?,これは永久的な行動であり、あなたは元に戻すことはできません。続行しますか。
This must be checked if Style Settings are applicable,スタイル設定が適用される場合、これはチェックしなければならない
This role update User Permissions for a user,ユーザーのためのこの役割は、ユーザーの更新権限
This must be checked if Style Settings are applicable,スタイル設定を使用する場合、これは確認して下さい。
This role update User Permissions for a user,これはユーザーのためにユーザー許可を更新する役割です。
Thursday,木曜日
Tile,タイル
Time,時間
Time Zone,時間帯
Timezone,タイムゾーン
Title,タイトル
Title / headline of your page,あなたのページのタイトル/ヘッドライン
Title Case,タイトルケース
Title Field,タイトルフィールド
Title Prefix,タイトルプレフィックス
Title field must be a valid fieldname,タイトルフィールドは、有効なフィールド名である必要があります
Title is required,タイトルを入力下さい。
To,おわり
To Do,TO DO
"To format columns, give column labels in the query.",フォーマット列に、クエリで列ラベルを与える。
"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.",「ユーザー権限の適用」をチェックして、特定のレコードだけの役割にアセスを得た。ユーザーのアクセス許可は、特定のレコードにそのような役割を持つユーザーを制限するために使用されています。
"To run a test add the module name in the route after '{0}'. For example, {1}",テストを実行するには、 '{0}'の後にルートでモジュール名を追加します。たとえば、{1}
ToDo,ToDoの
Too many writes in one request. Please send smaller requests,1要求が多すぎ書き込みます。小さい要求を送信してください。
Timezone,時間帯
Title,タイトル/題
Title / headline of your page,あなたのページの題/見出し
Title Case,見出しの大文字指定
Title Field,タイトルフィールド/欄のタイトル
Title Prefix,接頭辞のタイトル
Title field must be a valid fieldname,タイトルフィールド(欄のタイトル)は、有効なフィールド名(欄名)である必要があります。
Title is required,題を入力下さい。
To,"〜宛。
"
To Do,するために
"To format columns, give column labels in the query.",フォーマットのコラム(縦の列)に、質問の標識を設ける。
"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.",特定な記録用の任務にアクセスを与えるためには、「ユーザー許可の適用」をチェックして下さい。ユーザー許可は特定の記録用の役割を持っているユーザーだけに使用されます。
"To run a test add the module name in the route after '{0}'. For example, {1}",テストを実行するには、 '{0}'の後にルートにモジュール名を追加します。たとえば、{1}
ToDo,するために/するための
Too many writes in one request. Please send smaller requests,1つの要求書に記入が多すぎます。要求内容を小さくして送信してください。
Top Bar,トップバー
Top Bar Background,トップバーの背景
Top Bar Item,トップバーの項目
Top Bar Items,トップバーのアイテム
Top Bar Items,トップバーの項目
Top Bar Text,トップバーのテキスト
Top Bar text and background is same color. Please change.,トップバーのテキストと背景が同じ色である。変更してください。
Transaction,取引
@ -1147,39 +1148,39 @@ Upcoming Events for Today,今日すべき事柄。
Update,更新
Update Field,フィールド(欄)の更新
Update Value,値の更新
Updated,更新
Upload,アップロード
Upload Attachment,添付ファイルをアップロード
Upload CSV file containing all user permissions in the same format as Download.,ダウンロードと同じ形式で、すべてのユーザーのアクセス許可を含むCSVファイルをアップロードします。
Upload a file,ファイルをアップロード
Upload and Import,アップロードとインポート
Updated,更新済み
Upload,アップロード(手元のデータをメインのコンピューターに送ること。)
Upload Attachment,添付ファイルをアップロード(添付ファイルをメインのコンピューターに送信する。)
Upload CSV file containing all user permissions in the same format as Download.,ダウンロードと同じ形式に、全ユーザーのアクセス許可を含むCSVファイルをアップロードします。
Upload a file,ファイルのアップロード。(ファイルをメインのコンピューターに送信すること。)
Upload and Import,アップロード(手元のデータをメインのコンピューターに送信すること。)とインポート(取り込む)
Upload and Sync,アップロードと同期
Uploading...,アップロードしています...
Uploading...,アップロードしています...(手元のコンピューターのデータをメインのコンピューターに送信中)
Upvotes,Upvotes
Use TLS,TLSを使用
Use TLS,TLS(通信経路を記号化し、デジタル証明書の受け渡しによって相互確認を行う方式)を使用
User,ユーザー(使用者)
User Cannot Create,ユーザーが作成できない
User Cannot Create,ユーザーは作成できません。
User Cannot Search,ユーザーが検索することはできません
User Defaults,ユーザー·デフォルト設定
User Defaults,ユーザー·デフォルト設定(初期設定)
User ID of a blog writer.,ブログライターのユーザーID。
User Image,ユーザー画像
User Permission,ユーザー権限
User Image,ユーザー画像(利用者の人物紹介画像)
User Permission,ユーザーのアクセス許可
User Permissions,ユーザーのアクセス許可
User Permissions Manager,ユーザー権限のマネージャ
User Permissions Manager,ユーザー(利用者)へ許可を与えるの管理人
User Roles,ユーザーの役割
User Tags,ユーザータグ
User Type,ユーザー タイプ
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ",
User Tags,ユーザータグ(札/マーク付け)
User Type,ユーザー タイプ(利用者の種類)
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ",ユーザータイプ''システムユーザー’’はデスクトップにアクセス(接続)が可能。''ウェブサイトユーザー’’のみメインページへのログイン(入室)が可能。
User Vote,ユーザー投票
User not allowed to delete {0}: {1},ユーザーが削除することはできません{0}{1}
User permissions should not apply for this Link,ユーザーのアクセス許可は、このリンクを申請するべきではありません
User not allowed to delete {0}: {1},ユーザーは{0}{1}を削除することはできません。
User permissions should not apply for this Link,ユーザー(利用者)はこのリンクへのアクセスを許可されていません。
User {0} cannot be deleted,ユーザー{0}を削除することはできません
User {0} cannot be disabled,ユーザー{0}無効にすることはできません
User {0} cannot be renamed,ユーザー{0}の名前を変更できません
User {0} does not exist,ユーザー{0}は存在しません
UserRole,USERROLE
Users and Permissions,ユーザーと権限
Users with role {0}:,ロールを持つユーザー{0}
UserRole,ユーザーの役割(利用者の役割)
Users and Permissions,ユーザーと許可
Users with role {0}:,ユーザー(利用者)と役割/任務{0}
Valid Login id required.,有効なログインIDが必要です。
Valid email and name required,有効なメールアドレスと名前が必要です。
Value,
@ -1288,7 +1289,7 @@ comment,コメント
comments,注釈
dd-mm-yyyy,DD-MM-YYYY
dd.mm.yyyy,DD.MM.YYYY
dd/mm/yyyy,yyyy / mm / dd人数
dd/mm/yyyy,yyyy / mm / dd
download,ダウンロード
download-alt,ダウンロード-ALT
edit,編集
@ -1388,23 +1389,23 @@ step-forward,ステップフォワード
stop,配信の停止
tag,タグ
tags,タグ
"target = ""_blank""","ターゲット= ""_blank"""
"target = ""_blank""","ターゲット= ""空白"""
tasks,タスク
text-height,テキストの高さ
text-height,文章の高さ
text-width,テキスト幅
th,
th-large,TH-ラージ
th-list,TH-リスト
thumbs-down,不賛成
thumbs-down,不賛成
thumbs-up,賛成
time,time
tint,色合い
tint,色合い/色調
to,上を以下のように変更します。
trash,ごみ
upload,アップロード
use % as wildcard,ワイルドカードとして%を使用
use % as wildcard,ワイルドカードとして%を使用して下さい。
user,ユーザー
user_image_show,user_image_show
user_image_show,ユーザー(利用者)画像の表示。
values and dates,値と日付
values separated by commas,"カンマ(,)で区切られた値"
volume-down,音量を落とす

1 by Role by Role
2 is not set is not set
3 "Company History" 「会社の歴史」
4 "Team Members" or "Management" 「チームメンバー」または「管理」
5 'In List View' not allowed for type {0} in row {1} 「リスト表示では「許可されていないタイプのため{0}行{1}
33 Add New Permission Rule 新しいアクセス許可ルールの追加
34 Add Reply 返事を追加する
35 Add Total Row 合計行を追加
36 Add a New Role 新しいロールの追加 新しい役割の追加
37 Add a banner to the site. (small banners are usually good) サイトにバナーを追加します。 (小バナーは、通常は良いです)
38 Add all roles すべての役割を追加する
39 Add attachment 添付ファイルを追加
128 Blog Post ブログの投稿
129 Blog Settings ブログ設定
130 Blog Title ブログのタイトル
131 Blogger Blogger ブロガー
132 Bookmarks ブックマーク
133 Both login and password required ログインとパスワードの両方が必要
134 Brand HTML ブランドのHTML
141 Cancel キャンセル
142 Cancelled キャンセル済み
143 Cannot Edit {0} directly: To edit {0} properties, create / update {1}, {2} and {3} 編集することはできません{0}に直接:{0}のプロパティを編集するには、作成/更新{1}、{2}と{3}
144 Cannot Update: Incorrect / Expired Link. 更新することはできません:期限切れ/不正なリンク。 更新することはできません:不適切な/期限切れリンク
145 Cannot Update: Incorrect Password 更新することはできません。間違ったパスワードを 更新することはできません。パスワードが間違っています。
146 Cannot add more than 50 comments 50以上のコメントを追加することはできません
147 Cannot cancel before submitting. See Transition {0} 送信する前にキャンセルすることはできません。トランジション{0}を参照してください。
148 Cannot change picture 画像を変更することはできません
151 Cannot delete or cancel because {0} {1} is linked with {2} {3} {0} {1}が{2} {3}とリンクされているため、削除するか、キャンセルすることはできません
152 Cannot delete {0} as it has child nodes それが子ノードを持っているように{0}を削除することはできません
153 Cannot edit standard fields 標準フィールドを編集することはできません
154 Cannot map because following condition fails: Cannot map because following condition fails:
155 Cannot open instance when its {0} is open その{0}開いているときに、インスタンスを開くことはできません
156 Cannot open {0} when its instance is open そのインスタンスが開いているときに{0}を開くことはできません
157 Cannot print cancelled documents キャンセルの文書を印刷することはできません
173 Check which Documents are readable by a User ドキュメントは、ユーザーが読み取り可能であるかを確認
174 Checked items shown on desktop デスクトップに表示されるチェックされた項目
175 Child Tables are shown as a Grid in other DocTypes. 子テーブルは、他の文書型のグリッドとして表示されます。
176 City 市区町村 都市
177 Classic クラシック
178 Clear Cache キャッシュをクリア 現金をクリア
179 Clear all roles すべての役割をクリア
180 Click on a link to get options オプションを取得するには、リンクをクリックして
181 Click on row to view / edit. /編集]を表示するには、行をクリックしてください。
183 Client-side formats are now deprecated クライアント側の書式も推奨されていません
184 Close 閉じる
185 Close: {0} 閉じる:{0}
186 Closed クローズ 閉じました。
187 Code コード
188 Collapse 折りたたみ
189 Column Break 列の区切り
194 Comment Docname DOCNAMEコメント
195 Comment Doctype 文書型コメント
196 Comment Time タイムコメント
197 Comments 解説 コメント
198 Communication コミュニケーション
199 Communication Medium 通信メディア
200 Company History 社史
204 Condition 条件
205 Contact Us Settings お問い合わせの設定
206 Contact options, like "Sales Query, Support Query" etc each on a new line or separated by commas. 「セールスクエリ、クエリのサポート」などのような接触オプション、新しい行にそれぞれまたはカンマで区切ります。
207 Content 目次 内容
208 Content Hash コンテンツハッシュ
209 Content in markdown format that appears on the main side of your page あなたのページのメイン側に表示されるマークダウン形式のコンテンツ
210 Content web page. コンテンツのWebページ。
268 Description and Status 説明とステータス
269 Description for listing page, in plain text, only a couple of lines. (max 140 characters) プレーンテキストで一覧ページの説明、行の唯一のカップル。 (最大140文字)
270 Description for page header. ページヘッダの説明。
271 Desktop デスクトップ版 デスクトップ
272 Details 詳細
273 Did not add 追加しませんでした
274 Did not cancel キャンセルされませんでした
275 Did not find {0} for {0} ({1}) ({1}){0} {0}のために見つけられませんでした
276 Did not load ロードされませんでした
277 Did not remove 削除しなかった 削除されませんでした。
278 Did not save 保存していない 保存しませんでした。
279 Different "States" this document can exist in. Like "Open", "Pending Approval" etc. このドキュメントはインチ存在できる異なる「状態」「開く」、「承認待ち」などのような
280 Disable Customer Signup link in Login page ログインページに顧客のサインアップリンクを無効にする
281 Disable Signup 登録を無効にする
282 Disabled 無効 無効にしました。
283 Display 表示
284 Display Settings ディスプレイの設定
285 Display in the sidebar of this Website Route node このウェブサイトのルートノードのサイドバーに表示
286 Do not allow user to change after set the first time ユーザーは後の最初の時間を設定変更することはできません
287 Doc Status DOCの状態 ドキュメントの状態
288 DocField DocField ドキュメントの分野
289 DocPerm DocPerm ドキュメントの管理
290 DocType のDocType ドキュメントタイプ
291 DocType Details のDocTypeの詳細 ドキュメントタイプの詳細
292 DocType can not be merged DOCTYPEがマージすることはできません ドキュメントタイプが合併することはできません。
293 DocType on which this Workflow is applicable. DOCTYPEがどのこのワークフローを適用することができる。
294 DocType or Field のDocTypeまたはフィールド ドキュメントタイプまたは分野
295 Doclist JSON Doclist、JSON ドキュメントリスト、JSON
296 Docname DOCNAME ドキュメント名
297 Document ドキュメント
298 Document Status transition from Document Status transition from
299 Document Status transition from {0} to {1} is not allowed {1}の{0}からの文書の状態遷移は許可されていません {{0}から{1}までのドキュメント・ステータス推移は許可されません。
300 Document Type 伝票タイプ ドキュメントタイプ
301 Document is only editable by users of role 文書には、ロールのユーザーのみ編集可能です 文書は、役割のユーザーによって編集可能です。
302 Documentation ドキュメント ドキュメンテーション
303 Documents 文書
304 Download ダウンロード
305 Download Backup ダウンロードバックアップ
314 Edit Permissions 認可を編集する
315 Editable 編集可能な
316 Email Eメール
317 Email Alert 電子メールアラート 電子メール警告
318 Email Alert Recipient 電子メール警告の受信者
319 Email Alert Recipients 電子メールアラートの受信者 電子メール警告の受信者
320 Email By Document Field ドキュメントフィールドによって電子メール
321 Email Footer 電子メールのフッター
322 Email Host 電子メールホスト
559 Last Name お名前(姓)
560 Last updated by 最終更新者
561 Lastmod LASTMOD
562 Lato ラト LATO
563 Leave blank to repeat always 常に繰り返す空白のままにします
564 Left
565 Less or equals 以下のequals 以下か同等
566 Less than 未満
567 Letter 手紙
568 Letter Head レターヘッド(会社名•所在地などを便箋上部に印刷したもの)
581 List a document type ドキュメントタイプを一覧表示します
582 List of Web Site Forum's Posts. Webサイトのフォーラムの投稿のリスト。
583 Loading 読み込み中
584 Loading Report 積載レポート レポートを読み込み中
585 Loading... 読み込んでいます...
586 Localization ローカライズ 現地化
587 Location ロケーション 位置
588 Log of error on automated events (scheduler). 自動化されたイベント(スケジューラ)にエラーのログ。
589 Login ログイン
590 Login After ログイン後
591 Login Before 前にログイン ログインする前に
592 Login Id ログインID
593 Login not allowed at this time ログインこの時点では許可されていません この時点でログインは許可されていません。
594 Logout ログアウト
595 Long Text 長いテキスト
596 Low
597 Lucida Grande ルシーダグランデ
598 Mail Password メールパスワード
599 Main Section 要部 主なセクション
600 Make a new 新しいを作成する
601 Make a new record 新しいレコードを作る
602 Male 男性
660 Next actions 次のアクション
661 No いいえ
662 No Action 何もしない
663 No Communication tagged with this No Communication tagged with this
664 No Copy 何をコピーしない
665 No Permissions set for this criteria. いいえ権限は、この基準に設定されていません。
666 No Report Loaded. Please use query-report/[Report Name] to run a report. 報告はロードされません。レポートを実行するためにクエリレポート/ [レポート名]を使用してください。
667 No Results がありませんでした
668 No Sidebar いいえサイドバーません
669 No User Permissions found. いいえユーザーのアクセス許可が見つかりませんでした。
670 No data found 見つからデータなし データーが見つかりません
671 No file attached 添付ファイルがありません
672 No further records これ以上のレコードがない
673 No one 誰も見ることができない
700 Note: For best results, images must be of the same size and width must be greater than height. 注:最良の結果を得るには、画像が同じ大きさと幅のものでなければならない高さよりも大きくなければなりません。
701 Note: Other permission rules may also apply 注意:他の許可ルールも適用される場合があります
702 Note: maximum attachment size = 1mb 注:添付ファイルの最大サイズは1メガバイト=
703 Nothing to show 表示することは何もない 表示するものがありません
704 Nothing to show for this selection この選択のために表示することは何もない
705 Notification Count 通知回数
706 Notify by Email 電子メールによる通知
919 Run scheduled jobs only if checked スケジュールされたジョブを実行して確認した場合にのみ
920 Run the report first 最初のレポートを実行します。
921 SMTP Server (e.g. smtp.gmail.com) SMTPサーバー(例:smtp.gmail.com)
922 Sales セールス 販売
923 Same file has already been attached to the record 同じファイルが既に記録に添付されています
924 Sample
925 Saturday 土曜日 (午前中のみ) 土曜日
926 Save 保存
927 Scheduler Log スケジューラログ
928 Script スクリプト
948 Select User or DocType to start. 開始するにはユーザーまたはのDocTypeを選択します。
949 Select a Banner Image first. 最初のバナー画像を選択します。
950 Select an image of approx width 150px with a transparent background for best results. 最良の結果を得るための透明な背景を持つ約幅150ピクセルの画像を選択します。
951 Select dates to create a new Select dates to create a new
952 Select modules to be shown (based on permission). If hidden, they will be hidden for all users. (許可に基づいて)表示されるようにモジュールを選択します。隠された場合は、すべてのユーザーに対して非表示になります。
953 Select or drag across time slots to create a new event. 選択するか、新規イベントを作成するためのタイムスロットをドラッグ。
954 Select target = "_blank" to open in a new page. 新しいページで開くように選択し、ターゲット= "_blank"。
966 Send an email reminder in the morning 午前中にメールリマインダーを送る
967 Send download link of a recent backup to System Managers システム管理者への最新のバックアップのダウンロードリンクを送信
968 Send enquiries to this email address このメールアドレスに問い合わせ先】
969 Sender センダー 送信者
970 Sent 送信済み
971 Sent Mail 送信済みメール
972 Sent Quotation 送信された引用
1022 Single Types have only one record no tables associated. Values are stored in tabSingles シングルタイプはテーブルが関連付けられていない唯一の記録がある。値がtabSinglesに格納されてい
1023 Sitemap Browser サイトマップブラウザー
1024 Slideshow スライドショー(一連の画像を順次表示するもの)
1025 Slideshow Items スライドショーアイテム スライドショー項目
1026 Slideshow Name スライドショーの名前
1027 Small Text 小さなテキスト
1028 Social Login Keys 社会ログインキー
1067 System and Website Users システムとウェブサイトユーザー
1068 System generated mails will be sent from this email id. システム生成されたメールは、この電子メールIDから送信されます。
1069 Table 表(テーブル)
1070 Table {0} cannot be empty テーブル{0}空にすることはできません 表{0}を空欄にすることはできません。
1071 Tag タグ タグ(札/マークする)
1072 Tag Name タグ名 タグ名(札名)
1073 Tags タグ タグ(札/マークする)
1074 Tahoma MS Pゴシック
1075 Target ターゲット ターゲット/標的/目標
1076 Tasks タスク タスク/仕事/任務
1077 Team Members チームメンバー
1078 Team Members Heading チームメンバーは見出し チームメンバーの見出し
1079 Template テンプレート テンプレート(パソコンのデータ版で資料作成時などに役立つ定型的な表や書式のこと)
1080 Template Pages cannot be moved テンプレートページを移動することはできません
1081 Test テスト
1082 Test Runner テストランナー テストランナー/テストを実行する人。
1083 Text テキスト 文章/メッセージ
1084 Text Align テキストの整列 文章を行を整える。
1085 Text Editor テキストエディタ 文章の編集。
1086 Thank you for your message あなたのメッセージをありがとうございました メッセージをありがとうございました。
1087 The name of your company / website as you want to appear on browser title bar. All pages will have this as the prefix to the title. あなたの会社/ウェブサイトの名前は、ブラウザのタイトルバーに表示するように。すべてのページは、タイトルの接頭辞として、これを持つことになります。 あなたの会社/ウェブサイトの名前は、観覧者のタイトルバーに表示されます。すべてのページにタイトルの接頭辞として、これが付きます。
1088 The system provides many pre-defined roles. You can add new roles to set finer permissions. このシステムは、多くの事前定義された役割を提供しています。あなたが細かい権限を設定するために新しいロールを追加することができます。 このシステムは、多くの事前定義された機能/役割を提供しています。あなたは細かい権限を設定するための新しい機能/役割を追加することができます。
1089 Then By (optional) それまでに(オプション) それまでに(オプション/任意の)
1090 There should remain at least one System Manager 少なくとも1つのシステム·マネージャーが残されている必要があります 少なくとも1つのシステム·マネージャーが残っているはずです。
1091 There were errors エラーが発生しました
1092 There were errors while sending email. Please try again. 電子メールの送信中にエラーが発生しました。もう一度お試しください。 メールの送信中にエラーが発生しました。もう一度お試しください。
1093 There were some errors setting the name, please contact the administrator 名の設定は多少の誤差がありました、管理者に連絡してください 名前の設定で多少のエラーが発生しました。管理者に連絡してください。
1094 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社を持って取引を見ることができます。 これらの権限は許可記録がリンクされているすべての取引に適用されます。例えば、C社がユーザXのユーザー権限に追加された場合、ユーザXだけがC社のリンクされた取引を見ることができます。
1095 These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values. これらの値は自動的にトランザクションで更新され、また、これらの値を含む取引に、このユーザーの権限を制限するのに有用であろう。 これらの値は自動的に処理の段階で更新され、また取引にこの値が含まれているユーザーの権限を制限するのに役立つでしょう。
1096 These will also be set as default values for those links, if only one such permission record is defined. 唯一つのそのような許可レコードが定義されている場合、これらはまた、それらのリンクのデフォルト値として設定される。 許可記録が定義されている場合のみ、それらのリンクは既定値として設定される。
1097 Third Party Authentication 第三者認証
1098 This field will appear only if the fieldname defined here has value OR the rules are true (examples): <br>myfieldeval:doc.myfield=='My Value'<br>eval:doc.age>18 ここで定義されたフィールド名が値を持っているかのルールが真(例)している場合にのみ、このフィールドが表示されます:検索 myFieldという評価:doc.myfield == '私の値'検索評価: doc.age> 18
1099 This goes above the slideshow. これは、スライドショーを上回った。 これは、スライドショーの上にいきます。
1100 This is PERMANENT action and you cannot undo. Continue? これは永久的な行動であり、あなたは元に戻すことはできません。続行しますか。 これは固定された行動/作業であり、あなたが取り消すことはできません。続行しますか?
1101 This is a standard format. To make changes, please copy it make make a new format. これは標準的な形式です。変更を行うには、新しいフォーマットを作成すること、それをコピーしてください。 これは標準的な形式です。修正する場合は、これをコピーして新しい形式を作成して下さい。
1102 This is permanent action and you cannot undo. Continue? これは永久的な行動であり、あなたは元に戻すことはできません。続行しますか。
1103 This must be checked if Style Settings are applicable スタイル設定が適用される場合、これはチェックしなければならない スタイル設定を使用する場合、これは確認して下さい。
1104 This role update User Permissions for a user ユーザーのためのこの役割は、ユーザーの更新権限 これはユーザーのためにユーザー許可を更新する役割です。
1105 Thursday 木曜日
1106 Tile タイル
1107 Time 時間
1108 Time Zone 時間帯
1109 Timezone タイムゾーン 時間帯
1110 Title タイトル タイトル/題
1111 Title / headline of your page あなたのページのタイトル/ヘッドライン あなたのページの題/見出し
1112 Title Case タイトルケース 見出しの大文字指定
1113 Title Field タイトルフィールド タイトルフィールド/欄のタイトル
1114 Title Prefix タイトルプレフィックス 接頭辞のタイトル
1115 Title field must be a valid fieldname タイトルフィールドは、有効なフィールド名である必要があります タイトルフィールド(欄のタイトル)は、有効なフィールド名(欄名)である必要があります。
1116 Title is required タイトルを入力下さい。 題を入力下さい。
1117 To おわり 〜宛。
1118 To Do TO DO するために
1119 To format columns, give column labels in the query. フォーマット列に、クエリで列ラベルを与える。 フォーマットのコラム(縦の列)に、質問の標識を設ける。
1120 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. 「ユーザー権限の適用」をチェックして、特定のレコードだけの役割にアセスを得た。ユーザーのアクセス許可は、特定のレコードにそのような役割を持つユーザーを制限するために使用されています。 特定な記録用の任務にアクセスを与えるためには、「ユーザー許可の適用」をチェックして下さい。ユーザー許可は特定の記録用の役割を持っているユーザーだけに使用されます。
1121 To run a test add the module name in the route after '{0}'. For example, {1} テストを実行するには、 '{0}'の後にルートでモジュール名を追加します。たとえば、{1} テストを実行するには、 '{0}'の後にルートにモジュール名を追加します。たとえば、{1}
1122 ToDo ToDoの するために/するための
1123 Too many writes in one request. Please send smaller requests 1要求が多すぎ書き込みます。小さい要求を送信してください。 1つの要求書に記入が多すぎます。要求内容を小さくして送信してください。
1124 Top Bar トップバー
1125 Top Bar Top Bar Background トップバー トップバーの背景
1126 Top Bar Background Top Bar Item トップバーの背景 トップバーの項目
1127 Top Bar Item Top Bar Items トップバーの項目
1128 Top Bar Items Top Bar Text トップバーのアイテム トップバーのテキスト
1129 Top Bar Text Top Bar text and background is same color. Please change. トップバーのテキスト トップバーのテキストと背景が同じ色である。変更してください。
1130 Top Bar text and background is same color. Please change. Transaction トップバーのテキストと背景が同じ色である。変更してください。 取引
1131 Transaction Transition Rules 取引 移行ルール
1148 Update Update Field 更新 フィールド(欄)の更新
1149 Update Field Update Value フィールド(欄)の更新 値の更新
1150 Update Value Updated 値の更新 更新済み
1151 Updated Upload 更新日 アップロード(手元のデータをメインのコンピューターに送ること。)
1152 Upload Upload Attachment アップロード 添付ファイルをアップロード(添付ファイルをメインのコンピューターに送信する。)
1153 Upload Attachment Upload CSV file containing all user permissions in the same format as Download. 添付ファイルをアップロード ダウンロードと同じ形式に、全ユーザーのアクセス許可を含むCSVファイルをアップロードします。
1154 Upload CSV file containing all user permissions in the same format as Download. Upload a file ダウンロードと同じ形式で、すべてのユーザーのアクセス許可を含むCSVファイルをアップロードします。 ファイルのアップロード。(ファイルをメインのコンピューターに送信すること。)
1155 Upload a file Upload and Import ファイルをアップロード アップロード(手元のデータをメインのコンピューターに送信すること。)とインポート(取り込む)
1156 Upload and Import Upload and Sync アップロードとインポート アップロードと同期
1157 Upload and Sync Uploading... アップロードと同期 アップロードしています...(手元のコンピューターのデータをメインのコンピューターに送信中)
1158 Uploading... Upvotes アップロードしています... Upvotes
1159 Upvotes Use TLS Upvotes TLS(通信経路を記号化し、デジタル証明書の受け渡しによって相互確認を行う方式)を使用
1160 Use TLS User TLSを使用 ユーザー(使用者)
1161 User User Cannot Create ユーザー(使用者) ユーザーは作成できません。
1162 User Cannot Create User Cannot Search ユーザーが作成できない ユーザーが検索することはできません
1163 User Cannot Search User Defaults ユーザーが検索することはできません ユーザー·デフォルト設定(初期設定)
1164 User Defaults User ID of a blog writer. ユーザー·デフォルト設定 ブログライターのユーザーID。
1165 User ID of a blog writer. User Image ブログライターのユーザーID。 ユーザー画像(利用者の人物紹介画像)
1166 User Image User Permission ユーザー画像 ユーザーのアクセス許可
1167 User Permission User Permissions ユーザー権限 ユーザーのアクセス許可
1168 User Permissions User Permissions Manager ユーザーのアクセス許可 ユーザー(利用者)へ許可を与えるの管理人
1169 User Permissions Manager User Roles ユーザー権限のマネージャ ユーザーの役割
1170 User Roles User Tags ユーザーの役割 ユーザータグ(札/マーク付け)
1171 User Tags User Type ユーザータグ ユーザー タイプ(利用者の種類)
1172 User Type User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages. ユーザー タイプ ユーザータイプ''システムユーザー’’はデスクトップにアクセス(接続)が可能。''ウェブサイトユーザー’’のみメインページへのログイン(入室)が可能。
1173 User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages. User Vote ユーザー投票
1174 User Vote User not allowed to delete {0}: {1} ユーザー投票 ユーザーは{0}:{1}を削除することはできません。
1175 User not allowed to delete {0}: {1} User permissions should not apply for this Link ユーザーが削除することはできません{0}:{1} ユーザー(利用者)はこのリンクへのアクセスを許可されていません。
1176 User permissions should not apply for this Link User {0} cannot be deleted ユーザーのアクセス許可は、このリンクを申請するべきではありません ユーザー{0}を削除することはできません
1177 User {0} cannot be deleted User {0} cannot be disabled ユーザー{0}を削除することはできません ユーザー{0}無効にすることはできません
1178 User {0} cannot be disabled User {0} cannot be renamed ユーザー{0}無効にすることはできません ユーザー{0}の名前を変更できません
1179 User {0} cannot be renamed User {0} does not exist ユーザー{0}の名前を変更できません ユーザー{0}は存在しません
1180 User {0} does not exist UserRole ユーザー{0}は存在しません ユーザーの役割(利用者の役割)
1181 UserRole Users and Permissions USERROLE ユーザーと許可
1182 Users and Permissions Users with role {0}: ユーザーと権限 ユーザー(利用者)と役割/任務{0}:
1183 Users with role {0}: Valid Login id required. ロールを持つユーザー{0}: 有効なログインIDが必要です。
1184 Valid Login id required. Valid email and name required 有効なログインIDが必要です。 有効なメールアドレスと名前が必要です。
1185 Valid email and name required Value 有効なメールアドレスと名前が必要です。
1186 Value Value Change 値変更
1289 comments dd-mm-yyyy 注釈 DD-MM-YYYY
1290 dd-mm-yyyy dd.mm.yyyy DD-MM-YYYY DD.MM.YYYY
1291 dd.mm.yyyy dd/mm/yyyy DD.MM.YYYY yyyy / mm / dd
1292 dd/mm/yyyy download yyyy / mm / dd人数 ダウンロード
1293 download download-alt ダウンロード ダウンロード-ALT
1294 download-alt edit ダウンロード-ALT 編集
1295 edit eject 編集 イジェクト
1389 stop tag 配信の停止 タグ
1390 tag tags タグ
1391 tags target = "_blank" タグ ターゲット= "空白"
1392 target = "_blank" tasks ターゲット= "_blank" タスク
1393 tasks text-height タスク 文章の高さ
1394 text-height text-width テキストの高さ テキスト幅
1395 text-width th テキスト幅
1396 th th-large TH-ラージ
1397 th-large th-list TH-ラージ TH-リスト
1398 th-list thumbs-down TH-リスト 不賛成
1399 thumbs-down thumbs-up 不賛成の 賛成
1400 thumbs-up time 賛成 time
1401 time tint time 色合い/色調
1402 tint to 色合い 上を以下のように変更します。
1403 to trash 上を以下のように変更します。 ごみ
1404 trash upload ごみ アップロード
1405 upload use % as wildcard アップロード ワイルドカードとして%を使用して下さい。
1406 use % as wildcard user ワイルドカードとして%を使用 ユーザー
1407 user user_image_show ユーザー ユーザー(利用者)画像の表示。
1408 user_image_show values and dates user_image_show 値と日付
1409 values and dates values separated by commas 値と日付 カンマ(,)で区切られた値
1410 values separated by commas volume-down カンマ(,)で区切られた値 音量を落とす
1411 volume-down volume-off 音量を落とす 無音/音量を消す。

View file

@ -1,5 +1,5 @@
by Role ,
is not set,
by Role , by Role
is not set, is not set
"""Company History""",""" ಕಂಪೆನಿ ಇತಿಹಾಸ """
"""Team Members"" or ""Management""","""ತಂಡದ ಸದಸ್ಯರು"" ಅಥವಾ "" ನಿರ್ವಹಣೆ """
'In List View' not allowed for type {0} in row {1},' ListView ರಲ್ಲಿ ' ಅವಕಾಶ ಮಾದರಿ {0} ಸತತವಾಗಿ {1}
@ -151,7 +151,7 @@ Cannot change {0},ಬದಲಾಯಿಸಲಾಗುವುದಿಲ್ಲ {0}
Cannot delete or cancel because {0} {1} is linked with {2} {3},ಅಳಿಸಲು ಅಥವಾ {0} {1} ಸಂಬಂಧ ಕಾರಣ ರದ್ದುಗೊಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ {2} {3}
Cannot delete {0} as it has child nodes,{0} ಆಲ್ಡ್ವಿಚ್ childNodes ಅಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ
Cannot edit standard fields,ಡೀಫಾಲ್ಟ್ ಜಾಗ ಸಂಪಾದಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ
Cannot map because following condition fails: ,
Cannot map because following condition fails: ,Cannot map because following condition fails:
Cannot open instance when its {0} is open,ಅದರ {0} ತೆರೆದಿರುತ್ತದೆ ಉದಾಹರಣೆಗೆ ತೆರೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ
Cannot open {0} when its instance is open,ಅದರ ಉದಾಹರಣೆಗೆ ತೆರೆದುಕೊಂಡಿದ್ದಾಗ {0} ತೆರೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ
Cannot print cancelled documents,ರದ್ದು ದಾಖಲೆಗಳನ್ನು ಮುದ್ರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ
@ -295,7 +295,7 @@ DocType or Field,Doctype ಅಥವಾ ಫೀಲ್ಡ್
Doclist JSON,ಡಾಕ್ಲಿಸ್ಟ್ JSON
Docname,Docname
Document,ದಾಖಲೆ
Document Status transition from ,
Document Status transition from ,Document Status transition from
Document Status transition from {0} to {1} is not allowed,{1} ಗೆ {0} ನಿಂದ ಡಾಕ್ಯುಮೆಂಟ್ ಸ್ಥಿತಿಯನ್ನು ಪರಿವರ್ತನೆ ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ
Document Type,ಡಾಕ್ಯುಮೆಂಟ್ ಪ್ರಕಾರ
Document is only editable by users of role,ಡಾಕ್ಯುಮೆಂಟ್ ಪಾತ್ರವನ್ನು ಬಳಕೆದಾರರು ಮಾತ್ರ ಸಂಪಾದಿಸಬಹುದು
@ -439,7 +439,7 @@ Gender,ಲಿಂಗ
Generator,ಜನರೇಟರ್
Georgia,ಜಾರ್ಜಿಯಾ
Get,ಪಡೆಯಿರಿ
Get From ,
Get From ,Get From
"Get your globally recognized avatar from <a href=""https://gravatar.com/"">Gravatar.com</a>","ಕವಿದ href=""https://gravatar.com/""> Gravatar.com </ ಒಂದು> ನಿಮ್ಮ ಜಾಗತಿಕವಾಗಿ ಮಾನ್ಯತೆ ಅವತಾರ ಪಡೆಯಿರಿ"
GitHub,GitHub
GitHub Client ID,GitHub ಕ್ಲೈಂಟ್ ID
@ -660,7 +660,7 @@ Next State,ಮುಂದೆ ರಾಜ್ಯ
Next actions,ಮುಂದೆ ಕ್ರಮಗಳು
No,ಇಲ್ಲ
No Action,ಯಾವುದೇ ಆಕ್ಷನ್
No Communication tagged with this ,
No Communication tagged with this ,No Communication tagged with this
No Copy,ಯಾವುದೇ ಪ್ರತಿಯನ್ನು
No Permissions set for this criteria.,ಯಾವುದೇ ಅನುಮತಿಗಳು ಈ ಮಾನದಂಡಗಳನ್ನು ಸೆಟ್ .
No Report Loaded. Please use query-report/[Report Name] to run a report.,ಯಾವುದೇ ವರದಿ ಲೋಡೆಡ್ . ಒಂದು ವರದಿ ರನ್ ಪ್ರಶ್ನಾವಳಿ ವರದಿ / [ವರದಿ ಹೆಸರು ] ಬಳಸಿ.
@ -948,7 +948,7 @@ Select Type,ಕೌಟುಂಬಿಕತೆ ಆಯ್ಕೆ
Select User or DocType to start.,ಆರಂಭಿಸಲು ಬಳಕೆದಾರ ಅಥವಾ doctype ಆಯ್ಕೆ .
Select a Banner Image first.,ಮೊದಲ ಒಂದು ಬ್ಯಾನರ್ ಚಿತ್ರ ಆಯ್ಕೆಮಾಡಿ .
Select an image of approx width 150px with a transparent background for best results.,ಉತ್ತಮ ಫಲಿತಾಂಶಗಳಿಗಾಗಿ ಒಂದು ಪಾರದರ್ಶಕ ಹಿನ್ನೆಲೆ ಸುಮಾರು ಅಗಲ 150px ಚಿತ್ರವನ್ನು ಆಯ್ಕೆ .
Select dates to create a new ,
Select dates to create a new ,Select dates to create a new
"Select modules to be shown (based on permission). If hidden, they will be hidden for all users.","ಆಯ್ಕೆ ಮಾಡ್ಯೂಲ್ ( ಅನುಮತಿ ಆಧರಿಸಿ ) ತೋರಿಸಲಾಗುತ್ತದೆ . ಮರೆಮಾಡಲಾಗಿದೆ ವೇಳೆ , theywill ಎಲ್ಲಾ ಬಳಕೆದಾರರಿಗೆ ಮರೆ ."
Select or drag across time slots to create a new event.,ಆಯ್ಕೆ ಅಥವಾ ಹೊಸ ಈವೆಂಟ್ ರಚಿಸಲು ಸಮಯಾವಧಿಗಳ ಅಡ್ಡಲಾಗಿ ಎಳೆಯಿರಿ .
"Select target = ""_blank"" to open in a new page.","ಆಯ್ಕೆ ಗುರಿ ಹೊಸ ಪುಟ ತೆರೆಯಲು = ""_blank"" ."
@ -1169,7 +1169,7 @@ User Permissions Manager,ಬಳಕೆದಾರ ಅನುಮತಿಗಳು ಮ
User Roles,ಬಳಕೆದಾರ ಪಾತ್ರಗಳು
User Tags,ಬಳಕೆದಾರ ಟ್ಯಾಗ್ಗಳು
User Type,ಬಳಕೆದಾರನ ಪ್ರಕಾರ
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ",
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ","User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. "
User Vote,ಬಳಕೆದಾರ ವೋಟ್
User not allowed to delete {0}: {1},ಬಳಕೆದಾರ ಅಳಿಸಲು ನಿಮಗೆ ಅನುಮತಿ ಇಲ್ಲ {0}: {1}
User permissions should not apply for this Link,ಬಳಕೆದಾರ ಅನುಮತಿಗಳನ್ನು ಈ ಲಿಂಕ್ ಅರ್ಜಿ ಮಾಡಬಾರದು

1 by Role by Role
2 is not set is not set
3 "Company History" " ಕಂಪೆನಿ ಇತಿಹಾಸ "
4 "Team Members" or "Management" "ತಂಡದ ಸದಸ್ಯರು" ಅಥವಾ " ನಿರ್ವಹಣೆ "
5 'In List View' not allowed for type {0} in row {1} ' ListView ರಲ್ಲಿ ' ಅವಕಾಶ ಮಾದರಿ {0} ಸತತವಾಗಿ {1}
151 Cannot delete or cancel because {0} {1} is linked with {2} {3} ಅಳಿಸಲು ಅಥವಾ {0} {1} ಸಂಬಂಧ ಕಾರಣ ರದ್ದುಗೊಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ {2} {3}
152 Cannot delete {0} as it has child nodes {0} ಆಲ್ಡ್ವಿಚ್ childNodes ಅಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ
153 Cannot edit standard fields ಡೀಫಾಲ್ಟ್ ಜಾಗ ಸಂಪಾದಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ
154 Cannot map because following condition fails: Cannot map because following condition fails:
155 Cannot open instance when its {0} is open ಅದರ {0} ತೆರೆದಿರುತ್ತದೆ ಉದಾಹರಣೆಗೆ ತೆರೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ
156 Cannot open {0} when its instance is open ಅದರ ಉದಾಹರಣೆಗೆ ತೆರೆದುಕೊಂಡಿದ್ದಾಗ {0} ತೆರೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ
157 Cannot print cancelled documents ರದ್ದು ದಾಖಲೆಗಳನ್ನು ಮುದ್ರಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ
295 Doclist JSON ಡಾಕ್ಲಿಸ್ಟ್ JSON
296 Docname Docname
297 Document ದಾಖಲೆ
298 Document Status transition from Document Status transition from
299 Document Status transition from {0} to {1} is not allowed {1} ಗೆ {0} ನಿಂದ ಡಾಕ್ಯುಮೆಂಟ್ ಸ್ಥಿತಿಯನ್ನು ಪರಿವರ್ತನೆ ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ
300 Document Type ಡಾಕ್ಯುಮೆಂಟ್ ಪ್ರಕಾರ
301 Document is only editable by users of role ಡಾಕ್ಯುಮೆಂಟ್ ಪಾತ್ರವನ್ನು ಬಳಕೆದಾರರು ಮಾತ್ರ ಸಂಪಾದಿಸಬಹುದು
439 Generator ಜನರೇಟರ್
440 Georgia ಜಾರ್ಜಿಯಾ
441 Get ಪಡೆಯಿರಿ
442 Get From Get From
443 Get your globally recognized avatar from <a href="https://gravatar.com/">Gravatar.com</a> ಕವಿದ href="https://gravatar.com/"> Gravatar.com </ ಒಂದು> ನಿಮ್ಮ ಜಾಗತಿಕವಾಗಿ ಮಾನ್ಯತೆ ಅವತಾರ ಪಡೆಯಿರಿ
444 GitHub GitHub
445 GitHub Client ID GitHub ಕ್ಲೈಂಟ್ ID
660 Next actions ಮುಂದೆ ಕ್ರಮಗಳು
661 No ಇಲ್ಲ
662 No Action ಯಾವುದೇ ಆಕ್ಷನ್
663 No Communication tagged with this No Communication tagged with this
664 No Copy ಯಾವುದೇ ಪ್ರತಿಯನ್ನು
665 No Permissions set for this criteria. ಯಾವುದೇ ಅನುಮತಿಗಳು ಈ ಮಾನದಂಡಗಳನ್ನು ಸೆಟ್ .
666 No Report Loaded. Please use query-report/[Report Name] to run a report. ಯಾವುದೇ ವರದಿ ಲೋಡೆಡ್ . ಒಂದು ವರದಿ ರನ್ ಪ್ರಶ್ನಾವಳಿ ವರದಿ / [ವರದಿ ಹೆಸರು ] ಬಳಸಿ.
948 Select User or DocType to start. ಆರಂಭಿಸಲು ಬಳಕೆದಾರ ಅಥವಾ doctype ಆಯ್ಕೆ .
949 Select a Banner Image first. ಮೊದಲ ಒಂದು ಬ್ಯಾನರ್ ಚಿತ್ರ ಆಯ್ಕೆಮಾಡಿ .
950 Select an image of approx width 150px with a transparent background for best results. ಉತ್ತಮ ಫಲಿತಾಂಶಗಳಿಗಾಗಿ ಒಂದು ಪಾರದರ್ಶಕ ಹಿನ್ನೆಲೆ ಸುಮಾರು ಅಗಲ 150px ಚಿತ್ರವನ್ನು ಆಯ್ಕೆ .
951 Select dates to create a new Select dates to create a new
952 Select modules to be shown (based on permission). If hidden, they will be hidden for all users. ಆಯ್ಕೆ ಮಾಡ್ಯೂಲ್ ( ಅನುಮತಿ ಆಧರಿಸಿ ) ತೋರಿಸಲಾಗುತ್ತದೆ . ಮರೆಮಾಡಲಾಗಿದೆ ವೇಳೆ , theywill ಎಲ್ಲಾ ಬಳಕೆದಾರರಿಗೆ ಮರೆ .
953 Select or drag across time slots to create a new event. ಆಯ್ಕೆ ಅಥವಾ ಹೊಸ ಈವೆಂಟ್ ರಚಿಸಲು ಸಮಯಾವಧಿಗಳ ಅಡ್ಡಲಾಗಿ ಎಳೆಯಿರಿ .
954 Select target = "_blank" to open in a new page. ಆಯ್ಕೆ ಗುರಿ ಹೊಸ ಪುಟ ತೆರೆಯಲು = "_blank" .
1169 User Roles ಬಳಕೆದಾರ ಪಾತ್ರಗಳು
1170 User Tags ಬಳಕೆದಾರ ಟ್ಯಾಗ್ಗಳು
1171 User Type ಬಳಕೆದಾರನ ಪ್ರಕಾರ
1172 User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages. User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages.
1173 User Vote ಬಳಕೆದಾರ ವೋಟ್
1174 User not allowed to delete {0}: {1} ಬಳಕೆದಾರ ಅಳಿಸಲು ನಿಮಗೆ ಅನುಮತಿ ಇಲ್ಲ {0}: {1}
1175 User permissions should not apply for this Link ಬಳಕೆದಾರ ಅನುಮತಿಗಳನ್ನು ಈ ಲಿಂಕ್ ಅರ್ಜಿ ಮಾಡಬಾರದು

View file

@ -1,5 +1,5 @@
by Role ,
is not set,
by Role , by Role
is not set, is not set
"""Company History""","""회사 연혁"""
"""Team Members"" or ""Management""","""팀 회원""또는 ""관리"""
'In List View' not allowed for type {0} in row {1},'목록보기'허용되지 않는 유형에 대한 {0} 행에서 {1}
@ -151,7 +151,7 @@ Cannot change {0},변경할 수 없습니다 {0}
Cannot delete or cancel because {0} {1} is linked with {2} {3},삭제하거나 {0} {1}과 연결되어 있기 때문에 취소 할 수 없습니다 {2} {3}
Cannot delete {0} as it has child nodes,이 자식 노드를 가지고 {0}을 (를) 삭제할 수 없습니다
Cannot edit standard fields,표준 필드를 편집 할 수 없습니다
Cannot map because following condition fails: ,
Cannot map because following condition fails: ,Cannot map because following condition fails:
Cannot open instance when its {0} is open,그 {0}이 열려있을 때 인스턴스를 열 수 없습니다
Cannot open {0} when its instance is open,해당 인스턴스가 열려있을 때 {0} 열 수 없습니다
Cannot print cancelled documents,취소 문서를 인쇄 할 수 없습니다
@ -295,7 +295,7 @@ DocType or Field,문서 종류 또는 필드
Doclist JSON,JSON 문서 목록
Docname,docName 같은
Document,문서
Document Status transition from ,
Document Status transition from ,Document Status transition from
Document Status transition from {0} to {1} is not allowed,{1} (으)로 {0}에서 문서 상태 전환은 허용되지 않습니다
Document Type,문서 형식
Document is only editable by users of role,문서 역할의 사용자 만 편집 할 수 있습니다
@ -439,7 +439,7 @@ Gender,성별
Generator,발전기
Georgia,그루지야
Get,보세요
Get From ,
Get From ,Get From
"Get your globally recognized avatar from <a href=""https://gravatar.com/"">Gravatar.com</a>","만약 당신이 좋아 href=""https://gravatar.com/""> Gravatar.com </ A>에서 세계적으로 인정 아바타를보세요"
GitHub,GitHub
GitHub Client ID,GitHub의 클라이언트 ID
@ -584,7 +584,7 @@ Loading,로딩중
Loading Report,로드 보고서
Loading...,로딩 중...
Localization,현지화
Location,
Location,Location
Log of error on automated events (scheduler).,자동 이벤트 (스케줄러)에 대한 오류 로그.
Login,로그인
Login After,후 로그인
@ -660,7 +660,7 @@ Next State,다음 주
Next actions,다음 작업
No,아니네요
No Action,작업이 없습니다
No Communication tagged with this ,
No Communication tagged with this ,No Communication tagged with this
No Copy,더 복사하지
No Permissions set for this criteria.,사용 권한이 기준이 설정되어 있지.
No Report Loaded. Please use query-report/[Report Name] to run a report.,는보고는 들어 있지 않습니다.보고서를 실행하는 쿼리 보고서 / [보고서 이름]을 사용하십시오.
@ -948,7 +948,7 @@ Select Type,유형을 선택
Select User or DocType to start.,시작하는 사용자 또는 문서 종류를 선택합니다.
Select a Banner Image first.,먼저 배너 이미지를 선택합니다.
Select an image of approx width 150px with a transparent background for best results.,최상의 결과를 위해 투명 배경으로 약 폭 150 픽셀의 이미지를 선택합니다.
Select dates to create a new ,
Select dates to create a new ,Select dates to create a new
"Select modules to be shown (based on permission). If hidden, they will be hidden for all users.","선택 모듈 (허가 기준) 표시합니다.숨겨진 경우, 모든 사용자에 대해 숨겨집니다."
Select or drag across time slots to create a new event.,선택하거나 새 이벤트를 만들 시간 슬롯을 가로 질러 드래그합니다.
"Select target = ""_blank"" to open in a new page.","선택 대상 새 페이지에 열 = ""_blank""."
@ -1169,7 +1169,7 @@ User Permissions Manager,사용자 권한 관리
User Roles,사용자 역할
User Tags,사용자 태그
User Type,사용자 유형
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ",
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ","User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. "
User Vote,사용자 투표
User not allowed to delete {0}: {1},사용자가 삭제할 수 없습니다 {0} {1}
User permissions should not apply for this Link,사용자 권한이 링크를 적용하지 않아야합니다

1 by Role by Role
2 is not set is not set
3 "Company History" "회사 연혁"
4 "Team Members" or "Management" "팀 회원"또는 "관리"
5 'In List View' not allowed for type {0} in row {1} '목록보기'허용되지 않는 유형에 대한 {0} 행에서 {1}
151 Cannot delete or cancel because {0} {1} is linked with {2} {3} 삭제하거나 {0} {1}과 연결되어 있기 때문에 취소 할 수 없습니다 {2} {3}
152 Cannot delete {0} as it has child nodes 이 자식 노드를 가지고 {0}을 (를) 삭제할 수 없습니다
153 Cannot edit standard fields 표준 필드를 편집 할 수 없습니다
154 Cannot map because following condition fails: Cannot map because following condition fails:
155 Cannot open instance when its {0} is open 그 {0}이 열려있을 때 인스턴스를 열 수 없습니다
156 Cannot open {0} when its instance is open 해당 인스턴스가 열려있을 때 {0} 열 수 없습니다
157 Cannot print cancelled documents 취소 문서를 인쇄 할 수 없습니다
295 Doclist JSON JSON 문서 목록
296 Docname docName 같은
297 Document 문서
298 Document Status transition from Document Status transition from
299 Document Status transition from {0} to {1} is not allowed {1} (으)로 {0}에서 문서 상태 전환은 허용되지 않습니다
300 Document Type 문서 형식
301 Document is only editable by users of role 문서 역할의 사용자 만 편집 할 수 있습니다
439 Generator 발전기
440 Georgia 그루지야
441 Get 보세요
442 Get From Get From
443 Get your globally recognized avatar from <a href="https://gravatar.com/">Gravatar.com</a> 만약 당신이 좋아 href="https://gravatar.com/"> Gravatar.com </ A>에서 세계적으로 인정 아바타를보세요
444 GitHub GitHub
445 GitHub Client ID GitHub의 클라이언트 ID
584 Loading Report 로드 보고서
585 Loading... 로딩 중...
586 Localization 현지화
587 Location Location
588 Log of error on automated events (scheduler). 자동 이벤트 (스케줄러)에 대한 오류 로그.
589 Login 로그인
590 Login After 후 로그인
660 Next actions 다음 작업
661 No 아니네요
662 No Action 작업이 없습니다
663 No Communication tagged with this No Communication tagged with this
664 No Copy 더 복사하지
665 No Permissions set for this criteria. 사용 권한이 기준이 설정되어 있지.
666 No Report Loaded. Please use query-report/[Report Name] to run a report. 는보고는 들어 있지 않습니다.보고서를 실행하는 쿼리 보고서 / [보고서 이름]을 사용하십시오.
948 Select User or DocType to start. 시작하는 사용자 또는 문서 종류를 선택합니다.
949 Select a Banner Image first. 먼저 배너 이미지를 선택합니다.
950 Select an image of approx width 150px with a transparent background for best results. 최상의 결과를 위해 투명 배경으로 약 폭 150 픽셀의 이미지를 선택합니다.
951 Select dates to create a new Select dates to create a new
952 Select modules to be shown (based on permission). If hidden, they will be hidden for all users. 선택 모듈 (허가 기준) 표시합니다.숨겨진 경우, 모든 사용자에 대해 숨겨집니다.
953 Select or drag across time slots to create a new event. 선택하거나 새 이벤트를 만들 시간 슬롯을 가로 질러 드래그합니다.
954 Select target = "_blank" to open in a new page. 선택 대상 새 페이지에 열 = "_blank".
1169 User Roles 사용자 역할
1170 User Tags 사용자 태그
1171 User Type 사용자 유형
1172 User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages. User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages.
1173 User Vote 사용자 투표
1174 User not allowed to delete {0}: {1} 사용자가 삭제할 수 없습니다 {0} {1}
1175 User permissions should not apply for this Link 사용자 권한이 링크를 적용하지 않아야합니다

View file

@ -948,7 +948,7 @@ Select Type,Selecteer Type
Select User or DocType to start.,Selecteer Gebruiker of DocType te beginnen.
Select a Banner Image first.,Kies eerst een banner afbeelding.
Select an image of approx width 150px with a transparent background for best results.,Selecteer een afbeelding van ca. breedte 150px met een transparante achtergrond voor het beste resultaat.
Select dates to create a new ,
Select dates to create a new ,Select dates to create a new
"Select modules to be shown (based on permission). If hidden, they will be hidden for all users.","Selecteer modules te worden vermeld ( gebaseerd op toestemming) . Als verborgen , zullen ze worden verborgen voor alle gebruikers ."
Select or drag across time slots to create a new event.,Selecteer of sleep over tijdsloten om een nieuwe gebeurtenis te maken.
"Select target = ""_blank"" to open in a new page.","Selecteer target = "" _blank "" te openen in een nieuwe pagina ."
@ -1169,7 +1169,7 @@ User Permissions Manager,Gebruikersmachtigingen Manager
User Roles,Gebruikersrollen
User Tags,Gebruiker-tags
User Type,Gebruikerstype
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ",
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ","User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. "
User Vote,gebruiker Stem
User not allowed to delete {0}: {1},Gebruiker niet toegestaan om te verwijderen {0}: {1}
User permissions should not apply for this Link,Gebruikersrechten moet niet solliciteren naar deze Link

1 by Role per rol
948 Select User or DocType to start. Selecteer Gebruiker of DocType te beginnen.
949 Select a Banner Image first. Kies eerst een banner afbeelding.
950 Select an image of approx width 150px with a transparent background for best results. Selecteer een afbeelding van ca. breedte 150px met een transparante achtergrond voor het beste resultaat.
951 Select dates to create a new Select dates to create a new
952 Select modules to be shown (based on permission). If hidden, they will be hidden for all users. Selecteer modules te worden vermeld ( gebaseerd op toestemming) . Als verborgen , zullen ze worden verborgen voor alle gebruikers .
953 Select or drag across time slots to create a new event. Selecteer of sleep over tijdsloten om een ​​nieuwe gebeurtenis te maken.
954 Select target = "_blank" to open in a new page. Selecteer target = " _blank " te openen in een nieuwe pagina .
1169 User Roles Gebruikersrollen
1170 User Tags Gebruiker-tags
1171 User Type Gebruikerstype
1172 User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages. User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages.
1173 User Vote gebruiker Stem
1174 User not allowed to delete {0}: {1} Gebruiker niet toegestaan om te verwijderen {0}: {1}
1175 User permissions should not apply for this Link Gebruikersrechten moet niet solliciteren naar deze Link

File diff suppressed because it is too large Load diff

View file

@ -14,49 +14,49 @@
<i>e.g. <strong>(55 + 434) / 4</strong> or <strong>=Math.sin(Math.PI/2)</strong>...</i>,<i> por exemplo <strong> (55 + 434) / 4 </ strong> ou = <strong> Math.sin (Math.PI / 2) </ strong> ... </ i>
<i>module name...</i>,<i> nome do módulo ... </ i>
<i>text</i> <b>in</b> <i>document type</i>,texto <i> </ i> <b> em </ b> <i> tipo de documento </ i>
A user can be permitted to multiple records of the same DocType.,Um usuário pode ter permissão para vários registros do mesmo TipoDoc .
A user can be permitted to multiple records of the same DocType.,Um utilizador pode ter permissão para vários registos do mesmo DocType .
About,Sobre
About Us Settings,Quem Somos Configurações
About Us Team Member,Quem Somos Membro da Equipe
Action,Ação
Actions,acties
Actions,Ações
"Actions for workflow (e.g. Approve, Cancel).","Ações para o fluxo de trabalho (por exemplo, Aprovar , Cancelar) ."
Add,Adicionar
Add A New Rule,Adicionar uma nova regra
Add A User Permission,Adicionar uma permissão de usuário
Add A User Permission,Adicionar uma permissão de utilizador
Add Attachments,Adicionar anexos
Add Bookmark,Adicionar marcadores
Add CSS,Adicionar CSS
Add Column,Adicionar coluna
Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,"Adicionar Google Analytics ID: por exemplo. UA-89XXX57-1. Por favor, procure ajuda no Google Analytics para obter mais informações."
Add Message,Adicionar mensagem
Add New Permission Rule,Adicionar regra nova permissão
Add New Permission Rule,Adicionar uma regra de permissão nova
Add Reply,Adicione Responder
Add Total Row,Adicionar Linha de Total
Add a New Role,Adicionar uma nova função
Add a banner to the site. (small banners are usually good),Adicionar um banner para o site. (Pequenos banners são geralmente boas)
Add all roles,Adicione todos os papéis
Add Total Row,Adicionar uma Linha de Total
Add a New Role,Adicionar uma nova regra
Add a banner to the site. (small banners are usually good),Adicionar um banner para o site. (Pequenos banners são geralmente preferíveis)
Add all roles,Adicione todos as regras
Add attachment,Adicionar anexo
Add code as &lt;script&gt;,Adicionar código como &lt;script&gt;
Add custom javascript to forms.,Adicionar javascript personalizado aos formulários.
Add fields to forms.,Adicione campos de formulários .
Add fields to forms.,Adicione campos aos formulários .
Add multiple rows,Adicionar várias linhas
Add new row,Adicionar nova linha
"Add the name of <a href=""http://google.com/webfonts"" target=""_blank"">Google Web Font</a> e.g. ""Open Sans""","Adicione o nome do <a href=""http://google.com/webfonts"" target=""_blank"">Google Web Font</a> por exemplo, &quot;Sans Abertas&quot;"
Add to To Do,Adicionar ao que fazer
Add to To Do,Adicionar à Lista de Tarefas
Add to To Do List Of,Adicionar à Lista de tarefas de
Added {0} ({1}),Adicionado {0} ({1})
Adding System Manager to this User as there must be atleast one System Manager,Adicionando System Manager para este usuário como deve haver pelo menos um System Manager
Adding System Manager to this User as there must be atleast one System Manager,Atribuindo a este utilizador a função de Gestor de Sistema por ter que existir pelo menos um Gestor de Sistema
Additional Info,Informações Adicionais
Additional Permissions,Permissões adicionais
Address,Endereço
Address Line 1,Endereço Linha 1
Address Line 2,Endereço Linha 2
Address Title,Título endereço
Address and other legal information you may want to put in the footer.,Endereço e informações jurídicas outro que você pode querer colocar no rodapé.
Address Title,Título do endereço
Address and other legal information you may want to put in the footer.,Endereço e informações jurídicas que você pode querer colocar no rodapé.
Admin,Administrador
All Applications,Todos os aplicativos
All Day,Dia de Todos os
All Day,Todo o Dia
All customizations will be removed. Please confirm.,"Todas as personalizações serão removidos. Por favor, confirme."
"All possible Workflow States and roles of the workflow. <br>Docstatus Options: 0 is""Saved"", 1 is ""Submitted"" and 2 is ""Cancelled""","Todos os eventuais Estados de fluxo de trabalho e os papéis do fluxo de trabalho. <br> Docstatus Opções: 0 é &quot;Salvo&quot;, 1 é &quot;Enviado&quot; e 2 é &quot;Cancelado&quot;"
Allow Attach,Permitir Anexar
@ -64,15 +64,15 @@ Allow Import,Permitir a importação
Allow Import via Data Import Tool,Permitir a importação via ferramenta de importação de dados
Allow Rename,Permitir Renomear
Allow on Submit,Permitir em Enviar
Allow user to login only after this hour (0-24),Permitir que o usuário fazer o login somente após esta hora (0-24)
Allow user to login only before this hour (0-24),Permitir que o usuário fazer o login antes só esta hora (0-24)
Allow user to login only after this hour (0-24),Permitir que o utilizador faça login apenas após esta hora (0-24)
Allow user to login only before this hour (0-24),Permitir que o utilizador faça login apenas antes desta hora (0-24)
Allowed,Permitido
"Allowing DocType, DocType. Be careful!","Permitindo DocType , DocType . Tenha cuidado !"
Already Registered, registrado
Already in user's To Do list,no usuário para fazer a lista
Alternative download link,Link para download Alternativa
Already Registered, está registado
Already in user's To Do list,está na lista a fazer do utilizador
Alternative download link,Link para download Alternativo
"Alternatively, you can also specify 'auto_email_id' in site_config.json","Alternativamente, você também pode especificar ' auto_email_id ' em site_config.json"
Always use above Login Id as sender,Gebruik altijd boven Inloggen Id als afzender
Always use above Login Id as sender,Utilize sempre o id do login acima indicado como remetente.
Amend,Emendar
"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>]","Um arquivo com ícone. Extensão ico. Deve ser de 16 x 16 px. Gerado usando um gerador de favicon. [ <a href=""http://favicon-generator.org/"" target=""_blank"">favicon-generator.org</a> ]"
"Another {0} with name {1} exists, select another name","Outra {0} com o nome {1} existe , selecione outro nome"
@ -948,7 +948,7 @@ Select Type,Selecione o Tipo
Select User or DocType to start.,Selecione Usuário ou TipoDoc para começar.
Select a Banner Image first.,Selecione um Banner Image primeiro.
Select an image of approx width 150px with a transparent background for best results.,Selecione uma imagem de aproximadamente 150px de largura com um fundo transparente para melhores resultados.
Select dates to create a new ,
Select dates to create a new ,Select dates to create a new
"Select modules to be shown (based on permission). If hidden, they will be hidden for all users.","Selecione os módulos a ser mostrado (com base em permissão) . Se escondido , eles serão escondidos por todos os usuários."
Select or drag across time slots to create a new event.,Selecione ou arraste intervalos de tempo para criar um novo evento.
"Select target = ""_blank"" to open in a new page.","Selecteer target = "" _blank "" te openen in een nieuwe pagina ."
@ -1169,7 +1169,7 @@ User Permissions Manager,Permissões de usuário Gerente
User Roles,Funções do Usuário
User Tags,Etiquetas de usuários
User Type,Tipo de Usuário
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ",
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ","User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. "
User Vote,Vote Usuário
User not allowed to delete {0}: {1},Usuário não tem permissão para excluir {0}: {1}
User permissions should not apply for this Link,As permissões de usuário não deve candidatar-se a este link
@ -1251,9 +1251,9 @@ You seem to have written your name instead of your email. \ Please enter a v
[Optional] Send the email X days in advance of the specified date. 0 equals same day.,[Opcional] enviar o email X dias de antecedência da data especificada. 0 é igual mesmo dia.
add your own CSS (careful!),adicionar seu próprio CSS (cuidado!)
adjust,ajustar
align-center,alinhar-centro
align-center,alinhar-centrar
align-justify,alinhar-justificar
align-left,alinhar-esquerda
align-left,alinhar à esquerda
align-right,alinhar à direita
and,e
arrow-down,seta para baixo

1 by Role por função
14 <i>e.g. <strong>(55 + 434) / 4</strong> or <strong>=Math.sin(Math.PI/2)</strong>...</i> <i> por exemplo <strong> (55 + 434) / 4 </ strong> ou = <strong> Math.sin (Math.PI / 2) </ strong> ... </ i>
15 <i>module name...</i> <i> nome do módulo ... </ i>
16 <i>text</i> <b>in</b> <i>document type</i> texto <i> </ i> <b> em </ b> <i> tipo de documento </ i>
17 A user can be permitted to multiple records of the same DocType. Um usuário pode ter permissão para vários registros do mesmo TipoDoc . Um utilizador pode ter permissão para vários registos do mesmo DocType .
18 About Sobre
19 About Us Settings Quem Somos Configurações
20 About Us Team Member Quem Somos Membro da Equipe
21 Action Ação
22 Actions acties Ações
23 Actions for workflow (e.g. Approve, Cancel). Ações para o fluxo de trabalho (por exemplo, Aprovar , Cancelar) .
24 Add Adicionar
25 Add A New Rule Adicionar uma nova regra
26 Add A User Permission Adicionar uma permissão de usuário Adicionar uma permissão de utilizador
27 Add Attachments Adicionar anexos
28 Add Bookmark Adicionar marcadores
29 Add CSS Adicionar CSS
30 Add Column Adicionar coluna
31 Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information. Adicionar Google Analytics ID: por exemplo. UA-89XXX57-1. Por favor, procure ajuda no Google Analytics para obter mais informações.
32 Add Message Adicionar mensagem
33 Add New Permission Rule Adicionar regra nova permissão Adicionar uma regra de permissão nova
34 Add Reply Adicione Responder
35 Add Total Row Adicionar Linha de Total Adicionar uma Linha de Total
36 Add a New Role Adicionar uma nova função Adicionar uma nova regra
37 Add a banner to the site. (small banners are usually good) Adicionar um banner para o site. (Pequenos banners são geralmente boas) Adicionar um banner para o site. (Pequenos banners são geralmente preferíveis)
38 Add all roles Adicione todos os papéis Adicione todos as regras
39 Add attachment Adicionar anexo
40 Add code as &lt;script&gt; Adicionar código como &lt;script&gt;
41 Add custom javascript to forms. Adicionar javascript personalizado aos formulários.
42 Add fields to forms. Adicione campos de formulários . Adicione campos aos formulários .
43 Add multiple rows Adicionar várias linhas
44 Add new row Adicionar nova linha
45 Add the name of <a href="http://google.com/webfonts" target="_blank">Google Web Font</a> e.g. "Open Sans" Adicione o nome do <a href="http://google.com/webfonts" target="_blank">Google Web Font</a> por exemplo, &quot;Sans Abertas&quot;
46 Add to To Do Adicionar ao que fazer Adicionar à Lista de Tarefas
47 Add to To Do List Of Adicionar à Lista de tarefas de
48 Added {0} ({1}) Adicionado {0} ({1})
49 Adding System Manager to this User as there must be atleast one System Manager Adicionando System Manager para este usuário como deve haver pelo menos um System Manager Atribuindo a este utilizador a função de Gestor de Sistema por ter que existir pelo menos um Gestor de Sistema
50 Additional Info Informações Adicionais
51 Additional Permissions Permissões adicionais
52 Address Endereço
53 Address Line 1 Endereço Linha 1
54 Address Line 2 Endereço Linha 2
55 Address Title Título endereço Título do endereço
56 Address and other legal information you may want to put in the footer. Endereço e informações jurídicas outro que você pode querer colocar no rodapé. Endereço e informações jurídicas que você pode querer colocar no rodapé.
57 Admin Administrador
58 All Applications Todos os aplicativos
59 All Day Dia de Todos os Todo o Dia
60 All customizations will be removed. Please confirm. Todas as personalizações serão removidos. Por favor, confirme.
61 All possible Workflow States and roles of the workflow. <br>Docstatus Options: 0 is"Saved", 1 is "Submitted" and 2 is "Cancelled" Todos os eventuais Estados de fluxo de trabalho e os papéis do fluxo de trabalho. <br> Docstatus Opções: 0 é &quot;Salvo&quot;, 1 é &quot;Enviado&quot; e 2 é &quot;Cancelado&quot;
62 Allow Attach Permitir Anexar
64 Allow Import via Data Import Tool Permitir a importação via ferramenta de importação de dados
65 Allow Rename Permitir Renomear
66 Allow on Submit Permitir em Enviar
67 Allow user to login only after this hour (0-24) Permitir que o usuário fazer o login somente após esta hora (0-24) Permitir que o utilizador faça login apenas após esta hora (0-24)
68 Allow user to login only before this hour (0-24) Permitir que o usuário fazer o login antes só esta hora (0-24) Permitir que o utilizador faça login apenas antes desta hora (0-24)
69 Allowed Permitido
70 Allowing DocType, DocType. Be careful! Permitindo DocType , DocType . Tenha cuidado !
71 Already Registered Já registrado Já está registado
72 Already in user's To Do list Já no usuário para fazer a lista Já está na lista a fazer do utilizador
73 Alternative download link Link para download Alternativa Link para download Alternativo
74 Alternatively, you can also specify 'auto_email_id' in site_config.json Alternativamente, você também pode especificar ' auto_email_id ' em site_config.json
75 Always use above Login Id as sender Gebruik altijd boven Inloggen Id als afzender Utilize sempre o id do login acima indicado como remetente.
76 Amend Emendar
77 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>] Um arquivo com ícone. Extensão ico. Deve ser de 16 x 16 px. Gerado usando um gerador de favicon. [ <a href="http://favicon-generator.org/" target="_blank">favicon-generator.org</a> ]
78 Another {0} with name {1} exists, select another name Outra {0} com o nome {1} existe , selecione outro nome
948 Select User or DocType to start. Selecione Usuário ou TipoDoc para começar.
949 Select a Banner Image first. Selecione um Banner Image primeiro.
950 Select an image of approx width 150px with a transparent background for best results. Selecione uma imagem de aproximadamente 150px de largura com um fundo transparente para melhores resultados.
951 Select dates to create a new Select dates to create a new
952 Select modules to be shown (based on permission). If hidden, they will be hidden for all users. Selecione os módulos a ser mostrado (com base em permissão) . Se escondido , eles serão escondidos por todos os usuários.
953 Select or drag across time slots to create a new event. Selecione ou arraste intervalos de tempo para criar um novo evento.
954 Select target = "_blank" to open in a new page. Selecteer target = " _blank " te openen in een nieuwe pagina .
1169 User Roles Funções do Usuário
1170 User Tags Etiquetas de usuários
1171 User Type Tipo de Usuário
1172 User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages. User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages.
1173 User Vote Vote Usuário
1174 User not allowed to delete {0}: {1} Usuário não tem permissão para excluir {0}: {1}
1175 User permissions should not apply for this Link As permissões de usuário não deve candidatar-se a este link
1251 [Optional] Send the email X days in advance of the specified date. 0 equals same day. [Opcional] enviar o email X dias de antecedência da data especificada. 0 é igual mesmo dia.
1252 add your own CSS (careful!) adicionar seu próprio CSS (cuidado!)
1253 adjust ajustar
1254 align-center alinhar-centro alinhar-centrar
1255 align-justify alinhar-justificar
1256 align-left alinhar-esquerda alinhar à esquerda
1257 align-right alinhar à direita
1258 and e
1259 arrow-down seta para baixo

View file

@ -1,5 +1,5 @@
by Role ,
is not set,
by Role , by Role
is not set, is not set
"""Company History""","""Istoricul companiei"""
"""Team Members"" or ""Management""","""Membrii echipei"" sau ""Management"""
'In List View' not allowed for type {0} in row {1},"""În Vizualizare listă"" nu este permis pentru tipul {0} în rândul {1}"
@ -14,13 +14,13 @@
<i>e.g. <strong>(55 + 434) / 4</strong> or <strong>=Math.sin(Math.PI/2)</strong>...</i>,<i> exemplu <strong> (55 + 434) / 4 </ strong> sau <strong> = Math.sin (Math.PI / 2) </ strong> ... </ i>
<i>module name...</i>,<i> nume de modul ... </ i>
<i>text</i> <b>in</b> <i>document type</i>,Textul <i> </ i> <b> în </ b> <i> tip de document </ i>
A user can be permitted to multiple records of the same DocType.,Un utilizator poate fi permisă în mai multe înregistrări ale aceluiași DocType.Referinta.
A user can be permitted to multiple records of the same DocType.,Un utilizator poate fi permis în mai multe înregistrări ale aceluiași DocType.
About,Despre
About Us Settings,Despre noi Setări
About Us Team Member,Despre noi Echipa membre
About Us Settings,Setări Despre noi
About Us Team Member,Membru Echipă Despre noi
Action,Acțiune:
Actions,Acțiuni
"Actions for workflow (e.g. Approve, Cancel).","Acțiuni pentru fluxul de lucru (de exemplu, Aprobare, Cancel)."
"Actions for workflow (e.g. Approve, Cancel).","Acțiuni pentru fluxul de lucru (de exemplu, Aprobare, Anulare)."
Add,Adaugă
Add A New Rule,Adăuga o regulă nouă
Add A User Permission,Adauga un permisiunea utilizatorului
@ -151,7 +151,7 @@ Cannot change {0},Nu se poate schimba {0}
Cannot delete or cancel because {0} {1} is linked with {2} {3},Nu se poate șterge sau de a anula din cauza {0} {1} este legat cu {2} {3}
Cannot delete {0} as it has child nodes,"Nu se poate șterge {0}, deoarece are noduri copil"
Cannot edit standard fields,Nu se pot edita câmpuri standard
Cannot map because following condition fails: ,
Cannot map because following condition fails: ,Cannot map because following condition fails:
Cannot open instance when its {0} is open,"Nu se poate deschide exemplu, atunci când sa {0} este deschis"
Cannot open {0} when its instance is open,"Nu se poate deschide {0}, atunci când de exemplu sa este deschis"
Cannot print cancelled documents,Nu se poate imprima documente anulate
@ -295,7 +295,7 @@ DocType or Field,DocType sau câmp
Doclist JSON,Listă documente JSON
Docname,Docname
Document,Studiu de caz
Document Status transition from ,
Document Status transition from ,Document Status transition from
Document Status transition from {0} to {1} is not allowed,Starea document de tranziție de la {0} la {1} nu este permis
Document Type,Tip de document
Document is only editable by users of role,Documentul este editabil doar de către utilizatorii de rol
@ -439,7 +439,7 @@ Gender,Sex
Generator,Generator
Georgia,Georgia
Get,Obţine
Get From ,
Get From ,Get From
"Get your globally recognized avatar from <a href=""https://gravatar.com/"">Gravatar.com</a>","Ia-ti un avatar recunoscute la nivel mondial de la <a href=""https://gravatar.com/""> Gravatar.com </ a>"
GitHub,GitHub
GitHub Client ID,GitHub Client ID
@ -660,7 +660,7 @@ Next State,State următor
Next actions,Acțiuni Înainte
No,Nu
No Action,Nicio acțiune
No Communication tagged with this ,
No Communication tagged with this ,No Communication tagged with this
No Copy,Nu Copy
No Permissions set for this criteria.,Permisiuni stabilit pentru acest criteriu.
No Report Loaded. Please use query-report/[Report Name] to run a report.,Nici un raport Loaded. Va rugam sa folositi interogare-raport / [Reclama Name] pentru a rula un raport.
@ -948,7 +948,7 @@ Select Type,Selectați Tipul
Select User or DocType to start.,Selectați utilizator sau DocType pentru a începe.
Select a Banner Image first.,Selectați o imagine banner prima.
Select an image of approx width 150px with a transparent background for best results.,"Selectați o imagine de lățime de aproximativ 150px cu un fundal transparent, pentru cele mai bune rezultate."
Select dates to create a new ,
Select dates to create a new ,Select dates to create a new
"Select modules to be shown (based on permission). If hidden, they will be hidden for all users.","Selectați module să fie afișate (bazat pe permisiune). Dacă ascunse, acestea vor fi ascunse pentru toți utilizatorii."
Select or drag across time slots to create a new event.,Selectați sau glisați peste intervale de timp pentru a crea un nou eveniment.
"Select target = ""_blank"" to open in a new page.","Selectați target = ""_blank"" pentru a deschide într-o nouă pagină."
@ -1169,7 +1169,7 @@ User Permissions Manager,Permisiunile utilizatorului Director
User Roles,Roluri de utilizator
User Tags,Tag-uri de utilizator
User Type,Tip utilizator
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ",
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ","User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. "
User Vote,Vot utilizator
User not allowed to delete {0}: {1},Utilizatorul nu este permis pentru a șterge {0}: {1}
User permissions should not apply for this Link,Permisiunile de utilizator nu trebuie să se aplice pentru acest link

1 by Role by Role
2 is not set is not set
3 "Company History" "Istoricul companiei"
4 "Team Members" or "Management" "Membrii echipei" sau "Management"
5 'In List View' not allowed for type {0} in row {1} "În Vizualizare listă" nu este permis pentru tipul {0} în rândul {1}
14 <i>e.g. <strong>(55 + 434) / 4</strong> or <strong>=Math.sin(Math.PI/2)</strong>...</i> <i> exemplu <strong> (55 + 434) / 4 </ strong> sau <strong> = Math.sin (Math.PI / 2) </ strong> ... </ i>
15 <i>module name...</i> <i> nume de modul ... </ i>
16 <i>text</i> <b>in</b> <i>document type</i> Textul <i> </ i> <b> în </ b> <i> tip de document </ i>
17 A user can be permitted to multiple records of the same DocType. Un utilizator poate fi permisă în mai multe înregistrări ale aceluiași DocType.Referinta. Un utilizator poate fi permis în mai multe înregistrări ale aceluiași DocType.
18 About Despre
19 About Us Settings Despre noi Setări Setări Despre noi
20 About Us Team Member Despre noi Echipa membre Membru Echipă Despre noi
21 Action Acțiune:
22 Actions Acțiuni
23 Actions for workflow (e.g. Approve, Cancel). Acțiuni pentru fluxul de lucru (de exemplu, Aprobare, Cancel). Acțiuni pentru fluxul de lucru (de exemplu, Aprobare, Anulare).
24 Add Adaugă
25 Add A New Rule Adăuga o regulă nouă
26 Add A User Permission Adauga un permisiunea utilizatorului
151 Cannot delete or cancel because {0} {1} is linked with {2} {3} Nu se poate șterge sau de a anula din cauza {0} {1} este legat cu {2} {3}
152 Cannot delete {0} as it has child nodes Nu se poate șterge {0}, deoarece are noduri copil
153 Cannot edit standard fields Nu se pot edita câmpuri standard
154 Cannot map because following condition fails: Cannot map because following condition fails:
155 Cannot open instance when its {0} is open Nu se poate deschide exemplu, atunci când sa {0} este deschis
156 Cannot open {0} when its instance is open Nu se poate deschide {0}, atunci când de exemplu sa este deschis
157 Cannot print cancelled documents Nu se poate imprima documente anulate
295 Doclist JSON Listă documente JSON
296 Docname Docname
297 Document Studiu de caz
298 Document Status transition from Document Status transition from
299 Document Status transition from {0} to {1} is not allowed Starea document de tranziție de la {0} la {1} nu este permis
300 Document Type Tip de document
301 Document is only editable by users of role Documentul este editabil doar de către utilizatorii de rol
439 Generator Generator
440 Georgia Georgia
441 Get Obţine
442 Get From Get From
443 Get your globally recognized avatar from <a href="https://gravatar.com/">Gravatar.com</a> Ia-ti un avatar recunoscute la nivel mondial de la <a href="https://gravatar.com/"> Gravatar.com </ a>
444 GitHub GitHub
445 GitHub Client ID GitHub Client ID
660 Next actions Acțiuni Înainte
661 No Nu
662 No Action Nicio acțiune
663 No Communication tagged with this No Communication tagged with this
664 No Copy Nu Copy
665 No Permissions set for this criteria. Permisiuni stabilit pentru acest criteriu.
666 No Report Loaded. Please use query-report/[Report Name] to run a report. Nici un raport Loaded. Va rugam sa folositi interogare-raport / [Reclama Name] pentru a rula un raport.
948 Select User or DocType to start. Selectați utilizator sau DocType pentru a începe.
949 Select a Banner Image first. Selectați o imagine banner prima.
950 Select an image of approx width 150px with a transparent background for best results. Selectați o imagine de lățime de aproximativ 150px cu un fundal transparent, pentru cele mai bune rezultate.
951 Select dates to create a new Select dates to create a new
952 Select modules to be shown (based on permission). If hidden, they will be hidden for all users. Selectați module să fie afișate (bazat pe permisiune). Dacă ascunse, acestea vor fi ascunse pentru toți utilizatorii.
953 Select or drag across time slots to create a new event. Selectați sau glisați peste intervale de timp pentru a crea un nou eveniment.
954 Select target = "_blank" to open in a new page. Selectați target = "_blank" pentru a deschide într-o nouă pagină.
1169 User Roles Roluri de utilizator
1170 User Tags Tag-uri de utilizator
1171 User Type Tip utilizator
1172 User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages. User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages.
1173 User Vote Vot utilizator
1174 User not allowed to delete {0}: {1} Utilizatorul nu este permis pentru a șterge {0}: {1}
1175 User permissions should not apply for this Link Permisiunile de utilizator nu trebuie să se aplice pentru acest link

View file

@ -1,5 +1,5 @@
by Role ,
is not set,
by Role , by Role
is not set, is not set
"""Company History""","""История компании"""
"""Team Members"" or ""Management""","""Члены команды"" или ""Управление"""
'In List View' not allowed for type {0} in row {1},"""В Список"" не допускается для типа {0} в строке {1}"
@ -151,7 +151,7 @@ Cannot change {0},Невозможно изменить {0}
Cannot delete or cancel because {0} {1} is linked with {2} {3},"Не удается удалить или отменить, потому что {0} {1} связан с {2} {3}"
Cannot delete {0} as it has child nodes,"Не удается удалить {0}, поскольку он имеет дочерние узлы"
Cannot edit standard fields,Не можете редактировать стандартные поля
Cannot map because following condition fails: ,
Cannot map because following condition fails: ,Cannot map because following condition fails:
Cannot open instance when its {0} is open,"Не могу открыть экземпляр, когда его {0} открыто"
Cannot open {0} when its instance is open,"Не могу открыть {0}, когда его экземпляр открыт"
Cannot print cancelled documents,Невозможно печатать отмененные документы
@ -295,7 +295,7 @@ DocType or Field,DocType или поле
Doclist JSON,DocList JSON
Docname,DOCNAME
Document,Документ
Document Status transition from ,
Document Status transition from ,Document Status transition from
Document Status transition from {0} to {1} is not allowed,Статус документа переход от {0} до {1} не допускается
Document Type,Тип документа
Document is only editable by users of role,Документ может редактироваться только пользователями роли
@ -439,7 +439,7 @@ Gender,Пол
Generator,Генератор
Georgia,Грузия
Get,Добыть
Get From ,
Get From ,Get From
"Get your globally recognized avatar from <a href=""https://gravatar.com/"">Gravatar.com</a>","Получите ваш всемирно признанный аватар из <a href=""https://gravatar.com/""> Gravatar.com </>"
GitHub,GitHub
GitHub Client ID,GitHub ID клиента
@ -660,7 +660,7 @@ Next State,Следующее состояние
Next actions,Дальнейшие действия
No,Нет
No Action,Никаких действий
No Communication tagged with this ,
No Communication tagged with this ,No Communication tagged with this
No Copy,Нет Копировать
No Permissions set for this criteria.,Разрешения не установлен для этого критериев.
No Report Loaded. Please use query-report/[Report Name] to run a report.,"Отчет не загружено. Пожалуйста, используйте запрос-отчет / [Имя Отчет], чтобы запустить отчет."
@ -948,7 +948,7 @@ Select Type,Выберите тип
Select User or DocType to start.,Сначала выберите пользователя или тип документа.
Select a Banner Image first.,Выберите изображение баннера в первую очередь.
Select an image of approx width 150px with a transparent background for best results.,Выберите изображение шириной около 150px с прозрачным фоном для достижения наилучших результатов.
Select dates to create a new ,
Select dates to create a new ,Select dates to create a new
"Select modules to be shown (based on permission). If hidden, they will be hidden for all users.","Выбор модулей в данном периоде (на основе разрешения). Если скрытые, они будут скрыты для всех пользователей."
Select or drag across time slots to create a new event.,"Выберите или перетащите через временные интервалы, чтобы создать новое событие."
"Select target = ""_blank"" to open in a new page.","Выберите целевых = ""_blank"", чтобы открыть на новой странице."
@ -1169,7 +1169,7 @@ User Permissions Manager,Разрешения пользователей мен
User Roles,Роли пользователей
User Tags,Пользователь Метки
User Type,Тип Пользователя
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ",
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ","User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. "
User Vote,Голос пользователя
User not allowed to delete {0}: {1},Пользователь не имеет права удалить {0}: {1}
User permissions should not apply for this Link,Права пользователя не должны применяться для данного канала

1 by Role by Role
2 is not set is not set
3 "Company History" "История компании"
4 "Team Members" or "Management" "Члены команды" или "Управление"
5 'In List View' not allowed for type {0} in row {1} "В Список" не допускается для типа {0} в строке {1}
151 Cannot delete or cancel because {0} {1} is linked with {2} {3} Не удается удалить или отменить, потому что {0} {1} связан с {2} {3}
152 Cannot delete {0} as it has child nodes Не удается удалить {0}, поскольку он имеет дочерние узлы
153 Cannot edit standard fields Не можете редактировать стандартные поля
154 Cannot map because following condition fails: Cannot map because following condition fails:
155 Cannot open instance when its {0} is open Не могу открыть экземпляр, когда его {0} открыто
156 Cannot open {0} when its instance is open Не могу открыть {0}, когда его экземпляр открыт
157 Cannot print cancelled documents Невозможно печатать отмененные документы
295 Doclist JSON DocList JSON
296 Docname DOCNAME
297 Document Документ
298 Document Status transition from Document Status transition from
299 Document Status transition from {0} to {1} is not allowed Статус документа переход от {0} до {1} не допускается
300 Document Type Тип документа
301 Document is only editable by users of role Документ может редактироваться только пользователями роли
439 Generator Генератор
440 Georgia Грузия
441 Get Добыть
442 Get From Get From
443 Get your globally recognized avatar from <a href="https://gravatar.com/">Gravatar.com</a> Получите ваш всемирно признанный аватар из <a href="https://gravatar.com/"> Gravatar.com </>
444 GitHub GitHub
445 GitHub Client ID GitHub ID клиента
660 Next actions Дальнейшие действия
661 No Нет
662 No Action Никаких действий
663 No Communication tagged with this No Communication tagged with this
664 No Copy Нет Копировать
665 No Permissions set for this criteria. Разрешения не установлен для этого критериев.
666 No Report Loaded. Please use query-report/[Report Name] to run a report. Отчет не загружено. Пожалуйста, используйте запрос-отчет / [Имя Отчет], чтобы запустить отчет.
948 Select User or DocType to start. Сначала выберите пользователя или тип документа.
949 Select a Banner Image first. Выберите изображение баннера в первую очередь.
950 Select an image of approx width 150px with a transparent background for best results. Выберите изображение шириной около 150px с прозрачным фоном для достижения наилучших результатов.
951 Select dates to create a new Select dates to create a new
952 Select modules to be shown (based on permission). If hidden, they will be hidden for all users. Выбор модулей в данном периоде (на основе разрешения). Если скрытые, они будут скрыты для всех пользователей.
953 Select or drag across time slots to create a new event. Выберите или перетащите через временные интервалы, чтобы создать новое событие.
954 Select target = "_blank" to open in a new page. Выберите целевых = "_blank", чтобы открыть на новой странице.
1169 User Roles Роли пользователей
1170 User Tags Пользователь Метки
1171 User Type Тип Пользователя
1172 User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages. User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages.
1173 User Vote Голос пользователя
1174 User not allowed to delete {0}: {1} Пользователь не имеет права удалить {0}: {1}
1175 User permissions should not apply for this Link Права пользователя не должны применяться для данного канала

View file

@ -948,7 +948,7 @@ Select Type,Изаберите Врста
Select User or DocType to start.,Изаберите корисника или ДОЦТИПЕ да почне .
Select a Banner Image first.,Изаберите прво слику Баннер.
Select an image of approx width 150px with a transparent background for best results.,Изаберите слику ширине 150пк ца са транспарентном позадином за најбоље резултате.
Select dates to create a new ,
Select dates to create a new ,Select dates to create a new
"Select modules to be shown (based on permission). If hidden, they will be hidden for all users.","Выбор модулей в данном периоде (на основе разрешения ) . Если скрытые, они будут скрыты для всех пользователей."
Select or drag across time slots to create a new event.,Изаберите или превуците преко терминима да креирате нови догађај.
"Select target = ""_blank"" to open in a new page.","Одаберите таргет = ""_бланк "" отвара нову страницу у ."
@ -1169,7 +1169,7 @@ User Permissions Manager,Усер Дозволе менаџер
User Roles,Роли пользователей
User Tags,Корисник Тагс:
User Type,Тип корисника
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ",
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ","User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. "
User Vote,Голос пользователя
User not allowed to delete {0}: {1},Корисник није дозвољено да избришете {0}: {1}
User permissions should not apply for this Link,Корисника дозволе не би требало да се пријаве за овај Линк

1 by Role по улози
948 Select User or DocType to start. Изаберите корисника или ДОЦТИПЕ да почне .
949 Select a Banner Image first. Изаберите прво слику Баннер.
950 Select an image of approx width 150px with a transparent background for best results. Изаберите слику ширине 150пк ца са транспарентном позадином за најбоље резултате.
951 Select dates to create a new Select dates to create a new
952 Select modules to be shown (based on permission). If hidden, they will be hidden for all users. Выбор модулей в данном периоде (на основе разрешения ) . Если скрытые, они будут скрыты для всех пользователей.
953 Select or drag across time slots to create a new event. Изаберите или превуците преко терминима да креирате нови догађај.
954 Select target = "_blank" to open in a new page. Одаберите таргет = "_бланк " отвара нову страницу у .
1169 User Roles Роли пользователей
1170 User Tags Корисник Тагс:
1171 User Type Тип корисника
1172 User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages. User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages.
1173 User Vote Голос пользователя
1174 User not allowed to delete {0}: {1} Корисник није дозвољено да избришете {0}: {1}
1175 User permissions should not apply for this Link Корисника дозволе не би требало да се пријаве за овај Линк

View file

@ -948,7 +948,7 @@ Select Type,வகை தேர்வு
Select User or DocType to start.,தொடங்க பயனர் அல்லது DOCTYPE தேர்ந்தெடுக்கவும்.
Select a Banner Image first.,முதல் ஒரு பேனர் பட தேர்ந்தெடுக்கவும்.
Select an image of approx width 150px with a transparent background for best results.,சிறந்த முடிவுகளை ஒரு வெளிப்படையான பின்னணி கொண்ட சுமார் அகலம் 150px ஒரு படத்தை தேர்ந்தெடுக்கவும்.
Select dates to create a new ,
Select dates to create a new ,Select dates to create a new
"Select modules to be shown (based on permission). If hidden, they will be hidden for all users.","தேர்வு தொகுதிகள் ( அனுமதி அடிப்படையில்) பார்க்க வேண்டும் . மறைத்து என்றால், அவர்கள் அனைத்து பயனர்கள் மறைத்து வேண்டும் ."
Select or drag across time slots to create a new event.,தேர்வு அல்லது ஒரு புதிய நிகழ்வை உருவாக்க நேரம் இடங்கள் முழுவதும் இழுக்கவும்.
"Select target = ""_blank"" to open in a new page.","தேர்ந்தெடு இலக்கு ஒரு புதிய பக்கம் திறக்க = ""_blank"" ."
@ -1169,7 +1169,7 @@ User Permissions Manager,பயனர் அனுமதிகள் மேல
User Roles,பயனர் பங்களிப்புகள்
User Tags,பயனர் குறிச்சொற்கள்
User Type,பயனர் வகை
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ",
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ","User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. "
User Vote,பயனர் ஓட்டு
User not allowed to delete {0}: {1},பயனர் நீக்க அனுமதி இல்லை {0} {1}
User permissions should not apply for this Link,பயனர் அனுமதிகள் இந்த இணைப்பு விண்ணப்பிக்க முடியாது

1 by Role பாத்திரம் மூலம்
948 Select User or DocType to start. தொடங்க பயனர் அல்லது DOCTYPE தேர்ந்தெடுக்கவும்.
949 Select a Banner Image first. முதல் ஒரு பேனர் பட தேர்ந்தெடுக்கவும்.
950 Select an image of approx width 150px with a transparent background for best results. சிறந்த முடிவுகளை ஒரு வெளிப்படையான பின்னணி கொண்ட சுமார் அகலம் 150px ஒரு படத்தை தேர்ந்தெடுக்கவும்.
951 Select dates to create a new Select dates to create a new
952 Select modules to be shown (based on permission). If hidden, they will be hidden for all users. தேர்வு தொகுதிகள் ( அனுமதி அடிப்படையில்) பார்க்க வேண்டும் . மறைத்து என்றால், அவர்கள் அனைத்து பயனர்கள் மறைத்து வேண்டும் .
953 Select or drag across time slots to create a new event. தேர்வு அல்லது ஒரு புதிய நிகழ்வை உருவாக்க நேரம் இடங்கள் முழுவதும் இழுக்கவும்.
954 Select target = "_blank" to open in a new page. தேர்ந்தெடு இலக்கு ஒரு புதிய பக்கம் திறக்க = "_blank" .
1169 User Roles பயனர் பங்களிப்புகள்
1170 User Tags பயனர் குறிச்சொற்கள்
1171 User Type பயனர் வகை
1172 User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages. User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages.
1173 User Vote பயனர் ஓட்டு
1174 User not allowed to delete {0}: {1} பயனர் நீக்க அனுமதி இல்லை {0} {1}
1175 User permissions should not apply for this Link பயனர் அனுமதிகள் இந்த இணைப்பு விண்ணப்பிக்க முடியாது

View file

@ -948,7 +948,7 @@ Select Type,เลือกประเภท
Select User or DocType to start.,เลือก ผู้ใช้ หรือ DocType ที่จะเริ่มต้น
Select a Banner Image first.,เลือกภาพแบนเนอร์แรก
Select an image of approx width 150px with a transparent background for best results.,เลือกภาพจาก 150px ความกว้างประมาณกับพื้นหลังโปร่งใสเพื่อให้ได้ผลลัพธ์ที่ดีที่สุด
Select dates to create a new ,
Select dates to create a new ,Select dates to create a new
"Select modules to be shown (based on permission). If hidden, they will be hidden for all users.",เลือก โมดูล ที่จะแสดง (ขึ้นอยู่กับ สิทธิ์) ถ้า ซ่อน พวกเขา จะถูกซ่อนไว้ สำหรับผู้ใช้ทั้งหมด
Select or drag across time slots to create a new event.,เลือกหรือลากผ่านช่วงเวลาที่จะสร้างเหตุการณ์ใหม่
"Select target = ""_blank"" to open in a new page.","เลือก target = ""_blank"" จะเปิดใน หน้าใหม่"
@ -1169,7 +1169,7 @@ User Permissions Manager,จัดการ สิทธิ์ของผู้
User Roles,บทบาท ของผู้ใช้
User Tags,แท็กผู้ใช้
User Type,ประเภทผู้ใช้
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ",
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ","User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. "
User Vote,โหวต ของผู้ใช้
User not allowed to delete {0}: {1},ผู้ใช้ไม่ได้รับอนุญาตในการลบ {0}: {1}
User permissions should not apply for this Link,สิทธิ์ผู้ใช้ ไม่ควร ใช้สำหรับ การเชื่อมโยง นี้

1 by Role โดยบทบาท
948 Select User or DocType to start. เลือก ผู้ใช้ หรือ DocType ที่จะเริ่มต้น
949 Select a Banner Image first. เลือกภาพแบนเนอร์แรก
950 Select an image of approx width 150px with a transparent background for best results. เลือกภาพจาก 150px ความกว้างประมาณกับพื้นหลังโปร่งใสเพื่อให้ได้ผลลัพธ์ที่ดีที่สุด
951 Select dates to create a new Select dates to create a new
952 Select modules to be shown (based on permission). If hidden, they will be hidden for all users. เลือก โมดูล ที่จะแสดง (ขึ้นอยู่กับ สิทธิ์) ถ้า ซ่อน พวกเขา จะถูกซ่อนไว้ สำหรับผู้ใช้ทั้งหมด
953 Select or drag across time slots to create a new event. เลือกหรือลากผ่านช่วงเวลาที่จะสร้างเหตุการณ์ใหม่
954 Select target = "_blank" to open in a new page. เลือก target = "_blank" จะเปิดใน หน้าใหม่
1169 User Roles บทบาท ของผู้ใช้
1170 User Tags แท็กผู้ใช้
1171 User Type ประเภทผู้ใช้
1172 User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages. User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages.
1173 User Vote โหวต ของผู้ใช้
1174 User not allowed to delete {0}: {1} ผู้ใช้ไม่ได้รับอนุญาตในการลบ {0}: {1}
1175 User permissions should not apply for this Link สิทธิ์ผู้ใช้ ไม่ควร ใช้สำหรับ การเชื่อมโยง นี้

File diff suppressed because it is too large Load diff

View file

@ -1,5 +1,5 @@
by Role ,
is not set,
by Role , by Role
is not set, is not set
"""Company History""","""Lịch sử công ty"""
"""Team Members"" or ""Management""","""Các thành viên nhóm"" hay ""quản lý"""
'In List View' not allowed for type {0} in row {1},"""Trong danh sách Xem 'không được phép cho loại {0} trong hàng {1}"
@ -151,7 +151,7 @@ Cannot change {0},Không thể thay đổi {0}
Cannot delete or cancel because {0} {1} is linked with {2} {3},Không thể xóa hoặc hủy bỏ vì {0} {1} được liên kết với {2} {3}
Cannot delete {0} as it has child nodes,Không thể xóa {0} vì nó có các nút con
Cannot edit standard fields,Không thể chỉnh sửa các lĩnh vực tiêu chuẩn
Cannot map because following condition fails: ,
Cannot map because following condition fails: ,Cannot map because following condition fails:
Cannot open instance when its {0} is open,Không thể mở ví dụ khi nó {0} là mở
Cannot open {0} when its instance is open,Không thể mở {0} khi cá thể của nó là mở
Cannot print cancelled documents,Không thể in tài liệu bị hủy bỏ
@ -295,7 +295,7 @@ DocType or Field,DocType hoặc Dòng
Doclist JSON,Doclist JSON
Docname,Docname
Document,Tài liệu
Document Status transition from ,
Document Status transition from ,Document Status transition from
Document Status transition from {0} to {1} is not allowed,Tình trạng tài liệu chuyển đổi từ {0} đến {1} không được phép
Document Type,Loại tài liệu
Document is only editable by users of role,Tài liệu chỉ có thể sửa bằng cách sử dụng của vai trò
@ -439,7 +439,7 @@ Gender,Giới Tính
Generator,Máy phát điện
Georgia,Georgia
Get,Được
Get From ,
Get From ,Get From
"Get your globally recognized avatar from <a href=""https://gravatar.com/"">Gravatar.com</a>","Nhận avatar nhận trên toàn cầu của bạn từ <a href=""https://gravatar.com/""> Gravatar.com </ a>"
GitHub,GitHub
GitHub Client ID,GitHub Khách hàng ID
@ -660,7 +660,7 @@ Next State,Nhà nước tiếp theo
Next actions,Hành động tiếp theo
No,Không đồng ý
No Action,Không có hành động
No Communication tagged with this ,
No Communication tagged with this ,No Communication tagged with this
No Copy,Sao chép không
No Permissions set for this criteria.,Quyền không thiết lập cho các tiêu chí này.
No Report Loaded. Please use query-report/[Report Name] to run a report.,Báo cáo không tải. Vui lòng sử dụng truy vấn báo cáo / [Báo cáo Tên] để chạy báo cáo.
@ -948,7 +948,7 @@ Select Type,Hãy chọn loại
Select User or DocType to start.,Chọn người dùng hoặc DocType để bắt đầu.
Select a Banner Image first.,Chọn một Banner Hình ảnh đầu tiên.
Select an image of approx width 150px with a transparent background for best results.,Chọn một hình ảnh của khoảng chiều rộng 150px với nền trong suốt cho kết quả tốt nhất.
Select dates to create a new ,
Select dates to create a new ,Select dates to create a new
"Select modules to be shown (based on permission). If hidden, they will be hidden for all users.","Chọn module được hiển thị (dựa trên sự cho phép). Nếu ẩn, họ sẽ được ẩn cho tất cả người dùng."
Select or drag across time slots to create a new event.,Chọn hoặc kéo trên các khe thời gian để tạo ra một sự kiện mới.
"Select target = ""_blank"" to open in a new page.","Chọn target = ""_blank"" để mở một trang mới."
@ -1169,7 +1169,7 @@ User Permissions Manager,Người sử dụng Quyền Giám đốc
User Roles,Vai trò người sử dụng
User Tags,Sử dụng khóa
User Type,Loại sử dụng
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ",
"User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. ","User Type ""System User"" can access Desktop. ""Website User"" can only be logged into the website and portal pages. "
User Vote,Người sử dụng bình chọn
User not allowed to delete {0}: {1},Người sử dụng không được phép xóa {0}: {1}
User permissions should not apply for this Link,Cho phép người dùng không nên áp dụng cho các Liên kết này

1 by Role by Role
2 is not set is not set
3 "Company History" "Lịch sử công ty"
4 "Team Members" or "Management" "Các thành viên nhóm" hay "quản lý"
5 'In List View' not allowed for type {0} in row {1} "Trong danh sách Xem 'không được phép cho loại {0} trong hàng {1}
151 Cannot delete or cancel because {0} {1} is linked with {2} {3} Không thể xóa hoặc hủy bỏ vì {0} {1} được liên kết với {2} {3}
152 Cannot delete {0} as it has child nodes Không thể xóa {0} vì nó có các nút con
153 Cannot edit standard fields Không thể chỉnh sửa các lĩnh vực tiêu chuẩn
154 Cannot map because following condition fails: Cannot map because following condition fails:
155 Cannot open instance when its {0} is open Không thể mở ví dụ khi nó {0} là mở
156 Cannot open {0} when its instance is open Không thể mở {0} khi cá thể của nó là mở
157 Cannot print cancelled documents Không thể in tài liệu bị hủy bỏ
295 Doclist JSON Doclist JSON
296 Docname Docname
297 Document Tài liệu
298 Document Status transition from Document Status transition from
299 Document Status transition from {0} to {1} is not allowed Tình trạng tài liệu chuyển đổi từ {0} đến {1} không được phép
300 Document Type Loại tài liệu
301 Document is only editable by users of role Tài liệu chỉ có thể sửa bằng cách sử dụng của vai trò
439 Generator Máy phát điện
440 Georgia Georgia
441 Get Được
442 Get From Get From
443 Get your globally recognized avatar from <a href="https://gravatar.com/">Gravatar.com</a> Nhận avatar nhận trên toàn cầu của bạn từ <a href="https://gravatar.com/"> Gravatar.com </ a>
444 GitHub GitHub
445 GitHub Client ID GitHub Khách hàng ID
660 Next actions Hành động tiếp theo
661 No Không đồng ý
662 No Action Không có hành động
663 No Communication tagged with this No Communication tagged with this
664 No Copy Sao chép không
665 No Permissions set for this criteria. Quyền không thiết lập cho các tiêu chí này.
666 No Report Loaded. Please use query-report/[Report Name] to run a report. Báo cáo không tải. Vui lòng sử dụng truy vấn báo cáo / [Báo cáo Tên] để chạy báo cáo.
948 Select User or DocType to start. Chọn người dùng hoặc DocType để bắt đầu.
949 Select a Banner Image first. Chọn một Banner Hình ảnh đầu tiên.
950 Select an image of approx width 150px with a transparent background for best results. Chọn một hình ảnh của khoảng chiều rộng 150px với nền trong suốt cho kết quả tốt nhất.
951 Select dates to create a new Select dates to create a new
952 Select modules to be shown (based on permission). If hidden, they will be hidden for all users. Chọn module được hiển thị (dựa trên sự cho phép). Nếu ẩn, họ sẽ được ẩn cho tất cả người dùng.
953 Select or drag across time slots to create a new event. Chọn hoặc kéo trên các khe thời gian để tạo ra một sự kiện mới.
954 Select target = "_blank" to open in a new page. Chọn target = "_blank" để mở một trang mới.
1169 User Roles Vai trò người sử dụng
1170 User Tags Sử dụng khóa
1171 User Type Loại sử dụng
1172 User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages. User Type "System User" can access Desktop. "Website User" can only be logged into the website and portal pages.
1173 User Vote Người sử dụng bình chọn
1174 User not allowed to delete {0}: {1} Người sử dụng không được phép xóa {0}: {1}
1175 User permissions should not apply for this Link Cho phép người dùng không nên áp dụng cho các Liên kết này

View file

@ -165,9 +165,12 @@ def formatdate(string_date=None, format_string=None):
out = frappe.local.user_format or "yyyy-mm-dd"
return out.replace("dd", date.strftime("%d"))\
.replace("mm", date.strftime("%m"))\
.replace("yyyy", date.strftime("%Y"))
try:
return out.replace("dd", date.strftime("%d"))\
.replace("mm", date.strftime("%m"))\
.replace("yyyy", date.strftime("%Y"))
except ValueError, e:
raise frappe.ValidationError, str(e)
def global_date_format(date):
"""returns date as 1 January 2012"""
@ -325,6 +328,9 @@ def money_in_words(number, main_currency = None, fraction_currency=None):
"""
from frappe.utils import get_defaults
if not number or flt(number) < 0:
return ""
d = get_defaults()
if not main_currency:
main_currency = d.get('currency', 'INR')

View file

@ -169,7 +169,7 @@ def write_file(content, file_path, fname):
# create directory (if not exists)
frappe.create_folder(get_files_path())
# write the file
with open(os.path.join(file_path, fname), 'w+') as f:
with open(os.path.join(file_path.encode('utf-8'), fname.encode('utf-8')), 'w+') as f:
f.write(content)
return get_files_path(fname)
@ -250,7 +250,7 @@ def get_content_hash(content):
def get_file_name(fname, optional_suffix):
n_records = frappe.db.sql("select name from `tabFile Data` where file_name=%s", fname)
if len(n_records) > 0 or os.path.exists(get_files_path(fname)):
if len(n_records) > 0 or os.path.exists(get_files_path(fname.encode('utf-8'))):
f = fname.rsplit('.', 1)
if len(f) == 1:
partial, extn = f[0], ""

View file

@ -8,6 +8,10 @@ from frappe.model.meta import get_field_currency, get_field_precision
import re
def format_value(value, df, doc=None, currency=None):
# Convert dict to object if necessary
if (isinstance(df, dict)):
df = frappe._dict(df)
if df.get("fieldtype")=="Date":
return formatdate(value)