Quellcode durchsuchen

Merge branch 'develop'

version-14
mbauskar vor 8 Jahren
Ursprung
Commit
91e705e37a
100 geänderte Dateien mit 4040 neuen und 2226 gelöschten Zeilen
  1. +2
    -1
      .travis.yml
  2. +21
    -3
      frappe/__init__.py
  3. +11
    -17
      frappe/commands/utils.py
  4. +30
    -11
      frappe/contacts/doctype/address/address.py
  5. +1
    -2
      frappe/core/doctype/domain_settings/domain_settings.py
  6. +32
    -1
      frappe/core/doctype/module_def/module_def.json
  7. +20
    -2
      frappe/core/doctype/test_runner/test_runner.js
  8. +2
    -2
      frappe/core/doctype/test_runner/test_runner.json
  9. +37
    -15
      frappe/core/doctype/test_runner/test_runner.py
  10. +2
    -2
      frappe/core/doctype/user/user.json
  11. +6
    -6
      frappe/core/doctype/user/user.py
  12. +2
    -10
      frappe/desk/calendar.py
  13. +8
    -5
      frappe/desk/doctype/event/test_records.json
  14. +1
    -1
      frappe/desk/doctype/todo/todo.json
  15. +47
    -1
      frappe/desk/notifications.py
  16. +1
    -1
      frappe/desk/query_report.py
  17. +5
    -1
      frappe/desk/reportview.py
  18. +0
    -0
      frappe/docs/assets/img/desk/__init__.py
  19. BIN
      frappe/docs/assets/img/desk/bar_graph.png
  20. BIN
      frappe/docs/assets/img/desk/line_graph.png
  21. +46
    -22
      frappe/docs/user/en/guides/automated-testing/qunit-testing.md
  22. +61
    -0
      frappe/docs/user/en/guides/desk/making_graphs.md
  23. +49
    -2
      frappe/email/doctype/email_queue/email_queue.json
  24. +3
    -2
      frappe/email/doctype/newsletter/newsletter.py
  25. +141
    -62
      frappe/email/email_body.py
  26. +45
    -7
      frappe/email/queue.py
  27. +11
    -13
      frappe/email/test_email_body.py
  28. +5
    -2
      frappe/oauth.py
  29. +1
    -0
      frappe/public/build.json
  30. +11
    -0
      frappe/public/css/desk.css
  31. +86
    -0
      frappe/public/css/form.css
  32. +2
    -0
      frappe/public/css/list.css
  33. +9
    -0
      frappe/public/css/mobile.css
  34. +3
    -0
      frappe/public/css/page.css
  35. +0
    -0
      frappe/public/css/variables.css
  36. +3
    -0
      frappe/public/js/frappe/dom.js
  37. +48
    -5
      frappe/public/js/frappe/form/dashboard.js
  38. +1
    -1
      frappe/public/js/frappe/form/templates/form_dashboard.html
  39. +5
    -1
      frappe/public/js/frappe/form/templates/form_sidebar.html
  40. +9
    -5
      frappe/public/js/frappe/list/list_renderer.js
  41. +308
    -0
      frappe/public/js/frappe/ui/graph.js
  42. +31
    -20
      frappe/public/js/frappe/ui/page.js
  43. +103
    -116
      frappe/public/js/frappe/ui/toolbar/notifications.js
  44. +3
    -55
      frappe/public/js/frappe/views/calendar/calendar.js
  45. +1
    -1
      frappe/public/js/legacy/form.js
  46. +31
    -15
      frappe/public/less/desk.less
  47. +117
    -0
      frappe/public/less/form.less
  48. +2
    -0
      frappe/public/less/list.less
  49. +13
    -0
      frappe/public/less/mobile.less
  50. +3
    -0
      frappe/public/less/page.less
  51. +1
    -1
      frappe/templates/emails/password_update.html
  52. +11
    -2
      frappe/test_runner.py
  53. +17
    -0
      frappe/tests/test_domainification.py
  54. +34
    -0
      frappe/tests/test_goal.py
  55. +20
    -13
      frappe/tests/ui/_test_gantt_view.js
  56. +56
    -0
      frappe/tests/ui/_test_print_format_builder.js
  57. +16
    -0
      frappe/tests/ui/data/test_data_for_views.js
  58. +98
    -29
      frappe/tests/ui/data/test_lib.js
  59. +44
    -0
      frappe/tests/ui/global_search/_test_list_document.js
  60. +64
    -0
      frappe/tests/ui/global_search/_test_math.js
  61. +55
    -0
      frappe/tests/ui/global_search/_test_new_record.js
  62. +42
    -0
      frappe/tests/ui/global_search/_test_open_module.js
  63. +88
    -0
      frappe/tests/ui/global_search/_test_search_document.js
  64. +49
    -62
      frappe/tests/ui/test_calendar_view.js
  65. +9
    -9
      frappe/tests/ui/test_desktop.js
  66. +16
    -0
      frappe/tests/ui/test_list/_test_list_values.js
  67. +5
    -15
      frappe/tests/ui/test_list/_test_quick_entry.js
  68. +62
    -0
      frappe/tests/ui/test_list_delete.js
  69. +35
    -0
      frappe/tests/ui/test_list_filter.js
  70. +18
    -0
      frappe/tests/ui/test_list_paging.js
  71. +49
    -12
      frappe/tests/ui/test_test_runner.py
  72. +72
    -64
      frappe/translations/am.csv
  73. +72
    -64
      frappe/translations/ar.csv
  74. +72
    -64
      frappe/translations/bg.csv
  75. +72
    -64
      frappe/translations/bn.csv
  76. +72
    -64
      frappe/translations/bs.csv
  77. +71
    -64
      frappe/translations/ca.csv
  78. +72
    -64
      frappe/translations/cs.csv
  79. +74
    -66
      frappe/translations/da.csv
  80. +72
    -64
      frappe/translations/de.csv
  81. +72
    -64
      frappe/translations/el.csv
  82. +1
    -1
      frappe/translations/es-AR.csv
  83. +1
    -1
      frappe/translations/es-CL.csv
  84. +8
    -8
      frappe/translations/es-PE.csv
  85. +80
    -72
      frappe/translations/es.csv
  86. +72
    -64
      frappe/translations/et.csv
  87. +72
    -64
      frappe/translations/fa.csv
  88. +72
    -64
      frappe/translations/fi.csv
  89. +73
    -65
      frappe/translations/fr.csv
  90. +72
    -64
      frappe/translations/gu.csv
  91. +45
    -46
      frappe/translations/he.csv
  92. +72
    -64
      frappe/translations/hi.csv
  93. +75
    -67
      frappe/translations/hr.csv
  94. +73
    -65
      frappe/translations/hu.csv
  95. +72
    -64
      frappe/translations/id.csv
  96. +72
    -64
      frappe/translations/is.csv
  97. +73
    -65
      frappe/translations/it.csv
  98. +72
    -64
      frappe/translations/ja.csv
  99. +73
    -64
      frappe/translations/km.csv
  100. +73
    -65
      frappe/translations/kn.csv

+ 2
- 1
.travis.yml Datei anzeigen

@@ -43,6 +43,7 @@ before_script:
- cd ~/frappe-bench
- bench use test_site
- bench reinstall --yes
- bench setup-help
- bench scheduler disable
- bench start &
- sleep 10
@@ -51,4 +52,4 @@ script:
- set -e
- bench --verbose run-tests
- sleep 5
- bench --verbose run-tests --ui-tests
- bench --verbose run-ui-tests --app frappe

+ 21
- 3
frappe/__init__.py Datei anzeigen

@@ -14,7 +14,7 @@ import os, sys, importlib, inspect, json
from .exceptions import *
from .utils.jinja import get_jenv, get_template, render_template, get_email_from_template

__version__ = '8.4.1'
__version__ = '8.5.0'
__title__ = "Frappe Framework"

local = Local()
@@ -380,7 +380,7 @@ def sendmail(recipients=[], sender="", subject="No Subject", message="No Message
attachments=None, content=None, doctype=None, name=None, reply_to=None,
cc=[], message_id=None, in_reply_to=None, send_after=None, expose_recipients=None,
send_priority=1, communication=None, retry=1, now=None, read_receipt=None, is_notification=False,
inline_images=None, template=None, args=None):
inline_images=None, template=None, args=None, header=False):
"""Send email using user's default **Email Account** or global default **Email Account**.


@@ -405,6 +405,7 @@ def sendmail(recipients=[], sender="", subject="No Subject", message="No Message
:param inline_images: List of inline images as {"filename", "filecontent"}. All src properties will be replaced with random Content-Id
:param template: Name of html template from templates/emails folder
:param args: Arguments for rendering the template
:param header: Append header in email
"""

text_content = None
@@ -428,7 +429,7 @@ def sendmail(recipients=[], sender="", subject="No Subject", message="No Message
attachments=attachments, reply_to=reply_to, cc=cc, message_id=message_id, in_reply_to=in_reply_to,
send_after=send_after, expose_recipients=expose_recipients, send_priority=send_priority,
communication=communication, now=now, read_receipt=read_receipt, is_notification=is_notification,
inline_images=inline_images)
inline_images=inline_images, header=header)

whitelisted = []
guest_methods = []
@@ -491,6 +492,7 @@ def clear_cache(user=None, doctype=None):
frappe.sessions.clear_cache()
translate.clear_cache()
reset_metadata_version()
clear_domainification_cache()
local.cache = {}
local.new_doc_templates = {}

@@ -1370,6 +1372,22 @@ def get_active_domains():

return active_domains

def get_active_modules():
""" get the active modules from Module Def"""
active_modules = cache().hget("modules", "active_modules") or None
if active_modules is None:
domains = get_active_domains()
modules = get_all("Module Def", filters={"restrict_to_domain": ("in", domains)})
active_modules = [module.name for module in modules]
cache().hset("modules", "active_modules", active_modules)

return active_modules

def clear_domainification_cache():
_cache = cache()
_cache.delete_key("domains", "active_domains")
_cache.delete_key("modules", "active_modules")

def get_system_settings(key):
if not local.system_settings.has_key(key):
local.system_settings.update({key: db.get_single_value('System Settings', key)})


+ 11
- 17
frappe/commands/utils.py Datei anzeigen

@@ -323,30 +323,24 @@ def run_tests(context, app=None, module=None, doctype=None, test=(),

@click.command('run-ui-tests')
@click.option('--app', help="App to run tests on, leave blank for all apps")
@click.option('--ci', is_flag=True, default=False, help="Run in CI environment")
@click.option('--test', help="File name of the test you want to run")
@click.option('--profile', is_flag=True, default=False)
@pass_context
def run_ui_tests(context, app=None, ci=False):
def run_ui_tests(context, app=None, test=False, profile=False):
"Run UI tests"
import subprocess
import frappe.test_runner

site = get_site(context)
frappe.init(site=site)
frappe.connect()

if app is None:
app = ",".join(frappe.get_installed_apps())

cmd = [
'./node_modules/.bin/nightwatch',
'--config', './apps/frappe/frappe/nightwatch.js',
'--app', app,
'--site', site
]

if ci:
cmd.extend(['--env', 'ci_server'])
ret = frappe.test_runner.run_ui_tests(app=app, test=test, verbose=context.verbose,
profile=profile)
if len(ret.failures) == 0 and len(ret.errors) == 0:
ret = 0

bench_path = frappe.utils.get_bench_path()
subprocess.call(cmd, cwd=bench_path)
if os.environ.get('CI'):
sys.exit(ret)

@click.command('serve')
@click.option('--port', default=8000)


+ 30
- 11
frappe/contacts/doctype/address/address.py Datei anzeigen

@@ -135,15 +135,34 @@ def get_list_context(context=None):
}

def get_address_list(doctype, txt, filters, limit_start, limit_page_length = 20, order_by = None):
from frappe.www.list import get_list
user = frappe.session.user
ignore_permissions = False
if is_website_user():
if not filters: filters = []
filters.append(("Address", "owner", "=", user))
ignore_permissions = True

return get_list(doctype, txt, filters, limit_start, limit_page_length, ignore_permissions=ignore_permissions)
from frappe.www.list import get_list
user = frappe.session.user
ignore_permissions = False
if is_website_user():
if not filters: filters = []
add_name = []
contact = frappe.db.sql("""
select
address.name
from
`tabDynamic Link` as link
join
`tabAddress` as address on link.parent = address.name
where
link.parenttype = 'Address' and
link_name in(
select
link.link_name from `tabContact` as contact
join
`tabDynamic Link` as link on contact.name = link.parent
where
contact.user = %s)""",(user))
for c in contact:
add_name.append(c[0])
filters.append(("Address", "name", "in", add_name))
ignore_permissions = True

return get_list(doctype, txt, filters, limit_start, limit_page_length, ignore_permissions=ignore_permissions)

def has_website_permission(doc, ptype, user, verbose=False):
"""Returns true if there is a related lead or contact related to this document"""
@@ -185,12 +204,12 @@ def get_shipping_address(company):
address_as_dict = address[0]
name, address_template = get_address_templates(address_as_dict)
return address_as_dict.get("name"), frappe.render_template(address_template, address_as_dict)
def get_company_address(company):
ret = frappe._dict()
ret.company_address = get_default_address('Company', company)
ret.company_address_display = get_address_display(ret.company_address)
return ret

def address_query(doctype, txt, searchfield, start, page_len, filters):


+ 1
- 2
frappe/core/doctype/domain_settings/domain_settings.py Datei anzeigen

@@ -8,5 +8,4 @@ from frappe.model.document import Document

class DomainSettings(Document):
def on_update(self):
cache = frappe.cache()
cache.delete_key("domains", "active_domains")
frappe.clear_domainification_cache()

+ 32
- 1
frappe/core/doctype/module_def/module_def.json Datei anzeigen

@@ -71,6 +71,37 @@
"search_index": 0,
"set_only_once": 0,
"unique": 0
},
{
"allow_bulk_edit": 0,
"allow_on_submit": 0,
"bold": 0,
"collapsible": 0,
"columns": 0,
"fieldname": "restrict_to_domain",
"fieldtype": "Link",
"hidden": 0,
"ignore_user_permissions": 0,
"ignore_xss_filter": 0,
"in_filter": 0,
"in_global_search": 0,
"in_list_view": 0,
"in_standard_filter": 0,
"label": "Restrict To Domain",
"length": 0,
"no_copy": 0,
"options": "Domain",
"permlevel": 0,
"precision": "",
"print_hide": 0,
"print_hide_if_no_value": 0,
"read_only": 0,
"remember_last_selected_value": 0,
"report_hide": 0,
"reqd": 0,
"search_index": 0,
"set_only_once": 0,
"unique": 0
}
],
"has_web_view": 0,
@@ -84,7 +115,7 @@
"issingle": 0,
"istable": 0,
"max_attachments": 0,
"modified": "2017-06-20 14:35:17.407968",
"modified": "2017-07-13 03:05:28.213656",
"modified_by": "Administrator",
"module": "Core",
"name": "Module Def",


+ 20
- 2
frappe/core/doctype/test_runner/test_runner.js Datei anzeigen

@@ -11,7 +11,7 @@ frappe.ui.form.on('Test Runner', {

// all tests
frappe.call({
method: 'frappe.core.doctype.test_runner.test_runner.get_all_tests'
method: 'frappe.core.doctype.test_runner.test_runner.get_test_js'
}).always((data) => {
$("<div id='qunit'></div>").appendTo(wrapper.empty());
frm.events.run_tests(frm, data.message);
@@ -50,12 +50,30 @@ frappe.ui.form.on('Test Runner', {
"Runtime": details.runtime
};

details.assertions.map(a => {
// eslint-disable-next-line
console.log(`${a.result ? '✔' : '✗'} ${a.message}`);
});

// eslint-disable-next-line
console.log(JSON.stringify(result, null, 2));
});
QUnit.load();
QUnit.done(() => {

QUnit.done(({ total, failed, passed, runtime }) => {
// flag for selenium that test is done

console.log( `Total: ${total}, Failed: ${failed}, Passed: ${passed}, Runtime: ${runtime}` ); // eslint-disable-line

if(failed) {
console.log('Tests Failed'); // eslint-disable-line
} else {
console.log('Tests Passed'); // eslint-disable-line
}
frappe.set_route('Form', 'Test Runner', 'Test Runner');

$('<div id="frappe-qunit-done"></div>').appendTo($('body'));

});
});



+ 2
- 2
frappe/core/doctype/test_runner/test_runner.json Datei anzeigen

@@ -83,7 +83,7 @@
"issingle": 1,
"istable": 0,
"max_attachments": 0,
"modified": "2017-06-26 10:57:19.976624",
"modified": "2017-07-12 23:16:15.910891",
"modified_by": "Administrator",
"module": "Core",
"name": "Test Runner",
@@ -104,7 +104,7 @@
"print": 1,
"read": 1,
"report": 0,
"role": "System Manager",
"role": "Administrator",
"set_user_permissions": 0,
"share": 1,
"submit": 0,


+ 37
- 15
frappe/core/doctype/test_runner/test_runner.py Datei anzeigen

@@ -10,18 +10,40 @@ class TestRunner(Document):
pass

@frappe.whitelist()
def get_all_tests():
tests = []
for app in frappe.get_installed_apps():
tests_path = frappe.get_app_path(app, 'tests', 'ui')
if os.path.exists(tests_path):
for basepath, folders, files in os.walk(tests_path): # pylint: disable=unused-variable
for fname in files:
if fname.startswith('test') and fname.endswith('.js'):
path = os.path.join(basepath, fname)
with open(path, 'r') as fileobj:
tests.append(dict(
path = os.path.relpath(frappe.get_app_path(app), path),
script = fileobj.read()
))
return tests
def get_test_js():
'''Get test + data for app, example: app/tests/ui/test_name.js'''
test_path = frappe.db.get_single_value('Test Runner', 'module_path')

# split
app, test_path = test_path.split(os.path.sep, 1)
test_js = get_test_data(app)

# full path
test_path = frappe.get_app_path(app, test_path)

with open(test_path, 'r') as fileobj:
test_js.append(dict(
script = fileobj.read()
))
return test_js

def get_test_data(app):
'''Get the test fixtures from all js files in app/tests/ui/data'''
test_js = []

def add_file(path):
with open(path, 'r') as fileobj:
test_js.append(dict(
script = fileobj.read()
))

data_path = frappe.get_app_path(app, 'tests', 'ui', 'data')
if os.path.exists(data_path):
for fname in os.listdir(data_path):
if fname.endswith('.js'):
add_file(os.path.join(data_path, fname))

if app != 'frappe':
add_file(frappe.get_app_path('frappe', 'tests', 'ui', 'data', 'test_lib.js'))

return test_js

+ 2
- 2
frappe/core/doctype/user/user.json Datei anzeigen

@@ -1949,7 +1949,7 @@
"precision": "",
"print_hide": 0,
"print_hide_if_no_value": 0,
"read_only": 0,
"read_only": 1,
"remember_last_selected_value": 0,
"report_hide": 0,
"reqd": 0,
@@ -1971,7 +1971,7 @@
"istable": 0,
"max_attachments": 5,
"menu_index": 0,
"modified": "2017-05-19 09:12:35.697915",
"modified": "2017-07-12 19:24:00.824902",
"modified_by": "Administrator",
"module": "Core",
"name": "User",


+ 6
- 6
frappe/core/doctype/user/user.py Datei anzeigen

@@ -225,11 +225,11 @@ class User(Document):

def password_reset_mail(self, link):
self.send_login_mail(_("Password Reset"),
"templates/emails/password_reset.html", {"link": link}, now=True)
"password_reset", {"link": link}, now=True)

def password_update_mail(self, password):
self.send_login_mail(_("Password Update"),
"templates/emails/password_update.html", {"new_password": password}, now=True)
"password_update", {"new_password": password}, now=True)

def send_welcome_mail_to_user(self):
from frappe.utils import get_url
@@ -248,7 +248,7 @@ class User(Document):
else:
subject = _("Complete Registration")

self.send_login_mail(subject, "templates/emails/new_user.html",
self.send_login_mail(subject, "new_user",
dict(
link=link,
site_url=get_url(),
@@ -279,7 +279,7 @@ class User(Document):
sender = frappe.session.user not in STANDARD_USERS and get_formatted_email(frappe.session.user) or None

frappe.sendmail(recipients=self.email, sender=sender, subject=subject,
message=frappe.get_template(template).render(args),
template=template, args=args,
delayed=(not now) if now!=None else self.flags.delay_emails, retry=3)

def a_system_manager_should_exist(self):
@@ -547,7 +547,7 @@ def update_password(new_password, key=None, old_password=None):
def test_password_strength(new_password, key=None, old_password=None, user_data=[]):
from frappe.utils.password_strength import test_password_strength as _test_password_strength

password_policy = frappe.db.get_value("System Settings", None,
password_policy = frappe.db.get_value("System Settings", None,
["enable_password_policy", "minimum_password_score"], as_dict=True) or {}

enable_password_policy = cint(password_policy.get("enable_password_policy", 0))
@@ -557,7 +557,7 @@ def test_password_strength(new_password, key=None, old_password=None, user_data=
return {}

if not user_data:
user_data = frappe.db.get_value('User', frappe.session.user,
user_data = frappe.db.get_value('User', frappe.session.user,
['first_name', 'middle_name', 'last_name', 'email', 'birth_date'])

if new_password:


+ 2
- 10
frappe/desk/calendar.py Datei anzeigen

@@ -19,16 +19,8 @@ def update_event(args, field_map):

def get_event_conditions(doctype, filters=None):
"""Returns SQL conditions with user permissions and filters for event queries"""
from frappe.desk.reportview import build_match_conditions
from frappe.desk.reportview import get_filters_cond
if not frappe.has_permission(doctype):
frappe.throw(_("Not Permitted"), frappe.PermissionError)

conditions = build_match_conditions(doctype)
conditions = conditions and (" and " + conditions) or ""
if filters:
filters = json.loads(filters)
for key in filters:
if filters[key]:
conditions += 'and `{0}` = "{1}"'.format(frappe.db.escape(key), frappe.db.escape(filters[key]))

return conditions
return get_filters_cond(doctype, filters, [], with_match_conditions = True)

+ 8
- 5
frappe/desk/doctype/event/test_records.json Datei anzeigen

@@ -3,18 +3,21 @@
"doctype": "Event",
"subject":"_Test Event 1",
"starts_on": "2014-01-01",
"event_type": "Public"
"event_type": "Public",
"creation": "2014-01-01"
},
{
"doctype": "Event",
"starts_on": "2014-01-01",
"subject":"_Test Event 2",
"event_type": "Private"
"starts_on": "2014-01-01",
"event_type": "Private",
"creation": "2014-01-01"
},
{
"doctype": "Event",
"starts_on": "2014-01-01",
"subject": "_Test Event 3",
"event_type": "Private"
"starts_on": "2014-02-01",
"event_type": "Private",
"creation": "2014-02-01"
}
]

+ 1
- 1
frappe/desk/doctype/todo/todo.json Datei anzeigen

@@ -514,7 +514,7 @@
"issingle": 0,
"istable": 0,
"max_attachments": 0,
"modified": "2017-07-06 10:23:39.656033",
"modified": "2017-07-13 17:44:54.369254",
"modified_by": "Administrator",
"module": "Desk",
"name": "ToDo",


+ 47
- 1
frappe/desk/notifications.py Datei anzeigen

@@ -13,10 +13,12 @@ def get_notifications():
return

config = get_notification_config()

groups = config.get("for_doctype").keys() + config.get("for_module").keys()
cache = frappe.cache()

notification_count = {}
notification_percent = {}

for name in groups:
count = cache.hget("notification_count:" + name, frappe.session.user)
@@ -27,6 +29,7 @@ def get_notifications():
"open_count_doctype": get_notifications_for_doctypes(config, notification_count),
"open_count_module": get_notifications_for_modules(config, notification_count),
"open_count_other": get_notifications_for_other(config, notification_count),
"targets": get_notifications_for_targets(config, notification_percent),
"new_messages": get_new_messages()
}

@@ -111,6 +114,49 @@ def get_notifications_for_doctypes(config, notification_count):

return open_count_doctype

def get_notifications_for_targets(config, notification_percent):
"""Notifications for doc targets"""
can_read = frappe.get_user().get_can_read()
doc_target_percents = {}

# doc_target_percents = {
# "Company": {
# "Acme": 87,
# "RobotsRUs": 50,
# }, {}...
# }

for doctype in config.targets:
if doctype in can_read:
if doctype in notification_percent:
doc_target_percents[doctype] = notification_percent[doctype]
else:
doc_target_percents[doctype] = {}
d = config.targets[doctype]
condition = d["filters"]
target_field = d["target_field"]
value_field = d["value_field"]
try:
if isinstance(condition, dict):
doc_list = frappe.get_list(doctype, fields=["name", target_field, value_field],
filters=condition, limit_page_length = 100, ignore_ifnull=True)

except frappe.PermissionError:
frappe.clear_messages()
pass
except Exception as e:
if e.args[0]!=1412:
raise

else:
for doc in doc_list:
value = doc[value_field]
target = doc[target_field]
doc_target_percents[doctype][doc.name] = (value/target * 100) if value < target else 100

return doc_target_percents


def clear_notifications(user=None):
if frappe.flags.in_install:
return
@@ -163,7 +209,7 @@ def get_notification_config():
config = frappe._dict()
for notification_config in frappe.get_hooks().notification_config:
nc = frappe.get_attr(notification_config)()
for key in ("for_doctype", "for_module", "for_other"):
for key in ("for_doctype", "for_module", "for_other", "targets"):
config.setdefault(key, {})
config[key].update(nc.get(key, {}))
return config


+ 1
- 1
frappe/desk/query_report.py Datei anzeigen

@@ -208,7 +208,7 @@ def add_total_row(result, columns, meta = None):
total_row[i] = result[0][i]

for i in has_percent:
total_row[i] = total_row[i] / len(result)
total_row[i] = flt(total_row[i]) / len(result)

first_col_fieldtype = None
if isinstance(columns[0], basestring):


+ 5
- 1
frappe/desk/reportview.py Datei anzeigen

@@ -334,7 +334,7 @@ def build_match_conditions(doctype, as_condition=True):
else:
return match_conditions

def get_filters_cond(doctype, filters, conditions, ignore_permissions=None):
def get_filters_cond(doctype, filters, conditions, ignore_permissions=None, with_match_conditions=False):
if filters:
flt = filters
if isinstance(filters, dict):
@@ -350,6 +350,10 @@ def get_filters_cond(doctype, filters, conditions, ignore_permissions=None):
query = DatabaseQuery(doctype)
query.filters = flt
query.conditions = conditions

if with_match_conditions:
query.build_match_conditions()

query.build_filter_conditions(flt, conditions, ignore_permissions)

cond = ' and ' + ' and '.join(query.conditions)


+ 0
- 0
frappe/docs/assets/img/desk/__init__.py Datei anzeigen


BIN
frappe/docs/assets/img/desk/bar_graph.png Datei anzeigen

Vorher Nachher
Breite: 776  |  Höhe: 296  |  Größe: 29 KiB

BIN
frappe/docs/assets/img/desk/line_graph.png Datei anzeigen

Vorher Nachher
Breite: 776  |  Höhe: 295  |  Größe: 39 KiB

+ 46
- 22
frappe/docs/user/en/guides/automated-testing/qunit-testing.md Datei anzeigen

@@ -14,32 +14,56 @@ In the CI, all QUnit tests are run by the **Test Runner** using `frappe/tests/te

<img src="{{docs_base_url}}/assets/img/app-development/test-runner.png" class="screenshot">

### Running Tests

To run a Test Runner based test, use the `run-ui-tests` bench command by passing the name of the file you want to run.

bench run-ui-tests --test frappe/tests/ui/test_list.js

This will pass the filename to `test_test_runner.py` that will load the required JS in the browser and execute the tests

### Adding Fixtures / Test Data

You can also add data that you require for all tests in the `tests/ui/data` folder of your app. All the files in this folder will be loaded in the browser before running the test.

The file `frappe/tests/ui/data/test_lib.js`, which contains library functions for testing is always loaded.

### Running All UI Tests

To run all UI tests together for your app run

bench run-ui-tests --app [app_name]

This will run all the files in your `tests/ui` folder one by one.

### Example QUnit Test

Here is the example of the To Do test in QUnit

QUnit.test("test quick entry", function(assert) {
assert.expect(2);
let done = assert.async();
let random = frappe.utils.get_random(10);

frappe.set_route('List', 'ToDo')
.then(() => {
return frappe.new_doc('ToDo');
})
.then(() => {
frappe.quick_entry.dialog.set_value('description', random);
return frappe.quick_entry.insert();
})
.then((doc) => {
assert.ok(doc && !doc.__islocal);
return frappe.set_route('Form', 'ToDo', doc.name);
})
.then(() => {
assert.ok(cur_frm.doc.description.includes(random));
done();
});
});
QUnit.test("Test quick entry", function(assert) {
assert.expect(2);
let done = assert.async();
let random_text = frappe.utils.get_random(10);

frappe.run_serially([
() => frappe.set_route('List', 'ToDo'),
() => frappe.new_doc('ToDo'),
() => frappe.quick_entry.dialog.set_value('description', random_text),
() => frappe.quick_entry.insert(),
(doc) => {
assert.ok(doc && !doc.__islocal);
return frappe.set_route('Form', 'ToDo', doc.name);
},
() => assert.ok(cur_frm.doc.description.includes(random_text)),

// Delete the created ToDo
() => frappe.tests.click_page_head_item('Menu'),
() => frappe.tests.click_dropdown_item('Delete'),
() => frappe.tests.click_page_head_item('Yes'),

() => done()
]);
});

### Writing Test Friendly Code with Promises



+ 61
- 0
frappe/docs/user/en/guides/desk/making_graphs.md Datei anzeigen

@@ -0,0 +1,61 @@
# Making Graphs

The Frappe UI **Graph** object enables you to render simple line and bar graphs for a discreet set of data points. You can also set special checkpoint values and summary stats.

### Example: Line graph
Here's is an example of a simple sales graph:

render_graph: function() {
$('.form-graph').empty();

var months = ['Aug', 'Sep', 'Oct', 'Nov', 'Dec', 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul'];
var values = [2410, 3100, 1700, 1200, 2700, 1600, 2740, 1000, 850, 1500, 400, 2013];

var goal = 2500;
var current_val = 2013;

new frappe.ui.Graph({
parent: $('.form-graph'),
width: 700,
height: 140,
mode: 'line-graph',

title: 'Sales',
subtitle: 'Monthly',
y_values: values,
x_points: months,

specific_values: [
{
name: "Goal",
line_type: "dashed", // "dashed" or "solid"
value: goal
},
],
summary_values: [
{
name: "This month",
color: 'green', // Indicator colors: 'grey', 'blue', 'red',
// 'green', 'orange', 'purple', 'darkgrey',
// 'black', 'yellow', 'lightblue'
value: '₹ ' + current_val
},
{
name: "Goal",
color: 'blue',
value: '₹ ' + goal
},
{
name: "Completed",
color: 'green',
value: (current_val/goal*100).toFixed(1) + "%"
}
]
});
},

<img src="{{docs_base_url}}/assets/img/desk/line_graph.png" class="screenshot">

Setting the mode to 'bar-graph':

<img src="{{docs_base_url}}/assets/img/desk/bar_graph.png" class="screenshot">

+ 49
- 2
frappe/email/doctype/email_queue/email_queue.json Datei anzeigen

@@ -1,5 +1,6 @@
{
"allow_copy": 0,
"allow_guest_to_view": 0,
"allow_import": 0,
"allow_rename": 0,
"autoname": "hash",
@@ -14,6 +15,7 @@
"engine": "InnoDB",
"fields": [
{
"allow_bulk_edit": 0,
"allow_on_submit": 0,
"bold": 0,
"collapsible": 0,
@@ -43,6 +45,7 @@
"unique": 0
},
{
"allow_bulk_edit": 0,
"allow_on_submit": 0,
"bold": 0,
"collapsible": 0,
@@ -72,6 +75,7 @@
"unique": 0
},
{
"allow_bulk_edit": 0,
"allow_on_submit": 0,
"bold": 0,
"collapsible": 0,
@@ -101,6 +105,7 @@
"unique": 0
},
{
"allow_bulk_edit": 0,
"allow_on_submit": 0,
"bold": 0,
"collapsible": 0,
@@ -129,6 +134,7 @@
"unique": 0
},
{
"allow_bulk_edit": 0,
"allow_on_submit": 0,
"bold": 0,
"collapsible": 0,
@@ -159,6 +165,7 @@
"unique": 0
},
{
"allow_bulk_edit": 0,
"allow_on_submit": 0,
"bold": 0,
"collapsible": 0,
@@ -187,6 +194,7 @@
"unique": 0
},
{
"allow_bulk_edit": 0,
"allow_on_submit": 0,
"bold": 0,
"collapsible": 0,
@@ -216,6 +224,7 @@
"unique": 0
},
{
"allow_bulk_edit": 0,
"allow_on_submit": 0,
"bold": 0,
"collapsible": 0,
@@ -245,6 +254,7 @@
"unique": 0
},
{
"allow_bulk_edit": 0,
"allow_on_submit": 0,
"bold": 0,
"collapsible": 0,
@@ -273,6 +283,7 @@
"unique": 0
},
{
"allow_bulk_edit": 0,
"allow_on_submit": 0,
"bold": 0,
"collapsible": 0,
@@ -303,6 +314,7 @@
"unique": 0
},
{
"allow_bulk_edit": 0,
"allow_on_submit": 0,
"bold": 0,
"collapsible": 0,
@@ -332,6 +344,7 @@
"unique": 0
},
{
"allow_bulk_edit": 0,
"allow_on_submit": 0,
"bold": 0,
"collapsible": 0,
@@ -362,6 +375,7 @@
"unique": 0
},
{
"allow_bulk_edit": 0,
"allow_on_submit": 0,
"bold": 0,
"collapsible": 0,
@@ -392,6 +406,7 @@
"unique": 0
},
{
"allow_bulk_edit": 0,
"allow_on_submit": 0,
"bold": 0,
"collapsible": 0,
@@ -421,6 +436,7 @@
"unique": 0
},
{
"allow_bulk_edit": 0,
"allow_on_submit": 0,
"bold": 0,
"collapsible": 0,
@@ -450,6 +466,7 @@
"unique": 0
},
{
"allow_bulk_edit": 0,
"allow_on_submit": 0,
"bold": 0,
"collapsible": 0,
@@ -477,20 +494,50 @@
"search_index": 0,
"set_only_once": 0,
"unique": 0
},
{
"allow_bulk_edit": 0,
"allow_on_submit": 0,
"bold": 0,
"collapsible": 0,
"columns": 0,
"fieldname": "attachments",
"fieldtype": "Code",
"hidden": 1,
"ignore_user_permissions": 0,
"ignore_xss_filter": 0,
"in_filter": 0,
"in_global_search": 0,
"in_list_view": 0,
"in_standard_filter": 0,
"label": "Attachments",
"length": 0,
"no_copy": 0,
"permlevel": 0,
"precision": "",
"print_hide": 0,
"print_hide_if_no_value": 0,
"read_only": 0,
"remember_last_selected_value": 0,
"report_hide": 0,
"reqd": 0,
"search_index": 0,
"set_only_once": 0,
"unique": 0
}
],
"has_web_view": 0,
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "fa fa-envelope",
"idx": 1,
"image_view": 0,
"in_create": 1,
"in_dialog": 0,
"is_submittable": 0,
"issingle": 0,
"istable": 0,
"max_attachments": 0,
"modified": "2017-02-24 17:42:10.878546",
"modified": "2017-07-07 16:29:15.780393",
"modified_by": "Administrator",
"module": "Email",
"name": "Email Queue",


+ 3
- 2
frappe/email/doctype/newsletter/newsletter.py Datei anzeigen

@@ -70,8 +70,9 @@ class Newsletter(Document):

for file in files:
try:
file = get_file(file.name)
attachments.append({"fname": file[0], "fcontent": file[1]})
# these attachments will be attached on-demand
# and won't be stored in the message
attachments.append({"fid": file.name})
except IOError:
frappe.throw(_("Unable to find attachment {0}").format(a))



+ 141
- 62
frappe/email/email_body.py Datei anzeigen

@@ -2,7 +2,7 @@
# MIT License. See license.txt

from __future__ import unicode_literals
import frappe, re
import frappe, re, os
from frappe.utils.pdf import get_pdf
from frappe.email.smtp import get_outgoing_email_account
from frappe.utils import (get_url, scrub_urls, strip, expand_relative_urls, cint,
@@ -15,7 +15,7 @@ from email.mime.multipart import MIMEMultipart
def get_email(recipients, sender='', msg='', subject='[No Subject]',
text_content = None, footer=None, print_html=None, formatted=None, attachments=None,
content=None, reply_to=None, cc=[], email_account=None, expose_recipients=None,
inline_images=[]):
inline_images=[], header=False):
""" Prepare an email with the following format:
- multipart/mixed
- multipart/alternative
@@ -31,13 +31,15 @@ def get_email(recipients, sender='', msg='', subject='[No Subject]',
if not content.strip().startswith("<"):
content = markdown(content)

emailobj.set_html(content, text_content, footer=footer,
emailobj.set_html(content, text_content, footer=footer, header=header,
print_html=print_html, formatted=formatted, inline_images=inline_images)

if isinstance(attachments, dict):
attachments = [attachments]

for attach in (attachments or []):
# cannot attach if no filecontent
if attach.get('fcontent') is None: continue
emailobj.add_attachment(**attach)

return emailobj
@@ -74,10 +76,11 @@ class EMail:
self.email_account = email_account or get_outgoing_email_account()

def set_html(self, message, text_content = None, footer=None, print_html=None,
formatted=None, inline_images=None):
formatted=None, inline_images=None, header=False):
"""Attach message in the html portion of multipart/alternative"""
if not formatted:
formatted = get_formatted_html(self.subject, message, footer, print_html, email_account=self.email_account)
formatted = get_formatted_html(self.subject, message, footer, print_html,
email_account=self.email_account, header=header)

# this is the first html part of a multi-part message,
# convert to text well
@@ -100,21 +103,12 @@ class EMail:

def set_part_html(self, message, inline_images):
from email.mime.text import MIMEText
if inline_images:
# process inline images
_inline_images = []
for image in inline_images:
# images in dict like {filename:'', filecontent:'raw'}

content_id = random_string(10)
message = replace_filename_with_cid(message,
image.get('filename'), content_id)
has_inline_images = re.search('''embed=['"].*?['"]''', message)

_inline_images.append({
'filename': image.get('filename'),
'filecontent': image.get('filecontent'),
'content_id': content_id
})
if has_inline_images:
# process inline images
message, _inline_images = replace_filename_with_cid(message)

# prepare parts
msg_related = MIMEMultipart('related')
@@ -158,48 +152,11 @@ class EMail:
def add_attachment(self, fname, fcontent, content_type=None,
parent=None, content_id=None, inline=False):
"""add attachment"""
from email.mime.audio import MIMEAudio
from email.mime.base import MIMEBase
from email.mime.image import MIMEImage
from email.mime.text import MIMEText

import mimetypes
if not content_type:
content_type, encoding = mimetypes.guess_type(fname)

if content_type is None:
# No guess could be made, or the file is encoded (compressed), so
# use a generic bag-of-bits type.
content_type = 'application/octet-stream'

maintype, subtype = content_type.split('/', 1)
if maintype == 'text':
# Note: we should handle calculating the charset
if isinstance(fcontent, unicode):
fcontent = fcontent.encode("utf-8")
part = MIMEText(fcontent, _subtype=subtype, _charset="utf-8")
elif maintype == 'image':
part = MIMEImage(fcontent, _subtype=subtype)
elif maintype == 'audio':
part = MIMEAudio(fcontent, _subtype=subtype)
else:
part = MIMEBase(maintype, subtype)
part.set_payload(fcontent)
# Encode the payload using Base64
from email import encoders
encoders.encode_base64(part)

# Set the filename parameter
if fname:
attachment_type = 'inline' if inline else 'attachment'
part.add_header(b'Content-Disposition', attachment_type, filename=fname.encode('utf=8'))
if content_id:
part.add_header(b'Content-ID', '<{0}>'.format(content_id))

if not parent:
parent = self.msg_root

parent.attach(part)
add_attachment(fname, fcontent, content_type, parent, content_id, inline)

def add_pdf_attachment(self, name, html, options=None):
self.add_attachment(name, get_pdf(html, options), 'application/octet-stream')
@@ -276,11 +233,12 @@ class EMail:
self.make()
return self.msg_root.as_string()

def get_formatted_html(subject, message, footer=None, print_html=None, email_account=None):
def get_formatted_html(subject, message, footer=None, print_html=None, email_account=None, header=False):
if not email_account:
email_account = get_outgoing_email_account(False)

rendered_email = frappe.get_template("templates/emails/standard.html").render({
"header": get_header() if header else None,
"content": message,
"signature": get_signature(email_account),
"footer": get_footer(email_account, footer),
@@ -291,6 +249,52 @@ def get_formatted_html(subject, message, footer=None, print_html=None, email_acc

return scrub_urls(rendered_email)

def add_attachment(fname, fcontent, content_type=None,
parent=None, content_id=None, inline=False):
"""Add attachment to parent which must an email object"""
from email.mime.audio import MIMEAudio
from email.mime.base import MIMEBase
from email.mime.image import MIMEImage
from email.mime.text import MIMEText

import mimetypes
if not content_type:
content_type, encoding = mimetypes.guess_type(fname)

if not parent:
return

if content_type is None:
# No guess could be made, or the file is encoded (compressed), so
# use a generic bag-of-bits type.
content_type = 'application/octet-stream'

maintype, subtype = content_type.split('/', 1)
if maintype == 'text':
# Note: we should handle calculating the charset
if isinstance(fcontent, unicode):
fcontent = fcontent.encode("utf-8")
part = MIMEText(fcontent, _subtype=subtype, _charset="utf-8")
elif maintype == 'image':
part = MIMEImage(fcontent, _subtype=subtype)
elif maintype == 'audio':
part = MIMEAudio(fcontent, _subtype=subtype)
else:
part = MIMEBase(maintype, subtype)
part.set_payload(fcontent)
# Encode the payload using Base64
from email import encoders
encoders.encode_base64(part)

# Set the filename parameter
if fname:
attachment_type = 'inline' if inline else 'attachment'
part.add_header(b'Content-Disposition', attachment_type, filename=fname.encode('utf=8'))
if content_id:
part.add_header(b'Content-ID', '<{0}>'.format(content_id))

parent.attach(part)

def get_message_id():
'''Returns Message ID created from doctype and name'''
return "<{unique}@{site}>".format(
@@ -329,11 +333,86 @@ def get_footer(email_account, footer=None):

return footer

def replace_filename_with_cid(message, filename, content_id):
""" Replaces <img embed="filename.jpg" ...> with
<img src="cid:content_id" ...>
def replace_filename_with_cid(message):
""" Replaces <img embed="assets/frappe/images/filename.jpg" ...> with
<img src="cid:content_id" ...> and return the modified message and
a list of inline_images with {filename, filecontent, content_id}
"""
message = re.sub('''embed=['"]{0}['"]'''.format(filename),

inline_images = []

while True:
matches = re.search('''embed=["'](.*?)["']''', message)
if not matches: break
groups = matches.groups()

# found match
img_path = groups[0]
filename = img_path.rsplit('/')[-1]

filecontent = get_filecontent_from_path(img_path)
if not filecontent:
message = re.sub('''embed=['"]{0}['"]'''.format(img_path), '', message)
continue

content_id = random_string(10)

inline_images.append({
'filename': filename,
'filecontent': filecontent,
'content_id': content_id
})

message = re.sub('''embed=['"]{0}['"]'''.format(img_path),
'src="cid:{0}"'.format(content_id), message)

return message
return (message, inline_images)

def get_filecontent_from_path(path):
if not path: return

if path.startswith('/'):
path = path[1:]

if path.startswith('assets/'):
# from public folder
full_path = os.path.abspath(path)
elif path.startswith('files/'):
# public file
full_path = frappe.get_site_path('public', path)
elif path.startswith('private/files/'):
# private file
full_path = frappe.get_site_path(path)
else:
full_path = path

if os.path.exists(full_path):
with open(full_path) as f:
filecontent = f.read()

return filecontent
else:
print(full_path + ' doesn\'t exists')
return None


def get_header():
""" Build header from template """
from frappe.utils.jinja import get_email_from_template

default_brand_image = 'assets/frappe/images/favicon.png' # svg doesn't work in email
email_brand_image = frappe.get_hooks('email_brand_image')
if len(email_brand_image):
email_brand_image = email_brand_image[-1]
else:
email_brand_image = default_brand_image

email_brand_image = default_brand_image
brand_text = frappe.get_hooks('app_title')[-1]

email_header, text = get_email_from_template('email_header', {
'brand_image': email_brand_image,
'brand_text': brand_text
})

return email_header

+ 45
- 7
frappe/email/queue.py Datei anzeigen

@@ -5,13 +5,14 @@ from __future__ import unicode_literals
from six.moves import range
import frappe
import HTMLParser
import smtplib, quopri
import smtplib, quopri, json
from frappe import msgprint, throw, _
from frappe.email.smtp import SMTPServer, get_outgoing_email_account
from frappe.email.email_body import get_email, get_formatted_html
from frappe.email.email_body import get_email, get_formatted_html, add_attachment
from frappe.utils.verified_command import get_signed_params, verify_request
from html2text import html2text
from frappe.utils import get_url, nowdate, encode, now_datetime, add_days, split_emails, cstr, cint
from frappe.utils.file_manager import get_file
from rq.timeouts import JobTimeoutException
from frappe.utils.scheduler import log

@@ -21,7 +22,8 @@ def send(recipients=None, sender=None, subject=None, message=None, text_content=
reference_name=None, unsubscribe_method=None, unsubscribe_params=None, unsubscribe_message=None,
attachments=None, reply_to=None, cc=[], message_id=None, in_reply_to=None, send_after=None,
expose_recipients=None, send_priority=1, communication=None, now=False, read_receipt=None,
queue_separately=False, is_notification=False, add_unsubscribe_link=1, inline_images=None):
queue_separately=False, is_notification=False, add_unsubscribe_link=1, inline_images=None,
header=False):
"""Add email to sending queue (Email Queue)

:param recipients: List of recipients.
@@ -44,6 +46,7 @@ def send(recipients=None, sender=None, subject=None, message=None, text_content=
:param is_notification: Marks email as notification so will not trigger notifications from system
:param add_unsubscribe_link: Send unsubscribe link in the footer of the Email, default 1.
:param inline_images: List of inline images as {"filename", "filecontent"}. All src properties will be replaced with random Content-Id
:param header: Append header in email (boolean)
"""
if not unsubscribe_method:
unsubscribe_method = "/api/method/frappe.email.queue.unsubscribe"
@@ -72,7 +75,7 @@ def send(recipients=None, sender=None, subject=None, message=None, text_content=
except HTMLParser.HTMLParseError:
text_content = "See html attachment"

formatted = get_formatted_html(subject, message, email_account=email_account)
formatted = get_formatted_html(subject, message, email_account=email_account, header=header)

if reference_doctype and reference_name:
unsubscribed = [d.email for d in frappe.db.get_all("Email Unsubscribe", "email",
@@ -116,6 +119,7 @@ def send(recipients=None, sender=None, subject=None, message=None, text_content=
queue_separately=queue_separately,
is_notification = is_notification,
inline_images = inline_images,
header=header,
now=now)


@@ -145,6 +149,14 @@ def get_email_queue(recipients, sender, subject, **kwargs):
'''Make Email Queue object'''
e = frappe.new_doc('Email Queue')
e.priority = kwargs.get('send_priority')
attachments = kwargs.get('attachments')
if attachments:
# store attachments with fid, to be attached on-demand later
_attachments = []
for att in attachments:
if att.get('fid'):
_attachments.append(att)
e.attachments = json.dumps(_attachments)

try:
mail = get_email(recipients,
@@ -157,7 +169,8 @@ def get_email_queue(recipients, sender, subject, **kwargs):
cc=kwargs.get('cc'),
email_account=kwargs.get('email_account'),
expose_recipients=kwargs.get('expose_recipients'),
inline_images=kwargs.get('inline_images'))
inline_images=kwargs.get('inline_images'),
header=kwargs.get('header'))

mail.set_message_id(kwargs.get('message_id'),kwargs.get('is_notification'))
if kwargs.get('read_receipt'):
@@ -333,7 +346,7 @@ def send_one(email, smtpserver=None, auto_commit=True, now=False, from_test=Fals
email = frappe.db.sql('''select
name, status, communication, message, sender, reference_doctype,
reference_name, unsubscribe_param, unsubscribe_method, expose_recipients,
show_as_cc, add_unsubscribe_link
show_as_cc, add_unsubscribe_link, attachments
from
`tabEmail Queue`
where
@@ -426,6 +439,7 @@ where name=%s""", (unicode(e), email.name), auto_commit=auto_commit)
frappe.get_doc('Communication', email.communication).set_delivery_status(commit=auto_commit)

if now:
print(frappe.get_traceback())
raise e

else:
@@ -459,7 +473,31 @@ def prepare_message(email, recipient, recipients_list):
message = message.replace("<!--cc message-->", quopri.encodestring(email_sent_message))

message = message.replace("<!--recipient-->", recipient)
return message

if not email.attachments:
return message

# On-demand attachments
from email.parser import Parser

msg_obj = Parser().parsestr(message)
attachments = json.loads(email.attachments)

for attachment in attachments:
if attachment.get('fcontent'): continue

fid = attachment.get('fid')
if not fid: continue

fname, fcontent = get_file(fid)
attachment.update({
'fname': fname,
'fcontent': fcontent,
'parent': msg_obj
})
add_attachment(**attachment)

return msg_obj.as_string()

def clear_outbox():
"""Remove low priority older than 31 days in Outbox and expire mails not sent for 7 days.


+ 11
- 13
frappe/email/test_email_body.py Datei anzeigen

@@ -2,7 +2,7 @@
# License: GNU General Public License v3. See license.txt
from __future__ import unicode_literals

import unittest, os, base64
import frappe, unittest, os, base64
from frappe.email.email_body import replace_filename_with_cid, get_email

class TestEmailBody(unittest.TestCase):
@@ -11,16 +11,15 @@ class TestEmailBody(unittest.TestCase):
<div>
<h3>Hey John Doe!</h3>
<p>This is embedded image you asked for</p>
<img embed="favicon.png" />
<img embed="assets/frappe/images/favicon.png" />
</div>
'''
email_text = '''
Hey John Doe!
This is the text version of this email
'''
frappe_app_path = os.path.join('..', 'apps', 'frappe')
img_path = os.path.join(frappe_app_path, 'frappe', 'public', 'images', 'favicon.png')

img_path = os.path.abspath('assets/frappe/images/favicon.png')
with open(img_path) as f:
img_content = f.read()
img_base64 = base64.b64encode(img_content)
@@ -33,11 +32,7 @@ This is the text version of this email
sender='me@example.com',
subject='Test Subject',
content=email_html,
text_content=email_text,
inline_images=[{
'filename': 'favicon.png',
'filecontent': img_content
}]
text_content=email_text
).as_string()


@@ -86,15 +81,18 @@ w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
def test_replace_filename_with_cid(self):
original_message = '''
<div>
<img embed="test.jpg" alt="test" />
<img embed="assets/frappe/images/favicon.png" alt="test" />
<img embed="notexists.jpg" />
</div>
'''
message, inline_images = replace_filename_with_cid(original_message)

processed_message = '''
<div>
<img src="cid:abcdefghij" alt="test" />
<img src="cid:{0}" alt="test" />
<img />
</div>
'''
message = replace_filename_with_cid(original_message, 'test.jpg', 'abcdefghij')
'''.format(inline_images[0].get('content_id'))
self.assertEquals(message, processed_message)




+ 5
- 2
frappe/oauth.py Datei anzeigen

@@ -1,5 +1,6 @@
from __future__ import print_function
import frappe, urllib
import pytz

from frappe import _
from urlparse import parse_qs, urlparse
@@ -227,8 +228,10 @@ class OAuthWebRequestValidator(RequestValidator):

def validate_bearer_token(self, token, scopes, request):
# Remember to check expiration and scope membership
otoken = frappe.get_doc("OAuth Bearer Token", token) #{"access_token": str(token)})
is_token_valid = (frappe.utils.datetime.datetime.now() < otoken.expiration_time) \
otoken = frappe.get_doc("OAuth Bearer Token", token)
token_expiration_local = otoken.expiration_time.replace(tzinfo=pytz.timezone(frappe.utils.get_time_zone()))
token_expiration_utc = token_expiration_local.astimezone(pytz.utc)
is_token_valid = (frappe.utils.datetime.datetime.utcnow().replace(tzinfo=pytz.utc) < token_expiration_utc) \
and otoken.status != "Revoked"
client_scopes = frappe.db.get_value("OAuth Client", otoken.client, 'scopes').split(get_url_delimiter())
are_scopes_valid = True


+ 1
- 0
frappe/public/build.json Datei anzeigen

@@ -161,6 +161,7 @@
"public/js/frappe/query_string.js",

"public/js/frappe/ui/charts.js",
"public/js/frappe/ui/graph.js",
"public/js/frappe/misc/rating_icons.html",

"public/js/frappe/feedback.js"


+ 11
- 0
frappe/public/css/desk.css Datei anzeigen

@@ -508,6 +508,17 @@ fieldset[disabled] .form-control {
cursor: pointer;
margin-right: 10px;
}
a.progress-small .progress-chart {
width: 60px;
margin-top: 4px;
float: right;
}
a.progress-small .progress {
margin-bottom: 0;
}
a.progress-small .progress-bar {
background-color: #98d85b;
}
/* on small screens, show only icons on top */
@media (max-width: 767px) {
.module-view-layout .nav-stacked > li {


+ 86
- 0
frappe/public/css/form.css Datei anzeigen

@@ -642,6 +642,92 @@ select.form-control {
box-shadow: none;
}
}
/* goals */
.goals-page-container {
background-color: #fafbfc;
padding-top: 1px;
}
.goals-page-container .goal-container {
background-color: #fff;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
border-radius: 2px;
padding: 10px;
margin: 10px;
}
.graph-container .graphics {
margin-top: 10px;
padding: 10px 0px;
}
.graph-container .stats-group {
display: flex;
justify-content: space-around;
flex: 1;
}
.graph-container .stats-container {
display: flex;
justify-content: space-around;
}
.graph-container .stats-container .stats {
padding-bottom: 15px;
}
.graph-container .stats-container .stats-title {
color: #8D99A6;
}
.graph-container .stats-container .stats-value {
font-size: 20px;
font-weight: 300;
}
.graph-container .stats-container .stats-description {
font-size: 12px;
color: #8D99A6;
}
.graph-container .stats-container .graph-data .stats-value {
color: #98d85b;
}
.bar-graph .axis,
.line-graph .axis {
font-size: 10px;
fill: #6a737d;
}
.bar-graph .axis line,
.line-graph .axis line {
stroke: rgba(27, 31, 35, 0.1);
}
.data-points circle {
fill: #28a745;
stroke: #fff;
stroke-width: 2;
}
.data-points g.mini {
fill: #98d85b;
}
.data-points path {
fill: none;
stroke: #28a745;
stroke-opacity: 1;
stroke-width: 2px;
}
.line-graph .path {
fill: none;
stroke: #28a745;
stroke-opacity: 1;
stroke-width: 2px;
}
line.dashed {
stroke-dasharray: 5,3;
}
.tick.x-axis-label {
display: block;
}
.tick .specific-value {
text-anchor: start;
}
.tick .y-value-text {
text-anchor: end;
}
.tick .x-value-text {
text-anchor: middle;
}
body[data-route^="Form/Communication"] textarea[data-fieldname="subject"] {
height: 80px !important;
}

+ 2
- 0
frappe/public/css/list.css Datei anzeigen

@@ -232,6 +232,7 @@
padding: 2px 4px;
font-weight: normal;
background-color: #F0F4F7;
white-space: normal;
}
.taggle_list .taggle:hover {
padding: 2px 15px 2px 4px;
@@ -448,6 +449,7 @@
.list-item__content--activity {
justify-content: flex-end;
margin-right: 5px;
min-width: 110px;
}
.list-item__content--activity .list-row-modified,
.list-item__content--activity .avatar-small {


+ 9
- 0
frappe/public/css/mobile.css Datei anzeigen

@@ -192,6 +192,15 @@ body {
}
}
@media (max-width: 767px) {
body[data-route^="Form"] .page-title .title-text {
font-size: 16px;
width: calc(100% - 30px);
}
body[data-route^="Form"] .page-title .indicator {
float: left;
margin-top: 10px;
margin-right: 5px;
}
.modal .modal-dialog {
margin: 0px;
padding: 0px;


+ 3
- 0
frappe/public/css/page.css Datei anzeigen

@@ -146,6 +146,9 @@ select.input-sm {
right: 101px;
width: 100%;
}
.page-title h1 {
padding-right: 170px;
}
.page-head .page-title h1 {
font-size: 18px;
}


+ 0
- 0
frappe/public/css/variables.css Datei anzeigen


+ 3
- 0
frappe/public/js/frappe/dom.js Datei anzeigen

@@ -211,6 +211,9 @@ frappe.timeout = seconds => {
});
};

frappe.scrub = function(text) {
return text.replace(/ /g, "_").toLowerCase();
};

frappe.get_modal = function(title, content) {
return $(frappe.render_template("modal", {title:title, content:content})).appendTo(document.body);


+ 48
- 5
frappe/public/js/frappe/form/dashboard.js Datei anzeigen

@@ -11,7 +11,7 @@ frappe.ui.form.Dashboard = Class.extend({

this.progress_area = this.wrapper.find(".progress-area");
this.heatmap_area = this.wrapper.find('.form-heatmap');
this.chart_area = this.wrapper.find('.form-chart');
this.graph_area = this.wrapper.find('.form-graph');
this.stats_area = this.wrapper.find('.form-stats');
this.stats_area_row = this.stats_area.find('.row');
this.links_area = this.wrapper.find('.form-links');
@@ -43,9 +43,9 @@ frappe.ui.form.Dashboard = Class.extend({
this.frm.layout.show_message();
},

add_comment: function(text, permanent) {
add_comment: function(text, alert_class, permanent) {
var me = this;
this.set_headline_alert(text);
this.set_headline_alert(text, alert_class);
if(!permanent) {
setTimeout(function() {
me.clear_headline();
@@ -91,6 +91,7 @@ frappe.ui.form.Dashboard = Class.extend({

this.show();
},

format_percent: function(title, percent) {
var width = cint(percent) < 1 ? 1 : cint(percent);
var progress_class = "";
@@ -138,6 +139,11 @@ frappe.ui.form.Dashboard = Class.extend({
show = true;
}

if(this.data.graph) {
this.setup_graph();
show = true;
}

if(show) {
this.show();
}
@@ -383,13 +389,50 @@ frappe.ui.form.Dashboard = Class.extend({
},

//graphs
setup_graph: function() {
var me = this;

var method = this.data.graph_method;
var args = {
doctype: this.frm.doctype,
docname: this.frm.doc.name,
};

$.extend(args, this.data.graph_method_args);

frappe.call({
type: "GET",
method: method,
args: args,

callback: function(r) {
if(r.message) {
me.render_graph(r.message);
}
}
});
},

render_graph: function(args) {
var me = this;
this.graph_area.empty().removeClass('hidden');
$.extend(args, {
parent: me.graph_area,
width: 710,
height: 140,
mode: 'line-graph'
});

new frappe.ui.Graph(args);
},

setup_chart: function(opts) {
var me = this;

this.chart_area.removeClass('hidden');
this.graph_area.removeClass('hidden');

$.extend(opts, {
wrapper: me.wrapper.find('.form-chart'),
wrapper: me.graph_area,
padding: {
right: 30,
bottom: 30


+ 1
- 1
frappe/public/js/frappe/form/templates/form_dashboard.html Datei anzeigen

@@ -5,7 +5,7 @@
<div id="heatmap-{{ frappe.model.scrub(frm.doctype) }}"></div>
<div class="text-muted small heatmap-message hidden"></div>
</div>
<div class="form-chart form-dashboard-section hidden"></div>
<div class="form-graph form-dashboard-section hidden"></div>
<div class="form-stats form-dashboard-section hidden">
<div class="row"></div>
</div>


+ 5
- 1
frappe/public/js/frappe/form/templates/form_sidebar.html Datei anzeigen

@@ -10,7 +10,11 @@
</ul>
{% if frm.meta.beta %}
<div class="sidebar-menu">
<label class="label label-warning" title="{{ __("This feature is brand new and still experimental") }}">{{ __("Experimental Feature") }}</label>
<p><label class="label label-warning" title="{{ __("This feature is brand new and still experimental") }}">{{ __("Under Development") }}</label></p>
<p><a class="small" href="https://github.com/frappe/{{ frappe.boot.module_app[frappe.scrub(frm.meta.module)] }}/issues/new"
target="_blank">
{{ __("Click here to post bugs and suggestions") }}</a></p>

</div>
{% endif %}
<ul class="list-unstyled sidebar-menu sidebar-rating hide">


+ 9
- 5
frappe/public/js/frappe/list/list_renderer.js Datei anzeigen

@@ -309,11 +309,15 @@ frappe.views.ListRenderer = Class.extend({

render_view: function (values) {
var me = this;
var $list_items = $(`
<div class="list-items">
</div>
`);
me.wrapper.append($list_items);
var $list_items = me.wrapper.find('.list-items');

if($list_items.length === 0) {
$list_items = $(`
<div class="list-items">
</div>
`);
me.wrapper.append($list_items);
}

values.map(value => {
const $item = $(this.get_item_html(value));


+ 308
- 0
frappe/public/js/frappe/ui/graph.js Datei anzeigen

@@ -0,0 +1,308 @@
// specific_values = [
// {
// name: "Average",
// line_type: "dashed", // "dashed" or "solid"
// value: 10
// },

// summary_values = [
// {
// name: "Total",
// color: 'blue', // Indicator colors: 'grey', 'blue', 'red', 'green', 'orange',
// // 'purple', 'darkgrey', 'black', 'yellow', 'lightblue'
// value: 80
// }
// ]

frappe.ui.Graph = class Graph {
constructor({
parent = null,

width = 0, height = 0,
title = '', subtitle = '',

y_values = [],
x_points = [],

specific_values = [],
summary_values = [],

color = '',
mode = '',
} = {}) {

if(Object.getPrototypeOf(this) === frappe.ui.Graph.prototype) {
if(mode === 'line-graph') {
return new frappe.ui.LineGraph(arguments[0]);
} else if(mode === 'bar-graph') {
return new frappe.ui.BarGraph(arguments[0]);
}
}

this.parent = parent;

this.width = width;
this.height = height;

this.title = title;
this.subtitle = subtitle;

this.y_values = y_values;
this.x_points = x_points;

this.specific_values = specific_values;
this.summary_values = summary_values;

this.color = color;
this.mode = mode;

this.$graph = null;

frappe.require("assets/frappe/js/lib/snap.svg-min.js", this.setup.bind(this));
}

setup() {
this.setup_container();
this.refresh();
}

refresh() {
this.setup_values();
this.setup_components();
this.make_y_axis();
this.make_x_axis();
this.make_units();
if(this.specific_values.length > 0) {
this.show_specific_values();
}
this.setup_group();

if(this.summary_values.length > 0) {
this.show_summary();
}
}

setup_container() {
this.container = $('<div>')
.addClass('graph-container')
.append($(`<h6 class="title" style="margin-top: 15px;">${this.title}</h6>`))
.append($(`<h6 class="sub-title uppercase">${this.subtitle}</h6>`))
.append($(`<div class="graphics"></div>`))
.append($(`<div class="stats-container"></div>`))
.appendTo(this.parent);

let $graphics = this.container.find('.graphics');
this.$stats_container = this.container.find('.stats-container');

this.$graph = $('<div>')
.addClass(this.mode)
.appendTo($graphics);

this.$svg = $(`<svg class="svg" width="${this.width}" height="${this.height}"></svg>`);
this.$graph.append(this.$svg);

this.snap = new Snap(this.$svg[0]);
}

setup_values() {
this.upper_graph_bound = this.get_upper_limit_and_parts(this.y_values)[0];
this.y_axis = this.get_y_axis(this.y_values);
this.avg_unit_width = (this.width-100)/(this.x_points.length - 1);
}

setup_components() {
this.y_axis_group = this.snap.g().attr({
class: "y axis"
});

this.x_axis_group = this.snap.g().attr({
class: "x axis"
});

this.graph_list = this.snap.g().attr({
class: "data-points",
});

this.specific_y_lines = this.snap.g().attr({
class: "specific axis",
});
}

setup_group() {
this.snap.g(
this.y_axis_group,
this.x_axis_group,
this.graph_list,
this.specific_y_lines
).attr({
transform: "translate(60, 10)" // default
});
}

show_specific_values() {
this.specific_values.map(d => {
this.specific_y_lines.add(this.snap.g(
this.snap.line(0, 0, this.width - 50, 0).attr({
class: d.line_type === "dashed" ? "dashed": ""
}),
this.snap.text(this.width - 100, 0, d.name.toUpperCase()).attr({
dy: ".32em",
class: "specific-value",
})
).attr({
class: "tick",
transform: `translate(0, ${100 - 100/(this.upper_graph_bound/d.value) })`
}));
});
}

show_summary() {
this.summary_values.map(d => {
this.$stats_container.append($(`<div class="stats">
<span class="indicator ${d.color}">${d.name}: ${d.value}</span>
</div>`));
});
}

// Helpers
get_upper_limit_and_parts(array) {
let specific_values = this.specific_values.map(d => d.value);
let max_val = parseInt(Math.max(...array, ...specific_values));
if((max_val+"").length <= 1) {
return [10, 5];
} else {
let multiplier = Math.pow(10, ((max_val+"").length - 1));
let significant = Math.ceil(max_val/multiplier);
if(significant % 2 !== 0) significant++;
let parts = (significant < 5) ? significant : significant/2;
return [significant * multiplier, parts];
}
}

get_y_axis(array) {
let upper_limit, parts;
[upper_limit, parts] = this.get_upper_limit_and_parts(array);
let y_axis = [];
for(var i = 0; i <= parts; i++){
y_axis.push(upper_limit / parts * i);
}
return y_axis;
}
};

frappe.ui.BarGraph = class BarGraph extends frappe.ui.Graph {
constructor(args = {}) {
super(args);
}

setup_values() {
super.setup_values();
this.avg_unit_width = (this.width-50)/(this.x_points.length + 2);
}

make_y_axis() {
this.y_axis.map((point) => {
this.y_axis_group.add(this.snap.g(
this.snap.line(0, 0, this.width, 0),
this.snap.text(-3, 0, point+"").attr({
dy: ".32em",
class: "y-value-text"
})
).attr({
class: "tick",
transform: `translate(0, ${100 - (100/(this.y_axis.length-1) * this.y_axis.indexOf(point)) })`
}));
});
}

make_x_axis() {
this.x_axis_group.attr({
transform: "translate(0,100)"
});
this.x_points.map((point, i) => {
this.x_axis_group.add(this.snap.g(
this.snap.line(0, 0, 0, 6),
this.snap.text(0, 9, point).attr({
dy: ".71em",
class: "x-value-text"
})
).attr({
class: "tick x-axis-label",
transform: `translate(${ ((this.avg_unit_width - 5)*3/2) + i * (this.avg_unit_width + 5) }, 0)`
}));
});
}

make_units() {
this.y_values.map((value, i) => {
this.graph_list.add(this.snap.g(
this.snap.rect(
0,
(100 - 100/(this.upper_graph_bound/value)),
this.avg_unit_width - 5,
100/(this.upper_graph_bound/value)
)
).attr({
class: "bar mini",
transform: `translate(${ (this.avg_unit_width - 5) + i * (this.avg_unit_width + 5) }, 0)`,
}));
});
}
};

frappe.ui.LineGraph = class LineGraph extends frappe.ui.Graph {
constructor(args = {}) {
super(args);
}

make_y_axis() {
this.y_axis.map((point) => {
this.y_axis_group.add(this.snap.g(
this.snap.line(0, 0, -6, 0),
this.snap.text(-9, 0, point+"").attr({
dy: ".32em",
class: "y-value-text"
})
).attr({
class: "tick",
transform: `translate(0, ${100 - (100/(this.y_axis.length-1)
* this.y_axis.indexOf(point)) })`
}));
});
}

make_x_axis() {
this.x_axis_group.attr({
transform: "translate(0,-7)"
});
this.x_points.map((point, i) => {
this.x_axis_group.add(this.snap.g(
this.snap.line(0, 0, 0, this.height - 25),
this.snap.text(0, this.height - 15, point).attr({
dy: ".71em",
class: "x-value-text"
})
).attr({
class: "tick",
transform: `translate(${ i * this.avg_unit_width }, 0)`
}));
});
}

make_units() {
let points_list = [];
this.y_values.map((value, i) => {
let x = i * this.avg_unit_width;
let y = (100 - 100/(this.upper_graph_bound/value));
this.graph_list.add(this.snap.circle( x, y, 4));
points_list.push(x+","+y);
});

this.make_path("M"+points_list.join("L"));
}

make_path(path_str) {
this.graph_list.prepend(this.snap.path(path_str));
}

};

+ 31
- 20
frappe/public/js/frappe/ui/page.js Datei anzeigen

@@ -95,7 +95,7 @@ frappe.ui.Page = Class.extend({
},

set_indicator: function(label, color) {
this.clear_indicator().removeClass("hide").html(label).addClass(color);
this.clear_indicator().removeClass("hide").html(`<span class='hidden-xs'>${label}</span>`).addClass(color);
},

add_action_icon: function(icon, click) {
@@ -113,13 +113,20 @@ frappe.ui.Page = Class.extend({
},

set_action: function(btn, opts) {
let me = this;
if (opts.icon) {
opts.label = this.get_icon_label(opts.icon, opts.label);
}

this.clear_action_of(btn);

btn.removeClass("hide").prop("disabled", false).html(opts.label).on("click", opts.click);
btn.removeClass("hide")
.prop("disabled", false)
.html(opts.label)
.on("click", function() {
let response = opts.click.apply(this);
me.btn_disable_enable(btn, response);
});

if (opts.working_label) {
btn.attr("data-working-label", opts.working_label);
@@ -250,31 +257,35 @@ frappe.ui.Page = Class.extend({
this.get_inner_group_button(label).find("button").removeClass("btn-default").addClass("btn-primary");
},

btn_disable_enable: function(btn, response) {
if (response && response.then) {
btn.prop('disabled', true);
response.then(() => {
btn.prop('disabled', false);
})
} else if (response && response.always) {
btn.prop('disabled', true);
response.always(() => {
btn.prop('disabled', false);
});
}
},

add_inner_button: function(label, action, group) {
let _action = function() {
let btn = $(this);
let _ret = action();
if (_ret && _ret.then) {
// returns a promise
btn.attr('disabled', true);
_ret.then(() => {
btn.attr('disabled', false);
})
}
if (_ret && _ret.always) {
// returns frappe.call ($.ajax)
btn.attr('disabled', true);
_ret.always(() => {
btn.attr('disabled', false);
});
}
}
let response = action();
this.btn_disable_enable(btn, response);
};
if(group) {
var $group = this.get_inner_group_button(group);
return $('<li><a>'+label+'</a></li>').on('click', _action).appendTo($group.find(".dropdown-menu"));
return $('<li><a>'+label+'</a></li>')
.on('click', _action)
.appendTo($group.find(".dropdown-menu"));
} else {
return $('<button class="btn btn-default btn-xs" style="margin-left: 10px;">'+__(label)+'</btn>')
.on("click", _action).appendTo(this.inner_toolbar.removeClass("hide"))
.on("click", _action)
.appendTo(this.inner_toolbar.removeClass("hide"));
}
},



+ 103
- 116
frappe/public/js/frappe/ui/toolbar/notifications.js Datei anzeigen

@@ -1,125 +1,112 @@
frappe.provide("frappe.ui.notifications")

frappe.ui.notifications.update_notifications = function() {
frappe.ui.notifications.total = 0;
var doctypes = Object.keys(frappe.boot.notification_info.open_count_doctype).sort();
var modules = Object.keys(frappe.boot.notification_info.open_count_module).sort();
var other = Object.keys(frappe.boot.notification_info.open_count_other).sort();

// clear toolbar / sidebar notifications
frappe.ui.notifications.dropdown_notification = $("#dropdown-notification").empty();

// add these first.
frappe.ui.notifications.add_notification("Comment");
frappe.ui.notifications.add_notification("ToDo");
frappe.ui.notifications.add_notification("Event");

// add other
$.each(other, function(i, name) {
frappe.ui.notifications.add_notification(name, frappe.boot.notification_info.open_count_other);
});


// add a divider
if(frappe.ui.notifications.total) {
var divider = '<li class="divider"></li>';
frappe.ui.notifications.dropdown_notification.append($(divider));
}

// add to toolbar and sidebar
$.each(doctypes, function(i, doctype) {
if(!in_list(["ToDo", "Comment", "Event"], doctype)) {
frappe.ui.notifications.add_notification(doctype);
}
});

// set click events
$("#dropdown-notification a").on("click", function() {
var doctype = $(this).attr("data-doctype");
var config = frappe.ui.notifications.config[doctype] || {};
if (config.route) {
frappe.set_route(config.route);
} else if (config.click) {
config.click();
} else {
frappe.views.show_open_count_list(this);
}
});

// switch colour on the navbar and disable if no notifications
$(".navbar-new-comments")
.html(frappe.ui.notifications.total > 20 ? '20+' : frappe.ui.notifications.total)
.toggleClass("navbar-new-comments-true", frappe.ui.notifications.total ? true : false)
.parent().toggleClass("disabled", frappe.ui.notifications.total ? false : true);

}

frappe.ui.notifications.add_notification = function(doctype, notifications_map) {
if(!notifications_map) {
notifications_map = frappe.boot.notification_info.open_count_doctype;
}
frappe.provide("frappe.ui.notifications");

frappe.ui.notifications = {
config: {
"ToDo": { label: __("To Do") },
"Chat": { label: __("Chat"), route: "chat"},
"Event": { label: __("Calendar"), route: "List/Event/Calendar" },
"Email": { label: __("Email"), route: "List/Communication/Inbox" },
"Likes": { label: __("Likes"),
click: function() {
frappe.route_options = { show_likes: true };
if (frappe.get_route()[0]=="activity") {
frappe.pages['activity'].page.list.refresh();
} else {
frappe.set_route("activity");
}
}
},
},

var count = notifications_map[doctype];
if(count) {
var config = frappe.ui.notifications.config[doctype] || {};
var label = config.label || doctype;
var notification_row = repl('<li><a class="badge-hover" data-doctype="%(data_doctype)s">\
<span class="badge pull-right">\
%(count)s</span> \
%(label)s </a></li>', {
label: __(label),
count: count > 20 ? '20+' : count,
data_doctype: doctype
update_notifications: function() {
this.total = 0;
this.dropdown = $("#dropdown-notification").empty();
this.boot_info = frappe.boot.notification_info;
let defaults = ["Comment", "ToDo", "Event"];

this.get_counts(this.boot_info.open_count_doctype, 0, defaults);
this.get_counts(this.boot_info.open_count_other, 1);

// Target counts are stored for docs per doctype
let targets = { doctypes : {} }, map = this.boot_info.targets;
Object.keys(map).map(doctype => {
Object.keys(map[doctype]).map(doc => {
targets[doc] = map[doctype][doc];
targets.doctypes[doc] = doctype;
});
});
this.get_counts(targets, 1, null, ["doctypes"], true);
this.get_counts(this.boot_info.open_count_doctype,
0, null, defaults);

this.bind_list();

// switch colour on the navbar and disable if no notifications
$(".navbar-new-comments")
.html(this.total > 20 ? '20+' : this.total)
.toggleClass("navbar-new-comments-true", this.total ? true : false)
.parent().toggleClass("disabled", this.total ? false : true);
},

frappe.ui.notifications.dropdown_notification.append($(notification_row));

frappe.ui.notifications.total += count;
}
}
get_counts: function(map, divide, keys, excluded = [], target = false) {
keys = keys ? keys
: Object.keys(map).sort().filter(e => !excluded.includes(e));
keys.map(key => {
let doc_dt = (map.doctypes) ? map.doctypes[key] : undefined;
if(map[key] > 0) {
this.add_notification(key, map[key], doc_dt, target);
}
});
if(divide)
this.dropdown.append($('<li class="divider"></li>'));
},

// default notification config
frappe.ui.notifications.config = {
"ToDo": { label: __("To Do") },
"Chat": { label: __("Chat"), route: "chat"},
"Event": { label: __("Calendar"), route: "List/Event/Calendar" },
"Email": { label: __("Email"), route: "List/Communication/Inbox" },
"Likes": {
label: __("Likes"),
click: function() {
frappe.route_options = {
show_likes: true
};
add_notification: function(name, value, doc_dt, target = false) {
let label = this.config[name] ? this.config[name].label : name;
let $list_item = !target
? $(`<li><a class="badge-hover" data-doctype="${name}">${label}
<span class="badge pull-right">${value}</span>
</a></li>`)
: $(`<li><a class="progress-small" data-doctype="${doc_dt}"
data-doc="${name}">${label}
<div class="progress-chart"><div class="progress">
<div class="progress-bar" style="width: ${value}%"></div>
</div></div>
</a></li>`);
this.dropdown.append($list_item);
if(!target) this.total += value;
},

if (frappe.get_route()[0]=="activity") {
frappe.pages['activity'].page.list.refresh();
bind_list: function() {
var me = this;
$("#dropdown-notification a").on("click", function() {
var doctype = $(this).attr("data-doctype");
var doc = $(this).attr("data-doc");
if(!doc) {
var config = me.config[doctype] || {};
if (config.route) {
frappe.set_route(config.route);
} else if (config.click) {
config.click();
} else {
frappe.ui.notifications.show_open_count_list(doctype);
}
} else {
frappe.set_route("activity");
frappe.set_route("Form", doctype, doc);
}
}
});
},
};

frappe.views.show_open_count_list = function(element) {
var doctype = $(element).attr("data-doctype");
var filters = frappe.ui.notifications.get_filters(doctype);

if(filters) {
frappe.route_options = filters;
}

var route = frappe.get_route();
if(route[0]==="List" && route[1]===doctype) {
frappe.pages["List/" + doctype].list_view.refresh();
} else {
frappe.set_route("List", doctype);
}
}

frappe.ui.notifications.get_filters = function(doctype) {
var conditions = frappe.boot.notification_info.conditions[doctype];

if(conditions && $.isPlainObject(conditions)) {
return conditions;
}
}
show_open_count_list: function(doctype) {
let filters = this.boot_info.conditions[doctype];
if(filters && $.isPlainObject(filters)) {
frappe.route_options = filters;
}
let route = frappe.get_route();
if(route[0]==="List" && route[1]===doctype) {
frappe.pages["List/" + doctype].list_view.refresh();
} else {
frappe.set_route("List", doctype);
}
},
}

+ 3
- 55
frappe/public/js/frappe/views/calendar/calendar.js Datei anzeigen

@@ -12,7 +12,7 @@ frappe.views.CalendarView = frappe.views.ListRenderer.extend({
doctype: this.doctype,
parent: this.wrapper,
page: this.list_view.page,
filter_vals: this.list_view.filter_list.get_filters()
list_view: this.list_view
}
$.extend(options, frappe.views.calendar[this.doctype]);
this.calendar = new frappe.views.Calendar(options);
@@ -45,6 +45,7 @@ frappe.views.Calendar = Class.extend({
var me = this;

// add links to other calendars
me.page.clear_user_actions();
$.each(frappe.boot.calendars, function(i, doctype) {
if(frappe.model.can_read(doctype)) {
me.page.add_menu_item(__(doctype), function() {
@@ -196,19 +197,11 @@ frappe.views.Calendar = Class.extend({
}
},
get_args: function(start, end) {
if(this.filter_vals) {
var filters = {};
this.filter_vals.forEach(function(f) {
if(f[2]==="=") {
filters[f[1]] = f[3];
}
});
}
var args = {
doctype: this.doctype,
start: this.get_system_datetime(start),
end: this.get_system_datetime(end),
filters: filters
filters: this.list_view.filter_list.get_filters()
};
return args;
},
@@ -309,50 +302,5 @@ frappe.views.Calendar = Class.extend({
event.start = event.start ? $.fullCalendar.moment(event.start).stripTime() : null;
event.end = event.end ? $.fullCalendar.moment(event.end).add(1, "day").stripTime() : null;
}
},
add_filters: function() {
var me = this;
if(this.filters) {
$.each(this.filters, function(i, df) {
df.change = function() {
me.refresh();
};
me.page.add_field(df);
});
}
},
set_filter: function(doctype, value) {
var me = this;
if(this.filters) {
$.each(this.filters, function(i, df) {
if(df.options===value)
me.page.fields_dict[df.fieldname].set_input(value);
return false;
});
}
},
get_filters: function() {
var filter_vals = {},
me = this;
if(this.filters) {
$.each(this.filters, function(i, df) {
filter_vals[df.fieldname || df.label] =
me.page.fields_dict[df.fieldname || df.label].get_value();
});
}
return filter_vals;
},
set_filters_from_route_options: function() {
var me = this;
if(frappe.route_options) {
$.each(frappe.route_options, function(k, value) {
if(me.page.fields_dict[k]) {
me.page.fields_dict[k].set_input(value);
}
})
frappe.route_options = null;
me.refresh();
return false;
}
}
})

+ 1
- 1
frappe/public/js/legacy/form.js Datei anzeigen

@@ -335,7 +335,7 @@ _f.Frm.prototype.refresh_header = function(is_a_different_doc) {
! this.is_dirty() &&
! this.is_new() &&
this.doc.docstatus===0) {
this.dashboard.add_comment(__('Submit this document to confirm'), true);
this.dashboard.add_comment(__('Submit this document to confirm'), 'alert-warning', true);
}

this.clear_custom_buttons();


+ 31
- 15
frappe/public/less/desk.less Datei anzeigen

@@ -66,8 +66,8 @@ a[disabled="disabled"] {

#alert-container .desk-alert {
-webkit-box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);
box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1);

padding: 10px 40px 10px 20px;
max-width: 400px;
@@ -318,19 +318,35 @@ textarea.form-control {
}

.open-notification {
position:relative;
position:relative;
left: 2px;
display:inline-block;
background:#ff5858;
font-size: @text-medium;
line-height:20px;
padding:0 8px;
color:#fff;
border-radius:10px;
display:inline-block;
background:#ff5858;
font-size: @text-medium;
line-height:20px;
padding:0 8px;
color:#fff;
border-radius:10px;
cursor: pointer;
margin-right: 10px;
}

a.progress-small {
.progress-chart {
width: 60px;
margin-top: 4px;
float: right;
}

.progress {
margin-bottom: 0;
}

.progress-bar {
background-color: #98d85b;
}
}

/* on small screens, show only icons on top */
@media (max-width: 767px) {
.module-view-layout .nav-stacked > li {
@@ -825,7 +841,7 @@ textarea.form-control {
}

.c3-line {
stroke-width: 3px;
stroke-width: 3px;
}

.c3-tooltip {
@@ -897,10 +913,10 @@ input[type="checkbox"] {
// Will not be required after commonifying lists with empty state
.multiselect-empty-state{
min-height: 300px;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}

// mozilla doesn't support


+ 117
- 0
frappe/public/less/form.less Datei anzeigen

@@ -827,6 +827,123 @@ select.form-control {
}
}

/* goals */

.goals-page-container {
background-color: #fafbfc;
padding-top: 1px;

.goal-container {
background-color: #fff;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
border-radius: 2px;
padding: 10px;
margin: 10px;
}
}

.graph-container {
.graphics {
margin-top: 10px;
padding: 10px 0px;
}

.stats-group {
display: flex;
justify-content: space-around;
flex: 1;
}

.stats-container {
display: flex;
justify-content: space-around;

.stats {
padding-bottom: 15px;
}

.stats-title {
color: #8D99A6;
}
.stats-value {
font-size: 20px;
font-weight: 300;
}
.stats-description {
font-size: 12px;
color: #8D99A6;
}
.graph-data .stats-value {
color: #98d85b;
}
}
}

.bar-graph, .line-graph {

.axis {
font-size: 10px;
fill: #6a737d;

line {
stroke: rgba(27,31,35,0.1);
}
}
}

.data-points {
circle {
fill: #28a745;
stroke: #fff;
stroke-width: 2;
}

g.mini {
fill: #98d85b;
}

path {
fill: none;
stroke: #28a745;
stroke-opacity: 1;
stroke-width: 2px;
}
}

.line-graph {
.path {
fill: none;
stroke: #28a745;
stroke-opacity: 1;
stroke-width: 2px;
}
}

line.dashed {
stroke-dasharray: 5,3;
}

.tick {
&.x-axis-label {
display: block;
}

.specific-value {
text-anchor: start;
}

.y-value-text {
text-anchor: end;
}

.x-value-text {
text-anchor: middle;
}
}


body[data-route^="Form/Communication"] textarea[data-fieldname="subject"] {
height: 80px !important;
}



+ 2
- 0
frappe/public/less/list.less Datei anzeigen

@@ -292,6 +292,7 @@
padding: 2px 4px;
font-weight: normal;
background-color: @btn-bg;
white-space: normal;

&:hover {
padding: 2px 15px 2px 4px;
@@ -550,6 +551,7 @@
&--activity {
justify-content: flex-end;
margin-right: 5px;
min-width: 110px;

.list-row-modified, .avatar-small {
margin-right: 10px;


+ 13
- 0
frappe/public/less/mobile.less Datei anzeigen

@@ -223,6 +223,19 @@ body {
}

@media(max-width: 767px) {
body[data-route^="Form"]{
.page-title {
.title-text {
font-size: 16px;
width: calc(~"100% - 30px");
}
.indicator {
float: left;
margin-top: 10px;
margin-right: 5px;
}
}
}
.modal {
.modal-dialog {
margin: 0px;


+ 3
- 0
frappe/public/less/page.less Datei anzeigen

@@ -178,6 +178,9 @@ select.input-sm {
left: 0;
right: 101px;
width: 100%;
h1 {
padding-right: 170px;
}
}

.page-head .page-title h1 {


+ 1
- 1
frappe/templates/emails/password_update.html Datei anzeigen

@@ -1,5 +1,5 @@
<h3>{{_("Password Update Notification")}}</h3>
<p>{{_("Dear")}} {{ first_name }}{% if last_name %} {{ last_name}}{% endif %},</p>
<p>{{_("Your password has been updated. Here is your new password")}}: {{ new_password }}</p>
<p>{{_("Your password has been updated. Here is your new password")}}: <b>{{ new_password }}</b></p>
<p>{{_("Thank you")}},<br>
{{ user_fullname }}</p>

+ 11
- 2
frappe/test_runner.py Datei anzeigen

@@ -128,7 +128,7 @@ def run_tests_for_doctype(doctype, verbose=False, tests=(), force=False, profile
for name in frappe.db.sql_list("select name from `tab%s`" % doctype):
frappe.delete_doc(doctype, name, force=True)
make_test_records(doctype, verbose=verbose, force=force)
module = frappe.get_module(test_module)
module = importlib.import_module(test_module)
return _run_unittest(module, verbose=verbose, tests=tests, profile=profile)

def run_tests_for_module(module, verbose=False, tests=(), profile=False):
@@ -139,6 +139,13 @@ def run_tests_for_module(module, verbose=False, tests=(), profile=False):

return _run_unittest(module=module, verbose=verbose, tests=tests, profile=profile)

def run_ui_tests(app=None, test=None, verbose=False, profile=False):
'''Run a single unit test for UI using test_test_runner'''
module = importlib.import_module('frappe.tests.ui.test_test_runner')
frappe.flags.ui_test_app = app
frappe.flags.ui_test_path = test
return _run_unittest(module=module, verbose=verbose, tests=(), profile=profile)

def _run_unittest(module, verbose=False, tests=(), profile=False):
test_suite = unittest.TestSuite()
module_test_cases = unittest.TestLoader().loadTestsFromModule(module)
@@ -154,6 +161,8 @@ def _run_unittest(module, verbose=False, tests=(), profile=False):
pr = cProfile.Profile()
pr.enable()

frappe.flags.tests_verbose = verbose

out = unittest_runner(verbosity=1+(verbose and 1 or 0)).run(test_suite)

if profile:
@@ -181,7 +190,7 @@ def _add_test(app, path, filename, verbose, test_suite=None, ui_tests=False):
module_name = '{app}.{relative_path}.{module_name}'.format(app=app,
relative_path=relative_path.replace('/', '.'), module_name=filename[:-3])

module = frappe.get_module(module_name)
module = importlib.import_module(module_name)
is_ui_test = True if hasattr(module, 'TestDriver') else False

if is_ui_test != ui_tests:


+ 17
- 0
frappe/tests/test_domainification.py Datei anzeigen

@@ -134,3 +134,20 @@ class TestDomainification(unittest.TestCase):
doctypes = [icon.get("_doctype") for icon in icons if icon.get("_doctype") == "Test Domainification" \
and icon.get("blocked") == 0]
self.assertFalse("Test Domainification" in doctypes)

def test_module_def_for_domainification(self):
""" modules should be hidden if module def's restrict to domain is not in active domains"""

test_module_def = frappe.get_doc("Module Def", "Contacts")
test_module_def.restrict_to_domain = "_Test Domain 2"
test_module_def.save()

self.add_active_domain("_Test Domain 2")

modules = frappe.get_active_modules()
self.assertTrue("Contacts" in modules)

# doctype should be hidden from the desk
self.remove_from_active_domains("_Test Domain 2")
modules = frappe.get_active_modules()
self.assertTrue("Test Module" not in modules)

+ 34
- 0
frappe/tests/test_goal.py Datei anzeigen

@@ -0,0 +1,34 @@
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
# MIT License. See license.txt

from __future__ import unicode_literals
import unittest
import frappe

from frappe.utils.goal import get_monthly_results, get_monthly_goal_graph_data
from frappe.test_runner import make_test_objects
import frappe.utils

class TestGoal(unittest.TestCase):
def setUp(self):
make_test_objects('Event', reset=True)

def tearDown(self):
frappe.db.sql('delete from `tabEvent`')
# make_test_objects('Event', reset=True)
frappe.db.commit()

def test_get_monthly_results(self):
'''Test monthly aggregation values of a field'''
result_dict = get_monthly_results('Event', 'subject', 'creation', 'event_type="Private"', 'count')

from frappe.utils import today, formatdate
self.assertEquals(result_dict[formatdate(today(), "MM-yyyy")], 2)

def test_get_monthly_goal_graph_data(self):
'''Test for accurate values in graph data (based on test_get_monthly_results)'''
docname = frappe.get_list('Event', filters = {"subject": ["=", "_Test Event 1"]})[0]["name"]
frappe.db.set_value('Event', docname, 'description', 1)
data = get_monthly_goal_graph_data('Test', 'Event', docname, 'description', 'description', 'description',
'Event', '', 'description', 'creation', 'starts_on = "2014-01-01"', 'count')
self.assertEquals(float(data['y_values'][-1]), 1)

frappe/tests/ui/test_gantt_view.js → frappe/tests/ui/_test_gantt_view.js Datei anzeigen

@@ -6,16 +6,19 @@ QUnit.test("Gantt View Tests", function(assert) {
let random_text = frappe.utils.get_random(10);
let start_date = frappe.datetime.get_today()+" 16:20:35"; // arbitrary value taken to prevent cases like 12a for 12:00am and 12h to 24h conversion
let end_date = frappe.datetime.get_today()+" 18:30:45"; //arbitrary value taken to prevent cases like 12a for 12:00am and 12h to 24h conversion
let event_id = () => {
let event_id = (text) => {
// Method to acquire the ID of the event created. This is needed to redirect to the event page
let event_label = $('.bar-label').text();
let init = event_label.indexOf('(');
let fin = event_label.indexOf(')');
return (event_label.substr(init+1,fin-init-1));
$('.bar-label').each(function() {
if ($(this).text().includes(text)){
let init = $(this).text().indexOf('(');
let fin = $(this).text().indexOf(')');
return ($(this).text().substr(init+1,fin-init-1));
}
});
};
let event_title_text = (text) => {
let event_title_text = () => {
// Method to check the name of the event created. This is needed to verify the creation and deletion of the event
return $('#bar > g > g.bar-group > text:visible').text().includes(text);
return $('#bar > g > g.bar-group > text:visible').text();
};

frappe.run_serially([
@@ -31,22 +34,26 @@ QUnit.test("Gantt View Tests", function(assert) {

// Check if event is created
() => frappe.set_route(["List", "Event", "Gantt"]),
() => assert.ok( event_title_text(random_text) ),
() => frappe.tests.click_page_head_item("Refresh"),
() => frappe.timeout(1),
() => assert.ok(event_title_text().includes(random_text), "Event title verified"),

// Delete event
() => frappe.set_route(["List", "Event", "Gantt"]),
() => frappe.timeout(0.3),
() => frappe.timeout(1),
// Redirect to the event page to delete the event
() => frappe.set_route(["Form", "Event", event_id()]),
() => frappe.set_route(["Form", "Event", event_id(random_text)]),
() => frappe.tests.click_page_head_item('Menu'),
() => frappe.tests.click_dropdown_item('Delete'),
() => frappe.tests.click_page_head_item('Yes'),
() => frappe.timeout(0.3),
() => frappe.timeout(1),
() => frappe.set_route(["List", "Event", "Gantt"]),
() => frappe.timeout(0.3),
() => frappe.timeout(1),

// Check if event is deleted
() => assert.ok( event_title_text("") ),
() => frappe.tests.click_page_head_item("Refresh"),
() => frappe.timeout(1),
() => assert.notOk(event_title_text().includes(random_text), "Event deleted"),

() => done()
]);

+ 56
- 0
frappe/tests/ui/_test_print_format_builder.js Datei anzeigen

@@ -0,0 +1,56 @@
QUnit.module('views');

QUnit.only("Print Format Builder", function(assert) {
assert.expect(0);
let random_text = frappe.utils.get_random(10);
let done = assert.async();
let click_custoize = () => {
return $(`.btn-print-edit`).click();
};

frappe.run_serially([
() => frappe.set_route(["List", "ToDo", "List"]),
() => frappe.timeout(0.3),

() => frappe.new_doc('ToDo'),
() => frappe.quick_entry.dialog.set_value('description', random_text),
() => frappe.quick_entry.insert(),
() => frappe.timeout(0.5),

() => frappe.tests.click_page_head_item('Refresh'),
() => frappe.timeout(0.3),
() => frappe.tests.click_generic_text(random_text),
() => frappe.tests.click_print_logo(),

() => click_custoize(),
() => frappe.timeout(1),
() => $(`div.control-input > input:visible`).val('custom_todo'),
() => frappe.timeout(0.3),

() => frappe.tests.click_generic_text('Start', 'button'),
() => frappe.timeout(1),

() => frappe.tests.click_page_head_item('Save'),

() => frappe.tests.click_generic_text('Edit Properties', 'button'),
() => frappe.tests.click_page_head_item('Menu'),
() => frappe.tests.click_dropdown_item('Delete'),
() => frappe.tests.click_page_head_item('Yes'),
() => frappe.timeout(1),

() => frappe.set_route(["List", "ToDo", "List"]),
() => frappe.timeout(0.3),
() => frappe.tests.click_generic_text(random_text),
() => frappe.tests.click_page_head_item('Menu'),
() => frappe.tests.click_dropdown_item('Delete'),
() => frappe.tests.click_page_head_item('Yes'),

() => frappe.timeout(2),

() => done()
]);
});


// when you do a pull, hopefully after a merge ... make sure edit the options method in global_search

+ 16
- 0
frappe/tests/ui/data/test_data_for_views.js Datei anzeigen

@@ -0,0 +1,16 @@
$.extend(frappe.test_data, {
'User': {
'user1@mail.com': [
{first_name: 'User 1'},
{email: 'user1@mail.com'},
{send_welcome_email: 0}
]
},
'Kanban Board': {
'kanban 1': [
{kanban_board_name: 'kanban 1'},
{reference_doctype: 'ToDo'},
{field_name: 'status'}
]
}
});

frappe/tests/ui/test_lib.js → frappe/tests/ui/data/test_lib.js Datei anzeigen

@@ -8,8 +8,14 @@ frappe.tests = {
() => frappe.set_route('List', doctype),
() => frappe.new_doc(doctype),
() => {
let frm = frappe.quick_entry ? frappe.quick_entry.dialog : cur_frm;
return frappe.tests.set_form_values(frm, data);
if (frappe.quick_entry)
{
frappe.quick_entry.dialog.$wrapper.find('.edit-full').click();
return frappe.timeout(1);
}
},
() => {
return frappe.tests.set_form_values(cur_frm, data);
},
() => frappe.timeout(1),
() => (frappe.quick_entry ? frappe.quick_entry.insert() : cur_frm.save())
@@ -67,8 +73,10 @@ frappe.tests = {
return frappe.run_serially(grid_row_tasks);
},
setup_doctype: (doctype) => {
return frappe.set_route('List', doctype)
.then(() => {
return frappe.run_serially([
() => frappe.set_route('List', doctype),
() => frappe.timeout(1),
() => {
frappe.tests.data[doctype] = [];
let expected = frappe.tests.get_fixture_names(doctype);
cur_list.data.forEach((d) => {
@@ -88,78 +96,139 @@ frappe.tests = {
});

return frappe.run_serially(tasks);
});
}]);
},
click_and_wait: (button, obj=0.1) => {
return frappe.run_serially([
() => {
//check if obj value is passed
if (obj == 0.1)
$(button).click();
else
$(button)[obj].click();
},
() => frappe.timeout(0.5)
]);
},
create_todo: (todo_needed) => {
let status_list = ['Closed', 'Open'];
let priority_list = ['Low', 'Medium', 'High'];
let date_list = ['2017-05-05', '2017-06-06', '2017-07-07', '2017-08-08'];
let owner_list = ['Administrator', 'user1@mail.com'];
let i;
let num_of_todo;
let tasks = [];

return frappe.run_serially([
() => frappe.set_route('List', 'ToDo', 'List'),
() => {
//remove todo filters
for (i=1; i<=5; i++)
$('.col-md-2:nth-child('+i+') .input-sm').val('');
},
() => cur_list.page.btn_secondary.click(),
() => frappe.timeout(0.5),
() => num_of_todo = cur_list.data.length,//todo present
() => {
if (num_of_todo < todo_needed)
{
for (i=0; i<(todo_needed-num_of_todo); i+=1)
{
tasks.push(() => frappe.tests.make("ToDo", [
{description: 'ToDo for testing'},
{status: status_list[i%2]},
{priority: priority_list[i%3]},
{date: date_list[i%4]},
{owner: owner_list[i%2]}
]));
tasks.push(() => i+=1);
}
i=0;
}
},
() => frappe.run_serially(tasks)
]);
},
click_page_head_item: (text) => {
// Method to items present on the page header like New, Save, Delete etc.
// Method to items present on the page header like New, Save, Delete etc.
let possible_texts = ["New", "Delete", "Save", "Yes"];
return frappe.run_serially([
() => {
if (text == "Menu"){
$("span.menu-btn-group-label:contains('Menu'):visible").click();
$(`span.menu-btn-group-label:contains('Menu'):visible`).click();
} else if (text == "Refresh") {
$(".btn-secondary:contains('Refresh'):visible").click();
$(`.btn-secondary:contains('Refresh'):visible`).click();
} else if (possible_texts.includes(text)) {
$(".btn-primary:contains("+text+"):visible").click();
$(`.btn-primary:contains("${text}"):visible`).click();
}
},
() => frappe.timeout(0.3)
() => frappe.timeout(1)
]);
},
click_dropdown_item: (text) => {
// Method to click dropdown elements
// Method to click dropdown elements
return frappe.run_serially([
() => {
let li = $(".dropdown-menu li:contains("+text+"):visible").get(0);
$(li).find('a')[0].click();
let li = $(`.dropdown-menu li:contains("${text}"):visible`).get(0);
$(li).find(`a`)[0].click();
},
() => frappe.timeout(0.3)
() => frappe.timeout(1)
]);
},
click_navbar_item: (text) => {
// Method to click an elements present on the navbar
// Method to click an elements present on the navbar
return frappe.run_serially([
() => {
if (text == "Help"){
$(".dropdown-help .dropdown-toggle:visible").click();
$(`.dropdown-help .dropdown-toggle:visible`).click();
}
else if (text == "navbar_user"){
$(".dropdown-navbar-user .dropdown-toggle:visible").click();
$(`.dropdown-navbar-user .dropdown-toggle:visible`).click();
}
else if (text == "Notification"){
$(".navbar-new-comments").click();
$(`.navbar-new-comments`).click();
}
else if (text == "Home"){
$(".navbar-home:contains('Home'):visible")[0].click();
$(`.navbar-home:contains('Home'):visible`)[0].click();
}
},
() => frappe.timeout(0.3)
() => frappe.timeout(1)
]);
},
click_generic_text: (text, tag='a') => {
// Method to click an element by its name
// Method to click an element by its name
return frappe.run_serially([
() => $(tag+":contains("+text+"):visible")[0].click(),
() => frappe.timeout(0.3)
() => $(`${tag}:contains("${text}"):visible`)[0].click(),
() => frappe.timeout(1)
]);
},
click_desktop_icon: (text) => {
// Method to click the desktop icons on the Desk, by their name
// Method to click the desktop icons on the Desk, by their name
return frappe.run_serially([
() => $("#icon-grid > div > div.app-icon[title="+text+"]").click(),
() => frappe.timeout(0.3)
() => frappe.timeout(1)
]);
},
is_visible: (text, tag='a') => {
// Method to check the visibility of an element
return $(tag+":contains("+text+")").is(':visible');
return $(`${tag}:contains("${text}")`).is(`:visible`);
},
close_modal: () => {
// Close the modal on the screen
$(`a.close`).click();
},
click_print_logo: () => {
return frappe.run_serially([
() => $(`.fa-print`).click(),
() => frappe.timeout(1)
]);
},
click_button: function(text) {
$(`.btn:contains("${text}"):visible`).click();
return frappe.timeout(0.3);
return frappe.timeout(1);
},
click_link: function(text) {
$(`a:contains("${text}"):visible`).click();
return frappe.timeout(0.3);
return frappe.timeout(1);
}
};
};

+ 44
- 0
frappe/tests/ui/global_search/_test_list_document.js Datei anzeigen

@@ -0,0 +1,44 @@
QUnit.module('views');

QUnit.test("List a document type", function(assert) {
assert.expect(2);
let done = assert.async();
let option_number=0;
let awesome_search = $('#navbar-search').get(0);
let options = () => {
// Method to return the available options after search
return $('body > div.main-section > header > div > div > div.hidden-xs > form > div > div > ul > li').each(function (){});
};

frappe.run_serially([
// Goto Home using button click to check if its working
() => frappe.set_route(),
() => frappe.timeout(1),

() => $('#navbar-search').focus(),
() => $('#navbar-search').val('customer'),
() => $('#navbar-search').focus(),
() => frappe.timeout(1),
() => {
assert.ok(frappe.tests.is_visible("Search for 'customer'"), "'Search for 'customer'' is visible!");
if (frappe.tests.is_visible("Search for 'customer'")){
let search_options = options();
// Iterate over all available options till you reach "Search for 'customer'""
for (option_number=0; option_number<search_options.length; option_number++)
if ($(search_options[option_number]).text().includes("Search for 'customer'"))
break;
}
},
// Highlight the "Search for 'customer'" option
() => awesome_search.awesomplete.goto(option_number),
// Click the highlighted option
() => awesome_search.awesomplete.select(),
() => frappe.timeout(1),
// Verify if the modal is correct
() => assert.ok(frappe.tests.is_visible('Customer will have a table tabCustomer associated with it', 'p'), "Correct modal for 'customer' was called"),
() => frappe.timeout(1),
() => frappe.tests.close_modal(),

() => done()
]);
});

+ 64
- 0
frappe/tests/ui/global_search/_test_math.js Datei anzeigen

@@ -0,0 +1,64 @@
QUnit.module('views');

QUnit.test("Math Calculations", function(assert) {
assert.expect(5);
let done = assert.async();
let awesome_search = $('#navbar-search').get(0);
let random_number_1 = (Math.random()*100).toFixed(2);
let random_number_2 = (Math.random()*100).toFixed(2);
let operations = ['+', '-', '/', '*'];

frappe.run_serially([
// Goto Home using button click to check if its working
() => frappe.set_route(),
() => frappe.timeout(1),

() => $('#navbar-search').focus(),
() => $('#navbar-search').val(random_number_1+operations[0]+random_number_2),
() => $('#navbar-search').focus(),
() => frappe.timeout(1),
() => {
let num_str = random_number_1+operations[0]+random_number_2+' = '+parseFloat(parseFloat(random_number_1)+parseFloat(random_number_2));
assert.ok(frappe.tests.is_visible(num_str), "Math operation '"+operations[0]+"' is correct");
},

() => $('#navbar-search').focus(),
() => $('#navbar-search').val(random_number_1+operations[1]+random_number_2),
() => $('#navbar-search').focus(),
() => frappe.timeout(1),
() => {
let num_str = random_number_1+operations[1]+random_number_2+' = '+parseFloat(parseFloat(random_number_1)-parseFloat(random_number_2));
assert.ok(frappe.tests.is_visible(num_str), "Math operation '"+operations[1]+"' is correct");
},

() => $('#navbar-search').focus(),
() => $('#navbar-search').val(random_number_1+operations[2]+random_number_2),
() => $('#navbar-search').focus(),
() => frappe.timeout(1),
() => {
let num_str = random_number_1+operations[2]+random_number_2+' = '+parseFloat(parseFloat(random_number_1)/parseFloat(random_number_2));
assert.ok(frappe.tests.is_visible(num_str), "Math operation '"+operations[2]+"' is correct");
},

() => $('#navbar-search').focus(),
() => $('#navbar-search').val(random_number_1+operations[3]+random_number_2),
() => $('#navbar-search').focus(),
() => frappe.timeout(1),
() => {
let num_str = random_number_1+operations[3]+random_number_2+' = '+parseFloat(parseFloat(random_number_1)*parseFloat(random_number_2));
assert.ok(frappe.tests.is_visible(num_str), "Math operation '"+operations[3]+"' is correct");
},

() => $('#navbar-search').focus(),
() => $('#navbar-search').val("=Math.sin(Math.PI/2)"),
() => $('#navbar-search').focus(),
() => frappe.timeout(1),
() => assert.ok(frappe.tests.is_visible("Math.sin(Math.PI/2) = 1"), "Math operation 'sin' evaluated correctly"),

// Close the modal
() => awesome_search.awesomplete.select(),
() => frappe.tests.close_modal(),

() => done()
]);
});

+ 55
- 0
frappe/tests/ui/global_search/_test_new_record.js Datei anzeigen

@@ -0,0 +1,55 @@
QUnit.module('views');

QUnit.test("Make a new record", function(assert) {
assert.expect(3);
let done = assert.async();
let option_number=0;
let awesome_search = $('#navbar-search').get(0);
let random_text = frappe.utils.get_random(10);
let options = () => {
// Method to return the available options after search
return $('body > div.main-section > header > div > div > div.hidden-xs > form > div > div > ul > li').each(function (){});
};
let todo_title_text = () => {
// Method to return the title of the todo visible
return $("div.list-item__content.ellipsis.list-item__content--flex-2 > a:visible").text();
};

frappe.run_serially([
// Goto Home using button click to check if its working
() => frappe.set_route(),
() => frappe.timeout(1),

() => $('#navbar-search').focus(),
() => $('#navbar-search').val('ToDo'),
() => $('#navbar-search').focus(),
() => frappe.timeout(1),
() => {
assert.ok(frappe.tests.is_visible('New ToDo'), "'New ToDo' is visible!");
if (frappe.tests.is_visible('New ToDo')){
let search_options = options();
// Iterate over all available options till you reach 'New ToDo'
for (option_number=0; option_number<search_options.length; option_number++)
if ($(search_options[option_number]).text().includes('New ToDo'))
break;
}
},
// Highlight the 'New ToDo' option
() => awesome_search.awesomplete.goto(option_number),
// Click the highlighted option
() => awesome_search.awesomplete.select(),
() => frappe.timeout(1),
() => frappe.quick_entry.dialog.set_value('description', random_text),
() => frappe.quick_entry.insert(),
() => frappe.timeout(1),
() => frappe.set_route(["List", "ToDo", "List"]),
() => frappe.timeout(1),
// Verify if the todo is created
() => frappe.tests.click_page_head_item("Refresh"),
() => frappe.timeout(1),
() => assert.ok(todo_title_text().includes(random_text), "New ToDo was created successfully"),
() => assert.deepEqual(["List", "ToDo", "List"], frappe.get_route(), "Successfully routed to 'ToDo List'"),

() => done()
]);
});

+ 42
- 0
frappe/tests/ui/global_search/_test_open_module.js Datei anzeigen

@@ -0,0 +1,42 @@
QUnit.module('views');

QUnit.test("Open a module or tool", function(assert) {
assert.expect(2);
let done = assert.async();
let option_number=0;
let awesome_search = $('#navbar-search').get(0);
let options = () => {
// Method to return the available options after search
return $('body > div.main-section > header > div > div > div.hidden-xs > form > div > div > ul > li').each(function (){});
};

frappe.run_serially([
// Goto Home using button click to check if its working
() => frappe.set_route(),
() => frappe.timeout(1),

() => $('#navbar-search').focus(),
() => $('#navbar-search').val('ToDo'),
() => $('#navbar-search').focus(),
() => frappe.timeout(1),
() => {
assert.ok(frappe.tests.is_visible('ToDo List'), "'ToDo List' is visible!");
if (frappe.tests.is_visible('ToDo List')){
let search_options = options();
// Iterate over all available options till you reach 'ToDo List'
for (option_number=0; option_number<search_options.length; option_number++)
if ($(search_options[option_number]).text().includes('ToDo List'))
break;
}
},
// Highlight the 'ToDo List' option
() => awesome_search.awesomplete.goto(option_number),
// Click the highlighted option
() => awesome_search.awesomplete.select(),
() => frappe.timeout(1),
// Verify if the redirected route is correct
() => assert.deepEqual(["List", "ToDo", "List"], frappe.get_route(), "Successfully routed to 'ToDo List'"),

() => done()
]);
});

+ 88
- 0
frappe/tests/ui/global_search/_test_search_document.js Datei anzeigen

@@ -0,0 +1,88 @@
QUnit.module('views');

QUnit.test("Search in a document type", function(assert) {
assert.expect(3);
let done = assert.async();
let option_number=0;
let awesome_search = $('#navbar-search').get(0);
let random_text = "argo1234";
let options = () => {
// Method to return the available options after search
return $('body > div.main-section > header > div > div > div.hidden-xs > form > div > div > ul > li').each(function (){});
};
let todo_title_text = () => {
// Method to return the title of the todo visible
return $("div.list-item__content.ellipsis.list-item__content--flex-2 > a:visible").text();
};
let select_all_todo = () => {
$('div.list-item__content.ellipsis.text-muted.list-item__content--flex-2 > input:visible').click();
};
let remove_all_filters = () => {
$('button.remove-filter > i').click();
};

frappe.run_serially([
// Goto Home using button click to check if its working
() => frappe.set_route(),
() => frappe.timeout(1),

() => $('#navbar-search').focus(),
() => $('#navbar-search').val('ToDo'),
() => $('#navbar-search').focus(),
() => frappe.timeout(1),
() => {
assert.ok(frappe.tests.is_visible('New ToDo'), "'New ToDo' is visible!");
if (frappe.tests.is_visible('New ToDo')){
let search_options = options();
// Iterate over all available options till you reach 'New ToDo'
for (option_number=0; option_number<search_options.length; option_number++)
if ($(search_options[option_number]).text().includes('New ToDo'))
break;
}
},
// Highlight the 'New ToDo' option
() => awesome_search.awesomplete.goto(option_number),
// Click the highlighted option
() => awesome_search.awesomplete.select(),
() => frappe.timeout(1),
() => frappe.quick_entry.dialog.set_value('description', random_text),
() => frappe.quick_entry.insert(),
() => frappe.timeout(1),

// Search for the created ToDo in global search
() => frappe.set_route(["List", "ToDo", "List"]),
() => frappe.timeout(1),
() => $('#navbar-search').focus(),
() => $('#navbar-search').val('argo1234'),
() => $('#navbar-search').focus(),
() => frappe.timeout(1),
() => {
assert.ok(frappe.tests.is_visible('Find argo1234 in ToDo'), "'Find argo1234 in ToDo' is visible!");
if (frappe.tests.is_visible('Find argo1234 in ToDo')){
let search_options = options();
// Iterate over all available options till you reach 'New ToDo'
for (option_number=0; option_number<search_options.length; option_number++)
if ($(search_options[option_number]).text().includes('Find argo1234 in ToDo'))
break;
}
},
// Highlight the 'Find argo1234 in ToDo' option
() => awesome_search.awesomplete.goto(option_number),
// Click the highlighted option
() => awesome_search.awesomplete.select(),
() => frappe.timeout(1),
// Verify if the 'argo1234' is the only ToDo
() => assert.ok(todo_title_text().includes('argo1234'), "'argo1234' is the only visible ToDo"),

// Remove all filters
() => remove_all_filters(),
() => frappe.timeout(1),
// Delete all ToDo
() => select_all_todo(),
() => frappe.timeout(1),
() => frappe.tests.click_page_head_item('Delete'),
() => frappe.tests.click_page_head_item('Yes'),

() => done()
]);
});

+ 49
- 62
frappe/tests/ui/test_calendar_view.js Datei anzeigen

@@ -1,94 +1,81 @@
QUnit.module('views');

QUnit.test("Calendar View Tests", function(assert) {
assert.expect(7);
assert.expect(4);
let done = assert.async();
let random_text = frappe.utils.get_random(10);
let random_text = frappe.utils.get_random(3);
let today = frappe.datetime.get_today()+" 16:20:35"; //arbitrary value taken to prevent cases like 12a for 12:00am and 12h to 24h conversion
let visible_time = () => {
// Method to return the start-time (hours) of the event visible
return $('.fc-time').text().split('p')[0]; // 'p' because the arbitrary time is pm
// Method to return the start-time (hours) of the event visible
return $('.fc-time').text().split('p')[0]; // 'p' because the arbitrary time is pm
};
// let visible_hours = () => {
// // Method to return the start-time (hours) of the event visible
// return $('.fc-time').text().split(':')[0].replace(/\D+/g, '');
// };
// let visible_minutes = () => {
// // Method to return the start-time (minutes) of the event visible
// return $('.fc-time').text().split(':')[1].replace(/\D+/g, '');
// };
let event_title_text = () => {
// Method to return the title of the event visible
// Method to return the title of the event visible
return $('.fc-title:visible').text();
};

frappe.run_serially([
// Create an event using the frappe API
// create 2 events, one private, one public
() => frappe.tests.make("Event", [
{subject: random_text},
{subject: random_text + ':Pri'},
{starts_on: today},
{event_type: 'Private'}
]),

() => frappe.tests.make("Event", [
{subject: random_text + ':Pub'},
{starts_on: today},
{event_type: 'Public'}
]),

// Goto Calendar view
() => frappe.set_route(["List", "Event", "Calendar"]),
() => {
// clear filter
$('[data-fieldname="event_type"]').val('').trigger('change');
},
() => frappe.timeout(2),
// Check if event is created
() => {
// Check if the event exists and if its title matches with the one created
assert.equal(event_title_text(), random_text);
assert.ok(event_title_text().includes(random_text + ':Pri'),
"Event title verified");
// Check if time of event created is correct
// assert.equal(visible_hours(), 4);
// assert.equal(visible_minutes(), 20);
assert.equal(visible_time(), "4:20");
assert.ok(visible_time().includes("4:20"),
"Event start time verified");
},

// check filter
() => {
$('[data-fieldname="event_type"]').val('Public').trigger('change');
},
() => frappe.timeout(1),
() => {
// private event should be hidden
assert.notOk(event_title_text().includes(random_text + ':Pri'),
"Event title verified");
},

// Delete event
// Delete event
// Goto Calendar view
() => frappe.set_route(["List", "Event", "Calendar"]),
() => frappe.timeout(0.3),
// Open the event to be deleted
() => frappe.tests.click_generic_text(random_text),
() => frappe.tests.click_page_head_item('Menu'),
() => frappe.tests.click_dropdown_item('Delete'),
() => frappe.tests.click_page_head_item('Yes'),
() => frappe.timeout(4),
// Goto Calendar View
() => frappe.set_route(["List", "Event", "Calendar"]),
() => frappe.timeout(0.3),

// Check if all menu items redirect to correct locations
// Check if clicking on 'Import' redirects you to ["data-import-tool"]
() => frappe.tests.click_page_head_item('Menu'),
() => frappe.tests.click_dropdown_item('Import'),
() => assert.deepEqual(["data-import-tool"], frappe.get_route()),
() => window.history.back(),
() => frappe.timeout(0.5),
// Check if clicking on 'User Permissions Manager' redirects you to ["user-permissions"]
() => frappe.tests.click_page_head_item('Menu'),
() => frappe.tests.click_dropdown_item('User Permissions Manager'),
() => assert.deepEqual(["user-permissions"], frappe.get_route()),
() => window.history.back(),
() => frappe.timeout(0.5),
// Check if clicking on 'Role Permissions Manager' redirects you to ["permission-manager"]
() => frappe.tests.click_page_head_item('Menu'),
() => frappe.tests.click_dropdown_item('Role Permissions Manager'),
() => assert.deepEqual(["permission-manager"], frappe.get_route()),
() => window.history.back(),
() => frappe.timeout(0.5),
// Check if clicking on 'Customize' redirects you to ["Form", "Customize Form"]
() => frappe.tests.click_page_head_item('Menu'),
() => frappe.tests.click_dropdown_item('Customize'),
() => assert.deepEqual(["Form", "Customize Form"], frappe.get_route()),
() => window.history.back(),
() => frappe.timeout(1),
// delete event
() => frappe.tests.click_generic_text(random_text + ':Pub'),
() => {
frappe.tests.click_page_head_item('Menu');
frappe.tests.click_dropdown_item('Delete');
},
() => frappe.timeout(0.5),
() => frappe.tests.click_button('Yes'),
() => frappe.timeout(2),
() => frappe.set_route(["List", "Event", "Calendar"]),
() => frappe.tests.click_button("Refresh"),
() => frappe.timeout(1),

// Check if event is deleted
() => assert.equal(event_title_text(), ""),

() => assert.notOk(event_title_text().includes(random_text + ':Pub'),
"Event deleted"),
() => done()

]);
});

+ 9
- 9
frappe/tests/ui/test_desktop.js Datei anzeigen

@@ -9,54 +9,54 @@ QUnit.test("Verification of navbar menu links", function(assert) {
frappe.run_serially([
// Goto Desk using button click to check if its working
() => frappe.tests.click_navbar_item('Home'),
() => assert.deepEqual([""], frappe.get_route()),
() => assert.deepEqual([""], frappe.get_route(), "Routed correctly"),

// Click username on the navbar (Adminisrator) and verify visibility of all elements
() => frappe.tests.click_navbar_item('navbar_user'),
() => navbar_user_items.forEach(function(navbar_user_item) {
assert.ok(frappe.tests.is_visible(navbar_user_item));
assert.ok(frappe.tests.is_visible(navbar_user_item), "Visibility of "+navbar_user_item+" verified");
}),

// Click Help and verify visibility of all elements
() => frappe.tests.click_navbar_item('Help'),
() => modal_and_heading.forEach(function(modal) {
assert.ok(frappe.tests.is_visible(modal));
assert.ok(frappe.tests.is_visible(modal), "Visibility of "+modal+" modal verified");
}),

// Goto Desk
() => frappe.tests.click_navbar_item('Home'),
() => frappe.timeout(0.3),
() => frappe.timeout(1),

// Click navbar-username and verify links of all menu items
// Check if clicking on 'Set Desktop Icons' redirects you to the correct page
() => frappe.tests.click_navbar_item('navbar_user'),
() => frappe.tests.click_dropdown_item('Set Desktop Icons'),
() => assert.deepEqual(["modules_setup"], frappe.get_route()),
() => assert.deepEqual(["modules_setup"], frappe.get_route(), "Routed to 'modules_setup' by clicking on 'Set Desktop Icons'"),
() => frappe.tests.click_navbar_item('Home'),
// Check if clicking on 'My Settings' redirects you to the correct page
() => frappe.tests.click_navbar_item('navbar_user'),
() => frappe.tests.click_dropdown_item('My Settings'),
() => assert.deepEqual(["Form", "User", "Administrator"], frappe.get_route()),
() => assert.deepEqual(["Form", "User", "Administrator"], frappe.get_route(), "Routed to 'Form, User, Administrator' by clicking on 'My Settings'"),
() => frappe.tests.click_navbar_item('Home'),
// Check if clicking on 'Background Jobs' redirects you to the correct page
() => frappe.tests.click_navbar_item('navbar_user'),
() => frappe.tests.click_dropdown_item('Background Jobs'),
() => assert.deepEqual(["background_jobs"], frappe.get_route()),
() => assert.deepEqual(["background_jobs"], frappe.get_route(), "Routed to 'background_jobs' by clicking on 'Background Jobs'"),
() => frappe.tests.click_navbar_item('Home'),

// Click Help and check both modals
// Check if clicking 'Documentation' opens the right modal
() => frappe.tests.click_navbar_item('Help'),
() => frappe.tests.click_dropdown_item('Documentation'),
() => assert.ok(frappe.tests.is_visible('Documentation', 'span')),
() => assert.ok(frappe.tests.is_visible('Documentation', 'span'), "Documentation modal popped"),
() => frappe.tests.click_generic_text('Close', 'button'),
// Check if clicking 'About' opens the right modal
() => frappe.tests.click_navbar_item('Help'),
() => frappe.tests.click_dropdown_item('About'),
() => assert.ok(frappe.tests.is_visible('Frappe Framework', 'div')),
() => assert.ok(frappe.tests.is_visible('Frappe Framework', 'div'), "Frappe Framework[About] modal popped"),
() => frappe.tests.click_generic_text('Close', 'button'),

() => done()


+ 16
- 0
frappe/tests/ui/test_list/_test_list_values.js Datei anzeigen

@@ -0,0 +1,16 @@
QUnit.module('views');

QUnit.test("Test list values", function(assert) {
assert.expect(2);
let done = assert.async();

frappe.run_serially([
() => frappe.set_route('List', 'DocType'),
() => frappe.timeout(2),
() => {
assert.deepEqual(['List', 'DocType', 'List'], frappe.get_route(), "Routed to DocType List");
assert.ok($('.list-item:visible').length > 10, "More than 10 items visible in DocType List");
},
() => done()
]);
});

frappe/tests/ui/test_list.js → frappe/tests/ui/test_list/_test_quick_entry.js Datei anzeigen

@@ -1,6 +1,6 @@
QUnit.module('views');

QUnit.test("Test quick entry", function(assert) {
QUnit.only("Test quick entry", function(assert) {
assert.expect(2);
let done = assert.async();
let random_text = frappe.utils.get_random(10);
@@ -11,27 +11,17 @@ QUnit.test("Test quick entry", function(assert) {
() => frappe.quick_entry.dialog.set_value('description', random_text),
() => frappe.quick_entry.insert(),
(doc) => {
assert.ok(doc && !doc.__islocal);
assert.ok(doc && !doc.__islocal, "Document exists");
return frappe.set_route('Form', 'ToDo', doc.name);
},
() => assert.ok(cur_frm.doc.description.includes(random_text)),
() => assert.ok(cur_frm.doc.description.includes(random_text), "ToDo created"),

// Delete the created ToDo
() => frappe.tests.click_page_head_item('Menu'),
() => frappe.tests.click_dropdown_item('Delete'),
() => frappe.tests.click_page_head_item('Yes'),
() => frappe.timeout(2),

() => done()
]);
});

QUnit.test("Test list values", function(assert) {
assert.expect(2);
let done = assert.async();
frappe.set_route('List', 'DocType')
.then(() => {
assert.deepEqual(['List', 'DocType', 'List'], frappe.get_route());
assert.ok($('.list-item:visible').length > 10);
done();
});
});
});

+ 62
- 0
frappe/tests/ui/test_list_delete.js Datei anzeigen

@@ -0,0 +1,62 @@
QUnit.module('views');

QUnit.test("Test deletion of one list element", function(assert) {
assert.expect(3);
let done = assert.async();
let count;
let random;

frappe.run_serially([
() => frappe.tests.setup_doctype('User'),
() => frappe.tests.create_todo(2),
() => frappe.set_route('List', 'ToDo', 'List'),
() => frappe.timeout(0.5),
() => {
assert.deepEqual(['List', 'ToDo', 'List'], frappe.get_route(), "List opened successfully.");
//total list elements
count = cur_list.data.length;
random = Math.floor(Math.random() * (count) + 1);
//select one element randomly
$('div:nth-child('+random+')>div>div>.list-row-checkbox').click();
},
() => cur_list.page.btn_primary.click(),
() => frappe.timeout(0.5),
() => {
//check if asking for confirmation and click yes
assert.equal("Confirm", cur_dialog.title, "Asking for confirmation.");
cur_dialog.primary_action(frappe.confirm);
},
() => frappe.timeout(1),
//check if total elements decreased by one
() => assert.equal(cur_list.data.length, (count-1), "Only one element is deleted."),
() => done()
]);
});

QUnit.test("Test deletion of all list element", function(assert) {
assert.expect(3);
let done = assert.async();

frappe.run_serially([
() => frappe.tests.setup_doctype('User'),
() => frappe.tests.create_todo(5),
() => frappe.set_route('List', 'ToDo', 'List'),
() => frappe.timeout(0.5),
() => {
assert.deepEqual(['List', 'ToDo', 'List'], frappe.get_route(), "List opened successfully.");
//select all element
$('.list-select-all.hidden-xs').click();
},
() => cur_list.page.btn_primary.click(),
() => frappe.timeout(0.5),
() => {
assert.equal("Confirm", cur_dialog.title, "Asking for confirmation.");
//click yes for deletion
cur_dialog.primary_action(frappe.confirm);
},
() => frappe.timeout(2),
//check zero elements left
() => assert.equal( cur_list.data.length, '0', "No element is present in list."),
() => done()
]);
});

+ 35
- 0
frappe/tests/ui/test_list_filter.js Datei anzeigen

@@ -0,0 +1,35 @@
QUnit.module('views');

QUnit.test("Test filters", function(assert) {
assert.expect(2);
let done = assert.async();

frappe.run_serially([
() => frappe.tests.setup_doctype('User'),
() => frappe.tests.create_todo(6),
() => frappe.set_route('List', 'ToDo', 'List'),
() => frappe.timeout(0.5),
() => {
assert.deepEqual(['List', 'ToDo', 'List'], frappe.get_route(), "List opened successfully.");
//set filter values
$('.col-md-2:nth-child(2) .input-sm').val('Closed');
$('.col-md-2:nth-child(3) .input-sm').val('Low');
$('.col-md-2:nth-child(4) .input-sm').val('05-05-2017');
$('.col-md-2:nth-child(5) .input-sm').val('Administrator');
},
() => frappe.timeout(0.5),
() => cur_list.page.btn_secondary.click(),
() => frappe.timeout(1),
() => {
//get total list element
var count = cur_list.data.length;
//check if all elements are as per filter
var i=0;
for ( ; i < count ; i++)
if ((cur_list.data[i].status!='Closed')||(cur_list.data[i].priority!='Low')||(cur_list.data[i].owner!='Administrator')||(cur_list.data[i].date!='2017-05-05'))
break;
assert.equal(count, i, "Elements present have content according to filters.");
},
() => done()
]);
});

+ 18
- 0
frappe/tests/ui/test_list_paging.js Datei anzeigen

@@ -0,0 +1,18 @@
QUnit.module('views');

QUnit.test("Test paging in list", function(assert) {
assert.expect(3);
let done = assert.async();

frappe.run_serially([
() => frappe.set_route('List', 'DocType'),
() => frappe.timeout(0.5),
() => assert.deepEqual(['List', 'DocType', 'List'], frappe.get_route(), "List opened successfully."),
//check elements less then page length [20 in this case]
() => assert.ok(cur_list.data.length <= cur_list.page_length, "20 or less elements are visible."),
() => frappe.tests.click_and_wait('.btn-sm:contains("100"):visible'),
//check elements less then page length [100 in this case]
() => assert.ok(cur_list.data.length <= cur_list.page_length, "100 or less elements are visible."),
() => done()
]);
});

+ 49
- 12
frappe/tests/ui/test_test_runner.py Datei anzeigen

@@ -1,17 +1,54 @@
from __future__ import print_function
from frappe.utils.selenium_testdriver import TestDriver
import unittest

class TestLogin(unittest.TestCase):
def setUp(self):
self.driver = TestDriver()
import unittest, os, frappe, time

class TestTestRunner(unittest.TestCase):
def test_test_runner(self):
self.driver.login()
self.driver.set_route('Form', 'Test Runner')
self.driver.click_primary_action()
self.driver.wait_for('#qunit-testresult-display', timeout=60)
self.driver.print_console()
for test in get_tests():
print('Running {0}...'.format(test))
frappe.db.set_value('Test Runner', None, 'module_path', test)
frappe.db.commit()
driver = TestDriver()
driver.login()
driver.set_route('Form', 'Test Runner')
driver.click_primary_action()
driver.wait_for('#frappe-qunit-done', timeout=60)
console = driver.get_console()
if frappe.flags.tests_verbose or True:
for line in console:
print(line)
print('-' * 40)
print('Checking if passed "{0}"'.format(test))
self.assertTrue('Tests Passed' in console)
driver.close()
time.sleep(1)

def get_tests():
'''Get tests base on flag'''
if frappe.flags.ui_test_app:
return get_tests_for(frappe.flags.ui_test_app)
elif frappe.flags.ui_test_path:
return (frappe.flags.ui_test_path,)
else:
tests = []
for app in frappe.get_installed_apps():
tests.extend(get_tests_for(app))
return tests

def get_tests_for(app):
'''Get all tests for a particular app'''
tests = []
tests_path = frappe.get_app_path(app, 'tests', 'ui')
if os.path.exists(tests_path):
for basepath, folders, files in os.walk(tests_path): # pylint: disable=unused-variable
if os.path.join('ui', 'data') in basepath:
continue

for fname in files:
if fname.startswith('test') and fname.endswith('.js'):
path = os.path.join(basepath, fname)
path = os.path.relpath(path, frappe.get_app_path(app))
tests.append(os.path.join(app, path))

return tests

def tearDown(self):
self.driver.close()

+ 72
- 64
frappe/translations/am.csv Datei anzeigen

@@ -14,8 +14,9 @@ apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,
DocType: User,Facebook Username,Facebook የተጠቃሚ ስም
DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,ማስታወሻ: በርካታ ክፍለ ጊዜዎች ተንቀሳቃሽ መሣሪያ ሁኔታ ውስጥ የሚፈቀደው ይሆናል
apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},ተጠቃሚ ነቅቷል የኢሜይል ገቢ መልዕክት ሳጥንዎ {ተጠቃሚዎች}
apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,ይህ ኢሜይል መላክ አልተቻለም. በዚህ ወር ለ {0} ኢሜይሎች መላክ ገደብ ተሻገረ ነው.
apps/frappe/frappe/email/queue.py +225,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,ይህ ኢሜይል መላክ አልተቻለም. በዚህ ወር ለ {0} ኢሜይሎች መላክ ገደብ ተሻገረ ነው.
apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,እስከመጨረሻው {0} አስገባ?
apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,የፋይል መጠባበቂያውን አውርድ
DocType: Address,County,ካውንቲ
DocType: Workflow,If Checked workflow status will not override status in list view,ምልክት የተደረገባቸው የስራ ፍሰት ሁኔታ ዝርዝር እይታ ውስጥ ሁኔታ ሊሽሩት ከሆነ
apps/frappe/frappe/client.py +280,Invalid file path: {0},ልክ ያልሆነ የፋይል ዱካ: {0}
@@ -80,10 +81,10 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,ያግኙ
apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,አስተዳዳሪ የወጡ
DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","ወዘተ &quot;የሽያጭ መጠይቅ, ድጋፍ መጠይቅ&quot; እንደ የእውቂያ አማራጮች, አዲስ መስመር ላይ በእያንዳንዱ ወይም በኮማ የተለዩ."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. አውርድ
apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,አስገባ
apps/frappe/frappe/public/js/frappe/form/control.js +1979,Insert,አስገባ
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},ይምረጡ {0}
DocType: Print Settings,Classic,ክላሲክ
DocType: Desktop Icon,Color,ቀለም
DocType: DocField,Color,ቀለም
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +54,For ranges,ሊታዩ
DocType: Workflow State,indent-right,ገብ-ቀኝ
DocType: Has Role,Has Role,ሚና አለው
@@ -100,7 +101,7 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To impor
DocType: DocType,Default Print Format,ነባሪ ማተም ቅርጸት
DocType: Workflow State,Tags,መለያዎች
apps/frappe/frappe/public/js/frappe/form/workflow.js +33,None: End of Workflow,ማናችንም ብንሆን: ፍሰት መጨረሻ
apps/frappe/frappe/model/db_schema.py +346,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","ያልሆኑ ልዩ ነባር እሴቶች አሉ እንደ {0} መስክ, {1} ውስጥ እንደ ልዩ ሊዘጋጅ አይችልም"
apps/frappe/frappe/model/db_schema.py +347,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","ያልሆኑ ልዩ ነባር እሴቶች አሉ እንደ {0} መስክ, {1} ውስጥ እንደ ልዩ ሊዘጋጅ አይችልም"
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +47,Document Types,የሰነድ አይነቶች
DocType: Address,Jammu and Kashmir,ጃሙ እና ካሽሚር
DocType: Workflow,Workflow State Field,የስራ ፍሰት ስቴት መስክ
@@ -231,7 +232,7 @@ DocType: Workflow,Transition Rules,የሽግግር ደንቦች
apps/frappe/frappe/core/doctype/report/report.js +11,Example:,ለምሳሌ:
DocType: Workflow,Defines workflow states and rules for a document.,አንድ ሰነድ የስራ ፍሰት ስቴቶች እና ደንቦች ይገልፃል.
DocType: Workflow State,Filter,ማጣሪያ
apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Fieldname {0} እንደ ልዩ ቁምፊዎችን ሊኖረው አይችልም {1}
apps/frappe/frappe/model/db_schema.py +564,Fieldname {0} cannot have special characters like {1},Fieldname {0} እንደ ልዩ ቁምፊዎችን ሊኖረው አይችልም {1}
apps/frappe/frappe/config/setup.py +121,Update many values at one time.,በአንድ ወቅት ብዙ እሴቶች ያዘምኑ.
apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,ስህተት: እናንተ ከፍተዋል በኋላ ሰነድ ተቀይሯል
apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} ዘግተው የወጡ: {1}
@@ -260,7 +261,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Gravatar.com
apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","የእርስዎ የደንበኝነት ምዝገባ {0} ላይ ጊዜው አልፎበታል. ማደስ, {1}."
DocType: Workflow State,plus-sign,የመደመር-ምልክት
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,ቀደም ሲል ሙሉ በሙሉ ማዋቀር
apps/frappe/frappe/__init__.py +889,App {0} is not installed,የመተግበሪያ {0} አልተጫነም
apps/frappe/frappe/__init__.py +897,App {0} is not installed,የመተግበሪያ {0} አልተጫነም
DocType: Workflow State,Refresh,አዝናና
DocType: Event,Public,ሕዝባዊ
apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,ምንም የሚታይ የለም
@@ -339,7 +340,6 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,አርትዕ HEADING
DocType: File,File URL,ፋይል ዩ አር ኤል
DocType: Version,Table HTML,ማውጫ ኤችቲኤምኤል
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> 'ምንም ውጤቶች አልተገኙም </p>
apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,ተመዝጋቢዎች ያክሉ
apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,ዛሬ ለ መጪ ክስተቶች
DocType: Email Alert Recipient,Email By Document Field,ሰነድ መስክ በ ኢሜይል
@@ -404,7 +404,6 @@ DocType: Desktop Icon,Link,ማያያዣ
apps/frappe/frappe/utils/file_manager.py +96,No file attached,የተያያዘው ምንም ፋይል
DocType: Version,Version,ትርጉም
DocType: User,Fill Screen,ማያ ገጽ ሙላ
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,ውቅረት&gt; ኢሜይል&gt; ኢሜይል መለያ ከ እባክዎ ማዋቀር ነባሪውን የኢሜይል መለያ
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","በጎደለ ውሂብ, ይህ ዛፍ ሪፖርት ለማሳየት አልተቻለም. አብዛኞቹ አይቀርም, ይህን ምክንያት ፍቃዶች አጣርተው ነው."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. የሚከተለውን ይምረጡ-ፋይል
apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,ስቀል በኩል አርትዕ
@@ -474,9 +473,9 @@ DocType: User,Reset Password Key,ዳግም አስጀምር የይለፍ ቁል
DocType: Email Account,Enable Auto Reply,ራስ-መልስ አንቃ
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,አይቼዋለሁ አይደለም
DocType: Workflow State,zoom-in,አቅርብ
apps/frappe/frappe/email/queue.py +219,Unsubscribe from this list,ከዚህ ዝርዝር ምዝገባ ይውጡ
apps/frappe/frappe/email/queue.py +234,Unsubscribe from this list,ከዚህ ዝርዝር ምዝገባ ይውጡ
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Reference DocType and Reference Name are required,ማጣቀሻ DocType እና የማጣቀሻ ስም ያስፈልጋል ነው
apps/frappe/frappe/utils/jinja.py +35,Syntax error in template,አብነት ውስጥ የአገባብ ስህተት
apps/frappe/frappe/utils/jinja.py +51,Syntax error in template,አብነት ውስጥ የአገባብ ስህተት
DocType: DocField,Width,ስፋት
DocType: Email Account,Notify if unreplied,unreplied ከሆነ አሳውቅ
DocType: System Settings,Minimum Password Score,ዝቅተኛ የይለፍ ውጤት
@@ -560,6 +559,7 @@ DocType: Custom Field,Select the label after which you want to insert new field.
DocType: User,Last Login,የመጨረሻው መግቢያ
apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Fieldname ረድፍ ውስጥ ያስፈልጋል {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,አምድ
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,እባክዎ ከቅንብር&gt; ኢሜይል&gt; ኢሜይል መለያ ነባሪ የኢሜይል መለያ ያቀናብሩ
DocType: Custom Field,Adds a custom field to a DocType,አንድ DocType ወደ ብጁ መስክ ያክላል
DocType: File,Is Home Folder,መነሻ አቃፊ ነው
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} ልክ የሆነ የኢሜይል አድራሻ አይደለም
@@ -567,7 +567,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +733,Select atleast 1 reco
apps/frappe/frappe/core/doctype/has_role/has_role.py +13,User '{0}' already has the role '{1}',አባል «{0}» ቀደም ሚና አለው «{1}»
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,ስቀል እና አመሳስል
apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},ጋር ተጋርቷል {0}
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe,ከደንበኝነት
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +132,Unsubscribe,ከደንበኝነት
DocType: Communication,Reference Name,የማጣቀሻ ስም
apps/frappe/frappe/public/js/frappe/toolbar.js +30,Chat Support,የውይይት ድጋፍ
DocType: Error Snapshot,Exception,ያልተለመደ ሁናቴ
@@ -585,7 +585,7 @@ DocType: Email Group,Newsletter Manager,በራሪ ጽሑፍ አቀናባሪ
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,አማራጭ 1
apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} ወደ {1}
apps/frappe/frappe/config/setup.py +89,Log of error during requests.,ጥያቄዎች ወቅት ስህተት ይግቡ.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} በተሳካ ሁኔታ የኢሜይል ቡድን ታክሏል.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +194,{0} has been successfully added to the Email Group.,{0} በተሳካ ሁኔታ የኢሜይል ቡድን ታክሏል.
DocType: Address,Uttar Pradesh,ኡታር ፕራዴሽ
DocType: Address,Pondicherry,Pondicherry
apps/frappe/frappe/public/js/frappe/upload.js +364,Make file(s) private or public?,የግል ወይም የሕዝብ ፋይል (ሎች) ያድርጉት?
@@ -616,7 +616,7 @@ DocType: Portal Settings,Portal Settings,ፖርታል ቅንብሮች
DocType: Web Page,0 is highest,0 ከፍተኛ ነው
apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,እናንተ ወደ {0} ይህን የሐሳብ ልውውጥ ዳግም ያገናኟቸው እንደሚፈልጉ እርግጠኛ ነዎት?
apps/frappe/frappe/www/login.html +104,Send Password,የይለፍ ቃል ላክ
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +45,Attachments,አባሪዎች
DocType: Email Queue,Attachments,አባሪዎች
apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,ይህን ሰነድ ለመዳረስ ፍቃዶች የለዎትም
DocType: Language,Language Name,የቋንቋ ስም
DocType: Email Group Member,Email Group Member,የቡድን አባል ኢሜይል
@@ -646,7 +646,7 @@ apps/frappe/frappe/utils/password_strength.py +78,Try to use a longer keyboard p
DocType: Feedback Trigger,Check Communication,የሐሳብ ይመልከቱ
DocType: Address,Rajasthan,ራጃስታን
apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,ሪፖርት ገንቢ ሪፖርቶች ሪፖርቱ የአናጺ በቀጥታ የሚተዳደሩ ናቸው. ምንም የማደርገው የለም.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,የእርስዎ ኢሜይል አድራሻ ያረጋግጡ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +164,Please verify your Email Address,የእርስዎ ኢሜይል አድራሻ ያረጋግጡ
apps/frappe/frappe/model/document.py +903,none of,ማንም
apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,እኔ አንድ ቅጂ ላክ
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,የተጠቃሚ ፍቃዶችን ይስቀሉ
@@ -657,7 +657,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Si
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban ቦርድ {0} የለም.
apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} በአሁኑ ጊዜ ይህን ሰነዱን እያዩት ነው
DocType: ToDo,Assigned By Full Name,ሙሉ ስም በ ተመድቧል
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} ዘምኗል
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} ዘምኗል
apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,ሪፖርት ነጠላ አይነቶች ሊዘጋጁ አይችሉም
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} ቀናት በፊት
DocType: Email Account,Awaiting Password,በመጠባበቅ ላይ የይለፍ ቃል
@@ -682,7 +682,7 @@ DocType: Workflow State,Stop,ተወ
DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,አንተ መክፈት ይፈልጋሉ ገጽ ጋር አገናኝ. እርስዎ አንድ ቡድን ወላጅ ማድረግ ከፈለጉ ባዶውን ይተዉት.
DocType: DocType,Is Single,ነጠላ ነው?
apps/frappe/frappe/core/doctype/user/user.py +720,Sign Up is disabled,ወደላይ ግባ ተሰናክሏል
apps/frappe/frappe/email/queue.py +278,{0} has left the conversation in {1} {2},{0} ውስጥ ውይይቱን ለቆ ወጥቷል {1} {2}
apps/frappe/frappe/email/queue.py +293,{0} has left the conversation in {1} {2},{0} ውስጥ ውይይቱን ለቆ ወጥቷል {1} {2}
DocType: Blogger,User ID of a Blogger,የ Blogger ተጠቃሚ መታወቂያ
apps/frappe/frappe/core/doctype/user/user.py +287,There should remain at least one System Manager,ቢያንስ አንድ የስርዓት አስተዳዳሪ በዚያ መቆየት አለበት
DocType: GSuite Settings,Authorization Code,ፈቀዳ ኮድ
@@ -728,6 +728,7 @@ DocType: Event,Event,ድርጊት
apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:",{0} ላይ: {1} እንዲህ ሲል ጽፏል:
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,መደበኛ መስክ መሰረዝ አልተቻለም. የሚፈልጉ ከሆነ ይህን መደበቅ ትችላለህ
DocType: Top Bar Item,For top bar,ከላይ አሞሌ ለ
apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,ምትኬ ለመስራት ወረፋ አስይዟል. የአውርድ አገናኝ የያዘ ኢሜይል ይደርሰዎታል
apps/frappe/frappe/utils/bot.py +148,Could not identify {0},መለየት አልተቻለም {0}
DocType: Address,Address,አድራሻ
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +3,Payment Failed,ክፍያ አልተሳካም
@@ -752,13 +753,13 @@ DocType: Web Form,Allow Print,አትም ፍቀድ
apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,ምንም የተጫኑ መተግበሪያዎች
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,እንደ አስገዳጅ በመስክ ላይ ምልክት
DocType: Communication,Clicked,ጠቅ ተደርጓል
apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},ምንም ፈቃድ «{0}» {1}
apps/frappe/frappe/public/js/legacy/form.js +950,No permission to '{0}' {1},ምንም ፈቃድ «{0}» {1}
DocType: User,Google User ID,የ Google ተጠቃሚ መታወቂያ
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,ለመላክ የተያዘለት
DocType: DocType,Track Seen,ትራክ አይቼዋለሁ
apps/frappe/frappe/desk/form/utils.py +55,This method can only be used to create a Comment,ይህ ዘዴ ብቻ አስተያየት ለመፍጠር ጥቅም ላይ ሊውል ይችላል
DocType: Event,orange,ብርቱካናማ
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,No {0} found,ምንም {0} አልተገኙም
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +558,No {0} found,ምንም {0} አልተገኙም
apps/frappe/frappe/config/setup.py +242,Add custom forms.,ብጁ ቅጾች ያክሉ.
apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} ውስጥ ከ {2}
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +419,submitted this document,ይህ ሰነድ ገብቷል
@@ -788,6 +789,7 @@ DocType: Newsletter Email Group,Newsletter Email Group,በራሪ ጽሑፍ ኢ
DocType: Dropbox Settings,Integrations,ውህደቶች
DocType: DocField,Section Break,ክፍል መግቻ
DocType: Address,Warehouse,የዕቃ ቤት
DocType: Address,Other Territory,ሌላ ተሪቶሪ
,Messages,መልዕክቶች
apps/frappe/frappe/desk/page/applications/applications.js +49,Portal,ፖርታል
DocType: Email Account,Use Different Email Login ID,የተለያዩ የኢሜይል መግቢያ መታወቂያ ይጠቀሙ
@@ -818,6 +820,7 @@ apps/frappe/frappe/utils/data.py +556,1 month ago,1 ወር በፊት
DocType: Contact,User ID,የተጠቃሚው መለያ
DocType: Communication,Sent,ተልኳል
DocType: Address,Kerala,በኬረለ
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} ዓመቱ (ዓመታት) በፊት
DocType: File,Lft,Lft
DocType: User,Simultaneous Sessions,በአንድ ላይ ክፍለ ጊዜዎች
DocType: OAuth Client,Client Credentials,የደንበኛ ምስክርነቶች
@@ -834,7 +837,7 @@ DocType: Email Queue,Unsubscribe Method,ከደንበኝነት ዘዴ
DocType: GSuite Templates,Related DocType,ተዛማጅ DocType
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,ይዘት ለማከል አርትዕ
apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,ይምረጡ ቋንቋዎች
apps/frappe/frappe/__init__.py +509,No permission for {0},ምንም ፍቃድ {0}
apps/frappe/frappe/__init__.py +517,No permission for {0},ምንም ፍቃድ {0}
DocType: DocType,Advanced,የላቀ
apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,የኤ ፒ አይ ቁልፍ ይመስላል ወይም ኤ ሚስጥር ስህተት ነው !!!
apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},ማጣቀሻ: {0} {1}
@@ -845,6 +848,7 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P
DocType: Email Account,Yahoo Mail,Yahoo Mail
apps/frappe/frappe/limits.py +75,Your subscription will expire tomorrow.,የእርስዎ የደንበኝነት ምዝገባ ነገ ጊዜው ያልፍበታል.
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +483,Saved!,ተቀምጧል!
apps/frappe/frappe/public/js/frappe/form/control.js +729,{0} is not a valid hex color,{0} ትክክለኛ የሄምፊ ቀለም አይደለም
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,እመቤት
apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},የተዘመነ {0}: {1}
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,ባለቤት
@@ -872,7 +876,7 @@ DocType: Report,Disabled,ተሰናክሏል
DocType: Workflow State,eye-close,ዓይን-ዝጋ
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth አቅራቢ ቅንብሮች
apps/frappe/frappe/config/setup.py +254,Applications,መተግበሪያዎች
apps/frappe/frappe/public/js/frappe/request.js +347,Report this issue,ይህን ችግር ሪፖርት አድርግ
apps/frappe/frappe/public/js/frappe/request.js +349,Report this issue,ይህን ችግር ሪፖርት አድርግ
apps/frappe/frappe/public/js/frappe/form/save.js +79,Name is required,ስም ያስፈልጋል
DocType: Custom Script,Adds a custom script (client or server) to a DocType,አንድ DocType ወደ ብጁ ስክሪፕት (ደንበኛ ወይም አገልጋይ) ያክላል
DocType: Address,City/Town,ከተማ / መለስተኛ ከተማ
@@ -966,6 +970,7 @@ DocType: Currency,**Currency** Master,** ምንዛሬ ** መምህር
DocType: Email Account,No of emails remaining to be synced,ቀሪ ኢሜይሎች መካከል ምንም መመሳሰል
apps/frappe/frappe/public/js/frappe/upload.js +203,Uploading,በመስቀል ላይ
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,ምድብ በፊት ሰነዱን ያስቀምጡ
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,ሳንካዎችን እና የአስተያየት ጥቆማዎችን ለመላክ እዚህ ጠቅ ያድርጉ
DocType: Website Settings,Address and other legal information you may want to put in the footer.,አድራሻ እና ሌሎች ህጋዊ መረጃ ወደ ግርጌ ላይ ማስቀመጥ ይፈልጉ ይሆናል.
DocType: Website Sidebar Item,Website Sidebar Item,የድር ጣቢያ የጎን ንጥል
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +44,{0} records updated,{0} መዛግብት ዘምኗል
@@ -979,12 +984,10 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,ግልጽ
apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,እያንዳንዱ ቀን ክስተቶች በአንድ ቀን ላይ መጨረስ አለባቸው.
DocType: Communication,User Tags,የተጠቃሚ መለያዎች
apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,በማምጣት ምስሎች ..
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,ውቅረት&gt; ተጠቃሚ
DocType: Workflow State,download-alt,አውርድ-alt
apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},በማውረድ ላይ መተግበሪያ {0}
DocType: Communication,Feedback Request,ግብረ ጥያቄ
apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,የሚከተሉት መስኮች ይጎድላሉ:
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Experimental Feature,የሙከራ ባህሪ
apps/frappe/frappe/www/login.html +30,Sign in,ስግን እን
DocType: Web Page,Main Section,ዋና ክፍል
DocType: Page,Icon,አዶ
@@ -1086,7 +1089,7 @@ DocType: Customize Form,Customize Form,ቅጽ ያብጁ
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +104,Mandatory field: set role for,አስገዳጅ መስክ: ተቀናብሯል ሚና
DocType: Currency,A symbol for this currency. For e.g. $,ለዚህ ምንዛሬ ያመለክታል. ለምሳሌ $ ለ
apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,Frappe መዋቅር
apps/frappe/frappe/model/naming.py +174,Name of {0} cannot be {1},ስም {0} ሊሆን አይችልም {1}
apps/frappe/frappe/model/naming.py +180,Name of {0} cannot be {1},ስም {0} ሊሆን አይችልም {1}
apps/frappe/frappe/config/setup.py +46,Show or hide modules globally.,አሳይ ወይም በዓለም አቀፍ ደረጃ ሞዱሎች ደብቅ.
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,ቀን ጀምሮ
apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,ስኬት
@@ -1107,7 +1110,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +308,Add A New
apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js +3,See on Website,ድህረ ገጽ ላይ ይመልከቱ
DocType: Workflow Transition,Next State,ቀጣይ መንግስት
DocType: User,Block Modules,አግድ ሞዱሎች
apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,ርዝመት በመመለስ ላይ {0} ለ «{1}» ውስጥ «{2}»; ርዝመት በማዘጋጀት ላይ {3} ውሂብ ማሳጠሪያ ያደርጋል ነው.
apps/frappe/frappe/model/db_schema.py +142,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,ርዝመት በመመለስ ላይ {0} ለ «{1}» ውስጥ «{2}»; ርዝመት በማዘጋጀት ላይ {3} ውሂብ ማሳጠሪያ ያደርጋል ነው.
DocType: Print Format,Custom CSS,ብጁ CSS
apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,አስተያየት ያክሉ
apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},ችላ: {0} ወደ {1}
@@ -1199,13 +1202,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,
DocType: Custom Role,Custom Role,ብጁ ሚና
apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,መነሻ / የሙከራ አቃፊ 2
DocType: System Settings,Ignore User Permissions If Missing,የጠፋ ከሆነ የተጠቃሚ ፍቃዶችን ችላ
apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,ከመስቀልዎ በፊት ሰነዱን ያስቀምጡ.
apps/frappe/frappe/public/js/frappe/form/control.js +1075,Please save the document before uploading.,ከመስቀልዎ በፊት ሰነዱን ያስቀምጡ.
apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,የይለፍ ቃልዎን ያስገቡ
DocType: Dropbox Settings,Dropbox Access Secret,መሸወጃ መዳረሻ ሚስጥር
apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,ሌላው አስተያየት ያክሉ
apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,አርትዕ DocType
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,ጋዜጣ ከደንበኝነት
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,Unsubscribed from Newsletter,ጋዜጣ ከደንበኝነት
apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,አንድ ክፍል መግቻ በፊት መምጣት አለበት ማጠፍ
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,በመገንባት ላይ
apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,ለመጨረሻ ጊዜ በ የተቀየረው
DocType: Workflow State,hand-down,እጅ-ታች
DocType: Address,GST State,GST ግዛት
@@ -1226,6 +1230,7 @@ DocType: Workflow State,Tag,መለያ
DocType: Custom Script,Script,ስክሪፕት
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,የእኔ ቅንብሮች
DocType: Website Theme,Text Color,የጽሁፍ ቀለም
apps/frappe/frappe/desk/page/backups/backups.py +72,Backup job is already queued. You will receive an email with the download link,ምትኬ ስራ አስቀድሞ ተሰልፏል. የአውርድ አገናኝ የያዘ ኢሜይል ይደርሰዎታል
DocType: Desktop Icon,Force Show,አስገድድ አሳይ
apps/frappe/frappe/auth.py +78,Invalid Request,ልክ ያልሆነ ጥያቄ
apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,ይህ ቅጽ ማንኛውም ግቤት የለውም
@@ -1336,7 +1341,7 @@ DocType: DocField,Name,ስም
apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,የእርስዎ ዕቅድ {0} ውስጥ ከፍተኛ ቦታ አልፈዋል. {1}.
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,ወደ ሰነዶች ፈልግ
DocType: OAuth Authorization Code,Valid,ሕጋዊ
apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,አገናኝ ክፈት
apps/frappe/frappe/public/js/frappe/form/control.js +1354,Open Link,አገናኝ ክፈት
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,የእርስዎ ቋንቋ
apps/frappe/frappe/desk/form/load.py +46,Did not load,መጫን ነበር
apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,ረድፍ አክል
@@ -1354,6 +1359,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","አንዳንድ ሰነዶች, አንድ ደረሰኝ እንደ አንድ የመጨረሻ መለወጥ የለበትም. እንዲህ ዓይነት ሰነዶች የመጨረሻው እርከን ገብቷል ተብሎ ይጠራል. እናንተ ሚና አስገባ ይችላሉ ለመገደብ ይችላሉ."
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,ይህን ሪፖርት ወደ ውጪ ለመላክ አይፈቀድም
apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 ንጥል ተመርጧል
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> ምንም ውጤቶች ለ ' </p>
DocType: Newsletter,Test Email Address,የሙከራ ኢሜይል አድራሻ
DocType: ToDo,Sender,የላኪ
DocType: GSuite Settings,Google Apps Script,የ Google መተግበሪያዎች ስክሪፕት
@@ -1461,7 +1467,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Ple
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,በመጫን ላይ ሪፖርት
apps/frappe/frappe/limits.py +72,Your subscription will expire today.,የእርስዎ የደንበኝነት ምዝገባ ዛሬ ጊዜው ያልፍበታል.
DocType: Page,Standard,መለኪያ
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,ፋይል አያይዝ
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,ፋይል አያይዝ
apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,የይለፍ ቃል አዘምን ማሳወቂያ
apps/frappe/frappe/desk/page/backups/backups.html +13,Size,ልክ
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,ሙሉ ምደባ
@@ -1491,7 +1497,7 @@ apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversat
apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},አማራጮች አገናኝ መስክ ካልተዋቀረ {0}
DocType: Customize Form,"Must be of type ""Attach Image""",&quot;ምስል አያይዝ&quot; አይነት መሆን አለበት
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,ሁሉንም አትምረጥ
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},እርስዎ መስክ እንዳልተዋቀረ አይደለም &#39;ብቻ አንብብ&#39; ይችላሉ {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +199,You cannot unset 'Read Only' for field {0},እርስዎ መስክ እንዳልተዋቀረ አይደለም &#39;ብቻ አንብብ&#39; ይችላሉ {0}
DocType: Auto Email Report,Zero means send records updated at anytime,ዜሮ በማንኛውም ጊዜ የዘመነ መዛግብት መላክ ማለት ነው
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +22,Complete Setup,ተጠናቋል
DocType: Workflow State,asterisk,ኮከባዊ ምልክት
@@ -1505,7 +1511,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +98,Week,ሳምን
DocType: Social Login Keys,Google,ጉግል
DocType: Email Domain,Example Email Address,ምሳሌ የኢሜይል አድራሻ
apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,በጣም ጥቅም ላይ የዋሉ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Unsubscribe from Newsletter,ጋዜጣ ምዝገባ ይውጡ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe from Newsletter,ጋዜጣ ምዝገባ ይውጡ
apps/frappe/frappe/www/login.html +101,Forgot Password,መክፈቻ ቁልፉን ረሳኽው
DocType: Dropbox Settings,Backup Frequency,ምትኬ ድግግሞሽ
DocType: Workflow State,Inverse,የተገላቢጦሽ
@@ -1583,10 +1589,11 @@ apps/frappe/frappe/config/setup.py +209,"Actions for workflow (e.g. Approve, Can
DocType: Workflow State,flag,ሰንደቅ ዓላማ
apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +57,Feedback Request is already sent to user,ግብረ መልስ ጥያቄ አስቀድሞ ተጠቃሚ ተልኳል
DocType: Web Page,Text Align,የጽሁፍ አሰላለፍ
apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},ስም እንደ ልዩ ቁምፊዎች ሊይዝ አይችልም {0}
apps/frappe/frappe/model/naming.py +185,Name cannot contain special characters like {0},ስም እንደ ልዩ ቁምፊዎች ሊይዝ አይችልም {0}
DocType: Contact Us Settings,Forward To Email Address,አስተላልፍ አድራሻ ኢሜይል ወደ
apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,ሁሉንም ውሂብ አሳይ
apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,የርዕስ መስክ ልክ የሆነ fieldname መሆን አለበት
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,የኢሜይል መለያ አልተዋቀረም. እባክዎ ከቅንብር&gt; ኢሜይል&gt; ኢሜይል መለያ አዲስ የኢሜይል አድራሻ ይፍጠሩ
apps/frappe/frappe/config/core.py +7,Documents,ሰነዶች
DocType: Email Flag Queue,Is Completed,የተጠናቀቁ ነው
apps/frappe/frappe/www/me.html +22,Edit Profile,አርትዕ መገለጫ
@@ -1596,7 +1603,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi
myfield
eval:doc.myfield=='My Value'
eval:doc.age&gt;18",እዚህ ላይ በተገለጸው fieldname እሴት አለው ወይም ደንብ እውነተኛ (ምሳሌዎች) ናቸው ብቻ ከሆነ ይህ መስክ ይታያል: myfield ኢቫል: doc.myfield == &#39;የእኔ እሴት »ኢቫል: doc.age&gt; 18
apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,ዛሬ
apps/frappe/frappe/public/js/frappe/form/control.js +764,Today,ዛሬ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","ይህን ካዋቀሩት በኋላ, ተጠቃሚዎች ብቻ ነው የሚችል መዳረሻ ሰነዶችን ይሆናል (ለምሳሌ. ልጥፍ ብሎግ) አገናኝ (ለምሳሌ. ብሎገር) አለ ቦታ."
DocType: Error Log,Log of Scheduler Errors,መርሐግብር ስህተቶች መካከል መዝገብ
DocType: User,Bio,የህይወት ታሪክ
@@ -1655,7 +1662,7 @@ DocType: Print Format,Js,JS
apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,ይምረጡ የህትመት ቅርጸት
apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,አጭር ሰሌዳ ቅጦችን ለመገመት ቀላል ናቸው
DocType: Portal Settings,Portal Menu,ፖርታል ማውጫ
apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,{0} ርዝመት በ 1 እና በ 1000 መካከል መሆን አለበት
apps/frappe/frappe/model/db_schema.py +115,Length of {0} should be between 1 and 1000,{0} ርዝመት በ 1 እና በ 1000 መካከል መሆን አለበት
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,ማንኛውም ነገር ይፈልጉ
DocType: DocField,Print Hide,አትም ደብቅ
apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,እሴት ያስገቡ
@@ -1708,8 +1715,7 @@ apps/frappe/frappe/model/document.py +564,Cannot change docstatus from 0 to 2,
DocType: User Permission for Page and Report,Roles Permission,ሚናዎች ፈቃድ
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,አዘምን
DocType: Error Snapshot,Snapshot View,ቅጽበተ-ይመልከቱ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,ከመላክህ በፊት ጋዜጣ ላይ ያስቀምጡ
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} አመት (ዎች) በፊት
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +101,Please save the Newsletter before sending,ከመላክህ በፊት ጋዜጣ ላይ ያስቀምጡ
apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},አማራጮች ረድፍ ውስጥ መስክ {0} ትክክለኛ DocType መሆን አለበት {1}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,አርትዕ ንብረቶች
DocType: Patch Log,List of patches executed,ጥገናዎች ዝርዝር ተገደለ
@@ -1727,7 +1733,7 @@ apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,የይለፍ
DocType: Workflow State,trash,መጣያ
DocType: System Settings,Older backups will be automatically deleted,የቆዩ መጠባበቂያዎች በራስ-ሰር ይሰረዛል
DocType: Event,Leave blank to repeat always,ሁልጊዜ መድገም ባዶውን ይተው
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +192,Confirmed,ተረጋግጧል
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,Confirmed,ተረጋግጧል
DocType: Event,Ends on,ላይ ያበቃል
DocType: Payment Gateway,Gateway,መዉጫ
apps/frappe/frappe/public/js/frappe/form/linked_with.js +116,Not enough permission to see links,አገናኞች ለማየት በቂ ፍቃድ
@@ -1758,7 +1764,6 @@ DocType: Contact,Purchase Manager,የግዢ አስተዳዳሪ
DocType: Custom Script,Sample,ናሙና
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,UnCategorised መለያዎች
DocType: Event,Every Week,በየሳምንቱ
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,የኢሜይል መለያ አይደለም ማዋቀር. ውቅረት&gt; ኢሜይል&gt; ኢሜይል መለያ ከ አዲስ ኢሜይል መለያ ይፍጠሩ
apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,የእርስዎ አጠቃቀም ያረጋግጡ ወይም ከፍ ያለ ዕቅድ ማሻሻያ ለማድረግ እዚህ ላይ ጠቅ ያድርጉ
DocType: Custom Field,Is Mandatory Field,አስገዳጅ መስክ ነው
DocType: User,Website User,የድር ጣቢያ ተጠቃሚ
@@ -1766,7 +1771,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +10,Not equals,
DocType: Integration Request,Integration Request Service,ውህደት ይጠይቁ አገልግሎት
DocType: Website Script,Script to attach to all web pages.,ስክሪፕት ሁሉንም ድረ ገጾች ጋር ለማያያዝ.
DocType: Web Form,Allow Multiple,በርካታ ፍቀድ
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +40,Assign,ትእዛዝ ሰጠ
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +44,Assign,ትእዛዝ ሰጠ
apps/frappe/frappe/config/setup.py +102,Import / Export Data from .csv files.,.csv ፋይሎች አስመጣ / ላክ ውሂብ.
DocType: Auto Email Report,Only Send Records Updated in Last X Hours,ብቻ መዛግብት ለመጨረሻ X ሰዓቶች ውስጥ የዘመነ ላክ
DocType: Communication,Feedback,ግብረ-መልስ
@@ -1846,7 +1851,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,የቀረ
apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,በማያያዝ በፊት ያስቀምጡ.
apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),ታክሏል {0} ({1})
apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},ነባሪ ገጽታ ውስጥ ተዘጋጅቷል {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype ከ ሊቀየር አይችልም {0} ወደ {1} ረድፍ ውስጥ {2}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +325,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype ከ ሊቀየር አይችልም {0} ወደ {1} ረድፍ ውስጥ {2}
apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,ሚና ፍቃዶች
DocType: Help Article,Intermediate,መካከለኛ
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,አንብብ ትችላለህ
@@ -1861,9 +1866,9 @@ apps/frappe/frappe/core/doctype/user/user.js +42,Refreshing...,በማደስ ላ
DocType: Event,Starts on,ላይ ይጀምራል
DocType: System Settings,System Settings,የስርዓት ቅንብሮች
apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,ክፍለ-ጊዜ መጀመር አልተሳካም
apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},ይህ ኢሜይል {0} ተልኳል እና ተቀድቷል ነበር {1}
apps/frappe/frappe/email/queue.py +470,This email was sent to {0} and copied to {1},ይህ ኢሜይል {0} ተልኳል እና ተቀድቷል ነበር {1}
DocType: Workflow State,th,ኛ
apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},ፍጠር አዲስ {0}
apps/frappe/frappe/public/js/frappe/form/control.js +1517,Create a new {0},ፍጠር አዲስ {0}
DocType: Email Rule,Is Spam,አይፈለጌ መልዕክት ነው
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},ሪፖርት {0}
apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},ክፍት {0}
@@ -1875,12 +1880,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon a
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,የተባዛ ነገር
DocType: Newsletter,Create and Send Newsletters,ፍጠር እና ላክ ጋዜጣዎች
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date must be before To Date,ቀን ጀምሮ እስከ ቀን በፊት መሆን አለበት
DocType: Address,Andaman and Nicobar Islands,የአናማሪ እና የኒኮባር ደሴቶች
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +216,GSuite Document,GSuite ሰነድ
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +29,Please specify which value field must be checked,ምልክት መደረግ አለበት ይህም ዋጋ መስክ ይግለጹ
apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"""Parent"" signifies the parent table in which this row must be added",&quot;ወላጅ&quot; በዚህ ረድፍ መታከል አለበት ውስጥ ወላጅ ጠረጴዛ ያመለክታል
DocType: Website Theme,Apply Style,ቅጥ ተግብር
DocType: Feedback Request,Feedback Rating,ግብረ ደረጃ አሰጣጥ
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared With,ጋር የተጋራ
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,ጋር የተጋራ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,ማዋቀር&gt; የተጠቃሚ ፈቃዶች አስተዳዳሪ
DocType: Help Category,Help Articles,የእገዛ ርዕሶች
,Modules Setup,ሞዱሎች ማዋቀር
apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,አይነት:
@@ -1911,7 +1918,7 @@ DocType: OAuth Client,App Client ID,የመተግበሪያ የደንበኛ መታ
DocType: Kanban Board,Kanban Board Name,Kanban ቦርድ ስም
DocType: Email Alert Recipient,"Expression, Optional","መግለጫ, አማራጭ"
DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,ቅዳ እና script.google.com ላይ ፕሮጀክት ውስጥ ይህንን ወደ ኮድ እና ባዶ Code.gs ለጥፍ
apps/frappe/frappe/email/queue.py +456,This email was sent to {0},ይህ ኢሜይል ተልኳል {0}
apps/frappe/frappe/email/queue.py +472,This email was sent to {0},ይህ ኢሜይል ተልኳል {0}
DocType: DocField,Remember Last Selected Value,ለመጨረሻ ጊዜ የተመረጠው እሴት አስታውስ
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +334,Please select Document Type,እባክዎ ይምረጡ የሰነድ አይነት
DocType: Email Account,Check this to pull emails from your mailbox,ይህ ሳጥንህ ውስጥ ባሉ ኢሜይሎች መጎተት ይመልከቱ
@@ -1926,6 +1933,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,አ
DocType: Feedback Trigger,Email Field,የኢሜይል መስክ
apps/frappe/frappe/www/update-password.html +59,New Password Required.,አዲስ የይለፍ ቃል ያስፈልጋል.
apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} ጋር ይህን ሰነድ አጋርቷል {1}
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,አዘጋጅ&gt; ተጠቃሚ
DocType: Website Settings,Brand Image,የምርት ምስል
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","ከላይ የዳሰሳ አሞሌ, ግርጌ እና ዓርማ ማዋቀር."
@@ -1993,8 +2001,8 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa
apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},የፋይል ቅርጸት ማንበብ አልተቻለም {0}
DocType: Auto Email Report,Filter Data,የማጣሪያ ውሂብ
apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,አንድ መለያ አክል
apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,መጀመሪያ አንድ ፋይል አባሪ ያድርጉ.
apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","ስም ማዋቀር አንዳንድ ስህተቶች ነበሩ, አስተዳዳሪ ያነጋግሩ"
apps/frappe/frappe/public/js/frappe/form/control.js +1335,Please attach a file first.,መጀመሪያ አንድ ፋይል አባሪ ያድርጉ.
apps/frappe/frappe/model/naming.py +174,"There were some errors setting the name, please contact the administrator","ስም ማዋቀር አንዳንድ ስህተቶች ነበሩ, አስተዳዳሪ ያነጋግሩ"
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,ገቢ የኢሜይል መለያ ትክክል አይደለም
apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \
Please enter a valid email address so that we can get back.",የእርስዎ ስም ይልቅ የእርስዎ ኢሜይል የተጻፈ ይመስላል. እኛ ወደ ኋላ ማግኘት እንዲችሉ \ ልክ የሆነ የኢሜይል አድራሻ ያስገቡ.
@@ -2046,7 +2054,6 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,
DocType: Custom DocPerm,Create,ፈጠረ
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},ልክ ያልሆነ ማጣሪያ: {0}
DocType: Email Account,no failed attempts,ምንም አልተሳካም ሙከራዎች
apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,ምንም ነባሪ አድራሻ አብነት አልተገኘም. ውቅረት&gt; ማተም እና ብራንዲንግ&gt; አድራሻ መለጠፊያ አንድ አዲስ ፍጠር እባክህ.
DocType: GSuite Settings,refresh_token,refresh_token
DocType: Dropbox Settings,App Access Key,የመተግበሪያ መዳረሻ ቁልፍ
DocType: OAuth Bearer Token,Access Token,የመዳረሻ ማስመሰያ
@@ -2072,6 +2079,7 @@ apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},ለማድረግ አዲስ {0}
apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,አዲስ የኢሜይል መለያ
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +28,Document Restored,ሰነድ ወደነበረበት ተመልሷል
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +203,You can't set 'Options' for field {0},በመስክ ላይ «አማራጮች» ማዘጋጀት አይችሉም {0}
apps/frappe/frappe/core/page/usage_info/usage_info.html +86,Size (MB),መጠን (ሜባ)
DocType: Help Article,Author,ደራሲ
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +10,Resume Sending,በመላክ ላይ ከቆመበት ቀጥል
@@ -2081,7 +2089,7 @@ DocType: Print Settings,Monochrome,ቀለመ
DocType: Address,Purchase User,የግዢ ተጠቃሚ
DocType: Workflow,"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.","የተለያዩ &quot;ስቴትስ&quot; ይህ ሰነድ &quot;ክፈት&quot; ልክ. ውስጥ ሊኖር ይችላል, &quot;ማረጋገጫ በመጠባበቅ ላይ&quot; ወዘተ"
apps/frappe/frappe/utils/verified_command.py +43,This link is invalid or expired. Please make sure you have pasted correctly.,ይህ አገናኝ ልክ ያልሆነ ወይም ጊዜው ያለፈበት ነው. በትክክል ተለጥፎ እርግጠኛ ይሁኑ.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> በተሳካ ሁኔታ ከዚህ የደብዳቤ የሚላክላቸው ዝርዝር ከደንበኝነት ምዝገባ ወጥቷል.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +136,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> በተሳካ ሁኔታ ከዚህ የደብዳቤ የሚላክላቸው ዝርዝር ከደንበኝነት ምዝገባ ወጥቷል.
DocType: Web Page,Slideshow,የተንሸራታች ትዕይንት
apps/frappe/frappe/contacts/doctype/address_template/address_template.py +31,Default Address Template cannot be deleted,ነባሪ አድራሻ መለጠፊያ ሊሰረዝ አይችልም
DocType: Contact,Maintenance Manager,ጥገና ሥራ አስኪያጅ
@@ -2102,7 +2110,7 @@ apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a r
DocType: System Settings,Apply Strict User Permissions,ጥብቅ የተጠቃሚ ፍቃዶችን ተግብር
DocType: DocField,Allow Bulk Edit,የጅምላ አርትዕ ፍቀድ
DocType: Blog Post,Blog Post,የጦማር ልጥፍ
apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,የላቀ ፍለጋ
apps/frappe/frappe/public/js/frappe/form/control.js +1527,Advanced Search,የላቀ ፍለጋ
apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,የይለፍ ቃል ዳግም መመሪያዎች የእርስዎ ኢሜይል ተልከዋል
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \
higher levels for field level permissions.","ደረጃ 0 መስክ ደረጃ ፈቃዶችን ለ ሰነድ ደረጃ ፈቃዶች, \ ከፍተኛ ደረጃ ነው."
@@ -2127,13 +2135,13 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new re
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,በመፈለግ ላይ
DocType: Currency,Fraction,ክፍልፋይ
DocType: LDAP Settings,LDAP First Name Field,ኤልዲኤፒ የመጀመሪያ ስም መስክ
apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,ነባር አባሪዎችን ይምረጡ
apps/frappe/frappe/public/js/frappe/form/control.js +1085,Select from existing attachments,ነባር አባሪዎችን ይምረጡ
DocType: Custom Field,Field Description,የመስክ መግለጫ
apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,ተከታትላችሁ በኩል አልተዘጋጀም ስም
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,የኢሜይል ገቢ መልዕክት ሳጥን
DocType: Auto Email Report,Filters Display,ማጣሪያዎችን አሳይ
DocType: Website Theme,Top Bar Color,ከፍተኛ አሞሌ ቀለም
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Do you want to unsubscribe from this mailing list?,ከዚህ የደብዳቤ የሚላክላቸው ዝርዝር ከደንበኝነት ትፈልጋለህ?
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Do you want to unsubscribe from this mailing list?,ከዚህ የደብዳቤ የሚላክላቸው ዝርዝር ከደንበኝነት ትፈልጋለህ?
DocType: Address,Plant,ተክል
apps/frappe/frappe/core/doctype/communication/communication.js +65,Reply All,ለሁሉም መልስ
DocType: DocType,Setup,አዘገጃጀት
@@ -2176,7 +2184,7 @@ DocType: User,Send Notifications for Transactions I Follow,እኔ ተከተለ
apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: አስገባ ሰርዝ, ጻፍ ያለ እንዲሻሻል ማዘጋጀት አይቻልም"
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,ወደ አባሪ መሰረዝ ይፈልጋሉ እርግጠኛ ነዎት?
apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} <a href=""#Form/{0}/{1}"">{1}</a> is linked with {2} <a href=""#Form/{2}/{3}"">{3}</a>","መሰረዝ ወይም {0} ስለ ማስቀረት አይቻልም <a href=""#Form/{0}/{1}"">{1}</a> ጋር የተያያዘ ነው {2} <a href=""#Form/{2}/{3}"">{3}</a>"
apps/frappe/frappe/__init__.py +1062,Thank you,አመሰግናለሁ
apps/frappe/frappe/__init__.py +1070,Thank you,አመሰግናለሁ
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,በማስቀመጥ ላይ
DocType: Print Settings,Print Style Preview,ቅጥ የህትመት ቅድመ እይታ
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
@@ -2191,7 +2199,7 @@ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,ቅጾ
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,SR አይ
,Role Permissions Manager,ሚና ፍቃዶች አስተዳዳሪ
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,አዲስ የህትመት ቅርጸት ስም
apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,አጽዳ አባሪ
apps/frappe/frappe/public/js/frappe/form/control.js +1087,Clear Attachment,አጽዳ አባሪ
apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,የግዴታ:
,User Permissions Manager,የተጠቃሚ ፍቃዶች አስተዳዳሪ
DocType: Property Setter,New value to be set,አዲስ እሴት እንዲዘጋጅ
@@ -2216,7 +2224,7 @@ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment C
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,አጽዳ ስህተት ምዝግብ ማስታወሻዎች
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,ደረጃ አሰጣጥን እባክዎ ይምረጡ
DocType: Email Account,Notify if unreplied for (in mins),(ደቂቃዎች ውስጥ) ለ unreplied ከሆነ አሳውቅ
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 ቀናት በፊት
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +501,2 days ago,2 ቀናት በፊት
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,ጦማር ልጥፎች ለመመደብ.
DocType: Workflow State,Time,ጊዜ
DocType: DocField,Attach,አያይዝ
@@ -2232,6 +2240,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,ምት
DocType: GSuite Templates,Template Name,የአብነት ስም
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,ሰነድ አዲስ አይነት
DocType: Custom DocPerm,Read,አነበበ
DocType: Address,Chhattisgarh,ክላቲጋር
DocType: Role Permission for Page and Report,Role Permission for Page and Report,ገጽ እና ሪፖርት ለ ሚና ፍቃድ
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,እሴት አሰልፍ
apps/frappe/frappe/www/update-password.html +14,Old Password,የድሮ የይለፍ ቃል
@@ -2278,7 +2287,7 @@ apps/frappe/frappe/public/js/frappe/roles_editor.js +28,Add all roles,ሁሉም
apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your email and message so that we \
can get back to you. Thanks!",እኛ ወደ አንተ ማግኘት ይችላሉ \ እንዲችሉ የእርስዎ ኢሜይል እና መልዕክት ሁለቱም ያስገቡ. አመሰግናለሁ!
apps/frappe/frappe/email/smtp.py +170,Could not connect to outgoing email server,የወጪ የኢሜይል አገልጋይ ጋር መገናኘት አልተቻለም
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +162,Thank you for your interest in subscribing to our updates,የእኛን ዝማኔዎች ደንበኝነት ላሳዩት ፍላጎት እናመሰግናለን
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Thank you for your interest in subscribing to our updates,የእኛን ዝማኔዎች ደንበኝነት ላሳዩት ፍላጎት እናመሰግናለን
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Custom Column,ብጁ አምድ
DocType: Workflow State,resize-full,እጀታ-ሙሉ
DocType: Workflow State,off,ጠፍቷል
@@ -2341,7 +2350,7 @@ DocType: Address,Telangana,Telangana
apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,{0} አማራጭ መሆን አለበት ነባሪ
DocType: Tag Doc Category,Tag Doc Category,መለያ ሰነድ ምድብ
DocType: User,User Image,የተጠቃሚ ምስል
apps/frappe/frappe/email/queue.py +289,Emails are muted,ኢሜይሎች ድምጸ-ናቸው
apps/frappe/frappe/email/queue.py +304,Emails are muted,ኢሜይሎች ድምጸ-ናቸው
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + እስከ
DocType: Website Theme,Heading Style,ርዕስ ቅጥ
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +183,A new Project with this name will be created,ይህን ስም የያዘ አዲስ ፕሮጀክት ተፈጥሯል ይደረጋል
@@ -2558,7 +2567,6 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,ደወል
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,የኢሜይል ማንቂያ ላይ ስህተት
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,ይህን ሰነድ ያጋሩ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,ውቅረት&gt; የተጠቃሚ ፍቃዶች አስኪያጅ
apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,ልጆችን እንዳለው መጠን: {0} {1} አንድ ቅጠል መስቀለኛ መንገድ ሊሆን አይችልም
DocType: Communication,Info,መረጃ
apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,አባሪ አክል
@@ -2602,7 +2610,7 @@ apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,የህት
DocType: Email Alert,Send days before or after the reference date,በፊት ወይም የማጣቀሻ ቀን በኋላ ቀናት ላክ
DocType: User,Allow user to login only after this hour (0-24),ተጠቃሚ ብቻ ከዚህ ሰዓት በኋላ መግባት (0-24) ፍቀድ
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,ዋጋ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +165,Click here to verify,ለማረጋገጥ እዚህ ላይ ጠቅ ያድርጉ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +166,Click here to verify,ለማረጋገጥ እዚህ ላይ ጠቅ ያድርጉ
apps/frappe/frappe/utils/password_strength.py +178,Predictable substitutions like '@' instead of 'a' don't help very much.,ሊገመት እንደ ተለዋጭ ምግብ &#39;@&#39; ይልቅ &#39;አንድ&#39; በጣም ብዙ መርዳት አይደለም.
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,እኔ በ የተመደበው
apps/frappe/frappe/utils/data.py +462,Zero,ዜሮ
@@ -2614,6 +2622,7 @@ DocType: ToDo,Priority,ቅድሚያ
DocType: Email Queue,Unsubscribe Param,ከደንበኝነት PARAM
DocType: Auto Email Report,Weekly,ሳምንታዊ
DocType: Communication,In Reply To,ምላሽ
apps/frappe/frappe/contacts/doctype/address/address.py +189,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,ምንም ነባሪ የአድራሻ አማራጮች አልተገኙም. እባክዎ ከቅንብር&gt; አታሚ እና ስምሪት&gt; የአድራሻ አብነት አዲስ አንድ ያድርጉ.
DocType: DocType,Allow Import (via Data Import Tool),አስመጣ ፍቀድ (ውሂብ አስመጣ መሣሪያ በኩል)
apps/frappe/frappe/templates/print_formats/standard_macros.html +30,Sr,SR
DocType: DocField,Float,ተንሳፈፈ
@@ -2704,7 +2713,6 @@ apps/frappe/frappe/commands/site.py +451,Invalid limit {0},ልክ ያልሆነ
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,ሰነድ አይነት ዘርዝር
DocType: Event,Ref Type,ማጣቀሻ አይነት
apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","አዲስ ሪኮርድ እየሰቀሉ ከሆነ, የ &quot;ስም&quot; (አይዲ) አምድ ባዶ ተወው."
DocType: Address,Chattisgarh,Chattisgarh
apps/frappe/frappe/config/core.py +47,Errors in Background Events,የጀርባ ክስተቶች ውስጥ ስህተቶች
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,አምዶች የሉም
DocType: Workflow State,Calendar,ቀን መቁጠሪያ
@@ -2736,7 +2744,7 @@ apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},ተል
DocType: Integration Request,Remote,ሩቅ
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,አሰበ
apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,መጀመሪያ DocType እባክዎ ይምረጡ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,የእርስዎ ኢሜይል ያረጋግጡ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +174,Confirm Your Email,የእርስዎ ኢሜይል ያረጋግጡ
apps/frappe/frappe/www/login.html +42,Or login with,ወይስ ጋር መግባት
DocType: Error Snapshot,Locals,የአካባቢው ሰዎች
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},በኩል እንዳልተካፈለች {0} ላይ {1}: {2}
@@ -2753,7 +2761,7 @@ DocType: Web Page,Web Page,ድረ ገጽ
DocType: Blog Category,Blogger,ብሎገር
apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},&#39;ግሎባል ፍለጋ ውስጥ&#39; አይነት አይፈቀድም {0} ረድፍ ውስጥ {1}
apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,ይመልከቱ ዝርዝር
apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},የቀን ቅርጸት ውስጥ መሆን አለባቸው: {0}
apps/frappe/frappe/public/js/frappe/form/control.js +810,Date must be in format: {0},የቀን ቅርጸት ውስጥ መሆን አለባቸው: {0}
DocType: Workflow,Don't Override Status,ሁኔታ ሻር አትበል
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,ደረጃ ይስጡ.
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} ግብረ ጥያቄ
@@ -2786,7 +2794,7 @@ DocType: Custom DocPerm,Report,ሪፖርት
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,የገንዘብ መጠን 0 የበለጠ መሆን አለበት.
apps/frappe/frappe/desk/reportview.py +107,{0} is saved,{0} ተቀምጧል
apps/frappe/frappe/core/doctype/user/user.py +327,User {0} cannot be renamed,{0} ተጠቃሚ ተሰይሟል አይችልም
apps/frappe/frappe/model/db_schema.py +107,Fieldname is limited to 64 characters ({0}),Fieldname 64 ቁምፊዎች የተገደበ ነው ({0})
apps/frappe/frappe/model/db_schema.py +108,Fieldname is limited to 64 characters ({0}),Fieldname 64 ቁምፊዎች የተገደበ ነው ({0})
apps/frappe/frappe/config/desk.py +59,Email Group List,የኢሜይል የቡድን ዝርዝር
DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],.ico ቅጥያ ጋር አንድ አዶ ፋይል. 16 x 16 ፒክስል መሆን አለበት. አንድ የፋቪኮን ጄኔሬተር በመጠቀም የተፈጠረ. [Favicon-generator.org]
DocType: Auto Email Report,Format,ቅርጸት
@@ -2864,7 +2872,7 @@ DocType: Website Settings,Title Prefix,ርዕስ ቅጥያ
DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,ማሳወቂያዎች እና የጅምላ ኢሜይሎች ለዚህ የወጪ አገልጋይ ይላካሉ.
DocType: Workflow State,cog,እሽክርክሪት
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on Migrate,መሸጋገር ላይ አመሳስል
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,በአሁኑ ጊዜ በማየት ላይ
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Currently Viewing,በአሁኑ ጊዜ በማየት ላይ
DocType: DocField,Default,ነባሪ
apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} ታክሏል
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',ፈልግ «{0}»
@@ -2924,7 +2932,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +771,Report was
DocType: Print Settings,Print Style,አትም ቅጥ
apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,ማንኛውንም መዝገብ ጋር አልተገናኘም
DocType: Custom DocPerm,Import,አስገባ
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +178,Row {0}: Not allowed to enable Allow on Submit for standard fields,ረድፍ {0}: ላይ መደበኛ መስኮች አስገባ ፍቀድ ማንቃት አይፈቀድም
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +180,Row {0}: Not allowed to enable Allow on Submit for standard fields,ረድፍ {0}: ላይ መደበኛ መስኮች አስገባ ፍቀድ ማንቃት አይፈቀድም
apps/frappe/frappe/config/setup.py +100,Import / Export Data,አስመጣ / ላክ ውሂብ
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,መደበኛ ሚና ተሰይሟል አይችልም
DocType: Communication,To and CC,እና ዝግ መግለጫ
@@ -2950,7 +2958,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo
DocType: Auto Email Report,Filter Meta,Meta አጣራ
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,ይህን ቅጽ አንድ ድረ-ገጽ ካለው ጽሑፍ ድረ ገጽ አገናኝ ለ እንዲታዩ. አገናኝ መንገድ በራስ-ሰር page_name` እና `parent_website_route`` ላይ ተመስርተው የመነጩ ይሆናል
DocType: Feedback Request,Feedback Trigger,ግብረ ቀስቅስ
apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,በመጀመሪያ {0} ማዘጋጀት እባክዎ
apps/frappe/frappe/public/js/frappe/form/control.js +1741,Please set {0} first,በመጀመሪያ {0} ማዘጋጀት እባክዎ
DocType: Unhandled Email,Message-id,መልዕክት-መታወቂያ
DocType: Patch Log,Patch,መጣፈያ
DocType: Async Task,Failed,አልተሳካም


+ 72
- 64
frappe/translations/ar.csv Datei anzeigen

@@ -14,8 +14,9 @@ apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,ت
DocType: User,Facebook Username,اسم المستخدم للفيس بوك
DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,ملاحظة: سيتم السماح جلسات متعددة في حالة جهاز المحمول
apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},تمكين البريد الوارد البريد الإلكتروني للمستخدم {المستخدمين}
apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,لا يمكن إرسال هذا البريد الإلكتروني. لقد تجاوزت الحدود ارسال {0} رسائل البريد الإلكتروني لهذا الشهر.
apps/frappe/frappe/email/queue.py +225,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,لا يمكن إرسال هذا البريد الإلكتروني. لقد تجاوزت الحدود ارسال {0} رسائل البريد الإلكتروني لهذا الشهر.
apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,إرسال دائم {0} ؟
apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,تحميل الملفات النسخ الاحتياطي
DocType: Address,County,مقاطعة
DocType: Workflow,If Checked workflow status will not override status in list view,إذا ووضع العمل تم الفحص لا تجاوز الوضع في عرض القائمة
apps/frappe/frappe/client.py +280,Invalid file path: {0},مسار الملف غير صالح: {0}
@@ -80,10 +81,10 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,إعدا
apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,تسجيل دخول مسؤول النظام
DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",خيارات الاتصال، مثل &quot;الاستعلام المبيعات والدعم الاستعلام&quot; الخ كل على سطر جديد أو مفصولة بفواصل.
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. تحميل
apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,إدراج
apps/frappe/frappe/public/js/frappe/form/control.js +1979,Insert,إدراج
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},حدد {0}
DocType: Print Settings,Classic,كلاسيكي
DocType: Desktop Icon,Color,اللون
DocType: DocField,Color,اللون
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +54,For ranges,للنطاقات
DocType: Workflow State,indent-right,المسافة البادئة اليمنى
DocType: Has Role,Has Role,له دور
@@ -100,7 +101,7 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To impor
DocType: DocType,Default Print Format,طباعة شكل الافتراضي
DocType: Workflow State,Tags,بطاقات
apps/frappe/frappe/public/js/frappe/form/workflow.js +33,None: End of Workflow,لا شيء: نهاية سير العمل
apps/frappe/frappe/model/db_schema.py +346,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",الحقل {0} لا يمكن ضبطه كفريد في {1}، لعدم وجود قيم فريدة من نوعها
apps/frappe/frappe/model/db_schema.py +347,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",الحقل {0} لا يمكن ضبطه كفريد في {1}، لعدم وجود قيم فريدة من نوعها
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +47,Document Types,أنواع المستندات
DocType: Address,Jammu and Kashmir,جامو وكشمير
DocType: Workflow,Workflow State Field,حقل حالة سير العمل
@@ -231,7 +232,7 @@ DocType: Workflow,Transition Rules,الانتقال قوانين
apps/frappe/frappe/core/doctype/report/report.js +11,Example:,على سبيل المثال:
DocType: Workflow,Defines workflow states and rules for a document.,تحديد حالات و قواعد سير العمل للوثيقة
DocType: Workflow State,Filter,فلتر
apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},FIELDNAME {0} لا يمكن أن يكون أحرف خاصة مثل {1}
apps/frappe/frappe/model/db_schema.py +564,Fieldname {0} cannot have special characters like {1},FIELDNAME {0} لا يمكن أن يكون أحرف خاصة مثل {1}
apps/frappe/frappe/config/setup.py +121,Update many values at one time.,تحديث العديد من القيم في وقت واحد.
apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,تم تعديل الوثيقة بعد أن كنت قد فتحه: خطأ
apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} تسجيل الخروج: {1}
@@ -260,7 +261,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,الحصول
apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.",انتهى اشتراكك في {0}. تجديد، {1}.
DocType: Workflow State,plus-sign,زائد توقيع
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,الإعداد الكامل بالفعل
apps/frappe/frappe/__init__.py +889,App {0} is not installed,لم يتم تثبيت التطبيق {0}
apps/frappe/frappe/__init__.py +897,App {0} is not installed,لم يتم تثبيت التطبيق {0}
DocType: Workflow State,Refresh,تحديث
DocType: Event,Public,جمهور
apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,لا شيء لإظهار
@@ -339,7 +340,6 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,تحرير العنوان
DocType: File,File URL,ملف URL
DocType: Version,Table HTML,جدول HTML
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,"<p style=""""> لم يتم العثور على نتائج ل ' </p>"
apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,إضافة المشتركين
apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,الأحداث القادمة لهذا اليوم
DocType: Email Alert Recipient,Email By Document Field,البريد الإلكتروني بواسطة حقل الوثيقة
@@ -404,7 +404,6 @@ DocType: Desktop Icon,Link,رابط
apps/frappe/frappe/utils/file_manager.py +96,No file attached,أي ملف مرفق
DocType: Version,Version,الإصدار
DocType: User,Fill Screen,ملء الشاشة
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,الرجاء الإعداد الافتراضي حساب البريد الإلكتروني من الإعداد&gt; البريد الإلكتروني&gt; حساب البريد الإلكتروني
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",غير قادر على عرض هذا التقرير المشجر، وذلك بسبب البيانات المفقودة. على الأرجح، يتم تصفيتها بسبب الأذونات.
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. حدد ملف
apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,تحرير عبر التحميل
@@ -474,9 +473,9 @@ DocType: User,Reset Password Key,إعادة تعيين كلمة المرور ا
DocType: Email Account,Enable Auto Reply,تمكين الرد التلقائي
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,لا أرى
DocType: Workflow State,zoom-in,تكبير
apps/frappe/frappe/email/queue.py +219,Unsubscribe from this list,إلغاء الاشتراك من هذه القائمة
apps/frappe/frappe/email/queue.py +234,Unsubscribe from this list,إلغاء الاشتراك من هذه القائمة
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Reference DocType and Reference Name are required,ويلزم الإشارة DOCTYPE واسم الإشارة
apps/frappe/frappe/utils/jinja.py +35,Syntax error in template,خطأ في القالب
apps/frappe/frappe/utils/jinja.py +51,Syntax error in template,خطأ في القالب
DocType: DocField,Width,عرض
DocType: Email Account,Notify if unreplied,يخطر إذا لا تحوي على ردود
DocType: System Settings,Minimum Password Score,الحد الأدنى من كلمة المرور
@@ -560,6 +559,7 @@ DocType: Custom Field,Select the label after which you want to insert new field.
DocType: User,Last Login,آخر تسجيل دخول
apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},مطلوب Fieldname في الصف {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,عمود
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,الرجاء الإعداد الافتراضي حساب البريد الإلكتروني من الإعداد&gt; البريد الإلكتروني&gt; حساب البريد الإلكتروني
DocType: Custom Field,Adds a custom field to a DocType,DocType اضافة حقل خاص ل
DocType: File,Is Home Folder,هو المجلد الرئيسي
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} بريد إلكتروني غير صحيح
@@ -567,7 +567,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +733,Select atleast 1 reco
apps/frappe/frappe/core/doctype/has_role/has_role.py +13,User '{0}' already has the role '{1}',العضو &#39;{0}&#39; بالفعل دور &#39;{1}&#39;
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,رفع ومزامنة
apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},مشترك مع {0}
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe,إلغاء الاشتراك
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +132,Unsubscribe,إلغاء الاشتراك
DocType: Communication,Reference Name,اسم المرجع
apps/frappe/frappe/public/js/frappe/toolbar.js +30,Chat Support,دعم الدردشة
DocType: Error Snapshot,Exception,استثناء
@@ -585,7 +585,7 @@ DocType: Email Group,Newsletter Manager,مدير النشرة الإخبارية
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,الخيار 1
apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} إلى {1}
apps/frappe/frappe/config/setup.py +89,Log of error during requests.,تسجيل الخطأ خلال الطلبات.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} تم بنجاح الإضافة إلى مجموعة البريد الإلكتروني.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +194,{0} has been successfully added to the Email Group.,{0} تم بنجاح الإضافة إلى مجموعة البريد الإلكتروني.
DocType: Address,Uttar Pradesh,أوتار براديش
DocType: Address,Pondicherry,بونديشيري
apps/frappe/frappe/public/js/frappe/upload.js +364,Make file(s) private or public?,جعل الملف (الملفات) الخاص أو العام؟
@@ -616,7 +616,7 @@ DocType: Portal Settings,Portal Settings,إعدادات بوابة
DocType: Web Page,0 is highest,0 أعلى قيمة
apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,هل أنت متأكد أنك تريد إعادة ربط هذه الاتصالات إلى {0}؟
apps/frappe/frappe/www/login.html +104,Send Password,إرسال كلمة المرور
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +45,Attachments,المرفقات
DocType: Email Queue,Attachments,المرفقات
apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,لم يكن لديك أذونات للوصول إلى هذه الوثيقة
DocType: Language,Language Name,اسم اللغة
DocType: Email Group Member,Email Group Member,أرسل عضو المجموعة
@@ -646,7 +646,7 @@ apps/frappe/frappe/utils/password_strength.py +78,Try to use a longer keyboard p
DocType: Feedback Trigger,Check Communication,تحقق الاتصالات
DocType: Address,Rajasthan,راجستان
apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,تدار تقارير منشئ التقرير مباشرة بواسطة منشئ التقرير. لا شيء للقيام به.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,يرجى التحقق من عنوان البريد الإلكتروني الخاص بك
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +164,Please verify your Email Address,يرجى التحقق من عنوان البريد الإلكتروني الخاص بك
apps/frappe/frappe/model/document.py +903,none of,أيا من
apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,أرسل لي نسخة
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,تحميل ضوابط العضو
@@ -657,7 +657,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Si
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,كانبان مجلس {0} غير موجود.
apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} يستعرض هذه الوثيقة حالياً
DocType: ToDo,Assigned By Full Name,تعيين بواسطة الاسم الكامل
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} تم تحديث
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} تم تحديث
apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,لا يمكن تعيين التقرير لأنواع واحدة
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,قبل {0} أيام
DocType: Email Account,Awaiting Password,في انتظار كلمة المرور
@@ -682,7 +682,7 @@ DocType: Workflow State,Stop,توقف
DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,الرابط إلى الصفحة التي تريد فتحها. اتركه فارغا إذا كنت تريد أن تجعل من أحد الوالدين المجموعة.
DocType: DocType,Is Single,هو واحدة
apps/frappe/frappe/core/doctype/user/user.py +720,Sign Up is disabled,اشترك معطل
apps/frappe/frappe/email/queue.py +278,{0} has left the conversation in {1} {2},{0} تركت محادثة في {1} {2}
apps/frappe/frappe/email/queue.py +293,{0} has left the conversation in {1} {2},{0} تركت محادثة في {1} {2}
DocType: Blogger,User ID of a Blogger,هوية المستخدم من مدون
apps/frappe/frappe/core/doctype/user/user.py +287,There should remain at least one System Manager,ينبغي أن تظل هناك إدارة نظام واحد على الأقل
DocType: GSuite Settings,Authorization Code,قانون التفويض
@@ -728,6 +728,7 @@ DocType: Event,Event,حدث
apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:",على {0}، {1} كتب:
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,لا يمكنك حذف الحقول القياسية. يمكنك إخفاءها فقط إذا كنت تريد
DocType: Top Bar Item,For top bar,الشريط العلوي لل
apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,قائمة الانتظار للنسخ الاحتياطي. سوف تتلقى رسالة بريد إلكتروني مع رابط التحميل
apps/frappe/frappe/utils/bot.py +148,Could not identify {0},لا يمكن تحديد {0}
DocType: Address,Address,عنوان
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +3,Payment Failed,عملية الدفع فشلت
@@ -752,13 +753,13 @@ DocType: Web Form,Allow Print,السماح للطباعة
apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,لا التطبيقات المثبتة
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,بمناسبة حقل إلزامي كما
DocType: Communication,Clicked,النقر
apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},لا توجد صلاحية ل '{0} ' {1}
apps/frappe/frappe/public/js/legacy/form.js +950,No permission to '{0}' {1},لا توجد صلاحية ل '{0} ' {1}
DocType: User,Google User ID,جوجل هوية المستخدم
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,من المقرر أن ترسل
DocType: DocType,Track Seen,المسار رأيت
apps/frappe/frappe/desk/form/utils.py +55,This method can only be used to create a Comment,لا يمكن إلا أن هذه الطريقة يمكن استخدامها لإنشاء تعليق
DocType: Event,orange,البرتقالي
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,No {0} found,لا {0} وجدت
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +558,No {0} found,لا {0} وجدت
apps/frappe/frappe/config/setup.py +242,Add custom forms.,إضافة نماذج مخصصة.
apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} في {2}
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +419,submitted this document,قدمت هذه الوثيقة
@@ -788,6 +789,7 @@ DocType: Newsletter Email Group,Newsletter Email Group,البريد الإلكت
DocType: Dropbox Settings,Integrations,التكاملات
DocType: DocField,Section Break,فاصل قسم
DocType: Address,Warehouse,مستودع
DocType: Address,Other Territory,إقليم آخر
,Messages,رسائل
apps/frappe/frappe/desk/page/applications/applications.js +49,Portal,بوابة
DocType: Email Account,Use Different Email Login ID,استخدام معرف تسجيل دخول مختلف للبريد الإلكتروني
@@ -818,6 +820,7 @@ apps/frappe/frappe/utils/data.py +556,1 month ago,قبل شهر
DocType: Contact,User ID,معرف المستخدم
DocType: Communication,Sent,أرسلت
DocType: Address,Kerala,ولاية كيرالا
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} سنة (سنوات)
DocType: File,Lft,LFT
DocType: User,Simultaneous Sessions,جلسات متزامنة
DocType: OAuth Client,Client Credentials,وثائق تفويض العميل
@@ -834,7 +837,7 @@ DocType: Email Queue,Unsubscribe Method,طريقة إلغاء الاشتراك
DocType: GSuite Templates,Related DocType,دوكتيب ذات الصلة
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,تعديل لإضافة محتوى
apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,اختر اللغات
apps/frappe/frappe/__init__.py +509,No permission for {0},لا إذن ل{0}
apps/frappe/frappe/__init__.py +517,No permission for {0},لا إذن ل{0}
DocType: DocType,Advanced,متقدم
apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,يبدو مفتاح API أو API سر من الخطأ !!!
apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},إشارة: {0} {1}
@@ -845,6 +848,7 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P
DocType: Email Account,Yahoo Mail,بريد ياهو
apps/frappe/frappe/limits.py +75,Your subscription will expire tomorrow.,اشتراكك سوف ينتهي غدا.
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +483,Saved!,حفظ!
apps/frappe/frappe/public/js/frappe/form/control.js +729,{0} is not a valid hex color,{0} ليس لون سداسي عرافة صالحا
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,سيدتي
apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},تحديث {0}: {1}
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,سيد
@@ -872,7 +876,7 @@ DocType: Report,Disabled,معطل
DocType: Workflow State,eye-close,إغلاق العين
DocType: OAuth Provider Settings,OAuth Provider Settings,إعدادات مزود أوث
apps/frappe/frappe/config/setup.py +254,Applications,تطبيقات
apps/frappe/frappe/public/js/frappe/request.js +347,Report this issue,بلغ عن هذه المسألة
apps/frappe/frappe/public/js/frappe/request.js +349,Report this issue,بلغ عن هذه المسألة
apps/frappe/frappe/public/js/frappe/form/save.js +79,Name is required,الاسم مطلوب
DocType: Custom Script,Adds a custom script (client or server) to a DocType,اضافة سيناريو مخصص (العميل أو الخادم) إلى DOCTYPE
DocType: Address,City/Town,المدينة / البلدة
@@ -966,6 +970,7 @@ DocType: Currency,**Currency** Master,سجل **العملات**
DocType: Email Account,No of emails remaining to be synced,عدد رسائل البريد الإلكتروني المتبقية ليكون مزامن
apps/frappe/frappe/public/js/frappe/upload.js +203,Uploading,تحميل
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,الرجاء حفظ المستند قبل التعيين
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,انقر هنا لنشر البق والاقتراحات
DocType: Website Settings,Address and other legal information you may want to put in the footer.,العنوان وغيرها من المعلومات القانونية قد تحتاج لوضع في تذييل الصفحة.
DocType: Website Sidebar Item,Website Sidebar Item,موقع الشريط الجانبي البند
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +44,{0} records updated,{0} السجلات محدثة
@@ -979,12 +984,10 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,واضح
apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,يجب على كل أحداث اليوم ينتهي في نفس اليوم.
DocType: Communication,User Tags,بطاقات المستخدم
apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,جار جلب الصور ..
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,الإعداد&gt; المستخدم
DocType: Workflow State,download-alt,تحميل بديل
apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},تنزيل التطبيقات {0}
DocType: Communication,Feedback Request,طلب التعليق
apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,الحقول التالية مفقودة:
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Experimental Feature,ميزة تجريبية
apps/frappe/frappe/www/login.html +30,Sign in,تسجيل الدخول
DocType: Web Page,Main Section,القسم العام
DocType: Page,Icon,رمز
@@ -1086,7 +1089,7 @@ DocType: Customize Form,Customize Form,تخصيص نموذج
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +104,Mandatory field: set role for,حقل إلزامي: دور المحددة ل
DocType: Currency,A symbol for this currency. For e.g. $,رمز هذه العملة. ر.س مثلاً
apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,الإطار فرابي
apps/frappe/frappe/model/naming.py +174,Name of {0} cannot be {1},اسم {0} لا يمكن أن يكون {1}
apps/frappe/frappe/model/naming.py +180,Name of {0} cannot be {1},اسم {0} لا يمكن أن يكون {1}
apps/frappe/frappe/config/setup.py +46,Show or hide modules globally.,إظهار أو إخفاء وحدات على مستوى البرنامج.
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,من تاريخ
apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,نجاح
@@ -1107,7 +1110,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +308,Add A New
apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js +3,See on Website,ترى على الموقع
DocType: Workflow Transition,Next State,الحالية التالية
DocType: User,Block Modules,كتلة وحدات
apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,الرجوع إلى طول {0} ل&#39;{1}&#39; في &#39;{2}&#39;. تحديد طول ك {3} سوف يسبب الاقتطاع من البيانات.
apps/frappe/frappe/model/db_schema.py +142,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,الرجوع إلى طول {0} ل&#39;{1}&#39; في &#39;{2}&#39;. تحديد طول ك {3} سوف يسبب الاقتطاع من البيانات.
DocType: Print Format,Custom CSS,مخصصةCSS
apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,إضافة تعليق
apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},تجاهل: {0} إلى {1}
@@ -1199,13 +1202,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,
DocType: Custom Role,Custom Role,دور مخصص
apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,الصفحة الرئيسية / مجلد اختبار 2
DocType: System Settings,Ignore User Permissions If Missing,تجاهل أذونات المستخدم إذا مفقود
apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,الرجاء حفظ المستند قبل تحميلها.
apps/frappe/frappe/public/js/frappe/form/control.js +1075,Please save the document before uploading.,الرجاء حفظ المستند قبل تحميلها.
apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,ادخل رقمك السري
DocType: Dropbox Settings,Dropbox Access Secret,دروببوإكس الدخول السرية
apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,إضافة تعليق آخر
apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,تعديل DOCTYPE
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,إلغاء الاشتراك من النشرة الإخبارية
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,Unsubscribed from Newsletter,إلغاء الاشتراك من النشرة الإخبارية
apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,الطي يجب أن يأتي قبل فاصل القسم
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,تحت التطوير
apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,التعديل الأخير من قبل
DocType: Workflow State,hand-down,إلى أسفل اليد
DocType: Address,GST State,غست الدولة
@@ -1226,6 +1230,7 @@ DocType: Workflow State,Tag,بطاقة
DocType: Custom Script,Script,سيناريو
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,الإعدادات
DocType: Website Theme,Text Color,لون الخط
apps/frappe/frappe/desk/page/backups/backups.py +72,Backup job is already queued. You will receive an email with the download link,وظيفة النسخ الاحتياطي بالفعل في قائمة الانتظار. سوف تتلقى رسالة بريد إلكتروني مع رابط التحميل
DocType: Desktop Icon,Force Show,القوة مشاهدة
apps/frappe/frappe/auth.py +78,Invalid Request,طلب غير صالح
apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,هذا النموذج لا يحتوي على اي مدخل
@@ -1336,7 +1341,7 @@ DocType: DocField,Name,اسم
apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,لقد تجاوزت مساحة أقصى {0} لخطتك. {1}.
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,ابحث في المستندات
DocType: OAuth Authorization Code,Valid,صالح
apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,فتح الرابط
apps/frappe/frappe/public/js/frappe/form/control.js +1354,Open Link,فتح الرابط
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,لغتك
apps/frappe/frappe/desk/form/load.py +46,Did not load,لم يتم تحميل
apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,اضف سطر
@@ -1354,6 +1359,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.",وثائق معينة ، مثل الفاتورة ، لا ينبغي تغييره مرة واحدة نهائية . و دعا الدولة النهائية ل هذه الوثائق المقدمة . يمكنك تقييد الأدوار التي يمكن إرسال.
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,لا يسمح لك لتصدير هذا التقرير
apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,عنصر واحد محدد
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,"<p style=""""> لم يتم العثور على نتائج ل ' </p>"
DocType: Newsletter,Test Email Address,اختبار عنوان البريد الإلكتروني
DocType: ToDo,Sender,مرسل
DocType: GSuite Settings,Google Apps Script,غوغل أبس سكريبت
@@ -1461,7 +1467,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Ple
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,تحميل تقرير
apps/frappe/frappe/limits.py +72,Your subscription will expire today.,صلاحية اشتراكك ستنتهي اليوم.
DocType: Page,Standard,معيار
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,إرفاق ملف
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,إرفاق ملف
apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,إخطار تعديل كلمة السر
apps/frappe/frappe/desk/page/backups/backups.html +13,Size,حجم
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,التنازل الكامل
@@ -1491,7 +1497,7 @@ apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversat
apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},خيارات لم يتم تعيين لحقل الرابط {0}
DocType: Customize Form,"Must be of type ""Attach Image""",يجب أن يكون من نوع &quot;إرفاق صورة&quot;
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,إلغاء تحديد الكل
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},لا يمكنك ضبطه &quot;للقراءة فقط&quot; لحقل {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +199,You cannot unset 'Read Only' for field {0},لا يمكنك ضبطه &quot;للقراءة فقط&quot; لحقل {0}
DocType: Auto Email Report,Zero means send records updated at anytime,صفر يعني إرسال سجلات تحديثها في أي وقت
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +22,Complete Setup,الإعداد الكامل
DocType: Workflow State,asterisk,النجمة
@@ -1505,7 +1511,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +98,Week,أسبو
DocType: Social Login Keys,Google,جوجل
DocType: Email Domain,Example Email Address,مثال عنوان البريد الإلكتروني
apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,الأكثر استخداما
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Unsubscribe from Newsletter,إلغاء الاشتراك من النشرة الإخبارية
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe from Newsletter,إلغاء الاشتراك من النشرة الإخبارية
apps/frappe/frappe/www/login.html +101,Forgot Password,هل نسيت كلمة المرور
DocType: Dropbox Settings,Backup Frequency,معدل النسخ الاحتياطي
DocType: Workflow State,Inverse,معكوس
@@ -1583,10 +1589,11 @@ apps/frappe/frappe/config/setup.py +209,"Actions for workflow (e.g. Approve, Can
DocType: Workflow State,flag,علم
apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +57,Feedback Request is already sent to user,تم إرسال طلب ردود الفعل إلى المستخدم سابقا
DocType: Web Page,Text Align,محاذاة النص
apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},الإسم لا يمكن أن يحتوي على أحرف خاصة مثل {0}
apps/frappe/frappe/model/naming.py +185,Name cannot contain special characters like {0},الإسم لا يمكن أن يحتوي على أحرف خاصة مثل {0}
DocType: Contact Us Settings,Forward To Email Address,انتقل إلى عنوان البريد الإلكتروني
apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,إظهار جميع البيانات
apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,يجب أن يكون حقل العنوان ل fieldname صالحة
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,لم يتم إعداد حساب البريد الإلكتروني. يرجى إنشاء حساب بريد إلكتروني جديد من الإعداد&gt; البريد الإلكتروني&gt; حساب البريد الإلكتروني
apps/frappe/frappe/config/core.py +7,Documents,وثائق
DocType: Email Flag Queue,Is Completed,قد اكتمل
apps/frappe/frappe/www/me.html +22,Edit Profile,تعديل الملف الشخصي
@@ -1596,7 +1603,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi
myfield
eval:doc.myfield=='My Value'
eval:doc.age&gt;18",سيظهر هذا المجال إلا إذا كان FIELDNAME المحدد هنا له قيمة أو قواعد صحيحة (أمثلة): myfield حدة التقييم: doc.myfield == &#39;بلدي القيمة &quot;وحدة التقييم: doc.age&gt; 18
apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,اليوم
apps/frappe/frappe/public/js/frappe/form/control.js +764,Today,اليوم
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",وبمجرد الانتهاء من تعيين هذه ، سوف يكون المستخدمون قادرين فقط الوصول إلى المستندات (على سبيل المثال مدونة بوست) حيث يوجد رابط (مثل مدون ) .
DocType: Error Log,Log of Scheduler Errors,سجل من الأخطاء جدولة
DocType: User,Bio,نبذة
@@ -1655,7 +1662,7 @@ DocType: Print Format,Js,شبيبة
apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,حدد تنسيق طباعة
apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,نماذج لوحة المفاتيح قصيرة من السهل تخمين
DocType: Portal Settings,Portal Menu,البوابة القائمة
apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,يجب أن يكون طول {0} بين 1 و 1000
apps/frappe/frappe/model/db_schema.py +115,Length of {0} should be between 1 and 1000,يجب أن يكون طول {0} بين 1 و 1000
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,البحث عن أي شيء
DocType: DocField,Print Hide,طباعة إخفاء
apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,أدخل القيمة
@@ -1708,8 +1715,7 @@ apps/frappe/frappe/model/document.py +564,Cannot change docstatus from 0 to 2,ل
DocType: User Permission for Page and Report,Roles Permission,أدوار إذن
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,تحديث
DocType: Error Snapshot,Snapshot View,لقطة مشاهدة
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,الرجاء حفظ النشرة قبل الإرسال
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} سنة (سنوات)
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +101,Please save the Newsletter before sending,الرجاء حفظ النشرة قبل الإرسال
apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},يجب أن تكون الخيارات ل DOCTYPE صالحة لحقل {0} في {1} الصف
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,تحرير خصائص
DocType: Patch Log,List of patches executed,قائمة من بقع أعدمت
@@ -1727,7 +1733,7 @@ apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,تعديل ك
DocType: Workflow State,trash,القمامة
DocType: System Settings,Older backups will be automatically deleted,سيتم حذف النسخ الاحتياطية القديمة تلقائيا
DocType: Event,Leave blank to repeat always,اتركه فارغ لتكرار دائما
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +192,Confirmed,مؤكد
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,Confirmed,مؤكد
DocType: Event,Ends on,ينتهي في
DocType: Payment Gateway,Gateway,بوابة
apps/frappe/frappe/public/js/frappe/form/linked_with.js +116,Not enough permission to see links,ليس هناك إذن كاف لمشاهدة الروابط
@@ -1758,7 +1764,6 @@ DocType: Contact,Purchase Manager,مدير المشتريات
DocType: Custom Script,Sample,عينة
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,غير مصنف الكلمات
DocType: Event,Every Week,كل أسبوع
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,لم يتم إعداد حساب البريد الإلكتروني. يرجى إنشاء حساب بريد إلكتروني جديد من الإعداد&gt; البريد الإلكتروني&gt; حساب البريد الإلكتروني
apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,انقر هنا للتحقق من الاستخدام الخاص بك أو الترقية إلى خطة أعلى
DocType: Custom Field,Is Mandatory Field,هو حقل إلزامي
DocType: User,Website User,موقع العضو
@@ -1766,7 +1771,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +10,Not equals,
DocType: Integration Request,Integration Request Service,التكامل طلب الخدمة
DocType: Website Script,Script to attach to all web pages.,النصي لنعلق على كل صفحات الويب.
DocType: Web Form,Allow Multiple,السماح بالتعدد
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +40,Assign,عين
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +44,Assign,عين
apps/frappe/frappe/config/setup.py +102,Import / Export Data from .csv files.,استيراد / تصدير البيانات من ملفات CSV.
DocType: Auto Email Report,Only Send Records Updated in Last X Hours,فقط إرسال السجلات التي تم تحديثها في آخر X ساعات
DocType: Communication,Feedback,Feedback
@@ -1846,7 +1851,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,المتب
apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,الرجاء حفظ قبل إرفاق.
apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),وأضاف {0} ({1})
apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},تم تعيين السمة الافتراضية في {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype لا يمكن تغييرها من {0} إلى {1} في {2} الصف
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +325,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype لا يمكن تغييرها من {0} إلى {1} في {2} الصف
apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,ضوابط دور
DocType: Help Article,Intermediate,متوسط
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,يمكنه القراءة
@@ -1861,9 +1866,9 @@ apps/frappe/frappe/core/doctype/user/user.js +42,Refreshing...,تحديث ...
DocType: Event,Starts on,يبدأ يوم
DocType: System Settings,System Settings,إعدادات النظام
apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,فشل بدء الجلسة
apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},وقد أرسلت هذه الرسالة الى {0} ونسخها إلى {1}
apps/frappe/frappe/email/queue.py +470,This email was sent to {0} and copied to {1},وقد أرسلت هذه الرسالة الى {0} ونسخها إلى {1}
DocType: Workflow State,th,ال
apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},انشاء جديد {0}
apps/frappe/frappe/public/js/frappe/form/control.js +1517,Create a new {0},انشاء جديد {0}
DocType: Email Rule,Is Spam,هو المزعج
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},تقرير {0}
apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},مفتوحة {0}
@@ -1875,12 +1880,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon a
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,مكررة
DocType: Newsletter,Create and Send Newsletters,إنشاء وإرسال النشرات الإخبارية
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date must be before To Date,يجب أن تكون من تاريخ إلى تاريخ قبل
DocType: Address,Andaman and Nicobar Islands,أندامان ونيكوبار
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +216,GSuite Document,وثيقة غسويت
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +29,Please specify which value field must be checked,يرجى تحديد أي يجب فحص حقل القيمة
apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"""Parent"" signifies the parent table in which this row must be added","""الأم"" يدل على الجدول الأصل الذي يجب أن يضاف هذا الصف"
DocType: Website Theme,Apply Style,تطبيق نمط
DocType: Feedback Request,Feedback Rating,ردود الفعل التصويت
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared With,مشترك مع
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,مشترك مع
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,الإعداد&gt; مدير أذونات المستخدم
DocType: Help Category,Help Articles,مقالات المساعدة
,Modules Setup,إعداد وحدات
apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,النوع:
@@ -1912,7 +1919,7 @@ DocType: OAuth Client,App Client ID,هوية العميل للتطبيق
DocType: Kanban Board,Kanban Board Name,اسم مجلس كانبان
DocType: Email Alert Recipient,"Expression, Optional",التعبير والاختياري
DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,انسخ هذه الشفرة والصقها في ملف Code.gs وفريده في مشروعك على script.google.com
apps/frappe/frappe/email/queue.py +456,This email was sent to {0},أرسلت هذه الرسالة إلى {0}
apps/frappe/frappe/email/queue.py +472,This email was sent to {0},أرسلت هذه الرسالة إلى {0}
DocType: DocField,Remember Last Selected Value,تذكر آخر مختارة القيمة
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +334,Please select Document Type,الرجاء تحديد نوع المستند
DocType: Email Account,Check this to pull emails from your mailbox,التحقق من ذلك لسحب رسائل البريد الإلكتروني من صندوق البريد
@@ -1927,6 +1934,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,ال
DocType: Feedback Trigger,Email Field,البريد الإلكتروني الميدان
apps/frappe/frappe/www/update-password.html +59,New Password Required.,كلمة مرور جديدة مطلوبة.
apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} مشاركة هذه الوثيقة مع {1}
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,الإعداد&gt; المستخدم
DocType: Website Settings,Brand Image,صورة العلامة التجارية
DocType: Print Settings,A4,أ4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.",الإعداد من أعلى الملاحة تذييل وبار والشعار.
@@ -1994,8 +2002,8 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa
apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},تعذر قراءة تنسيق الملف {0}
DocType: Auto Email Report,Filter Data,تصفية البيانات
apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,إضافة علامة
apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,يرجى إرفاق ملف الأول.
apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator",كانت هناك بعض الأخطاء تحديد اسم، يرجى الاتصال بمسؤول
apps/frappe/frappe/public/js/frappe/form/control.js +1335,Please attach a file first.,يرجى إرفاق ملف الأول.
apps/frappe/frappe/model/naming.py +174,"There were some errors setting the name, please contact the administrator",كانت هناك بعض الأخطاء تحديد اسم، يرجى الاتصال بمسؤول
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,حساب البريد الإلكتروني الوارد غير صحيح
apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \
Please enter a valid email address so that we can get back.",يبدو أنك كتبت اسمك بدلا من بريدك الإلكتروني. \ يرجى إدخال عنوان بريد إلكتروني صالح حتى نتمكن من العودة.
@@ -2047,7 +2055,6 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,
DocType: Custom DocPerm,Create,انشاء
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},تصفية الباطلة: {0}
DocType: Email Account,no failed attempts,محاولات فاشلة لا
apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,لم يتم العثور على قالب عنوان افتراضي. الرجاء إنشاء ملف جديد من الإعداد&gt; الطباعة والعلامة التجارية&gt; نموذج العنوان.
DocType: GSuite Settings,refresh_token,refresh_token
DocType: Dropbox Settings,App Access Key,مفتاح وصول التطبيق
DocType: OAuth Bearer Token,Access Token,رمز وصول
@@ -2073,6 +2080,7 @@ apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl +
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},إنشاء {0}
apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,حساب بريد إلكتروني جديد
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +28,Document Restored,تمت استعادة المستند
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +203,You can't set 'Options' for field {0},لا يمكنك تعيين &quot;خيارات&quot; للحقل {0}
apps/frappe/frappe/core/page/usage_info/usage_info.html +86,Size (MB),الحجم (MB)
DocType: Help Article,Author,مؤلف
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +10,Resume Sending,استئناف إرسال
@@ -2082,7 +2090,7 @@ DocType: Print Settings,Monochrome,أحادية اللون
DocType: Address,Purchase User,عضو الشراء
DocType: Workflow,"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.",مختلفة &quot;الدول&quot; هذه الوثيقة يمكن أن توجد فيها مثل &quot;فتح&quot; و &quot;الموافقة معلقة&quot; الخ.
apps/frappe/frappe/utils/verified_command.py +43,This link is invalid or expired. Please make sure you have pasted correctly.,هذا الرابط غير صالح أو منتهية الصلاحية. من فضلك تأكد من ولصق بشكل صحيح.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> تم إلغاء اشتراك بنجاح من هذه القائمة البريدية.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +136,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> تم إلغاء اشتراك بنجاح من هذه القائمة البريدية.
DocType: Web Page,Slideshow,عرض الشرائح
apps/frappe/frappe/contacts/doctype/address_template/address_template.py +31,Default Address Template cannot be deleted,لا يمكن حذف القالب الافتراضي العنوان
DocType: Contact,Maintenance Manager,مدير الصيانة
@@ -2103,7 +2111,7 @@ apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a r
DocType: System Settings,Apply Strict User Permissions,تطبيق ضوابط المستخدم الصارمة
DocType: DocField,Allow Bulk Edit,السماح بالتحرير المجمع
DocType: Blog Post,Blog Post,منشور المدونه
apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,البحث المتقدم
apps/frappe/frappe/public/js/frappe/form/control.js +1527,Advanced Search,البحث المتقدم
apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,تم إرسال إرشادات إعادة تعيين كلمة السر إلى بريدك الإلكتروني
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \
higher levels for field level permissions.",المستوى 0 هو أذونات مستوى المستند، \ مستويات أعلى لأذونات مستوى المجال.
@@ -2128,13 +2136,13 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new re
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,البحث
DocType: Currency,Fraction,جزء
DocType: LDAP Settings,LDAP First Name Field,LDAP الاسم الميدان
apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,اختر من القائمة إرفاق ملفات
apps/frappe/frappe/public/js/frappe/form/control.js +1085,Select from existing attachments,اختر من القائمة إرفاق ملفات
DocType: Custom Field,Field Description,وصف الحقل
apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,الأسم: لم تحدد عن طريق موجه
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,البريد الإلكتروني الوارد
DocType: Auto Email Report,Filters Display,عرض المرشحات
DocType: Website Theme,Top Bar Color,أعلى بار اللون
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Do you want to unsubscribe from this mailing list?,هل تريد إلغاء الاشتراك من القائمة البريدية؟
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Do you want to unsubscribe from this mailing list?,هل تريد إلغاء الاشتراك من القائمة البريدية؟
DocType: Address,Plant,مصنع
apps/frappe/frappe/core/doctype/communication/communication.js +65,Reply All,الرد على الجميع
DocType: DocType,Setup,الإعدادات
@@ -2177,7 +2185,7 @@ DocType: User,Send Notifications for Transactions I Follow,إرسال الإشع
apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write",{0} : لا يمكن تحديد تأكيد ، الغاء ، تعديل دون كتابة
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,هل أنت متأكد أنك تريد حذف المرفق؟
apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} <a href=""#Form/{0}/{1}"">{1}</a> is linked with {2} <a href=""#Form/{2}/{3}"">{3}</a>","لا يمكن حذف أو إلغاء ل{0} <a href=""#Form/{0}/{1}"">{1}</a> يرتبط مع {2} <a href=""#Form/{2}/{3}"">{3}</a>"
apps/frappe/frappe/__init__.py +1062,Thank you,شكرا
apps/frappe/frappe/__init__.py +1070,Thank you,شكرا
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,حفظ
DocType: Print Settings,Print Style Preview,معاينة قبل الطباعة ستايل
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,إختبار_المجلد
@@ -2192,7 +2200,7 @@ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,إضاف
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,م
,Role Permissions Manager,مدير ضوابط الأدوار
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,اسم الشكل الجديد طباعة
apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,مسح المرفقات
apps/frappe/frappe/public/js/frappe/form/control.js +1087,Clear Attachment,مسح المرفقات
apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,إلزامية:
,User Permissions Manager,مدير ضوابط المستخدم
DocType: Property Setter,New value to be set,القيمة الجديدة التي سيتم تحديدها
@@ -2217,7 +2225,7 @@ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment C
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,مسح سجلات سجلات الاخطاء
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,يرجى تحديد تصنيف
DocType: Email Account,Notify if unreplied for (in mins),يخطر إذا لا تحوي على ردود ل (في دقيقة)
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,منذ يومين
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +501,2 days ago,منذ يومين
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,تصنيف تدوينات المدونة
DocType: Workflow State,Time,الوقت
DocType: DocField,Attach,إرفاق
@@ -2233,6 +2241,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,حجم
DocType: GSuite Templates,Template Name,اسم القالب
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,نوع جديد من الوثيقة
DocType: Custom DocPerm,Read,قرأ
DocType: Address,Chhattisgarh,تشهاتيسجاره
DocType: Role Permission for Page and Report,Role Permission for Page and Report,إذن دور للصفحة وتقرير
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,محاذاة القيمة
apps/frappe/frappe/www/update-password.html +14,Old Password,كلمة المرور القديمة
@@ -2280,7 +2289,7 @@ apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your ema
can get back to you. Thanks!","الرجاء إدخال كل من البريد الإلكتروني ورسالة حتى نتمكن \
يمكن أن نعود اليكم. شكر!"
apps/frappe/frappe/email/smtp.py +170,Could not connect to outgoing email server,لا يمكن الاتصال بخادم البريد الإلكتروني المنتهية ولايته
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +162,Thank you for your interest in subscribing to our updates,شكرا لك على اهتمامك في الاشتراك في تحديثات لدينا
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Thank you for your interest in subscribing to our updates,شكرا لك على اهتمامك في الاشتراك في تحديثات لدينا
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Custom Column,عمود مخصص
DocType: Workflow State,resize-full,تغيير حجم كامل
DocType: Workflow State,off,بعيدا
@@ -2343,7 +2352,7 @@ DocType: Address,Telangana,تيلانجانا
apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,الافتراضي ل{0} يجب أن يكون خيارا
DocType: Tag Doc Category,Tag Doc Category,العلامة دوك الفئة
DocType: User,User Image,صورة المستخدم
apps/frappe/frappe/email/queue.py +289,Emails are muted,رسائل البريد الإلكتروني هي صامتة
apps/frappe/frappe/email/queue.py +304,Emails are muted,رسائل البريد الإلكتروني هي صامتة
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,CTRL + Up
DocType: Website Theme,Heading Style,نمط العنوان
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +183,A new Project with this name will be created,سيتم إنشاء مشروع جديد بهذا الإسم
@@ -2561,7 +2570,6 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,جرس
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,حدث خطأ في تنبيه البريد الإلكتروني
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,مشاركة هذه الوثيقة مع
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,الإعداد&gt; مدير أذونات المستخدم
apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} لا يمكن أن يكون تفريعة لأن لديه تفريعات أخرى
DocType: Communication,Info,معلومات
apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,إضافة مرفق
@@ -2617,7 +2625,7 @@ apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,تنسيق
DocType: Email Alert,Send days before or after the reference date,إرسال أيام قبل أو بعد التاريخ المرجعي
DocType: User,Allow user to login only after this hour (0-24),تسمح للمستخدم لتسجيل الدخول فقط بعد هذه الساعة (0-24)
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,قيمة
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +165,Click here to verify,انقر هنا للتأكيد
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +166,Click here to verify,انقر هنا للتأكيد
apps/frappe/frappe/utils/password_strength.py +178,Predictable substitutions like '@' instead of 'a' don't help very much.,بدائل يمكن التنبؤ بها مثل &#39;@&#39; بدلا من &#39;&#39; لا يساعد كثيرا جدا.
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,يسندها عني
apps/frappe/frappe/utils/data.py +462,Zero,صفر
@@ -2629,6 +2637,7 @@ DocType: ToDo,Priority,أفضلية
DocType: Email Queue,Unsubscribe Param,إلغاء الاشتراك بارام
DocType: Auto Email Report,Weekly,الأسبوعية
DocType: Communication,In Reply To,ردا على
apps/frappe/frappe/contacts/doctype/address/address.py +189,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,لم يتم العثور على قالب عنوان افتراضي. الرجاء إنشاء ملف جديد من الإعداد&gt; الطباعة والعلامة التجارية&gt; نموذج العنوان.
DocType: DocType,Allow Import (via Data Import Tool),السماح بالاستيراد (عبر أداة استيراد البيانات)
apps/frappe/frappe/templates/print_formats/standard_macros.html +30,Sr,ريال سعودى
DocType: DocField,Float,رقم عشري
@@ -2719,7 +2728,6 @@ apps/frappe/frappe/commands/site.py +451,Invalid limit {0},حد غير صالح
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,قائمة نوع مستند
DocType: Event,Ref Type,المرجع نوع
apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","إذا كنت تحميل سجلات جديدة، وترك ""اسم"" (ID) العمود فارغا."
DocType: Address,Chattisgarh,شهاتيسغار
apps/frappe/frappe/config/core.py +47,Errors in Background Events,أخطاء في خلفية الأحداث
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,عدد الأعمدة
DocType: Workflow State,Calendar,تقويم
@@ -2751,7 +2759,7 @@ apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},احا
DocType: Integration Request,Remote,عن بعد
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,إحسب
apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,يرجى تحديد DOCTYPE أولا
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,تأكيد البريد الإلكتروني الخاص بك
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +174,Confirm Your Email,تأكيد البريد الإلكتروني الخاص بك
apps/frappe/frappe/www/login.html +42,Or login with,أو الدخول مع
DocType: Error Snapshot,Locals,السكان المحليين
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},ترسل عن طريق {0} على {1}: {2}
@@ -2768,7 +2776,7 @@ DocType: Web Page,Web Page,صفحة على الإنترنت
DocType: Blog Category,Blogger,مدون
apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},"""في البحث العام"" غير مسموح للنوع {0} في الصف {1}"
apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,عرض القائمة
apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},يجب أن تكون الآن في شكل : {0}
apps/frappe/frappe/public/js/frappe/form/control.js +810,Date must be in format: {0},يجب أن تكون الآن في شكل : {0}
DocType: Workflow,Don't Override Status,لا تجاوز الحالة
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,يرجى إعطاء تقدير.
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} طلب ملاحظات
@@ -2801,7 +2809,7 @@ DocType: Custom DocPerm,Report,تقرير
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,يجب أن تكون كمية أكبر من 0.
apps/frappe/frappe/desk/reportview.py +107,{0} is saved,{0} تم حفظها
apps/frappe/frappe/core/doctype/user/user.py +327,User {0} cannot be renamed,المستخدم {0} لا يمكن إعادة تسمية
apps/frappe/frappe/model/db_schema.py +107,Fieldname is limited to 64 characters ({0}),يقتصر FIELDNAME إلى 64 حرفا ({0})
apps/frappe/frappe/model/db_schema.py +108,Fieldname is limited to 64 characters ({0}),يقتصر FIELDNAME إلى 64 حرفا ({0})
apps/frappe/frappe/config/desk.py +59,Email Group List,البريد الإلكتروني قائمة المجموعة
DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],ملف أيقونة بصيغة زico . يجب أن تكون 16 × 16 بكسل. تم إنشاؤها باستخدام مولد فافيكون. [favicon-generator.org]
DocType: Auto Email Report,Format,شكل
@@ -2879,7 +2887,7 @@ DocType: Website Settings,Title Prefix,عنوان الاختصار
DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,سيتم إرسال إخطارات ورسائل السائبة من هذا الخادم المنتهية ولايته.
DocType: Workflow State,cog,تحكم في
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on Migrate,المزامنة على ترحيل
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,يطلع عليها حاليا
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Currently Viewing,يطلع عليها حاليا
DocType: DocField,Default,الافتراضي
apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} أضيف
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',البحث عن &#39;{0}&#39;
@@ -2939,7 +2947,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +771,Report was
DocType: Print Settings,Print Style,الطباعة ستايل
apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,غير مرتبط بأي سجل
DocType: Custom DocPerm,Import,استيراد
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +178,Row {0}: Not allowed to enable Allow on Submit for standard fields,صف {0}: غير مسموح لتمكين السماح إرسال على لحقول القياسية
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +180,Row {0}: Not allowed to enable Allow on Submit for standard fields,صف {0}: غير مسموح لتمكين السماح إرسال على لحقول القياسية
apps/frappe/frappe/config/setup.py +100,Import / Export Data,استيراد / تصدير البيانات
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,أدوار القياسية لا يمكن إعادة تسمية
DocType: Communication,To and CC,لوCC
@@ -2966,7 +2974,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo
DocType: Auto Email Report,Filter Meta,تصفية ميتا
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,النص ليتم عرضها لرابط صفحة الانترنت إذا هذا النموذج لديه صفحة على شبكة الإنترنت. الطريق للرابط سيتم تكوينه تلقائيا على أساس `` page_name` وparent_website_route`
DocType: Feedback Request,Feedback Trigger,ردود الفعل الزناد
apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,الرجاء تعيين {0} الأولى
apps/frappe/frappe/public/js/frappe/form/control.js +1741,Please set {0} first,الرجاء تعيين {0} الأولى
DocType: Unhandled Email,Message-id,معرف الرسالة
DocType: Patch Log,Patch,بقعة
DocType: Async Task,Failed,باءت بالفشل


+ 72
- 64
frappe/translations/bg.csv Datei anzeigen

@@ -14,8 +14,9 @@ apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,"
DocType: User,Facebook Username,Facebook потребителско име
DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Забележка: няколко сесии ще бъдат разрешени в случай на мобилно устройство
apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Активирана поща за употреба {потребители}
apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Не може да изпратите този имейл. Можете да са пресекли границата на изпращане {0} имейли за този месец.
apps/frappe/frappe/email/queue.py +225,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Не може да изпратите този имейл. Можете да са пресекли границата на изпращане {0} имейли за този месец.
apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Постоянно изпращане {0}?
apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,Изтегляне на архивни файлове
DocType: Address,County,Окръг
DocType: Workflow,If Checked workflow status will not override status in list view,"Ако е избрано, статуса на работния процес не ще замени статус в списъчен изглед"
apps/frappe/frappe/client.py +280,Invalid file path: {0},Невалиден файл пътя: {0}
@@ -80,10 +81,10 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,"Наст
apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Администратора е логнат
DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Опции за контакти, като &quot;Продажби Query, Support Query&quot; и т.н., всеки на нов ред или разделени със запетаи."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Изтегляне
apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Insert
apps/frappe/frappe/public/js/frappe/form/control.js +1979,Insert,Insert
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Изберете {0}
DocType: Print Settings,Classic,Класически
DocType: Desktop Icon,Color,Цвят
DocType: DocField,Color,Цвят
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +54,For ranges,За диапазони
DocType: Workflow State,indent-right,дясно подравняване
DocType: Has Role,Has Role,Има роля
@@ -100,7 +101,7 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To impor
DocType: DocType,Default Print Format,Формат за печат по подразбиране
DocType: Workflow State,Tags,Етикети
apps/frappe/frappe/public/js/frappe/form/workflow.js +33,None: End of Workflow,Няма: Край на Workflow
apps/frappe/frappe/model/db_schema.py +346,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} поле не може да бъде зададено като уникално в {1}, тъй като има не-уникални съществуващи стойности"
apps/frappe/frappe/model/db_schema.py +347,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} поле не може да бъде зададено като уникално в {1}, тъй като има не-уникални съществуващи стойности"
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +47,Document Types,Типове документи
DocType: Address,Jammu and Kashmir,Джаму и Кашмир
DocType: Workflow,Workflow State Field,Workflow членка Невярно
@@ -231,7 +232,7 @@ DocType: Workflow,Transition Rules,Правила за прехвърляне
apps/frappe/frappe/core/doctype/report/report.js +11,Example:,Пример:
DocType: Workflow,Defines workflow states and rules for a document.,Определя работния процес членки и правила за достъп до документ.
DocType: Workflow State,Filter,Филтър
apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Име на поле {0} не може да има специални символи като {1}
apps/frappe/frappe/model/db_schema.py +564,Fieldname {0} cannot have special characters like {1},Име на поле {0} не може да има специални символи като {1}
apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Актуализиране на много стойности едновременно.
apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,"Грешка: Документ е бил променен, след като сте го отворили"
apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} излезли: {1}
@@ -260,7 +261,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Махни
apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Абонаментът ви е изтекъл на {0}. За да се поднови, {1}."
DocType: Workflow State,plus-sign,плюс знак
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Настройката е вече изпълнена
apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} не е инсталиран
apps/frappe/frappe/__init__.py +897,App {0} is not installed,App {0} не е инсталиран
DocType: Workflow State,Refresh,Обнови
DocType: Event,Public,Публичен
apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Няма за какво да се покаже
@@ -339,7 +340,6 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Редактиране на Заглавие
DocType: File,File URL,URL на файла
DocType: Version,Table HTML,Таблица HTML
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> Няма намерени резултати за ' </p>
apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Добави Абонати
apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Предстоящи събития за днес
DocType: Email Alert Recipient,Email By Document Field,Email от документ Невярно
@@ -404,7 +404,6 @@ DocType: Desktop Icon,Link,Препратка
apps/frappe/frappe/utils/file_manager.py +96,No file attached,Няма прикачени файлове
DocType: Version,Version,Версия
DocType: User,Fill Screen,Запълване на екрана
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,"Моля, настройте по подразбиране имейл акаунт от Setup&gt; Email&gt; Email Account"
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Не може да се покаже този доклад дърво, поради липсващи данни. Най-вероятно, той се филтрира поради разрешения."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Изберете File
apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Редакция чрез качване
@@ -474,9 +473,9 @@ DocType: User,Reset Password Key,Reset Password Key
DocType: Email Account,Enable Auto Reply,Активирайте Auto Отговор
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Не е видян
DocType: Workflow State,zoom-in,увеличи
apps/frappe/frappe/email/queue.py +219,Unsubscribe from this list,Отписване от този списък
apps/frappe/frappe/email/queue.py +234,Unsubscribe from this list,Отписване от този списък
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Reference DocType and Reference Name are required,Референтен DocType и справочник име са задължителни
apps/frappe/frappe/utils/jinja.py +35,Syntax error in template,Синтактична грешка в шаблон
apps/frappe/frappe/utils/jinja.py +51,Syntax error in template,Синтактична грешка в шаблон
DocType: DocField,Width,Широчина
DocType: Email Account,Notify if unreplied,Уведоми за неотговорени
DocType: System Settings,Minimum Password Score,Минимален резултат за парола
@@ -560,6 +559,7 @@ DocType: Custom Field,Select the label after which you want to insert new field.
DocType: User,Last Login,Последно влизане
apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Fieldname се изисква в ред {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Колона
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,"Моля, настройте по подразбиране имейл акаунта от Setup&gt; Email&gt; Email Account"
DocType: Custom Field,Adds a custom field to a DocType,Добавя потребителско поле към DocType
DocType: File,Is Home Folder,Дали Home Folder
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} не е валиден имейл адрес
@@ -567,7 +567,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +733,Select atleast 1 reco
apps/frappe/frappe/core/doctype/has_role/has_role.py +13,User '{0}' already has the role '{1}',Потребителят &quot;{0}&quot; вече има ролята &quot;{1}&quot;
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,Качи и синхронизирай
apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Споделено с {0}
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe,Отписване
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +132,Unsubscribe,Отписване
DocType: Communication,Reference Name,Референтен номер Име
apps/frappe/frappe/public/js/frappe/toolbar.js +30,Chat Support,Поддръжка по чат
DocType: Error Snapshot,Exception,Изключение
@@ -585,7 +585,7 @@ DocType: Email Group,Newsletter Manager,Newsletter мениджъра
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Вариант 1
apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} до {1}
apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Журнал на грешки по време на заявки.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} е успешно добавен към Email група.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +194,{0} has been successfully added to the Email Group.,{0} е успешно добавен към Email група.
DocType: Address,Uttar Pradesh,Утар Прадеш
DocType: Address,Pondicherry,Пондичери
apps/frappe/frappe/public/js/frappe/upload.js +364,Make file(s) private or public?,"Направи файл (а), частен или обществен?"
@@ -616,7 +616,7 @@ DocType: Portal Settings,Portal Settings,Portal Settings
DocType: Web Page,0 is highest,0 е най-висока
apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,"Сигурни ли сте, че искате да се свържете отново тази комуникация да {0}?"
apps/frappe/frappe/www/login.html +104,Send Password,Изпрати парола
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +45,Attachments,Приложения
DocType: Email Queue,Attachments,Приложения
apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,Нямате права за достъп до този документ
DocType: Language,Language Name,Език - Име
DocType: Email Group Member,Email Group Member,Email Група държави
@@ -646,7 +646,7 @@ apps/frappe/frappe/utils/password_strength.py +78,Try to use a longer keyboard p
DocType: Feedback Trigger,Check Communication,Проверете Communication
DocType: Address,Rajasthan,Раджастан
apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Доклади Report Builder се управляват пряко от доклад строител. Нищо за правене.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,"Моля, потвърдете имейл адреса си"
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +164,Please verify your Email Address,"Моля, потвърдете имейл адреса си"
apps/frappe/frappe/model/document.py +903,none of,никой от
apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Изпрати ми копие
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Качване на потребителски достъпи
@@ -657,7 +657,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Si
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Канбан Табло {0} не съществува.
apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} в момента преглеждат този документ
DocType: ToDo,Assigned By Full Name,Възложени от Пълно име
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} актуализиран
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} актуализиран
apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Доклад не може да бъде определен за единични видове
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,Преди {0} дни
DocType: Email Account,Awaiting Password,Очаква парола
@@ -682,7 +682,7 @@ DocType: Workflow State,Stop,Спри
DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,"Препратка към страницата, която искате да отворите. Оставете празно, ако искате да го направите група."
DocType: DocType,Is Single,Дали Single
apps/frappe/frappe/core/doctype/user/user.py +720,Sign Up is disabled,Регистрацията е забранена
apps/frappe/frappe/email/queue.py +278,{0} has left the conversation in {1} {2},{0} напусна разговора в {1} {2}
apps/frappe/frappe/email/queue.py +293,{0} has left the conversation in {1} {2},{0} напусна разговора в {1} {2}
DocType: Blogger,User ID of a Blogger,User ID на Blogger
apps/frappe/frappe/core/doctype/user/user.py +287,There should remain at least one System Manager,Трябва да има остане поне една система на мениджъра
DocType: GSuite Settings,Authorization Code,Разрешение Код
@@ -728,6 +728,7 @@ DocType: Event,Event,Събитие
apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","На {0}, {1} написа:"
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"Не можете да изтриете стандартно поле. Можете да го скрие, ако искате."
DocType: Top Bar Item,For top bar,За горния бар
apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,Очаква се резервно копие. Ще получите имейл с връзката за изтегляне
apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Не може да се идентифицира {0}
DocType: Address,Address,Адрес
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +3,Payment Failed,Неуспешно плащане
@@ -752,13 +753,13 @@ DocType: Web Form,Allow Print,Оставя Print
apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Не са инсталирани приложения
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Маркирайте полето като задължително
DocType: Communication,Clicked,Кликнато
apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Няма разрешение за &#39;{0}&#39; {1}
apps/frappe/frappe/public/js/legacy/form.js +950,No permission to '{0}' {1},Няма разрешение за &#39;{0}&#39; {1}
DocType: User,Google User ID,Google User ID
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Планирана да изпратите
DocType: DocType,Track Seen,Track Погледнато
apps/frappe/frappe/desk/form/utils.py +55,This method can only be used to create a Comment,Този метод може да се използва само за да се създаде коментар
DocType: Event,orange,оранжев
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,No {0} found,Номер {0} намерен
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +558,No {0} found,Номер {0} намерен
apps/frappe/frappe/config/setup.py +242,Add custom forms.,Добавяне на персонализирани форми.
apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} в {2}
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +419,submitted this document,подадено този документ
@@ -788,6 +789,7 @@ DocType: Newsletter Email Group,Newsletter Email Group,Група с имейл
DocType: Dropbox Settings,Integrations,Интеграции
DocType: DocField,Section Break,Раздел Break
DocType: Address,Warehouse,Склад
DocType: Address,Other Territory,Други територии
,Messages,Съобщения
apps/frappe/frappe/desk/page/applications/applications.js +49,Portal,Портал
DocType: Email Account,Use Different Email Login ID,Използвайте различен идентификационен номер за влизане в имейл
@@ -818,6 +820,7 @@ apps/frappe/frappe/utils/data.py +556,1 month ago,преди 1 месец
DocType: Contact,User ID,User ID
DocType: Communication,Sent,Изпратено
DocType: Address,Kerala,Керала
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} преди години
DocType: File,Lft,Lft
DocType: User,Simultaneous Sessions,Едновременни сесии
DocType: OAuth Client,Client Credentials,Клиент на идентификационни данни
@@ -834,7 +837,7 @@ DocType: Email Queue,Unsubscribe Method,Отписване Метод
DocType: GSuite Templates,Related DocType,Свързани DocType
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Редактирайте да добавите съдържание
apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,избиране на език
apps/frappe/frappe/__init__.py +509,No permission for {0},Няма разрешение за {0}
apps/frappe/frappe/__init__.py +517,No permission for {0},Няма разрешение за {0}
DocType: DocType,Advanced,Разширени
apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Изглежда API Key или API Secret не е наред !!!
apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Референтен номер: {0} {1}
@@ -845,6 +848,7 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P
DocType: Email Account,Yahoo Mail,Yahoo Mail
apps/frappe/frappe/limits.py +75,Your subscription will expire tomorrow.,Вашият абонамент изтича утре.
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +483,Saved!,Запазена!
apps/frappe/frappe/public/js/frappe/form/control.js +729,{0} is not a valid hex color,{0} не е валиден шестнадесетичен цвят
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,Мадам
apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Обновен {0}: {1}
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,Майстор
@@ -872,7 +876,7 @@ DocType: Report,Disabled,Неактивен
DocType: Workflow State,eye-close,око-близо
DocType: OAuth Provider Settings,OAuth Provider Settings,Настройки на OAuth доставчик
apps/frappe/frappe/config/setup.py +254,Applications,Приложения
apps/frappe/frappe/public/js/frappe/request.js +347,Report this issue,Съобщи за проблем
apps/frappe/frappe/public/js/frappe/request.js +349,Report this issue,Съобщи за проблем
apps/frappe/frappe/public/js/frappe/form/save.js +79,Name is required,Необходимо е име
DocType: Custom Script,Adds a custom script (client or server) to a DocType,Добавя потребителски скрипт (клиент или сървър) към DocType
DocType: Address,City/Town,Град
@@ -966,6 +970,7 @@ DocType: Currency,**Currency** Master,** Валути ** Главна
DocType: Email Account,No of emails remaining to be synced,"Брой на имейли, които остава да бъдат синхронизирани"
apps/frappe/frappe/public/js/frappe/upload.js +203,Uploading,Качване
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,"Моля, запишете документа преди присвояване"
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,"Кликнете тук, за да публикувате бъгове и предложения"
DocType: Website Settings,Address and other legal information you may want to put in the footer.,Адрес и друга правна информация които може да искате да поставите.
DocType: Website Sidebar Item,Website Sidebar Item,Сайт Sidebar Точка
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +44,{0} records updated,{0} обновени записи
@@ -979,12 +984,10 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,ясно
apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Всеки ден събития трябва да завършат в същия ден.
DocType: Communication,User Tags,Потребителски етикети
apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Извличане на изображения ..
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Настройка&gt; Потребител
DocType: Workflow State,download-alt,изтегляне-н
apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Изтеглянето на приложение {0}
DocType: Communication,Feedback Request,Обратна връзка - Заявка
apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,Следните полета са изчезнали:
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Experimental Feature,Експериментална Feature
apps/frappe/frappe/www/login.html +30,Sign in,Впиши се
DocType: Web Page,Main Section,Основен раздел
DocType: Page,Icon,Икона
@@ -1086,7 +1089,7 @@ DocType: Customize Form,Customize Form,Персонализирайте Форм
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +104,Mandatory field: set role for,Задължително поле: настройте роля за
DocType: Currency,A symbol for this currency. For e.g. $,Символ за тази валута. Например $
apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,Frappe Framework
apps/frappe/frappe/model/naming.py +174,Name of {0} cannot be {1},Име на {0} не може да бъде {1}
apps/frappe/frappe/model/naming.py +180,Name of {0} cannot be {1},Име на {0} не може да бъде {1}
apps/frappe/frappe/config/setup.py +46,Show or hide modules globally.,Показване или скриване на модули в световен мащаб.
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,От дата
apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,Успех
@@ -1107,7 +1110,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +308,Add A New
apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js +3,See on Website,Вижте на сайта
DocType: Workflow Transition,Next State,Следващ статус
DocType: User,Block Modules,Блок модули
apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Връщане дължина на {0} за &quot;{1}&quot; в &quot;{2}&quot;; Настройка на дължина като {3} ще доведе отрязване на данни.
apps/frappe/frappe/model/db_schema.py +142,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Връщане дължина на {0} за &quot;{1}&quot; в &quot;{2}&quot;; Настройка на дължина като {3} ще доведе отрязване на данни.
DocType: Print Format,Custom CSS,Потребителски CSS
apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Добавяне на коментар
apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Игнорирани: {0} до {1}
@@ -1199,13 +1202,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,
DocType: Custom Role,Custom Role,Персонализирана Роля
apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Начало / Test Folder 2
DocType: System Settings,Ignore User Permissions If Missing,Игнорирай потребителските права ако липсват
apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,"Моля, запишете документа, преди да качите."
apps/frappe/frappe/public/js/frappe/form/control.js +1075,Please save the document before uploading.,"Моля, запишете документа, преди да качите."
apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Въведете паролата си
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret
apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Добави Друг коментар
apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Редактиране на DocType
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Отписахте се от бюлетин
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,Unsubscribed from Newsletter,Отписахте се от бюлетин
apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Сгънете трябва да дойде преди Раздел Break
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,В процес на разработка
apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Последно променено от
DocType: Workflow State,hand-down,ръка-надолу
DocType: Address,GST State,GST State
@@ -1226,6 +1230,7 @@ DocType: Workflow State,Tag,Етикет
DocType: Custom Script,Script,Писменост
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Мои Настройки
DocType: Website Theme,Text Color,Цвят на текста
apps/frappe/frappe/desk/page/backups/backups.py +72,Backup job is already queued. You will receive an email with the download link,Резервната задача вече е поставена на опашка. Ще получите имейл с връзката за изтегляне
DocType: Desktop Icon,Force Show,Force Show
apps/frappe/frappe/auth.py +78,Invalid Request,Невалидна Заявка
apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Тази форма не разполага с вход
@@ -1336,7 +1341,7 @@ DocType: DocField,Name,Име
apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,Надвишихте макс пространство на {0} за плана си. {1}.
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Търсене в документите
DocType: OAuth Authorization Code,Valid,валиден
apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Open Link
apps/frappe/frappe/public/js/frappe/form/control.js +1354,Open Link,Open Link
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Твоят език
apps/frappe/frappe/desk/form/load.py +46,Did not load,Не се зареди
apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Добави Row
@@ -1354,6 +1359,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Някои документи, като фактура, не трябва да се променят веднъж като са окончателни. Състоянието за такива документи се нарича Изпратен. Можете да ограничите какви роли може да правят ""Изпращане""."
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Не е разрешено да експортирате тази справка
apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 елемент е избран
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> Няма намерени резултати за ' </p>
DocType: Newsletter,Test Email Address,Тест имейл адрес
DocType: ToDo,Sender,Подател
DocType: GSuite Settings,Google Apps Script,Сценарий на Google Приложения
@@ -1461,7 +1467,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Ple
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Товарене Доклад
apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Абонаментът ви ще изтече днес.
DocType: Page,Standard,Стандарт
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Прикрепете File
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,Прикрепете File
apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,Актуализация Уведомление Password
apps/frappe/frappe/desk/page/backups/backups.html +13,Size,Размер
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,Завършване на определянето
@@ -1491,7 +1497,7 @@ apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversat
apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Опции не са определени за поле {0}
DocType: Customize Form,"Must be of type ""Attach Image""",Трябва да е от тип &quot;Прикрепете Изображение&quot;
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Премахни отметката от всички
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Можете да не изключено &quot;Само за четене&quot; за област {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +199,You cannot unset 'Read Only' for field {0},Можете да не изключено &quot;Само за четене&quot; за област {0}
DocType: Auto Email Report,Zero means send records updated at anytime,Zero означава изпращане на записи актуализирани по всяко време
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +22,Complete Setup,Пълна Setup
DocType: Workflow State,asterisk,звездичка
@@ -1505,7 +1511,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +98,Week,седм
DocType: Social Login Keys,Google,Google
DocType: Email Domain,Example Email Address,Примерен имейл адрес
apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,Най-използваният
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Unsubscribe from Newsletter,Отписване от бюлетин
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe from Newsletter,Отписване от бюлетин
apps/frappe/frappe/www/login.html +101,Forgot Password,Забравена парола
DocType: Dropbox Settings,Backup Frequency,Честота на архивиране
DocType: Workflow State,Inverse,Обратен
@@ -1583,10 +1589,11 @@ apps/frappe/frappe/config/setup.py +209,"Actions for workflow (e.g. Approve, Can
DocType: Workflow State,flag,флаг
apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +57,Feedback Request is already sent to user,Обратна връзка - Заявка вече е изпратено до потребителя
DocType: Web Page,Text Align,Текст Подравнен
apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Името не може да съдържа специални символи като {0}
apps/frappe/frappe/model/naming.py +185,Name cannot contain special characters like {0},Името не може да съдържа специални символи като {0}
DocType: Contact Us Settings,Forward To Email Address,Препрати на имейл адрес
apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Показване на всички данни
apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Заглавие поле трябва да бъде валиден fieldname
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,"Имейл акаунта не е настроен. Моля, създайте нов имейл адрес от настройката&gt; имейл&gt; имейл акаунт"
apps/frappe/frappe/config/core.py +7,Documents,Документи
DocType: Email Flag Queue,Is Completed,е завършен
apps/frappe/frappe/www/me.html +22,Edit Profile,Редактирай профил
@@ -1596,7 +1603,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi
myfield
eval:doc.myfield=='My Value'
eval:doc.age&gt;18",В това поле ще се появи само ако FIELDNAME определено тук има стойност или правилата са верни (примери): myfield Оценка: doc.myfield == &quot;My Value&quot; Оценка: doc.age&gt; 18
apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,днес
apps/frappe/frappe/public/js/frappe/form/control.js +764,Today,днес
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","След като сте задали този, потребителите ще бъдат в състояние единствено достъп до документи (напр. Блог Post), където съществува връзката (напр. Blogger)."
DocType: Error Log,Log of Scheduler Errors,Журнал на грешки за Scheduler
DocType: User,Bio,Био
@@ -1655,7 +1662,7 @@ DocType: Print Format,Js,Js
apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Изберете Print Format
apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Кратки модели на клавиатурата са лесни за отгатване
DocType: Portal Settings,Portal Menu,Portal Menu
apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Дължина на {0} трябва да бъде между 1 и 1000
apps/frappe/frappe/model/db_schema.py +115,Length of {0} should be between 1 and 1000,Дължина на {0} трябва да бъде между 1 и 1000
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,Търсене на нещо
DocType: DocField,Print Hide,Print Скрий
apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,Въведете стойност
@@ -1708,8 +1715,7 @@ apps/frappe/frappe/model/document.py +564,Cannot change docstatus from 0 to 2,Н
DocType: User Permission for Page and Report,Roles Permission,Роли Разрешение
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Актуализация
DocType: Error Snapshot,Snapshot View,Snapshot View
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,"Моля, запишете бюлетина, преди да го изпратите"
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} преди години
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +101,Please save the Newsletter before sending,"Моля, запишете бюлетина, преди да го изпратите"
apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Опции трябва да бъде валиден DocType за поле {0} на ред {1}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Редактиране на стойности
DocType: Patch Log,List of patches executed,Списък на изпълнени актуализации
@@ -1727,7 +1733,7 @@ apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Актуали
DocType: Workflow State,trash,боклук
DocType: System Settings,Older backups will be automatically deleted,"По-стари архиви, да се изтриват автоматично"
DocType: Event,Leave blank to repeat always,"Оставете празно, за да се повтаря винаги"
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +192,Confirmed,Потвърден
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,Confirmed,Потвърден
DocType: Event,Ends on,Завършва на
DocType: Payment Gateway,Gateway,Врата
apps/frappe/frappe/public/js/frappe/form/linked_with.js +116,Not enough permission to see links,Няма достатъчно разрешение да виждате връзки
@@ -1758,7 +1764,6 @@ DocType: Contact,Purchase Manager,Мениджър покупки
DocType: Custom Script,Sample,Проба
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Некатегоризирани етикети
DocType: Event,Every Week,Всяка Седмица
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,"Имейл акаунта не е настроен. Моля, създайте нов имейл адрес от Настройка&gt; Имейл&gt; Имейл акаунт"
apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,"Кликнете тук, за да проверите вашето потребление или преминете към по-висок план"
DocType: Custom Field,Is Mandatory Field,Е задължително поле
DocType: User,Website User,Сайт на потребителя
@@ -1766,7 +1771,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +10,Not equals,
DocType: Integration Request,Integration Request Service,Интеграция Заявка за услуга
DocType: Website Script,Script to attach to all web pages.,Script да се прикрепя към всички уеб страници.
DocType: Web Form,Allow Multiple,Оставя Multiple
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +40,Assign,Присвояване
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +44,Assign,Присвояване
apps/frappe/frappe/config/setup.py +102,Import / Export Data from .csv files.,Импорт / Експорт на данни от .csv файлове.
DocType: Auto Email Report,Only Send Records Updated in Last X Hours,"Само изпращане на записи, актуализирани в последните X часа"
DocType: Communication,Feedback,Обратна връзка
@@ -1846,7 +1851,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,остав
apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,"Моля, запишете преди да поставите."
apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Добавен {0} ({1})
apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Тема по подразбиране е зададена в {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype не може да се променя от {0} на {1} в ред {2}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +325,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype не може да се променя от {0} на {1} в ред {2}
apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,Роля - Права
DocType: Help Article,Intermediate,Междинен
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Може да чете
@@ -1861,9 +1866,9 @@ apps/frappe/frappe/core/doctype/user/user.js +42,Refreshing...,Обновява
DocType: Event,Starts on,Започва на
DocType: System Settings,System Settings,Системни настройки
apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Стартът на сесията се провали
apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Този имейл е изпратен на {0} и копие до {1}
apps/frappe/frappe/email/queue.py +470,This email was sent to {0} and copied to {1},Този имейл е изпратен на {0} и копие до {1}
DocType: Workflow State,th,тата
apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Създаване на нова {0}
apps/frappe/frappe/public/js/frappe/form/control.js +1517,Create a new {0},Създаване на нова {0}
DocType: Email Rule,Is Spam,е спам
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Справка {0}
apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Open {0}
@@ -1875,12 +1880,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon a
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,Дубликат
DocType: Newsletter,Create and Send Newsletters,Създаване и изпращане на бюлетини
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date must be before To Date,От дата трябва да е преди днешна дата
DocType: Address,Andaman and Nicobar Islands,Островите Андаман и Никобар
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +216,GSuite Document,GSuite документ
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +29,Please specify which value field must be checked,"Моля, посочете кое поле за стойност трябва да се проверява"
apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"""Parent"" signifies the parent table in which this row must be added","""Родителска"" означава главната таблица, в която трябва да се добави този ред"
DocType: Website Theme,Apply Style,Нанесете Style
DocType: Feedback Request,Feedback Rating,Обратна връзка Рейтинг
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared With,Споделено с
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Споделено с
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Настройка&gt; Мениджър на разрешенията на потребителите
DocType: Help Category,Help Articles,Помощни статии
,Modules Setup,Настройка на модули
apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Тип:
@@ -1911,7 +1918,7 @@ DocType: OAuth Client,App Client ID,App Client ID
DocType: Kanban Board,Kanban Board Name,Наименование на Канбан Табло
DocType: Email Alert Recipient,"Expression, Optional","Expression, незадължително"
DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,Копирайте и поставете този код във и изпразнете Code.gs в проекта си на script.google.com
apps/frappe/frappe/email/queue.py +456,This email was sent to {0},Този имейл е изпратен на {0}
apps/frappe/frappe/email/queue.py +472,This email was sent to {0},Този имейл е изпратен на {0}
DocType: DocField,Remember Last Selected Value,Запомни Последно избраната стойност
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +334,Please select Document Type,"Моля, изберете Тип документ"
DocType: Email Account,Check this to pull emails from your mailbox,Маркирайте това да дръпнете имейли от пощенската си кутия
@@ -1926,6 +1933,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,Ва
DocType: Feedback Trigger,Email Field,Email Невярно
apps/frappe/frappe/www/update-password.html +59,New Password Required.,Нужна е нова парола.
apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} сподели този документ с {1}
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Настройка&gt; Потребител
DocType: Website Settings,Brand Image,Изображение на марката
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Setup на горната навигационна лента, долния и лого."
@@ -1993,8 +2001,8 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa
apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Файловият формат не може да се чете за {0}
DocType: Auto Email Report,Filter Data,Данни за филтриране
apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Добавяне на маркер
apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,"Моля, първо прикачете файл."
apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Имаше някои грешки, определящи името, моля, свържете се с администратора"
apps/frappe/frappe/public/js/frappe/form/control.js +1335,Please attach a file first.,"Моля, първо прикачете файл."
apps/frappe/frappe/model/naming.py +174,"There were some errors setting the name, please contact the administrator","Имаше някои грешки, определящи името, моля, свържете се с администратора"
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Входящата пощенска кутия не е правилна
apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \
Please enter a valid email address so that we can get back.","Изглежда, че сте написали името си вместо имейла си. Моля, въведете валиден имейл адрес, за да можем да се върнем обратно."
@@ -2046,7 +2054,6 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,
DocType: Custom DocPerm,Create,Създай
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Невалиден Филтър: {0}
DocType: Email Account,no failed attempts,няма неуспешни опити
apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,"Не бе намерен стандартният шаблон за адреси. Моля, създайте нов от Setup&gt; Printing and Branding&gt; Address Template."
DocType: GSuite Settings,refresh_token,refresh_token
DocType: Dropbox Settings,App Access Key,App на ключа за достъп
DocType: OAuth Bearer Token,Access Token,Токен за достъп
@@ -2072,6 +2079,7 @@ apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,"Ctrl
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Направете нов {0}
apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,Нов имейл акаунт
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +28,Document Restored,Документ възстановен
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +203,You can't set 'Options' for field {0},Не можете да зададете &quot;Опции&quot; за поле {0}
apps/frappe/frappe/core/page/usage_info/usage_info.html +86,Size (MB),Размер (MB)
DocType: Help Article,Author,автор
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +10,Resume Sending,Възобновяване Изпращане
@@ -2081,7 +2089,7 @@ DocType: Print Settings,Monochrome,Монохромен
DocType: Address,Purchase User,Покупка на потребителя
DocType: Workflow,"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.","Different &quot;държави&quot; този документ може да съществува инча Like &quot;Open&quot;, &quot;В очакване на одобрение&quot; и т.н."
apps/frappe/frappe/utils/verified_command.py +43,This link is invalid or expired. Please make sure you have pasted correctly.,"Тази връзка е невалиден или изтекъл. Моля, уверете се, че сте поставили правилно."
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> е успешно абонамента от този пощенски списък.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +136,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> е успешно абонамента от този пощенски списък.
DocType: Web Page,Slideshow,Slideshow
apps/frappe/frappe/contacts/doctype/address_template/address_template.py +31,Default Address Template cannot be deleted,Default Адрес Template не може да бъде изтрита
DocType: Contact,Maintenance Manager,Мениджър по поддръжката
@@ -2102,7 +2110,7 @@ apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a r
DocType: System Settings,Apply Strict User Permissions,Прилагане на строги потребителски разрешения
DocType: DocField,Allow Bulk Edit,Разрешаване на групово редактиране
DocType: Blog Post,Blog Post,Блог - Статия
apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Разширено Търсене
apps/frappe/frappe/public/js/frappe/form/control.js +1527,Advanced Search,Разширено Търсене
apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Инструкции за възстановяване на паролата са изпратени на Вашия имейл
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \
higher levels for field level permissions.","Ниво 0 е за разрешения на ниво документ, \ по-високи нива за разрешения на ниво поле."
@@ -2127,13 +2135,13 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new re
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,търсене
DocType: Currency,Fraction,Фракция
DocType: LDAP Settings,LDAP First Name Field,LDAP Име - Поле
apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Изберете от съществуващите прикачени файлове
apps/frappe/frappe/public/js/frappe/form/control.js +1085,Select from existing attachments,Изберете от съществуващите прикачени файлове
DocType: Custom Field,Field Description,Поле Описание
apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Името не определя чрез Prompt
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,Email Входящи
DocType: Auto Email Report,Filters Display,Показване на филтри
DocType: Website Theme,Top Bar Color,Top Bar цвят
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Do you want to unsubscribe from this mailing list?,Искате ли да се отпишете от този пощенски списък?
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Do you want to unsubscribe from this mailing list?,Искате ли да се отпишете от този пощенски списък?
DocType: Address,Plant,Завод
apps/frappe/frappe/core/doctype/communication/communication.js +65,Reply All,Отговори на всички
DocType: DocType,Setup,Настройки
@@ -2176,7 +2184,7 @@ DocType: User,Send Notifications for Transactions I Follow,"Изпращай м
apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Cannot set Submit, Cancel, Amend without Write"
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,"Сигурни ли сте, че искате да изтриете прикачения файл?"
apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} <a href=""#Form/{0}/{1}"">{1}</a> is linked with {2} <a href=""#Form/{2}/{3}"">{3}</a>","Не може да се изтрие или затвори, защото {0} <a href=""#Form/{0}/{1}"">{1}</a> е свързан с {2} <a href=""#Form/{2}/{3}"">{3}</a>"
apps/frappe/frappe/__init__.py +1062,Thank you,Благодаря
apps/frappe/frappe/__init__.py +1070,Thank you,Благодаря
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Запазване
DocType: Print Settings,Print Style Preview,Печат Style Preview
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
@@ -2191,7 +2199,7 @@ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Доба
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Номер
,Role Permissions Manager,Мениджър на права за роля
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Името на новия Print Format
apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Изчистване на прикачен файл
apps/frappe/frappe/public/js/frappe/form/control.js +1087,Clear Attachment,Изчистване на прикачен файл
apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Задължително:
,User Permissions Manager,Мениджър потребителски разрешения
DocType: Property Setter,New value to be set,Задай Нова стойност
@@ -2216,7 +2224,7 @@ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment C
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,Изчистване на журнал за грешки
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,Моля изберете оценка
DocType: Email Account,Notify if unreplied for (in mins),Уведоми ако неотговорени за (в минути)
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,Преди 2 дни
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +501,2 days ago,Преди 2 дни
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Категоризиране блог постове.
DocType: Workflow State,Time,Време
DocType: DocField,Attach,Прикрепете
@@ -2232,6 +2240,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Архи
DocType: GSuite Templates,Template Name,Име на шаблона
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,нов тип документ
DocType: Custom DocPerm,Read,Четене
DocType: Address,Chhattisgarh,Чатисгарх
DocType: Role Permission for Page and Report,Role Permission for Page and Report,Роля АКТ Пейдж и доклад
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Изравнете Value
apps/frappe/frappe/www/update-password.html +14,Old Password,Стара Парола
@@ -2278,7 +2287,7 @@ apps/frappe/frappe/public/js/frappe/roles_editor.js +28,Add all roles,Добав
apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your email and message so that we \
can get back to you. Thanks!","Моля, въведете и двете си поща и съобщения, така че можем \ може да се свържем с вас. Благодаря!"
apps/frappe/frappe/email/smtp.py +170,Could not connect to outgoing email server,Не може да се свърже с изходящ сървър за електронна поща
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +162,Thank you for your interest in subscribing to our updates,Благодарим ви за проявения интерес към абонирате за нашите новини
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Thank you for your interest in subscribing to our updates,Благодарим ви за проявения интерес към абонирате за нашите новини
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Custom Column,Персонализирана колона
DocType: Workflow State,resize-full,преоразмеряване-пълно
DocType: Workflow State,off,край
@@ -2341,7 +2350,7 @@ DocType: Address,Telangana,Телангана
apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Стойност по подразбиране за {0} трябва да бъде опция
DocType: Tag Doc Category,Tag Doc Category,Tag Doc Категория
DocType: User,User Image,Потребител - Снимка
apps/frappe/frappe/email/queue.py +289,Emails are muted,Имейлите са заглушени
apps/frappe/frappe/email/queue.py +304,Emails are muted,Имейлите са заглушени
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + Нагоре
DocType: Website Theme,Heading Style,Заглавие - Стил
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +183,A new Project with this name will be created,Ще бъде създаден нов проект с това име
@@ -2558,7 +2567,6 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,звънец
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Грешка при предупреждението по имейл
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Споделете този документ с
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Настройка&gt; Мениджър на разрешенията за потребители
apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,"{0} {1} не може да бъде клон, тъй като има подклонове"
DocType: Communication,Info,Инфо
apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Добави Attachment
@@ -2602,7 +2610,7 @@ apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,Print Form
DocType: Email Alert,Send days before or after the reference date,Изпрати дни преди или след референтната дата
DocType: User,Allow user to login only after this hour (0-24),Позволи на потребителя да се логнете само след този час (0-24)
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,Стойност
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +165,Click here to verify,"Кликнете тук, за да потвърдите"
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +166,Click here to verify,"Кликнете тук, за да потвърдите"
apps/frappe/frappe/utils/password_strength.py +178,Predictable substitutions like '@' instead of 'a' don't help very much.,Предвидими замествания като &quot;@&quot; вместо &quot;а&quot; не помагат много.
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Възложени от мен
apps/frappe/frappe/utils/data.py +462,Zero,нула
@@ -2614,6 +2622,7 @@ DocType: ToDo,Priority,Приоритет
DocType: Email Queue,Unsubscribe Param,Отписване Парам
DocType: Auto Email Report,Weekly,Седмично
DocType: Communication,In Reply To,В отговор на
apps/frappe/frappe/contacts/doctype/address/address.py +189,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,"Не бе намерен стандартният шаблон за адреси. Моля, създайте нов от Setup&gt; Printing and Branding&gt; Address Template."
DocType: DocType,Allow Import (via Data Import Tool),Позволете Import (чрез Data Tool Import)
apps/frappe/frappe/templates/print_formats/standard_macros.html +30,Sr,Номер
DocType: DocField,Float,Плаващ
@@ -2704,7 +2713,6 @@ apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Невалиден о
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Списък на тип документ
DocType: Event,Ref Type,Ref Type
apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Ако качвате нови рекорди, оставете &quot;име&quot; (ID) колона заготовката."
DocType: Address,Chattisgarh,Чатисгарх
apps/frappe/frappe/config/core.py +47,Errors in Background Events,Грешки в Background Събития
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,Брои колони
DocType: Workflow State,Calendar,Календар
@@ -2736,7 +2744,7 @@ apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Въз
DocType: Integration Request,Remote,отдалечен
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Изчисли
apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,"Моля, изберете DocType първо"
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Потвърдете Вашият Email
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +174,Confirm Your Email,Потвърдете Вашият Email
apps/frappe/frappe/www/login.html +42,Or login with,Или влезте с
DocType: Error Snapshot,Locals,Местните жители
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Съобщено посредством {0} от {1}: {2}
@@ -2753,7 +2761,7 @@ DocType: Web Page,Web Page,Уеб Страница
DocType: Blog Category,Blogger,Списвач на блог
apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},&quot;В глобалното търсене&quot; не е разрешено за тип {0} на ред {1}
apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Вижте Списък
apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Датата трябва да бъде във формат: {0}
apps/frappe/frappe/public/js/frappe/form/control.js +810,Date must be in format: {0},Датата трябва да бъде във формат: {0}
DocType: Workflow,Don't Override Status,Не променяй статуса
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,"Моля, дайте оценка."
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Заявка за Обратна връзка
@@ -2786,7 +2794,7 @@ DocType: Custom DocPerm,Report,Справка
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Сумата трябва да бъде по-голямо от 0.
apps/frappe/frappe/desk/reportview.py +107,{0} is saved,{0} е записан
apps/frappe/frappe/core/doctype/user/user.py +327,User {0} cannot be renamed,Потребителят {0} не може да бъде преименуван
apps/frappe/frappe/model/db_schema.py +107,Fieldname is limited to 64 characters ({0}),FIELDNAME е ограничен до 64 знака ({0})
apps/frappe/frappe/model/db_schema.py +108,Fieldname is limited to 64 characters ({0}),FIELDNAME е ограничен до 64 знака ({0})
apps/frappe/frappe/config/desk.py +59,Email Group List,Списък Group Email
DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],Икона на файл с разширение .ico. Трябва да бъде 16 х 16 пиксела. Образувани с помощта на уеб иконата генератор. [favicon-generator.org]
DocType: Auto Email Report,Format,формат
@@ -2864,7 +2872,7 @@ DocType: Website Settings,Title Prefix,Title Prefix
DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Уведомления и масови писма ще бъдат изпратени от този изходящ сървър.
DocType: Workflow State,cog,зъб
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on Migrate,Синхронизиране при миграция
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,В момента разглеждат
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Currently Viewing,В момента разглеждат
DocType: DocField,Default,Неустойка
apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} добавен
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Търсене за &#39;{0}&#39;
@@ -2924,7 +2932,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +771,Report was
DocType: Print Settings,Print Style,Print Style
apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,Не е свързан с никакви записи
DocType: Custom DocPerm,Import,Импорт
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +178,Row {0}: Not allowed to enable Allow on Submit for standard fields,Row {0}: Не е позволено да се даде възможност Оставя върху Изпращане за стандартни полета
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +180,Row {0}: Not allowed to enable Allow on Submit for standard fields,Row {0}: Не е позволено да се даде възможност Оставя върху Изпращане за стандартни полета
apps/frappe/frappe/config/setup.py +100,Import / Export Data,Импорт / Експорт на данни
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,Стандартни роли не могат да се преименуват
DocType: Communication,To and CC,До и Копие до
@@ -2950,7 +2958,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo
DocType: Auto Email Report,Filter Meta,Филтър Meta
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Текст, за да бъде показана за Линк към Web Page ако този формуляр има уеб страница. Link маршрут автоматично ще се генерира на базата на `page_name` и` parent_website_route`"
DocType: Feedback Request,Feedback Trigger,Обратна връзка Trigger
apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,"Моля, задайте {0} първа"
apps/frappe/frappe/public/js/frappe/form/control.js +1741,Please set {0} first,"Моля, задайте {0} първа"
DocType: Unhandled Email,Message-id,Message-ID
DocType: Patch Log,Patch,Кръпка
DocType: Async Task,Failed,Не успя


+ 72
- 64
frappe/translations/bn.csv Datei anzeigen

@@ -14,8 +14,9 @@ apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,
DocType: User,Facebook Username,ফেসবুক ব্যবহারকারীর নাম
DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,নোট: একাধিক সেশন মোবাইল ডিভাইস এর ক্ষেত্রে অনুমতি দেওয়া হবে
apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},ব্যবহারকারীর জন্য সক্রিয় ইমেইল ইনবক্সে {ব্যবহারকারীদের}
apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,এই ইমেইল পাঠাতে পারবেন না. আপনি এই মাসের জন্য {0} ইমেইল পাঠানোর সীমা অতিক্রম করেছেন.
apps/frappe/frappe/email/queue.py +225,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,এই ইমেইল পাঠাতে পারবেন না. আপনি এই মাসের জন্য {0} ইমেইল পাঠানোর সীমা অতিক্রম করেছেন.
apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,স্থায়ীভাবে {0} পাঠাবেন?
apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,ফাইল ব্যাকআপ ডাউনলোড করুন
DocType: Address,County,বিভাগ
DocType: Workflow,If Checked workflow status will not override status in list view,পরিক্ষীত কর্মপ্রবাহ অবস্থা তালিকা দৃশ্যে অবস্থা ওভাররাইড করতে হবে
apps/frappe/frappe/client.py +280,Invalid file path: {0},অবৈধ ফাইল পাথ: {0}
@@ -80,10 +81,10 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,আমা
apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,অ্যাডমিনিস্ট্রেটর লগ ইন
DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","ইত্যাদি &quot;সেলস কোয়েরি, সাপোর্ট ক্যোয়ারী&quot; মত যোগাযোগ অপশন, একটি নতুন লাইন প্রতিটি বা কমা দ্বারা পৃথকীকৃত."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. ডাউনলোড
apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,সন্নিবেশ
apps/frappe/frappe/public/js/frappe/form/control.js +1979,Insert,সন্নিবেশ
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},নির্বাচন {0}
DocType: Print Settings,Classic,সর্বোত্তম
DocType: Desktop Icon,Color,রঙ
DocType: DocField,Color,রঙ
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +54,For ranges,রেঞ্জ জন্য
DocType: Workflow State,indent-right,ইন্ডেন্ট-ডান
DocType: Has Role,Has Role,ভূমিকা আছে
@@ -100,7 +101,7 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To impor
DocType: DocType,Default Print Format,পূর্বনির্ধারিত মুদ্রণ বিন্যাস
DocType: Workflow State,Tags,ট্যাগ্স
apps/frappe/frappe/public/js/frappe/form/workflow.js +33,None: End of Workflow,কোনটি: কর্মপ্রবাহ শেষ
apps/frappe/frappe/model/db_schema.py +346,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","অ অনন্য বিদ্যমান মান আছে {0} ক্ষেত্র, {1} হিসাবে অনন্য সেট করা যাবে না"
apps/frappe/frappe/model/db_schema.py +347,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","অ অনন্য বিদ্যমান মান আছে {0} ক্ষেত্র, {1} হিসাবে অনন্য সেট করা যাবে না"
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +47,Document Types,নথি ধরনের
DocType: Address,Jammu and Kashmir,জম্মু ও কাশ্মীর
DocType: Workflow,Workflow State Field,কর্মপ্রবাহ রাজ্য মাঠ
@@ -231,7 +232,7 @@ DocType: Workflow,Transition Rules,স্থানান্তরণ বিধ
apps/frappe/frappe/core/doctype/report/report.js +11,Example:,উদাহরণ:
DocType: Workflow,Defines workflow states and rules for a document.,একটি নথি জন্য কর্মপ্রবাহ যুক্তরাষ্ট্র ও নিয়ম নির্ধারণ করা হয়.
DocType: Workflow State,Filter,ফিল্টার
apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},FIELDNAME {0} মত বিশেষ অক্ষর থাকতে পারে না {1}
apps/frappe/frappe/model/db_schema.py +564,Fieldname {0} cannot have special characters like {1},FIELDNAME {0} মত বিশেষ অক্ষর থাকতে পারে না {1}
apps/frappe/frappe/config/setup.py +121,Update many values at one time.,এক সময়ে অনেক মান আপডেট করুন.
apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,ত্রুটি: আপনি এটা খোলা আছে নথি পরিবর্ধিত হয়েছে
apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} লগ আউট: {1}
@@ -260,7 +261,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Gravatar.com
apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","আপনার সাবস্ক্রিপশন {0} এ উত্তীর্ণ হয়েছে. পুনর্জীবন দান করা, {1}."
DocType: Workflow State,plus-sign,প্লাস-সাইন
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,সেটআপ ইতিমধ্যে সম্পূর্ণ
apps/frappe/frappe/__init__.py +889,App {0} is not installed,অ্যাপ {0} ইনস্টল করা নেই
apps/frappe/frappe/__init__.py +897,App {0} is not installed,অ্যাপ {0} ইনস্টল করা নেই
DocType: Workflow State,Refresh,সতেজ করা
DocType: Event,Public,প্রকাশ্য
apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,কিছুই দেখাতে
@@ -339,7 +340,6 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,সম্পাদনা শীর্ষক
DocType: File,File URL,ফাইল URL
DocType: Version,Table HTML,ছক এইচটিএমএল
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> কোন ফলাফল 'পাওয়া যায়নি </p>
apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,গ্রাহক
apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,আজকের আপকামিং ইভেন্টস
DocType: Email Alert Recipient,Email By Document Field,ডকুমেন্ট ক্ষেত্র দ্বারা ইমেইল
@@ -404,7 +404,6 @@ DocType: Desktop Icon,Link,লিংক
apps/frappe/frappe/utils/file_manager.py +96,No file attached,সংযুক্ত কোন ফাইল
DocType: Version,Version,সংস্করণ
DocType: User,Fill Screen,পর্দা ভরাট
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,দয়া করে সেটআপ&gt; ইমেইল&gt; ইমেল অ্যাকাউন্ট থেকে সেটআপ ডিফল্ট ইমেইল অ্যাকাউন্ট
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","কারণে অনুপস্থিত তথ্য, এই বৃক্ষ প্রতিবেদন প্রদর্শন করতে পারেনি. সম্ভবত, এটা কারণে অনুমতি ফিল্টার আউট হচ্ছে."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. ফাইল নির্বাচন
apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,আপলোডের মাধ্যমে সম্পাদনা
@@ -474,9 +473,9 @@ DocType: User,Reset Password Key,পাসওয়ার্ড রিসেট
DocType: Email Account,Enable Auto Reply,অটো উত্তর সক্রিয়
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,দেখা যায় না
DocType: Workflow State,zoom-in,প্রসারিত করো
apps/frappe/frappe/email/queue.py +219,Unsubscribe from this list,এই তালিকা থেকে সদস্যতা ত্যাগ
apps/frappe/frappe/email/queue.py +234,Unsubscribe from this list,এই তালিকা থেকে সদস্যতা ত্যাগ
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Reference DocType and Reference Name are required,রেফারেন্স DOCTYPE ও রেফারেন্স প্রয়োজন নাম
apps/frappe/frappe/utils/jinja.py +35,Syntax error in template,টেম্পলেটের বাক্যগঠন ত্রুটি
apps/frappe/frappe/utils/jinja.py +51,Syntax error in template,টেম্পলেটের বাক্যগঠন ত্রুটি
DocType: DocField,Width,প্রস্থ
DocType: Email Account,Notify if unreplied,Unreplied যদি অবহিত
DocType: System Settings,Minimum Password Score,নূন্যতম পাসওয়ার্ড স্কোর
@@ -560,6 +559,7 @@ DocType: Custom Field,Select the label after which you want to insert new field.
DocType: User,Last Login,সর্বশেষ লগইন
apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},FIELDNAME সারিতে প্রয়োজন বোধ করা হয় {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,স্তম্ভ
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,সেটআপ থেকে ডিফল্ট ইমেইল অ্যাকাউন্ট সেট আপ করুন&gt; ইমেল&gt; ইমেল অ্যাকাউন্ট
DocType: Custom Field,Adds a custom field to a DocType,একটি DOCTYPE একটি কাস্টম ক্ষেত্র যোগ
DocType: File,Is Home Folder,হোম ফোল্ডার
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} একটি বৈধ ইমেইল ঠিকানা নয়
@@ -567,7 +567,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +733,Select atleast 1 reco
apps/frappe/frappe/core/doctype/has_role/has_role.py +13,User '{0}' already has the role '{1}',ব্যবহারকারী &#39;{0}&#39; ইতিমধ্যে ভূমিকা রয়েছে &#39;{1}&#39;
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,আপলোড এবং সিঙ্ক
apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},এদের সাথে শেয়ার {0}
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe,সদস্যতা ত্যাগ করুন
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +132,Unsubscribe,সদস্যতা ত্যাগ করুন
DocType: Communication,Reference Name,রেফারেন্স নাম
apps/frappe/frappe/public/js/frappe/toolbar.js +30,Chat Support,চ্যাট সাপোর্ট
DocType: Error Snapshot,Exception,ব্যতিক্রম
@@ -585,7 +585,7 @@ DocType: Email Group,Newsletter Manager,নিউজলেটার ম্যা
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,বিকল্প 1
apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} এ {1}
apps/frappe/frappe/config/setup.py +89,Log of error during requests.,অনুরোধ সময় ত্রুটির লগ ইন করুন.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} সফলভাবে ইমেইল গ্রুপে যোগ করা হয়েছে.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +194,{0} has been successfully added to the Email Group.,{0} সফলভাবে ইমেইল গ্রুপে যোগ করা হয়েছে.
DocType: Address,Uttar Pradesh,উত্তর প্রদেশ
DocType: Address,Pondicherry,পুদুচেরি
apps/frappe/frappe/public/js/frappe/upload.js +364,Make file(s) private or public?,ফাইল (গুলি) বেসরকারী বা পাবলিক করুন?
@@ -616,7 +616,7 @@ DocType: Portal Settings,Portal Settings,পোর্টাল সেটিং
DocType: Web Page,0 is highest,0 সর্বোচ্চ
apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,আপনি কি নিশ্চিত যে আপনি {0} এই যোগাযোগের পুনঃলিঙ্ক ইচ্ছুক?
apps/frappe/frappe/www/login.html +104,Send Password,পাসওয়ার্ডটি পাঠান
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +45,Attachments,সংযুক্তি
DocType: Email Queue,Attachments,সংযুক্তি
apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,আপনি এই দস্তাবেজটি অ্যাক্সেস করতে অনুমতি নেই
DocType: Language,Language Name,ভাষার নাম
DocType: Email Group Member,Email Group Member,ইমেল গ্রুপের সদস্য
@@ -646,7 +646,7 @@ apps/frappe/frappe/utils/password_strength.py +78,Try to use a longer keyboard p
DocType: Feedback Trigger,Check Communication,কমিউনিকেশন চেক
DocType: Address,Rajasthan,রাজস্থান
apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,প্রতিবেদন নির্মাতা রিপোর্ট প্রতিবেদন নির্মাতা দ্বারা সরাসরি পরিচালিত হয়. কিছুই করার নাই.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,আপনার ইমেল ঠিকানা যাচাই করুন
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +164,Please verify your Email Address,আপনার ইমেল ঠিকানা যাচাই করুন
apps/frappe/frappe/model/document.py +903,none of,কেউ
apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,আমাকে একটি কপি পাঠান
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,ব্যবহারকারীর অনুমতি আপলোড
@@ -657,7 +657,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Si
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban বোর্ড {0} অস্তিত্ব নেই.
apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} বর্তমানে এই ডকুমেন্ট দেখছেন
DocType: ToDo,Assigned By Full Name,পূর্ণ নাম দ্বারা নিয়োগ
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} আপডেট করা হয়েছে
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} আপডেট করা হয়েছে
apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,গালাগাল প্রতিবেদন একা ধরনের জন্য নির্ধারণ করা যাবে না
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} দিন আগে
DocType: Email Account,Awaiting Password,প্রতীক্ষমাণ পাসওয়ার্ড
@@ -682,7 +682,7 @@ DocType: Workflow State,Stop,থামুন
DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,আপনি খুলতে চান পাতা লিংক. আপনি এটি একটি গ্রুপ ঊর্ধ্বতন করতে চান তাহলে ফাঁকা ছেড়ে দিন.
DocType: DocType,Is Single,একা
apps/frappe/frappe/core/doctype/user/user.py +720,Sign Up is disabled,সাইন আপ করুন নিষ্ক্রিয় করা হয়েছে
apps/frappe/frappe/email/queue.py +278,{0} has left the conversation in {1} {2},{0} মধ্যে কথোপকথন ত্যাগ করেছে {1} {2}
apps/frappe/frappe/email/queue.py +293,{0} has left the conversation in {1} {2},{0} মধ্যে কথোপকথন ত্যাগ করেছে {1} {2}
DocType: Blogger,User ID of a Blogger,একটি ব্লগার এর ইউজার আইডি
apps/frappe/frappe/core/doctype/user/user.py +287,There should remain at least one System Manager,অন্তত একটি সিস্টেম ম্যানেজার থাকা উচিত
DocType: GSuite Settings,Authorization Code,অনুমোদন কোড
@@ -728,6 +728,7 @@ DocType: Event,Event,ঘটনা
apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","{0} উপর, {1} লিখেছেন:"
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"স্ট্যান্ডার্ড ক্ষেত্রের মুছে ফেলা যায় না. আপনি চান, আপনি তা লুকিয়ে রাখতে পারেন"
DocType: Top Bar Item,For top bar,শীর্ষ বারের জন্য
apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,ব্যাকআপের জন্য সারিবদ্ধ আপনি ডাউনলোড লিঙ্কের সাথে একটি ইমেল পাবেন
apps/frappe/frappe/utils/bot.py +148,Could not identify {0},চিহ্নিত করা যায়নি {0}
DocType: Address,Address,ঠিকানা
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +3,Payment Failed,পেমেন্ট ব্যর্থ হয়েছে
@@ -752,13 +753,13 @@ DocType: Web Form,Allow Print,প্রিন্ট করার অনুমত
apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,কোনো অ্যাপ্লিকেশন ইনস্টল করা
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,হিসাবে বাধ্যতামূলক ক্ষেত্র চিহ্ন
DocType: Communication,Clicked,ক্লিক
apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},কোন অনুমতি &#39;{0}&#39; {1}
apps/frappe/frappe/public/js/legacy/form.js +950,No permission to '{0}' {1},কোন অনুমতি &#39;{0}&#39; {1}
DocType: User,Google User ID,গুগল ব্যবহারকারী আইডি
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,পাঠাতে তফসিলি
DocType: DocType,Track Seen,ট্র্যাক Seen
apps/frappe/frappe/desk/form/utils.py +55,This method can only be used to create a Comment,এই পদ্ধতি শুধুমাত্র একটি মন্তব্য তৈরি করতে ব্যবহার করা যেতে পারে
DocType: Event,orange,কমলা
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,No {0} found,কোন {0} পাওয়া
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +558,No {0} found,কোন {0} পাওয়া
apps/frappe/frappe/config/setup.py +242,Add custom forms.,নিজস্ব ফর্ম যুক্ত করো.
apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} মধ্যে {2}
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +419,submitted this document,এই দলিল পেশ
@@ -788,6 +789,7 @@ DocType: Newsletter Email Group,Newsletter Email Group,নিউজলেটা
DocType: Dropbox Settings,Integrations,ঐক্যবদ্ধতার
DocType: DocField,Section Break,উপবিভাগ বিরতি
DocType: Address,Warehouse,গুদাম
DocType: Address,Other Territory,অন্যান্য টেরিটরি
,Messages,বার্তা
apps/frappe/frappe/desk/page/applications/applications.js +49,Portal,পোর্টাল
DocType: Email Account,Use Different Email Login ID,আলাদা ইমেল লগইন আইডি ব্যবহার করুন
@@ -818,6 +820,7 @@ apps/frappe/frappe/utils/data.py +556,1 month ago,1 মাস আগে
DocType: Contact,User ID,ব্যবহারকারী আইডি
DocType: Communication,Sent,প্রেরিত
DocType: Address,Kerala,কেরল
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} বছর (গুলি) আগে
DocType: File,Lft,এলএফটি
DocType: User,Simultaneous Sessions,যুগপত দায়রা
DocType: OAuth Client,Client Credentials,ক্লায়েন্ট পরিচয়পত্র
@@ -834,7 +837,7 @@ DocType: Email Queue,Unsubscribe Method,আন-সাবস্ক্রাইব
DocType: GSuite Templates,Related DocType,সংশ্লিষ্ট DOCTYPE
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,কন্টেন্ট যোগ করতে সম্পাদন
apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,ভাষা নির্বাচন
apps/frappe/frappe/__init__.py +509,No permission for {0},জন্য কোন অনুমতি {0}
apps/frappe/frappe/__init__.py +517,No permission for {0},জন্য কোন অনুমতি {0}
DocType: DocType,Advanced,অগ্রসর
apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,API কী মনে হয় বা API সিক্রেট ভুল হয় !!!
apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},রেফারেন্স: {0} {1}
@@ -845,6 +848,7 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P
DocType: Email Account,Yahoo Mail,ইয়াহু মেইল
apps/frappe/frappe/limits.py +75,Your subscription will expire tomorrow.,আপনার সাবস্ক্রিপশন আগামীকাল এর মেয়াদ শেষ হবে.
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +483,Saved!,সংরক্ষিত!
apps/frappe/frappe/public/js/frappe/form/control.js +729,{0} is not a valid hex color,{0} একটি বৈধ হেক্স রঙ নয়
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,ঠাকরূণ
apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},আপডেট করা হয়েছে {0}: {1}
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,গুরু
@@ -872,7 +876,7 @@ DocType: Report,Disabled,অক্ষম
DocType: Workflow State,eye-close,চোখের বন্ধ
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth এর প্রোভাইডার সেটিংস
apps/frappe/frappe/config/setup.py +254,Applications,অ্যাপ্লিকেশন
apps/frappe/frappe/public/js/frappe/request.js +347,Report this issue,এই সমস্যা প্রতিবেদন
apps/frappe/frappe/public/js/frappe/request.js +349,Report this issue,এই সমস্যা প্রতিবেদন
apps/frappe/frappe/public/js/frappe/form/save.js +79,Name is required,নাম প্রয়োজন বোধ করা হয়
DocType: Custom Script,Adds a custom script (client or server) to a DocType,একটি DOCTYPE একটি কাস্টম স্ক্রিপ্ট (ক্লায়েন্ট অথবা সার্ভারের) যুক্ত করে
DocType: Address,City/Town,শহর / টাউন
@@ -966,6 +970,7 @@ DocType: Currency,**Currency** Master,** ** মুদ্রা মাস্ট
DocType: Email Account,No of emails remaining to be synced,অবশিষ্ট ইমেইলের কোন সিঙ্ক করার জন্য
apps/frappe/frappe/public/js/frappe/upload.js +203,Uploading,আপলোড হচ্ছে
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,নিয়োগ আগে নথি সংরক্ষণ করুন
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,বাগ এবং পরামর্শ পোস্ট করার জন্য এখানে ক্লিক করুন
DocType: Website Settings,Address and other legal information you may want to put in the footer.,ঠিকানা এবং অন্যান্য আইনগত তথ্য আপনি পাদচরণ একটি বার্তা দেখাতে চাইবেন.
DocType: Website Sidebar Item,Website Sidebar Item,ওয়েবসাইট সাইডবার আইটেম
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +44,{0} records updated,{0} প্রতিবেদন পুনরনির্বাচন করা হয়েছে
@@ -979,12 +984,10 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,পরিষ
apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,প্রতিদিন ঘটনা একই দিনে শেষ হবে.
DocType: Communication,User Tags,ব্যবহারকারী ট্যাগ্স
apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,আনা হচ্ছে চিত্র ..
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,সেটআপ&gt; ব্যবহারকারী
DocType: Workflow State,download-alt,ডাউনলোড-Alt
apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},অ্যাপ ডাউনলোড {0}
DocType: Communication,Feedback Request,প্রতিক্রিয়া অনুরোধ
apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,নিম্নলিখিত ক্ষেত্রগুলি অনুপস্থিত হয়:
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Experimental Feature,এক্সপেরিমেন্টাল ফিচার
apps/frappe/frappe/www/login.html +30,Sign in,প্রবেশ কর
DocType: Web Page,Main Section,প্রধান ধারা
DocType: Page,Icon,আইকন
@@ -1086,7 +1089,7 @@ DocType: Customize Form,Customize Form,ফরম কাস্টমাইজ
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +104,Mandatory field: set role for,আবশ্যিক ক্ষেত্র: জন্য সেট ভূমিকা
DocType: Currency,A symbol for this currency. For e.g. $,এই মুদ্রার জন্য একটি প্রতীক. যেমন $ জন্য
apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,ফ্র্যাপে ফ্রেমওয়ার্ক
apps/frappe/frappe/model/naming.py +174,Name of {0} cannot be {1},নাম {0} হতে পারবেন না {1}
apps/frappe/frappe/model/naming.py +180,Name of {0} cannot be {1},নাম {0} হতে পারবেন না {1}
apps/frappe/frappe/config/setup.py +46,Show or hide modules globally.,দেখান বা বিশ্বব্যাপী আড়াল মডিউল.
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,তারিখ থেকে
apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,সাফল্য
@@ -1107,7 +1110,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +308,Add A New
apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js +3,See on Website,ওয়েবসাইট দেখতে
DocType: Workflow Transition,Next State,পরবর্তী রাজ্য
DocType: User,Block Modules,ব্লক মডিউল
apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,দৈর্ঘ্য প্রত্যাবর্তন {0} জন্য &#39;{1}&#39; এ &#39;{2}&#39;; দৈর্ঘ্য সেটিং {3} তথ্য এর truncation কারণ হবে হিসাবে.
apps/frappe/frappe/model/db_schema.py +142,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,দৈর্ঘ্য প্রত্যাবর্তন {0} জন্য &#39;{1}&#39; এ &#39;{2}&#39;; দৈর্ঘ্য সেটিং {3} তথ্য এর truncation কারণ হবে হিসাবে.
DocType: Print Format,Custom CSS,কাস্টম CSS
apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,একটা মন্তব্য যোগ করুন
apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},উপেক্ষিত: {0} থেকে {1}
@@ -1199,13 +1202,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,
DocType: Custom Role,Custom Role,কাস্টম ভূমিকা
apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,হোম / Test ফোল্ডার 2
DocType: System Settings,Ignore User Permissions If Missing,হারিয়ে যাওয়া যদি ব্যবহারকারীর অনুমতি উপেক্ষা
apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,আপলোড করার আগে নথি সংরক্ষণ করুন.
apps/frappe/frappe/public/js/frappe/form/control.js +1075,Please save the document before uploading.,আপলোড করার আগে নথি সংরক্ষণ করুন.
apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,আপনার পাসওয়ার্ড লিখুন
DocType: Dropbox Settings,Dropbox Access Secret,ড্রপবক্স অ্যাক্সেস গোপন
apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,আরেকটি মন্তব্য যোগ করুন
apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,DOCTYPE সম্পাদনা
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,নিউজলেটার থেকে সদস্যতা মুক্ত
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,Unsubscribed from Newsletter,নিউজলেটার থেকে সদস্যতা মুক্ত
apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,একটি অনুচ্ছেদ বিরতির আগে আসতে হবে ভাঁজ
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,উন্নয়ন অধীনে
apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,সর্বশেষ রুপান্তরিত
DocType: Workflow State,hand-down,হাত নিচে করো
DocType: Address,GST State,GST রাজ্য
@@ -1226,6 +1230,7 @@ DocType: Workflow State,Tag,ট্যাগ
DocType: Custom Script,Script,লিপি
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,আমার সেটিংস
DocType: Website Theme,Text Color,টেক্সট রঙ
apps/frappe/frappe/desk/page/backups/backups.py +72,Backup job is already queued. You will receive an email with the download link,ব্যাকআপ কাজ ইতিমধ্যেই সারিবদ্ধ। আপনি ডাউনলোড লিঙ্কের সাথে একটি ইমেল পাবেন
DocType: Desktop Icon,Force Show,ফোর্স দেখান
apps/frappe/frappe/auth.py +78,Invalid Request,অনুরোধ অগ্রহণযোগ্য
apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,এই ফর্ম কোন ইনপুট নেই
@@ -1336,7 +1341,7 @@ DocType: DocField,Name,নাম
apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,আপনি আপনার পরিকল্পনা জন্য {0} এর সর্বোচ্চ স্থান অতিক্রম করেছেন. {1}.
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,ডক্স অনুসন্ধান করুন
DocType: OAuth Authorization Code,Valid,বৈধ
apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,খোলা সংযুক্তি
apps/frappe/frappe/public/js/frappe/form/control.js +1354,Open Link,খোলা সংযুক্তি
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,তোমার ভাষা
apps/frappe/frappe/desk/form/load.py +46,Did not load,লোড করা হয়নি
apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,সারি যোগ করুন
@@ -1354,6 +1359,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","নির্দিষ্ট কাগজপত্র, একটি চালান মত, একবার চূড়ান্ত পরিবর্তন করা উচিত নয়. যেমন নথি জন্য চূড়ান্ত রাষ্ট্র জমা বলা হয়. আপনি ভূমিকা জমা দিতে পারেন, যা সীমিত করতে পারে."
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,আপনি এই প্রতিবেদন রপ্তানি করতে অনুমতি দেওয়া হয় না
apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 টি আইটেম নির্বাচন
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> কোন ফলাফল পাওয়া যায়নি ' </p>
DocType: Newsletter,Test Email Address,টেস্ট ইমেল ঠিকানা
DocType: ToDo,Sender,প্রেরকের
DocType: GSuite Settings,Google Apps Script,Google Apps স্ক্রিপ্ট
@@ -1461,7 +1467,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Ple
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,লোড প্রতিবেদন
apps/frappe/frappe/limits.py +72,Your subscription will expire today.,আপনার সাবস্ক্রিপশন আজ এর মেয়াদ শেষ হবে.
DocType: Page,Standard,মান
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,সংযুক্তি
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,সংযুক্তি
apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,পাসওয়ার্ড আপডেট বিজ্ঞপ্তি
apps/frappe/frappe/desk/page/backups/backups.html +13,Size,আয়তন
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,সম্পূর্ণ নিয়োগ
@@ -1491,7 +1497,7 @@ apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversat
apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},বিকল্প লিংক ক্ষেত্রের জন্য নির্ধারণ করে না {0}
DocType: Customize Form,"Must be of type ""Attach Image""",টাইপ করতে হবে &quot;চিত্র সংযুক্ত করুন&quot;
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,সরিয়ে ফেলুন সব
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},ফিল্ডের সেট না না &#39;শুধুমাত্র পাঠযোগ্য&#39; পারেন {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +199,You cannot unset 'Read Only' for field {0},ফিল্ডের সেট না না &#39;শুধুমাত্র পাঠযোগ্য&#39; পারেন {0}
DocType: Auto Email Report,Zero means send records updated at anytime,জিরো মানে যে কোনো সময় আপডেট রেকর্ড পাঠাতে
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +22,Complete Setup,সম্পূর্ণ সেটআপ
DocType: Workflow State,asterisk,তারকাচিহ্ন
@@ -1505,7 +1511,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +98,Week,সপ্
DocType: Social Login Keys,Google,গুগল
DocType: Email Domain,Example Email Address,উদাহরণ ইমেল ঠিকানা
apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,সর্বাধিক ব্যবহৃত
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Unsubscribe from Newsletter,নিউজলেটার থেকে সদস্যতা রদ করুন
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe from Newsletter,নিউজলেটার থেকে সদস্যতা রদ করুন
apps/frappe/frappe/www/login.html +101,Forgot Password,পাসওয়ার্ড ভুলে গেছেন
DocType: Dropbox Settings,Backup Frequency,ব্যাকআপ ফ্রিকোয়েন্সি
DocType: Workflow State,Inverse,বিপরীত
@@ -1583,10 +1589,11 @@ apps/frappe/frappe/config/setup.py +209,"Actions for workflow (e.g. Approve, Can
DocType: Workflow State,flag,পতাকা
apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +57,Feedback Request is already sent to user,প্রতিক্রিয়া আমাদেরকে জানাতে অনুরোধ ইতিমধ্যে ব্যবহারকারী পাঠানো হয়
DocType: Web Page,Text Align,টেক্সট সারিবদ্ধ
apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},নাম মত বিশেষ অক্ষর থাকতে পারে না {0}
apps/frappe/frappe/model/naming.py +185,Name cannot contain special characters like {0},নাম মত বিশেষ অক্ষর থাকতে পারে না {0}
DocType: Contact Us Settings,Forward To Email Address,ফরোয়ার্ড ইমেইল ঠিকানায়
apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,সব ডেটা দেখান
apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,শিরোনাম ক্ষেত্রের একটি বৈধ FIELDNAME হতে হবে
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,ইমেল অ্যাকাউন্ট সেটআপ না দয়া করে সেটআপ থেকে একটি নতুন ইমেল অ্যাকাউন্ট তৈরি করুন&gt; ইমেল&gt; ইমেল অ্যাকাউন্ট
apps/frappe/frappe/config/core.py +7,Documents,কাগজপত্র
DocType: Email Flag Queue,Is Completed,সম্পন্ন হয়
apps/frappe/frappe/www/me.html +22,Edit Profile,জীবন বৃত্তান্ত সম্পাদনা
@@ -1596,7 +1603,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi
myfield
eval:doc.myfield=='My Value'
eval:doc.age&gt;18",এই ক্ষেত্রটি প্রদর্শিত হবে শুধুমাত্র যদি FIELDNAME এখানে সংজ্ঞায়িত মূল্য আছে বা নিয়ম সত্য (উদাহরণ) হয়: myfield Eval: doc.myfield == &#39;আমার মূল্য&#39; Eval: doc.age&gt; 18
apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,আজ
apps/frappe/frappe/public/js/frappe/form/control.js +764,Today,আজ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","আপনি এই সেট করে থাকেন, শুধুমাত্র সেই ব্যবহারকারীদের ক্ষেত্রে সক্ষম এক্সেস নথি হতে হবে (যেমন. ব্লগ পোস্ট) লিংক (যেমন. ব্লগার) যেখানে বিদ্যমান."
DocType: Error Log,Log of Scheduler Errors,নির্ধারণকারী ত্রুটি কার্যবিবরণী
DocType: User,Bio,বায়ো
@@ -1655,7 +1662,7 @@ DocType: Print Format,Js,js
apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,নির্বাচন মুদ্রণ বিন্যাস
apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,সংক্ষিপ্ত কীবোর্ড নিদর্শন অনুমান করা সহজ
DocType: Portal Settings,Portal Menu,পোর্টাল মেনু
apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,{0} এর দৈর্ঘ্য 1 এবং 1000 মধ্যে হতে হবে
apps/frappe/frappe/model/db_schema.py +115,Length of {0} should be between 1 and 1000,{0} এর দৈর্ঘ্য 1 এবং 1000 মধ্যে হতে হবে
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,কিছু জন্য অনুসন্ধান
DocType: DocField,Print Hide,প্রিন্ট লুকান
apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,মান লিখুন
@@ -1708,8 +1715,7 @@ apps/frappe/frappe/model/document.py +564,Cannot change docstatus from 0 to 2,0
DocType: User Permission for Page and Report,Roles Permission,ভূমিকা অনুমতি
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,আপডেট
DocType: Error Snapshot,Snapshot View,স্ন্যাপশট দেখুন
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,পাঠানোর আগে নিউজলেটার সংরক্ষণ করুন
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} বছর (গুলি) আগে
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +101,Please save the Newsletter before sending,পাঠানোর আগে নিউজলেটার সংরক্ষণ করুন
apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},বিকল্প সারিতে ক্ষেত্রের {0} জন্য একটি বৈধ DOCTYPE হতে হবে {1}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,বৈশিষ্ট্য সম্পাদনা
DocType: Patch Log,List of patches executed,প্যাচ তালিকা মৃত্যুদন্ড
@@ -1727,7 +1733,7 @@ apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,পাসও
DocType: Workflow State,trash,আবর্জনা
DocType: System Settings,Older backups will be automatically deleted,পুরাতন ব্যাক-আপ স্বয়ংক্রিয়ভাবে মুছে ফেলা হবে
DocType: Event,Leave blank to repeat always,সবসময় পুনরাবৃত্তি ফাঁকা ছেড়ে দিন
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +192,Confirmed,নিশ্চিতকৃত
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,Confirmed,নিশ্চিতকৃত
DocType: Event,Ends on,এ শেষ
DocType: Payment Gateway,Gateway,প্রবেশপথ
apps/frappe/frappe/public/js/frappe/form/linked_with.js +116,Not enough permission to see links,লিঙ্ক দেখতে যথেষ্ট অনুমতি
@@ -1758,7 +1764,6 @@ DocType: Contact,Purchase Manager,ক্রয় ম্যানেজার
DocType: Custom Script,Sample,নমুনা
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Uncategorised ট্যাগ্স
DocType: Event,Every Week,প্রতি সপ্তাহে
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,ইমেইল অ্যাকাউন্ট না সেটআপ। সেটআপ&gt; ইমেইল&gt; ইমেল অ্যাকাউন্ট থেকে একটি নতুন অ্যাকাউন্ট তৈরি করুন
apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,এখানে ক্লিক করুন আপনার ব্যবহারের পরিমাণ চেক বা একটি উচ্চ প্ল্যানে আপগ্রেড করার
DocType: Custom Field,Is Mandatory Field,পাঠিয়ে দিন
DocType: User,Website User,ওয়েবসাইট দেখুন ব্যবহারকারী
@@ -1766,7 +1771,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +10,Not equals,
DocType: Integration Request,Integration Request Service,ইন্টিগ্রেশন অনুরোধ পরিষেবা
DocType: Website Script,Script to attach to all web pages.,স্ক্রিপ্ট সব ওয়েব পেজ থেকে জোড়া.
DocType: Web Form,Allow Multiple,একাধিক মঞ্জুরি
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +40,Assign,দায়িত্ব অর্পণ করা
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +44,Assign,দায়িত্ব অর্পণ করা
apps/frappe/frappe/config/setup.py +102,Import / Export Data from .csv files.,CSV ফাইল থেকে আমদানি / রপ্তানি ডেটা.
DocType: Auto Email Report,Only Send Records Updated in Last X Hours,শুধু পাঠান রেকর্ডস গত এক্স ঘন্টা আপডেট
DocType: Communication,Feedback,প্রতিক্রিয়া
@@ -1846,7 +1851,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,অবশ
apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,সংযোজনের পূর্বে সংরক্ষণ করুন.
apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),যোগ করা হয়েছে {0} ({1})
apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},ডিফল্ট থিম সেট করা হয় {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype থেকে পরিবর্তন করা যাবে না {0} থেকে {1} সারিতে {2}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +325,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype থেকে পরিবর্তন করা যাবে না {0} থেকে {1} সারিতে {2}
apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,ভূমিকা অনুমতি
DocType: Help Article,Intermediate,অন্তর্বর্তী
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,পড়তে পারে
@@ -1861,9 +1866,9 @@ apps/frappe/frappe/core/doctype/user/user.js +42,Refreshing...,রিফ্র
DocType: Event,Starts on,শুরু হয়
DocType: System Settings,System Settings,পদ্ধতি নির্ধারণ
apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,সেশন শুরু ব্যর্থ
apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},এই ইমেইল {0} পাঠানো এবং কপি করা হয়েছে {1}
apps/frappe/frappe/email/queue.py +470,This email was sent to {0} and copied to {1},এই ইমেইল {0} পাঠানো এবং কপি করা হয়েছে {1}
DocType: Workflow State,th,ম
apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},তৈরি করুন একটি নতুন {0}
apps/frappe/frappe/public/js/frappe/form/control.js +1517,Create a new {0},তৈরি করুন একটি নতুন {0}
DocType: Email Rule,Is Spam,স্প্যাম
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},গালাগাল প্রতিবেদন {0}
apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},ওপেন {0}
@@ -1875,12 +1880,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon a
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,নকল
DocType: Newsletter,Create and Send Newsletters,তৈরি করুন এবং পাঠান লেটার
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date must be before To Date,জন্ম তারিখ থেকে আগে হওয়া আবশ্যক
DocType: Address,Andaman and Nicobar Islands,আন্দামান ও নিকোবর দ্বীপপুঞ্জ
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +216,GSuite Document,GSuite ডকুমেন্ট
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +29,Please specify which value field must be checked,"চেক করা আবশ্যক, যা মান ক্ষেত্র উল্লেখ করুন"
apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"""Parent"" signifies the parent table in which this row must be added",&quot;মূল&quot; এই সারিতে যোগ করা হবে যা প্যারেন্ট টেবিল উল্লেখ
DocType: Website Theme,Apply Style,শৈলী প্রয়োগ
DocType: Feedback Request,Feedback Rating,প্রতিক্রিয়া রেটিং
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared With,সাথে ভাগ
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,সাথে ভাগ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,সেটআপ&gt; ব্যবহারকারী অনুমতি ম্যানেজার
DocType: Help Category,Help Articles,সাহায্য প্রবন্ধ
,Modules Setup,মডিউল সেটআপ
apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,শ্রেণী:
@@ -1911,7 +1918,7 @@ DocType: OAuth Client,App Client ID,অ্যাপ ক্লায়েন্
DocType: Kanban Board,Kanban Board Name,Kanban বোর্ড নাম
DocType: Email Alert Recipient,"Expression, Optional","এক্সপ্রেশন, ঐচ্ছিক"
DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,কপি করুন এবং script.google.com এ এই কোডটি এবং আপনার প্রকল্পের ফাঁকা Code.gs পেস্ট
apps/frappe/frappe/email/queue.py +456,This email was sent to {0},এই ইমেইল পাঠানো হয়েছিল {0}
apps/frappe/frappe/email/queue.py +472,This email was sent to {0},এই ইমেইল পাঠানো হয়েছিল {0}
DocType: DocField,Remember Last Selected Value,মনে রাখুন সর্বশেষ নির্বাচিত মূল্য
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +334,Please select Document Type,দয়া করে নির্বাচন করুন ডকুমেন্ট টাইপ
DocType: Email Account,Check this to pull emails from your mailbox,এই আপনার মেইলবক্স থেকে ইমেইল টান চেক
@@ -1926,6 +1933,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,অ
DocType: Feedback Trigger,Email Field,ইমেল ফিল্ড
apps/frappe/frappe/www/update-password.html +59,New Password Required.,নতুন পাসওয়ার্ড আবশ্যক।
apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} সঙ্গে এই নথিটি ভাগ {1}
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,সেটআপ&gt; ব্যবহারকারী
DocType: Website Settings,Brand Image,প্রতিকি ছবি
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","উপরের ন্যাভিগেশন বারের মধ্যে, ফুটার ও লোগোর সেটআপ."
@@ -1993,8 +2001,8 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa
apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},জন্য ফাইল ফরম্যাট পড়তে অক্ষম {0}
DocType: Auto Email Report,Filter Data,ফিল্টার ডেটা
apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,একটি ট্যাগ যুক্ত
apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,প্রথম একটি ফাইলটি যুক্ত করুন.
apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","নামের সেটিং কিছু ত্রুটি ছিল, প্রশাসকের সাথে যোগাযোগ করুন"
apps/frappe/frappe/public/js/frappe/form/control.js +1335,Please attach a file first.,প্রথম একটি ফাইলটি যুক্ত করুন.
apps/frappe/frappe/model/naming.py +174,"There were some errors setting the name, please contact the administrator","নামের সেটিং কিছু ত্রুটি ছিল, প্রশাসকের সাথে যোগাযোগ করুন"
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,ইনকামিং ইমেইল একাউন্ট সঠিক নয়
apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \
Please enter a valid email address so that we can get back.",তুমি তোমার পরিবর্তে নাম আপনার ইমেল লিখেছি বলে মনে হচ্ছে। যাতে আমরা ফিরে পেতে পারেন \ অনুগ্রহ করে একটি বৈধ ইমেইল ঠিকানা লিখুন।
@@ -2046,7 +2054,6 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,
DocType: Custom DocPerm,Create,তৈরি করুন
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},অকার্যকর ফিল্টার: {0}
DocType: Email Account,no failed attempts,কোন ব্যর্থ প্রচেষ্টা
apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,কোনো ডিফল্ট ঠিকানা টেমপ্লেট পাওয়া যায় নি। সেটআপ&gt; মুদ্রণ এবং ব্র্যান্ডিং&gt; ঠিকানা টেমপ্লেট থেকে একটি নতুন তৈরি করুন।
DocType: GSuite Settings,refresh_token,refresh_token
DocType: Dropbox Settings,App Access Key,অ্যাপ্লিকেশন অ্যাক্সেস কী
DocType: OAuth Bearer Token,Access Token,অ্যাক্সেস টোকেন
@@ -2072,6 +2079,7 @@ apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl +
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},একটি নতুন {0}
apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,নতুন ইমেল অ্যাকাউন্ট
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +28,Document Restored,ডকুমেন্ট পুনঃস্থাপিত
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +203,You can't set 'Options' for field {0},আপনি ক্ষেত্রের জন্য &#39;বিকল্প&#39; সেট করতে পারবেন না {0}
apps/frappe/frappe/core/page/usage_info/usage_info.html +86,Size (MB),মাপ (মেগাবাইট)
DocType: Help Article,Author,লেখক
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +10,Resume Sending,পুনঃসূচনা পাঠানো
@@ -2081,7 +2089,7 @@ DocType: Print Settings,Monochrome,একবর্ণ
DocType: Address,Purchase User,ক্রয় ব্যবহারকারী
DocType: Workflow,"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.","ভিন্ন &quot;যুক্তরাষ্ট্র&quot; এই নথি &quot;ওপেন&quot; ভালো লেগেছে. এ উপস্থিত হতে পারে, &quot;অনুমোদন মুলতুবি&quot; ইত্যাদি"
apps/frappe/frappe/utils/verified_command.py +43,This link is invalid or expired. Please make sure you have pasted correctly.,এই লিঙ্কটি অকার্যকর বা মেয়াদ শেষ হয়. আপনি সঠিকভাবে আটকানো আছে দয়া করে নিশ্চিত করুন.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> সফলভাবে এই মেলিং তালিকা থেকে সদস্যতামুক্ত করা হয়েছে।
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +136,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> সফলভাবে এই মেলিং তালিকা থেকে সদস্যতামুক্ত করা হয়েছে।
DocType: Web Page,Slideshow,ছবি
apps/frappe/frappe/contacts/doctype/address_template/address_template.py +31,Default Address Template cannot be deleted,ডিফল্ট ঠিকানা টেমপ্লেট মোছা যাবে না
DocType: Contact,Maintenance Manager,রক্ষণাবেক্ষণ ব্যাবস্থাপক
@@ -2102,7 +2110,7 @@ apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a r
DocType: System Settings,Apply Strict User Permissions,কঠোর ব্যবহারকারীর অনুমতি প্রয়োগ
DocType: DocField,Allow Bulk Edit,বাল্ক সম্পাদনা করার অনুমতি দিন
DocType: Blog Post,Blog Post,ব্লগ পোস্ট
apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,উন্নত অনুসন্ধান
apps/frappe/frappe/public/js/frappe/form/control.js +1527,Advanced Search,উন্নত অনুসন্ধান
apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,পাসওয়ার্ড রিসেট নির্দেশাবলী আপনার ইমেইল পাঠানো হয়েছে
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \
higher levels for field level permissions.","শ্রেনী 0 ডকুমেন্ট স্তর অনুমতিগুলি, \ মাঠ পর্যায় অনুমতির জন্য উচ্চ মাত্রার জন্য।"
@@ -2127,13 +2135,13 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new re
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,খোঁজ
DocType: Currency,Fraction,ভগ্নাংশ
DocType: LDAP Settings,LDAP First Name Field,দ্বারা LDAP প্রথম নাম ফিল্ড
apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,বিদ্যমান সংযুক্তি থেকে নির্বাচন
apps/frappe/frappe/public/js/frappe/form/control.js +1085,Select from existing attachments,বিদ্যমান সংযুক্তি থেকে নির্বাচন
DocType: Custom Field,Field Description,মাঠ বর্ণনা
apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,প্রম্পট মাধ্যমে নির্ধারণ করে না নাম
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,ইমেল ইনবক্স
DocType: Auto Email Report,Filters Display,ফিল্টার প্রদর্শন
DocType: Website Theme,Top Bar Color,শীর্ষ বার রঙ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Do you want to unsubscribe from this mailing list?,আপনি এই মেইলিং লিস্ট থেকে সদস্যতা ত্যাগ করতে চান?
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Do you want to unsubscribe from this mailing list?,আপনি এই মেইলিং লিস্ট থেকে সদস্যতা ত্যাগ করতে চান?
DocType: Address,Plant,উদ্ভিদ
apps/frappe/frappe/core/doctype/communication/communication.js +65,Reply All,সবগুলোর উত্তর দাও
DocType: DocType,Setup,সেটআপ
@@ -2176,7 +2184,7 @@ DocType: User,Send Notifications for Transactions I Follow,আমি অনু
apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: সরিয়ে ফেলতে চান, লেখা ছাড়া সংশোধন সেট করা যায় না"
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,আপনি সংযুক্তি মুছে ফেলতে চান আপনি কি নিশ্চিত?
apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} <a href=""#Form/{0}/{1}"">{1}</a> is linked with {2} <a href=""#Form/{2}/{3}"">{3}</a>","মুছে ফেলতে অথবা কারণ {0} বাতিল করা যাবে না <a href=""#Form/{0}/{1}"">{1}</a> সঙ্গে সংযুক্ত করা হয় {2} <a href=""#Form/{2}/{3}"">{3}</a>"
apps/frappe/frappe/__init__.py +1062,Thank you,তোমাকে ধন্যবাদ
apps/frappe/frappe/__init__.py +1070,Thank you,তোমাকে ধন্যবাদ
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,রক্ষা
DocType: Print Settings,Print Style Preview,স্টাইল মুদ্রণের পূর্বরূপ
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
@@ -2191,7 +2199,7 @@ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,ফর
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,SR কোন
,Role Permissions Manager,ভূমিকা অনুমতি ম্যানেজার
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,নতুন মুদ্রণ বিন্যাস নাম
apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,সংযুক্তি পরিষ্কার
apps/frappe/frappe/public/js/frappe/form/control.js +1087,Clear Attachment,সংযুক্তি পরিষ্কার
apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,আবশ্যিক:
,User Permissions Manager,ব্যবহারকারীর অনুমতি ম্যানেজার
DocType: Property Setter,New value to be set,নতুন মান সেট করা
@@ -2216,7 +2224,7 @@ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment C
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,সাফ ত্রুটি লগ
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,অনুগ্রহ করে একটি রেটিং নির্বাচন
DocType: Email Account,Notify if unreplied for (in mins),(মিনিট) জন্য unreplied যদি অবহিত
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,২ দিন আগে
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +501,2 days ago,২ দিন আগে
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,ব্লগ পোস্ট শ্রেণীবিভক্ত.
DocType: Workflow State,Time,সময়
DocType: DocField,Attach,জোড়া
@@ -2232,6 +2240,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,ব্
DocType: GSuite Templates,Template Name,টেম্পলেট নাম
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,ডকুমেন্টের নতুন ধরনের
DocType: Custom DocPerm,Read,পড়া
DocType: Address,Chhattisgarh,ছত্তিশগড়ে
DocType: Role Permission for Page and Report,Role Permission for Page and Report,পেজ এবং প্রতিবেদনের জন্য ভূমিকা অনুমতি
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,সারিবদ্ধ মূল্য
apps/frappe/frappe/www/update-password.html +14,Old Password,পুরনো পাসওয়ার্ড
@@ -2278,7 +2287,7 @@ apps/frappe/frappe/public/js/frappe/roles_editor.js +28,Add all roles,সব ভ
apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your email and message so that we \
can get back to you. Thanks!",আমরা আপনাকে ফেরত পেতে পারেন \ যাতে আপনার ইমেইল এবং পাঠান উভয় লিখুন. ধন্যবাদ!
apps/frappe/frappe/email/smtp.py +170,Could not connect to outgoing email server,বহির্গামী ইমেইল সার্ভারের সাথে সংযোগ করা যায়নি
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +162,Thank you for your interest in subscribing to our updates,আমাদের আপডেট সাবস্ক্রাইব আপনার আগ্রহের জন্য আপনাকে ধন্যবাদ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Thank you for your interest in subscribing to our updates,আমাদের আপডেট সাবস্ক্রাইব আপনার আগ্রহের জন্য আপনাকে ধন্যবাদ
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Custom Column,কাস্টম কলাম
DocType: Workflow State,resize-full,পুনরায় আকার-পূর্ণ
DocType: Workflow State,off,বন্ধ
@@ -2341,7 +2350,7 @@ DocType: Address,Telangana,তেলেঙ্গানা
apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,{0} একটি বিকল্প হতে হবে এর জন্য ডিফল্ট
DocType: Tag Doc Category,Tag Doc Category,ট্যাগ ডক শ্রেণী
DocType: User,User Image,ব্যবহারকারী চিত্র
apps/frappe/frappe/email/queue.py +289,Emails are muted,ইমেইল নিঃশব্দ
apps/frappe/frappe/email/queue.py +304,Emails are muted,ইমেইল নিঃশব্দ
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + আপ
DocType: Website Theme,Heading Style,শিরোনাম শৈলী
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +183,A new Project with this name will be created,এই নামের একটি নতুন প্রকল্প তৈরি করা হবে
@@ -2558,7 +2567,6 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,ঘণ্টা
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,ইমেল সতর্কতা ত্রুটি
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,সাথে এই দস্তাবেজ ভাগ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,সেটআপ&gt; ব্যবহারকারীর অনুমতি ম্যানেজার
apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,এটা শিশুদের আছে {0} {1} পাতার একটি নোড হতে পারে না
DocType: Communication,Info,তথ্য
apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,সংযুক্তি যোগ
@@ -2602,7 +2610,7 @@ apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,মুদ
DocType: Email Alert,Send days before or after the reference date,আগে বা রেফারেন্স তারিখ পরে দিন পাঠান
DocType: User,Allow user to login only after this hour (0-24),ব্যবহারকারী শুধুমাত্র এই ঘন্টা পর লগইন করতে (0-24) অনুমতি দিন
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,মূল্য
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +165,Click here to verify,যাচাই করার জন্য এখানে ক্লিক করুন
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +166,Click here to verify,যাচাই করার জন্য এখানে ক্লিক করুন
apps/frappe/frappe/utils/password_strength.py +178,Predictable substitutions like '@' instead of 'a' don't help very much.,মত আন্দাজের বদল &#39;@&#39; পরিবর্তে &#39;একটি&#39; খুব সাহায্য না.
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,আমার দ্বারা নির্ধারিত হয়
apps/frappe/frappe/utils/data.py +462,Zero,শূন্য
@@ -2614,6 +2622,7 @@ DocType: ToDo,Priority,অগ্রাধিকার
DocType: Email Queue,Unsubscribe Param,আন-সাবস্ক্রাইব পরম
DocType: Auto Email Report,Weekly,সাপ্তাহিক
DocType: Communication,In Reply To,জবাবে
apps/frappe/frappe/contacts/doctype/address/address.py +189,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,কোনও ডিফল্ট ঠিকানা টেমপ্লেট পাওয়া যায়নি দয়া করে সেটআপ&gt; মুদ্রণ এবং ব্রান্ডিং&gt; ঠিকানা টেমপ্লেট থেকে একটি নতুন তৈরি করুন।
DocType: DocType,Allow Import (via Data Import Tool),আমদানি মঞ্জুরি দিন (ডেটা আমদানি টুল এর মাধ্যমে)
apps/frappe/frappe/templates/print_formats/standard_macros.html +30,Sr,সিনিয়র
DocType: DocField,Float,ভাসা
@@ -2704,7 +2713,6 @@ apps/frappe/frappe/commands/site.py +451,Invalid limit {0},অবৈধ সী
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,একটি নথি টাইপ তালিকা
DocType: Event,Ref Type,সুত্র ধরন
apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","আপনি নতুন রেকর্ড আপলোড হয়, &quot;নাম&quot; (আইডি) কলাম ফাঁকা রাখুন."
DocType: Address,Chattisgarh,ছত্তিশগড়
apps/frappe/frappe/config/core.py +47,Errors in Background Events,পৃষ্ঠভূমি ঘটনাবলী ত্রুটি
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,কলাম কোন
DocType: Workflow State,Calendar,ক্যালেন্ডার
@@ -2736,7 +2744,7 @@ apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},অ্
DocType: Integration Request,Remote,দূরবর্তী
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,গণনা করা
apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,প্রথম DOCTYPE দয়া করে নির্বাচন করুন
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,আপনার ইমেইল নিশ্চিত করুন
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +174,Confirm Your Email,আপনার ইমেইল নিশ্চিত করুন
apps/frappe/frappe/www/login.html +42,Or login with,অথবা লগইন করুন
DocType: Error Snapshot,Locals,অঁচলবাসী
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},মাধ্যমে আদানপ্রদান {0} উপর {1} {2}
@@ -2753,7 +2761,7 @@ DocType: Web Page,Web Page,ওয়েব পেজ
DocType: Blog Category,Blogger,ব্লগার
apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},&#39;বৈশ্বিক অনুসন্ধান&#39; টাইপ জন্য অনুমতি দেওয়া হয় না {0} সারিতে {1}
apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,তালিকা দেখুন
apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},জন্ম বিন্যাসে নির্মাণ করা আবশ্যক: {0}
apps/frappe/frappe/public/js/frappe/form/control.js +810,Date must be in format: {0},জন্ম বিন্যাসে নির্মাণ করা আবশ্যক: {0}
DocType: Workflow,Don't Override Status,স্থিতি ওভাররাইড না
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,একটি রেটিং দিতে দয়া করে.
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} প্রতিক্রিয়া অনুরোধ
@@ -2786,7 +2794,7 @@ DocType: Custom DocPerm,Report,রিপোর্ট
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,পরিমাণ 0 অনেক বেশী হতে হবে.
apps/frappe/frappe/desk/reportview.py +107,{0} is saved,{0} সংরক্ষিত হয়েছে
apps/frappe/frappe/core/doctype/user/user.py +327,User {0} cannot be renamed,{0} ব্যবহারকারীর নাম পরিবর্তন করা যাবে না
apps/frappe/frappe/model/db_schema.py +107,Fieldname is limited to 64 characters ({0}),FIELDNAME 64 অক্ষরের মধ্যে সীমিত আছে ({0})
apps/frappe/frappe/model/db_schema.py +108,Fieldname is limited to 64 characters ({0}),FIELDNAME 64 অক্ষরের মধ্যে সীমিত আছে ({0})
apps/frappe/frappe/config/desk.py +59,Email Group List,ই-মেইল গ্রুপ তালিকা
DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],.ico এক্সটেনশন সঙ্গে একটি আইকন ফাইল. 16 X 16 px এর হতে হবে. একটি ফেভিকন জেনারেটর ব্যবহার করে তৈরি করা. [Favicon-generator.org]
DocType: Auto Email Report,Format,বিন্যাস
@@ -2864,7 +2872,7 @@ DocType: Website Settings,Title Prefix,শিরোনাম উপসর্গ
DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,সূচনাবার্তা ও বাল্ক মেইল এই বহির্মুখী সার্ভার থেকে পাঠানো হবে.
DocType: Workflow State,cog,চাকার দান্ত
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on Migrate,রোমিং মাইগ্রেট করার উপর সিঙ্ক
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,বর্তমানে দেখছেন
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Currently Viewing,বর্তমানে দেখছেন
DocType: DocField,Default,ডিফল্ট
apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} যোগ করা হয়েছে
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',জন্য অনুসন্ধান করুন &#39;{0}&#39;
@@ -2924,7 +2932,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +771,Report was
DocType: Print Settings,Print Style,মুদ্রণ এবং প্রতিচ্ছবিকরণ যন্ত্রসমূহ
apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,কোনো রেকর্ড লিঙ্ক করা
DocType: Custom DocPerm,Import,আমদানি
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +178,Row {0}: Not allowed to enable Allow on Submit for standard fields,সারি {0}: মান ক্ষেত্রের জন্য জমা মঞ্জুরি সচল করার অনুমতি নেই
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +180,Row {0}: Not allowed to enable Allow on Submit for standard fields,সারি {0}: মান ক্ষেত্রের জন্য জমা মঞ্জুরি সচল করার অনুমতি নেই
apps/frappe/frappe/config/setup.py +100,Import / Export Data,আমদানি / রপ্তানি ডেটা
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,স্ট্যান্ডার্ড ভূমিকা পালটে যাবে না
DocType: Communication,To and CC,থেকে এবং সিসি
@@ -2950,7 +2958,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo
DocType: Auto Email Report,Filter Meta,ফিল্টার মেটা
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,এই ফর্মটি একটি ওয়েব পেজ আছে তাহলে টেক্সট ওয়েব পৃষ্ঠা থেকে লিঙ্ক জন্য প্রদর্শন করা হবে. লিংক রুট স্বয়ংক্রিয়ভাবে page_name` এবং `` parent_website_route` উপর ভিত্তি করে তৈরি করা হবে
DocType: Feedback Request,Feedback Trigger,প্রতিক্রিয়া ট্রিগার
apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,প্রথম {0} সেট করুন
apps/frappe/frappe/public/js/frappe/form/control.js +1741,Please set {0} first,প্রথম {0} সেট করুন
DocType: Unhandled Email,Message-id,বার্তা আইডিটি
DocType: Patch Log,Patch,তালি
DocType: Async Task,Failed,ব্যর্থ


+ 72
- 64
frappe/translations/bs.csv Datei anzeigen

@@ -14,8 +14,9 @@ apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,Mo
DocType: User,Facebook Username,Facebook ime
DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Napomena: više sesija će biti dozvoljeno u slučaju mobilnih uređaja
apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Omogućeno e-mail inbox za korisnika {korisnike}
apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Ne možete slati ovo e-mail. Ste prešli granicu od slanja e-mailova {0} za ovaj mjesec.
apps/frappe/frappe/email/queue.py +225,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Ne možete slati ovo e-mail. Ste prešli granicu od slanja e-mailova {0} za ovaj mjesec.
apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Trajno Podnijeti {0} ?
apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,Preuzimanje datoteka za rezervne kopije
DocType: Address,County,okrug
DocType: Workflow,If Checked workflow status will not override status in list view,Ako Provjeriti status tok posla neće nadjačati status u prikazu liste
apps/frappe/frappe/client.py +280,Invalid file path: {0},Nevažeći putanja datoteke: {0}
@@ -80,10 +81,10 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Podešava
apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administrator prijavljeni
DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontakt opcije, poput &quot;Sales Query, Podrška upit&quot; itd jedni na novoj liniji ili odvojene zarezima."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Preuzimanje
apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Insert
apps/frappe/frappe/public/js/frappe/form/control.js +1979,Insert,Insert
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Odaberite {0}
DocType: Print Settings,Classic,Klasik
DocType: Desktop Icon,Color,Boja
DocType: DocField,Color,Boja
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +54,For ranges,Za raspone
DocType: Workflow State,indent-right,alineje-desno
DocType: Has Role,Has Role,ima uloga
@@ -100,7 +101,7 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To impor
DocType: DocType,Default Print Format,Zadani oblik ispisa
DocType: Workflow State,Tags,tagovi
apps/frappe/frappe/public/js/frappe/form/workflow.js +33,None: End of Workflow,Ništa: Kraj Workflow
apps/frappe/frappe/model/db_schema.py +346,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} polja se ne može postaviti kao jedinstven u {1}, jer postoje nejedinstvene postojeće vrijednosti"
apps/frappe/frappe/model/db_schema.py +347,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} polja se ne može postaviti kao jedinstven u {1}, jer postoje nejedinstvene postojeće vrijednosti"
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +47,Document Types,Vrste dokumenata
DocType: Address,Jammu and Kashmir,Jammu and Kashmir
DocType: Workflow,Workflow State Field,Workflow Državna polja
@@ -231,7 +232,7 @@ DocType: Workflow,Transition Rules,Prijelazna pravila
apps/frappe/frappe/core/doctype/report/report.js +11,Example:,Primjer:
DocType: Workflow,Defines workflow states and rules for a document.,Definira workflow država i pravila za dokument.
DocType: Workflow State,Filter,filter
apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Naziv Polja {0} ne može imati posebne znakove kao {1}
apps/frappe/frappe/model/db_schema.py +564,Fieldname {0} cannot have special characters like {1},Naziv Polja {0} ne može imati posebne znakove kao {1}
apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Update mnoge vrijednosti u jednom trenutku.
apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Pogreška: Dokument je promijenjen nakon što ste ga otvorili
apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} prijavljeni od: {1}
@@ -260,7 +261,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Uzmite globa
apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Vaša pretplata istekla na {0}. Da biste obnovili, {1}."
DocType: Workflow State,plus-sign,plus-potpisati
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Setup već potpuna
apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} nije instaliran
apps/frappe/frappe/__init__.py +897,App {0} is not installed,App {0} nije instaliran
DocType: Workflow State,Refresh,Osvježi
DocType: Event,Public,Javni
apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Nema podataka za prikaz
@@ -339,7 +340,6 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Edit Heading
DocType: File,File URL,URL datoteke
DocType: Version,Table HTML,Tabela HTML
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> nađeni za 'Nema rezultata </p>
apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Dodaj Pretplatnici
apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Buduća događanja za danas
DocType: Email Alert Recipient,Email By Document Field,E-mail dokumentom Field
@@ -404,7 +404,6 @@ DocType: Desktop Icon,Link,Poveznica
apps/frappe/frappe/utils/file_manager.py +96,No file attached,No file u prilogu
DocType: Version,Version,verzija
DocType: User,Fill Screen,Ispunite zaslon
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,Molimo vas default postavljanje e-pošte iz Setup&gt; E-mail&gt; e-pošte
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","U nemogućnosti da se ovaj izvještaj drvo, zbog podataka koji nedostaju. Najvjerojatnije, to se filtrira zbog dozvole."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Odaberite File
apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Edit preko Upload
@@ -474,9 +473,9 @@ DocType: User,Reset Password Key,Reset Password ključ
DocType: Email Account,Enable Auto Reply,Enable Auto Odgovor
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Nisam vidio
DocType: Workflow State,zoom-in,približi
apps/frappe/frappe/email/queue.py +219,Unsubscribe from this list,Odjaviti iz ove liste
apps/frappe/frappe/email/queue.py +234,Unsubscribe from this list,Odjaviti iz ove liste
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Reference DocType and Reference Name are required,Reference DocType i referentne Ime su obavezna
apps/frappe/frappe/utils/jinja.py +35,Syntax error in template,Sintaktička pogreška u predlošku
apps/frappe/frappe/utils/jinja.py +51,Syntax error in template,Sintaktička pogreška u predlošku
DocType: DocField,Width,Širina
DocType: Email Account,Notify if unreplied,Obavijesti ako Unreplied
DocType: System Settings,Minimum Password Score,Minimalna Password Score
@@ -560,6 +559,7 @@ DocType: Custom Field,Select the label after which you want to insert new field.
DocType: User,Last Login,Zadnja prijava
apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},"Podataka, Naziv Polja je potrebno u redu {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Kolona
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,Molimo da podesite podrazumevani nalog e-pošte iz Setup-a&gt; E-pošta&gt; E-poštni nalog
DocType: Custom Field,Adds a custom field to a DocType,Dodaje prilagođeno polje u vrstu dokumenta
DocType: File,Is Home Folder,Je dom Folder
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} nije valjana e-mail adresa
@@ -567,7 +567,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +733,Select atleast 1 reco
apps/frappe/frappe/core/doctype/has_role/has_role.py +13,User '{0}' already has the role '{1}',Korisnik &#39;{0}&#39; već ima ulogu &#39;{1}&#39;
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,Postaviti i Sync
apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Podijeljeno sa {0}
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe,unsubscribe
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +132,Unsubscribe,unsubscribe
DocType: Communication,Reference Name,Referenca Ime
apps/frappe/frappe/public/js/frappe/toolbar.js +30,Chat Support,Chat Support
DocType: Error Snapshot,Exception,Izuzetak
@@ -585,7 +585,7 @@ DocType: Email Group,Newsletter Manager,Newsletter Menadžer
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Opcija 1
apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} do {1}
apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Prijavite greške prilikom zahtjeva.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} je uspješno dodan na mail Grupe.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +194,{0} has been successfully added to the Email Group.,{0} je uspješno dodan na mail Grupe.
DocType: Address,Uttar Pradesh,Uttar Pradesh
DocType: Address,Pondicherry,Pondicherry
apps/frappe/frappe/public/js/frappe/upload.js +364,Make file(s) private or public?,Napravite datoteku (e) privatno ili javno?
@@ -616,7 +616,7 @@ DocType: Portal Settings,Portal Settings,portal Postavke
DocType: Web Page,0 is highest,0 je najviši
apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Jeste li sigurni da želite da se prespoje ove komunikacije na {0}?
apps/frappe/frappe/www/login.html +104,Send Password,Pošalji lozinke
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +45,Attachments,Prilozi
DocType: Email Queue,Attachments,Prilozi
apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,Nemate dopuštenja za pristup ovom dokumentu
DocType: Language,Language Name,Jezik
DocType: Email Group Member,Email Group Member,Podijelite Grupa članova
@@ -646,7 +646,7 @@ apps/frappe/frappe/utils/password_strength.py +78,Try to use a longer keyboard p
DocType: Feedback Trigger,Check Communication,Provjerite Komunikacija
DocType: Address,Rajasthan,Rajasthan
apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Report Builder izvješća se izravno upravlja Report Builder. Ništa učiniti.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Molimo Vas da provjerite e-mail adresa
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +164,Please verify your Email Address,Molimo Vas da provjerite e-mail adresa
apps/frappe/frappe/model/document.py +903,none of,nitko od
apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Pošalji kopiju meni
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Unos korisnika Dozvole
@@ -657,7 +657,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Si
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban odbor {0} ne postoji.
apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} trenutno gledate ovaj dokument
DocType: ToDo,Assigned By Full Name,Dodijeljen od strane Ime i prezime
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} ažurirana
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} ažurirana
apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Izvještaj se ne može postaviti za vrste
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} dana
DocType: Email Account,Awaiting Password,čeka lozinke
@@ -682,7 +682,7 @@ DocType: Workflow State,Stop,zaustaviti
DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Link na stranicu koju želite otvoriti. Ostavite prazno ako želite da to grupu roditelja.
DocType: DocType,Is Single,Nije u braku
apps/frappe/frappe/core/doctype/user/user.py +720,Sign Up is disabled,Prijavi se je onemogućena
apps/frappe/frappe/email/queue.py +278,{0} has left the conversation in {1} {2},{0} je napustio razgovor u {1} {2}
apps/frappe/frappe/email/queue.py +293,{0} has left the conversation in {1} {2},{0} je napustio razgovor u {1} {2}
DocType: Blogger,User ID of a Blogger,User ID nekog Blogger
apps/frappe/frappe/core/doctype/user/user.py +287,There should remain at least one System Manager,Tu bi trebao ostati barem jedan sustav Manager
DocType: GSuite Settings,Authorization Code,kod autorizacije
@@ -728,6 +728,7 @@ DocType: Event,Event,Događaj
apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Na {0}, {1} napisao:"
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,Ne možete izbrisati standardne polje. Možete sakriti ako želite
DocType: Top Bar Item,For top bar,Na gornjoj traci
apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,Na vrhu za rezervnu kopiju. Dobićete e-mail sa linkom za preuzimanje
apps/frappe/frappe/utils/bot.py +148,Could not identify {0},nije mogao da identifikuje {0}
DocType: Address,Address,Adresa
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +3,Payment Failed,plaćanje nije uspjelo
@@ -752,13 +753,13 @@ DocType: Web Form,Allow Print,Dozvolite Print
apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,No Apps Instalirani
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Označite polje kao obavezni
DocType: Communication,Clicked,Kliknuli
apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Nema dozvole za ' {0} ' {1}
apps/frappe/frappe/public/js/legacy/form.js +950,No permission to '{0}' {1},Nema dozvole za ' {0} ' {1}
DocType: User,Google User ID,Google korisnički ID
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Zakazan za slanje
DocType: DocType,Track Seen,Seen Track
apps/frappe/frappe/desk/form/utils.py +55,This method can only be used to create a Comment,Ova metoda se može koristiti samo za stvaranje komentar
DocType: Event,orange,narandža
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,No {0} found,Nije našao {0}
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +558,No {0} found,Nije našao {0}
apps/frappe/frappe/config/setup.py +242,Add custom forms.,Dodaj prilagođenu formu.
apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} u {2}
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +419,submitted this document,dostavio ovaj dokument
@@ -788,6 +789,7 @@ DocType: Newsletter Email Group,Newsletter Email Group,Newsletter E-mail Group
DocType: Dropbox Settings,Integrations,Integracije
DocType: DocField,Section Break,Odjeljak Break
DocType: Address,Warehouse,Skladište
DocType: Address,Other Territory,Ostala teritorija
,Messages,Poruke
apps/frappe/frappe/desk/page/applications/applications.js +49,Portal,Portal
DocType: Email Account,Use Different Email Login ID,Koristite različite E-mail Prijava ID
@@ -818,6 +820,7 @@ apps/frappe/frappe/utils/data.py +556,1 month ago,prije 1 mjesec
DocType: Contact,User ID,Korisnički ID
DocType: Communication,Sent,Poslano
DocType: Address,Kerala,Kerala
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} godinu dana
DocType: File,Lft,LFT
DocType: User,Simultaneous Sessions,Simultano Sessions
DocType: OAuth Client,Client Credentials,akreditiva klijent
@@ -834,7 +837,7 @@ DocType: Email Queue,Unsubscribe Method,Odjava Način
DocType: GSuite Templates,Related DocType,Povezani DocType
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Uredi za dodavanje sadržaja
apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Izaberite jezike
apps/frappe/frappe/__init__.py +509,No permission for {0},Bez dozvole za {0}
apps/frappe/frappe/__init__.py +517,No permission for {0},Bez dozvole za {0}
DocType: DocType,Advanced,Napredan
apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Izgleda API ključ ili API Tajna je u pravu !!!
apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},{0} {1}: Reference
@@ -845,6 +848,7 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P
DocType: Email Account,Yahoo Mail,Yahoo Mail
apps/frappe/frappe/limits.py +75,Your subscription will expire tomorrow.,Vaša pretplata ističe sutra.
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +483,Saved!,Sačuvane!
apps/frappe/frappe/public/js/frappe/form/control.js +729,{0} is not a valid hex color,{0} nije ispravna heksa boja
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,gospođa
apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Ažurirano {0}: {1}
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,Majstor
@@ -872,7 +876,7 @@ DocType: Report,Disabled,Ugašeno
DocType: Workflow State,eye-close,oka u blizini
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth Provider Postavke
apps/frappe/frappe/config/setup.py +254,Applications,Prijave
apps/frappe/frappe/public/js/frappe/request.js +347,Report this issue,Prijavite ovaj problem
apps/frappe/frappe/public/js/frappe/request.js +349,Report this issue,Prijavite ovaj problem
apps/frappe/frappe/public/js/frappe/form/save.js +79,Name is required,Ime je potrebno
DocType: Custom Script,Adds a custom script (client or server) to a DocType,Dodaje prilagođenu skriptu (klijent ili server) u vrstu dokumenta
DocType: Address,City/Town,Grad / Mjesto
@@ -966,6 +970,7 @@ DocType: Currency,**Currency** Master,** Valuta ** Master
DocType: Email Account,No of emails remaining to be synced,Ne e-mailova preostalih da se sinhronizuju
apps/frappe/frappe/public/js/frappe/upload.js +203,Uploading,otpremanje
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,Sačuvajte dokument zadatak
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,Kliknite ovde da biste objavili greške i sugestije
DocType: Website Settings,Address and other legal information you may want to put in the footer.,Adresa i druge pravne informacije koje možda želite staviti u podnožje.
DocType: Website Sidebar Item,Website Sidebar Item,Sajt Sidebar Stavka
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +44,{0} records updated,{0} evidencija ažurira
@@ -979,12 +984,10 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,jasan
apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Svaki dan događaja treba završiti na isti dan.
DocType: Communication,User Tags,Korisnicki tagovi
apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Fetching Slike ..
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Setup&gt; User
DocType: Workflow State,download-alt,download-alt
apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Preuzimanje App {0}
DocType: Communication,Feedback Request,povratne informacije Upit
apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,Nakon polja nedostaju:
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Experimental Feature,eksperimentalni karakteristike
apps/frappe/frappe/www/login.html +30,Sign in,Prijavi se
DocType: Web Page,Main Section,Glavni Odjeljak
DocType: Page,Icon,ikona
@@ -1086,7 +1089,7 @@ DocType: Customize Form,Customize Form,Prilagodite obrazac
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +104,Mandatory field: set role for,Obavezna polja: set uloga
DocType: Currency,A symbol for this currency. For e.g. $,Simbol za ovu valutu. Kao npr. $
apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,Frappe Framework
apps/frappe/frappe/model/naming.py +174,Name of {0} cannot be {1},Naziv od {0} ne može biti {1}
apps/frappe/frappe/model/naming.py +180,Name of {0} cannot be {1},Naziv od {0} ne može biti {1}
apps/frappe/frappe/config/setup.py +46,Show or hide modules globally.,Prikazivanje ili skrivanje module na globalnoj razini .
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,Od datuma
apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,Uspješno
@@ -1107,7 +1110,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +308,Add A New
apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js +3,See on Website,Pogledajte na sajtu
DocType: Workflow Transition,Next State,Sljedeća država
DocType: User,Block Modules,Blok Moduli
apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Vraćanje dužina na {0} za &#39;{1}&#39; u &#39;{2}&#39;; Podešavanje dužine kao {3} će uzrokovati skraćivanje podataka.
apps/frappe/frappe/model/db_schema.py +142,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Vraćanje dužina na {0} za &#39;{1}&#39; u &#39;{2}&#39;; Podešavanje dužine kao {3} će uzrokovati skraćivanje podataka.
DocType: Print Format,Custom CSS,Prilagođeni CSS
apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Dodaj komentar
apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Ignorisani: {0} do {1}
@@ -1199,13 +1202,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,
DocType: Custom Role,Custom Role,Custom Uloga
apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Početna / Test Folder 2
DocType: System Settings,Ignore User Permissions If Missing,Zanemari korisnika Dozvole Ako nestale
apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Sačuvajte dokument upload.
apps/frappe/frappe/public/js/frappe/form/control.js +1075,Please save the document before uploading.,Sačuvajte dokument upload.
apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Unesite lozinku
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox tajni pristup
apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Dodali još jedan komentar
apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Uredi DocType
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Odjavljeni iz Newsletter
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,Unsubscribed from Newsletter,Odjavljeni iz Newsletter
apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Fold mora doći pred Odjelom Break
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,U razvoju
apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Zadnja izmjena Do
DocType: Workflow State,hand-down,ruka-dole
DocType: Address,GST State,PDV država
@@ -1226,6 +1230,7 @@ DocType: Workflow State,Tag,Privjesak
DocType: Custom Script,Script,Skripta
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Moja podešavanja
DocType: Website Theme,Text Color,Tekst u boji
apps/frappe/frappe/desk/page/backups/backups.py +72,Backup job is already queued. You will receive an email with the download link,Zadatak za backup je već stavljen u red. Dobićete e-mail sa linkom za preuzimanje
DocType: Desktop Icon,Force Show,Force Show
apps/frappe/frappe/auth.py +78,Invalid Request,Invalid Upit
apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Ovaj oblik nema nikakve unos
@@ -1336,7 +1341,7 @@ DocType: DocField,Name,Ime
apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,Premašili ste maksimalan prostor od {0} za svoj plan. {1}.
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Pretražite docs
DocType: OAuth Authorization Code,Valid,Validan
apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Open Link
apps/frappe/frappe/public/js/frappe/form/control.js +1354,Open Link,Open Link
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Tvoj jezik
apps/frappe/frappe/desk/form/load.py +46,Did not load,Nije učitano
apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Dodaj Row
@@ -1354,6 +1359,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Određeni dokumenti , poput fakturu , ne treba mijenjati jednom finalu . Konačno stanje za takve dokumente se zove Postavio . Možete ograničiti koje uloge mogu podnijeti ."
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Nije Vam dopušteno izvoziti ovaj izvještaj
apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 stavka odabrana
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> Nema pronađenih rezultata za ' </p>
DocType: Newsletter,Test Email Address,Test-mail adresa
DocType: ToDo,Sender,Pošiljaoc
DocType: GSuite Settings,Google Apps Script,Google Apps Script
@@ -1462,7 +1468,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Ple
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Učitavanje izvješće
apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Vaša pretplata ističe danas.
DocType: Page,Standard,Standard
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Priloži datoteke
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,Priloži datoteke
apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,Password Update Notification
apps/frappe/frappe/desk/page/backups/backups.html +13,Size,Veličina
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,Dodjela Kompletna
@@ -1492,7 +1498,7 @@ apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversat
apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Opcije nije postavljen za link polju {0}
DocType: Customize Form,"Must be of type ""Attach Image""",Mora biti tipa &quot;Attach Image&quot;
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Odznačite sve
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Ne možete nevezanog &quot;Samo za čitanje&quot; za oblast {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +199,You cannot unset 'Read Only' for field {0},Ne možete nevezanog &quot;Samo za čitanje&quot; za oblast {0}
DocType: Auto Email Report,Zero means send records updated at anytime,Nula znači poslati evidencije ažuriran bilo kada
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +22,Complete Setup,kompletan Setup
DocType: Workflow State,asterisk,Zvjezdica
@@ -1506,7 +1512,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +98,Week,sedmica
DocType: Social Login Keys,Google,Google
DocType: Email Domain,Example Email Address,Primjer e-mail adresa
apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,najviše koristi
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Unsubscribe from Newsletter,Odjava sa Newsletter
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe from Newsletter,Odjava sa Newsletter
apps/frappe/frappe/www/login.html +101,Forgot Password,Zaboravili ste lozinku
DocType: Dropbox Settings,Backup Frequency,backup Frequency
DocType: Workflow State,Inverse,Inverzan
@@ -1584,10 +1590,11 @@ apps/frappe/frappe/config/setup.py +209,"Actions for workflow (e.g. Approve, Can
DocType: Workflow State,flag,zastava
apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +57,Feedback Request is already sent to user,Povratne informacije Zahtjev je već poslan na korisnika
DocType: Web Page,Text Align,Tekst Poravnajte
apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Ime ne može sadržavati posebne znakove kao {0}
apps/frappe/frappe/model/naming.py +185,Name cannot contain special characters like {0},Ime ne može sadržavati posebne znakove kao {0}
DocType: Contact Us Settings,Forward To Email Address,Napadač na e-mail adresu
apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Pokaži sve podatke
apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,"Naslov polje mora bitivaljana podataka, Naziv Polja"
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,Email nalog nije podešen. Molimo vas da kreirate novi e-poštni nalog iz Setup-a&gt; E-pošta&gt; E-poštni nalog
apps/frappe/frappe/config/core.py +7,Documents,Dokumenti
DocType: Email Flag Queue,Is Completed,je završen
apps/frappe/frappe/www/me.html +22,Edit Profile,Uredi profil
@@ -1597,7 +1604,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi
myfield
eval:doc.myfield=='My Value'
eval:doc.age&gt;18",Ovo polje će se pojaviti samo ako Naziv Polja ovdje definiran ima vrednost ili pravila su istinite (primjeri): myfield EVAL: doc.myfield == &#39;Moja Vrijednost&#39; eval: doc.age&gt; 18
apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,danas
apps/frappe/frappe/public/js/frappe/form/control.js +764,Today,danas
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Nakon što ste postavili to, korisnici će biti samo u mogućnosti pristupa dokumentima ( npr. blog post ) gdje jeveza postoji ( npr. Blogger ) ."
DocType: Error Log,Log of Scheduler Errors,Dnevnik Scheduler Errors
DocType: User,Bio,Bio
@@ -1656,7 +1663,7 @@ DocType: Print Format,Js,Js
apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Odaberite format ispisa
apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,obrasci Kratki tastatura je lako pogoditi
DocType: Portal Settings,Portal Menu,portal Menu
apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Dužina {0} treba biti između 1 i 1000
apps/frappe/frappe/model/db_schema.py +115,Length of {0} should be between 1 and 1000,Dužina {0} treba biti između 1 i 1000
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,Pretraga za sve
DocType: DocField,Print Hide,Ispis Sakrij
apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,Unesite vrijednost
@@ -1709,8 +1716,7 @@ apps/frappe/frappe/model/document.py +564,Cannot change docstatus from 0 to 2,Ne
DocType: User Permission for Page and Report,Roles Permission,uloge Dopuštenje
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Ažurirati
DocType: Error Snapshot,Snapshot View,Snapshot Pogledaj
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Molimo spremite Newsletter prije slanja
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,pre&gt; {0} godina (e)
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +101,Please save the Newsletter before sending,Molimo spremite Newsletter prije slanja
apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Opcije mora bitivaljana DOCTYPE za polje {0} je u redu {1}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Uredi osobine
DocType: Patch Log,List of patches executed,Lista zakrpa pogubljeni
@@ -1728,7 +1734,7 @@ apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Password Updat
DocType: Workflow State,trash,smeće
DocType: System Settings,Older backups will be automatically deleted,Stariji kopije će biti automatski obrisane
DocType: Event,Leave blank to repeat always,Ostavite prazno ponoviti uvijek
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +192,Confirmed,Potvrđen
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,Confirmed,Potvrđen
DocType: Event,Ends on,Završava
DocType: Payment Gateway,Gateway,Gateway
apps/frappe/frappe/public/js/frappe/form/linked_with.js +116,Not enough permission to see links,Nije dovoljno dozvolu da vidite linkove
@@ -1759,7 +1765,6 @@ DocType: Contact,Purchase Manager,Kupovina Manager
DocType: Custom Script,Sample,Uzorak
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Nekategorizirani Tagovi
DocType: Event,Every Week,Svaki tjedan
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,E-mail Account not setup. Molimo vas da se stvori novi e-pošte iz Setup&gt; E-mail&gt; e-pošte
apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Kliknite ovdje za provjeru upotrebe ili nadograditi na viši plan
DocType: Custom Field,Is Mandatory Field,Je obvezno polje
DocType: User,Website User,Web User
@@ -1767,7 +1772,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +10,Not equals,n
DocType: Integration Request,Integration Request Service,Integracija Upit usluga
DocType: Website Script,Script to attach to all web pages.,Skripta za priključivanje na sve web stranice.
DocType: Web Form,Allow Multiple,Dopustite Multiple
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +40,Assign,Dodijeliti
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +44,Assign,Dodijeliti
apps/frappe/frappe/config/setup.py +102,Import / Export Data from .csv files.,Uvoz / izvoz podataka iz .csv datoteka
DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Poslati samo Records izmjene u zadnjoj X vreme
DocType: Communication,Feedback,Povratna veza
@@ -1847,7 +1852,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,ostali
apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Sačuvajte prije pričvršćivanja.
apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Dodano {0} ({1})
apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Uobičajeno tema je postavljena u {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype ne mogu se mijenjati iz {0} u {1} u redu {2}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +325,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype ne mogu se mijenjati iz {0} u {1} u redu {2}
apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,Prava pristupa
DocType: Help Article,Intermediate,srednji
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Može čitati
@@ -1862,9 +1867,9 @@ apps/frappe/frappe/core/doctype/user/user.js +42,Refreshing...,Osvježavanje...
DocType: Event,Starts on,Počinje na
DocType: System Settings,System Settings,Postavke sustava
apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Session Start nije uspjelo
apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Ova e-mail je poslan {0} i kopirati u {1}
apps/frappe/frappe/email/queue.py +470,This email was sent to {0} and copied to {1},Ova e-mail je poslan {0} i kopirati u {1}
DocType: Workflow State,th,og
apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Stvaranje nove {0}
apps/frappe/frappe/public/js/frappe/form/control.js +1517,Create a new {0},Stvaranje nove {0}
DocType: Email Rule,Is Spam,je spam
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Izvještaj {0}
apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Otvorena {0}
@@ -1876,12 +1881,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon a
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,Duplikat
DocType: Newsletter,Create and Send Newsletters,Kreiranje i slanje newsletter
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date must be before To Date,Od datuma mora biti prije do danas
DocType: Address,Andaman and Nicobar Islands,Andaman i Nicobar Islands
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +216,GSuite Document,GSuite Dokument
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +29,Please specify which value field must be checked,Navedite što vrijednost polja moraju biti provjereni
apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"""Parent"" signifies the parent table in which this row must be added","""Parent"" označava parent tabelu u kojoj se red mora dodati"
DocType: Website Theme,Apply Style,Primijeni stil
DocType: Feedback Request,Feedback Rating,povratne informacije Rejting
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared With,Podijeljeno sa
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Podijeljeno sa
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Podešavanje&gt; Menadžer dozvola korisnika
DocType: Help Category,Help Articles,Članci pomoći
,Modules Setup,Podešavanja modula
apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Tip:
@@ -1912,7 +1919,7 @@ DocType: OAuth Client,App Client ID,App ID klijenta
DocType: Kanban Board,Kanban Board Name,Kanban odbor Ime
DocType: Email Alert Recipient,"Expression, Optional","Expression, fakultativno"
DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,Kopirajte i zalijepite ovaj kod u i praznih Code.gs u svoj projekt na script.google.com
apps/frappe/frappe/email/queue.py +456,This email was sent to {0},Ova e-mail je poslan {0}
apps/frappe/frappe/email/queue.py +472,This email was sent to {0},Ova e-mail je poslan {0}
DocType: DocField,Remember Last Selected Value,Ne zaboravite Zadnje izabranu vrednost
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +334,Please select Document Type,Molimo odaberite Document Type
DocType: Email Account,Check this to pull emails from your mailbox,Provjerite to povući e-pošte iz poštanskog sandučića
@@ -1927,6 +1934,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,Opci
DocType: Feedback Trigger,Email Field,E-mail polje
apps/frappe/frappe/www/update-password.html +59,New Password Required.,New Password Potrebna.
apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} je podijelio/la ovaj dokument sa {1}
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Podešavanja&gt; Korisnik
DocType: Website Settings,Brand Image,imidž brenda
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Postavljanje gornjoj navigacijskoj traci, podnožje i logo."
@@ -1994,8 +2002,8 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa
apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Nije moguće čitati format za {0}
DocType: Auto Email Report,Filter Data,filter podataka
apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Dodavanje tag
apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Molimo priložite datoteku prva.
apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Bilo je nekih pogrešaka postavljanje ime, kontaktirajte administratora"
apps/frappe/frappe/public/js/frappe/form/control.js +1335,Please attach a file first.,Molimo priložite datoteku prva.
apps/frappe/frappe/model/naming.py +174,"There were some errors setting the name, please contact the administrator","Bilo je nekih pogrešaka postavljanje ime, kontaktirajte administratora"
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Dolazne e-pošte računa nije ispravan
apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \
Please enter a valid email address so that we can get back.","Izgleda da ste napisali svoje ime umjesto e-pošte. \ Molimo unesite važeću e-mail adresu, tako da se možemo vratiti."
@@ -2047,7 +2055,6 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N
DocType: Custom DocPerm,Create,Stvoriti
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Nevažeći filter: {0}
DocType: Email Account,no failed attempts,no neuspjelih pokušaja
apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,Default Adresa Template pronađeno. Molimo vas da se stvori novi iz Setup&gt; Printing i brendiranje&gt; Adresa Obrazac.
DocType: GSuite Settings,refresh_token,refresh_token
DocType: Dropbox Settings,App Access Key,App Access Key
DocType: OAuth Bearer Token,Access Token,Access Token
@@ -2073,6 +2080,7 @@ apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl +
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Napravite nove {0}
apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,Novi e-pošte
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +28,Document Restored,Obnovljena dokument
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +203,You can't set 'Options' for field {0},Ne možete postaviti &#39;Opcije&#39; za polje {0}
apps/frappe/frappe/core/page/usage_info/usage_info.html +86,Size (MB),Veličina (MB)
DocType: Help Article,Author,autor
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +10,Resume Sending,Nastavak Slanje
@@ -2082,7 +2090,7 @@ DocType: Print Settings,Monochrome,Jednobojna slika
DocType: Address,Purchase User,Kupovina korisnika
DocType: Workflow,"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.","Različita ""Stanja"", ovaj dokument može postojati u ""Otvoreno"", ""Na čekanju za odobrenje"", itd."
apps/frappe/frappe/utils/verified_command.py +43,This link is invalid or expired. Please make sure you have pasted correctly.,Ova veza je nevažeća ili istekla. Provjerite da li ste ispravno zalijepljeni.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> je uspješno odjavljeni iz ove mailing listu.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +136,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> je uspješno odjavljeni iz ove mailing listu.
DocType: Web Page,Slideshow,Slideshow
apps/frappe/frappe/contacts/doctype/address_template/address_template.py +31,Default Address Template cannot be deleted,Zadani predložak adrese ne može se izbrisati
DocType: Contact,Maintenance Manager,Održavanje Manager
@@ -2103,7 +2111,7 @@ apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a r
DocType: System Settings,Apply Strict User Permissions,Nanesite Strogi Dozvole korisnika
DocType: DocField,Allow Bulk Edit,Dozvolite Bulk Uredi
DocType: Blog Post,Blog Post,Blog članak
apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Napredna pretraga
apps/frappe/frappe/public/js/frappe/form/control.js +1527,Advanced Search,Napredna pretraga
apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Password Reset upute su poslani na e-mail
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \
higher levels for field level permissions.","Nivo 0 je za dozvole nivou dokumenta, \ višim nivoima za dozvole na terenu."
@@ -2128,13 +2136,13 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new re
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Pretraživanje
DocType: Currency,Fraction,Frakcija
DocType: LDAP Settings,LDAP First Name Field,LDAP Ime Field
apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Izaberite neku od postojećih priloge
apps/frappe/frappe/public/js/frappe/form/control.js +1085,Select from existing attachments,Izaberite neku od postojećih priloge
DocType: Custom Field,Field Description,Opis polja
apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Ne postavljajte ime preko Prompt-a
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,E-mail Inbox
DocType: Auto Email Report,Filters Display,filteri Display
DocType: Website Theme,Top Bar Color,Top Bar Color
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Do you want to unsubscribe from this mailing list?,Da li želite da se odjavite iz ove mailing liste?
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Do you want to unsubscribe from this mailing list?,Da li želite da se odjavite iz ove mailing liste?
DocType: Address,Plant,Biljka
apps/frappe/frappe/core/doctype/communication/communication.js +65,Reply All,Odgovori svima
DocType: DocType,Setup,Podešavanje
@@ -2177,7 +2185,7 @@ DocType: User,Send Notifications for Transactions I Follow,Slanje obavijesti za
apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Ne mogu postaviti Podnijeti , Odustani , Izmijeniti bez zapisivanja"
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Jeste li sigurni da želite izbrisati prilog?
apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} <a href=""#Form/{0}/{1}"">{1}</a> is linked with {2} <a href=""#Form/{2}/{3}"">{3}</a>","Ne možete izbrisati ili otkazati jer {0} <a href=""#Form/{0}/{1}"">{1}</a> je povezan s {2} <a href=""#Form/{2}/{3}"">{3}</a>"
apps/frappe/frappe/__init__.py +1062,Thank you,Hvala
apps/frappe/frappe/__init__.py +1070,Thank you,Hvala
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Snimanje
DocType: Print Settings,Print Style Preview,Prikaz stila ispisa
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
@@ -2192,7 +2200,7 @@ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Dodaj so
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Sr No
,Role Permissions Manager,Menadzer prava pristupa
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Ime novog Format
apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,jasno Prilog
apps/frappe/frappe/public/js/frappe/form/control.js +1087,Clear Attachment,jasno Prilog
apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Obavezno:
,User Permissions Manager,Upravljanje pravima pristupa
DocType: Property Setter,New value to be set,Nova vrijednost treba postaviti
@@ -2217,7 +2225,7 @@ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment C
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,Jasno Trupci Greška
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,Molimo odaberite ocjenu
DocType: Email Account,Notify if unreplied for (in mins),Obavijesti ako Unreplied za (u min)
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,Prije 2 dana
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +501,2 days ago,Prije 2 dana
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Kategorizacija blogu.
DocType: Workflow State,Time,Vrijeme
DocType: DocField,Attach,Priložiti
@@ -2233,6 +2241,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,backup V
DocType: GSuite Templates,Template Name,template Name
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,novi tip dokumenta
DocType: Custom DocPerm,Read,Čitati
DocType: Address,Chhattisgarh,Chhattisgarh
DocType: Role Permission for Page and Report,Role Permission for Page and Report,Uloga Dozvola za Page i Izvještaj
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Poravnajte vrijednost
apps/frappe/frappe/www/update-password.html +14,Old Password,Old Password
@@ -2280,7 +2289,7 @@ apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your ema
can get back to you. Thanks!","Unesite svoju e-mail, kako i poruke, tako da smo \
mogu se javiti. Hvala!"
apps/frappe/frappe/email/smtp.py +170,Could not connect to outgoing email server,Ne mogu se spojiti na odlasku e-mail poslužitelju
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +162,Thank you for your interest in subscribing to our updates,Hvala Vam na Vašem interesu za pretplatu na naš ažuriranja
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Thank you for your interest in subscribing to our updates,Hvala Vam na Vašem interesu za pretplatu na naš ažuriranja
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Custom Column,Custom Kolona
DocType: Workflow State,resize-full,resize-pun
DocType: Workflow State,off,Isključen
@@ -2343,7 +2352,7 @@ DocType: Address,Telangana,Telangana
apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Uobičajeno za {0} mora biti opcija
DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategorija
DocType: User,User Image,Upute slike
apps/frappe/frappe/email/queue.py +289,Emails are muted,E-mailovi su prigušeni
apps/frappe/frappe/email/queue.py +304,Emails are muted,E-mailovi su prigušeni
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + Up
DocType: Website Theme,Heading Style,Heading Style
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +183,A new Project with this name will be created,će se stvoriti novi projekt s ovim imenom
@@ -2560,7 +2569,6 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,zvono
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Greška u e-mail upozorenja
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Dijele ovaj dokument
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Setup&gt; User Dozvole Manager
apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,"{0} {1} Ne može biti čvor nultog stupnja , kad ima djecu"
DocType: Communication,Info,Info
apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Dodaj Prilog
@@ -2615,7 +2623,7 @@ apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,Print Form
DocType: Email Alert,Send days before or after the reference date,Pošalji dana prije ili nakon referentnog datuma
DocType: User,Allow user to login only after this hour (0-24),Dopustite korisniku da se prijavi tek nakon ovoliko sati (0-24)
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,Vrijednost
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +165,Click here to verify,Kliknite ovdje za provjeru
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +166,Click here to verify,Kliknite ovdje za provjeru
apps/frappe/frappe/utils/password_strength.py +178,Predictable substitutions like '@' instead of 'a' don't help very much.,Predvidljivo zamjene kao što su &quot;@&quot; umjesto &quot;a&quot; ne pomažu puno.
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Dodijelio drugima
apps/frappe/frappe/utils/data.py +462,Zero,nula
@@ -2627,6 +2635,7 @@ DocType: ToDo,Priority,Prioritet
DocType: Email Queue,Unsubscribe Param,Odjava Param
DocType: Auto Email Report,Weekly,Tjedni
DocType: Communication,In Reply To,U odgovoru na
apps/frappe/frappe/contacts/doctype/address/address.py +189,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,Nije pronađen osnovni obrazac naslova. Molimo vas da kreirate novu od Setup&gt; Printing and Branding&gt; Template Template.
DocType: DocType,Allow Import (via Data Import Tool),Dozvoljava uvoz (preko Data Import Tool)
apps/frappe/frappe/templates/print_formats/standard_macros.html +30,Sr,sr
DocType: DocField,Float,Plutati
@@ -2717,7 +2726,6 @@ apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Nevažeći limit {0}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Popis vrstu dokumenta
DocType: Event,Ref Type,Ref. Tip
apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Ako upload nove rekorde, napustiti ""ime"" (ID) kolonu prazan."
DocType: Address,Chattisgarh,Chattisgarh
apps/frappe/frappe/config/core.py +47,Errors in Background Events,Greške u pozadini Događanja
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,Broj Kolumne
DocType: Workflow State,Calendar,Kalendar
@@ -2749,7 +2757,7 @@ apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Zadata
DocType: Integration Request,Remote,daljinski
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Izračunaj
apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Molimo najprije odaberite DOCTYPE
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Potvrdi Vaš e-mail
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +174,Confirm Your Email,Potvrdi Vaš e-mail
apps/frappe/frappe/www/login.html +42,Or login with,Ili se prijavite sa
DocType: Error Snapshot,Locals,Mještani
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Komunicirali preko {0} na {1}: {2}
@@ -2766,7 +2774,7 @@ DocType: Web Page,Web Page,Web stranica
DocType: Blog Category,Blogger,Bloger
apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},&#39;Global Search &quot;nije dozvoljeno tipa {0} u redu {1}
apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Prikaz liste
apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Datum mora biti u formatu: {0}
apps/frappe/frappe/public/js/frappe/form/control.js +810,Date must be in format: {0},Datum mora biti u formatu: {0}
DocType: Workflow,Don't Override Status,Ne zamenjuju Status
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,"Molim Vas, dajte ocjenu."
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Feedback Upit
@@ -2799,7 +2807,7 @@ DocType: Custom DocPerm,Report,Izvjestaj
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Iznos mora biti veći od 0.
apps/frappe/frappe/desk/reportview.py +107,{0} is saved,{0} je sacuvano
apps/frappe/frappe/core/doctype/user/user.py +327,User {0} cannot be renamed,Korisnik {0} se ne može preimenovati
apps/frappe/frappe/model/db_schema.py +107,Fieldname is limited to 64 characters ({0}),Naziv Polja ograničena je na 64 znakova ({0})
apps/frappe/frappe/model/db_schema.py +108,Fieldname is limited to 64 characters ({0}),Naziv Polja ograničena je na 64 znakova ({0})
apps/frappe/frappe/config/desk.py +59,Email Group List,E-mail Group List
DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],Ikona datoteke s ekstenzijom .ico. Trebalo bi biti 16 x 16 px. Generira putem loše generatora. [favicon-generator.org]
DocType: Auto Email Report,Format,format
@@ -2877,7 +2885,7 @@ DocType: Website Settings,Title Prefix,Naslov Prefiks
DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Obavijesti i bulk mailova će biti poslan iz ovog odlaznog poslužitelja.
DocType: Workflow State,cog,vršak
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on Migrate,Sync na Migracija
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Trenutno Pregled
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Currently Viewing,Trenutno Pregled
DocType: DocField,Default,Podrazumjevano
apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} je dodao
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Pretraži stranice za &#39;{0}&#39;
@@ -2937,7 +2945,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +771,Report was
DocType: Print Settings,Print Style,Ispis Style
apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,Nije povezano sa svaki trag
DocType: Custom DocPerm,Import,Uvoz
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +178,Row {0}: Not allowed to enable Allow on Submit for standard fields,Row {0}: Nije dozvoljeno da se omogući Dozvoli na Postavi za standardne polja
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +180,Row {0}: Not allowed to enable Allow on Submit for standard fields,Row {0}: Nije dozvoljeno da se omogući Dozvoli na Postavi za standardne polja
apps/frappe/frappe/config/setup.py +100,Import / Export Data,Uvoz / izvoz podataka
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,Standardne uloge ne mogu se preimenovati
DocType: Communication,To and CC,Da i CC
@@ -2964,7 +2972,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo
DocType: Auto Email Report,Filter Meta,Filter Meta
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,Tekst koji će biti prikazani na Link na web stranicu ako se ovaj oblik ima web stranice. Link ruta će biti automatski na osnovu `` page_name` i parent_website_route`
DocType: Feedback Request,Feedback Trigger,povratne informacije Trigger
apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Molimo postavite {0} Prvi
apps/frappe/frappe/public/js/frappe/form/control.js +1741,Please set {0} first,Molimo postavite {0} Prvi
DocType: Unhandled Email,Message-id,Message-ID
DocType: Patch Log,Patch,Zakrpa
DocType: Async Task,Failed,Nije uspio


+ 71
- 64
frappe/translations/ca.csv Datei anzeigen

@@ -14,8 +14,9 @@ apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,Ha
DocType: User,Facebook Username,Facebook Username
DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Nota: No es permeten diverses sessions en el cas dels dispositius mòbils
apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},bústia de correu electrònic habilitat per a l&#39;usuari {usuaris}
apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,No es pot enviar aquest correu electrònic. Vostè ha creuat el límit d&#39;enviament de missatges de correu electrònic {0} per a aquest mes.
apps/frappe/frappe/email/queue.py +225,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,No es pot enviar aquest correu electrònic. Vostè ha creuat el límit d&#39;enviament de missatges de correu electrònic {0} per a aquest mes.
apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Presentar permanentment {0}?
apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,Descarrega la còpia de seguretat dels fitxers
DocType: Address,County,comtat
DocType: Workflow,If Checked workflow status will not override status in list view,Si l&#39;estat de flux de treball facturat no anul·larà l&#39;estat a la vista de llista
apps/frappe/frappe/client.py +280,Invalid file path: {0},Ruta no vàlida fitxer: {0}
@@ -80,10 +81,10 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Configura
apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administrador de sessió
DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opcions de contacte, com ""Consulta comercial, Suport"" etc cadascun en una nova línia o separades per comes."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Descarregar
apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Insereix
apps/frappe/frappe/public/js/frappe/form/control.js +1979,Insert,Insereix
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Seleccioneu {0}
DocType: Print Settings,Classic,Clàssic
DocType: Desktop Icon,Color,Color
DocType: DocField,Color,Color
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +54,For ranges,Per rangs
DocType: Workflow State,indent-right,guió-dreta
DocType: Has Role,Has Role,El paper té
@@ -100,7 +101,7 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To impor
DocType: DocType,Default Print Format,Format d'impressió predeterminat
DocType: Workflow State,Tags,Etiquetes
apps/frappe/frappe/public/js/frappe/form/workflow.js +33,None: End of Workflow,Cap: Final de flux de treball
apps/frappe/frappe/model/db_schema.py +346,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","El camp {0} no es pot establir com a únic en {1}, ja que hi ha valors existents no únics"
apps/frappe/frappe/model/db_schema.py +347,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","El camp {0} no es pot establir com a únic en {1}, ja que hi ha valors existents no únics"
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +47,Document Types,Tipus de document
DocType: Address,Jammu and Kashmir,Jammu i Caixmir
DocType: Workflow,Workflow State Field,Campd d'estat de flux de treball (workflow)
@@ -231,7 +232,7 @@ DocType: Workflow,Transition Rules,Regles de Transició
apps/frappe/frappe/core/doctype/report/report.js +11,Example:,Exemple:
DocType: Workflow,Defines workflow states and rules for a document.,Defineix els fluxes i les regles per a un document.
DocType: Workflow State,Filter,Filtre
apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},FIELDNAME {0} no pot tenir caràcters especials com {1}
apps/frappe/frappe/model/db_schema.py +564,Fieldname {0} cannot have special characters like {1},FIELDNAME {0} no pot tenir caràcters especials com {1}
apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Actualitzar molts valors al mateix temps.
apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Error: Document ha estat modificat després de que l'hagis obert
apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} desconnectat: {1}
@@ -260,7 +261,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Aconsegueix
apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","La seva subscripció expira el {0}. Per renovar, {1}."
DocType: Workflow State,plus-sign,signe més
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Configuració ja completa
apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} no està instal·lat
apps/frappe/frappe/__init__.py +897,App {0} is not installed,App {0} no està instal·lat
DocType: Workflow State,Refresh,Refrescar
DocType: Event,Public,Públic
apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,No hi ha res a mostrar
@@ -339,7 +340,6 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Edita Capçalera
DocType: File,File URL,URL del fitxer
DocType: Version,Table HTML,taula HTML
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> No hi ha resultats per a 'resultats </p>
apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Afegir Subscriptors
apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Pròxims esdeveniments per avui
DocType: Email Alert Recipient,Email By Document Field,Email per camp del document
@@ -404,7 +404,6 @@ DocType: Desktop Icon,Link,Enllaç
apps/frappe/frappe/utils/file_manager.py +96,No file attached,No hi ha cap arxiu adjunt
DocType: Version,Version,Versió
DocType: User,Fill Screen,Omplir pantalla
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,"Si us plau, compte de correu electrònic per defecte la configuració de configuració&gt; Correu electrònic&gt; compte de correu electrònic"
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","No es pot mostrar aquest informe d'arbre, a causa de dades que insuficients El més probable és que queden filtrats pels permisos."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Seleccioneu Arxiu
apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Edita a través Pujar
@@ -474,9 +473,9 @@ DocType: User,Reset Password Key,Restabliment de contrasenya
DocType: Email Account,Enable Auto Reply,Habilita resposta automàtica
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,No Vist
DocType: Workflow State,zoom-in,mes-zoom
apps/frappe/frappe/email/queue.py +219,Unsubscribe from this list,Sortir d&#39;aquesta llista
apps/frappe/frappe/email/queue.py +234,Unsubscribe from this list,Sortir d&#39;aquesta llista
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Reference DocType and Reference Name are required,Referència DOCTYPE i Nom Referència es requereixen
apps/frappe/frappe/utils/jinja.py +35,Syntax error in template,Error de sintaxi a la plantilla
apps/frappe/frappe/utils/jinja.py +51,Syntax error in template,Error de sintaxi a la plantilla
DocType: DocField,Width,Ample
DocType: Email Account,Notify if unreplied,Notificar si UNREPLIED
DocType: System Settings,Minimum Password Score,Clau puntuació mínima
@@ -560,6 +559,7 @@ DocType: Custom Field,Select the label after which you want to insert new field.
DocType: User,Last Login,Últim ingrés
apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},FIELDNAME es requereix a la fila {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Columna
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,Configureu el compte de correu electrònic predeterminat des de Configuració&gt; Correu electrònic&gt; Compte de correu electrònic
DocType: Custom Field,Adds a custom field to a DocType,Afegeix un camp personalitzat a un DocType
DocType: File,Is Home Folder,És Carpeta
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} no és una adreça de correu electrònic vàlida
@@ -567,7 +567,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +733,Select atleast 1 reco
apps/frappe/frappe/core/doctype/has_role/has_role.py +13,User '{0}' already has the role '{1}',Usuari &#39;{0}&#39; ja té el paper &#39;{1}&#39;
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,Càrrega i Sincronització
apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Compartit amb {0}
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe,Donar-se de baixa
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +132,Unsubscribe,Donar-se de baixa
DocType: Communication,Reference Name,Referència Nom
apps/frappe/frappe/public/js/frappe/toolbar.js +30,Chat Support,Suport de xat
DocType: Error Snapshot,Exception,Excepció
@@ -585,7 +585,7 @@ DocType: Email Group,Newsletter Manager,Butlletí Administrador
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Opció 1
apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} a {1}
apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Entrada d&#39;error durant peticions.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} ha estat afegit al grup de correu electrònic.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +194,{0} has been successfully added to the Email Group.,{0} ha estat afegit al grup de correu electrònic.
DocType: Address,Uttar Pradesh,Uttar Pradesh
DocType: Address,Pondicherry,Pondicherry
apps/frappe/frappe/public/js/frappe/upload.js +364,Make file(s) private or public?,Fer arxiu (s) privada o pública?
@@ -616,7 +616,7 @@ DocType: Portal Settings,Portal Settings,Característiques del portal
DocType: Web Page,0 is highest,0 és el més alt
apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,¿Segur que desitja tornar a vincular aquesta comunicació a {0}?
apps/frappe/frappe/www/login.html +104,Send Password,Enviar contrasenya
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +45,Attachments,Adjunts
DocType: Email Queue,Attachments,Adjunts
apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,Vostè no té els permisos per accedir a aquest document
DocType: Language,Language Name,Nom d&#39;idioma
DocType: Email Group Member,Email Group Member,Correu electrònic del Grup membre
@@ -646,7 +646,7 @@ apps/frappe/frappe/utils/password_strength.py +78,Try to use a longer keyboard p
DocType: Feedback Trigger,Check Communication,comprovar les comunicacions
DocType: Address,Rajasthan,Rajasthan
apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Informes de Report Builder són gestionats directament pel generador d'informes. Res a fer.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,"Si us plau, comproveu la vostra adreça de correu electrònic"
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +164,Please verify your Email Address,"Si us plau, comproveu la vostra adreça de correu electrònic"
apps/frappe/frappe/model/document.py +903,none of,cap de
apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Enviar-me una còpia
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Puja Permisos d'usuari
@@ -657,7 +657,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Si
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Junta Kanban {0} no existeix.
apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} està veient aquest document
DocType: ToDo,Assigned By Full Name,Assignat pel nom complet
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} actualitzat
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} actualitzat
apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Informe no es pot ajustar per als tipus individuals
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,Fa {0} dies
DocType: Email Account,Awaiting Password,Tot esperant la contrasenya
@@ -682,7 +682,7 @@ DocType: Workflow State,Stop,Aturi
DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Enllaç a la pàgina que voleu obrir. Deixar en blanc si voleu que sigui un pare grup.
DocType: DocType,Is Single,És Individual
apps/frappe/frappe/core/doctype/user/user.py +720,Sign Up is disabled,Uneix-te a aquest lloc és fora
apps/frappe/frappe/email/queue.py +278,{0} has left the conversation in {1} {2},{0} ha deixat la conversa en {1} {2}
apps/frappe/frappe/email/queue.py +293,{0} has left the conversation in {1} {2},{0} ha deixat la conversa en {1} {2}
DocType: Blogger,User ID of a Blogger,ID d'usuari d'un Blogger
apps/frappe/frappe/core/doctype/user/user.py +287,There should remain at least one System Manager,Ha de quedar almenys un administrador del sistema
DocType: GSuite Settings,Authorization Code,Codi d&#39;autorització
@@ -728,6 +728,7 @@ DocType: Event,Event,Esdeveniment
apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","En {0}, {1} va escriure:"
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,No es pot eliminar de camp estàndard. Podeu ocultar la pena si vols
DocType: Top Bar Item,For top bar,Per a la barra superior
apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,En cua per còpia de seguretat. Rebràs un correu electrònic amb l&#39;enllaç de descàrrega
apps/frappe/frappe/utils/bot.py +148,Could not identify {0},No s&#39;ha pogut identificar {0}
DocType: Address,Address,Adreça
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +3,Payment Failed,Error en el pagament
@@ -752,13 +753,13 @@ DocType: Web Form,Allow Print,permetre Imprimir
apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,No hi ha aplicacions instal·lades
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Marqueu el camp com obligatori
DocType: Communication,Clicked,Seguit
apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},No té permís per '{0}' {1}
apps/frappe/frappe/public/js/legacy/form.js +950,No permission to '{0}' {1},No té permís per '{0}' {1}
DocType: User,Google User ID,Google User ID
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Programat per enviar
DocType: DocType,Track Seen,Vist a la pista
apps/frappe/frappe/desk/form/utils.py +55,This method can only be used to create a Comment,Aquest mètode només es pot utilitzar per crear un comentari
DocType: Event,orange,taronja
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,No {0} found,{0} no trobat
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +558,No {0} found,{0} no trobat
apps/frappe/frappe/config/setup.py +242,Add custom forms.,Afegir formularis personalitzats.
apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} {2} en
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +419,submitted this document,presentat aquest document
@@ -788,6 +789,7 @@ DocType: Newsletter Email Group,Newsletter Email Group,Butlletí Grup de correu
DocType: Dropbox Settings,Integrations,Integracions
DocType: DocField,Section Break,Salt de secció
DocType: Address,Warehouse,Magatzem
DocType: Address,Other Territory,Un altre territori
,Messages,Missatges
apps/frappe/frappe/desk/page/applications/applications.js +49,Portal,Portal
DocType: Email Account,Use Different Email Login ID,Utilitzar diferents ID de sessió de correu electrònic
@@ -834,7 +836,7 @@ DocType: Email Queue,Unsubscribe Method,Mètode per donar-se de baixa
DocType: GSuite Templates,Related DocType,doctype relacionada
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Edita per afegir contingut
apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Seleccioneu Idiomes
apps/frappe/frappe/__init__.py +509,No permission for {0},Sense permís per {0}
apps/frappe/frappe/__init__.py +517,No permission for {0},Sense permís per {0}
DocType: DocType,Advanced,Avançat
apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Sembla clau d&#39;API o API secret està malament !!!
apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Referència: {0} {1}
@@ -845,6 +847,7 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P
DocType: Email Account,Yahoo Mail,Correu De Yahoo
apps/frappe/frappe/limits.py +75,Your subscription will expire tomorrow.,La seva subscripció expira demà.
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +483,Saved!,Desat!
apps/frappe/frappe/public/js/frappe/form/control.js +729,{0} is not a valid hex color,{0} no és un color hexadecimal vàlid
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,senyora
apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Actualitzat {0}: {1}
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,Mestre
@@ -872,7 +875,7 @@ DocType: Report,Disabled,Deshabilitat
DocType: Workflow State,eye-close,ull-close
DocType: OAuth Provider Settings,OAuth Provider Settings,Configuració del proveïdor OAuth
apps/frappe/frappe/config/setup.py +254,Applications,Aplicacions
apps/frappe/frappe/public/js/frappe/request.js +347,Report this issue,Informar sobre aquesta incidència
apps/frappe/frappe/public/js/frappe/request.js +349,Report this issue,Informar sobre aquesta incidència
apps/frappe/frappe/public/js/frappe/form/save.js +79,Name is required,El nom és necessari
DocType: Custom Script,Adds a custom script (client or server) to a DocType,Afegeix una seqüència de comandaments personalitzada (client o servidor) a un DocType
DocType: Address,City/Town,Ciutat / Poble
@@ -966,6 +969,7 @@ DocType: Currency,**Currency** Master,** Moneda ** MestreDivisa
DocType: Email Account,No of emails remaining to be synced,No hi ha missatges de correu electrònic que queden perquè se sincronitzin
apps/frappe/frappe/public/js/frappe/upload.js +203,Uploading,càrrega
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,"Si us plau, guardi el document abans de l'assignació"
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,Feu clic aquí per publicar errors i suggeriments
DocType: Website Settings,Address and other legal information you may want to put in the footer.,Adreça i informació legal que vols posar al peu de pàgina.
DocType: Website Sidebar Item,Website Sidebar Item,Lloc web barra lateral d&#39;articles
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +44,{0} records updated,{0} registres actualitzats
@@ -979,12 +983,10 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,clar
apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Cada dia els esdeveniments han d'acabar en el mateix dia.
DocType: Communication,User Tags,User Tags
apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Imatges d&#39;anar a buscar ..
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Configuració&gt; Usuari
DocType: Workflow State,download-alt,download-alt
apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},La descàrrega de l&#39;aplicació {0}
DocType: Communication,Feedback Request,Sol·licitud de retroalimentació
apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,Següents camps falten:
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Experimental Feature,característica experimental
apps/frappe/frappe/www/login.html +30,Sign in,Registra `t
DocType: Web Page,Main Section,Secció Principal
DocType: Page,Icon,Icona
@@ -1086,7 +1088,7 @@ DocType: Customize Form,Customize Form,Personalitza el Formulari
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +104,Mandatory field: set role for,Obligatori: paper establert per
DocType: Currency,A symbol for this currency. For e.g. $,Un símbol per a aquesta moneda. Per exemple: $
apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,Framework Frappe
apps/frappe/frappe/model/naming.py +174,Name of {0} cannot be {1},Nom de {0} no pot contenir {1}
apps/frappe/frappe/model/naming.py +180,Name of {0} cannot be {1},Nom de {0} no pot contenir {1}
apps/frappe/frappe/config/setup.py +46,Show or hide modules globally.,Mostrar o amagar mòduls globals.
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,Des de la data
apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,Èxit
@@ -1107,7 +1109,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +308,Add A New
apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js +3,See on Website,Veure en el lloc web
DocType: Workflow Transition,Next State,Següent Estat
DocType: User,Block Modules,Mòduls de Bloc
apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Tornant longitud a {0} per &#39;{1}&#39; a &#39;{2}&#39;; Ajustament de la longitud que {3} farà que el truncament de dades.
apps/frappe/frappe/model/db_schema.py +142,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Tornant longitud a {0} per &#39;{1}&#39; a &#39;{2}&#39;; Ajustament de la longitud que {3} farà que el truncament de dades.
DocType: Print Format,Custom CSS,CSS personalitzat
apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Afegir un comentari
apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Ignorat: {0} a {1}
@@ -1199,13 +1201,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,
DocType: Custom Role,Custom Role,El paper d&#39;encàrrec
apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Inici / Test Carpeta 2
DocType: System Settings,Ignore User Permissions If Missing,No feu cas dels permisos d&#39;usuari Si Missing
apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,"Si us plau, guardi el document abans de carregar."
apps/frappe/frappe/public/js/frappe/form/control.js +1075,Please save the document before uploading.,"Si us plau, guardi el document abans de carregar."
apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Introduïu la contrasenya
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret
apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Afegir un altre comentari
apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Edita Tipus Document
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Cancel·lat la subscripció a Newsletter
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,Unsubscribed from Newsletter,Cancel·lat la subscripció a Newsletter
apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Doblar ha de venir abans d&#39;un salt de secció
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,En desenvolupament
apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Darrera modificació per
DocType: Workflow State,hand-down,hand-down
DocType: Address,GST State,estat GST
@@ -1226,6 +1229,7 @@ DocType: Workflow State,Tag,Etiqueta
DocType: Custom Script,Script,Guió
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,La meva configuració
DocType: Website Theme,Text Color,Color del text
apps/frappe/frappe/desk/page/backups/backups.py +72,Backup job is already queued. You will receive an email with the download link,El treball de còpia de seguretat ja està en cua. Rebràs un correu electrònic amb l&#39;enllaç de descàrrega
DocType: Desktop Icon,Force Show,força Mostra
apps/frappe/frappe/auth.py +78,Invalid Request,La sol·licitud no és vàlida
apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Aquesta formulari no té cap entrada
@@ -1336,7 +1340,7 @@ DocType: DocField,Name,Nom
apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,S&#39;ha superat l&#39;espai màxim de {0} per al seu pla. {1}.
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Cerca en els documents
DocType: OAuth Authorization Code,Valid,vàlid
apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Obre l'enllaç
apps/frappe/frappe/public/js/frappe/form/control.js +1354,Open Link,Obre l'enllaç
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,El teu idioma
apps/frappe/frappe/desk/form/load.py +46,Did not load,No carregar
apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Afegir fila
@@ -1354,6 +1358,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Alguns documents, com una factura, no haurien de canviar un cop final. L'estat final d'aquests documents es diu Enviat. Podeu restringir quins rols poden Submit."
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,No està autoritzat a exportar aquest informe
apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 element seleccionat
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> No s'han trobat resultats per a ' </p>
DocType: Newsletter,Test Email Address,Adreça de correu electrònic de prova
DocType: ToDo,Sender,Remitent
DocType: GSuite Settings,Google Apps Script,Google Apps Script
@@ -1462,7 +1467,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Ple
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Carregant Informe
apps/frappe/frappe/limits.py +72,Your subscription will expire today.,La seva subscripció expira avui.
DocType: Page,Standard,Estàndard
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Adjuntar Arxiu
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,Adjuntar Arxiu
apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,Contrasenya Notificació d'actualització
apps/frappe/frappe/desk/page/backups/backups.html +13,Size,Mida
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,Assignació completa
@@ -1492,7 +1497,7 @@ apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversat
apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Opcions no establertes per a camp d'enllaç {0}
DocType: Customize Form,"Must be of type ""Attach Image""",Ha de ser del tipus &quot;Adjunta imatge&quot;
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Cancel totes les seleccions
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},No es pot desarmar &#39;només lectura&#39; per al camp {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +199,You cannot unset 'Read Only' for field {0},No es pot desarmar &#39;només lectura&#39; per al camp {0}
DocType: Auto Email Report,Zero means send records updated at anytime,Zero significa enviar els registres actualitzats en qualsevol moment
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +22,Complete Setup,Instal·lació completa
DocType: Workflow State,asterisk,asterisc
@@ -1506,7 +1511,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +98,Week,setmana
DocType: Social Login Keys,Google,Google
DocType: Email Domain,Example Email Address,Exemple Adreça de correu electrònic
apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,Més Utilitzades
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Unsubscribe from Newsletter,Donar-se de baixa de Newsletter
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe from Newsletter,Donar-se de baixa de Newsletter
apps/frappe/frappe/www/login.html +101,Forgot Password,Has oblidat la contrasenya
DocType: Dropbox Settings,Backup Frequency,Freqüència de còpia de seguretat
DocType: Workflow State,Inverse,Invers
@@ -1584,10 +1589,11 @@ apps/frappe/frappe/config/setup.py +209,"Actions for workflow (e.g. Approve, Can
DocType: Workflow State,flag,bandera
apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +57,Feedback Request is already sent to user,Sol·licitud de retroalimentació ja s&#39;envia a l&#39;usuari
DocType: Web Page,Text Align,Text Alinear
apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},El nom no pot tenir caràcters especials com {0}
apps/frappe/frappe/model/naming.py +185,Name cannot contain special characters like {0},El nom no pot tenir caràcters especials com {0}
DocType: Contact Us Settings,Forward To Email Address,Reenviar al Correu Electrònic
apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Mostra totes les dades
apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,El Camp Títol ha de ser un nom de camp vàlid
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,El compte de correu electrònic no està configurat. Creeu un compte de correu electrònic nou a Configuració&gt; Correu electrònic&gt; Compte de correu electrònic
apps/frappe/frappe/config/core.py +7,Documents,Documents
DocType: Email Flag Queue,Is Completed,es completa
apps/frappe/frappe/www/me.html +22,Edit Profile,Edita el perfil
@@ -1597,7 +1603,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi
myfield
eval:doc.myfield=='My Value'
eval:doc.age&gt;18",apareixerà aquest camp només si el nom del camp definit aquí té valor o les regles són veritables (exemples): eval myfield: doc.myfield == &#39;La meva Valor&#39; eval: doc.age&gt; 18
apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,avui
apps/frappe/frappe/public/js/frappe/form/control.js +764,Today,avui
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Un cop establert, els usuaris només tindran accés als documents (per exemple. Blog) on hi hagil'enllaç (per exemple. Blogger)."
DocType: Error Log,Log of Scheduler Errors,Registre d'errors de planificació
DocType: User,Bio,Bio
@@ -1656,7 +1662,7 @@ DocType: Print Format,Js,js
apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Seleccionar el format d'impressió
apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,patrons de teclat curts són fàcils d&#39;endevinar
DocType: Portal Settings,Portal Menu,menú portal
apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Longitud de {0} ha d&#39;estar entre 1 i 1000
apps/frappe/frappe/model/db_schema.py +115,Length of {0} should be between 1 and 1000,Longitud de {0} ha d&#39;estar entre 1 i 1000
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,Cerca de res
DocType: DocField,Print Hide,Imprimir Amaga
apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,Introduir valor
@@ -1709,8 +1715,7 @@ apps/frappe/frappe/model/document.py +564,Cannot change docstatus from 0 to 2,No
DocType: User Permission for Page and Report,Roles Permission,funcions de permisos
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Actualització
DocType: Error Snapshot,Snapshot View,Instantània de vista
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,"Si us plau, guardi el butlletí abans d'enviar-"
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,Fa&gt; {0} any (s)
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +101,Please save the Newsletter before sending,"Si us plau, guardi el butlletí abans d'enviar-"
apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Les opcions han de ser un tipus de document vàlid per al camp {0} a la fila {1}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Edita les propietats
DocType: Patch Log,List of patches executed,Llista de pegats executat
@@ -1728,7 +1733,7 @@ apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Actualitzar Co
DocType: Workflow State,trash,escombraries
DocType: System Settings,Older backups will be automatically deleted,còpies de seguretat anteriors s&#39;eliminaran de forma automàtica
DocType: Event,Leave blank to repeat always,Deixar en blanc per repetir sempre
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +192,Confirmed,Confirmat
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,Confirmed,Confirmat
DocType: Event,Ends on,Finalitza en
DocType: Payment Gateway,Gateway,Porta d&#39;enllaç
apps/frappe/frappe/public/js/frappe/form/linked_with.js +116,Not enough permission to see links,No hi ha prou permís per veure enllaços
@@ -1759,7 +1764,6 @@ DocType: Contact,Purchase Manager,Gerent de Compres
DocType: Custom Script,Sample,Mostra
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,sense categoria Etiquetes
DocType: Event,Every Week,Cada setmana
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,"No compte de correu electrònic de configuració. Si us plau, creu un nou compte de correu electrònic des de la Configuració&gt; Correu electrònic&gt; compte de correu electrònic"
apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Feu clic aquí per verificar el seu ús o actualitzar a un pla superior
DocType: Custom Field,Is Mandatory Field,És un camp obligatori
DocType: User,Website User,Lloc web de l'usuari
@@ -1767,7 +1771,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +10,Not equals,N
DocType: Integration Request,Integration Request Service,Sol·licitud de Servei d&#39;Integració
DocType: Website Script,Script to attach to all web pages.,Script to attach to all web pages.
DocType: Web Form,Allow Multiple,Permetre múltiple
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +40,Assign,Assignar
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +44,Assign,Assignar
apps/frappe/frappe/config/setup.py +102,Import / Export Data from .csv files.,Importar / Exportar dades des d'arxius .csv.
DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Enviar només els registres actualitzats en últimes hores X
DocType: Communication,Feedback,Resposta
@@ -1847,7 +1851,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,restant
apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,"Si us plau, guardi abans de connectar."
apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Afegit {0} ({1})
apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Tema per defecte es troba en {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},FieldType no es pot canviar de {0} a {1} a la fila {2}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +325,Fieldtype cannot be changed from {0} to {1} in row {2},FieldType no es pot canviar de {0} a {1} a la fila {2}
apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,Permisos de rol
DocType: Help Article,Intermediate,intermedi
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Es pot llegir
@@ -1862,9 +1866,9 @@ apps/frappe/frappe/core/doctype/user/user.js +42,Refreshing...,Actualitzant ...
DocType: Event,Starts on,Comença en
DocType: System Settings,System Settings,Configuració del sistema
apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Inici de Sessió Error
apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Aquest correu electrònic va ser enviat a {0} i copiat a {1}
apps/frappe/frappe/email/queue.py +470,This email was sent to {0} and copied to {1},Aquest correu electrònic va ser enviat a {0} i copiat a {1}
DocType: Workflow State,th,th
apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Crear un nou {0}
apps/frappe/frappe/public/js/frappe/form/control.js +1517,Create a new {0},Crear un nou {0}
DocType: Email Rule,Is Spam,és spam
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Informe {0}
apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Obrir {0}
@@ -1876,12 +1880,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon a
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,Duplicar
DocType: Newsletter,Create and Send Newsletters,Crear i enviar butlletins de notícies
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date must be before To Date,A partir de la data ha de ser abans Per Data
DocType: Address,Andaman and Nicobar Islands,Illes Andaman i Nicobar
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +216,GSuite Document,document GSuite
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +29,Please specify which value field must be checked,Si us plau especificar quin valor del camp ha de ser verificat
apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"""Parent"" signifies the parent table in which this row must be added","""Pare"" es refereix a la taula principal en la qual cal afegir aquesta fila"
DocType: Website Theme,Apply Style,Aplicar Estil
DocType: Feedback Request,Feedback Rating,grau de la regeneració
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared With,Compartit Amb
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Compartit Amb
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Configuració&gt; Administrador de permisos d&#39;usuari
DocType: Help Category,Help Articles,Ajuda a les persones
,Modules Setup,Mòduls d'instal·lació
apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Tipus:
@@ -1912,7 +1918,7 @@ DocType: OAuth Client,App Client ID,App ID de client
DocType: Kanban Board,Kanban Board Name,Nom del Fòrum Kanban
DocType: Email Alert Recipient,"Expression, Optional","Expressió, opcional"
DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,Còpia i pega el codi a Code.gs i buit en el seu projecte a script.google.com
apps/frappe/frappe/email/queue.py +456,This email was sent to {0},Aquest correu electrònic va ser enviat a {0}
apps/frappe/frappe/email/queue.py +472,This email was sent to {0},Aquest correu electrònic va ser enviat a {0}
DocType: DocField,Remember Last Selected Value,Recordeu que l&#39;últim valor seleccionat
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +334,Please select Document Type,Seleccioneu Tipus de document
DocType: Email Account,Check this to pull emails from your mailbox,Selecciona perenviar correus electrònics de la seva bústia de correu
@@ -1927,6 +1933,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,Opci
DocType: Feedback Trigger,Email Field,El camp de correu electrònic
apps/frappe/frappe/www/update-password.html +59,New Password Required.,Nova contrasenya requerida.
apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} compartit aquest document {1}
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Configuració&gt; Usuari
DocType: Website Settings,Brand Image,Imatge de marca
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Configuració de barra de navegació superior, peu de pàgina i el logo."
@@ -1994,8 +2001,8 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa
apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},No es pot llegir el format d&#39;arxiu per a {0}
DocType: Auto Email Report,Filter Data,Filtrar dades
apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Afegir una etiqueta
apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Si us plau adjuntar un arxiu primer.
apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Hi havia alguns errors de configuració del nom, si us plau poseu-vos en contacte amb l'administrador"
apps/frappe/frappe/public/js/frappe/form/control.js +1335,Please attach a file first.,Si us plau adjuntar un arxiu primer.
apps/frappe/frappe/model/naming.py +174,"There were some errors setting the name, please contact the administrator","Hi havia alguns errors de configuració del nom, si us plau poseu-vos en contacte amb l'administrador"
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Entrant compte de correu electrònic no és correcta
apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \
Please enter a valid email address so that we can get back.","Sembla que han escrit el seu nom en lloc del seu correu electrònic. \ Si us plau, introdueixi una adreça vàlida de correu electrònic perquè puguem tornar."
@@ -2047,7 +2054,6 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N
DocType: Custom DocPerm,Create,Crear
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Filtre no vàlid: {0}
DocType: Email Account,no failed attempts,intents fallits sense
apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,"No s&#39;ha trobat la plantilla d&#39;adreces per defecte. Si us plau, crear una nova des Configuració&gt; Premsa i Branding&gt; plantilla de direcció."
DocType: GSuite Settings,refresh_token,refresh_token
DocType: Dropbox Settings,App Access Key,Aplicació Clau d&#39;Accés
DocType: OAuth Bearer Token,Access Token,Token d'accés
@@ -2073,6 +2079,7 @@ apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl +
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Crear {0}
apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,Nou compte de correu
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +28,Document Restored,document restaurat
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +203,You can't set 'Options' for field {0},No podeu configurar &quot;Opcions&quot; per al camp {0}
apps/frappe/frappe/core/page/usage_info/usage_info.html +86,Size (MB),Mida (MB)
DocType: Help Article,Author,autor
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +10,Resume Sending,reprendre l&#39;enviament
@@ -2082,7 +2089,7 @@ DocType: Print Settings,Monochrome,Monocrom
DocType: Address,Purchase User,Usuari de compres
DocType: Workflow,"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.","Diferent ""Estats"" aquest document poden existir en. Igual que en ""Obrir"", ""Pendent d'aprovació"", etc."
apps/frappe/frappe/utils/verified_command.py +43,This link is invalid or expired. Please make sure you have pasted correctly.,"Aquest enllaç no és vàlid o caducat. Si us plau, assegureu-vos que ha enganxat correctament."
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> ha estat cancel·lat la subscripció amb èxit d'aquesta llista de correu.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +136,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> ha estat cancel·lat la subscripció amb èxit d'aquesta llista de correu.
DocType: Web Page,Slideshow,Slideshow
apps/frappe/frappe/contacts/doctype/address_template/address_template.py +31,Default Address Template cannot be deleted,La Plantilla de la direcció predeterminada no es pot eliminar
DocType: Contact,Maintenance Manager,Gerent de Manteniment
@@ -2103,7 +2110,7 @@ apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a r
DocType: System Settings,Apply Strict User Permissions,Aplicar permisos d&#39;usuari estrictes
DocType: DocField,Allow Bulk Edit,Permetre Edició massiva
DocType: Blog Post,Blog Post,Post Blog
apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Cerca avançada
apps/frappe/frappe/public/js/frappe/form/control.js +1527,Advanced Search,Cerca avançada
apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Les Instruccions de restabliment de contrasenya han estat enviades al seu correu electrònic
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \
higher levels for field level permissions.","El nivell 0 és per als permisos de nivell de document, \ nivells més alts per als permisos de nivell de camp."
@@ -2128,13 +2135,13 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new re
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,recerca
DocType: Currency,Fraction,Fracció
DocType: LDAP Settings,LDAP First Name Field,LDAP camp de nom
apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Seleccioneu d&#39;arxius adjunts existents
apps/frappe/frappe/public/js/frappe/form/control.js +1085,Select from existing attachments,Seleccioneu d&#39;arxius adjunts existents
DocType: Custom Field,Field Description,Descripció del camp
apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Nom no establert a través de Prompt
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,Safata d&#39;entrada de correu electrònic
DocType: Auto Email Report,Filters Display,filtres de visualització
DocType: Website Theme,Top Bar Color,Inici Barra Color
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Do you want to unsubscribe from this mailing list?,Vols cancel·lar la subscripció a aquesta llista de correu?
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Do you want to unsubscribe from this mailing list?,Vols cancel·lar la subscripció a aquesta llista de correu?
DocType: Address,Plant,Planta
apps/frappe/frappe/core/doctype/communication/communication.js +65,Reply All,Respondre a tots
DocType: DocType,Setup,Ajustos
@@ -2177,7 +2184,7 @@ DocType: User,Send Notifications for Transactions I Follow,Enviar notificacions
apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: No es pot establir a Presentat, Anul·lat, Modificat sense escriptura"
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Segur que vols eliminar l'adjunt?
apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} <a href=""#Form/{0}/{1}"">{1}</a> is linked with {2} <a href=""#Form/{2}/{3}"">{3}</a>","No es pot eliminar o cancel·lar a causa de {0} <a href=""#Form/{0}/{1}"">{1}</a> està vinculada amb {2} <a href=""#Form/{2}/{3}"">{3}</a>"
apps/frappe/frappe/__init__.py +1062,Thank you,Gràcies
apps/frappe/frappe/__init__.py +1070,Thank you,Gràcies
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Estalvi
DocType: Print Settings,Print Style Preview,Vista prèvia de l'estil d'impressió
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
@@ -2192,7 +2199,7 @@ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Add cust
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Número de sèrie
,Role Permissions Manager,Administrador de Permisos de rols
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Nom del nou format d'impressió
apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,clar Accessori
apps/frappe/frappe/public/js/frappe/form/control.js +1087,Clear Attachment,clar Accessori
apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Obligatori:
,User Permissions Manager,Administrador de Permisos d'usuari
DocType: Property Setter,New value to be set,Nou valor a configurar
@@ -2217,7 +2224,7 @@ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment C
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,Registres d&#39;errors clars
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,Seleccioneu una qualificació
DocType: Email Account,Notify if unreplied for (in mins),Notificar si UNREPLIED per (en minuts)
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,Fa 2 dies
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +501,2 days ago,Fa 2 dies
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Classificar les entrades del blog.
DocType: Workflow State,Time,temps
DocType: DocField,Attach,Adjuntar
@@ -2233,6 +2240,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Mida de
DocType: GSuite Templates,Template Name,Nom de la plantilla
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,nou tipus de document
DocType: Custom DocPerm,Read,Llegir
DocType: Address,Chhattisgarh,Chhattisgarh
DocType: Role Permission for Page and Report,Role Permission for Page and Report,El permís per a la funció Pàgina i Informe
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,alinear Valor
apps/frappe/frappe/www/update-password.html +14,Old Password,Contrasenya Anterior
@@ -2280,7 +2288,7 @@ apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your ema
can get back to you. Thanks!","Si us plau ingressi tant el seu email i missatge perquè puguem \
pot tornar a vostè. Gràcies!"
apps/frappe/frappe/email/smtp.py +170,Could not connect to outgoing email server,No s'ha pogut connectar amb el servidor de correu electrònic sortint
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +162,Thank you for your interest in subscribing to our updates,Gràcies pel seu interès en subscriure-vos-hi
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Thank you for your interest in subscribing to our updates,Gràcies pel seu interès en subscriure-vos-hi
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Custom Column,columna personalitzada
DocType: Workflow State,resize-full,resize-full
DocType: Workflow State,off,apagat
@@ -2343,7 +2351,7 @@ DocType: Address,Telangana,Telangana
apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Defecte per {0} ha de ser una opció
DocType: Tag Doc Category,Tag Doc Category,Tag Doc Categoria
DocType: User,User Image,Imatge d'Usuari
apps/frappe/frappe/email/queue.py +289,Emails are muted,Els correus electrònics es silencien
apps/frappe/frappe/email/queue.py +304,Emails are muted,Els correus electrònics es silencien
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + A dalt
DocType: Website Theme,Heading Style,Estil de títol
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +183,A new Project with this name will be created,Es crearà un nou projecte amb aquest nom
@@ -2560,7 +2568,6 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,campana
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Error en el correu electrònic d&#39;alerta
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Comparteix aquest document
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Configuració&gt; Permisos d&#39;usuari Administrador
apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} no pot ser un node fulla perquè té descendents
DocType: Communication,Info,Info
apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,arxiu adjunt
@@ -2615,7 +2622,7 @@ apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,Format d'i
DocType: Email Alert,Send days before or after the reference date,Enviar dies abans o després de la data de referència
DocType: User,Allow user to login only after this hour (0-24),Permetre l'accés a l'usuari només després d'aquesta hora (0-24)
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,Valor
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +165,Click here to verify,Fes clic aquí per verificar
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +166,Click here to verify,Fes clic aquí per verificar
apps/frappe/frappe/utils/password_strength.py +178,Predictable substitutions like '@' instead of 'a' don't help very much.,substitucions predictibles com &quot;@&quot; en lloc de &quot;a&quot; no ajuden molt.
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Assignat By Em
apps/frappe/frappe/utils/data.py +462,Zero,zero
@@ -2627,6 +2634,7 @@ DocType: ToDo,Priority,Prioritat
DocType: Email Queue,Unsubscribe Param,Donar-se de baixa Param
DocType: Auto Email Report,Weekly,Setmanal
DocType: Communication,In Reply To,En resposta a
apps/frappe/frappe/contacts/doctype/address/address.py +189,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,No s&#39;ha trobat cap plantilla d&#39;adreça predeterminada. Creeu-ne un de nou des de Configuració&gt; Impressió i marca&gt; Plantilla d&#39;adreça.
DocType: DocType,Allow Import (via Data Import Tool),Permetre la importació (a través de l&#39;eina d&#39;importació de dades)
apps/frappe/frappe/templates/print_formats/standard_macros.html +30,Sr,sr
DocType: DocField,Float,Float
@@ -2717,7 +2725,6 @@ apps/frappe/frappe/commands/site.py +451,Invalid limit {0},límit no vàlid {0}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Llista un tipus de document
DocType: Event,Ref Type,Tipus Ref
apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Si has de carregar nous registres, deixa en blanc la columna ""name"" (ID)"
DocType: Address,Chattisgarh,Chattisgarh
apps/frappe/frappe/config/core.py +47,Errors in Background Events,Els errors en els esdeveniments de fons
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,No de Columnes
DocType: Workflow State,Calendar,Calendari
@@ -2749,7 +2756,7 @@ apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Assign
DocType: Integration Request,Remote,remot
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Calcular
apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Seleccioneu doctype primer
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Confirma teu email
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +174,Confirm Your Email,Confirma teu email
apps/frappe/frappe/www/login.html +42,Or login with,O ingressar amb
DocType: Error Snapshot,Locals,Els locals
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Comunicada a través d&#39;{0} el {1}: {2}
@@ -2766,7 +2773,7 @@ DocType: Web Page,Web Page,Pàgina Web
DocType: Blog Category,Blogger,Blogger
apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},&#39;A la recerca global&#39; no permès per al tipus {0} a la fila {1}
apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,veure Llista
apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},La data ha de tenir el format: {0}
apps/frappe/frappe/public/js/frappe/form/control.js +810,Date must be in format: {0},La data ha de tenir el format: {0}
DocType: Workflow,Don't Override Status,No correcció d&#39;estat
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,"Si us plau, donar una qualificació."
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Comentaris Sol·licitud
@@ -2799,7 +2806,7 @@ DocType: Custom DocPerm,Report,Informe
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,La quantitat ha de ser més gran que 0.
apps/frappe/frappe/desk/reportview.py +107,{0} is saved,{0} es guarda
apps/frappe/frappe/core/doctype/user/user.py +327,User {0} cannot be renamed,L'usuari {0} no es pot canviar
apps/frappe/frappe/model/db_schema.py +107,Fieldname is limited to 64 characters ({0}),Nom de camp està limitat a 64 caràcters ({0})
apps/frappe/frappe/model/db_schema.py +108,Fieldname is limited to 64 characters ({0}),Nom de camp està limitat a 64 caràcters ({0})
apps/frappe/frappe/config/desk.py +59,Email Group List,Llista de grups de correu electrònic
DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],Un arxiu d&#39;icona amb ico extensió. En cas de ser de 16 x 16 píxels. Generat usant un generador de favicon. [favicon-generator.org]
DocType: Auto Email Report,Format,format
@@ -2877,7 +2884,7 @@ DocType: Website Settings,Title Prefix,Títol Prefix
DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Notificacions i electrònics massius seran enviats des d'aquest servidor sortint.
DocType: Workflow State,cog,cog
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on Migrate,Sincronització en Migrar
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Visualitzant
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Currently Viewing,Visualitzant
DocType: DocField,Default,Defecte
apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} afegits
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Cerca &#39;{0}&#39;
@@ -2937,7 +2944,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +771,Report was
DocType: Print Settings,Print Style,Estil d'impressió
apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,No vinculats a cap registre
DocType: Custom DocPerm,Import,Importació
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +178,Row {0}: Not allowed to enable Allow on Submit for standard fields,Fila {0}: No es permet habilitar Permet a Enviar per camps estàndard
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +180,Row {0}: Not allowed to enable Allow on Submit for standard fields,Fila {0}: No es permet habilitar Permet a Enviar per camps estàndard
apps/frappe/frappe/config/setup.py +100,Import / Export Data,Importar / Exportar dades
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,Funcions estàndard no pot canviar el nom
DocType: Communication,To and CC,Per i CC
@@ -2964,7 +2971,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo
DocType: Auto Email Report,Filter Meta,filtre Meta
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,El text que es mostra per enllaçar a la pàgina web si aquest formulari disposa d'una pàgina web. Ruta Enllaç automàticament es genera sobre la base de `page_name` i ` parent_website_route`
DocType: Feedback Request,Feedback Trigger,retroalimentació del disparador
apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,"Si us plau, estableix {0} primer"
apps/frappe/frappe/public/js/frappe/form/control.js +1741,Please set {0} first,"Si us plau, estableix {0} primer"
DocType: Unhandled Email,Message-id,Missatge-id
DocType: Patch Log,Patch,Pedàs
DocType: Async Task,Failed,Fracassat


+ 72
- 64
frappe/translations/cs.csv Datei anzeigen

@@ -14,8 +14,9 @@ apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,Mu
DocType: User,Facebook Username,Facebook uživatelské jméno
DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Poznámka: Více relací budou moci v případě mobilního zařízení
apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Povoleno e-mailová schránka pro uživatele {Uživatelé}
apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Nelze odeslat e-mail. Jste překročili odesílající limit {0} e-mailů pro tento měsíc.
apps/frappe/frappe/email/queue.py +225,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Nelze odeslat e-mail. Jste překročili odesílající limit {0} e-mailů pro tento měsíc.
apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Vložit na trvalo: {0}?
apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,Stáhnout soubory zálohování
DocType: Address,County,Hrabství
DocType: Workflow,If Checked workflow status will not override status in list view,Je-li zaškrtnuto stav pracovního postupu nebude přepsat stav v zobrazení seznamu
apps/frappe/frappe/client.py +280,Invalid file path: {0},Neplatná cesta k souboru: {0}
@@ -80,10 +81,10 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Nastaven
apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Přihlášen Administrátor
DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Možnosti kontaktu, např.: ""Dotaz prodeje, dotaz podpory"" atd., každý na novém řádku nebo oddělené čárkami."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Download
apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Vložit
apps/frappe/frappe/public/js/frappe/form/control.js +1979,Insert,Vložit
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Vyberte {0}
DocType: Print Settings,Classic,Klasické
DocType: Desktop Icon,Color,Barva
DocType: DocField,Color,Barva
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +54,For ranges,Pro rozsahy
DocType: Workflow State,indent-right,indent-right
DocType: Has Role,Has Role,má role
@@ -100,7 +101,7 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To impor
DocType: DocType,Default Print Format,Výchozí formát tisku
DocType: Workflow State,Tags,tagy
apps/frappe/frappe/public/js/frappe/form/workflow.js +33,None: End of Workflow,Nic: Konec toku
apps/frappe/frappe/model/db_schema.py +346,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Pole {0} nelze nastavit jako jedinečné v {1}, protože tam jsou non-jedinečné stávající hodnoty"
apps/frappe/frappe/model/db_schema.py +347,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Pole {0} nelze nastavit jako jedinečné v {1}, protože tam jsou non-jedinečné stávající hodnoty"
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +47,Document Types,Typy dokumentů
DocType: Address,Jammu and Kashmir,Džammú a Kašmír
DocType: Workflow,Workflow State Field,Pole stavu toku (workflow)
@@ -231,7 +232,7 @@ DocType: Workflow,Transition Rules,Pravidla transakce
apps/frappe/frappe/core/doctype/report/report.js +11,Example:,Příklad:
DocType: Workflow,Defines workflow states and rules for a document.,Vymezuje jednotlivé stavy toků.
DocType: Workflow State,Filter,Filtr
apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},FieldName {0} nemůže mít speciální znaky jako {1}
apps/frappe/frappe/model/db_schema.py +564,Fieldname {0} cannot have special characters like {1},FieldName {0} nemůže mít speciální znaky jako {1}
apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Aktualizujte mnoho hodnot najednou.
apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,"Chyba: Dokument byl upraven poté, co jste ho otevřeli"
apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} odhlášen: {1}
@@ -260,7 +261,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Pořiďte si
apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Vaše předplatné vypršelo na {0}. Chcete-li obnovit, {1}."
DocType: Workflow State,plus-sign,plus-sign
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Instalační program již dokončena
apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} není nainstalován
apps/frappe/frappe/__init__.py +897,App {0} is not installed,App {0} není nainstalován
DocType: Workflow State,Refresh,Obnovit
DocType: Event,Public,Veřejné
apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Není co zobrazit
@@ -339,7 +340,6 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Upravit záhlaví
DocType: File,File URL,Adresa URL souboru
DocType: Version,Table HTML,Tabulka HTML
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> Nebyly nalezeny žádné výsledky pro ' </p>
apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Přidat předplatitelé
apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Nadcházející události pro dnešek
DocType: Email Alert Recipient,Email By Document Field,Email od pole dokumentu
@@ -404,7 +404,6 @@ DocType: Desktop Icon,Link,Odkaz
apps/frappe/frappe/utils/file_manager.py +96,No file attached,Žádný soubor nepřiložen
DocType: Version,Version,Verze
DocType: User,Fill Screen,Vyplnit obrazovku
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,"Prosím, nastavte výchozí E-mailový účet z Nastavení&gt; E-mail&gt; E-mailový účet"
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Nelze zobrazit tento stromový výpis, jelikož chybí data. Pravděpodobně, byla odfiltrována za základě oprávnění."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Vyberte Soubor
apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Upravit pomocí Vkládání
@@ -474,9 +473,9 @@ DocType: User,Reset Password Key,Obnovit heslo klíče
DocType: Email Account,Enable Auto Reply,Povolit automatické odpovědi
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Ne Seen
DocType: Workflow State,zoom-in,Zvětšit
apps/frappe/frappe/email/queue.py +219,Unsubscribe from this list,Odhlásit se z tohoto seznamu
apps/frappe/frappe/email/queue.py +234,Unsubscribe from this list,Odhlásit se z tohoto seznamu
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Reference DocType and Reference Name are required,Referenční DOCTYPE a referenční Name jsou povinné
apps/frappe/frappe/utils/jinja.py +35,Syntax error in template,Chyba syntaxe v šabloně
apps/frappe/frappe/utils/jinja.py +51,Syntax error in template,Chyba syntaxe v šabloně
DocType: DocField,Width,Šířka
DocType: Email Account,Notify if unreplied,"Upozornit, pokud Nezodpovězená"
DocType: System Settings,Minimum Password Score,Minimální skóre hesla
@@ -560,6 +559,7 @@ DocType: Custom Field,Select the label after which you want to insert new field.
DocType: User,Last Login,Poslední přihlášení
apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Název pole je vyžadován v řádku: {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Sloupec
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,Prosím nastavte výchozí emailový účet z Nastavení&gt; Email&gt; E-mailový účet
DocType: Custom Field,Adds a custom field to a DocType,Přidá přizpůsobené pole do DocType
DocType: File,Is Home Folder,Je Domovská složka
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} není platná e-mailová adresa
@@ -567,7 +567,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +733,Select atleast 1 reco
apps/frappe/frappe/core/doctype/has_role/has_role.py +13,User '{0}' already has the role '{1}',Uživatel &#39;{0}&#39; již má za úkol &#39;{1}&#39;
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,Nahrát a sloučit
apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Sdíleno s {0}
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe,Odhlásit odběr
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +132,Unsubscribe,Odhlásit odběr
DocType: Communication,Reference Name,Název reference
apps/frappe/frappe/public/js/frappe/toolbar.js +30,Chat Support,Chat Support
DocType: Error Snapshot,Exception,Výjimka
@@ -585,7 +585,7 @@ DocType: Email Group,Newsletter Manager,Newsletter Manažer
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Možnost 1
apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} až {1}
apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Přihlásit se chyby během požadavků.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} byl úspěšně přidán do e-mailové skupiny.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +194,{0} has been successfully added to the Email Group.,{0} byl úspěšně přidán do e-mailové skupiny.
DocType: Address,Uttar Pradesh,Uttar Pradesh
DocType: Address,Pondicherry,Pondicherry
apps/frappe/frappe/public/js/frappe/upload.js +364,Make file(s) private or public?,Udělat soubor (y) soukromý nebo veřejný?
@@ -616,7 +616,7 @@ DocType: Portal Settings,Portal Settings,Portál Nastavení
DocType: Web Page,0 is highest,0 je nejvyšší
apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,"Jste si jisti, že chcete znovu sestavit toto sdělení {0}?"
apps/frappe/frappe/www/login.html +104,Send Password,Poslat heslo
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +45,Attachments,Přílohy
DocType: Email Queue,Attachments,Přílohy
apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,Nemáte oprávnění pro přístup k této dokumentu
DocType: Language,Language Name,Název jazyka
DocType: Email Group Member,Email Group Member,E-mail člena skupiny
@@ -646,7 +646,7 @@ apps/frappe/frappe/utils/password_strength.py +78,Try to use a longer keyboard p
DocType: Feedback Trigger,Check Communication,Kontrola komunikace
DocType: Address,Rajasthan,Rajasthan
apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Výpisy konfigurátoru výpisů jsou spravovány přímo konfigurátorem výpisů. Nelze provést žádnou akci.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Je třeba ověřit svou emailovou adresu
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +164,Please verify your Email Address,Je třeba ověřit svou emailovou adresu
apps/frappe/frappe/model/document.py +903,none of,žádný z
apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Odeslat si kopii
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Nahrát (upload) uživatelská oprávnění
@@ -657,7 +657,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Si
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban Board {0} neexistuje.
apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} právě prohlížejí tento dokument
DocType: ToDo,Assigned By Full Name,Přidělené Celé jméno
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0}: aktualizováno
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0}: aktualizováno
apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Výpis nemůže být nastaven pro typy osamocené
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} dny
DocType: Email Account,Awaiting Password,Čeká Password
@@ -682,7 +682,7 @@ DocType: Workflow State,Stop,Stop
DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,"Odkaz na stránku, kterou chcete otevřít. Ponechte prázdné, pokud chcete, aby to skupina rodič."
DocType: DocType,Is Single,Je osamocené
apps/frappe/frappe/core/doctype/user/user.py +720,Sign Up is disabled,Registrace je zakázána
apps/frappe/frappe/email/queue.py +278,{0} has left the conversation in {1} {2},{0} opustil konverzaci v {1} {2}
apps/frappe/frappe/email/queue.py +293,{0} has left the conversation in {1} {2},{0} opustil konverzaci v {1} {2}
DocType: Blogger,User ID of a Blogger,ID uživatele bloggera
apps/frappe/frappe/core/doctype/user/user.py +287,There should remain at least one System Manager,Měl by zde zbýt alespoň jeden systémový administrátor
DocType: GSuite Settings,Authorization Code,Autorizační kód
@@ -728,6 +728,7 @@ DocType: Event,Event,Událost
apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Dne {0}, {1} napsal:"
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"Nelze smazat standardní pole. Můžete ji skrýt, pokud chcete"
DocType: Top Bar Item,For top bar,Pro horní panel
apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,Naléhá na zálohu. Obdržíte e-mail s odkazem na stažení
apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Nebyli schopni určit {0}
DocType: Address,Address,Adresa
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +3,Payment Failed,Platba selhala
@@ -752,13 +753,13 @@ DocType: Web Form,Allow Print,umožňují tisk
apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Žádné Apps Instalovaný
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Označit pole jako povinné
DocType: Communication,Clicked,Clicked
apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Bez oprávnění k: '{0}' {1}
apps/frappe/frappe/public/js/legacy/form.js +950,No permission to '{0}' {1},Bez oprávnění k: '{0}' {1}
DocType: User,Google User ID,Google ID uživatele
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Naplánováno odesílat
DocType: DocType,Track Seen,Track Viděno
apps/frappe/frappe/desk/form/utils.py +55,This method can only be used to create a Comment,Tuto metodu lze použít pouze k vytvoření komentář
DocType: Event,orange,oranžový
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,No {0} found,{0}: nenalezeno
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +558,No {0} found,{0}: nenalezeno
apps/frappe/frappe/config/setup.py +242,Add custom forms.,Přidat vlastní formuláře.
apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} na {2}
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +419,submitted this document,předložen tento dokument
@@ -788,6 +789,7 @@ DocType: Newsletter Email Group,Newsletter Email Group,Newsletter E-Group
DocType: Dropbox Settings,Integrations,Integrace
DocType: DocField,Section Break,Zalomení sekce
DocType: Address,Warehouse,Sklad
DocType: Address,Other Territory,Další území
,Messages,Zprávy
apps/frappe/frappe/desk/page/applications/applications.js +49,Portal,Portál
DocType: Email Account,Use Different Email Login ID,Použijte jiné přihlašovací ID e-mailu
@@ -818,6 +820,7 @@ apps/frappe/frappe/utils/data.py +556,1 month ago,1 před měsícem
DocType: Contact,User ID,User ID
DocType: Communication,Sent,Odesláno
DocType: Address,Kerala,Kerala
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} rok (y)
DocType: File,Lft,LFT
DocType: User,Simultaneous Sessions,souběžných relací
DocType: OAuth Client,Client Credentials,klientské pověření
@@ -834,7 +837,7 @@ DocType: Email Queue,Unsubscribe Method,Metoda aktuality
DocType: GSuite Templates,Related DocType,Související DocType
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Upravit pro přidání obsahu
apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Zvolte jazyky
apps/frappe/frappe/__init__.py +509,No permission for {0},Nemáte oprávnění pro {0}
apps/frappe/frappe/__init__.py +517,No permission for {0},Nemáte oprávnění pro {0}
DocType: DocType,Advanced,Pokročilé
apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,"Zdá se, že klíč API nebo API Secret je špatně !!!"
apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Reference: {0} {1}
@@ -845,6 +848,7 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P
DocType: Email Account,Yahoo Mail,Yahoo Mail
apps/frappe/frappe/limits.py +75,Your subscription will expire tomorrow.,Vaše předplatné vyprší zítra.
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +483,Saved!,Uloženo!
apps/frappe/frappe/public/js/frappe/form/control.js +729,{0} is not a valid hex color,{0} není platná hexadecimální barva
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,paní
apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Aktualizovaný {0}: {1}
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,Hlavní
@@ -872,7 +876,7 @@ DocType: Report,Disabled,Vypnuto
DocType: Workflow State,eye-close,eye-close
DocType: OAuth Provider Settings,OAuth Provider Settings,Nastavení OAuth Poskytovatel
apps/frappe/frappe/config/setup.py +254,Applications,Aplikace
apps/frappe/frappe/public/js/frappe/request.js +347,Report this issue,Nahlásit tento problém
apps/frappe/frappe/public/js/frappe/request.js +349,Report this issue,Nahlásit tento problém
apps/frappe/frappe/public/js/frappe/form/save.js +79,Name is required,Jméno je vyžadováno
DocType: Custom Script,Adds a custom script (client or server) to a DocType,Přidá přizpůsobený skript (klient nebo server) do DocType
DocType: Address,City/Town,Město / Město
@@ -966,6 +970,7 @@ DocType: Currency,**Currency** Master,** Měna ** Hlavní
DocType: Email Account,No of emails remaining to be synced,"Žádné e-mailů, které zbývá synchronizovány"
apps/frappe/frappe/public/js/frappe/upload.js +203,Uploading,Nahrávání
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,Prosím uložte dokument před přiřazením
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,Klikněte sem pro zveřejnění chyb a návrhů
DocType: Website Settings,Address and other legal information you may want to put in the footer.,"Adresa a další formální informace, které byste rádi uvedli v zápatí."
DocType: Website Sidebar Item,Website Sidebar Item,Webové stránky Postranní panel Item
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +44,{0} records updated,{0} záznamů aktualizováno
@@ -979,12 +984,10 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,jasný
apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Denní události by měly skončit ve stejný den.
DocType: Communication,User Tags,Uživatelské štítky
apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Načítání obrázků ..
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Nastavení&gt; Uživatel
DocType: Workflow State,download-alt,download-alt
apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Stažení aplikace {0}
DocType: Communication,Feedback Request,Zpětná vazba Poptávka
apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,Následující pole chybí:
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Experimental Feature,experimentální Feature
apps/frappe/frappe/www/login.html +30,Sign in,Přihlásit
DocType: Web Page,Main Section,Hlavní sekce
DocType: Page,Icon,ikona
@@ -1086,7 +1089,7 @@ DocType: Customize Form,Customize Form,Přizpůsobit formulář
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +104,Mandatory field: set role for,Povinné pole: nastaven role
DocType: Currency,A symbol for this currency. For e.g. $,"Symbol této měny, např. $"
apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,Frappe Framework
apps/frappe/frappe/model/naming.py +174,Name of {0} cannot be {1},Název {0} nemůže být {1}
apps/frappe/frappe/model/naming.py +180,Name of {0} cannot be {1},Název {0} nemůže být {1}
apps/frappe/frappe/config/setup.py +46,Show or hide modules globally.,Zobrazit nebo skrýt moduly globálně.
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,Od data
apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,Povedlo se
@@ -1107,7 +1110,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +308,Add A New
apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js +3,See on Website,Viz na internetových stránkách
DocType: Workflow Transition,Next State,Příští stav
DocType: User,Block Modules,Blokované moduly
apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Návrat délku {0} pro &#39;{1}&#39; do &#39;{2}&#39;; Nastavení délky jako {3} způsobí zkrácení dat.
apps/frappe/frappe/model/db_schema.py +142,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Návrat délku {0} pro &#39;{1}&#39; do &#39;{2}&#39;; Nastavení délky jako {3} způsobí zkrácení dat.
DocType: Print Format,Custom CSS,Přizpůsobené CSS
apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Přidat komentář
apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Ignorovat: {0} až {1}
@@ -1199,13 +1202,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,
DocType: Custom Role,Custom Role,Custom Role
apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Home / Test Folder 2
DocType: System Settings,Ignore User Permissions If Missing,Ignorují uživatelského oprávnění Pokud chybějící
apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Před nahráním prosím uložení dokumentu.
apps/frappe/frappe/public/js/frappe/form/control.js +1075,Please save the document before uploading.,Před nahráním prosím uložení dokumentu.
apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Zadejte heslo
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret
apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Přidat další komentář
apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,editovat DocType
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Odhlášen z Zpravodaje
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,Unsubscribed from Newsletter,Odhlášen z Zpravodaje
apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Složit musí přijít před konec oddílu
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,Ve vývoji
apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Poslední změna od
DocType: Workflow State,hand-down,hand-down
DocType: Address,GST State,Stát GST
@@ -1226,6 +1230,7 @@ DocType: Workflow State,Tag,Štítek
DocType: Custom Script,Script,Skript
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Mé nastavení
DocType: Website Theme,Text Color,Barva textu
apps/frappe/frappe/desk/page/backups/backups.py +72,Backup job is already queued. You will receive an email with the download link,Zálohovací úloha je již ve frontě. Obdržíte e-mail s odkazem na stažení
DocType: Desktop Icon,Force Show,Force Show
apps/frappe/frappe/auth.py +78,Invalid Request,Neplatný požadavek
apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Tento formulář nemá žádný vstup
@@ -1336,7 +1341,7 @@ DocType: DocField,Name,Jméno
apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,Překročili jste maximální prostor {0} pro svůj plán. {1}.
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Hledat v dokumentech
DocType: OAuth Authorization Code,Valid,Platný
apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Otevrít odkaz
apps/frappe/frappe/public/js/frappe/form/control.js +1354,Open Link,Otevrít odkaz
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Váš jazyk
apps/frappe/frappe/desk/form/load.py +46,Did not load,Nebylo nahráno
apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Přidat řádek
@@ -1354,6 +1359,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Některé dokumenty, například faktura, nemůže být změněna pokud je dokončena. Finální stav pro takové dokumenty se nazývá Vloženo. Můžete omezit, které role mohou vkládat."
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Nemáte povoleno exportovat tento Report
apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 vybraná položka
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> Nebyly nalezeny žádné výsledky pro ' </p>
DocType: Newsletter,Test Email Address,Test E-mailová adresa
DocType: ToDo,Sender,Odesilatel
DocType: GSuite Settings,Google Apps Script,Skript Google Apps
@@ -1462,7 +1468,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Ple
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Nahrávám Report
apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Vaše předplatné vyprší dnes.
DocType: Page,Standard,Standard
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Přiložit Soubor
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,Přiložit Soubor
apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,Oznámení o aktualizování hesla
apps/frappe/frappe/desk/page/backups/backups.html +13,Size,Velikost
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,Úkol Dokončen
@@ -1492,7 +1498,7 @@ apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversat
apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Možnosti nejsou nastaveny pro provázané pole {0}
DocType: Customize Form,"Must be of type ""Attach Image""",Musí být typu &quot;Připojit Image&quot;
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Odznačit vše
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Nemůžete odstavení &quot;pouze pro čtení&quot; pro pole {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +199,You cannot unset 'Read Only' for field {0},Nemůžete odstavení &quot;pouze pro čtení&quot; pro pole {0}
DocType: Auto Email Report,Zero means send records updated at anytime,Zero znamená zasílání záznamů kdykoli aktualizované
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +22,Complete Setup,Kompletní nastavení
DocType: Workflow State,asterisk,asterisk
@@ -1506,7 +1512,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +98,Week,Týden
DocType: Social Login Keys,Google,Google
DocType: Email Domain,Example Email Address,Příklad E-mailová adresa
apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,Most Použité
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Unsubscribe from Newsletter,Odhlásit z newsletteru
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe from Newsletter,Odhlásit z newsletteru
apps/frappe/frappe/www/login.html +101,Forgot Password,Zapomenuté heslo
DocType: Dropbox Settings,Backup Frequency,zálohování frekvence
DocType: Workflow State,Inverse,Invertovat
@@ -1584,10 +1590,11 @@ apps/frappe/frappe/config/setup.py +209,"Actions for workflow (e.g. Approve, Can
DocType: Workflow State,flag,flag
apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +57,Feedback Request is already sent to user,Zpětná vazba Požadavek se posílá již uživateli
DocType: Web Page,Text Align,Zarovnání textu
apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Název nemůže obsahovat speciální znaky jako {0}
apps/frappe/frappe/model/naming.py +185,Name cannot contain special characters like {0},Název nemůže obsahovat speciální znaky jako {0}
DocType: Contact Us Settings,Forward To Email Address,Přeposlat na emailovou adresu
apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Zobrazit všechny údaje
apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Titulek musí být validní název pole
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,E-mailový účet není nastaven. Vytvořte nový e-mailový účet z Nastavení&gt; Email&gt; E-mailový účet
apps/frappe/frappe/config/core.py +7,Documents,Dokumenty
DocType: Email Flag Queue,Is Completed,je dokončeno
apps/frappe/frappe/www/me.html +22,Edit Profile,Editovat profil
@@ -1597,7 +1604,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi
myfield
eval:doc.myfield=='My Value'
eval:doc.age&gt;18","Toto pole se objeví pouze v případě, že fieldname zde definovány má hodnotu OR pravidla jsou pravými (příklady): myfield eval: doc.myfield == &quot;Můj Value &#39;eval: doc.age&gt; 18"
apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Dnes
apps/frappe/frappe/public/js/frappe/form/control.js +764,Today,Dnes
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Pakliže toto nastavíte, uživatelé budou moci přistoupit pouze na dokumenty (např.: příspěvky blogu), kam existují odkazy (např.: blogger)."
DocType: Error Log,Log of Scheduler Errors,Log chyb plánovače.
DocType: User,Bio,Biografie
@@ -1656,7 +1663,7 @@ DocType: Print Format,Js,Js
apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Vybrat formát tisku
apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Krátké vzory klávesnice lze snadno uhodnout
DocType: Portal Settings,Portal Menu,portál Menu
apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Délka {0} by měla být mezi 1 a 1000
apps/frappe/frappe/model/db_schema.py +115,Length of {0} should be between 1 and 1000,Délka {0} by měla být mezi 1 a 1000
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,Vyhledávání na cokoliv
DocType: DocField,Print Hide,Skrýt tisk
apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,Zadejte hodnotu
@@ -1709,8 +1716,7 @@ apps/frappe/frappe/model/document.py +564,Cannot change docstatus from 0 to 2,Ne
DocType: User Permission for Page and Report,Roles Permission,role Oprávnění
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Aktualizovat
DocType: Error Snapshot,Snapshot View,Snapshot View
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Uložte Newsletter před odesláním
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} rok (y)
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +101,Please save the Newsletter before sending,Uložte Newsletter před odesláním
apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Možnosti musí být validní DocType pro pole{0} na řádku {1}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Upravit vlastnosti
DocType: Patch Log,List of patches executed,Seznam provedených záplat
@@ -1728,7 +1734,7 @@ apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Aktualizovat h
DocType: Workflow State,trash,koš
DocType: System Settings,Older backups will be automatically deleted,Starší zálohy budou automaticky smazány
DocType: Event,Leave blank to repeat always,Nechte prázdné pro opakování vždy
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +192,Confirmed,Potvrzeno
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,Confirmed,Potvrzeno
DocType: Event,Ends on,Končí
DocType: Payment Gateway,Gateway,Brána
apps/frappe/frappe/public/js/frappe/form/linked_with.js +116,Not enough permission to see links,Nedostatečné povolení k zobrazení odkazů
@@ -1759,7 +1765,6 @@ DocType: Contact,Purchase Manager,Vedoucí nákupu
DocType: Custom Script,Sample,Vzorek
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Nekategorizovaný Tags
DocType: Event,Every Week,Týdně
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,E-mailový účet není nastaven. Vytvořte nový e-mailový účet z nabídky Nastavení&gt; Email&gt; E-mailový účet
apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Klikněte zde pro kontrolu využití nebo upgrade na vyšší plán
DocType: Custom Field,Is Mandatory Field,Je Povinné Pole
DocType: User,Website User,Uživatel webu
@@ -1767,7 +1772,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +10,Not equals,N
DocType: Integration Request,Integration Request Service,Integrace Service Request
DocType: Website Script,Script to attach to all web pages.,Skript pro přidání na všechny www stránky.
DocType: Web Form,Allow Multiple,Povolit vícenásobné
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +40,Assign,Přiřadit
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +44,Assign,Přiřadit
apps/frappe/frappe/config/setup.py +102,Import / Export Data from .csv files.,Importovat / exportovat data z/do .csv souboru
DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Pouze odeslat záznamy aktualizované v posledních X hodinách
DocType: Communication,Feedback,Zpětná vazba
@@ -1847,7 +1852,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,Zbývajíc
apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Prosím před přiložením je třeba nejprve uložit.
apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Přidáno: {0} ({1})
apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Přednastavené téma je zasazen do {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Typ pole nemůže být změněn z {0} na {1} na řádku {2}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +325,Fieldtype cannot be changed from {0} to {1} in row {2},Typ pole nemůže být změněn z {0} na {1} na řádku {2}
apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,Oprávnění rolí
DocType: Help Article,Intermediate,přechodný
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Může číst
@@ -1862,9 +1867,9 @@ apps/frappe/frappe/core/doctype/user/user.js +42,Refreshing...,Obnovuji...
DocType: Event,Starts on,Začíná
DocType: System Settings,System Settings,Nastavení systému
apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Zastavení relace se nezdařilo
apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Tento e-mail byl odeslán na adresu {0} a zkopírovat do {1}
apps/frappe/frappe/email/queue.py +470,This email was sent to {0} and copied to {1},Tento e-mail byl odeslán na adresu {0} a zkopírovat do {1}
DocType: Workflow State,th,th
apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Nově Vytvořit: {0}
apps/frappe/frappe/public/js/frappe/form/control.js +1517,Create a new {0},Nově Vytvořit: {0}
DocType: Email Rule,Is Spam,je Spam
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Report {0}
apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Otevřít {0}
@@ -1876,12 +1881,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon a
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,Duplikát
DocType: Newsletter,Create and Send Newsletters,Vytvoření a odeslání Zpravodaje
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date must be before To Date,Datum od musí být dříve než datum do
DocType: Address,Andaman and Nicobar Islands,Andamanské a Nicobarské ostrovy
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +216,GSuite Document,Dokument GSuite
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +29,Please specify which value field must be checked,Prosím specifikujte která hodnota musí být prověřena
apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"""Parent"" signifies the parent table in which this row must be added","""Nadřazená"" značí nadřazenou tabulku, do které musí být tento řádek přidán"
DocType: Website Theme,Apply Style,Aplikovat styl
DocType: Feedback Request,Feedback Rating,Feedback Rating
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared With,Sdílené s
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Sdílené s
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Nastavení&gt; Správce oprávnění uživatelů
DocType: Help Category,Help Articles,Články nápovědy
,Modules Setup,Nastavení modulů
apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Typu:
@@ -1912,7 +1919,7 @@ DocType: OAuth Client,App Client ID,ID aplikace klienta
DocType: Kanban Board,Kanban Board Name,Jméno Kanban Board
DocType: Email Alert Recipient,"Expression, Optional","Výraz, Volitelné"
DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,Tento kód zkopírujte a vložte do příkazu Code.gs ve svém projektu na skriptu script.google.com
apps/frappe/frappe/email/queue.py +456,This email was sent to {0},Tento e-mail byl odeslán na {0}
apps/frappe/frappe/email/queue.py +472,This email was sent to {0},Tento e-mail byl odeslán na {0}
DocType: DocField,Remember Last Selected Value,"Nezapomeňte, poslední vybraná hodnota"
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +334,Please select Document Type,Zvolte Typ dokumentu
DocType: Email Account,Check this to pull emails from your mailbox,"Podívejte se na to, aby vytáhnout e-maily z poštovní schránky"
@@ -1927,6 +1934,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,Mož
DocType: Feedback Trigger,Email Field,Email Field
apps/frappe/frappe/www/update-password.html +59,New Password Required.,Vyžadováno nové heslo.
apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} sdílí tento dokument s {1}
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Nastavení&gt; Uživatel
DocType: Website Settings,Brand Image,Značka Obrázek
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Nastavení horního navigačního panelu, zápatí a loga."
@@ -1994,8 +2002,8 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa
apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Nelze číst formát souboru pro {0}
DocType: Auto Email Report,Filter Data,Filtrování dat
apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Přidat značku
apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Prosím nejdříve přiložte soubor.
apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Narazili jsme na problémy při nastavování jména, prosím kontaktujte administrátora"
apps/frappe/frappe/public/js/frappe/form/control.js +1335,Please attach a file first.,Prosím nejdříve přiložte soubor.
apps/frappe/frappe/model/naming.py +174,"There were some errors setting the name, please contact the administrator","Narazili jsme na problémy při nastavování jména, prosím kontaktujte administrátora"
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Příchozí e-mailový účet není správný
apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \
Please enter a valid email address so that we can get back.","Zdá se, že jste napsali své jméno místo vašeho e-mailu. \ Prosím zadejte platnou e-mailovou adresu, abychom se mohli vrátit zpět."
@@ -2047,7 +2055,6 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N
DocType: Custom DocPerm,Create,Vytvořit
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Neplatný filtr: {0}
DocType: Email Account,no failed attempts,no neúspěšných pokusů
apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,Nebyla nalezena žádná výchozí šablona adresy. Vytvořte prosím nový z nabídky Nastavení&gt; Tisk a branding&gt; Šablona adresy.
DocType: GSuite Settings,refresh_token,Refresh_token
DocType: Dropbox Settings,App Access Key,Access Key App
DocType: OAuth Bearer Token,Access Token,Přístupový Token
@@ -2073,6 +2080,7 @@ apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,"Ctrl
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Nově Vytvořit: {0}
apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,Nový e-mailový účet
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +28,Document Restored,Dokument obnoven
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +203,You can't set 'Options' for field {0},Nemůžete nastavit volbu &quot;Možnosti&quot; pro pole {0}
apps/frappe/frappe/core/page/usage_info/usage_info.html +86,Size (MB),Velikost (MB)
DocType: Help Article,Author,Autor
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +10,Resume Sending,pokračovat v odesílání
@@ -2082,7 +2090,7 @@ DocType: Print Settings,Monochrome,Monochromatické
DocType: Address,Purchase User,Nákup Uživatel
DocType: Workflow,"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.","Mohou existovat různé ""stavy"" tohoto dokumentu. Jako ""Otevřeno"", ""Čeká na schválení"" atd."
apps/frappe/frappe/utils/verified_command.py +43,This link is invalid or expired. Please make sure you have pasted correctly.,"Tento odkaz je neplatný nebo vypršela. Ujistěte se, že jste vložili správně."
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> byl úspěšně odhlásil z tohoto seznamu adresátů.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +136,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> byl úspěšně odhlásil z tohoto seznamu adresátů.
DocType: Web Page,Slideshow,Promítání obrázků
apps/frappe/frappe/contacts/doctype/address_template/address_template.py +31,Default Address Template cannot be deleted,Výchozí šablony adresy nemůže být smazán
DocType: Contact,Maintenance Manager,Správce údržby
@@ -2103,7 +2111,7 @@ apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a r
DocType: System Settings,Apply Strict User Permissions,Použijte oprávnění pro přísná uživatele
DocType: DocField,Allow Bulk Edit,Povolit hromadné úpravy
DocType: Blog Post,Blog Post,Příspěvek blogu
apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Pokročilé vyhledávání
apps/frappe/frappe/public/js/frappe/form/control.js +1527,Advanced Search,Pokročilé vyhledávání
apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Informace o obnově hesla byly zaslány na Váš email
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \
higher levels for field level permissions.","Úroveň 0 je pro oprávnění na úrovni dokumentu, \ vyšší úrovně oprávnění na úrovni pole."
@@ -2128,13 +2136,13 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new re
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Vyhledávání
DocType: Currency,Fraction,Zlomek
DocType: LDAP Settings,LDAP First Name Field,LDAP First Name Field
apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Vyberte ze stávajících příloh
apps/frappe/frappe/public/js/frappe/form/control.js +1085,Select from existing attachments,Vyberte ze stávajících příloh
DocType: Custom Field,Field Description,Popis pole
apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Název není nastaven pomocí prompt
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,e-mailové schránky
DocType: Auto Email Report,Filters Display,filtry Display
DocType: Website Theme,Top Bar Color,Top Bar Color
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Do you want to unsubscribe from this mailing list?,Chcete se odhlásit z této e-mailové konference?
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Do you want to unsubscribe from this mailing list?,Chcete se odhlásit z této e-mailové konference?
DocType: Address,Plant,Rostlina
apps/frappe/frappe/core/doctype/communication/communication.js +65,Reply All,Odpovědět všem
DocType: DocType,Setup,Nastavení
@@ -2177,7 +2185,7 @@ DocType: User,Send Notifications for Transactions I Follow,Posílat oznámení p
apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Nelze nastavit Odeslat, Zrušit, Změnit bez zapsání"
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,"Jste si jisti, že chcete smazat přílohu?"
apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} <a href=""#Form/{0}/{1}"">{1}</a> is linked with {2} <a href=""#Form/{2}/{3}"">{3}</a>","Nelze smazat nebo zrušit, protože {0} <a href=""#Form/{0}/{1}"">{1}</a> je spojeno s {2} <a href=""#Form/{2}/{3}"">{3}</a>"
apps/frappe/frappe/__init__.py +1062,Thank you,Děkujeme Vám
apps/frappe/frappe/__init__.py +1070,Thank you,Děkujeme Vám
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Ukládám
DocType: Print Settings,Print Style Preview,Náhled stylu tisku
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
@@ -2192,7 +2200,7 @@ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Přidat
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Pořadové číslo
,Role Permissions Manager,Správce rolí a oprávnění
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Jméno nového Print Format
apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Clear Attachment
apps/frappe/frappe/public/js/frappe/form/control.js +1087,Clear Attachment,Clear Attachment
apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Povinné:
,User Permissions Manager,Správce oprávnění
DocType: Property Setter,New value to be set,Nová hodnota k nastavení
@@ -2217,7 +2225,7 @@ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment C
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,Vymazání záznamu chyb
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,"Prosím, vyberte rating"
DocType: Email Account,Notify if unreplied for (in mins),"Upozornit, pokud Nezodpovězená pro (v min)"
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,Před dvěma dny
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +501,2 days ago,Před dvěma dny
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Kategorizujte příspěvky blogu.
DocType: Workflow State,Time,Čas
DocType: DocField,Attach,Přiložit
@@ -2233,6 +2241,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Backup S
DocType: GSuite Templates,Template Name,Název šablony
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,Nový typ dokumentu
DocType: Custom DocPerm,Read,Číst
DocType: Address,Chhattisgarh,Chhattisgarh
DocType: Role Permission for Page and Report,Role Permission for Page and Report,Oprávnění role Page a zpráva
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Srovnejte hodnotu
apps/frappe/frappe/www/update-password.html +14,Old Password,Staré heslo
@@ -2280,7 +2289,7 @@ apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your ema
can get back to you. Thanks!","Prosím, zadejte i svůj e-mail a poselství, abychom \
může dostat zpět k vám. Díky!"
apps/frappe/frappe/email/smtp.py +170,Could not connect to outgoing email server,Nelze se spojit se serverem odchozí emailové pošty
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +162,Thank you for your interest in subscribing to our updates,Děkujeme Vám za Váš zájem o přihlášení do našich aktualizací
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Thank you for your interest in subscribing to our updates,Děkujeme Vám za Váš zájem o přihlášení do našich aktualizací
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Custom Column,Custom Column
DocType: Workflow State,resize-full,resize-full
DocType: Workflow State,off,off
@@ -2343,7 +2352,7 @@ DocType: Address,Telangana,Telangana
apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Výchozí pro {0} musí být možnost
DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategorie
DocType: User,User Image,Obrázek uživatele (avatar)
apps/frappe/frappe/email/queue.py +289,Emails are muted,Emaily jsou potlačené (muted)
apps/frappe/frappe/email/queue.py +304,Emails are muted,Emaily jsou potlačené (muted)
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + Up
DocType: Website Theme,Heading Style,Okruh Style
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +183,A new Project with this name will be created,Bude vytvořen nový projekt s tímto názvem
@@ -2560,7 +2569,6 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,zvon
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Chyba v upozornění e-mailu
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Sdílejte tento dokument s
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Nastavení&gt; Správce oprávnění uživatelů
apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} nemůže být uzel koncový uzel jelikož má podřízené uzly
DocType: Communication,Info,Info
apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Přidat přílohu
@@ -2615,7 +2623,7 @@ apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,Formát ti
DocType: Email Alert,Send days before or after the reference date,Poslat dní před nebo po referenčním datem
DocType: User,Allow user to login only after this hour (0-24),Povolit uživateli se přihlásit pouze po této hodině (0-24)
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,Hodnota
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +165,Click here to verify,Klikněte zde pro ověření
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +166,Click here to verify,Klikněte zde pro ověření
apps/frappe/frappe/utils/password_strength.py +178,Predictable substitutions like '@' instead of 'a' don't help very much.,Předvídatelné substituce jako &#39;@&#39; místo &#39;a&#39; nepomohou moc.
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Přidělené Me
apps/frappe/frappe/utils/data.py +462,Zero,Nula
@@ -2627,6 +2635,7 @@ DocType: ToDo,Priority,Priorita
DocType: Email Queue,Unsubscribe Param,aktuality Param
DocType: Auto Email Report,Weekly,Týdenní
DocType: Communication,In Reply To,V odpovědi na
apps/frappe/frappe/contacts/doctype/address/address.py +189,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,Nebyla nalezena žádná výchozí šablona adresy. Vytvořte prosím nový z nabídky Nastavení&gt; Tisk a branding&gt; Šablona adresy.
DocType: DocType,Allow Import (via Data Import Tool),Umožnit import (pomocí Import dat Tool)
apps/frappe/frappe/templates/print_formats/standard_macros.html +30,Sr,starší
DocType: DocField,Float,Desetinné číslo
@@ -2717,7 +2726,6 @@ apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Neplatný limit {0}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Seznam typů dokumentů
DocType: Event,Ref Type,Typ reference
apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Pakliže nahráváte nové záznamy, nechte sloupec (ID) ""název/jméno"" prázdný."
DocType: Address,Chattisgarh,Chattisgarh
apps/frappe/frappe/config/core.py +47,Errors in Background Events,Chyby v pozadí akce
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,Počet sloupců
DocType: Workflow State,Calendar,Kalendář
@@ -2749,7 +2757,7 @@ apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Úkol
DocType: Integration Request,Remote,Dálkový
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Vypočítat
apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,"Prosím, vyberte první DocType"
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Potvrdit Váš e-mail
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +174,Confirm Your Email,Potvrdit Váš e-mail
apps/frappe/frappe/www/login.html +42,Or login with,Nebo se přihlašte
DocType: Error Snapshot,Locals,Místní obyvatelé
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Předávány prostřednictvím {0} z {1}: {2}
@@ -2766,7 +2774,7 @@ DocType: Web Page,Web Page,Www stránky
DocType: Blog Category,Blogger,Blogger
apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},&#39;V globálním vyhledávání&#39; není povolen typ {0} v řádku {1}
apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Zobrazit seznam
apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Datum musí být ve formátu: {0}
apps/frappe/frappe/public/js/frappe/form/control.js +810,Date must be in format: {0},Datum musí být ve formátu: {0}
DocType: Workflow,Don't Override Status,Nepotlačí Stav
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Uveďte prosím hodnocení.
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Feedback Poptávka
@@ -2799,7 +2807,7 @@ DocType: Custom DocPerm,Report,Report
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Množství musí být větší než 0 ° C.
apps/frappe/frappe/desk/reportview.py +107,{0} is saved,{0} uloženo
apps/frappe/frappe/core/doctype/user/user.py +327,User {0} cannot be renamed,Uživatel: {0} nemůže být přejmenován
apps/frappe/frappe/model/db_schema.py +107,Fieldname is limited to 64 characters ({0}),Fieldname je omezena na 64 znaků ({0})
apps/frappe/frappe/model/db_schema.py +108,Fieldname is limited to 64 characters ({0}),Fieldname je omezena na 64 znaků ({0})
apps/frappe/frappe/config/desk.py +59,Email Group List,Email List Group
DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],Ikonu souboru s příponou ICO. Měl by být 16 x 16 px. Generován pomocí favicon generátoru. [favicon-generator.org]
DocType: Auto Email Report,Format,Formát
@@ -2877,7 +2885,7 @@ DocType: Website Settings,Title Prefix,Title Prefix
DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Upozornění a hromadné emaily budou zaslány z tohoto odchozího serveru.
DocType: Workflow State,cog,cog
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on Migrate,Sync na Migrate
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Právě si prohlížíte
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Currently Viewing,Právě si prohlížíte
DocType: DocField,Default,Výchozí
apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0}: přidáno
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Hledat &#39;{0}&#39;
@@ -2937,7 +2945,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +771,Report was
DocType: Print Settings,Print Style,Styl tisku
apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,Není propojen s žádným záznamem
DocType: Custom DocPerm,Import,Importovat
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +178,Row {0}: Not allowed to enable Allow on Submit for standard fields,řádek {0}: Nelze povolit při vkládání pro standardní pole
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +180,Row {0}: Not allowed to enable Allow on Submit for standard fields,řádek {0}: Nelze povolit při vkládání pro standardní pole
apps/frappe/frappe/config/setup.py +100,Import / Export Data,Importovat / exportovat
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,Standardní role nemůže být přejmenován
DocType: Communication,To and CC,To a CC
@@ -2964,7 +2972,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo
DocType: Auto Email Report,Filter Meta,Filtr Meta
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,Text k zobrazení k prolinkování www stránky pokud má tento formulář www stránku. Cesta odkazu bude automaticky generována na základě `page_name` a `parent_website_route`
DocType: Feedback Request,Feedback Trigger,Zpětná vazba Trigger
apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Prosím nejprve nastavte {0}
apps/frappe/frappe/public/js/frappe/form/control.js +1741,Please set {0} first,Prosím nejprve nastavte {0}
DocType: Unhandled Email,Message-id,Message-id
DocType: Patch Log,Patch,Záplata
DocType: Async Task,Failed,Nepodařilo


+ 74
- 66
frappe/translations/da.csv Datei anzeigen

@@ -14,8 +14,9 @@ apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,Du
DocType: User,Facebook Username,Facebook Brugernavn
DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Bemærk: Flere sessioner vil være tilladt i tilfælde af mobil enhed
apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Aktiveret email indbakke for bruger {brugere}
apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Kan ikke sende denne e-mail. Du har krydset sende grænse på {0} emails for denne måned.
apps/frappe/frappe/email/queue.py +225,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Kan ikke sende denne e-mail. Du har krydset sende grænse på {0} emails for denne måned.
apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Godkend endeligt {0}?
apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,Download filer backup
DocType: Address,County,Anvendes ikke
DocType: Workflow,If Checked workflow status will not override status in list view,Hvis Kontrolleret workflow status ikke tilsidesætter status i listevisning
apps/frappe/frappe/client.py +280,Invalid file path: {0},Ugyldig filsti: {0}
@@ -80,10 +81,10 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,"Indstill
apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administrator logget ind
DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontaktmuligheder, som ""Sales Query, Support Query"" etc hver på en ny linje eller adskilt af kommaer."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. download
apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Indsæt
apps/frappe/frappe/public/js/frappe/form/control.js +1979,Insert,Indsæt
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Vælg {0}
DocType: Print Settings,Classic,Klassisk
DocType: Desktop Icon,Color,Farve
DocType: DocField,Color,Farve
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +54,For ranges,For intervaller
DocType: Workflow State,indent-right,led-højre
DocType: Has Role,Has Role,har rolle
@@ -100,7 +101,7 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To impor
DocType: DocType,Default Print Format,Standard Print Format
DocType: Workflow State,Tags,Tags
apps/frappe/frappe/public/js/frappe/form/workflow.js +33,None: End of Workflow,Ingen: Slutning af Workflow
apps/frappe/frappe/model/db_schema.py +346,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} felt kan ikke indstilles som enestående i {1}, da der er ikke-unikke eksisterende værdier"
apps/frappe/frappe/model/db_schema.py +347,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} felt kan ikke indstilles som enestående i {1}, da der er ikke-unikke eksisterende værdier"
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +47,Document Types,Dokumenttyper
DocType: Address,Jammu and Kashmir,Jammu og Kashmir
DocType: Workflow,Workflow State Field,Workflow State Field
@@ -231,7 +232,7 @@ DocType: Workflow,Transition Rules,Overgangsregler
apps/frappe/frappe/core/doctype/report/report.js +11,Example:,Eksempel:
DocType: Workflow,Defines workflow states and rules for a document.,Definerer workflow stater og regler for et dokument.
DocType: Workflow State,Filter,Filter
apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Feltnavn {0} kan ikke have specielle tegn som {1}
apps/frappe/frappe/model/db_schema.py +564,Fieldname {0} cannot have special characters like {1},Feltnavn {0} kan ikke have specielle tegn som {1}
apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Opdatering mange værdier på én gang.
apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,"Fejl: Dokument er blevet ændret, efter at du har åbnet det"
apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} logget ud: {1}
@@ -260,7 +261,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Få din glob
apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Dit abonnement udløb den {0}. For at forny, {1}."
DocType: Workflow State,plus-sign,plus-tegnet
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Opsætning allerede fuldført
apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} er ikke installeret
apps/frappe/frappe/__init__.py +897,App {0} is not installed,App {0} er ikke installeret
DocType: Workflow State,Refresh,Opdater
DocType: Event,Public,Offentlig
apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Intet at vise
@@ -339,7 +340,6 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Rediger overskrift
DocType: File,File URL,Fil URL
DocType: Version,Table HTML,tabel HTML
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> Ingen resultater fundet for ' </p>
apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Tilføj Abonnenter
apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Kommende begivenheder i dag
DocType: Email Alert Recipient,Email By Document Field,E-mail ved dokumentfelt
@@ -404,7 +404,6 @@ DocType: Desktop Icon,Link,Link
apps/frappe/frappe/utils/file_manager.py +96,No file attached,Ingen fil vedhæftet
DocType: Version,Version,Version
DocType: User,Fill Screen,Udfyld skærm
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,Opsæt venligst standard e-mail-konto fra Opsætning&gt; Email&gt; E-mail-konto
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Kan ikke vise dette træ rapport, på grund af manglende data. Mest sandsynligt er det at blive filtreret ud på grund af tilladelser."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Vælg Filer
apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Edit via Upload
@@ -474,9 +473,9 @@ DocType: User,Reset Password Key,Nulstil adgangskode
DocType: Email Account,Enable Auto Reply,Aktiver autosvar
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Ikke set
DocType: Workflow State,zoom-in,zoom-ind
apps/frappe/frappe/email/queue.py +219,Unsubscribe from this list,Afmelde denne liste
apps/frappe/frappe/email/queue.py +234,Unsubscribe from this list,Afmelde denne liste
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Reference DocType and Reference Name are required,Henvisning DocType og reference navn er påkrævet
apps/frappe/frappe/utils/jinja.py +35,Syntax error in template,Syntaks fejl i skabelon
apps/frappe/frappe/utils/jinja.py +51,Syntax error in template,Syntaks fejl i skabelon
DocType: DocField,Width,Bredde
DocType: Email Account,Notify if unreplied,"Informer, hvis unreplied"
DocType: System Settings,Minimum Password Score,Mindste adgangskode score
@@ -560,6 +559,7 @@ DocType: Custom Field,Select the label after which you want to insert new field.
DocType: User,Last Login,Sidste log ind
apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Feltnavn kræves i række {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Kolonne
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,Opsæt venligst standard e-mail-konto fra Opsætning&gt; Email&gt; E-mail-konto
DocType: Custom Field,Adds a custom field to a DocType,Tilføjer et brugerdefineret felt til et DocType
DocType: File,Is Home Folder,Er Home Folder
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} er ikke en gyldig e-mailadresse
@@ -567,7 +567,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +733,Select atleast 1 reco
apps/frappe/frappe/core/doctype/has_role/has_role.py +13,User '{0}' already has the role '{1}',Bruger '{0}' har allerede rollen '{1}'
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,Upload og Sync
apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Delt med {0}
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe,Afmeld abonnement
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +132,Unsubscribe,Afmeld abonnement
DocType: Communication,Reference Name,Henvisning Navn
apps/frappe/frappe/public/js/frappe/toolbar.js +30,Chat Support,Chat Support
DocType: Error Snapshot,Exception,Undtagelse
@@ -585,7 +585,7 @@ DocType: Email Group,Newsletter Manager,Nyhedsbrev manager
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Mulighed 1
apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} til {1}
apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Log af fejl under anmodninger.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} er blevet føjet til e-mailgruppen.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +194,{0} has been successfully added to the Email Group.,{0} er blevet føjet til e-mailgruppen.
DocType: Address,Uttar Pradesh,Uttar Pradesh
DocType: Address,Pondicherry,Pondicherry
apps/frappe/frappe/public/js/frappe/upload.js +364,Make file(s) private or public?,Lav fil (er) private eller offentlige?
@@ -616,7 +616,7 @@ DocType: Portal Settings,Portal Settings,Portal Indstillinger
DocType: Web Page,0 is highest,0 er højest
apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Er du sikker på du vil linke denne kommunikation til {0}?
apps/frappe/frappe/www/login.html +104,Send Password,Send adgangskode
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +45,Attachments,Vedhæftede filer
DocType: Email Queue,Attachments,Vedhæftede filer
apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,Du behøver ikke tilladelser til at få adgang dette dokument
DocType: Language,Language Name,Sprognavn
DocType: Email Group Member,Email Group Member,E-mailgruppemedlem
@@ -646,7 +646,7 @@ apps/frappe/frappe/utils/password_strength.py +78,Try to use a longer keyboard p
DocType: Feedback Trigger,Check Communication,Tjek kommunikation
DocType: Address,Rajasthan,Rajasthan
apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Rapportgeneratorens rapporter administreres direkte af rapportgeneratoren.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Bekræft din e-mail adresse
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +164,Please verify your Email Address,Bekræft din e-mail adresse
apps/frappe/frappe/model/document.py +903,none of,ingen af
apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Send mig en kopi
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Upload Bruger Tilladelser
@@ -657,7 +657,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Si
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanbantavle {0} findes ikke.
apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} læser dette dokument
DocType: ToDo,Assigned By Full Name,Tildelt af navn
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} opdateret
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} opdateret
apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Rapporten kan ikke indstilles for Single typer
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} dage siden
DocType: Email Account,Awaiting Password,afventer adgangskode
@@ -682,7 +682,7 @@ DocType: Workflow State,Stop,Stands
DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,"Link til den side, du vil åbne. Efterlad tom, hvis du ønsker at gøre det til en gruppe forældre."
DocType: DocType,Is Single,Er Single
apps/frappe/frappe/core/doctype/user/user.py +720,Sign Up is disabled,Tilmeld er deaktiveret
apps/frappe/frappe/email/queue.py +278,{0} has left the conversation in {1} {2},{0} har forladt samtalen i {1} {2}
apps/frappe/frappe/email/queue.py +293,{0} has left the conversation in {1} {2},{0} har forladt samtalen i {1} {2}
DocType: Blogger,User ID of a Blogger,Bruger ID på en Blogger
apps/frappe/frappe/core/doctype/user/user.py +287,There should remain at least one System Manager,Der bør være mindst én systemadministrator tilbage
DocType: GSuite Settings,Authorization Code,Authorization Code
@@ -728,6 +728,7 @@ DocType: Event,Event,Begivenhed
apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Den {0}, {1} skrev:"
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"Kan ikke slette standard felt. Du kan skjule det, hvis du ønsker"
DocType: Top Bar Item,For top bar,For top bar
apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,Kø for backup. Du modtager en email med downloadlinket
apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Kunne ikke identificere {0}
DocType: Address,Address,Adresse
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +3,Payment Failed,Betaling mislykkedes
@@ -752,13 +753,13 @@ DocType: Web Form,Allow Print,Tillad Print
apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Ingen Apps Installeret
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Markere feltet som Obligatorisk
DocType: Communication,Clicked,Klikkede
apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Ingen tilladelse til '{0}' {1}
apps/frappe/frappe/public/js/legacy/form.js +950,No permission to '{0}' {1},Ingen tilladelse til '{0}' {1}
DocType: User,Google User ID,Google bruger-id
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Planlagt til at sende
DocType: DocType,Track Seen,Track Set
apps/frappe/frappe/desk/form/utils.py +55,This method can only be used to create a Comment,Denne fremgangsmåde kan kun bruges til at oprette en kommentar med
DocType: Event,orange,orange
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,No {0} found,Ingen {0} fundet
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +558,No {0} found,Ingen {0} fundet
apps/frappe/frappe/config/setup.py +242,Add custom forms.,Tilføj brugerdefinerede formularer.
apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} i {2}
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +419,submitted this document,godkendte dette dokument
@@ -788,6 +789,7 @@ DocType: Newsletter Email Group,Newsletter Email Group,Nyhedsbrev E-mailgruppe
DocType: Dropbox Settings,Integrations,Integrationer
DocType: DocField,Section Break,Afsnit Break
DocType: Address,Warehouse,Lager
DocType: Address,Other Territory,Andet territorium
,Messages,Meddelelser
apps/frappe/frappe/desk/page/applications/applications.js +49,Portal,Portal
DocType: Email Account,Use Different Email Login ID,Brug forskellige e-mail-login-id
@@ -818,6 +820,7 @@ apps/frappe/frappe/utils/data.py +556,1 month ago,1 måned siden
DocType: Contact,User ID,Bruger-id
DocType: Communication,Sent,Sent
DocType: Address,Kerala,Kerala
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} år siden
DocType: File,Lft,LFT
DocType: User,Simultaneous Sessions,Samtidige Sessions
DocType: OAuth Client,Client Credentials,Client legitimationsoplysninger
@@ -834,7 +837,7 @@ DocType: Email Queue,Unsubscribe Method,Afmeld Method
DocType: GSuite Templates,Related DocType,Relateret DocType
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Rediger for at tilføje indhold
apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Vælg sprog
apps/frappe/frappe/__init__.py +509,No permission for {0},Ingen tilladelse til {0}
apps/frappe/frappe/__init__.py +517,No permission for {0},Ingen tilladelse til {0}
DocType: DocType,Advanced,Avanceret
apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Synes API Key eller API Secret er forkert !!!
apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Reference: {0} {1}
@@ -845,6 +848,7 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P
DocType: Email Account,Yahoo Mail,Yahoo Mail
apps/frappe/frappe/limits.py +75,Your subscription will expire tomorrow.,Dit abonnement udløber i morgen.
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +483,Saved!,Gemt!
apps/frappe/frappe/public/js/frappe/form/control.js +729,{0} is not a valid hex color,{0} er ikke en gyldig hex farve
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,Fru
apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Opdateret {0}: {1}
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,Master
@@ -872,7 +876,7 @@ DocType: Report,Disabled,Deaktiveret
DocType: Workflow State,eye-close,eye-close
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth Provider Indstillinger
apps/frappe/frappe/config/setup.py +254,Applications,Applikationer
apps/frappe/frappe/public/js/frappe/request.js +347,Report this issue,Rapporter dette problem
apps/frappe/frappe/public/js/frappe/request.js +349,Report this issue,Rapporter dette problem
apps/frappe/frappe/public/js/frappe/form/save.js +79,Name is required,Navn er påkrævet
DocType: Custom Script,Adds a custom script (client or server) to a DocType,Tilføjer en brugerdefineret script (klient eller server) til en DocType
DocType: Address,City/Town,By
@@ -966,6 +970,7 @@ DocType: Currency,**Currency** Master,** Valuta ** Master
DocType: Email Account,No of emails remaining to be synced,Ingen af emails der mangler at blive synkroniseret
apps/frappe/frappe/public/js/frappe/upload.js +203,Uploading,Upload
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,"Gem venligst dokumentet, før opgaven"
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,Klik her for at sende fejl og forslag
DocType: Website Settings,Address and other legal information you may want to put in the footer.,"Adresse og andre juridiske oplysninger, du måske ønsker at sætte i sidefoden."
DocType: Website Sidebar Item,Website Sidebar Item,Website Sidebar Item
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +44,{0} records updated,{0} optegnelser opdateret
@@ -979,12 +984,10 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,klar
apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Hverdagsbegivenheder skal starte og slutte på samme dag.
DocType: Communication,User Tags,User Tags
apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Henter billeder ..
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Opsætning&gt; Bruger
DocType: Workflow State,download-alt,Download-alt
apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Download af App {0}
DocType: Communication,Feedback Request,Feedback Request
apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,Følgende områder mangler:
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Experimental Feature,Eksperimentel Feature
apps/frappe/frappe/www/login.html +30,Sign in,Log ind
DocType: Web Page,Main Section,Main Section
DocType: Page,Icon,Ikon
@@ -1086,7 +1089,7 @@ DocType: Customize Form,Customize Form,Tilpas Form
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +104,Mandatory field: set role for,Obligatorisk felt: sæt rolle for
DocType: Currency,A symbol for this currency. For e.g. $,Et symbol for denne valuta. For eksempel $
apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,Frappe Framework
apps/frappe/frappe/model/naming.py +174,Name of {0} cannot be {1},Navn {0} kan ikke være {1}
apps/frappe/frappe/model/naming.py +180,Name of {0} cannot be {1},Navn {0} kan ikke være {1}
apps/frappe/frappe/config/setup.py +46,Show or hide modules globally.,Vis eller skjul moduler globalt.
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,Fra dato
apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,Succes
@@ -1107,7 +1110,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +308,Add A New
apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js +3,See on Website,Se på hjemmesiden
DocType: Workflow Transition,Next State,Næste tilstand
DocType: User,Block Modules,Blokmodulerne
apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Vende tilbage længde til {0} for &#39;{1}&#39; i &#39;{2}&#39;; Indstilling af længde som {3} vil forårsage trunkering af data.
apps/frappe/frappe/model/db_schema.py +142,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Vende tilbage længde til {0} for &#39;{1}&#39; i &#39;{2}&#39;; Indstilling af længde som {3} vil forårsage trunkering af data.
DocType: Print Format,Custom CSS,Brugerdefinerede CSS
apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Tilføj en kommentar
apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Ignoreret: {0} til {1}
@@ -1199,13 +1202,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,
DocType: Custom Role,Custom Role,Tilpasset rolle
apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Forside / Test Mappe 2
DocType: System Settings,Ignore User Permissions If Missing,Ignorér brugertilladelser hvis mangler
apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Gem venligst dokumentet før du uploader.
apps/frappe/frappe/public/js/frappe/form/control.js +1075,Please save the document before uploading.,Gem venligst dokumentet før du uploader.
apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Indtast din adgangskode
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret
apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Tilføj en kommentar
apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Edit DocType
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Afmeldt fra nyhedsbrev
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,Unsubscribed from Newsletter,Afmeldt fra nyhedsbrev
apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Fold skal komme før en sektion Break
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,Under udvikling
apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Senest ændret af
DocType: Workflow State,hand-down,hånd-down
DocType: Address,GST State,GST-stat
@@ -1226,6 +1230,7 @@ DocType: Workflow State,Tag,Tag
DocType: Custom Script,Script,Script
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Indstillinger
DocType: Website Theme,Text Color,Tekstfarve
apps/frappe/frappe/desk/page/backups/backups.py +72,Backup job is already queued. You will receive an email with the download link,Backup job er allerede i kø. Du modtager en email med downloadlinket
DocType: Desktop Icon,Force Show,kraft Show
apps/frappe/frappe/auth.py +78,Invalid Request,Ugyldig Request
apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Denne formular har ikke noget input
@@ -1336,7 +1341,7 @@ DocType: DocField,Name,Navn
apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,Du har overskredet max plads af {0} for din plan. {1}.
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Søg i dokumenterne
DocType: OAuth Authorization Code,Valid,Gyldig
apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Åbn link
apps/frappe/frappe/public/js/frappe/form/control.js +1354,Open Link,Åbn link
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Dit sprog
apps/frappe/frappe/desk/form/load.py +46,Did not load,Ikke indlæse
apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Tilføj række
@@ -1354,6 +1359,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Visse dokumenter, som en faktura, bør ikke ændres, når endelig. Den endelige tilstand for sådanne dokumenter kaldes Tilmeldt. Du kan begrænse hvilke roller kan Submit."
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Du har ikke tilladelse til at udlæse denne rapport
apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 element valgt
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> Ingen resultater fundet for ' </p>
DocType: Newsletter,Test Email Address,Test e-mailadresse
DocType: ToDo,Sender,Afsender
DocType: GSuite Settings,Google Apps Script,Google Apps Script
@@ -1461,7 +1467,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Ple
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Indlæser rapport
apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Dit abonnement udløber i dag.
DocType: Page,Standard,Standard
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Vedhæft fil
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,Vedhæft fil
apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,Meddelelse vedr. opdatering af adgangskode
apps/frappe/frappe/desk/page/backups/backups.html +13,Size,Størrelse
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,Opgave Complete
@@ -1491,7 +1497,7 @@ apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversat
apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Muligheder ikke indstillet til link felt {0}
DocType: Customize Form,"Must be of type ""Attach Image""",Skal være af typen &quot;Vedhæft billede&quot;
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Fravælg alle
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Du kan ikke frakoblet &quot;Read Only&quot; for feltet {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +199,You cannot unset 'Read Only' for field {0},Du kan ikke frakoblet &quot;Read Only&quot; for feltet {0}
DocType: Auto Email Report,Zero means send records updated at anytime,"Nul betyder, at send records opdateres når som helst"
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +22,Complete Setup,Komplet opsætning
DocType: Workflow State,asterisk,stjerne
@@ -1504,8 +1510,8 @@ DocType: Workflow State,shopping-cart,Indkøbskurv
apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +98,Week,Uge
DocType: Social Login Keys,Google,Google
DocType: Email Domain,Example Email Address,Eksempel E-mail adresse
apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,mest Brugt
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Unsubscribe from Newsletter,Afmeld nyhedsbrev
apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,Oftest benyttet
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe from Newsletter,Afmeld nyhedsbrev
apps/frappe/frappe/www/login.html +101,Forgot Password,Glemt adgangskode
DocType: Dropbox Settings,Backup Frequency,Hyppighed af sikkerhedskopier
DocType: Workflow State,Inverse,Inverse
@@ -1583,10 +1589,11 @@ apps/frappe/frappe/config/setup.py +209,"Actions for workflow (e.g. Approve, Can
DocType: Workflow State,flag,flag
apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +57,Feedback Request is already sent to user,Feedback Request er allerede sendt til bruger
DocType: Web Page,Text Align,Tekst Juster
apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Navn må ikke indeholde specialtegn som {0}
apps/frappe/frappe/model/naming.py +185,Name cannot contain special characters like {0},Navn må ikke indeholde specialtegn som {0}
DocType: Contact Us Settings,Forward To Email Address,Frem til email-adresse
apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Vis alle data
apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Titel felt skal være et gyldigt feltnavn
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,E-mail-konto er ikke konfigureret. Opret en ny e-mail-konto fra Opsætning&gt; Email&gt; E-mail-konto
apps/frappe/frappe/config/core.py +7,Documents,Dokumenter
DocType: Email Flag Queue,Is Completed,er afsluttet
apps/frappe/frappe/www/me.html +22,Edit Profile,Rediger profil
@@ -1596,7 +1603,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi
myfield
eval:doc.myfield=='My Value'
eval:doc.age&gt;18","Dette felt vises kun, hvis feltnavn defineres her har værdi ELLER reglerne er sande (eksempler): myfield eval: doc.myfield == &quot;Min Værdi&quot; eval: doc.age&gt; 18"
apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,I dag
apps/frappe/frappe/public/js/frappe/form/control.js +764,Today,I dag
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Når du har indstillet dette, vil brugerne kun kunne få adgang til dokumenter (f.eks. Blog Post) hvor linket eksisterer (f.eks. Blogger)."
DocType: Error Log,Log of Scheduler Errors,Log af Scheduler Fejl
DocType: User,Bio,Bio
@@ -1655,7 +1662,7 @@ DocType: Print Format,Js,js
apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Vælg Udskriv Format
apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Korte tastatur mønstre er nemme at gætte
DocType: Portal Settings,Portal Menu,Portal Menu
apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Længden af {0} skal være mellem 1 og 1000
apps/frappe/frappe/model/db_schema.py +115,Length of {0} should be between 1 and 1000,Længden af {0} skal være mellem 1 og 1000
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,Søg efter noget
DocType: DocField,Print Hide,Print Skjul
apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,Indtast værdi
@@ -1708,8 +1715,7 @@ apps/frappe/frappe/model/document.py +564,Cannot change docstatus from 0 to 2,Ka
DocType: User Permission for Page and Report,Roles Permission,Roller Tilladelse
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Opdatering
DocType: Error Snapshot,Snapshot View,Snapshot View
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Gem nyhedsbrevet før afsendelse
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} år siden
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +101,Please save the Newsletter before sending,Gem nyhedsbrevet før afsendelse
apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Muligheder skal være en gyldig DocType for feltet {0} i række {1}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Rediger egenskaber
DocType: Patch Log,List of patches executed,Liste over patches henrettet
@@ -1727,7 +1733,7 @@ apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Opdatering af
DocType: Workflow State,trash,affald
DocType: System Settings,Older backups will be automatically deleted,Ældre sikkerhedskopier slettes automatisk
DocType: Event,Leave blank to repeat always,Lad stå tomt for altid at gentage
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +192,Confirmed,Bekræftet
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,Confirmed,Bekræftet
DocType: Event,Ends on,Slutter den
DocType: Payment Gateway,Gateway,Gateway
apps/frappe/frappe/public/js/frappe/form/linked_with.js +116,Not enough permission to see links,Ikke nok tilladelse til at se links
@@ -1758,7 +1764,6 @@ DocType: Contact,Purchase Manager,Indkøbschef
DocType: Custom Script,Sample,Prøve
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Ukategoriseret Tags
DocType: Event,Every Week,Hver uge
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,E-mail-konto er ikke konfigureret. Opret en ny e-mail-konto under Opsætning&gt; Email&gt; E-mail-konto
apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Klik her for at kontrollere dit forbrug eller opgradere til et højere plan
DocType: Custom Field,Is Mandatory Field,Er Obligatorisk felt
DocType: User,Website User,Website Bruger
@@ -1766,7 +1771,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +10,Not equals,F
DocType: Integration Request,Integration Request Service,Integration serviceanmodning
DocType: Website Script,Script to attach to all web pages.,Script til at knytte til alle websider.
DocType: Web Form,Allow Multiple,Tillad flere
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +40,Assign,Tildel
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +44,Assign,Tildel
apps/frappe/frappe/config/setup.py +102,Import / Export Data from .csv files.,Indlæs / udlæs data fra CSV-filer.
DocType: Auto Email Report,Only Send Records Updated in Last X Hours,"Send kun poster, der er opdateret i sidste X timer"
DocType: Communication,Feedback,Feedback
@@ -1846,7 +1851,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,Resterende
apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Gem før fastgørelse.
apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Tilføjet {0} ({1})
apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Standard tema er sat i {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},FieldType kan ikke ændres fra {0} til {1} i række {2}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +325,Fieldtype cannot be changed from {0} to {1} in row {2},FieldType kan ikke ændres fra {0} til {1} i række {2}
apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,Rolle Tilladelser
DocType: Help Article,Intermediate,Intermediate
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Kan Læs
@@ -1861,9 +1866,9 @@ apps/frappe/frappe/core/doctype/user/user.js +42,Refreshing...,Forfriskende ...
DocType: Event,Starts on,Starter på
DocType: System Settings,System Settings,Systemindstillinger
apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Session Start mislykkedes
apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Denne e-mail blev sendt til {0} og kopieres til {1}
apps/frappe/frappe/email/queue.py +470,This email was sent to {0} and copied to {1},Denne e-mail blev sendt til {0} og kopieres til {1}
DocType: Workflow State,th,th
apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Opret ny(t) {0}
apps/frappe/frappe/public/js/frappe/form/control.js +1517,Create a new {0},Opret ny(t) {0}
DocType: Email Rule,Is Spam,er spam
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Rapport {0}
apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Åben {0}
@@ -1875,12 +1880,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon a
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,Duplikér
DocType: Newsletter,Create and Send Newsletters,Opret og send nyhedsbreve
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date must be before To Date,Fra dato skal være før til dato
DocType: Address,Andaman and Nicobar Islands,Andaman og Nicobar Islands
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +216,GSuite Document,GSuite Dokument
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +29,Please specify which value field must be checked,Angiv venligst hvilken værdi felt skal kontrolleres
apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"""Parent"" signifies the parent table in which this row must be added",'Forælder' betegner den overordnede tabel hvor denne række skal tilføjes
DocType: Website Theme,Apply Style,Anvend Style
DocType: Feedback Request,Feedback Rating,Feedback Rating
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared With,Delt med
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Delt med
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Opsætning&gt; Brugerrettigheder
DocType: Help Category,Help Articles,Hjælp artikler
,Modules Setup,Opsætning af moduler
apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Type:
@@ -1911,7 +1918,7 @@ DocType: OAuth Client,App Client ID,App klient-id
DocType: Kanban Board,Kanban Board Name,Kanbantavlenavn
DocType: Email Alert Recipient,"Expression, Optional","Udtryk, Valgfri"
DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,Kopier og indsæt denne kode i og tøm Code.gs i dit projekt på script.google.com
apps/frappe/frappe/email/queue.py +456,This email was sent to {0},Denne e-mail blev sendt til {0}
apps/frappe/frappe/email/queue.py +472,This email was sent to {0},Denne e-mail blev sendt til {0}
DocType: DocField,Remember Last Selected Value,Husk Sidste valgte værdi
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +334,Please select Document Type,Vælg venligst dokumenttype
DocType: Email Account,Check this to pull emails from your mailbox,Markér dette for at trække e-mails fra din postkasse
@@ -1926,6 +1933,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,Muli
DocType: Feedback Trigger,Email Field,E-mail felt
apps/frappe/frappe/www/update-password.html +59,New Password Required.,Nyt kodeord er påkrævet.
apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} delte dette dokument med {1}
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Opsætning&gt; Bruger
DocType: Website Settings,Brand Image,Varemærkelogo
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Opsætning af øverste navigationslinje, sidefod og logo."
@@ -1993,8 +2001,8 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa
apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Kan ikke læse filformat for {0}
DocType: Auto Email Report,Filter Data,Filtreringsdata
apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Tilføj et tag
apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Vedhæft en fil først.
apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Der var nogle fejl indstilling navnet, skal du kontakte administratoren"
apps/frappe/frappe/public/js/frappe/form/control.js +1335,Please attach a file first.,Vedhæft en fil først.
apps/frappe/frappe/model/naming.py +174,"There were some errors setting the name, please contact the administrator","Der var nogle fejl indstilling navnet, skal du kontakte administratoren"
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Indkommende e-mail-konto er ikke korrekt
apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \
Please enter a valid email address so that we can get back.","Du synes at have skrevet dit navn i stedet for din email. \ Indtast venligst en gyldig emailadresse, så vi kan komme tilbage."
@@ -2046,7 +2054,6 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N
DocType: Custom DocPerm,Create,Opret
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Ugyldig Filter: {0}
DocType: Email Account,no failed attempts,ingen mislykkede forsøg
apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,Ingen standard adresse skabelon fundet. Opret venligst en ny fra Opsætning&gt; Udskrivning og branding&gt; Adresseskabelon.
DocType: GSuite Settings,refresh_token,refresh_token
DocType: Dropbox Settings,App Access Key,App Access Key
DocType: OAuth Bearer Token,Access Token,Access Token
@@ -2072,6 +2079,7 @@ apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl +
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Opret ny(t) {0}
apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,Ny e-mail-konto
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +28,Document Restored,Dokument gendannet
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +203,You can't set 'Options' for field {0},Du kan ikke angive &#39;Valg&#39; for felt {0}
apps/frappe/frappe/core/page/usage_info/usage_info.html +86,Size (MB),Størrelse (MB)
DocType: Help Article,Author,Forfatter
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +10,Resume Sending,Genoptag afsendelse
@@ -2081,7 +2089,7 @@ DocType: Print Settings,Monochrome,Monokrom
DocType: Address,Purchase User,Indkøbsbruger
DocType: Workflow,"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.","Forskellige &quot;stater&quot; dette dokument kan eksistere i. Ligesom &quot;Open&quot;, &quot;Afventer godkendelse&quot; osv"
apps/frappe/frappe/utils/verified_command.py +43,This link is invalid or expired. Please make sure you have pasted correctly.,Dette link er ugyldigt eller udløbet. Sørg for at du har indsat korrekt.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> er blevet afmeldt fra denne postliste.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +136,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> er blevet afmeldt fra denne postliste.
DocType: Web Page,Slideshow,Slideshow
apps/frappe/frappe/contacts/doctype/address_template/address_template.py +31,Default Address Template cannot be deleted,Standard-adresseskabelon kan ikke slettes
DocType: Contact,Maintenance Manager,Vedligeholdelse manager
@@ -2102,7 +2110,7 @@ apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a r
DocType: System Settings,Apply Strict User Permissions,Anvend strenge brugerrettigheder
DocType: DocField,Allow Bulk Edit,Tillad Bulk Edit
DocType: Blog Post,Blog Post,Blog-indlæg
apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Avanceret søgning
apps/frappe/frappe/public/js/frappe/form/control.js +1527,Advanced Search,Avanceret søgning
apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Vejledning til nulstilling af din adgangskode er sendt til din e-mail
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \
higher levels for field level permissions.","Niveau 0 er til dokumentniveau tilladelser, \ højere niveauer for tilladelser på feltniveau."
@@ -2127,13 +2135,13 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new re
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Søger
DocType: Currency,Fraction,Fraktion
DocType: LDAP Settings,LDAP First Name Field,LDAP Fornavn Field
apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Vælg fra eksisterende vedhæftede filer
apps/frappe/frappe/public/js/frappe/form/control.js +1085,Select from existing attachments,Vælg fra eksisterende vedhæftede filer
DocType: Custom Field,Field Description,Felt Beskrivelse
apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Navn ikke indtastet i prompt
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,E-mail indbakke
DocType: Auto Email Report,Filters Display,filtre Display
DocType: Website Theme,Top Bar Color,Top Bar Color
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Do you want to unsubscribe from this mailing list?,Ønsker du at afmelde denne mailingliste?
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Do you want to unsubscribe from this mailing list?,Ønsker du at afmelde denne mailingliste?
DocType: Address,Plant,Plant
apps/frappe/frappe/core/doctype/communication/communication.js +65,Reply All,Svar alle
DocType: DocType,Setup,Opsætning
@@ -2176,7 +2184,7 @@ DocType: User,Send Notifications for Transactions I Follow,Send meddelelser til
apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Kan ikke sætte Indsend, Annuller, Tekst uden Write"
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,"Er du sikker på, at du vil slette den vedhæftede fil?"
apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} <a href=""#Form/{0}/{1}"">{1}</a> is linked with {2} <a href=""#Form/{2}/{3}"">{3}</a>","Kan ikke slette eller annullere fordi {0} <a href=""#Form/{0}/{1}"">{1}</a> er forbundet med {2} <a href=""#Form/{2}/{3}"">{3}</a>"
apps/frappe/frappe/__init__.py +1062,Thank you,Tak
apps/frappe/frappe/__init__.py +1070,Thank you,Tak
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Gemmer
DocType: Print Settings,Print Style Preview,Print Style Eksempel
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
@@ -2191,7 +2199,7 @@ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Tilføj
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Linjenr.
,Role Permissions Manager,Rolleadministrator
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Navnet på det nye Print Format
apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Klar Attachment
apps/frappe/frappe/public/js/frappe/form/control.js +1087,Clear Attachment,Klar Attachment
apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Obligatorisk:
,User Permissions Manager,Brugeradministrator
DocType: Property Setter,New value to be set,Indtast ny værdi
@@ -2216,7 +2224,7 @@ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment C
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,Klare fejllogs
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,Vælg bedømmelse
DocType: Email Account,Notify if unreplied for (in mins),"Informer, hvis unreplied for (i minutter)"
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 dage siden
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +501,2 days ago,2 dage siden
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Kategorisér blogindlæg.
DocType: Workflow State,Time,Tid
DocType: DocField,Attach,Vedhæft
@@ -2232,6 +2240,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Sikkerhe
DocType: GSuite Templates,Template Name,Skabelonnavn
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,ny dokumenttype
DocType: Custom DocPerm,Read,Læs
DocType: Address,Chhattisgarh,Chhattisgarh
DocType: Role Permission for Page and Report,Role Permission for Page and Report,Rolle Tilladelse til side og rapport
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Juster Value
apps/frappe/frappe/www/update-password.html +14,Old Password,Gammel adgangskode
@@ -2278,7 +2287,7 @@ apps/frappe/frappe/public/js/frappe/roles_editor.js +28,Add all roles,Tilføj al
apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your email and message so that we \
can get back to you. Thanks!",Indtast venligst både din email og din meddelelse - så kommer vi tilbage til dig. Tak!
apps/frappe/frappe/email/smtp.py +170,Could not connect to outgoing email server,Kunne ikke forbinde til udgående e-mail-server
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +162,Thank you for your interest in subscribing to our updates,Tak for din interesse i at abonnere på vores opdateringer
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Thank you for your interest in subscribing to our updates,Tak for din interesse i at abonnere på vores opdateringer
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Custom Column,Tilpasset kolonne
DocType: Workflow State,resize-full,resize-fuld
DocType: Workflow State,off,af
@@ -2341,7 +2350,7 @@ DocType: Address,Telangana,Telangana
apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Standard for {0} skal være en mulighed
DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategori
DocType: User,User Image,Brugerbillede
apps/frappe/frappe/email/queue.py +289,Emails are muted,E-mails er slået fra
apps/frappe/frappe/email/queue.py +304,Emails are muted,E-mails er slået fra
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + Up
DocType: Website Theme,Heading Style,Overskrift Style
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +183,A new Project with this name will be created,En ny sag med dette navn vil blive oprettet
@@ -2497,7 +2506,7 @@ DocType: Stripe Settings,Secret Key,Secret Key
DocType: Email Alert,Send alert if this field's value changes,"Send besked, hvis denne feltets værdiændringer"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +108,Select a DocType to make a new format,Vælg en DocType at lave et nyt format
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +45,just now,lige nu
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +24,Apply,ansøge
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +24,Apply,Ansøg
DocType: Footer Item,Policy,Politik
apps/frappe/frappe/integrations/utils.py +76,{0} Settings not found,{0} Indstillinger ikke fundet
DocType: Module Def,Module Def,Modul Def
@@ -2558,7 +2567,6 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,klokke
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Fejl i Email Alert
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Del dette dokument med
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Opsætning&gt; Brugerrettigheder
apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,"{0} {1} kan ikke være en undernode, da den har undernoder"
DocType: Communication,Info,Info
apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Tilføj vedhæftet fil
@@ -2602,7 +2610,7 @@ apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,Print Form
DocType: Email Alert,Send days before or after the reference date,Send dage før eller efter skæringsdatoen
DocType: User,Allow user to login only after this hour (0-24),Tillad brugeren at logge først efter denne time (0-24)
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,Værdi
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +165,Click here to verify,Klik her for at verificere
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +166,Click here to verify,Klik her for at verificere
apps/frappe/frappe/utils/password_strength.py +178,Predictable substitutions like '@' instead of 'a' don't help very much.,Forudsigelige udskiftninger som &#39;@&#39; i stedet for &#39;a&#39; ikke hjælper meget.
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Tildelt af mig
apps/frappe/frappe/utils/data.py +462,Zero,Nul
@@ -2614,6 +2622,7 @@ DocType: ToDo,Priority,Prioritet
DocType: Email Queue,Unsubscribe Param,Afmeld Param
DocType: Auto Email Report,Weekly,Ugentlig
DocType: Communication,In Reply To,Som svar på
apps/frappe/frappe/contacts/doctype/address/address.py +189,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,Ingen standard adresse skabelon fundet. Opret venligst en ny fra Opsætning&gt; Udskrivning og branding&gt; Adresseskabelon.
DocType: DocType,Allow Import (via Data Import Tool),Tillad Import (via Dataimport Tool)
apps/frappe/frappe/templates/print_formats/standard_macros.html +30,Sr,Sr
DocType: DocField,Float,Float
@@ -2704,7 +2713,6 @@ apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Ugyldig grænse {0}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Liste en dokumenttype
DocType: Event,Ref Type,Ref Type
apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Hvis du uploader nye rekorder, forlader &quot;navn&quot; (ID) søjle tom."
DocType: Address,Chattisgarh,Chattisgarh
apps/frappe/frappe/config/core.py +47,Errors in Background Events,Fejl i baggrunds-begivenheder
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,Antal kolonner
DocType: Workflow State,Calendar,Kalender
@@ -2736,7 +2744,7 @@ apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Opgave
DocType: Integration Request,Remote,Fjern
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Beregn
apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Vælg venligst DocType først
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Bekræft din e-mail
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +174,Confirm Your Email,Bekræft din e-mail
apps/frappe/frappe/www/login.html +42,Or login with,Eller login med
DocType: Error Snapshot,Locals,Lokale
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Kommunikeres via {0} på {1}: {2}
@@ -2753,7 +2761,7 @@ DocType: Web Page,Web Page,Webside
DocType: Blog Category,Blogger,Blogger
apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},&#39;I Global søgning&#39; er ikke tilladt for type {0} i række {1}
apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Se liste
apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Dato skal være i format: {0}
apps/frappe/frappe/public/js/frappe/form/control.js +810,Date must be in format: {0},Dato skal være i format: {0}
DocType: Workflow,Don't Override Status,Må ikke Tilsidesæt status
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Giv en rating.
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Feedback Request
@@ -2786,7 +2794,7 @@ DocType: Custom DocPerm,Report,Rapport
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Beløb skal være større end 0.
apps/frappe/frappe/desk/reportview.py +107,{0} is saved,{0} er gemt
apps/frappe/frappe/core/doctype/user/user.py +327,User {0} cannot be renamed,Bruger {0} kan ikke omdøbes
apps/frappe/frappe/model/db_schema.py +107,Fieldname is limited to 64 characters ({0}),Feltnavn er begrænset til 64 tegn ({0})
apps/frappe/frappe/model/db_schema.py +108,Fieldname is limited to 64 characters ({0}),Feltnavn er begrænset til 64 tegn ({0})
apps/frappe/frappe/config/desk.py +59,Email Group List,E-mailgruppeliste
DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],Et ikon fil med Ico forlængelse. Skal være 16 x 16 px. Fremkommet ved en favicon generator. [favicon-generator.org]
DocType: Auto Email Report,Format,Format
@@ -2864,7 +2872,7 @@ DocType: Website Settings,Title Prefix,Titel Præfiks
DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Bemærkninger og bulk mails vil blive sendt fra denne udgående server.
DocType: Workflow State,cog,tandhjul
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on Migrate,Sync på Overfør
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Læser
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Currently Viewing,Læser
DocType: DocField,Default,Standard
apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} tilføjet
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Søg efter &#39;{0}&#39;
@@ -2924,7 +2932,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +771,Report was
DocType: Print Settings,Print Style,Print Style
apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,Ikke knyttet til nogen post
DocType: Custom DocPerm,Import,Import
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +178,Row {0}: Not allowed to enable Allow on Submit for standard fields,Række {0}: Ikke tilladt at aktivere Tillad på Send til standard felter
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +180,Row {0}: Not allowed to enable Allow on Submit for standard fields,Række {0}: Ikke tilladt at aktivere Tillad på Send til standard felter
apps/frappe/frappe/config/setup.py +100,Import / Export Data,Indlæs / udlæs data
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,Standard roller kan ikke omdøbes
DocType: Communication,To and CC,Til og CC
@@ -2950,7 +2958,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo
DocType: Auto Email Report,Filter Meta,Filter Meta
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Tekst, der skal vises for Link til webside, hvis denne form har en webside. Link rute automatisk genereret baseret på `page_name` og` parent_website_route`"
DocType: Feedback Request,Feedback Trigger,Feedback Trigger
apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Indstil {0} først
apps/frappe/frappe/public/js/frappe/form/control.js +1741,Please set {0} first,Indstil {0} først
DocType: Unhandled Email,Message-id,Message-id
DocType: Patch Log,Patch,Patch
DocType: Async Task,Failed,Mislykkedes


+ 72
- 64
frappe/translations/de.csv Datei anzeigen

@@ -14,8 +14,9 @@ apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,Si
DocType: User,Facebook Username,Facebook-Benutzername
DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Hinweis: Mehrere Sitzungen wird im Falle einer mobilen Gerät erlaubt sein
apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Aktiviert E-Mail-Posteingang für Benutzer {users}
apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Diese E-Mail kann nicht versendet werden. Sie haben das Sendelimit von {0} E-Mails für diesen Monat überschritten.
apps/frappe/frappe/email/queue.py +225,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Diese E-Mail kann nicht versendet werden. Sie haben das Sendelimit von {0} E-Mails für diesen Monat überschritten.
apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,{0} endgültig übertragen?
apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,Dateien herunterladen
DocType: Address,County,Landesbezirk/Gemeinde/Kreis
DocType: Workflow,If Checked workflow status will not override status in list view,Wenn diese Option aktiviert Workflow-Status wird nicht Status in der Listenansicht außer Kraft setzen
apps/frappe/frappe/client.py +280,Invalid file path: {0},Ungültiger Dateipfad: {0}
@@ -80,10 +81,10 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Einstellu
apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administrator hat sich angemeldet
DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontaktalternativen wie „Vertriebsanfrage"", ""Support-Anfrage“ usw., jede in einer neuen Zeile oder durch Kommas getrennt."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Herunterladen
apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Einfügen
apps/frappe/frappe/public/js/frappe/form/control.js +1979,Insert,Einfügen
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},{0} auswählen
DocType: Print Settings,Classic,Klassisch
DocType: Desktop Icon,Color,Farbe
DocType: DocField,Color,Farbe
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +54,For ranges,Für Bereiche
DocType: Workflow State,indent-right,Einzug rechts
DocType: Has Role,Has Role,hat Rolle
@@ -100,7 +101,7 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To impor
DocType: DocType,Default Print Format,Standarddruckformat
DocType: Workflow State,Tags,Schlagworte
apps/frappe/frappe/public/js/frappe/form/workflow.js +33,None: End of Workflow,Kein: Ende des Workflows
apps/frappe/frappe/model/db_schema.py +346,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Feld {0} kann in {1} nicht als einzigartig gesetzt werden, da es nicht-eindeutige Werte gibt"
apps/frappe/frappe/model/db_schema.py +347,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Feld {0} kann in {1} nicht als einzigartig gesetzt werden, da es nicht-eindeutige Werte gibt"
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +47,Document Types,Dokumententypen
DocType: Address,Jammu and Kashmir,Jammu und Kaschmir
DocType: Workflow,Workflow State Field,Workflow-Zustandsfeld
@@ -231,7 +232,7 @@ DocType: Workflow,Transition Rules,Übergangsbestimmungen
apps/frappe/frappe/core/doctype/report/report.js +11,Example:,Beispiel:
DocType: Workflow,Defines workflow states and rules for a document.,Definiert Workflow-Zustände und Regeln für ein Dokument.
DocType: Workflow State,Filter,Filter
apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Feldname {0} kann nicht Sonderzeichen wie {1} beinhalten
apps/frappe/frappe/model/db_schema.py +564,Fieldname {0} cannot have special characters like {1},Feldname {0} kann nicht Sonderzeichen wie {1} beinhalten
apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Aktualisieren viele Werte zu einer Zeit.
apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,"Fehler: Dokument wurde geändert, nachdem es geöffnet wurde"
apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} abgemeldet: {1}
@@ -260,7 +261,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Allgemein wi
apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Ihr Abonnement ist abgelaufen am {0}. Zum erneuern, {1}."
DocType: Workflow State,plus-sign,Pluszeichen
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Setup-bereits abgeschlossen
apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} ist nicht installiert
apps/frappe/frappe/__init__.py +897,App {0} is not installed,App {0} ist nicht installiert
DocType: Workflow State,Refresh,Aktualisieren
DocType: Event,Public,Öffentlich
apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Nichts anzuzeigen
@@ -339,7 +340,6 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Kopf bearbeiten
DocType: File,File URL,Datei-URL
DocType: Version,Table HTML,Tabelle HTML
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> Keine Ergebnisse für ' </p>
apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Abonnenten hinzufügen
apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Bevorstehenden Veranstaltungen für heute
DocType: Email Alert Recipient,Email By Document Field,E-Mail von Dokumentenfeld
@@ -404,7 +404,6 @@ DocType: Desktop Icon,Link,Verknüpfung
apps/frappe/frappe/utils/file_manager.py +96,No file attached,Keine Datei angehängt
DocType: Version,Version,Version
DocType: User,Fill Screen,Bildschirm ausfüllen
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,Bitte legen Sie das Standard-E-Mail-Konto von Setup&gt; Email&gt; E-Mail-Konto ein
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Der Bericht zu dieser Struktur kann aufgrund fehlender Daten nicht angezeigt werden. Am häufigsten passiert dieser Fehler, weil die Daten aufgrund fehlender Benutzerrechte ausgefiltert werden."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Wählen Sie Datei
apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Über einen Hochladevorgang bearbeiten
@@ -474,9 +473,9 @@ DocType: User,Reset Password Key,Passwortschlüssel zurücksetzen
DocType: Email Account,Enable Auto Reply,Automatische Rückantwort aktivieren
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Nicht Gesehen
DocType: Workflow State,zoom-in,vergrößern
apps/frappe/frappe/email/queue.py +219,Unsubscribe from this list,Abmelden von dieser Liste
apps/frappe/frappe/email/queue.py +234,Unsubscribe from this list,Abmelden von dieser Liste
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Reference DocType and Reference Name are required,Referenz-DocType und Referenzname benötigt
apps/frappe/frappe/utils/jinja.py +35,Syntax error in template,Syntaxfehler in der Vorlage
apps/frappe/frappe/utils/jinja.py +51,Syntax error in template,Syntaxfehler in der Vorlage
DocType: DocField,Width,Breite
DocType: Email Account,Notify if unreplied,"Benachrichtigen, wenn unbeantwortet"
DocType: System Settings,Minimum Password Score,Mindest-Passwort-Score
@@ -560,6 +559,7 @@ DocType: Custom Field,Select the label after which you want to insert new field.
DocType: User,Last Login,Letzte Anmeldung
apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Feldname wird in Zeile {0} benötigt
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Spalte
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,Bitte legen Sie das Standard-E-Mail-Konto von Setup&gt; Email&gt; E-Mail-Konto ein
DocType: Custom Field,Adds a custom field to a DocType,Fügt einem DocType ein benutzerdefiniertes Feld hinzu
DocType: File,Is Home Folder,Ist Ordner für Startseite
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} ist keine gültige E-Mail-Adresse
@@ -567,7 +567,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +733,Select atleast 1 reco
apps/frappe/frappe/core/doctype/has_role/has_role.py +13,User '{0}' already has the role '{1}',Benutzer &#39;{0}&#39; hat bereits die Rolle &#39;{1}&#39;
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,Hochladen und synchronisieren
apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Freigegeben für {0}
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe,Abmelden
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +132,Unsubscribe,Abmelden
DocType: Communication,Reference Name,Referenzname
apps/frappe/frappe/public/js/frappe/toolbar.js +30,Chat Support,Support per Chat
DocType: Error Snapshot,Exception,Ausnahme
@@ -585,7 +585,7 @@ DocType: Email Group,Newsletter Manager,Newsletter-Manager
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Option 1
apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} bis {1}
apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Melden von Fehlern während Anfragen.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} wurde zur E-Mail-Gruppe hinzugefügt.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +194,{0} has been successfully added to the Email Group.,{0} wurde zur E-Mail-Gruppe hinzugefügt.
DocType: Address,Uttar Pradesh,Uttar Pradesh
DocType: Address,Pondicherry,Pondicherry
apps/frappe/frappe/public/js/frappe/upload.js +364,Make file(s) private or public?,Make-Datei (en) privat oder öffentlich?
@@ -616,7 +616,7 @@ DocType: Portal Settings,Portal Settings,Portaleinstellungen
DocType: Web Page,0 is highest,Höchstwert ist 0
apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,"Sind Sie sicher, dass Sie diese Mitteilung an {0} neu verknüpfen wollen?"
apps/frappe/frappe/www/login.html +104,Send Password,Passwort senden
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +45,Attachments,Anhänge
DocType: Email Queue,Attachments,Anhänge
apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,"Sie verfügen nicht über die Berechtigungen, um auf dieses Dokument zuzugreifen"
DocType: Language,Language Name,Sprache Name
DocType: Email Group Member,Email Group Member,Eine E-Mail-Gruppe Mitglied
@@ -646,7 +646,7 @@ apps/frappe/frappe/utils/password_strength.py +78,Try to use a longer keyboard p
DocType: Feedback Trigger,Check Communication,Überprüfen Kommunikation
DocType: Address,Rajasthan,Rajasthan
apps/frappe/frappe/core/doctype/report/report.js +5,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.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Bitte bestätige deine Email Adresse
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +164,Please verify your Email Address,Bitte bestätige deine Email Adresse
apps/frappe/frappe/model/document.py +903,none of,keiner von
apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Kopie an mich senden
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Benutzerberechtigungen hochladen
@@ -657,7 +657,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Si
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanbantafel {0} ist nicht vorhanden.
apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} betrachten derzeit dieses Dokument
DocType: ToDo,Assigned By Full Name,Zugewiesen von Vollständiger Name
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} aktualisiert
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} aktualisiert
apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Bericht kann nicht für Einzel-Typen festgelegt werden
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,vor {0} Tag(en)
DocType: Email Account,Awaiting Password,In Erwartung Passwort
@@ -682,7 +682,7 @@ DocType: Workflow State,Stop,Anhalten
DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,"Mit der Seite, die geöffnet werden soll, verknüpfen. Leer lassen, wenn eine übergeordnete Gruppe daraus gemacht werden soll."
DocType: DocType,Is Single,Ist einzeln
apps/frappe/frappe/core/doctype/user/user.py +720,Sign Up is disabled,Registrieren ist deaktiviert
apps/frappe/frappe/email/queue.py +278,{0} has left the conversation in {1} {2},{0} hat die Unterhaltung verlassen in {1} {2}
apps/frappe/frappe/email/queue.py +293,{0} has left the conversation in {1} {2},{0} hat die Unterhaltung verlassen in {1} {2}
DocType: Blogger,User ID of a Blogger,Benutzer-ID eines Bloggers
apps/frappe/frappe/core/doctype/user/user.py +287,There should remain at least one System Manager,Es sollte mindestens ein System-Manager übrig bleiben
DocType: GSuite Settings,Authorization Code,Autorisierungscode
@@ -728,6 +728,7 @@ DocType: Event,Event,Ereignis
apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Am {0}, schrieb {1}:"
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"Standardfeld kann nicht gelöscht werden. Sie können es aber verbergen, wenn Sie wollen."
DocType: Top Bar Item,For top bar,Für die Kopfleiste
apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,Warteschlange für Backup. Sie erhalten eine E-Mail mit dem Download-Link
apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Konnte {0} nicht identifizieren
DocType: Address,Address,Adresse
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +3,Payment Failed,Bezahlung fehlgeschlagen
@@ -752,13 +753,13 @@ DocType: Web Form,Allow Print,Drucken erlauben
apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Keine Apps installiert
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Feld als Pflichtfeld markieren
DocType: Communication,Clicked,Angeklickt
apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Keine Berechtigung um '{0}' {1}
apps/frappe/frappe/public/js/legacy/form.js +950,No permission to '{0}' {1},Keine Berechtigung um '{0}' {1}
DocType: User,Google User ID,Google-Nutzer-ID
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Geplante senden
DocType: DocType,Track Seen,Spur gesehen
apps/frappe/frappe/desk/form/utils.py +55,This method can only be used to create a Comment,"Diese Methode kann nur verwendet werden, um einen Kommentar zu erstellen"
DocType: Event,orange,Orange
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,No {0} found,Kein(e) {0} gefunden
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +558,No {0} found,Kein(e) {0} gefunden
apps/frappe/frappe/config/setup.py +242,Add custom forms.,Benutzerdefinierte Formulare hinzufügen
apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} in {2}
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +419,submitted this document,Dieses Dokument eingereicht
@@ -788,6 +789,7 @@ DocType: Newsletter Email Group,Newsletter Email Group,Newsletter E-Mail-Gruppe
DocType: Dropbox Settings,Integrations,Einbindungen
DocType: DocField,Section Break,Abschnittswechsel
DocType: Address,Warehouse,Lager
DocType: Address,Other Territory,Anderes Territorium
,Messages,Mitteilungen
apps/frappe/frappe/desk/page/applications/applications.js +49,Portal,Portal
DocType: Email Account,Use Different Email Login ID,Verwenden Sie eine andere E-Mail-Login-ID
@@ -818,6 +820,7 @@ apps/frappe/frappe/utils/data.py +556,1 month ago,vor 1 Monat
DocType: Contact,User ID,Benutzer-ID
DocType: Communication,Sent,Gesendet
DocType: Address,Kerala,Kerala
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} Jahr (e) vor
DocType: File,Lft,lft
DocType: User,Simultaneous Sessions,Gleichzeitige Sessions
DocType: OAuth Client,Client Credentials,Client-Credentials
@@ -834,7 +837,7 @@ DocType: Email Queue,Unsubscribe Method,Unsubscribe-Methode
DocType: GSuite Templates,Related DocType,Ähnliche DocType
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Bearbeiten um Inhalte hinzuzufügen
apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Sprachenauswahl
apps/frappe/frappe/__init__.py +509,No permission for {0},Keine Berechtigung für {0}
apps/frappe/frappe/__init__.py +517,No permission for {0},Keine Berechtigung für {0}
DocType: DocType,Advanced,Fortgeschritten
apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Scheint API-Schlüssel oder API Secret ist falsch !!!
apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Referenz: {0} {1}
@@ -845,6 +848,7 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P
DocType: Email Account,Yahoo Mail,Yahoo Mail
apps/frappe/frappe/limits.py +75,Your subscription will expire tomorrow.,Ihr Abonnement wird morgen auslaufen.
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +483,Saved!,Gespeichert!
apps/frappe/frappe/public/js/frappe/form/control.js +729,{0} is not a valid hex color,{0} ist keine gültige Hex-Farbe
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,gnädige Frau
apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Aktualisiert {0}: {1}
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,Vorlage
@@ -872,7 +876,7 @@ DocType: Report,Disabled,Deaktiviert
DocType: Workflow State,eye-close,geschlossenen Auges
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth-Provider-Einstellungen
apps/frappe/frappe/config/setup.py +254,Applications,Anwendungen
apps/frappe/frappe/public/js/frappe/request.js +347,Report this issue,Diesen Fall melden
apps/frappe/frappe/public/js/frappe/request.js +349,Report this issue,Diesen Fall melden
apps/frappe/frappe/public/js/frappe/form/save.js +79,Name is required,Name ist erforderlich
DocType: Custom Script,Adds a custom script (client or server) to a DocType,Fügt ein benutzerdefiniertes Skript (Client oder Server) zu einem DocType hinzu
DocType: Address,City/Town,Ort/ Wohnort
@@ -966,6 +970,7 @@ DocType: Currency,**Currency** Master,**Währungs**-Stammdaten
DocType: Email Account,No of emails remaining to be synced,Keine E-Mails verbleibenden werden synchronisiert
apps/frappe/frappe/public/js/frappe/upload.js +203,Uploading,Hochladen
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,Bitte das Dokument vor der Zuweisung abspeichern
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,"Klicken Sie hier, um Bugs und Vorschläge zu veröffentlichen"
DocType: Website Settings,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."
DocType: Website Sidebar Item,Website Sidebar Item,Webseite Sidebar Artikel
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +44,{0} records updated,{0} Einträge aktualisiert
@@ -979,12 +984,10 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,beseitigen
apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Täglich wiederkehrende Veranstaltungen sollten am selben Tag enden.
DocType: Communication,User Tags,Schlagworte zum Benutzer
apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Bilder holen ..
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Setup&gt; Benutzer
DocType: Workflow State,download-alt,download-alt
apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Herunterladen der App {0}
DocType: Communication,Feedback Request,Feedback-Anfrage
apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,Folgende Felder fehlen:
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Experimental Feature,experimentelles Feature
apps/frappe/frappe/www/login.html +30,Sign in,Anmelden
DocType: Web Page,Main Section,Hauptbereich
DocType: Page,Icon,Symbol
@@ -1086,7 +1089,7 @@ DocType: Customize Form,Customize Form,Formular anpassen
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +104,Mandatory field: set role for,Pflichtfeld: set Rolle für
DocType: Currency,A symbol for this currency. For e.g. $,"Ein Symbol für diese Währung, z. B. €"
apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,Frappe-Rahmen
apps/frappe/frappe/model/naming.py +174,Name of {0} cannot be {1},Name von {0} kann nicht {1} sein
apps/frappe/frappe/model/naming.py +180,Name of {0} cannot be {1},Name von {0} kann nicht {1} sein
apps/frappe/frappe/config/setup.py +46,Show or hide modules globally.,Module allgemein anzeigen oder verbergen
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,Von-Datum
apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,Erfolg
@@ -1107,7 +1110,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +308,Add A New
apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js +3,See on Website,Siehe auf der Webseite
DocType: Workflow Transition,Next State,Nächster Status
DocType: User,Block Modules,Block-Module
apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Länge zurücksetzen auf {0} für '{1}' in '{2}'; Einstellen der Länge wie {3} bewirkt Abschneiden von Daten.
apps/frappe/frappe/model/db_schema.py +142,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Länge zurücksetzen auf {0} für '{1}' in '{2}'; Einstellen der Länge wie {3} bewirkt Abschneiden von Daten.
DocType: Print Format,Custom CSS,Benutzerdefiniertes CSS
apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Einen Kommentar hinzufügen
apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Ignoriert: {0} um {1}
@@ -1199,13 +1202,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,
DocType: Custom Role,Custom Role,benutzerdefinierte Rolle
apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Startseite/Test-Ordner 2
DocType: System Settings,Ignore User Permissions If Missing,"Benutzerberechtigungen ignorieren, wenn Folgendes fehlt"
apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Bitte das Dokument vor dem Hochladen abspeichern.
apps/frappe/frappe/public/js/frappe/form/control.js +1075,Please save the document before uploading.,Bitte das Dokument vor dem Hochladen abspeichern.
apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Passwort eingeben
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox-Zugangsdaten
apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Weiteren Kommentar hinzufügen
apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,DocType bearbeiten
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Unsubscribed von Newsletter
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,Unsubscribed from Newsletter,Unsubscribed von Newsletter
apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Falz muss vor einem Bereichsumbruch kommen
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,In Entwicklung
apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Zuletzt geändert durch
DocType: Workflow State,hand-down,Pfeil-nach-unten
DocType: Address,GST State,GST Staat
@@ -1226,6 +1230,7 @@ DocType: Workflow State,Tag,Schlagwort
DocType: Custom Script,Script,Skript
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Meine Einstellungen
DocType: Website Theme,Text Color,Textfarbe
apps/frappe/frappe/desk/page/backups/backups.py +72,Backup job is already queued. You will receive an email with the download link,Der Sicherungsauftrag ist bereits in der Warteschlange. Sie erhalten eine E-Mail mit dem Download-Link
DocType: Desktop Icon,Force Show,Kraft anzeigen
apps/frappe/frappe/auth.py +78,Invalid Request,Ungültige Anfrage
apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Dieses Formular hat keine Eingabefelder
@@ -1336,7 +1341,7 @@ DocType: DocField,Name,Name
apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,Sie haben den maximalen Speicherplatz {0} für Ihren Plan überschritten. {1}.
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Suche nach den docs
DocType: OAuth Authorization Code,Valid,Gültig
apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Verknüpfung öffnen
apps/frappe/frappe/public/js/frappe/form/control.js +1354,Open Link,Verknüpfung öffnen
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Ihre Sprache
apps/frappe/frappe/desk/form/load.py +46,Did not load,wurde nicht geladen
apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Zeile hinzufügen
@@ -1354,6 +1359,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Bestimmte Vorgänge, wie z.B. Rechnung, sollten nach dem Fertigstellen nicht mehr abgeändert werden. Diese befinden sich im Status ""Gebucht"". Sie können außerdem festlegen, wer Vorgänge buchen darf."
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Sie sind nicht berechtigt diesen Bericht zu exportieren
apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 Artikel ausgewählt
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> Keine Ergebnisse für ' </p>
DocType: Newsletter,Test Email Address,Test-E-Mail-Adresse
DocType: ToDo,Sender,Absender
DocType: GSuite Settings,Google Apps Script,Google Apps Script
@@ -1462,7 +1468,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Ple
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Lade Bericht
apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Ihr Abonnement wird heute auslaufen.
DocType: Page,Standard,Standard
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Datei anhängen
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,Datei anhängen
apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,Benachrichtigung zur Passwort-Aktualisierung
apps/frappe/frappe/desk/page/backups/backups.html +13,Size,Größe
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,Zuordnung vollständig
@@ -1492,7 +1498,7 @@ apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversat
apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Optionen nicht für das Verknüpfungs-Feld {0} gesetzt
DocType: Customize Form,"Must be of type ""Attach Image""",Muss vom Typ sein &quot;Bild anhängen&quot;
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Alles wiederufen
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},"""Nur lesen"" kann für das Feld {0} nicht rückgängig gemacht werden"
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +199,You cannot unset 'Read Only' for field {0},"""Nur lesen"" kann für das Feld {0} nicht rückgängig gemacht werden"
DocType: Auto Email Report,Zero means send records updated at anytime,"Null bedeutet dass, Sendeaufzeichnungen jederzeit aktualisiert werden"
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +22,Complete Setup,Einrichtung abschliessen
DocType: Workflow State,asterisk,Sternchen
@@ -1506,7 +1512,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +98,Week,Woche
DocType: Social Login Keys,Google,Google
DocType: Email Domain,Example Email Address,Beispiel E-Mail-Adresse
apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,Am Meisten verwendet
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Unsubscribe from Newsletter,Newsletter abbestellen
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe from Newsletter,Newsletter abbestellen
apps/frappe/frappe/www/login.html +101,Forgot Password,Passwort vergessen
DocType: Dropbox Settings,Backup Frequency,Backup-Frequenz
DocType: Workflow State,Inverse,Invertieren
@@ -1584,10 +1590,11 @@ apps/frappe/frappe/config/setup.py +209,"Actions for workflow (e.g. Approve, Can
DocType: Workflow State,flag,Kennzeichnen
apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +57,Feedback Request is already sent to user,Feedback-Anfrage ist bereits an Benutzer gesendet
DocType: Web Page,Text Align,Textausrichtung
apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Der Name darf keine Sonderzeichen wie {0} enthalten
apps/frappe/frappe/model/naming.py +185,Name cannot contain special characters like {0},Der Name darf keine Sonderzeichen wie {0} enthalten
DocType: Contact Us Settings,Forward To Email Address,Weiterleiten an E-Mail-Adresse
apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Alle Daten
apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Bezeichnungsfeld muss ein gültiger Feldname sein
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,E-Mail-Konto nicht eingerichtet. Bitte erstellen Sie ein neues E-Mail-Konto von Setup&gt; Email&gt; E-Mail-Konto
apps/frappe/frappe/config/core.py +7,Documents,Dokumente
DocType: Email Flag Queue,Is Completed,Abgeschlossen
apps/frappe/frappe/www/me.html +22,Edit Profile,Profil bearbeiten
@@ -1597,7 +1604,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi
myfield
eval:doc.myfield=='My Value'
eval:doc.age&gt;18","Dieses Feld wird nur angezeigt, wenn der Feldname hier definierten Wert hat oder die Regeln erfüllt sind (Beispiele): myfield eval: doc.myfield == &#39;My Value&#39; eval: doc.age&gt; 18"
apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Heute
apps/frappe/frappe/public/js/frappe/form/control.js +764,Today,Heute
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Sobald dies eingestellt wurde, haben die Benutzer nur Zugriff auf Dokumente (z. B. Blog-Eintrag), bei denen eine Verknüpfung existiert (z. B. Blogger)."
DocType: Error Log,Log of Scheduler Errors,Protokoll von Fehlermeldungen des Terminplaners
DocType: User,Bio,Lebenslauf
@@ -1656,7 +1663,7 @@ DocType: Print Format,Js,js
apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Druckformat auswählen
apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Kurze Tastatur-Muster sind leicht zu erraten
DocType: Portal Settings,Portal Menu,Portal-Menü
apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Länge von {0} sollte zwischen 1 und 1000
apps/frappe/frappe/model/db_schema.py +115,Length of {0} should be between 1 and 1000,Länge von {0} sollte zwischen 1 und 1000
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,Suchen Sie nach etwas
DocType: DocField,Print Hide,Beim Drucken verbergen
apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,Wert eingeben
@@ -1709,8 +1716,7 @@ apps/frappe/frappe/model/document.py +564,Cannot change docstatus from 0 to 2,Do
DocType: User Permission for Page and Report,Roles Permission,Rollen Permission
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Aktualisieren
DocType: Error Snapshot,Snapshot View,Schnappschuss-Ansicht
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Bitte den Newsletter vor dem Senden speichern
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} Jahr (e) vor
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +101,Please save the Newsletter before sending,Bitte den Newsletter vor dem Senden speichern
apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},"""Optionen"" muss ein gültiger DocType für Feld {0} in Zeile {1} sein"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Eigenschaften bearbeiten
DocType: Patch Log,List of patches executed,Angewandte Patches
@@ -1728,7 +1734,7 @@ apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Passwort-Aktua
DocType: Workflow State,trash,Ausschuss
DocType: System Settings,Older backups will be automatically deleted,Ältere Backups werden automatisch gelöscht
DocType: Event,Leave blank to repeat always,"Freilassen, um immer zu wiederholen"
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +192,Confirmed,Bestätigt
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,Confirmed,Bestätigt
DocType: Event,Ends on,Endet am
DocType: Payment Gateway,Gateway,Gateway
apps/frappe/frappe/public/js/frappe/form/linked_with.js +116,Not enough permission to see links,"Nicht genügend Erlaubnis, Links zu sehen"
@@ -1759,7 +1765,6 @@ DocType: Contact,Purchase Manager,Einkaufsleiter
DocType: Custom Script,Sample,Beispiel
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Uncategorised Stichworte
DocType: Event,Every Week,Wöchentlich
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,E-Mail-Konto nicht eingerichtet. Bitte erstellen Sie ein neues E-Mail-Konto von Setup&gt; Email&gt; E-Mail-Konto
apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,"Klicken Sie hier, um Ihre Nutzung zu überprüfen oder zu einem höheren Upgrade-Plan"
DocType: Custom Field,Is Mandatory Field,Ist Pflichtfeld
DocType: User,Website User,Webseitenbenutzer
@@ -1767,7 +1772,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +10,Not equals,i
DocType: Integration Request,Integration Request Service,Integration Anfrage Service
DocType: Website Script,Script to attach to all web pages.,"Skript, das allen Webseiten hinzugefügt wird."
DocType: Web Form,Allow Multiple,Mehrere zulassen
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +40,Assign,Zuweisen
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +44,Assign,Zuweisen
apps/frappe/frappe/config/setup.py +102,Import / Export Data from .csv files.,Import / Export von Daten aus .csv-Dateien
DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Nur Send Records aktualisiert in den letzten X Stunden
DocType: Communication,Feedback,Rückmeldung
@@ -1847,7 +1852,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,Verbleiben
apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Bitte vor dem Anhängen speichern
apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),{0} ({1}) hinzugefügt
apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Standard-Design wird in {0} eingestellt
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Feldtyp kann nicht von {0} nach {1} in Zeile {2} geändert werden
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +325,Fieldtype cannot be changed from {0} to {1} in row {2},Feldtyp kann nicht von {0} nach {1} in Zeile {2} geändert werden
apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,Rollenberechtigungen
DocType: Help Article,Intermediate,Mittlere
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Kann Lesen
@@ -1862,9 +1867,9 @@ apps/frappe/frappe/core/doctype/user/user.js +42,Refreshing...,Aktualisiere...
DocType: Event,Starts on,Beginnt am
DocType: System Settings,System Settings,Systemverwaltung
apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Sitzungsstart fehlgeschlagen
apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Diese E-Mail wurde an {0} gesendet und eine Kopie an {1}
apps/frappe/frappe/email/queue.py +470,This email was sent to {0} and copied to {1},Diese E-Mail wurde an {0} gesendet und eine Kopie an {1}
DocType: Workflow State,th,th
apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Neu erstellen: {0}
apps/frappe/frappe/public/js/frappe/form/control.js +1517,Create a new {0},Neu erstellen: {0}
DocType: Email Rule,Is Spam,ist Spam
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Bericht {0}
apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},{0} öffnen
@@ -1876,12 +1881,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon a
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,Duplizieren
DocType: Newsletter,Create and Send Newsletters,Newsletter erstellen und senden
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date must be before To Date,Von-Datum muss vor dem Bis-Datum liegen
DocType: Address,Andaman and Nicobar Islands,Andaman und Nikobaren
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +216,GSuite Document,GSuite Dokument
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +29,Please specify which value field must be checked,"Bitte angeben, welches Wertefeld überprüft werden muss"
apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"""Parent"" signifies the parent table in which this row must be added","""Übergeordnet"" bezeichnet die übergeordnete Tabelle, in der diese Zeile hinzugefügt werden muss"
DocType: Website Theme,Apply Style,Stil anwenden
DocType: Feedback Request,Feedback Rating,Feedback-Bewertung
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared With,Freigegeben für
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Freigegeben für
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Setup&gt; User Permissions Manager
DocType: Help Category,Help Articles,Hilfeartikel
,Modules Setup,Moduleinstellungen
apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Typ:
@@ -1912,7 +1919,7 @@ DocType: OAuth Client,App Client ID,App Client-ID
DocType: Kanban Board,Kanban Board Name,Kanban Board Name
DocType: Email Alert Recipient,"Expression, Optional","Ausdruck, Optional"
DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,Kopiere und füge diesen Code in und leere Code.gs in deinem Projekt auf script.google.com ein
apps/frappe/frappe/email/queue.py +456,This email was sent to {0},Diese E-Mail wurde gesendet an {0}
apps/frappe/frappe/email/queue.py +472,This email was sent to {0},Diese E-Mail wurde gesendet an {0}
DocType: DocField,Remember Last Selected Value,"Denken Sie daran, Zuletzt gewählte Wert"
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +334,Please select Document Type,Bitte wählen Sie Dokumenttyp
DocType: Email Account,Check this to pull emails from your mailbox,"Hier aktivieren, um E-Mails aus Ihrem Postfach abzurufen"
@@ -1927,6 +1934,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,Opti
DocType: Feedback Trigger,Email Field,E-Mail-Feld
apps/frappe/frappe/www/update-password.html +59,New Password Required.,Neues Passwort erforderlich.
apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} teilte dieses Dokument mit {1}
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Setup&gt; Benutzer
DocType: Website Settings,Brand Image,Markenzeichen
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Einrichten der oberen Navigationsleiste, der Fußzeile und des Logos"
@@ -1994,8 +2002,8 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa
apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Das Dateiformat kann nicht gelesen werden für {0}
DocType: Auto Email Report,Filter Data,Filterdaten
apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Eine Markierung hinzufügen
apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Bitte zuerst eine Datei anhängen.
apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator",Beim Setzen des Namens hat es einige Fehler gegeben. Kontaktieren Sie bitte Ihren Administrator
apps/frappe/frappe/public/js/frappe/form/control.js +1335,Please attach a file first.,Bitte zuerst eine Datei anhängen.
apps/frappe/frappe/model/naming.py +174,"There were some errors setting the name, please contact the administrator",Beim Setzen des Namens hat es einige Fehler gegeben. Kontaktieren Sie bitte Ihren Administrator
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Eingehende E-Mail-Konto nicht korrekt
apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \
Please enter a valid email address so that we can get back.","Du scheinst deinen Namen anstelle deiner E-Mail geschrieben zu haben. \ Bitte geben Sie eine gültige E-Mail-Adresse ein, damit wir uns bei Ihnen melden können."
@@ -2047,7 +2055,6 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N
DocType: Custom DocPerm,Create,Erstellen
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Ungültiger Filter: {0}
DocType: Email Account,no failed attempts,keine Fehlversuchen
apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,Keine Standard-Adressvorlage gefunden. Bitte erstellen Sie eine neue aus Setup&gt; Drucken und Branding&gt; Adressvorlage.
DocType: GSuite Settings,refresh_token,Refresh_token
DocType: Dropbox Settings,App Access Key,App Zugriffsschlüssel
DocType: OAuth Bearer Token,Access Token,Zugriffstoken
@@ -2073,6 +2080,7 @@ apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,"Strg
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},{0} neu erstellen
apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,Neues E-Mail-Konto
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +28,Document Restored,Dokument wiederhergestellt
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +203,You can't set 'Options' for field {0},Sie können &#39;Optionen&#39; nicht für das Feld {0} setzen
apps/frappe/frappe/core/page/usage_info/usage_info.html +86,Size (MB),Größe (MB)
DocType: Help Article,Author,Autor
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +10,Resume Sending,Senden fortsetzen
@@ -2082,7 +2090,7 @@ DocType: Print Settings,Monochrome,Monochrom
DocType: Address,Purchase User,Nutzer Einkauf
DocType: Workflow,"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.","Unterschiedliche Zustände, in denen das Dokument existieren kann, wie zum Beispiel „Offen“, „Genehmigung ausstehend“ usw."
apps/frappe/frappe/utils/verified_command.py +43,This link is invalid or expired. Please make sure you have pasted correctly.,"Diese Verknüpfung ist ungültig oder abgelaufen. Bitte sicher stellen, dass die Verknüpfung korrekt eingefügt wurde."
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> wurde von dieser Mailing - Liste erfolgreich abgemeldet.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +136,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> wurde von dieser Mailing - Liste erfolgreich abgemeldet.
DocType: Web Page,Slideshow,Diaschau
apps/frappe/frappe/contacts/doctype/address_template/address_template.py +31,Default Address Template cannot be deleted,Standard-Adressvorlage kann nicht gelöscht werden
DocType: Contact,Maintenance Manager,Leiter der Instandhaltung
@@ -2103,7 +2111,7 @@ apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a r
DocType: System Settings,Apply Strict User Permissions,Strenge Benutzerberechtigungen anwenden
DocType: DocField,Allow Bulk Edit,Bulk Bearbeiten zulassen
DocType: Blog Post,Blog Post,Blog-Eintrag
apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Erweiterte Suche
apps/frappe/frappe/public/js/frappe/form/control.js +1527,Advanced Search,Erweiterte Suche
apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Eine Anleitung zum Zurücksetzen des Passworts wurde an ihre E-Mail-Adresse verschickt
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \
higher levels for field level permissions.","Level 0 ist für Dokumentebene Berechtigungen, \ höhere Ebenen für Feldebene Berechtigungen."
@@ -2128,13 +2136,13 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new re
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Suchen
DocType: Currency,Fraction,Teil
DocType: LDAP Settings,LDAP First Name Field,LDAP-Feld Vorname
apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Aus bestehenden Anlagen auswählen
apps/frappe/frappe/public/js/frappe/form/control.js +1085,Select from existing attachments,Aus bestehenden Anlagen auswählen
DocType: Custom Field,Field Description,Feldbeschreibung
apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Name nicht über Eingabeaufforderung gesetzt
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,E-Mail-Posteingang
DocType: Auto Email Report,Filters Display,Filter anzeigen
DocType: Website Theme,Top Bar Color,Farbe der Kopfleiste
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Do you want to unsubscribe from this mailing list?,Wollen Sie von dieser Mailing-Liste abmelden?
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Do you want to unsubscribe from this mailing list?,Wollen Sie von dieser Mailing-Liste abmelden?
DocType: Address,Plant,Fabrik
apps/frappe/frappe/core/doctype/communication/communication.js +65,Reply All,Allen antworten
DocType: DocType,Setup,Einstellungen
@@ -2177,7 +2185,7 @@ DocType: User,Send Notifications for Transactions I Follow,"Benachrichtigungen f
apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Kann nicht auf ""Übertragen"", ""Stornieren"", ""Ändern"" eingestellt werden ohne ""Schreiben"""
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Soll die Anlage wirklich gelöscht werden?
apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} <a href=""#Form/{0}/{1}"">{1}</a> is linked with {2} <a href=""#Form/{2}/{3}"">{3}</a>","Kann nicht löschen oder zu stornieren , weil {0} <a href=""#Form/{0}/{1}"">{1}</a> mit verknüpft ist {2} <a href=""#Form/{2}/{3}"">{3}</a>"
apps/frappe/frappe/__init__.py +1062,Thank you,Danke
apps/frappe/frappe/__init__.py +1070,Thank you,Danke
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Speichere
DocType: Print Settings,Print Style Preview,Druckstil-Vorschau
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Ordner
@@ -2192,7 +2200,7 @@ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Benutzer
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Lf. Nr.
,Role Permissions Manager,Rollenberechtigungen-Manager
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Name des neuen Druckformats
apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Anlage beseitigen
apps/frappe/frappe/public/js/frappe/form/control.js +1087,Clear Attachment,Anlage beseitigen
apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Zwingend erforderlich:
,User Permissions Manager,Benutzerrechte-Manager
DocType: Property Setter,New value to be set,Neuer Wert muss gesetzt werden
@@ -2217,7 +2225,7 @@ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment C
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,Klare Fehlerprotokolle
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,Bitte wählen Sie eine Bewertung
DocType: Email Account,Notify if unreplied for (in mins),"Benachrichtigen, wenn unbeantwortet für (in Minuten)"
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,vor 2 Tagen
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +501,2 days ago,vor 2 Tagen
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Blog-Einträge kategorisieren
DocType: Workflow State,Time,Zeit
DocType: DocField,Attach,Anhängen
@@ -2233,6 +2241,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Sicherun
DocType: GSuite Templates,Template Name,Vorlagenname
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,neuer Dokumententyp
DocType: Custom DocPerm,Read,Lesen
DocType: Address,Chhattisgarh,Chhattisgarh
DocType: Role Permission for Page and Report,Role Permission for Page and Report,Rollengenehmigung Seite und Bericht
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Wert ausrichten
apps/frappe/frappe/www/update-password.html +14,Old Password,Altes Passwort
@@ -2279,7 +2288,7 @@ apps/frappe/frappe/public/js/frappe/roles_editor.js +28,Add all roles,Alle Rolle
apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your email and message so that we \
can get back to you. Thanks!","Bitte sowohl die E-Mail-Adresse als auch die Nachricht eingeben, damit wir antworten können. Danke!"
apps/frappe/frappe/email/smtp.py +170,Could not connect to outgoing email server,Konnte keine Verbindung zum Postausgangsserver herstellen
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +162,Thank you for your interest in subscribing to our updates,Vielen Dank für Ihr Interesse an einem Abonnement unserer Aktualisierungen
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Thank you for your interest in subscribing to our updates,Vielen Dank für Ihr Interesse an einem Abonnement unserer Aktualisierungen
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Custom Column,benutzerdefinierte Spalte
DocType: Workflow State,resize-full,anpassen-voll
DocType: Workflow State,off,aus
@@ -2342,7 +2351,7 @@ DocType: Address,Telangana,Telangana
apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Standard für {0} muss eine Auswahlmöglichkeit sein
DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategorie
DocType: User,User Image,Bild des Benutzers
apps/frappe/frappe/email/queue.py +289,Emails are muted,E-Mails sind stumm geschaltet
apps/frappe/frappe/email/queue.py +304,Emails are muted,E-Mails sind stumm geschaltet
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Strg + Auf
DocType: Website Theme,Heading Style,Gestaltung der Überschrift
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +183,A new Project with this name will be created,Ein neues Projekt mit diesem Namen wird erstellt
@@ -2559,7 +2568,6 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,Glocke
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Fehler in E-Mail-Benachrichtigung
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Dieses Dokument teilen mit
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Setup&gt; User Permissions Manager
apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,"{0} {1} kann kein Knotenpunkt sein, da Unterpunkte vorhanden sind"
DocType: Communication,Info,Info
apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Anhang hinzufügen
@@ -2614,7 +2622,7 @@ apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,Druckforma
DocType: Email Alert,Send days before or after the reference date,Tage vor oder nach dem Stichtag senden
DocType: User,Allow user to login only after this hour (0-24),"Benutzer erlauben, sich erst nach dieser Stunde anzumelden (0-24)"
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,Wert
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +165,Click here to verify,Hier klicken um die Richtigkeit zu bestätigen
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +166,Click here to verify,Hier klicken um die Richtigkeit zu bestätigen
apps/frappe/frappe/utils/password_strength.py +178,Predictable substitutions like '@' instead of 'a' don't help very much.,Vorhersehbare Substitutionen wie &#39;@&#39; anstelle von &#39;a&#39; helfen nicht sehr viel.
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Von mir zugewiesen
apps/frappe/frappe/utils/data.py +462,Zero,Null
@@ -2626,6 +2634,7 @@ DocType: ToDo,Priority,Priorität
DocType: Email Queue,Unsubscribe Param,Abmelden Param
DocType: Auto Email Report,Weekly,Wöchentlich
DocType: Communication,In Reply To,Als Antwort auf
apps/frappe/frappe/contacts/doctype/address/address.py +189,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,Keine Standard-Adressvorlage gefunden. Bitte erstellen Sie eine neue aus Setup&gt; Drucken und Branding&gt; Adressvorlage.
DocType: DocType,Allow Import (via Data Import Tool),Import erlauben (mit Datenimport-Werkzeug)
apps/frappe/frappe/templates/print_formats/standard_macros.html +30,Sr,Sr
DocType: DocField,Float,Wechselkurs
@@ -2716,7 +2725,6 @@ apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Ungültige Grenze {0}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Einen Dokumenttyp auflisten
DocType: Event,Ref Type,Ref-Typ
apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Wenn neue Datensätze hochgeladen werden, bitte die Spalte ""Bezeichnung"" (ID) leer lassen."
DocType: Address,Chattisgarh,Chattisgarh
apps/frappe/frappe/config/core.py +47,Errors in Background Events,Fehler in Hintergrundprozessen
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,Anzahl der Spalten
DocType: Workflow State,Calendar,Kalender
@@ -2748,7 +2756,7 @@ apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Zuordn
DocType: Integration Request,Remote,entfernt
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Berechnen
apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Bitte zuerst DocType auswählen
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Email-Adresse bestätigen
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +174,Confirm Your Email,Email-Adresse bestätigen
apps/frappe/frappe/www/login.html +42,Or login with,Oder melden Sie sich an mit
DocType: Error Snapshot,Locals,Einheimische
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Kommuniziert über {0} um {1}: {2}
@@ -2765,7 +2773,7 @@ DocType: Web Page,Web Page,Webseite
DocType: Blog Category,Blogger,Blogger
apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},&#39;In Globaler Suche&#39; nicht zulässig für Typ {0} in Zeile {1}
apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Liste anzeigen
apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Datum muss in folgendem Format vorliegen: {0}
apps/frappe/frappe/public/js/frappe/form/control.js +810,Date must be in format: {0},Datum muss in folgendem Format vorliegen: {0}
DocType: Workflow,Don't Override Status,Überschreiben Sie nicht-Status
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Bitte geben Sie eine Bewertung.
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Feedback-Anfrage
@@ -2798,7 +2806,7 @@ DocType: Custom DocPerm,Report,Bericht
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Betrag muss größer als 0 sein.
apps/frappe/frappe/desk/reportview.py +107,{0} is saved,{0} ist gespeichert
apps/frappe/frappe/core/doctype/user/user.py +327,User {0} cannot be renamed,Benutzer {0} kann nicht umbenannt werden
apps/frappe/frappe/model/db_schema.py +107,Fieldname is limited to 64 characters ({0}),Feldname ist auf 64 Zeichen ({0})
apps/frappe/frappe/model/db_schema.py +108,Fieldname is limited to 64 characters ({0}),Feldname ist auf 64 Zeichen ({0})
apps/frappe/frappe/config/desk.py +59,Email Group List,E-Mail-Gruppenliste
DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],Eine Icon-Datei mit ICO-Erweiterung. Sie sollte 16 x 16 pixel groß sein. Wurde unter Verwendung eines Favicon-Generators erstellt. [favicon-generator.org]
DocType: Auto Email Report,Format,Format
@@ -2876,7 +2884,7 @@ DocType: Website Settings,Title Prefix,Titel-Präfix
DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Hinweise und Massen-E-Mails werden von diesem Postausgangsserver versendet.
DocType: Workflow State,cog,cog
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on Migrate,Sync auf Migrate
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Gerade in Betrachtung
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Currently Viewing,Gerade in Betrachtung
DocType: DocField,Default,Standard
apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} hinzugefügt
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Suche nach &#39;{0}&#39;
@@ -2936,7 +2944,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +771,Report was
DocType: Print Settings,Print Style,Druckstil
apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,Nicht mit jedem Datensatz verknüpft
DocType: Custom DocPerm,Import,Import
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +178,Row {0}: Not allowed to enable Allow on Submit for standard fields,"Zeile {0}: Keine Berechtigung die Option ""Beim Übertragen erlauben"" für Standardfelder zu aktivieren"
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +180,Row {0}: Not allowed to enable Allow on Submit for standard fields,"Zeile {0}: Keine Berechtigung die Option ""Beim Übertragen erlauben"" für Standardfelder zu aktivieren"
apps/frappe/frappe/config/setup.py +100,Import / Export Data,Import / Export von Daten
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,Standardrollen kann nicht umbenannt werden
DocType: Communication,To and CC,An und CC
@@ -2962,7 +2970,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo
DocType: Auto Email Report,Filter Meta,Filter Meta
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Text, der für die Verknüpfung zur Webseite angezeigt wird, wenn dieses Formular eine Webseite hat. Verknüpfungs-Pfad wird basierend auf ""page_name"" und ""parent_website_route"" automatisch generiert"
DocType: Feedback Request,Feedback Trigger,Feedback-Trigger
apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Bitte zuerst {0} setzen
apps/frappe/frappe/public/js/frappe/form/control.js +1741,Please set {0} first,Bitte zuerst {0} setzen
DocType: Unhandled Email,Message-id,Nachrichten ID
DocType: Patch Log,Patch,Korrektur
DocType: Async Task,Failed,Fehlgeschlagen


+ 72
- 64
frappe/translations/el.csv Datei anzeigen

@@ -14,8 +14,9 @@ apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,Θ
DocType: User,Facebook Username,Όνομα χρήστη facebook
DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Σημείωση: Πολλαπλές συνεδρίες θα επιτρέπεται στην περίπτωση της κινητής συσκευής
apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Ενεργοποιήθηκε εισερχόμενα e-mail για το χρήστη {χρήστες}
apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Δεν μπορώ να στείλω αυτό το μήνυμα. Έχετε περάσει το όριο αποστολής του {0} emails για αυτό το μήνα.
apps/frappe/frappe/email/queue.py +225,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Δεν μπορώ να στείλω αυτό το μήνυμα. Έχετε περάσει το όριο αποστολής του {0} emails για αυτό το μήνα.
apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Μόνιμα Υποβολή {0} ;
apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,Λήψη αντιγράφων αρχείων
DocType: Address,County,Κομητεία
DocType: Workflow,If Checked workflow status will not override status in list view,"Αν είναι ελεγμένο για την κατάσταση της ροής εργασίας, δεν θα αντικαταστήσει την κατάσταση στην προβολή λίστας"
apps/frappe/frappe/client.py +280,Invalid file path: {0},Μη έγκυρη διαδρομή του αρχείου: {0}
@@ -80,10 +81,10 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Ρυθμ
apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Διαχειριστής Logged In
DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Επιλογές επικοινωνίας, όπως ""ερώτημα πωλήσεων, ερώτημα υποστήριξης"" κτλ το καθένα σε καινούρια γραμμή ή διαχωρισμένα με κόμματα."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Λήψη
apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Εισαγωγή
apps/frappe/frappe/public/js/frappe/form/control.js +1979,Insert,Εισαγωγή
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Επιλέξτε {0}
DocType: Print Settings,Classic,Κλασικό
DocType: Desktop Icon,Color,Χρώμα
DocType: DocField,Color,Χρώμα
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +54,For ranges,Για σειρές
DocType: Workflow State,indent-right,Εσοχή-δεξιά
DocType: Has Role,Has Role,έχει ρόλος
@@ -100,7 +101,7 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To impor
DocType: DocType,Default Print Format,Προεπιλογμένη μορφή εκτύπωσης
DocType: Workflow State,Tags,Ετικέτες
apps/frappe/frappe/public/js/frappe/form/workflow.js +33,None: End of Workflow,Κανένας: Τέλος της ροής εργασίας
apps/frappe/frappe/model/db_schema.py +346,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} πεδίο δεν μπορεί να οριστεί ως το μοναδικό στο {1}, καθώς υπάρχουν μη μοναδικές υπάρχουσες τιμές"
apps/frappe/frappe/model/db_schema.py +347,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} πεδίο δεν μπορεί να οριστεί ως το μοναδικό στο {1}, καθώς υπάρχουν μη μοναδικές υπάρχουσες τιμές"
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +47,Document Types,Τύποι εγγράφων
DocType: Address,Jammu and Kashmir,Τζαμού και Κασμίρ
DocType: Workflow,Workflow State Field,Πεδίο κατάστασης ροής εργασίας
@@ -231,7 +232,7 @@ DocType: Workflow,Transition Rules,Κανόνες μετάβασης
apps/frappe/frappe/core/doctype/report/report.js +11,Example:,Παράδειγμα:
DocType: Workflow,Defines workflow states and rules for a document.,Καθορίζει τις καταστάσεις ροής εργασίας και τους κανόνες για ένα έγγραφο.
DocType: Workflow State,Filter,φίλτρο
apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},"FIELDNAME {0} δεν μπορεί να έχει ειδικούς χαρακτήρες, όπως {1}"
apps/frappe/frappe/model/db_schema.py +564,Fieldname {0} cannot have special characters like {1},"FIELDNAME {0} δεν μπορεί να έχει ειδικούς χαρακτήρες, όπως {1}"
apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Ενημέρωση πολλές τιμές σε ένα χρόνο.
apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Σφάλμα: το έγγραφο έχει τροποποιηθεί αφού το έχετε ανοίξει
apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} αποσυνδεθεί: {1}
@@ -260,7 +261,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Πάρτε
apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Η συνδρομή σας έληξε στις {0}. Για την ανανέωση, {1}."
DocType: Workflow State,plus-sign,Plus-sign
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Ρύθμιση ήδη ολοκληρωθεί
apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} δεν είναι εγκατεστημένο
apps/frappe/frappe/__init__.py +897,App {0} is not installed,App {0} δεν είναι εγκατεστημένο
DocType: Workflow State,Refresh,Ανανέωση
DocType: Event,Public,Δημόσιο
apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Δεν έχει τίποτα να δείξει
@@ -339,7 +340,6 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Επεξεργασία επικεφαλίδας
DocType: File,File URL,Url αρχείου
DocType: Version,Table HTML,Πίνακας HTML
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> Δεν βρέθηκαν αποτελέσματα για ' </p>
apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Προσθήκη Συνδρομητές
apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Επερχόμενα συμβάντα για σήμερα
DocType: Email Alert Recipient,Email By Document Field,Email ανά πεδίο εγγράφου
@@ -404,7 +404,6 @@ DocType: Desktop Icon,Link,Σύνδεσμος
apps/frappe/frappe/utils/file_manager.py +96,No file attached,Δεν βρέθηκε συνημμένο αρχείο
DocType: Version,Version,Έκδοση
DocType: User,Fill Screen,Γέμισε την οθόνη
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,Ρυθμίστε τον προεπιλεγμένο λογαριασμό ηλεκτρονικού ταχυδρομείου από το Setup&gt; Email&gt; Email Account
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Δεν είναι δυνατή η προβολή αυτής της έκθεσης δέντρο, λόγω έλλειψης στοιχείων. Το πιο πιθανό, είναι να φιλτραριστεί λόγω δικαιώματα."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Επιλέξτε Αρχείο
apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Επεξεργασία μέσω Ανεβάστε
@@ -474,9 +473,9 @@ DocType: User,Reset Password Key,Επαναφορά κωδικού
DocType: Email Account,Enable Auto Reply,Ενεργοποίηση αυτόματης απάντησης
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Δεν φαίνεται
DocType: Workflow State,zoom-in,Zoom-in
apps/frappe/frappe/email/queue.py +219,Unsubscribe from this list,Διαγραφείτε από αυτή τη λίστα
apps/frappe/frappe/email/queue.py +234,Unsubscribe from this list,Διαγραφείτε από αυτή τη λίστα
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Reference DocType and Reference Name are required,DocType αναφοράς και Όνομα Αναφορά απαιτούνται
apps/frappe/frappe/utils/jinja.py +35,Syntax error in template,Συντακτικό λάθος στο πρότυπο
apps/frappe/frappe/utils/jinja.py +51,Syntax error in template,Συντακτικό λάθος στο πρότυπο
DocType: DocField,Width,Πλάτος
DocType: Email Account,Notify if unreplied,Ειδοποίηση αν μη απαντημένα
DocType: System Settings,Minimum Password Score,Ελάχιστη βαθμολογία κωδικού πρόσβασης
@@ -560,6 +559,7 @@ DocType: Custom Field,Select the label after which you want to insert new field.
DocType: User,Last Login,Τελευταία είσοδος
apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Το όνομα πεδίου είναι απαραίτητο στη γραμμή {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Στήλη
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,Ρυθμίστε τον προεπιλεγμένο λογαριασμό ηλεκτρονικού ταχυδρομείου από το Setup&gt; Email&gt; Email Account
DocType: Custom Field,Adds a custom field to a DocType,Προσθέτει ένα προσαρμοσμένο πεδίο σε έναν τύπο εγγράφου
DocType: File,Is Home Folder,Είναι Προσωπικόςφάκελος
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} δεν είναι μια έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου
@@ -567,7 +567,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +733,Select atleast 1 reco
apps/frappe/frappe/core/doctype/has_role/has_role.py +13,User '{0}' already has the role '{1}',Ο χρήστης &#39;{0}&#39; έχει ήδη το ρόλο &#39;{1}&#39;
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,Αποστολή στο διακομιστή και συγχρονισμός
apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Κοινή χρήση με {0}
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe,Κατάργηση
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +132,Unsubscribe,Κατάργηση
DocType: Communication,Reference Name,Όνομα αναφοράς
apps/frappe/frappe/public/js/frappe/toolbar.js +30,Chat Support,Chat Υποστήριξη
DocType: Error Snapshot,Exception,Εξαίρεση
@@ -585,7 +585,7 @@ DocType: Email Group,Newsletter Manager,Ενημερωτικό Δελτίο Δι
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Επιλογή 1
apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} έως {1}
apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Συνδεθείτε σφάλματος κατά τη διάρκεια αιτήσεων.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} έχει προστεθεί με επιτυχία τον Όμιλο Email.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +194,{0} has been successfully added to the Email Group.,{0} έχει προστεθεί με επιτυχία τον Όμιλο Email.
DocType: Address,Uttar Pradesh,Uttar Pradesh
DocType: Address,Pondicherry,Pondicherry
apps/frappe/frappe/public/js/frappe/upload.js +364,Make file(s) private or public?,Κάντε το αρχείο (ες) ιδιωτικό ή δημόσιο;
@@ -616,7 +616,7 @@ DocType: Portal Settings,Portal Settings,portal Ρυθμίσεις
DocType: Web Page,0 is highest,0 Είναι η υψηλότερη
apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Είστε σίγουροι ότι θέλετε να επανασύνδεση αυτή την ανακοίνωση σε {0};
apps/frappe/frappe/www/login.html +104,Send Password,Αποστολή Κωδικού
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +45,Attachments,Συνημμένα
DocType: Email Queue,Attachments,Συνημμένα
apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,Δεν έχετε τα δικαιώματα πρόσβασης σε αυτό το έγγραφο
DocType: Language,Language Name,γλώσσα Όνομα
DocType: Email Group Member,Email Group Member,Στείλτε e-mail Μέλος του Ομίλου
@@ -646,7 +646,7 @@ apps/frappe/frappe/utils/password_strength.py +78,Try to use a longer keyboard p
DocType: Feedback Trigger,Check Communication,Ελέγξτε Επικοινωνία
DocType: Address,Rajasthan,Ρατζαστάν
apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Οι εκθέσεις του δημιουργού εκθέσεων είναι διαχειρίσημες απευθείας από τον δημιουργό εκθέσεων. Δεν υπάρχει τίποτα να κάνετε.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Παρακαλούμε επιβεβαιώστε σας Διεύθυνση E-mail
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +164,Please verify your Email Address,Παρακαλούμε επιβεβαιώστε σας Διεύθυνση E-mail
apps/frappe/frappe/model/document.py +903,none of,Κανένας από
apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Στείλτε μου ένα αντίγραφο
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Αποστολή στο διακομιστή των δικαιωμάτων χρήστη
@@ -657,7 +657,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Si
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban Διοικητικό {0} δεν υπάρχει.
apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} Αυτή τη στιγμή βλέπετε αυτό το έγγραφο
DocType: ToDo,Assigned By Full Name,Ανατεθεί Με Ονοματεπώνυμο
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} Ενημερώθηκε
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} Ενημερώθηκε
apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Η έκθεση δεν μπορεί να οριστεί για μοναδιαίους τύπους
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} ημέρες πριν
DocType: Email Account,Awaiting Password,Εν αναμονή Κωδικός
@@ -682,7 +682,7 @@ DocType: Workflow State,Stop,Διακοπή
DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Σύνδεσμο προς τη σελίδα που θέλετε να ανοίξετε. Αφήστε κενό αν θέλετε να γίνει μια ομάδα γονέων κάνουν.
DocType: DocType,Is Single,Είναι μονό
apps/frappe/frappe/core/doctype/user/user.py +720,Sign Up is disabled,Εγγραφείτε είναι απενεργοποιημένη
apps/frappe/frappe/email/queue.py +278,{0} has left the conversation in {1} {2},{0} έχει αποχώρησε από τη συζήτηση στο {1} {2}
apps/frappe/frappe/email/queue.py +293,{0} has left the conversation in {1} {2},{0} έχει αποχώρησε από τη συζήτηση στο {1} {2}
DocType: Blogger,User ID of a Blogger,Αναγνωριστικό χρήστη του blogger
apps/frappe/frappe/core/doctype/user/user.py +287,There should remain at least one System Manager,Θα πρέπει να παραμείνει τουλάχιστον ένας διαχειριστής συστήματος
DocType: GSuite Settings,Authorization Code,Κωδικός Εξουσιοδότησης
@@ -728,6 +728,7 @@ DocType: Event,Event,Συμβάν
apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Στις {0}, ο {1} έγραψε:"
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"Δεν μπορείτε να διαγράψετε τυπικό πεδίο. Μπορείτε να το κρύψει, αν θέλετε"
DocType: Top Bar Item,For top bar,Για την μπάρα κορυφής
apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,Ρυθμιζόμενη για δημιουργία αντιγράφων ασφαλείας. Θα λάβετε ένα μήνυμα ηλεκτρονικού ταχυδρομείου με το σύνδεσμο λήψης
apps/frappe/frappe/utils/bot.py +148,Could not identify {0},δεν μπόρεσε να εντοπίσει {0}
DocType: Address,Address,Διεύθυνση
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +3,Payment Failed,Η πληρωμή απέτυχε
@@ -752,13 +753,13 @@ DocType: Web Form,Allow Print,Επιτρέψτε Εκτύπωση
apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Δεν υπάρχουν εγκατεστημένες εφαρμογές
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Σημειώστε το πεδίο ως υποχρεωτικό
DocType: Communication,Clicked,Έγινε κλικ
apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Δεν έχετε άδεια για '{0} ' {1}
apps/frappe/frappe/public/js/legacy/form.js +950,No permission to '{0}' {1},Δεν έχετε άδεια για '{0} ' {1}
DocType: User,Google User ID,ID χρήστη google
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Προγραμματισμένη για να στείλετε
DocType: DocType,Track Seen,Track Seen
apps/frappe/frappe/desk/form/utils.py +55,This method can only be used to create a Comment,Αυτή η μέθοδος μπορεί να χρησιμοποιηθεί μόνο για να δημιουργήσει ένα σχόλιο
DocType: Event,orange,πορτοκάλι
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,No {0} found,Όχι {0} βρέθηκαν
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +558,No {0} found,Όχι {0} βρέθηκαν
apps/frappe/frappe/config/setup.py +242,Add custom forms.,Προσθέστε προσαρμοσμένες φόρμες.
apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} στο {2}
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +419,submitted this document,υπέβαλε αυτό το έγγραφο
@@ -788,6 +789,7 @@ DocType: Newsletter Email Group,Newsletter Email Group,Ενημερωτικό Δ
DocType: Dropbox Settings,Integrations,Ενσωματώσεις
DocType: DocField,Section Break,Αλλαγή τμήματος
DocType: Address,Warehouse,Αποθήκη
DocType: Address,Other Territory,Άλλα εδάφη
,Messages,Μηνύματα
apps/frappe/frappe/desk/page/applications/applications.js +49,Portal,Πύλη
DocType: Email Account,Use Different Email Login ID,Χρησιμοποιήστε διαφορετικό αναγνωριστικό σύνδεσης ηλεκτρονικού ταχυδρομείου
@@ -818,6 +820,7 @@ apps/frappe/frappe/utils/data.py +556,1 month ago,Πριν από 1 μηνά
DocType: Contact,User ID,ID χρήστη
DocType: Communication,Sent,Εστάλη
DocType: Address,Kerala,Κεράλα
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} χρόνια πριν
DocType: File,Lft,Lft
DocType: User,Simultaneous Sessions,ταυτόχρονη Συνεδρίες
DocType: OAuth Client,Client Credentials,Διαπιστευτήρια πελάτη
@@ -834,7 +837,7 @@ DocType: Email Queue,Unsubscribe Method,Μέθοδος Διαγραφή
DocType: GSuite Templates,Related DocType,Σχετικό πρότυπο DocType
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Επεξεργασία για να προσθέσετε περιεχόμενο
apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Επιλέξτε Γλώσσες
apps/frappe/frappe/__init__.py +509,No permission for {0},Δεν άδεια για {0}
apps/frappe/frappe/__init__.py +517,No permission for {0},Δεν άδεια για {0}
DocType: DocType,Advanced,Για προχωρημένους
apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Φαίνεται κλειδί API ή API μυστικό είναι λάθος !!!
apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Παραπομπή: {0} {1}
@@ -845,6 +848,7 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P
DocType: Email Account,Yahoo Mail,Yahoo mail
apps/frappe/frappe/limits.py +75,Your subscription will expire tomorrow.,Η συνδρομή σας θα λήξει αύριο.
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +483,Saved!,Αποθηκεύτηκε!
apps/frappe/frappe/public/js/frappe/form/control.js +729,{0} is not a valid hex color,Το {0} δεν είναι έγκυρο hex χρώμα
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,Κυρία
apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Ενημερώθηκε {0}: {1}
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,Κύρια εγγραφή
@@ -872,7 +876,7 @@ DocType: Report,Disabled,Απενεργοποιημένο
DocType: Workflow State,eye-close,Eye-close
DocType: OAuth Provider Settings,OAuth Provider Settings,Ρυθμίσεις Provider OAuth
apps/frappe/frappe/config/setup.py +254,Applications,Εφαρμογές
apps/frappe/frappe/public/js/frappe/request.js +347,Report this issue,Αναφορά αυτού του ζητήματος
apps/frappe/frappe/public/js/frappe/request.js +349,Report this issue,Αναφορά αυτού του ζητήματος
apps/frappe/frappe/public/js/frappe/form/save.js +79,Name is required,Το όνομα είναι απαραίτητο
DocType: Custom Script,Adds a custom script (client or server) to a DocType,Προσθέτει ένα προσαρμοσμένο script (client ή server) σε έναν τύπο εγγράφου
DocType: Address,City/Town,Πόλη / χωριό
@@ -966,6 +970,7 @@ DocType: Currency,**Currency** Master,Κύρια εγγραφή ** νομίσμ
DocType: Email Account,No of emails remaining to be synced,Αριθμός μηνυμάτων ηλεκτρονικού ταχυδρομείου που απομένουν να συγχρονιστεί
apps/frappe/frappe/public/js/frappe/upload.js +203,Uploading,Μεταφόρτωση
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,Παρακαλούμε να αποθηκεύσετε το έγγραφο πριν από το διορισμό
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,Κάντε κλικ εδώ για να δημοσιεύσετε σφάλματα και προτάσεις
DocType: Website Settings,Address and other legal information you may want to put in the footer.,Η διεύθυνση και άλλα νομικά στοιχεία που μπορεί να θέλετε να βάλετε στο υποσέλιδο.
DocType: Website Sidebar Item,Website Sidebar Item,Ιστοσελίδα Sidebar Στοιχείο
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +44,{0} records updated,{0} αρχεία ενημερώνονται
@@ -979,12 +984,10 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,σαφής
apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Τα καθημερινά συμβάντα θα πρέπει να ολοκληρώνονται την ίδια ημέρα.
DocType: Communication,User Tags,Ετικέτες χρηστών
apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Λήψη εικόνων ..
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Ρύθμιση&gt; Χρήστης
DocType: Workflow State,download-alt,Download-alt
apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Λήψη App {0}
DocType: Communication,Feedback Request,feedback Αίτηση
apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,Ακόλουθα πεδία λείπουν:
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Experimental Feature,πειραματικό Χαρακτηριστικό
apps/frappe/frappe/www/login.html +30,Sign in,Συνδεθείτε
DocType: Web Page,Main Section,Κύριο τμήμα
DocType: Page,Icon,Εικονίδιο
@@ -1086,7 +1089,7 @@ DocType: Customize Form,Customize Form,Προσαρμογή φόρμας
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +104,Mandatory field: set role for,Υποχρεωτικό πεδίο: που ο ρόλος για
DocType: Currency,A symbol for this currency. For e.g. $,Ένα σύμβολο για το νόμισμα αυτό. Για παράδειγμα $
apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,Frappe framework
apps/frappe/frappe/model/naming.py +174,Name of {0} cannot be {1},Το όνομα του {0} δεν μπορεί να είναι {1}
apps/frappe/frappe/model/naming.py +180,Name of {0} cannot be {1},Το όνομα του {0} δεν μπορεί να είναι {1}
apps/frappe/frappe/config/setup.py +46,Show or hide modules globally.,Εμφάνιση ή απόκρυψη λειτουργικών μονάδων παντού.
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,Από ημερομηνία
apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,Επιτυχία
@@ -1107,7 +1110,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +308,Add A New
apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js +3,See on Website,Δείτε την ιστοσελίδα
DocType: Workflow Transition,Next State,Επόμενη κατάσταση
DocType: User,Block Modules,Αποκλεισμός Ενότητες
apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Επαναφορά μήκος σε {0} για &#39;{1}&#39; σε &#39;{2}&#39;? Ρύθμιση του μήκους ως {3} θα προκαλέσει αποκοπή των δεδομένων.
apps/frappe/frappe/model/db_schema.py +142,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Επαναφορά μήκος σε {0} για &#39;{1}&#39; σε &#39;{2}&#39;? Ρύθμιση του μήκους ως {3} θα προκαλέσει αποκοπή των δεδομένων.
DocType: Print Format,Custom CSS,Προσαρμοσμένο css
apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Προσθέστε ένα σχόλιο
apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Αγνοείται: {0} έως {1}
@@ -1199,13 +1202,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,
DocType: Custom Role,Custom Role,Προσαρμοσμένη ρόλος
apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Αρχική Σελίδα / φάκελο Test 2
DocType: System Settings,Ignore User Permissions If Missing,Αγνοήστε τα δικαιώματα των χρηστών σε περίπτωση μη ύπαρξης
apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Παρακαλώ να αποθηκεύσετε το έγγραφο πριν από την αποστολή.
apps/frappe/frappe/public/js/frappe/form/control.js +1075,Please save the document before uploading.,Παρακαλώ να αποθηκεύσετε το έγγραφο πριν από την αποστολή.
apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Εισάγετε τον κωδικό σας
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox access secret
apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Προσθέστε άλλο ένα σχόλιο
apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Επεξεργασία DocType
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Αδιάθετες από Ενημερωτικό Δελτίο
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,Unsubscribed from Newsletter,Αδιάθετες από Ενημερωτικό Δελτίο
apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Διπλώστε πρέπει να προηγηθεί μια αλλαγή ενότητας
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,Υπό ανάπτυξη
apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Τροποποιήθηκε τελευταία από
DocType: Workflow State,hand-down,Hand-down
DocType: Address,GST State,Κράτος GST
@@ -1226,6 +1230,7 @@ DocType: Workflow State,Tag,Ετικέτα
DocType: Custom Script,Script,Script
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Οι ρυθμίσεις μου
DocType: Website Theme,Text Color,Χρώμα κειμένου
apps/frappe/frappe/desk/page/backups/backups.py +72,Backup job is already queued. You will receive an email with the download link,Η εργασία δημιουργίας αντιγράφων ασφαλείας βρίσκεται ήδη σε αναμονή. Θα λάβετε ένα μήνυμα ηλεκτρονικού ταχυδρομείου με το σύνδεσμο λήψης
DocType: Desktop Icon,Force Show,δύναμη Εμφάνιση
apps/frappe/frappe/auth.py +78,Invalid Request,Άκυρη αίτηση
apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Αυτή η φόρμα δεν έχει καμία είσοδο
@@ -1336,7 +1341,7 @@ DocType: DocField,Name,Όνομα
apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,Έχετε υπερβεί το μέγιστο χώρο του {0} για το σχέδιό σας. {1}.
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Αναζήτηση στα έγγραφα
DocType: OAuth Authorization Code,Valid,Έγκυρος
apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Άνοιγμα συνδέσμου
apps/frappe/frappe/public/js/frappe/form/control.js +1354,Open Link,Άνοιγμα συνδέσμου
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Η γλώσσα σου
apps/frappe/frappe/desk/form/load.py +46,Did not load,Δεν έγινε η φόρτωση
apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Προσθήκη Row
@@ -1354,6 +1359,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Ορισμένα έγγραφα, όπως ένα τιμολόγιο, δεν θα πρέπει να αλλάξουν αφού οριστικοποιηθούν. Η τελική κατάσταση των εν λόγω εγγράφων ονομάζεται υποβεβλημένο. Μπορείτε να ορίσετε ποιοι ρόλοι έχουν δικαίωμα υποβολής."
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Δεν επιτρέπεται να εξάγουν αυτή την έκθεση
apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 επιλεγμένο στοιχείο
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> Δεν βρέθηκαν αποτελέσματα για ' </p>
DocType: Newsletter,Test Email Address,Δοκιμή διεύθυνση ηλεκτρονικού ταχυδρομείου
DocType: ToDo,Sender,Αποστολέας
DocType: GSuite Settings,Google Apps Script,Σενάριο Google Apps
@@ -1462,7 +1468,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Ple
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Φόρτωση Έκθεση
apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Η συνδρομή σας θα λήξει σήμερα.
DocType: Page,Standard,Πρότυπο
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Επισυνάψετε Το Αρχείο
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,Επισυνάψετε Το Αρχείο
apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,Ειδοποίηση ενημέρωσης κωδικού
apps/frappe/frappe/desk/page/backups/backups.html +13,Size,Μέγεθος
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,Εκχώρηση Ολοκλήρωση
@@ -1492,7 +1498,7 @@ apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversat
apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Οι επιλογές δεν έχουν οριστεί για το πεδίο συνδέσμου {0}
DocType: Customize Form,"Must be of type ""Attach Image""",Πρέπει να είναι του τύπου &quot;Επισύναψη εικόνας&quot;
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Κατάργηση επιλογής όλων
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Δεν μπορείτε να επανέρχεστε «μόνο για ανάγνωση» για το πεδίο {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +199,You cannot unset 'Read Only' for field {0},Δεν μπορείτε να επανέρχεστε «μόνο για ανάγνωση» για το πεδίο {0}
DocType: Auto Email Report,Zero means send records updated at anytime,Το μηδέν σημαίνει αποστολή ενημερωμένων εκδόσεων ανά πάσα στιγμή
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +22,Complete Setup,Ολοκλήρωση της εγκατάστασης
DocType: Workflow State,asterisk,Αστερίσκος
@@ -1506,7 +1512,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +98,Week,Εβδο
DocType: Social Login Keys,Google,Google
DocType: Email Domain,Example Email Address,Παράδειγμα διεύθυνση ηλεκτρονικού ταχυδρομείου
apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,Περισσότερο χρησιμοποιημένο
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Unsubscribe from Newsletter,Διαγραφή από το ενημερωτικό δελτίο
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe from Newsletter,Διαγραφή από το ενημερωτικό δελτίο
apps/frappe/frappe/www/login.html +101,Forgot Password,Ξεχάσατε τον κωδικό
DocType: Dropbox Settings,Backup Frequency,εφεδρική συχνότητα
DocType: Workflow State,Inverse,Αντίστροφος
@@ -1584,10 +1590,11 @@ apps/frappe/frappe/config/setup.py +209,"Actions for workflow (e.g. Approve, Can
DocType: Workflow State,flag,Σημαία
apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +57,Feedback Request is already sent to user,Σχόλια Αίτημα έχει ήδη σταλεί στο χρήστη
DocType: Web Page,Text Align,Στίχοιση κειμένου
apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},"Όνομα δεν μπορεί να περιέχει ειδικούς χαρακτήρες, όπως {0}"
apps/frappe/frappe/model/naming.py +185,Name cannot contain special characters like {0},"Όνομα δεν μπορεί να περιέχει ειδικούς χαρακτήρες, όπως {0}"
DocType: Contact Us Settings,Forward To Email Address,Προώθηση στις διευθύνσεις ηλεκτρονικού ταχυδρομείου
apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Εμφάνιση όλων των δεδομένων
apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Το πεδίο τίτλου πρέπει να είναι ένα έγκυρο όνομα πεδίου
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,Δεν έχει ρυθμιστεί ο λογαριασμός ηλεκτρονικού ταχυδρομείου. Δημιουργήστε ένα νέο λογαριασμό ηλεκτρονικού ταχυδρομείου από το Setup&gt; Email&gt; Email Account
apps/frappe/frappe/config/core.py +7,Documents,Έγγραφα
DocType: Email Flag Queue,Is Completed,έχει ολοκληρωθεί
apps/frappe/frappe/www/me.html +22,Edit Profile,Επεξεργασία προφίλ
@@ -1597,7 +1604,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi
myfield
eval:doc.myfield=='My Value'
eval:doc.age&gt;18",Αυτό το πεδίο θα εμφανιστεί μόνο αν η ΌνομαΠεδίου ορίζεται εδώ έχει αξία ή οι κανόνες είναι αλήθεια (παραδείγματα): myfield eval: doc.myfield == «Αξία μου» eval: doc.age&gt; 18
apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Σήμερα
apps/frappe/frappe/public/js/frappe/form/control.js +764,Today,Σήμερα
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Αφού οριστεί, οι χρήστες θα έχουν πρόσβαση μονο σε έγγραφα ( π.Χ. Blog post), όπου υπάρχει σύνδεσμος ( π.Χ. Blogger ) ."
DocType: Error Log,Log of Scheduler Errors,Αρχείο καταγραφής των σφαλμάτων του scheduler
DocType: User,Bio,Βιογραφικό
@@ -1656,7 +1663,7 @@ DocType: Print Format,Js,Js
apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Επιλέξτε μορφοποίηση εκτύπωσης
apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Σύντομη μοτίβα πληκτρολόγιο είναι εύκολο να μαντέψει
DocType: Portal Settings,Portal Menu,Μενού portal
apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Μήκος {0} πρέπει να είναι μεταξύ 1 και 1000
apps/frappe/frappe/model/db_schema.py +115,Length of {0} should be between 1 and 1000,Μήκος {0} πρέπει να είναι μεταξύ 1 και 1000
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,Αναζήτηση για τίποτα
DocType: DocField,Print Hide,Απόκρυψη εκτύπωσης
apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,Εισάγετε τιμή
@@ -1709,8 +1716,7 @@ apps/frappe/frappe/model/document.py +564,Cannot change docstatus from 0 to 2,Δ
DocType: User Permission for Page and Report,Roles Permission,Ρόλοι άδεια
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Ενημέρωση
DocType: Error Snapshot,Snapshot View,Προβολή στιγμιότυπου
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Παρακαλώ αποθηκεύστε το ενημερωτικό δελτίο πριν από την αποστολή
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} χρόνια πριν
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +101,Please save the Newsletter before sending,Παρακαλώ αποθηκεύστε το ενημερωτικό δελτίο πριν από την αποστολή
apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Οι επιλογές θα πρέπει να είναι ένας έγκυρος τύπος εγγράφου για το πεδίο {0} στη γραμμή {1}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Επεξεργασία ιδιοτήτων
DocType: Patch Log,List of patches executed,Λίστα των δημοσιεύσεων του φόρουμ της ιστοσελίδας.
@@ -1728,7 +1734,7 @@ apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Ενημέρω
DocType: Workflow State,trash,Σκουπίδια
DocType: System Settings,Older backups will be automatically deleted,Παλαιότερα αντίγραφα ασφαλείας θα διαγραφούν αυτόματα
DocType: Event,Leave blank to repeat always,Αφήστε το κενό για να επαναλαμβάνεται πάντα
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +192,Confirmed,Επιβεβαιώθηκε
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,Confirmed,Επιβεβαιώθηκε
DocType: Event,Ends on,Λήγει στις
DocType: Payment Gateway,Gateway,Είσοδος πυλών
apps/frappe/frappe/public/js/frappe/form/linked_with.js +116,Not enough permission to see links,Δεν υπάρχει αρκετή άδεια για να δείτε συνδέσμους
@@ -1759,7 +1765,6 @@ DocType: Contact,Purchase Manager,¥πεύθυνος αγορών
DocType: Custom Script,Sample,Δείγμα
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Uncategorised Ετικέτες
DocType: Event,Every Week,Κάθε εβδομάδα
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,Ο λογαριασμός ηλεκτρονικού ταχυδρομείου δεν έχει ρυθμιστεί. Δημιουργήστε ένα νέο λογαριασμό ηλεκτρονικού ταχυδρομείου από το Setup&gt; Email&gt; Email Account
apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Κάντε κλικ εδώ για να ελέγξετε τη χρήση σας ή να αναβαθμίσετε σε ένα υψηλότερο σχέδιο
DocType: Custom Field,Is Mandatory Field,Είναι υποχρεωτικό πεδίο
DocType: User,Website User,Χρήστης ιστοτόπου
@@ -1767,7 +1772,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +10,Not equals,
DocType: Integration Request,Integration Request Service,Υπηρεσία Αίτηση Ολοκλήρωσης
DocType: Website Script,Script to attach to all web pages.,Script για να επισυνάψετε σε όλες τις ιστοσελίδες.
DocType: Web Form,Allow Multiple,Επιτρέπονται πολλαπλά
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +40,Assign,Αντιστοίχιση
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +44,Assign,Αντιστοίχιση
apps/frappe/frappe/config/setup.py +102,Import / Export Data from .csv files.,Εισαγωγή / εξαγωγή δεδομένων από .Csv αρχεία.
DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Μόνο Αποστολή αρχείων ενημερώθηκε στις τελευταίες Χ ώρες
DocType: Communication,Feedback,Ανατροφοδότηση
@@ -1847,7 +1852,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,Παραμ
apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Παρακαλούμε να αποθηκεύσετε πριν από την τοποθέτηση.
apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Προστέθηκε {0} ({1})
apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Προεπιλεγμένο θέμα βρίσκεται σε {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Ο τύπος πεδίου δεν μπορεί να αλλάξει από {0} σε {1} στη γραμμή {2}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +325,Fieldtype cannot be changed from {0} to {1} in row {2},Ο τύπος πεδίου δεν μπορεί να αλλάξει από {0} σε {1} στη γραμμή {2}
apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,Δικαιώματα ρόλου
DocType: Help Article,Intermediate,Ενδιάμεσος
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Μπορεί Διαβάστε
@@ -1862,9 +1867,9 @@ apps/frappe/frappe/core/doctype/user/user.js +42,Refreshing...,Γίνεται α
DocType: Event,Starts on,Ξεκινά στις
DocType: System Settings,System Settings,Ρυθμίσεις συστήματος
apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Η έναρξη της περιόδου σύνδεσης απέτυχε
apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Αυτό το μήνυμα ηλεκτρονικού ταχυδρομείου εστάλη σε {0} και να αντιγραφεί {1}
apps/frappe/frappe/email/queue.py +470,This email was sent to {0} and copied to {1},Αυτό το μήνυμα ηλεκτρονικού ταχυδρομείου εστάλη σε {0} και να αντιγραφεί {1}
DocType: Workflow State,th,Th
apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Δημιουργία νέου {0}
apps/frappe/frappe/public/js/frappe/form/control.js +1517,Create a new {0},Δημιουργία νέου {0}
DocType: Email Rule,Is Spam,είναι Spam
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Έκθεση {0}
apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Άνοιγμα {0}
@@ -1876,12 +1881,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon a
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,Διπλότυπο
DocType: Newsletter,Create and Send Newsletters,Δημιουργήστε και στείλτε τα ενημερωτικά δελτία
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date must be before To Date,Το πεδίο Από την ημερομηνία πρέπει να είναι προγενέστερο του έως ημερομηνία
DocType: Address,Andaman and Nicobar Islands,Νήσων Ανταμάν και Νικομπάρ
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +216,GSuite Document,Έγγραφο GSuite
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +29,Please specify which value field must be checked,Παρακαλώ ορίστε ποιο πεδίο τιμής πρέπει να ελεγχθεί
apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"""Parent"" signifies the parent table in which this row must be added",H λέξη «γονικός» δηλώνει το γονικό πίνακα στον οποίο πρέπει να προστεθεί αυτή η σειρά
DocType: Website Theme,Apply Style,Εφαρμογή στυλ
DocType: Feedback Request,Feedback Rating,feedback Αξιολόγηση
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared With,Κοινόχρηστο Με
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Κοινόχρηστο Με
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Εγκατάσταση&gt; Διαχείριση δικαιωμάτων χρηστών
DocType: Help Category,Help Articles,άρθρα Βοήθειας
,Modules Setup,Ρυθμίσεις λειτουργικής μονάδας
apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Τύπος:
@@ -1912,7 +1919,7 @@ DocType: OAuth Client,App Client ID,App ID πελάτη
DocType: Kanban Board,Kanban Board Name,Όνομα Kanban Διοικητικό Συμβούλιο
DocType: Email Alert Recipient,"Expression, Optional","Έκφραση, προαιρετικά"
DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,Αντιγράψτε και επικολλήστε αυτόν τον κώδικα και αδειάστε το Code.gs στο έργο σας στο script.google.com
apps/frappe/frappe/email/queue.py +456,This email was sent to {0},Αυτό το μήνυμα ηλεκτρονικού ταχυδρομείου στάλθηκε στο {0}
apps/frappe/frappe/email/queue.py +472,This email was sent to {0},Αυτό το μήνυμα ηλεκτρονικού ταχυδρομείου στάλθηκε στο {0}
DocType: DocField,Remember Last Selected Value,Θυμηθείτε Τελευταία επιλεγμένη τιμή
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +334,Please select Document Type,Επιλέξτε τύπο εγγράφου
DocType: Email Account,Check this to pull emails from your mailbox,Επιλέξτε αυτό για να γίνει λήψη των μηνυμάτων από το γραμματοκιβώτιό σας
@@ -1927,6 +1934,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,Επ
DocType: Feedback Trigger,Email Field,email πεδίο
apps/frappe/frappe/www/update-password.html +59,New Password Required.,Απαιτείται νέος κωδικός πρόσβασης.
apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} Μοιράστηκε αυτό το έγγραφο με {1}
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Ρύθμιση&gt; Χρήστης
DocType: Website Settings,Brand Image,brand Εικόνα
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Ρύθμιση της επάνω γραμμή πλοήγησης, του υποσέλιδου και του λογότυπου."
@@ -1994,8 +2002,8 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa
apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Δεν είναι δυνατή η ανάγνωση της μορφής αρχείου για το {0}
DocType: Auto Email Report,Filter Data,Φιλτράρετε δεδομένα
apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Προσθήκη ετικέτας
apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Παρακαλώ επισυνάψτε ένα αρχείο πρώτα.
apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Εμφανίστηκαν κάποια σφάλματα κατά τη ρύθμιση του ονόματος, Παρακαλώ επικοινωνήστε με το διαχειριστή"
apps/frappe/frappe/public/js/frappe/form/control.js +1335,Please attach a file first.,Παρακαλώ επισυνάψτε ένα αρχείο πρώτα.
apps/frappe/frappe/model/naming.py +174,"There were some errors setting the name, please contact the administrator","Εμφανίστηκαν κάποια σφάλματα κατά τη ρύθμιση του ονόματος, Παρακαλώ επικοινωνήστε με το διαχειριστή"
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Ο εισερχόμενος λογαριασμός ηλεκτρονικού ταχυδρομείου δεν είναι σωστός
apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \
Please enter a valid email address so that we can get back.",Φαίνεται ότι έχετε γράψει το όνομά σας αντί για το email σας. \ Παρακαλώ εισάγετε μια έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου για να μπορέσουμε να επιστρέψουμε.
@@ -2047,7 +2055,6 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,
DocType: Custom DocPerm,Create,Δημιουργία
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Άκυρα Φίλτρο : {0}
DocType: Email Account,no failed attempts,Δεν αποτυχημένες προσπάθειες
apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,Δεν βρέθηκε προεπιλεγμένο πρότυπο διευθύνσεων. Δημιουργήστε ένα νέο από το Setup&gt; Printing and Branding&gt; Template Address.
DocType: GSuite Settings,refresh_token,Refresh_token
DocType: Dropbox Settings,App Access Key,App Κλειδί Πρόσβασης
DocType: OAuth Bearer Token,Access Token,Η πρόσβαση παραχωρήθηκε
@@ -2073,6 +2080,7 @@ apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl +
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Κάντε μια νέα {0}
apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,Νέος λογαριασμός ηλεκτρονικού ταχυδρομείου
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +28,Document Restored,Επισκευή εγγράφου
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +203,You can't set 'Options' for field {0},Δεν μπορείτε να ορίσετε «Επιλογές» για το πεδίο {0}
apps/frappe/frappe/core/page/usage_info/usage_info.html +86,Size (MB),Μέγεθος (ΜΒ)
DocType: Help Article,Author,Συγγραφέας
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +10,Resume Sending,συνεχίσετε την αποστολή
@@ -2082,7 +2090,7 @@ DocType: Print Settings,Monochrome,Μονόχρωμος
DocType: Address,Purchase User,Χρήστης αγορών
DocType: Workflow,"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.","Διαφορετικές ""καταστάσεις"" που αυτό το έγγραφο μπορεί να υπάρχει ως ""ανοιχτό"", ""σε εκκρεμότητα έγκρισης"", κλπ."
apps/frappe/frappe/utils/verified_command.py +43,This link is invalid or expired. Please make sure you have pasted correctly.,Αυτή η σύνδεση είναι άκυρη ή έχει λήξει. Παρακαλώ βεβαιωθείτε ότι έχετε επικολληθεί σωστά.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> έχει καταργήσει την εγγραφή σας με επιτυχία από αυτή τη λίστα.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +136,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> έχει καταργήσει την εγγραφή σας με επιτυχία από αυτή τη λίστα.
DocType: Web Page,Slideshow,Παρουσίαση
apps/frappe/frappe/contacts/doctype/address_template/address_template.py +31,Default Address Template cannot be deleted,Το προεπιλεγμένο πρότυπο διεύθυνσης δεν μπορεί να διαγραφεί
DocType: Contact,Maintenance Manager,Υπεύθυνος συντήρησης
@@ -2103,7 +2111,7 @@ apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a r
DocType: System Settings,Apply Strict User Permissions,Εφαρμόστε αυστηρά δικαιώματα χρήστη
DocType: DocField,Allow Bulk Edit,Να επιτρέπεται η μαζική επεξεργασία
DocType: Blog Post,Blog Post,Δημοσίευση blog
apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Σύνθετη αναζήτηση
apps/frappe/frappe/public/js/frappe/form/control.js +1527,Advanced Search,Σύνθετη αναζήτηση
apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Οι οδηγίες επαναφοράς κωδικού πρόσβασης έχουν αποσταλθεί στο e-mail σας
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \
higher levels for field level permissions.","Το επίπεδο 0 είναι για δικαιώματα επιπέδου εγγράφου, \ υψηλότερα επίπεδα για δικαιώματα πεδίου."
@@ -2128,13 +2136,13 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new re
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Ερευνητικός
DocType: Currency,Fraction,Κλάσμα
DocType: LDAP Settings,LDAP First Name Field,LDAP Όνομα πεδίο
apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Επιλέξτε από τα υπάρχοντα συνημμένα
apps/frappe/frappe/public/js/frappe/form/control.js +1085,Select from existing attachments,Επιλέξτε από τα υπάρχοντα συνημμένα
DocType: Custom Field,Field Description,Περιγραφή πεδίου
apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Το όνομα δεν έχει οριστεί μέσω διαλόγου προτροπής
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,Εισερχόμενα e-mail
DocType: Auto Email Report,Filters Display,φίλτρα οθόνης
DocType: Website Theme,Top Bar Color,Top Bar Χρώμα
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Do you want to unsubscribe from this mailing list?,Θέλετε να διαγραφείτε από αυτή τη λίστα;
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Do you want to unsubscribe from this mailing list?,Θέλετε να διαγραφείτε από αυτή τη λίστα;
DocType: Address,Plant,Βιομηχανικός εξοπλισμός
apps/frappe/frappe/core/doctype/communication/communication.js +65,Reply All,Απάντηση σε όλους
DocType: DocType,Setup,Εγκατάσταση
@@ -2177,7 +2185,7 @@ DocType: User,Send Notifications for Transactions I Follow,Αποστολή ει
apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Δεν είναι δυνατή η ρύθμιση υποβολή, ακύρωση, τροποποίηση χωρίς εγγραφή"
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Είστε σίγουροι ότι θέλετε να διαγράψετε το συνημμένο;
apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} <a href=""#Form/{0}/{1}"">{1}</a> is linked with {2} <a href=""#Form/{2}/{3}"">{3}</a>","Δεν μπορείτε να διαγράψετε ή να ακυρώσετε επειδή {0} <a href=""#Form/{0}/{1}"">{1}</a> συνδέεται με {2} <a href=""#Form/{2}/{3}"">{3}</a>"
apps/frappe/frappe/__init__.py +1062,Thank you,Σας ευχαριστούμε
apps/frappe/frappe/__init__.py +1070,Thank you,Σας ευχαριστούμε
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Οικονομία
DocType: Print Settings,Print Style Preview,Προεπισκόπηση στυλ εκτύπωσης
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
@@ -2192,7 +2200,7 @@ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Προσ
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Sr Όχι
,Role Permissions Manager,Διαχειριστής δικαιωμάτων ρόλου
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Όνομα της νέας μορφοποίησης εκτύπωσης
apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,σαφές Συνημμένο
apps/frappe/frappe/public/js/frappe/form/control.js +1087,Clear Attachment,σαφές Συνημμένο
apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Υποχρεωτικό:
,User Permissions Manager,Διαχειριστής δικαιωμάτων χρήστη
DocType: Property Setter,New value to be set,Νέα τιμή που θα καθοριστεί
@@ -2217,7 +2225,7 @@ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment C
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,Σαφή αρχεία καταγραφής των σφαλμάτων
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,Επιλέξτε βαθμολογία
DocType: Email Account,Notify if unreplied for (in mins),Ειδοποίηση αν μη απαντημένα για (σε λεπτά)
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 μέρες πριν
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +501,2 days ago,2 μέρες πριν
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Κατηγοριοποίηση δημοσιεύσεων blog.
DocType: Workflow State,Time,Χρόνος
DocType: DocField,Attach,Επισυνάψτε
@@ -2233,6 +2241,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,αντι
DocType: GSuite Templates,Template Name,Όνομα προτύπου
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,νέος τύπος του εγγράφου
DocType: Custom DocPerm,Read,Ανάγνωση
DocType: Address,Chhattisgarh,Chhattisgarh
DocType: Role Permission for Page and Report,Role Permission for Page and Report,Άδεια ρόλο για την σελίδα και Έκθεση
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Ευθυγράμμιση Αξία
apps/frappe/frappe/www/update-password.html +14,Old Password,Παλιός κωδικός
@@ -2280,7 +2289,7 @@ apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your ema
can get back to you. Thanks!","Παρακαλώ εισάγετε τόσο το email όσο και το μήνυμά σας έτσι ώστε να \
μπορέσουμε να επικοινωνήσουμε μαζί σας. Ευχαριστώ!"
apps/frappe/frappe/email/smtp.py +170,Could not connect to outgoing email server,Δεν ήταν δυνατή η σύνδεση με το διακομιστή εξερχόμενων e-mail
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +162,Thank you for your interest in subscribing to our updates,Σας ευχαριστούμε για το ενδιαφέρον σας για την εγγραφή στις ενημερώσεις μας
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Thank you for your interest in subscribing to our updates,Σας ευχαριστούμε για το ενδιαφέρον σας για την εγγραφή στις ενημερώσεις μας
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Custom Column,Προσαρμοσμένη στήλη
DocType: Workflow State,resize-full,Resize-full
DocType: Workflow State,off,Μακριά από
@@ -2343,7 +2352,7 @@ DocType: Address,Telangana,Telangana
apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Προεπιλογή για {0} πρέπει να είναι μια επιλογή
DocType: Tag Doc Category,Tag Doc Category,Tag Doc Κατηγορία
DocType: User,User Image,Εικόνα εικόνα
apps/frappe/frappe/email/queue.py +289,Emails are muted,Τα email είναι σε σίγαση
apps/frappe/frappe/email/queue.py +304,Emails are muted,Τα email είναι σε σίγαση
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + Up
DocType: Website Theme,Heading Style,Ονομασία Στυλ
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +183,A new Project with this name will be created,Θα δημιουργηθεί ένα νέο έργο με αυτό το όνομα
@@ -2560,7 +2569,6 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,Κουδούνι
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Σφάλμα στην ειδοποίηση μέσω ηλεκτρονικού ταχυδρομείου
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Μοιραστείτε αυτό το έγγραφο με
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Εγκατάσταση&gt; Διαχείριση δικαιωμάτων χρηστών
apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,"{0} {1} Δεν μπορεί να είναι ένας κόμβος φύλλο, δεδομένου ότι έχει θυγατρικούς κόμβους"
DocType: Communication,Info,Πληροφορίες
apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Προσθήκη συνημμένου
@@ -2615,7 +2623,7 @@ apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,Η μορ
DocType: Email Alert,Send days before or after the reference date,Αποστολή ημερών πριν ή μετά την ημερομηνία αναφοράς
DocType: User,Allow user to login only after this hour (0-24),Επίτρεψε στο χρήστη να συνδεθεί μόνο μετά από αυτή την ώρα (0-24)
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,Αξία
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +165,Click here to verify,Κάντε κλικ εδώ για να επιβεβαιώσετε
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +166,Click here to verify,Κάντε κλικ εδώ για να επιβεβαιώσετε
apps/frappe/frappe/utils/password_strength.py +178,Predictable substitutions like '@' instead of 'a' don't help very much.,"Προβλέψιμη αντικαταστάσεις, όπως &#39;@&#39; αντί του «α» δεν βοηθούν πολύ."
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Ανάθεση από Μένα
apps/frappe/frappe/utils/data.py +462,Zero,Μηδέν
@@ -2627,6 +2635,7 @@ DocType: ToDo,Priority,Προτεραιότητα
DocType: Email Queue,Unsubscribe Param,Διαγραφή Param
DocType: Auto Email Report,Weekly,Εβδομαδιαίος
DocType: Communication,In Reply To,Σε απάντηση της
apps/frappe/frappe/contacts/doctype/address/address.py +189,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,Δεν βρέθηκε προεπιλεγμένο πρότυπο διεύθυνσης. Δημιουργήστε ένα νέο από το Setup&gt; Printing and Branding&gt; Template Address.
DocType: DocType,Allow Import (via Data Import Tool),Αφήστε Εισαγωγή (μέσω του εργαλείου εισαγωγής δεδομένων)
apps/frappe/frappe/templates/print_formats/standard_macros.html +30,Sr,Sr
DocType: DocField,Float,Κινητής υποδιαστολής
@@ -2717,7 +2726,6 @@ apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Μη έγκυρο ό
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Απαριθμήστε έναν τύπο εγγράφου
DocType: Event,Ref Type,Τύπος αναφοράς
apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Αν το φόρτωμα νέες εγγραφές, αφήστε κενή τη στήλη ""όνομα"" (id) ."
DocType: Address,Chattisgarh,Chattisgarh
apps/frappe/frappe/config/core.py +47,Errors in Background Events,Λάθη στο Ιστορικό Εκδηλώσεις
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,Αριθμός στηλών
DocType: Workflow State,Calendar,Ημερολόγιο
@@ -2749,7 +2757,7 @@ apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Η α
DocType: Integration Request,Remote,Μακρινός
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Υπολογισμός
apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Παρακαλώ επιλέξτε τύπο εγγράφου πρώτα
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Επιβεβαίωση email σας
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +174,Confirm Your Email,Επιβεβαίωση email σας
apps/frappe/frappe/www/login.html +42,Or login with,Ή συνδεθείτε με
DocType: Error Snapshot,Locals,Οι ντόπιοι
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Διαβιβάζονται μέσω του {0} σε {1}: {2}
@@ -2766,7 +2774,7 @@ DocType: Web Page,Web Page,Ιστοσελίδα
DocType: Blog Category,Blogger,Blogger
apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},&#39;Στην Παγκόσμια Αναζήτηση&#39; δεν επιτρέπεται ο τύπος {0} στη σειρά {1}
apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Προβολή λίστας
apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Η ημερομηνία πρέπει να είναι σε μορφή : {0}
apps/frappe/frappe/public/js/frappe/form/control.js +810,Date must be in format: {0},Η ημερομηνία πρέπει να είναι σε μορφή : {0}
DocType: Workflow,Don't Override Status,Μην Παράκαμψη Κατάσταση
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Παρακαλώ δώστε βαθμολογία.
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Σχόλια Αίτημα
@@ -2799,7 +2807,7 @@ DocType: Custom DocPerm,Report,Έκθεση
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Ποσό πρέπει να είναι μεγαλύτερη από 0.
apps/frappe/frappe/desk/reportview.py +107,{0} is saved,{0} Είναι αποθηκευμένο
apps/frappe/frappe/core/doctype/user/user.py +327,User {0} cannot be renamed,Ο χρήστης {0} δεν μπορεί να μετονομαστεί
apps/frappe/frappe/model/db_schema.py +107,Fieldname is limited to 64 characters ({0}),ΌνομαΠεδίου περιορίζεται σε 64 χαρακτήρες ({0})
apps/frappe/frappe/model/db_schema.py +108,Fieldname is limited to 64 characters ({0}),ΌνομαΠεδίου περιορίζεται σε 64 χαρακτήρες ({0})
apps/frappe/frappe/config/desk.py +59,Email Group List,Email Λίστα Ομάδα
DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],Ένα αρχείο εικονίδιο με .ico επέκταση. Θα πρέπει να είναι 16 x 16 px. Παράγονται χρησιμοποιώντας μια γεννήτρια favicon. [favicon-generator.org]
DocType: Auto Email Report,Format,Μορφή
@@ -2877,7 +2885,7 @@ DocType: Website Settings,Title Prefix,Πρόθεμα τίτλου
DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Οι ειδοποιήσεις και τα μαζικά email θα πρέπει να στέλνονται από αυτόν τον διακομιστή εξερχόμενης αλληλογραφίας.
DocType: Workflow State,cog,Δόντι γραναζιού
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on Migrate,Sync για Μετεγκατάσταση
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Σήμερα Επισκόπηση
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Currently Viewing,Σήμερα Επισκόπηση
DocType: DocField,Default,Προεπιλεγμένο
apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} Προστέθηκε
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Αναζήτηση για &#39;{0}&#39;
@@ -2937,7 +2945,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +771,Report was
DocType: Print Settings,Print Style,Στυλ εκτύπωσης
apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,Δεν συνδέεται με καμία εγγραφή
DocType: Custom DocPerm,Import,Εισαγωγή
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +178,Row {0}: Not allowed to enable Allow on Submit for standard fields,Γραμμή {0}: αποαγορεύεται να επιτραπεί στην υποβολή για τυπικά πεδία
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +180,Row {0}: Not allowed to enable Allow on Submit for standard fields,Γραμμή {0}: αποαγορεύεται να επιτραπεί στην υποβολή για τυπικά πεδία
apps/frappe/frappe/config/setup.py +100,Import / Export Data,Εισαγωγή / εξαγωγή δεδομένων
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,Πρότυπο ρόλοι δεν μπορούν να μετονομαστούν
DocType: Communication,To and CC,Για να και CC
@@ -2964,7 +2972,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo
DocType: Auto Email Report,Filter Meta,Φίλτρο Meta
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Το κείμενο που θα εμφανίζεται για το σύνδεσμο προς την ιστοσελίδα, αν αυτή η φόρμα έχει μια ιστοσελίδα. Η διαδρομή του συνδέσμου θα δημιουργείται αυτόματα με βάση τα πεδία `page_name` και `parent_website_route`"
DocType: Feedback Request,Feedback Trigger,Σχόλια ενεργοποίησης
apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Παρακαλώ να ορίσετε {0} πρώτα
apps/frappe/frappe/public/js/frappe/form/control.js +1741,Please set {0} first,Παρακαλώ να ορίσετε {0} πρώτα
DocType: Unhandled Email,Message-id,Μήνυμα-id
DocType: Patch Log,Patch,Patch
DocType: Async Task,Failed,Αποτυχία


+ 1
- 1
frappe/translations/es-AR.csv Datei anzeigen

@@ -1,3 +1,3 @@
DocType: Communication,Comment Type,Tipo de Comentario
apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Limpiar Adjunto
apps/frappe/frappe/public/js/frappe/form/control.js +1087,Clear Attachment,Limpiar Adjunto
DocType: Communication,Communication,Comunicacion

+ 1
- 1
frappe/translations/es-CL.csv Datei anzeigen

@@ -27,7 +27,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +474,changed values
DocType: Communication,Link DocType,Enlace DocType
apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +20,Column Name cannot be empty,El Nombre de la Columna no puede estar vacía
,Feedback Ratings,Ratings de Feedback
apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,No se puede enviar este correo electrónico. Usted ha cruzado el límite de envío de {0} mensajes de correo electrónico para este mes.
apps/frappe/frappe/email/queue.py +225,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,No se puede enviar este correo electrónico. Usted ha cruzado el límite de envío de {0} mensajes de correo electrónico para este mes.
apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,No se puede utilizar una sub-consulta en order by
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +227,Permissions can be managed via Setup &gt; Role Permissions Manager,Los permisos se pueden gestionar a través de Configuración &gt; Administrador de permisos
DocType: LDAP Settings,LDAP First Name Field,Campo de Primer Nombre LDAP


+ 8
- 8
frappe/translations/es-PE.csv Datei anzeigen

@@ -14,7 +14,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledge
DocType: Report,Ref DocType,Referencia Tipo de Documento
DocType: Print Settings,Print Style Preview,Vista previa de Estilo de impresión
DocType: Customize Form,Enter Form Type,Introduzca Tipo de Formulario
apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Seleccione de archivos adjuntos existentes
apps/frappe/frappe/public/js/frappe/form/control.js +1085,Select from existing attachments,Seleccione de archivos adjuntos existentes
DocType: Email Alert Recipient,Email By Document Field,Email Por Campo Documento
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +483,Saved!,Guardado!
apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,Introducir valor
@@ -78,7 +78,7 @@ DocType: Custom Script,Adds a custom script (client or server) to a DocType,Aña
DocType: Report,Report Type,Tipo de informe
DocType: User Email,Enable Outgoing,Habilitar saliente
DocType: Email Account,Ignore attachments over this size,Ignorar los adjuntos mayores a este tamaño
apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},La fecha debe estar en formato : {0}
apps/frappe/frappe/public/js/frappe/form/control.js +810,Date must be in format: {0},La fecha debe estar en formato : {0}
DocType: Print Settings,In points. Default is 9.,En puntos. El valor predeterminado es 9.
apps/frappe/frappe/config/website.py +18,User editable form on Website.,Forma editable Usuario en el Sitio Web.
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,Carga y Sincronización
@@ -96,7 +96,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh F
apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Una nueva cuenta ha sido creada para ti en {0}
DocType: Website Script,Website Script,Guión del Sitio Web
apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,Referencia DocType
apps/frappe/frappe/__init__.py +1062,Thank you,Gracias
apps/frappe/frappe/__init__.py +1070,Thank you,Gracias
DocType: Address,Shipping,Envío
DocType: Standard Reply,Standard Reply,Respuestas automáticas
DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","¿Cómo se debe formatear esta moneda ? Si no se establece, utilizará valores predeterminados del sistema"
@@ -385,9 +385,9 @@ DocType: Workflow State,Search,Búsqueda
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Algunos documentos como facturas, no se deben cambiar una vez guardados. El estado final de dichos documentos se llama 'Presentado'. Puede restringir qué roles/usuarios pueden presentar documentos"
apps/frappe/frappe/public/js/frappe/views/pageview.js +104,Sorry! I could not find what you were looking for.,¡Lo siento! No pude encontrar lo que estabas buscando.
DocType: Workflow State,remove-sign,Eliminar el efecto de signo
apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Adjunte un archivo primero .
apps/frappe/frappe/public/js/frappe/form/control.js +1335,Please attach a file first.,Adjunte un archivo primero .
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Permisos Mostrar usuario
apps/frappe/frappe/public/js/frappe/request.js +347,Report this issue,Reportar Incidencia
apps/frappe/frappe/public/js/frappe/request.js +349,Report this issue,Reportar Incidencia
apps/frappe/frappe/public/js/frappe/views/treeview.js +212,New {0},Nuevo {0}
DocType: Workflow Action,Workflow Action,Acciones de los flujos de trabajo
DocType: Custom Script,Script Type,Guión Tipo
@@ -398,7 +398,7 @@ apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be
apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Campos obligatorios requeridos en {0}
apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Máximo {0} filas permitidos
DocType: Custom DocPerm,Import,Importación
apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Había algunos errores de configuración el nombre, por favor póngase en contacto con el administrador"
apps/frappe/frappe/model/naming.py +174,"There were some errors setting the name, please contact the administrator","Había algunos errores de configuración el nombre, por favor póngase en contacto con el administrador"
apps/frappe/frappe/website/doctype/web_form/web_form.py +37,You need to be in developer mode to edit a Standard Web Form,Se requiere estar en modo desarrollador para editar un formulario web estándar.
DocType: Website Theme,Google Font (Heading),Google Font (Título)
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +31,A user can be permitted to multiple records of the same DocType.,Un usuario se puede permitir que varios registros de un mismo tipo de documento .
@@ -489,7 +489,7 @@ For Select, enter list of Options, each on a new line.","Para enlaces, introduzc
DocType: Workflow State,eye-open,- ojo abierto
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +87,Submit after importing.,Revisar después de importar.
DocType: Email Account,Email Account Name,Correo electrónico Nombre de cuenta
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,No {0} found,{0} no encontrado
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +558,No {0} found,{0} no encontrado
apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Publicaciones por {0}
apps/frappe/frappe/core/doctype/doctype/doctype.py +198,Series {0} already used in {1},Serie {0} ya se utiliza en {1}
DocType: Report,Report Manager,Administrador de informes
@@ -504,7 +504,7 @@ apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +46,1 minute ago,Hace 1
DocType: Website Slideshow,Slideshow like display for the website,Presentación como pantalla para el sitio web
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Los permisos se establecen en las Funciones y Tipos de Documentos (llamados DocTypes ) mediante el establecimiento de permisos como Leer, Escribir , Crear, Eliminar , Enviar, Cancelar, Corregir, Informe , Importación, Exportación, Impresión , Correo Electrónico y Establecer Permisos de Usuario ."
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Editar Rubro
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +178,Row {0}: Not allowed to enable Allow on Submit for standard fields,Fila {0}: No se permite habilitar Permitir en Enviar para campos estándar
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +180,Row {0}: Not allowed to enable Allow on Submit for standard fields,Fila {0}: No se permite habilitar Permitir en Enviar para campos estándar
apps/frappe/frappe/www/list.html +3,{0} List,Listado: {0}
DocType: DocType,Is Submittable,Es presentable--
DocType: System Settings,Disable Standard Email Footer,Desactivar pie de página estandar en Email


+ 80
- 72
frappe/translations/es.csv Datei anzeigen

@@ -14,8 +14,9 @@ apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,Ti
DocType: User,Facebook Username,Nombre de usuario en facebook
DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Nota: Varias sesiones serán permitidas en el caso de los dispositivos móviles
apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},buzón de correo electrónico habilitado para el usuario {usuarios}
apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,No se puede enviar este correo electrónico. Usted ha cruzado el límite de envío de mensajes de correo electrónico {0} para este mes.
apps/frappe/frappe/email/queue.py +225,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,No se puede enviar este correo electrónico. Usted ha cruzado el límite de envío de mensajes de correo electrónico {0} para este mes.
apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Validar permanentemente {0}?
apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,Descargar archivos de copia de seguridad
DocType: Address,County,País
DocType: Workflow,If Checked workflow status will not override status in list view,Si el estado de flujo de trabajo facturado no anulará el estado en la vista de lista
apps/frappe/frappe/client.py +280,Invalid file path: {0},Ruta no válida archivo: {0}
@@ -80,10 +81,10 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Ajustes p
apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administrador logeado
DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opciones de contacto, como 'Consultas de Ventas, Consultas de soporte, etc' cada una en una nueva línea o separados por comas."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Descargar
apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Insertar
apps/frappe/frappe/public/js/frappe/form/control.js +1979,Insert,Insertar
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Seleccionar {0}
DocType: Print Settings,Classic,Clásico
DocType: Desktop Icon,Color,Color
DocType: DocField,Color,Color
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +54,For ranges,Para rangos
DocType: Workflow State,indent-right,Guión - derecha
DocType: Has Role,Has Role,Tiene Rol
@@ -100,7 +101,7 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To impor
DocType: DocType,Default Print Format,Formato de impresión por defecto
DocType: Workflow State,Tags,Etiquetas
apps/frappe/frappe/public/js/frappe/form/workflow.js +33,None: End of Workflow,Ninguno: Fin del flujo de trabajo
apps/frappe/frappe/model/db_schema.py +346,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","El campo {0} no puede establecerse como único en {1}, ya que existen valores no únicos"
apps/frappe/frappe/model/db_schema.py +347,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","El campo {0} no puede establecerse como único en {1}, ya que existen valores no únicos"
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +47,Document Types,Tipos de Documentos
DocType: Address,Jammu and Kashmir,Jammu and Kashmir
DocType: Workflow,Workflow State Field,Campo del Estado del Flujo de Trabajo
@@ -231,7 +232,7 @@ DocType: Workflow,Transition Rules,Reglas de Transición
apps/frappe/frappe/core/doctype/report/report.js +11,Example:,Ejemplo :
DocType: Workflow,Defines workflow states and rules for a document.,Define los estados de flujo de trabajo y reglas para un documento.
DocType: Workflow State,Filter,Filtro
apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},El nombre del campo {0} no puede tener caracteres especiales como {1}
apps/frappe/frappe/model/db_schema.py +564,Fieldname {0} cannot have special characters like {1},El nombre del campo {0} no puede tener caracteres especiales como {1}
apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Actualizar muchos valores al mismo tiempo.
apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Error : El documento se ha modificado después de haber sido abierto.
apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} desconectado: {1}
@@ -260,7 +261,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Obtenga su a
apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Su suscripción expiró el {0}. Para renovar, {1}."
DocType: Workflow State,plus-sign,signo-más
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Configuración ya completa
apps/frappe/frappe/__init__.py +889,App {0} is not installed,Aplicación {0} no está instalada
apps/frappe/frappe/__init__.py +897,App {0} is not installed,Aplicación {0} no está instalada
DocType: Workflow State,Refresh,Actualizar
DocType: Event,Public,Público
apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Nada para mostrar
@@ -339,7 +340,6 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Editar encabezado
DocType: File,File URL,URL del archivo
DocType: Version,Table HTML,Tabla HTML
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> No se encontraron resultados para ' </p>
apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Añadir Suscriptores
apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Eventos para hoy
DocType: Email Alert Recipient,Email By Document Field,Email por documento
@@ -404,7 +404,6 @@ DocType: Desktop Icon,Link,Vinculo
apps/frappe/frappe/utils/file_manager.py +96,No file attached,No hay archivos adjuntos
DocType: Version,Version,Versión
DocType: User,Fill Screen,Pantalla completa
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,Configure la cuenta predeterminada de correo electrónico desde Configuración&gt; Correo electrónico&gt; Cuenta de correo electrónico
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","No se puede mostrar este informe, debido a la falta de datos. Probablemente necesite los debidos permisos."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Seleccione Archivo
apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Editar subiendo...
@@ -474,9 +473,9 @@ DocType: User,Reset Password Key,Restablecer contraseña/clave
DocType: Email Account,Enable Auto Reply,Habilitar Respuesta Automática
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,No visto
DocType: Workflow State,zoom-in,Acercar
apps/frappe/frappe/email/queue.py +219,Unsubscribe from this list,Salir de esta lista
apps/frappe/frappe/email/queue.py +234,Unsubscribe from this list,Salir de esta lista
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Reference DocType and Reference Name are required,'DocType' de referencia y nombre referencia son requeridos
apps/frappe/frappe/utils/jinja.py +35,Syntax error in template,Error de sintaxis en la plantilla
apps/frappe/frappe/utils/jinja.py +51,Syntax error in template,Error de sintaxis en la plantilla
DocType: DocField,Width,Ancho
DocType: Email Account,Notify if unreplied,Notificarme si no tiene respuesta
DocType: System Settings,Minimum Password Score,Puntuación mínima de contraseña
@@ -560,6 +559,7 @@ DocType: Custom Field,Select the label after which you want to insert new field.
DocType: User,Last Login,Último ingreso
apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Nombre de campo es requerido en la línea {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Columna
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,Configure por defecto la cuenta de correo electrónico predeterminada desde Configuración&gt; Correo electrónico&gt; Cuenta de correo electrónico
DocType: Custom Field,Adds a custom field to a DocType,Añade un campo personalizado para el 'DocType'
DocType: File,Is Home Folder,Es Carpeta
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} no es una dirección de correo electrónico válida
@@ -567,7 +567,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +733,Select atleast 1 reco
apps/frappe/frappe/core/doctype/has_role/has_role.py +13,User '{0}' already has the role '{1}',Usuario &#39;{0}&#39; ya tiene el papel &#39;{1}&#39;
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,Cargar y Sincronizar
apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Compartido con {0}
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe,Darse de baja
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +132,Unsubscribe,Darse de baja
DocType: Communication,Reference Name,Nombre de referencia
apps/frappe/frappe/public/js/frappe/toolbar.js +30,Chat Support,Soporte de chat
DocType: Error Snapshot,Exception,Excepción
@@ -585,7 +585,7 @@ DocType: Email Group,Newsletter Manager,Administrador de boletínes
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Opción 1
apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} a {1}
apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Entrar de error durante peticiones.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} ha sido añadido al grupo de correo electrónico.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +194,{0} has been successfully added to the Email Group.,{0} ha sido añadido al grupo de correo electrónico.
DocType: Address,Uttar Pradesh,Uttar Pradesh
DocType: Address,Pondicherry,Pondicherry
apps/frappe/frappe/public/js/frappe/upload.js +364,Make file(s) private or public?,Hacer archivo (s) privado o público?
@@ -616,7 +616,7 @@ DocType: Portal Settings,Portal Settings,Configuración del portal
DocType: Web Page,0 is highest,0 es más alto
apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,¿Seguro que desea volver a vincular esta comunicación a {0}?
apps/frappe/frappe/www/login.html +104,Send Password,Enviar contraseña
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +45,Attachments,Adjuntos
DocType: Email Queue,Attachments,Adjuntos
apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,Usted no está autorizado para acceder a este documento
DocType: Language,Language Name,Nombre del lenguaje
DocType: Email Group Member,Email Group Member,Miembro de Grupo de Correo Electrónico
@@ -646,7 +646,7 @@ apps/frappe/frappe/utils/password_strength.py +78,Try to use a longer keyboard p
DocType: Feedback Trigger,Check Communication,Comprobar Comunicación
DocType: Address,Rajasthan,Rajasthan
apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,El generador de reportes es manejado directamente por el 'report builder' no hay nada que hacer.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Por favor verifica tu dirección de correo
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +164,Please verify your Email Address,Por favor verifica tu dirección de correo
apps/frappe/frappe/model/document.py +903,none of,ninguno de
apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Enviarme una copia
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Subir permisos de usuario
@@ -657,7 +657,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Si
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Tablero Kanban {0} no existe.
apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} están viendo actualmente este documento
DocType: ToDo,Assigned By Full Name,Asignado por Nombre Completo
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} actualizado
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} actualizado
apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,El reporte no se puede definir para un solo tipo
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,Hace {0} días
DocType: Email Account,Awaiting Password,Esperando Contraseña
@@ -682,7 +682,7 @@ DocType: Workflow State,Stop,Detener
DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Enlace a la página que desea abrir. Dejar en blanco si desea que sea un grupo principal.
DocType: DocType,Is Single,Es único
apps/frappe/frappe/core/doctype/user/user.py +720,Sign Up is disabled,El registro está desactivado
apps/frappe/frappe/email/queue.py +278,{0} has left the conversation in {1} {2},{0} ha dejado la conversación en {1} {2}
apps/frappe/frappe/email/queue.py +293,{0} has left the conversation in {1} {2},{0} ha dejado la conversación en {1} {2}
DocType: Blogger,User ID of a Blogger,ID de usuario de un Blogger
apps/frappe/frappe/core/doctype/user/user.py +287,There should remain at least one System Manager,Debe haber al menos un administrador del sistema
DocType: GSuite Settings,Authorization Code,Código de Autorización
@@ -728,6 +728,7 @@ DocType: Event,Event,Evento
apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","hace {0}, {1} escribió:"
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,No se puede eliminar de campo estándar. Solo puede ocultarlo si lo desea
DocType: Top Bar Item,For top bar,Por la barra superior
apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,En cola para la copia de seguridad. Recibirá un correo electrónico con el enlace de descarga
apps/frappe/frappe/utils/bot.py +148,Could not identify {0},No se pudo identificar {0}
DocType: Address,Address,Dirección
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +3,Payment Failed,Pago Fallido
@@ -752,13 +753,13 @@ DocType: Web Form,Allow Print,Permitir Imprimir
apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,No hay aplicaciones instaladas
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Marque el campo obligatorio
DocType: Communication,Clicked,Teclear
apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},No tiene permiso para '{0} ' {1}
apps/frappe/frappe/public/js/legacy/form.js +950,No permission to '{0}' {1},No tiene permiso para '{0} ' {1}
DocType: User,Google User ID,Google User ID
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Programado para enviar
DocType: DocType,Track Seen,Seguimiento de vistas
apps/frappe/frappe/desk/form/utils.py +55,This method can only be used to create a Comment,Este método sólo se puede utilizar para crear un comentario.
DocType: Event,orange,naranja
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,No {0} found,No hay {0}
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +558,No {0} found,No hay {0}
apps/frappe/frappe/config/setup.py +242,Add custom forms.,Agregar formularios personalizados.
apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} en {2}
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +419,submitted this document,presentado este documento
@@ -788,6 +789,7 @@ DocType: Newsletter Email Group,Newsletter Email Group,Boletín Grupo de correo
DocType: Dropbox Settings,Integrations,Integraciones
DocType: DocField,Section Break,Salto de sección.
DocType: Address,Warehouse,Almacén
DocType: Address,Other Territory,Otros territorios
,Messages,Mensajes
apps/frappe/frappe/desk/page/applications/applications.js +49,Portal,Portal
DocType: Email Account,Use Different Email Login ID,Utilizar ID de acceso de correo electrónico diferente
@@ -818,6 +820,7 @@ apps/frappe/frappe/utils/data.py +556,1 month ago,Hace 1 mes
DocType: Contact,User ID,ID de usuario
DocType: Communication,Sent,Enviado
DocType: Address,Kerala,Kerala
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} año (s)
DocType: File,Lft,Izquierda-
DocType: User,Simultaneous Sessions,Sesiones simultáneas
DocType: OAuth Client,Client Credentials,Credenciales del Cliente
@@ -834,7 +837,7 @@ DocType: Email Queue,Unsubscribe Method,Método para darse de baja
DocType: GSuite Templates,Related DocType,DocType Relacionado
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Editar para agregar contenido
apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Seleccione Idiomas
apps/frappe/frappe/__init__.py +509,No permission for {0},Sin permiso para {0}
apps/frappe/frappe/__init__.py +517,No permission for {0},Sin permiso para {0}
DocType: DocType,Advanced,Anticipado
apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Parece que la clave de API o clave secreta de API secreto está mal !!!
apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Referencia: {0} {1}
@@ -845,6 +848,7 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P
DocType: Email Account,Yahoo Mail,Correo de Yahoo
apps/frappe/frappe/limits.py +75,Your subscription will expire tomorrow.,Su suscripción expirará mañana.
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +483,Saved!,Guardado!.
apps/frappe/frappe/public/js/frappe/form/control.js +729,{0} is not a valid hex color,{0} no es un color hexadecimal válido
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,Señora
apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Actualizado {0}: {1}
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,Maestro
@@ -872,7 +876,7 @@ DocType: Report,Disabled,Deshabilitado
DocType: Workflow State,eye-close,eye-close
DocType: OAuth Provider Settings,OAuth Provider Settings,Configuración del proveedor OAuth
apps/frappe/frappe/config/setup.py +254,Applications,Aplicaciones
apps/frappe/frappe/public/js/frappe/request.js +347,Report this issue,Reportar esta Incidencia
apps/frappe/frappe/public/js/frappe/request.js +349,Report this issue,Reportar esta Incidencia
apps/frappe/frappe/public/js/frappe/form/save.js +79,Name is required,El nombre es necesario
DocType: Custom Script,Adds a custom script (client or server) to a DocType,Añade un acript personalizado (cliente o servidor) a un tipo de 'DocType'
DocType: Address,City/Town,Ciudad / Provincia
@@ -966,6 +970,7 @@ DocType: Currency,**Currency** Master,**Divisa/Moneda** Principal
DocType: Email Account,No of emails remaining to be synced,Número de emails que quedan para ser sincronizados
apps/frappe/frappe/public/js/frappe/upload.js +203,Uploading,Subiendo
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,"Por favor, guarde el documento antes de la asignación"
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,Haga clic aquí para publicar errores y sugerencias
DocType: Website Settings,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.
DocType: Website Sidebar Item,Website Sidebar Item,Artículo de barra lateral del Sitio web
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +44,{0} records updated,{0} registros actualizados
@@ -979,12 +984,10 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,Limpiar
apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Los eventos diarios deben terminar el mismo día.
DocType: Communication,User Tags,Etiquetas de usuario
apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Trayendo Imagenes...
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Configuración&gt; Usuario
DocType: Workflow State,download-alt,download-alt
apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Descargando aplicación {0}
DocType: Communication,Feedback Request,Solicitud de retroalimentación
apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,Siguientes campos faltan:
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Experimental Feature,Característica experimental
apps/frappe/frappe/www/login.html +30,Sign in,Ingresar
DocType: Web Page,Main Section,Sección principal
DocType: Page,Icon,Icono
@@ -1086,7 +1089,7 @@ DocType: Customize Form,Customize Form,Personalizar Formulario
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +104,Mandatory field: set role for,Campo obligatorio: establecer rol para
DocType: Currency,A symbol for this currency. For e.g. $,"Un símbolo para esta moneda. Por ejemplo, $"
apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,Frappe Framework
apps/frappe/frappe/model/naming.py +174,Name of {0} cannot be {1},Nombre de {0} no puede ser {1}
apps/frappe/frappe/model/naming.py +180,Name of {0} cannot be {1},Nombre de {0} no puede ser {1}
apps/frappe/frappe/config/setup.py +46,Show or hide modules globally.,Mostrar / Ocultar módulos globalmente.
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,Desde la fecha
apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,Éxito
@@ -1107,7 +1110,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +308,Add A New
apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js +3,See on Website,Ver en el sitio web
DocType: Workflow Transition,Next State,Siguiente estado
DocType: User,Block Modules,Módulos de Bloque
apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Revirtiendo longitud a {0} para '{1}' en '{2}'; Ajuste de la longitud como {3} causará truncamiento de datos.
apps/frappe/frappe/model/db_schema.py +142,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Revirtiendo longitud a {0} para '{1}' en '{2}'; Ajuste de la longitud como {3} causará truncamiento de datos.
DocType: Print Format,Custom CSS,CSS personalizado
apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Añadir un comentario
apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Ignorado: {0} a {1}
@@ -1199,13 +1202,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,
DocType: Custom Role,Custom Role,Rol Personalizado
apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Inicio / Carpeta de Prueba 2
DocType: System Settings,Ignore User Permissions If Missing,"Ignorar los permisos de usuario, en caso que no existan."
apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,"Por favor, guarde el documento antes de subirlo."
apps/frappe/frappe/public/js/frappe/form/control.js +1075,Please save the document before uploading.,"Por favor, guarde el documento antes de subirlo."
apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Ingrese su contraseña
DocType: Dropbox Settings,Dropbox Access Secret,Acceso Secreto a Dropbox
apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Añadir otro comentario
apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Editar DocType
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Cancelado la suscripción a Newsletter
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,Unsubscribed from Newsletter,Cancelado la suscripción a Newsletter
apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,El plegado debe ir antes del salto de pagina
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,En desarrollo
apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Última modificación por
DocType: Workflow State,hand-down,mano-abajo
DocType: Address,GST State,Estado del GST
@@ -1226,6 +1230,7 @@ DocType: Workflow State,Tag,Etiqueta.
DocType: Custom Script,Script,Script
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Mi Configuración
DocType: Website Theme,Text Color,Color de texto
apps/frappe/frappe/desk/page/backups/backups.py +72,Backup job is already queued. You will receive an email with the download link,El trabajo de copia de seguridad ya está en cola. Recibirá un correo electrónico con el enlace de descarga
DocType: Desktop Icon,Force Show,Forzar a Mostrar
apps/frappe/frappe/auth.py +78,Invalid Request,Solicitud inválida
apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Este formulario no tiene ninguna entrada
@@ -1336,7 +1341,7 @@ DocType: DocField,Name,Nombre
apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,Se ha superado el espacio máximo de {0} para su plan. {1}.
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Buscar en los documentos
DocType: OAuth Authorization Code,Valid,Válido
apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Abrir vínculo
apps/frappe/frappe/public/js/frappe/form/control.js +1354,Open Link,Abrir vínculo
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Tu Lenguaje
apps/frappe/frappe/desk/form/load.py +46,Did not load,No se cargó
apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Añadir fila
@@ -1354,6 +1359,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Algunos documentos como facturas, no se pueden cambiar una vez guardados. El estado final de dichos documentos se llama 'Validado'. Puede restringir qué roles y/o usuarios pueden validar los documentos."
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,No tiene permitido exportar este reporte
apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 elemento seleccionado
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> No se encontraron resultados para ' </p>
DocType: Newsletter,Test Email Address,Dirección de correo electrónico de prueba
DocType: ToDo,Sender,Remitente
DocType: GSuite Settings,Google Apps Script,Google Apps Script
@@ -1461,7 +1467,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Ple
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Cargando Reporte
apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Su suscripción expira hoy.
DocType: Page,Standard,Estándar
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Adjuntar Archivo
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,Adjuntar Archivo
apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,Notificación de actualización de contraseña
apps/frappe/frappe/desk/page/backups/backups.html +13,Size,Tamaño
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,Asignación Completa
@@ -1471,7 +1477,7 @@ DocType: Address,Madhya Pradesh,Madhya Pradesh
DocType: Deleted Document,New Name,Nuevo Nombre
DocType: Communication,Email Status,Estado de Correo Electrónico
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +111,Please save the document before removing assignment,"Por favor, guarde el documento antes de remover la asignación"
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +10,Insert Above,Agregar arriba
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +10,Insert Above,Agregar Arriba
apps/frappe/frappe/utils/password_strength.py +169,Common names and surnames are easy to guess.,nombres y apellidos comunes son fáciles de adivinar.
apps/frappe/frappe/public/js/frappe/model/indicator.js +51,Draft,Borrador
apps/frappe/frappe/utils/password_strength.py +159,This is similar to a commonly used password.,Esto es similar a una contraseña de uso común.
@@ -1491,7 +1497,7 @@ apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversat
apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Las opciones no establecidas para el campo enlazado {0}
DocType: Customize Form,"Must be of type ""Attach Image""","Debe ser del tipo ""Adjuntar Imagen"""
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Deselecciona todo
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},No se puede desmarcar 'solo lectura' para el campo {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +199,You cannot unset 'Read Only' for field {0},No se puede desmarcar 'solo lectura' para el campo {0}
DocType: Auto Email Report,Zero means send records updated at anytime,Cero significa enviar registros actualizados en cualquier momento
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +22,Complete Setup,Configuración completa
DocType: Workflow State,asterisk,asterisco
@@ -1505,7 +1511,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +98,Week,Semana
DocType: Social Login Keys,Google,Google
DocType: Email Domain,Example Email Address,Dirección de correo electrónico de ejemplo
apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,Más usado
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Unsubscribe from Newsletter,Darse de baja de Newsletter
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe from Newsletter,Darse de baja de Newsletter
apps/frappe/frappe/www/login.html +101,Forgot Password,Se te olvidó tu contraseña
DocType: Dropbox Settings,Backup Frequency,Frecuencia de copia de seguridad
DocType: Workflow State,Inverse,inverso
@@ -1583,10 +1589,11 @@ apps/frappe/frappe/config/setup.py +209,"Actions for workflow (e.g. Approve, Can
DocType: Workflow State,flag,Bandera
apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +57,Feedback Request is already sent to user,Solicitud de retroalimentación ya fue enviada al usuario
DocType: Web Page,Text Align,Alinear texto
apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},El nombre no puede contener caracteres especiales como {0}
apps/frappe/frappe/model/naming.py +185,Name cannot contain special characters like {0},El nombre no puede contener caracteres especiales como {0}
DocType: Contact Us Settings,Forward To Email Address,Reenviar a la dirección de correo electrónico
apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Mostrar todos los datos
apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,El campo del título debe ser un nombre válido
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,Cuenta de correo electrónico no configurada. Crea una nueva cuenta de correo electrónico desde Configuración&gt; Correo electrónico&gt; Cuenta de correo electrónico
apps/frappe/frappe/config/core.py +7,Documents,Documentos
DocType: Email Flag Queue,Is Completed,Esta completado
apps/frappe/frappe/www/me.html +22,Edit Profile,Editar perfil
@@ -1596,7 +1603,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi
myfield
eval:doc.myfield=='My Value'
eval:doc.age&gt;18",aparecerá este campo sólo si el nombre del campo definido aquí tiene valor o las reglas son verdaderos (ejemplos): eval myfield: doc.myfield == &#39;Mi Valor&#39; eval: doc.age&gt; 18
apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Hoy
apps/frappe/frappe/public/js/frappe/form/control.js +764,Today,Hoy
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Una vez que haya establecido esto, los usuarios sólo podrán acceder a ciertos documentos, (por ejemplo: Entrada de blog si esta relacionado con Blogger)."
DocType: Error Log,Log of Scheduler Errors,Bitácora de errores en el programador de tareas
DocType: User,Bio,Biografía
@@ -1620,7 +1627,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n
apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 estrella es más bajo y 5 estrellas es la calificación más alta
DocType: Event,Ref Name,Nombre Ref.
DocType: Web Page,Center,Centro
DocType: Email Alert,Value To Be Set,Valor a establecer
DocType: Email Alert,Value To Be Set,Valor a Establecer
apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Primer nivel
DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Representa los estados permitidos en un solo documento y el rol asignado para el cambio del estado
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Actualizar formulario
@@ -1655,7 +1662,7 @@ DocType: Print Format,Js,js
apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Seleccionar formato de impresión
apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,patrones de teclado cortos son fáciles de adivinar
DocType: Portal Settings,Portal Menu,Menú del Portal
apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Longitud de {0} debe estar entre 1 y 1000
apps/frappe/frappe/model/db_schema.py +115,Length of {0} should be between 1 and 1000,Longitud de {0} debe estar entre 1 y 1000
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,Buscar por cualquier cosa
DocType: DocField,Print Hide,Ocultar en impresión
apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,Ingrese el Valor
@@ -1708,8 +1715,7 @@ apps/frappe/frappe/model/document.py +564,Cannot change docstatus from 0 to 2,No
DocType: User Permission for Page and Report,Roles Permission,Permisos de Roles
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Actualizar
DocType: Error Snapshot,Snapshot View,Vista Instantánea
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,"Por favor, guarde el boletín antes de enviarlo"
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} año (s)
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +101,Please save the Newsletter before sending,"Por favor, guarde el boletín antes de enviarlo"
apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Las opciones deben ser validas para el 'DocType' en el campo {0} de la línea {1}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Editar propiedades
DocType: Patch Log,List of patches executed,Lista de parches aplicados
@@ -1727,7 +1733,7 @@ apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Actualización
DocType: Workflow State,trash,Basura
DocType: System Settings,Older backups will be automatically deleted,Copias de seguridad anteriores se eliminarán de forma automática
DocType: Event,Leave blank to repeat always,Dejar en blanco para repetir siempre
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +192,Confirmed,Confirmado
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,Confirmed,Confirmado
DocType: Event,Ends on,Finaliza el
DocType: Payment Gateway,Gateway,Pasarela
apps/frappe/frappe/public/js/frappe/form/linked_with.js +116,Not enough permission to see links,No hay suficiente permiso para ver los enlaces.
@@ -1758,7 +1764,6 @@ DocType: Contact,Purchase Manager,Gerente de compras
DocType: Custom Script,Sample,Muestra.
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Etiquetas sin Categorizar
DocType: Event,Every Week,Cada semana
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,Cuenta de correo electrónico no configurada. Crea una nueva cuenta de correo electrónico desde Configuración&gt; Correo electrónico&gt; Cuenta de correo electrónico
apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Haga clic aquí para verificar su uso o actualizar a un plan superior
DocType: Custom Field,Is Mandatory Field,Es un campo obligatorio
DocType: User,Website User,Usuario del Sitio Web
@@ -1766,7 +1771,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +10,Not equals,N
DocType: Integration Request,Integration Request Service,Solicitud de Servicio de Integración
DocType: Website Script,Script to attach to all web pages.,Script para unir a todas las páginas web.
DocType: Web Form,Allow Multiple,Permitir Múltiple
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +40,Assign,Asignar
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +44,Assign,Asignar
apps/frappe/frappe/config/setup.py +102,Import / Export Data from .csv files.,Importar / Exportar datos desde archivos .csv
DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Sólo enviar registros actualizados en las últimas X horas
DocType: Communication,Feedback,Comentarios.
@@ -1818,7 +1823,7 @@ DocType: Property Setter,Property Type,Tipo de inmueble
DocType: Workflow State,screenshot,Captuta de pantalla
apps/frappe/frappe/core/doctype/report/report.py +33,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 guarde."
DocType: System Settings,Background Workers,Procesos en segundo plano
apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Fieldname {0} en conflicto con el metaobjeto
apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Nombre de campo {0} en conflicto con el metaobjeto
DocType: Deleted Document,Data,Datos
apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Estado del documento
apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Usted ha hecho {0} de {1}
@@ -1846,7 +1851,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,Restante
apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,"Por favor, guarde los cambios antes de adjuntar"
apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Añadido: {0} ({1})
apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Tema por defecto se encuentra en {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},El tipo de campo de {0} no puede ser cambiado a {1} en la línea {2}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +325,Fieldtype cannot be changed from {0} to {1} in row {2},El tipo de campo de {0} no puede ser cambiado a {1} en la línea {2}
apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,Permisos de rol
DocType: Help Article,Intermediate,Intermedio
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Puede leer
@@ -1861,9 +1866,9 @@ apps/frappe/frappe/core/doctype/user/user.js +42,Refreshing...,Actualizando...
DocType: Event,Starts on,Comienza el
DocType: System Settings,System Settings,Configuración del Sistema
apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Error de inicio de sesión
apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Este correo electrónico fue enviado a {0} y copiado a {1}
apps/frappe/frappe/email/queue.py +470,This email was sent to {0} and copied to {1},Este correo electrónico fue enviado a {0} y copiado a {1}
DocType: Workflow State,th,th
apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Crear: {0}
apps/frappe/frappe/public/js/frappe/form/control.js +1517,Create a new {0},Crear: {0}
DocType: Email Rule,Is Spam,es spam
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Informe {0}
apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Abrir {0}
@@ -1875,12 +1880,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon a
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,Duplicar
DocType: Newsletter,Create and Send Newsletters,Crear y enviar boletines de noticias
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date must be before To Date,La fecha 'Desde' tiene que ser menor de la fecha 'Hasta'
DocType: Address,Andaman and Nicobar Islands,Islas Andaman y Nicobar
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +216,GSuite Document,Documento GSuite
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +29,Please specify which value field must be checked,"Por favor, especifique qué campo debe ser revisado"
apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"""Parent"" signifies the parent table in which this row must be added","""Padre"" significa la tabla padre en la que debe añadirse esta fila"
DocType: Website Theme,Apply Style,Aplicar Estilo
DocType: Feedback Request,Feedback Rating,Calificación de la Retroalimentación
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared With,Compartido con
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Compartido con
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Configuración&gt; Administrador de permisos de usuario
DocType: Help Category,Help Articles,Artículos de Ayuda
,Modules Setup,Configuración de módulos
apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Tipo:
@@ -1911,7 +1918,7 @@ DocType: OAuth Client,App Client ID,ID de Cliente de Aplicación
DocType: Kanban Board,Kanban Board Name,Nombre del Tablero Kanban
DocType: Email Alert Recipient,"Expression, Optional","Expresión, opcional"
DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,Copia y pega este código en un Code.gis vacío en tu proyecto en script.google.com
apps/frappe/frappe/email/queue.py +456,This email was sent to {0},Este correo electrónico fue enviado a {0}
apps/frappe/frappe/email/queue.py +472,This email was sent to {0},Este correo electrónico fue enviado a {0}
DocType: DocField,Remember Last Selected Value,Recordar el último valor seleccionado
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +334,Please select Document Type,Seleccione Tipo de documento
DocType: Email Account,Check this to pull emails from your mailbox,Marque esta opción para obtener los correos electrónicos de su buzón
@@ -1926,6 +1933,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,Opci
DocType: Feedback Trigger,Email Field,Campo de Correo Electrónico
apps/frappe/frappe/www/update-password.html +59,New Password Required.,Nueva Contraseña Requerida
apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} compartió este documento con {1}
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Configuración&gt; Usuario
DocType: Website Settings,Brand Image,Imagen de marca
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Configuración de la barra de navegación superior, pie de página y logotipo."
@@ -1993,8 +2001,8 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa
apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Incapaz de leer el formato de archivo para {0}
DocType: Auto Email Report,Filter Data,Filtrar datos
apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Añadir una etiqueta
apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,"Por favor, adjunte un archivo"
apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Existen algunos errores al configurar el nombre, por favor póngase en contacto con el administrador"
apps/frappe/frappe/public/js/frappe/form/control.js +1335,Please attach a file first.,"Por favor, adjunte un archivo"
apps/frappe/frappe/model/naming.py +174,"There were some errors setting the name, please contact the administrator","Existen algunos errores al configurar el nombre, por favor póngase en contacto con el administrador"
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Cuenta de Correo Electrónico entrante no es correcta
apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \
Please enter a valid email address so that we can get back.","Parece que ha escrito su nombre en lugar de su correo electrónico. \ Por favor, ingrese una dirección de correo electrónico válida para que podamos regresar."
@@ -2046,7 +2054,6 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N
DocType: Custom DocPerm,Create,Crear
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Filtro no válido: {0}
DocType: Email Account,no failed attempts,Número de intentos fallidos
apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,"No se encontró ninguna plantilla de dirección predeterminada. Por favor, cree uno nuevo en Configuración&gt; Impresión y marca&gt; Plantilla de dirección."
DocType: GSuite Settings,refresh_token,refresh_token
DocType: Dropbox Settings,App Access Key,Clave de Acceso de Aplicación
DocType: OAuth Bearer Token,Access Token,Token de Acceso
@@ -2062,7 +2069,7 @@ DocType: Workflow,"Rules for how states are transitions, like next state and whi
apps/frappe/frappe/desk/form/save.py +25,{0} {1} already exists,{0} {1} ya existe
apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To can be one of {0},'Añadir a' puede ser un {0}
DocType: User,Github Username,Nombre de usuario Github
DocType: DocType,Image View,Vista de imagen
DocType: DocType,Image View,Vista de Imagen
apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Parece que algo ha ido mal durante la transacción. Puesto que no hemos confirmado el pago, PayPal le reembolsará automáticamente esta cantidad. Si no es así, por favor, envíenos un correo electrónico y mencionar el ID de correlación: {0}."
apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Incluir símbolos, números y letras mayúsculas en la contraseña"
apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Inserción luego del campo '{0}' mencionado en el campo personalizado '{1}', con la etiqueta '{2}', no existe"
@@ -2072,6 +2079,7 @@ apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl +
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Crear: {0}
apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,Nueva cuenta de correo
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +28,Document Restored,Documento Restaurado
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +203,You can't set 'Options' for field {0},No puede establecer &quot;Opciones&quot; para el campo {0}
apps/frappe/frappe/core/page/usage_info/usage_info.html +86,Size (MB),Tamaño (MB)
DocType: Help Article,Author,Autor
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +10,Resume Sending,Reanudar el Envío
@@ -2081,7 +2089,7 @@ DocType: Print Settings,Monochrome,Monocromo
DocType: Address,Purchase User,Usuario de compras
DocType: Workflow,"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.","Pueden existir diferentes estados para este documento: 'Abierto', 'Pendiente de Aprobación', etc."
apps/frappe/frappe/utils/verified_command.py +43,This link is invalid or expired. Please make sure you have pasted correctly.,"Este enlace no es válido o ha expirado. Por favor, asegúrate de que lo has pegado correctamente."
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> ha sido cancelado su suscripción con éxito de esta lista de correo.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +136,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> ha sido cancelado su suscripción con éxito de esta lista de correo.
DocType: Web Page,Slideshow,Presentación
apps/frappe/frappe/contacts/doctype/address_template/address_template.py +31,Default Address Template cannot be deleted,La plantilla de direcciones por defecto no puede ser eliminada
DocType: Contact,Maintenance Manager,Gerente de Mantenimiento
@@ -2099,10 +2107,10 @@ apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Emai
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,¡Hola!
apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,La finalización del evento debe ser posterior al inicio
apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Usted no tiene permiso para obtener un informe sobre: {0}
DocType: System Settings,Apply Strict User Permissions,Aplicar permisos de usuario estrictos
DocType: System Settings,Apply Strict User Permissions,Aplicar Permisos Estrictos de Usuario
DocType: DocField,Allow Bulk Edit,Permitir edición masiva
DocType: Blog Post,Blog Post,Entrada en el Blog
apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Búsqueda Avanzada
apps/frappe/frappe/public/js/frappe/form/control.js +1527,Advanced Search,Búsqueda Avanzada
apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Las instrucciones para el restablecimiento de la contraseña han sido enviadas a su correo electrónico
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \
higher levels for field level permissions.","Nivel 0 es para permisos de nivel de documento, \ niveles superiores para permisos a nivel de campo."
@@ -2127,13 +2135,13 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new re
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Buscando
DocType: Currency,Fraction,Fracción
DocType: LDAP Settings,LDAP First Name Field,LDAP Campo Nombre
apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Seleccione desde los archivos adjuntos existentes
apps/frappe/frappe/public/js/frappe/form/control.js +1085,Select from existing attachments,Seleccione desde los archivos adjuntos existentes
DocType: Custom Field,Field Description,Descripción de Campo
apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Nombre no establecido a través de Prompt
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,Bandeja de entrada de email
DocType: Auto Email Report,Filters Display,Visualización de Filtros
DocType: Website Theme,Top Bar Color,Color de barra superior
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Do you want to unsubscribe from this mailing list?,¿Quieres cancelar la suscripción a esta lista de correo?
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Do you want to unsubscribe from this mailing list?,¿Quieres cancelar la suscripción a esta lista de correo?
DocType: Address,Plant,Planta
apps/frappe/frappe/core/doctype/communication/communication.js +65,Reply All,Responder a todos
DocType: DocType,Setup,Configuración
@@ -2176,7 +2184,7 @@ DocType: User,Send Notifications for Transactions I Follow,Enviarme notificacion
apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: no se puede establecer ""enviar"", ""cancelar"" o ""corregir"" sin escribir primero"
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,¿Está seguro que desea eliminar el adjunto?
apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} <a href=""#Form/{0}/{1}"">{1}</a> is linked with {2} <a href=""#Form/{2}/{3}"">{3}</a>","No se puede eliminar o cancelar debido a {0} <a href=""#Form/{0}/{1}"">{1}</a> está vinculada con {2} <a href=""#Form/{2}/{3}"">{3}</a>"
apps/frappe/frappe/__init__.py +1062,Thank you,Gracias.
apps/frappe/frappe/__init__.py +1070,Thank you,Gracias.
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Guardando
DocType: Print Settings,Print Style Preview,Vista previa de estilo
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
@@ -2191,7 +2199,7 @@ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Añadir
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Sr Nº
,Role Permissions Manager,Administrar permisos
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Nombre del nuevo formato de impresión
apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Eliminar archivo adjunto
apps/frappe/frappe/public/js/frappe/form/control.js +1087,Clear Attachment,Eliminar archivo adjunto
apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Obligatorio:
,User Permissions Manager,Administrar permisos a usuarios
DocType: Property Setter,New value to be set,Nuevo valor a establecer
@@ -2205,7 +2213,7 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +43,Download
DocType: Workflow State,hand-right,mano-derecha
DocType: Website Settings,Subdomain,Sub-dominio
apps/frappe/frappe/config/integrations.py +58,Settings for OAuth Provider,Ajustes para el proveedor OAuth
apps/frappe/frappe/public/js/frappe/form/workflow.js +35,Current status,Estado actual
apps/frappe/frappe/public/js/frappe/form/workflow.js +35,Current status,Estado Actual
DocType: Web Form,Allow Delete,Permitir Borrar
DocType: Email Alert,Message Examples,Ejemplos de mensaje
DocType: Web Form,Login Required,Inicio de sesión obligatorio
@@ -2216,7 +2224,7 @@ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment C
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,Limpiar Registros de Errores
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,"Por favor, seleccione una calificación"
DocType: Email Account,Notify if unreplied for (in mins),Notificarme si no tiene respuesta durante (en minutos)
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,Hace 2 días
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +501,2 days ago,Hace 2 días
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Clasificar las entradas del blog.
DocType: Workflow State,Time,Tiempo
DocType: DocField,Attach,Adjuntar
@@ -2232,6 +2240,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Tamaño
DocType: GSuite Templates,Template Name,Nombre de Plantilla
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,nuevo tipo de documento
DocType: Custom DocPerm,Read,Leer
DocType: Address,Chhattisgarh,Chhattisgarh
DocType: Role Permission for Page and Report,Role Permission for Page and Report,El permiso para la función Página e Informe
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Alinear Valor
apps/frappe/frappe/www/update-password.html +14,Old Password,Contraseña anterior
@@ -2278,7 +2287,7 @@ apps/frappe/frappe/public/js/frappe/roles_editor.js +28,Add all roles,Agregar to
apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your email and message so that we \
can get back to you. Thanks!","Por favor, ingrese su Email y su mensaje para que podamos contactarnos con usted. Gracias!"
apps/frappe/frappe/email/smtp.py +170,Could not connect to outgoing email server,No se pudo conectar con el servidor de correo electrónico saliente
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +162,Thank you for your interest in subscribing to our updates,Gracias por su interés en suscribirse a nuestras actualizaciones
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Thank you for your interest in subscribing to our updates,Gracias por su interés en suscribirse a nuestras actualizaciones
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Custom Column,Columna Personalizada
DocType: Workflow State,resize-full,resize-full
DocType: Workflow State,off,Apagado
@@ -2341,7 +2350,7 @@ DocType: Address,Telangana,Telangana
apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Por defecto {0} debe ser una opción
DocType: Tag Doc Category,Tag Doc Category,Categoría de Etiqueta de Doc
DocType: User,User Image,Imagen de Usuario
apps/frappe/frappe/email/queue.py +289,Emails are muted,Los correos electrónicos se silencian
apps/frappe/frappe/email/queue.py +304,Emails are muted,Los correos electrónicos se silencian
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + Arriba
DocType: Website Theme,Heading Style,Estilo de encabezado
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +183,A new Project with this name will be created,Se creará un nuevo proyecto con este nombre
@@ -2558,7 +2567,6 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,campana
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Error en la alerta por correo electrónico
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Compartir este documento con
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Configuración&gt; Administrador de permisos de usuario
apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} no puede ser un nodo hoja ya que tiene hijos
DocType: Communication,Info,Información
apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Añadir un adjunto
@@ -2613,7 +2621,7 @@ apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,El formato
DocType: Email Alert,Send days before or after the reference date,Enviar días antes o después de la fecha de referencia
DocType: User,Allow user to login only after this hour (0-24),Permitir que el usuario ingrese sólo después de esta hora ( 0-24)
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,Valor
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +165,Click here to verify,Haga clic aquí para verificar
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +166,Click here to verify,Haga clic aquí para verificar
apps/frappe/frappe/utils/password_strength.py +178,Predictable substitutions like '@' instead of 'a' don't help very much.,"Sustituciones predecibles como ""@"" en lugar de ""a"" no ayudan mucho."
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Asignado por mi
apps/frappe/frappe/utils/data.py +462,Zero,Cero
@@ -2625,6 +2633,7 @@ DocType: ToDo,Priority,Prioridad
DocType: Email Queue,Unsubscribe Param,Parámetro de Desuscripción
DocType: Auto Email Report,Weekly,Semanal
DocType: Communication,In Reply To,En respuesta a
apps/frappe/frappe/contacts/doctype/address/address.py +189,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,"No se encontró una plantilla de dirección predeterminada. Por favor, cree uno nuevo en Configuración&gt; Impresión y marca&gt; Plantilla de dirección."
DocType: DocType,Allow Import (via Data Import Tool),Permitir la importación (a través de la herramienta de importación de datos)
apps/frappe/frappe/templates/print_formats/standard_macros.html +30,Sr,Sr
DocType: DocField,Float,Coma Flotante
@@ -2715,7 +2724,6 @@ apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Límite {0} inválido
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Listar un tipo de documento
DocType: Event,Ref Type,Tipo Ref.
apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Si desea cargar nuevos registros, deje en blanco la columna ""name"" (ID)"
DocType: Address,Chattisgarh,Chattisgarh
apps/frappe/frappe/config/core.py +47,Errors in Background Events,Errores en eventos de fondo
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,No. de Columnas
DocType: Workflow State,Calendar,Calendario
@@ -2747,7 +2755,7 @@ apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Asigna
DocType: Integration Request,Remote,Remoto
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Calcular
apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,"Por favor, seleccione 'DocType' primero"
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Confirme su Email
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +174,Confirm Your Email,Confirme su Email
apps/frappe/frappe/www/login.html +42,Or login with,O ingresar con
DocType: Error Snapshot,Locals,Locales
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Comunicado a través de {0} del {1}: {2}
@@ -2764,7 +2772,7 @@ DocType: Web Page,Web Page,Página Web
DocType: Blog Category,Blogger,Blogger
apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},&#39;En búsqueda global&#39; no se permite el tipo {0} en la fila {1}
apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Ver Lista
apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},La fecha debe estar en formato: {0}
apps/frappe/frappe/public/js/frappe/form/control.js +810,Date must be in format: {0},La fecha debe estar en formato: {0}
DocType: Workflow,Don't Override Status,No sobreescriba el estado
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,"Por favor, de una calificación."
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Comentarios Solicitud
@@ -2797,7 +2805,7 @@ DocType: Custom DocPerm,Report,Reporte
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,La cantidad debe ser mayor que 0.
apps/frappe/frappe/desk/reportview.py +107,{0} is saved,{0} guardado
apps/frappe/frappe/core/doctype/user/user.py +327,User {0} cannot be renamed,El usuario {0} no puede ser renombrado
apps/frappe/frappe/model/db_schema.py +107,Fieldname is limited to 64 characters ({0}),Nombre de campo está limitado a 64 caracteres ({0})
apps/frappe/frappe/model/db_schema.py +108,Fieldname is limited to 64 characters ({0}),Nombre de campo está limitado a 64 caracteres ({0})
apps/frappe/frappe/config/desk.py +59,Email Group List,Lista de Grupos de Correo Electrónico
DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],Un archivo de icono con .ico extensión. Debería ser de 16 x 16 píxeles. Generado usando un generador de favicon. [favicon-generator.org]
DocType: Auto Email Report,Format,Formato
@@ -2823,7 +2831,7 @@ DocType: Workflow State,chevron-left,izquierda chevron
DocType: Communication,Sending,Enviando
apps/frappe/frappe/auth.py +231,Not allowed from this IP Address,No permitido desde esta dirección IP
DocType: Website Slideshow,This goes above the slideshow.,Esto va encima de la presentación de diapositivas.
apps/frappe/frappe/config/setup.py +260,Install Applications.,Instalación de aplicaciones
apps/frappe/frappe/config/setup.py +260,Install Applications.,Instalación de Aplicaciones
DocType: Contact,Last Name,Apellido
DocType: Event,Private,Privado
apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,No hay alertas para hoy
@@ -2865,7 +2873,7 @@ apps/frappe/frappe/public/js/frappe/request.js +137,Something went wrong,Algo sa
apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +186,Only {0} entries shown. Please filter for more specific results.,"Solo se muestran {0} entradas. Por favor, filtre para obtener resultados más específicos."
DocType: System Settings,Number Format,Formato de Número
DocType: Auto Email Report,Frequency,Frecuencia
DocType: Custom Field,Insert After,insertar después
DocType: Custom Field,Insert After,insertar Después
DocType: Social Login Keys,GitHub Client Secret,GitHub Client Secret
DocType: Report,Report Name,Nombre del reporte
DocType: Desktop Icon,Reverse Icon Color,Revertir Color de Icono
@@ -2875,7 +2883,7 @@ DocType: Website Settings,Title Prefix,Prefijo de título
DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Las notificaciones y los Emails masivos serán enviados desde este servidor saliente.
DocType: Workflow State,cog,engranaje
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on Migrate,Sincronizar o Migrar
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Visualizando
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Currently Viewing,Visualizando
DocType: DocField,Default,Predeterminado
apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} añadido
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Buscar por &#39;{0}&#39;
@@ -2935,7 +2943,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +771,Report was
DocType: Print Settings,Print Style,Estilo de Impresión
apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,No está vinculado a ningún registro
DocType: Custom DocPerm,Import,Importar / Exportar
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +178,Row {0}: Not allowed to enable Allow on Submit for standard fields,Línea {0}: No es permitido 'habilitar' en ' ' para los campos estandar
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +180,Row {0}: Not allowed to enable Allow on Submit for standard fields,Línea {0}: No es permitido 'habilitar' en ' ' para los campos estandar
apps/frappe/frappe/config/setup.py +100,Import / Export Data,Importar / Exportar datos
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,No se puede cambiar el nombre de roles estándar
DocType: Communication,To and CC,Para y CC
@@ -2961,7 +2969,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo
DocType: Auto Email Report,Filter Meta,Filtro Meta
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"El texto que se mostrará para enlazar a la página web, en caso que este formulario sea una pagina web. El enlace se generará automaticamente basado en 'nombre de pagina' y ruta del sitio principal' (`page_name` and `parent_website_route`)"
DocType: Feedback Request,Feedback Trigger,Disparador de Retroalimentación
apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,"Por favor, primero configure {0}"
apps/frappe/frappe/public/js/frappe/form/control.js +1741,Please set {0} first,"Por favor, primero configure {0}"
DocType: Unhandled Email,Message-id,Mensaje-id
DocType: Patch Log,Patch,Parche
DocType: Async Task,Failed,Falló


+ 72
- 64
frappe/translations/et.csv Datei anzeigen

@@ -14,8 +14,9 @@ apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,"S
DocType: User,Facebook Username,Facebook kasutajanime
DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Märkus: Mitu istungid on lubatud juhul mobiilne seade
apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Lubatud postkastist kasutaja {kasutajad}
apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Ei saa saata see e-posti. Olete ületanud saates piir {0} kirju sel kuul.
apps/frappe/frappe/email/queue.py +225,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Ei saa saata see e-posti. Olete ületanud saates piir {0} kirju sel kuul.
apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Püsivalt Esita {0}?
apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,Laadige alla failide varundamine
DocType: Address,County,maakond
DocType: Workflow,If Checked workflow status will not override status in list view,Kui on valitud töövoo oleku ei alistada staatuse loendivaate
apps/frappe/frappe/client.py +280,Invalid file path: {0},Vigane faili tee: {0}
@@ -80,10 +81,10 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Seaded Ko
apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administrator sisse logitud
DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontakt võimalusi, nagu &quot;Sales Query, Support Query&quot; jne iga uue liini või komadega eraldatult."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Lae
apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Sisesta
apps/frappe/frappe/public/js/frappe/form/control.js +1979,Insert,Sisesta
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Vali {0}
DocType: Print Settings,Classic,Klassika
DocType: Desktop Icon,Color,Värvus
DocType: DocField,Color,Värvus
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +54,For ranges,Sest pliidid
DocType: Workflow State,indent-right,indent-paremale
DocType: Has Role,Has Role,Kas Role
@@ -100,7 +101,7 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To impor
DocType: DocType,Default Print Format,Vaikimisi Prindi Formaat
DocType: Workflow State,Tags,Sildid
apps/frappe/frappe/public/js/frappe/form/workflow.js +33,None: End of Workflow,Puudub: End of töökorraldus
apps/frappe/frappe/model/db_schema.py +346,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} välja ei saa seada ainulaadne {1}, sest on mitte-unikaalne olemasolevate väärtuste"
apps/frappe/frappe/model/db_schema.py +347,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} välja ei saa seada ainulaadne {1}, sest on mitte-unikaalne olemasolevate väärtuste"
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +47,Document Types,Dokumendi liigid
DocType: Address,Jammu and Kashmir,Jammu ja Kashmiri
DocType: Workflow,Workflow State Field,Töövoo riik Field
@@ -231,7 +232,7 @@ DocType: Workflow,Transition Rules,Üleminek reeglid
apps/frappe/frappe/core/doctype/report/report.js +11,Example:,Näide:
DocType: Workflow,Defines workflow states and rules for a document.,Määrab töökorraldust riikide ja reeglid dokument.
DocType: Workflow State,Filter,Filter
apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},"Fieldname {0} ei ole erisümboleid, näiteks {1}"
apps/frappe/frappe/model/db_schema.py +564,Fieldname {0} cannot have special characters like {1},"Fieldname {0} ei ole erisümboleid, näiteks {1}"
apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Uuenda paljud väärtused korraga.
apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Viga: Dokumendi on muudetud pärast olete avanud
apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} loginud: {1}
@@ -260,7 +261,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Võta oma ü
apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Teie tellimus aegus {0}. Uuendada, {1}."
DocType: Workflow State,plus-sign,plussmärk
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Setup juba valmis
apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} ei ole paigaldatud
apps/frappe/frappe/__init__.py +897,App {0} is not installed,App {0} ei ole paigaldatud
DocType: Workflow State,Refresh,Värskenda
DocType: Event,Public,Avalik
apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Midagi näidata
@@ -339,7 +340,6 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Edit Rubriik
DocType: File,File URL,Faili URL
DocType: Version,Table HTML,Tabel HTML
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,"<p> Tulemusi ei leitud "" </p>"
apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Lisa Abonentide
apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Tulevased sündmused Täna
DocType: Email Alert Recipient,Email By Document Field,Email dokumendi Field
@@ -404,7 +404,6 @@ DocType: Desktop Icon,Link,Link
apps/frappe/frappe/utils/file_manager.py +96,No file attached,No lisatud faili
DocType: Version,Version,Version
DocType: User,Fill Screen,Täitke Screen
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,Palun setup vaikimisi e-posti konto seadistamine&gt; E-post&gt; Post konto
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Ei saa kuvada selle puu aruande, kuna puuduvad andmed. Tõenäoliselt on väljafiltreerimisest tõttu õigusi."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Valige File
apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Edit kaudu üleslaadimine
@@ -474,9 +473,9 @@ DocType: User,Reset Password Key,Reset Password Key
DocType: Email Account,Enable Auto Reply,Luba automaatne vastus
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Ei ole näinud
DocType: Workflow State,zoom-in,suurenda
apps/frappe/frappe/email/queue.py +219,Unsubscribe from this list,Loobu sellest nimekirjast
apps/frappe/frappe/email/queue.py +234,Unsubscribe from this list,Loobu sellest nimekirjast
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Reference DocType and Reference Name are required,Viide DocType ja viited nimi on nõutav
apps/frappe/frappe/utils/jinja.py +35,Syntax error in template,Süntaksi viga malli
apps/frappe/frappe/utils/jinja.py +51,Syntax error in template,Süntaksi viga malli
DocType: DocField,Width,Laius
DocType: Email Account,Notify if unreplied,"Teavita, kui Vastuseta"
DocType: System Settings,Minimum Password Score,Minimaalne Parooliskoor
@@ -560,6 +559,7 @@ DocType: Custom Field,Select the label after which you want to insert new field.
DocType: User,Last Login,Viimane sisselogimine
apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Fieldname on vaja järjest {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Veerg
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,Palun seadke vaikimisi e-posti konto seadistustedialoogis&gt; E-post&gt; E-posti konto
DocType: Custom Field,Adds a custom field to a DocType,Lisab custom valdkonnas DOCTYPE
DocType: File,Is Home Folder,Kas Home Folder
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} ei ole kehtiv e-posti aadress
@@ -567,7 +567,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +733,Select atleast 1 reco
apps/frappe/frappe/core/doctype/has_role/has_role.py +13,User '{0}' already has the role '{1}',Kasutaja {0} &#39;on juba roll &quot;{1}&quot;
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,Laadi ja Sync
apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Jagatakse {0}
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe,Tühista
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +132,Unsubscribe,Tühista
DocType: Communication,Reference Name,Viide nimi
apps/frappe/frappe/public/js/frappe/toolbar.js +30,Chat Support,Vestlustugi
DocType: Error Snapshot,Exception,Erand
@@ -585,7 +585,7 @@ DocType: Email Group,Newsletter Manager,Uudiskiri Manager
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Variant 1
apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} kuni {1}
apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Logi vea jooksul taotlusi.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} on edukalt lisatud E Group.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +194,{0} has been successfully added to the Email Group.,{0} on edukalt lisatud E Group.
DocType: Address,Uttar Pradesh,Uttar Pradesh
DocType: Address,Pondicherry,Pondicherry
apps/frappe/frappe/public/js/frappe/upload.js +364,Make file(s) private or public?,Tee fail (id) era- või avalik?
@@ -616,7 +616,7 @@ DocType: Portal Settings,Portal Settings,portaal seaded
DocType: Web Page,0 is highest,0 on kõrgeim
apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,"Kas oled kindel, et tahad uuesti ühendada see side {0}?"
apps/frappe/frappe/www/login.html +104,Send Password,Saada parool
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +45,Attachments,Manused
DocType: Email Queue,Attachments,Manused
apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,Sa ei pea õigused sellele dokumendile juurdepääsuks
DocType: Language,Language Name,keel Nimi
DocType: Email Group Member,Email Group Member,E-post Group liige
@@ -646,7 +646,7 @@ apps/frappe/frappe/utils/password_strength.py +78,Try to use a longer keyboard p
DocType: Feedback Trigger,Check Communication,Saate Side
DocType: Address,Rajasthan,Rajasthan
apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Report Builder aruanded juhib otseselt aruande ehitaja. Pole midagi teha.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Palun kontrollige oma e-posti aadress
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +164,Please verify your Email Address,Palun kontrollige oma e-posti aadress
apps/frappe/frappe/model/document.py +903,none of,ükski
apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Saada mulle koopia
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Laadi Kasutaja reeglid
@@ -657,7 +657,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Si
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban Board {0} ei ole olemas.
apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} Praegu vaatate seda dokumenti
DocType: ToDo,Assigned By Full Name,Määratud Täisnimi
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} uuendatud
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} uuendatud
apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Aruanne ei saa kehtestada ühtse tüüpi
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} päeva tagasi
DocType: Email Account,Awaiting Password,Ootan salasõna
@@ -682,7 +682,7 @@ DocType: Workflow State,Stop,Peatuge
DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,"Link lehele, mida soovite avada. Jäta tühjaks, kui sa tahad teha seda rühma vanem."
DocType: DocType,Is Single,Kas Single
apps/frappe/frappe/core/doctype/user/user.py +720,Sign Up is disabled,Registreeru keelatud
apps/frappe/frappe/email/queue.py +278,{0} has left the conversation in {1} {2},{0} on lahkunud vestlus {1} {2}
apps/frappe/frappe/email/queue.py +293,{0} has left the conversation in {1} {2},{0} on lahkunud vestlus {1} {2}
DocType: Blogger,User ID of a Blogger,Kasutaja ID Blogger
apps/frappe/frappe/core/doctype/user/user.py +287,There should remain at least one System Manager,Seal peaks olema vähemalt üks Süsteemihaldur
DocType: GSuite Settings,Authorization Code,autoriseerimise koodi
@@ -728,6 +728,7 @@ DocType: Event,Event,Sündmus
apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","On {0}, {1} kirjutas:"
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"Ei saa kustutada standard valdkonnas. Saate peita, kui soovite"
DocType: Top Bar Item,For top bar,Top bar
apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,Varundamiseks on järjekorras. Saate alla laadida linki
apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Ei suutnud tuvastada {0}
DocType: Address,Address,Aadress
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +3,Payment Failed,makse ebaõnnestus
@@ -752,13 +753,13 @@ DocType: Web Form,Allow Print,Laske Prindi
apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,No installitud rakendusi
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Märgi valdkonnas nagu Kohustuslik
DocType: Communication,Clicked,Klõpsanud
apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Nr luba &quot;{0} &#39;{1}
apps/frappe/frappe/public/js/legacy/form.js +950,No permission to '{0}' {1},Nr luba &quot;{0} &#39;{1}
DocType: User,Google User ID,Google Kasutaja ID
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Plaanitud saata
DocType: DocType,Track Seen,Rada näinud
apps/frappe/frappe/desk/form/utils.py +55,This method can only be used to create a Comment,Seda meetodit saab kasutada ainult luua Comment
DocType: Event,orange,oranž
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,No {0} found,No {0} leitud
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +558,No {0} found,No {0} leitud
apps/frappe/frappe/config/setup.py +242,Add custom forms.,Lisa custom vorme.
apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} in {2}
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +419,submitted this document,esitatud käesoleva dokumendi
@@ -788,6 +789,7 @@ DocType: Newsletter Email Group,Newsletter Email Group,Infoleht E Group
DocType: Dropbox Settings,Integrations,Integrations
DocType: DocField,Section Break,Sektsioonipiir
DocType: Address,Warehouse,Ladu
DocType: Address,Other Territory,Muu territoorium
,Messages,Sõnumid
apps/frappe/frappe/desk/page/applications/applications.js +49,Portal,Portal
DocType: Email Account,Use Different Email Login ID,Kasutada erinevaid Saatke Sisene ID
@@ -818,6 +820,7 @@ apps/frappe/frappe/utils/data.py +556,1 month ago,1 kuu tagasi
DocType: Contact,User ID,kasutaja ID
DocType: Communication,Sent,Saadetud
DocType: Address,Kerala,Kerala
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} aastat (aastad) tagasi
DocType: File,Lft,LFT
DocType: User,Simultaneous Sessions,samaaegne Sessions
DocType: OAuth Client,Client Credentials,Klient volikirjad
@@ -834,7 +837,7 @@ DocType: Email Queue,Unsubscribe Method,Tühista meetod
DocType: GSuite Templates,Related DocType,seotud DocType
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Muuda lisada sisu
apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Vali keel
apps/frappe/frappe/__init__.py +509,No permission for {0},Ei luba {0}
apps/frappe/frappe/__init__.py +517,No permission for {0},Ei luba {0}
DocType: DocType,Advanced,Edasijõudnud
apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Tundub API võti või API Secret on vale !!!
apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Viide: {0} {1}
@@ -845,6 +848,7 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P
DocType: Email Account,Yahoo Mail,Yahoo Mail
apps/frappe/frappe/limits.py +75,Your subscription will expire tomorrow.,Teie tellimus lõpeb homme.
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +483,Saved!,Salvestatud!
apps/frappe/frappe/public/js/frappe/form/control.js +729,{0} is not a valid hex color,{0} ei ole kehtiv hex värv
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,madam
apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Uuendatud {0} {1}
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,kapten
@@ -872,7 +876,7 @@ DocType: Report,Disabled,Invaliidistunud
DocType: Workflow State,eye-close,silmade lähedal
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth Provider seaded
apps/frappe/frappe/config/setup.py +254,Applications,Rakendused
apps/frappe/frappe/public/js/frappe/request.js +347,Report this issue,Teata sellest küsimus
apps/frappe/frappe/public/js/frappe/request.js +349,Report this issue,Teata sellest küsimus
apps/frappe/frappe/public/js/frappe/form/save.js +79,Name is required,Nimi on vajalik
DocType: Custom Script,Adds a custom script (client or server) to a DocType,Lisab custom script (kliendi või serveri) kuni DocType
DocType: Address,City/Town,City / Town
@@ -966,6 +970,7 @@ DocType: Currency,**Currency** Master,** Valuuta ** Master
DocType: Email Account,No of emails remaining to be synced,Ei kirju jäänud sünkroonida
apps/frappe/frappe/public/js/frappe/upload.js +203,Uploading,üleslaadimine
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,Palun dokumendi salvestada enne loovutamise
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,Klõpsake siin vigu ja soovitusi postitamiseks
DocType: Website Settings,Address and other legal information you may want to put in the footer.,Aadress ja muu juriidiline teave võiksite panna jalus.
DocType: Website Sidebar Item,Website Sidebar Item,Koduleht Sidebar toode
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +44,{0} records updated,{0} arvestust uuendatakse
@@ -979,12 +984,10 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,selge
apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Iga päev üritusi peaks lõppema samal päeval.
DocType: Communication,User Tags,Kasutaja Sildid
apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Kujutiste toomine ..
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Setup&gt; Kasutaja
DocType: Workflow State,download-alt,download-alt
apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Allalaadimine App {0}
DocType: Communication,Feedback Request,Tagasiside taotlus
apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,Pärast väljad on puudu:
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Experimental Feature,Eksperimentaalne Feature
apps/frappe/frappe/www/login.html +30,Sign in,Logi sisse
DocType: Web Page,Main Section,Main jaos
DocType: Page,Icon,Ikoon
@@ -1086,7 +1089,7 @@ DocType: Customize Form,Customize Form,Kohanda vorm
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +104,Mandatory field: set role for,Kohustuslik väli: määrata roll
DocType: Currency,A symbol for this currency. For e.g. $,Sümbol selle valuuta. Sest näiteks $
apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,Frappe Framework
apps/frappe/frappe/model/naming.py +174,Name of {0} cannot be {1},Nimi {0} ei saa olla {1}
apps/frappe/frappe/model/naming.py +180,Name of {0} cannot be {1},Nimi {0} ei saa olla {1}
apps/frappe/frappe/config/setup.py +46,Show or hide modules globally.,Näita või peida moodulid maailmas.
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,Siit kuupäev
apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,Edukus
@@ -1107,7 +1110,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +308,Add A New
apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js +3,See on Website,Vaata Veebisaidi
DocType: Workflow Transition,Next State,Järgmine riik
DocType: User,Block Modules,Block moodulid
apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Ennistamine pikkuse {0} for &#39;{1}&#39; in &#39;{2}&#39;; Seadistamine pikkus {3} paneb kärpimise andmeid.
apps/frappe/frappe/model/db_schema.py +142,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Ennistamine pikkuse {0} for &#39;{1}&#39; in &#39;{2}&#39;; Seadistamine pikkus {3} paneb kärpimise andmeid.
DocType: Print Format,Custom CSS,Custom CSS
apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Lisa kommentaar
apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Vahele jäetud: {0} kuni {1}
@@ -1199,13 +1202,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,
DocType: Custom Role,Custom Role,Custom Role
apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Home / Test Folder 2
DocType: System Settings,Ignore User Permissions If Missing,Ignoreeri Kasutaja reeglid Kui kadunud
apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Palun dokumendi salvestada enne üleslaadimist.
apps/frappe/frappe/public/js/frappe/form/control.js +1075,Please save the document before uploading.,Palun dokumendi salvestada enne üleslaadimist.
apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Sisestage parool
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret
apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Lisa veel üks kommentaar
apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Edit DocType
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Loobus Infoleht
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,Unsubscribed from Newsletter,Loobus Infoleht
apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Voldi peab tulema enne sektsioonipiir
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,Väljatöötamisel
apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Viimati muudetud
DocType: Workflow State,hand-down,käsitsi alla
DocType: Address,GST State,GST riik
@@ -1226,6 +1230,7 @@ DocType: Workflow State,Tag,Lipik
DocType: Custom Script,Script,Script
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Minu seaded
DocType: Website Theme,Text Color,Teksti värv
apps/frappe/frappe/desk/page/backups/backups.py +72,Backup job is already queued. You will receive an email with the download link,Backup töö on juba järjekorras. Saate alla laadida linki
DocType: Desktop Icon,Force Show,Force Näita
apps/frappe/frappe/auth.py +78,Invalid Request,Vale taotlus
apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,See vorm ei ole mingit sisendit
@@ -1336,7 +1341,7 @@ DocType: DocField,Name,Nimi
apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,Olete ületanud maksimaalse ruumi {0} oma plaani. {1}.
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Otsing docs
DocType: OAuth Authorization Code,Valid,kehtiv
apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Ava link
apps/frappe/frappe/public/js/frappe/form/control.js +1354,Open Link,Ava link
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Vali keel
apps/frappe/frappe/desk/form/load.py +46,Did not load,Ei koorma
apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Lisa Row
@@ -1354,6 +1359,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Mõned dokumendid, nagu Arve ei peaks muutma, kui lõplik. Lõpliku riigile nimetatud dokumente nimetatakse esitamist. Saate piirata mis rolle saab esitada."
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Teil ei ole lubatud eksportida käesoleva aruande
apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 kirje valitud
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> Tulemusi pole ' </p>
DocType: Newsletter,Test Email Address,Test e-posti aadress
DocType: ToDo,Sender,Lähetaja
DocType: GSuite Settings,Google Apps Script,Google Apps Script
@@ -1461,7 +1467,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Ple
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Laadimine aruanne
apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Teie tellimus lõpeb täna.
DocType: Page,Standard,Standard
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Kaasa fail
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,Kaasa fail
apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,Salasõna värskendus teatamine
apps/frappe/frappe/desk/page/backups/backups.html +13,Size,Suurus
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,Ülesanne Complete
@@ -1491,7 +1497,7 @@ apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversat
apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Valikud ei seatud link valdkonnas {0}
DocType: Customize Form,"Must be of type ""Attach Image""",Peab olema tüübiga &quot;Kinnitage Image&quot;
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Tühista kõik valikud
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Sa ei saa teha väljalülitatud &quot;Read Only&quot; eest valdkonnas {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +199,You cannot unset 'Read Only' for field {0},Sa ei saa teha väljalülitatud &quot;Read Only&quot; eest valdkonnas {0}
DocType: Auto Email Report,Zero means send records updated at anytime,Zero tähendab Kirjuta andmeid uuendatakse igal ajal
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +22,Complete Setup,Täielik Setup
DocType: Workflow State,asterisk,asterisk
@@ -1505,7 +1511,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +98,Week,nädal
DocType: Social Login Keys,Google,Google
DocType: Email Domain,Example Email Address,Näide e-posti aadress
apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,enamik Kasutatud
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Unsubscribe from Newsletter,Loobun Infoleht
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe from Newsletter,Loobun Infoleht
apps/frappe/frappe/www/login.html +101,Forgot Password,Unustasid parooli
DocType: Dropbox Settings,Backup Frequency,backup Frequency
DocType: Workflow State,Inverse,Inverse
@@ -1583,10 +1589,11 @@ apps/frappe/frappe/config/setup.py +209,"Actions for workflow (e.g. Approve, Can
DocType: Workflow State,flag,lipp
apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +57,Feedback Request is already sent to user,Tagasiside kutse on juba saadetud kasutaja
DocType: Web Page,Text Align,Tekst Align
apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Nimi ei tohi sisaldada erimärke nagu {0}
apps/frappe/frappe/model/naming.py +185,Name cannot contain special characters like {0},Nimi ei tohi sisaldada erimärke nagu {0}
DocType: Contact Us Settings,Forward To Email Address,Edasta e-posti aadress
apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Näita kõik andmed
apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Pealkiri valdkonnas peab olema kehtiv fieldname
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,E-posti konto pole seadistatud. Loo uus e-posti konto seadistamise&gt; e-post&gt; e-posti konto
apps/frappe/frappe/config/core.py +7,Documents,Dokumendid
DocType: Email Flag Queue,Is Completed,on lõpetatud
apps/frappe/frappe/www/me.html +22,Edit Profile,Muuda profiili
@@ -1596,7 +1603,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi
myfield
eval:doc.myfield=='My Value'
eval:doc.age&gt;18","See väli ilmub ainult siis, kui fieldname määratletud siin on väärtuse või reeglid on tõsi (näited): myfield eval: doc.myfield == &quot;Minu Value&quot; eval: doc.age&gt; 18"
apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,täna
apps/frappe/frappe/public/js/frappe/form/control.js +764,Today,täna
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Kui oled selle kasutajad saavad ainult juurdepääs dokumentidele (nt. Blog Post), kus on olemas seos (nt. Blogger)."
DocType: Error Log,Log of Scheduler Errors,Logi of Scheduler vead
DocType: User,Bio,Bio
@@ -1655,7 +1662,7 @@ DocType: Print Format,Js,Js
apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Valige Print Format
apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Lühike klaviatuuri mustrid on lihtne ära arvata
DocType: Portal Settings,Portal Menu,portaal Menu
apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Pikkus {0} peab olema vahemikus 1 kuni 1000
apps/frappe/frappe/model/db_schema.py +115,Length of {0} should be between 1 and 1000,Pikkus {0} peab olema vahemikus 1 kuni 1000
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,Otsi midagi
DocType: DocField,Print Hide,Prindi Peida
apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,Sisesta Value
@@ -1708,8 +1715,7 @@ apps/frappe/frappe/model/document.py +564,Cannot change docstatus from 0 to 2,Ei
DocType: User Permission for Page and Report,Roles Permission,Rollid Luba
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Uuenda
DocType: Error Snapshot,Snapshot View,Pildistamise Vaata
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Palun salvesta Uudiskiri enne saatmist
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} year (s) tagasi
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +101,Please save the Newsletter before sending,Palun salvesta Uudiskiri enne saatmist
apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Valikud peab olema kehtiv DocType eest valdkonnas {0} järjest {1}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Redigeerimine Omadused
DocType: Patch Log,List of patches executed,Loetelu laigud täidetakse
@@ -1727,7 +1733,7 @@ apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Salasõna uuen
DocType: Workflow State,trash,prügi
DocType: System Settings,Older backups will be automatically deleted,Vanemad varukoopiaid kustutatakse automaatselt
DocType: Event,Leave blank to repeat always,Jäta tühjaks korrata alati
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +192,Confirmed,Kinnitatud
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,Confirmed,Kinnitatud
DocType: Event,Ends on,Lõpeb
DocType: Payment Gateway,Gateway,Gateway
apps/frappe/frappe/public/js/frappe/form/linked_with.js +116,Not enough permission to see links,Pole piisavalt luba näha lingid
@@ -1758,7 +1764,6 @@ DocType: Contact,Purchase Manager,Ostujuht
DocType: Custom Script,Sample,Proov
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Määramata Sildid
DocType: Event,Every Week,Iga nädal
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,Saatke konto seadistamine ei. Looge uus e-posti konto seadistamine&gt; E-post&gt; Post konto
apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,"Vajuta siia, et näha oma kasutuse või tõusta kõrgemale kava"
DocType: Custom Field,Is Mandatory Field,Kas kohustuslik väli
DocType: User,Website User,Koduleht Kasutaja
@@ -1766,7 +1771,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +10,Not equals,E
DocType: Integration Request,Integration Request Service,Integratsiooni taotlus Service
DocType: Website Script,Script to attach to all web pages.,Script lisada kõigile veebilehti.
DocType: Web Form,Allow Multiple,Laske Multiple
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +40,Assign,Määra
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +44,Assign,Määra
apps/frappe/frappe/config/setup.py +102,Import / Export Data from .csv files.,Import / Export Andmed CSV faile.
DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Saata ainult Records Uuendus Viimase X Tundi
DocType: Communication,Feedback,Tagasiside
@@ -1846,7 +1851,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,ülejään
apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Palun salvesta enne kinnitamist.
apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Lisatud {0} ({1})
apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Vaikimisi kujundus on seatud {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype ei saa muuta alates {0} kuni {1} reas {2}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +325,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype ei saa muuta alates {0} kuni {1} reas {2}
apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,Role reeglid
DocType: Help Article,Intermediate,kesktaseme
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Saab lugeda
@@ -1861,9 +1866,9 @@ apps/frappe/frappe/core/doctype/user/user.js +42,Refreshing...,Värskendav ...
DocType: Event,Starts on,Algab
DocType: System Settings,System Settings,Süsteemi seaded
apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Session Start ebaõnnestus
apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},See e-posti saadeti {0} ja kopeerida {1}
apps/frappe/frappe/email/queue.py +470,This email was sent to {0} and copied to {1},See e-posti saadeti {0} ja kopeerida {1}
DocType: Workflow State,th,th
apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Loo uus {0}
apps/frappe/frappe/public/js/frappe/form/control.js +1517,Create a new {0},Loo uus {0}
DocType: Email Rule,Is Spam,Kas Spam
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Aruanne {0}
apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Avatud {0}
@@ -1875,12 +1880,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon a
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,Duplicate
DocType: Newsletter,Create and Send Newsletters,Loo ja saatke uudiskirju
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date must be before To Date,Siit kuupäev peab olema enne Et kuupäev
DocType: Address,Andaman and Nicobar Islands,Andamani ja Nicobari saared
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +216,GSuite Document,GSuite dokument
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +29,Please specify which value field must be checked,"Palun täpsustage, mis on väärtuse väljal tuleb kontrollida"
apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"""Parent"" signifies the parent table in which this row must be added","&quot;Vanem&quot; tähendab vanemale tabeli, kus see rida tuleb lisada"
DocType: Website Theme,Apply Style,Rakenda Style
DocType: Feedback Request,Feedback Rating,Tagasiside hinnang
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared With,Jagada
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Jagada
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Seadistamine&gt; Kasutajate õiguste haldur
DocType: Help Category,Help Articles,Abi artiklid
,Modules Setup,Moodulid Setup
apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Tüüp:
@@ -1911,7 +1918,7 @@ DocType: OAuth Client,App Client ID,App Kliendi ID
DocType: Kanban Board,Kanban Board Name,Kanban Board Nimi
DocType: Email Alert Recipient,"Expression, Optional","Expression, Valikuline"
DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,Kopeeri ja kleebi see kood ja tühjad Code.gs oma projekti script.google.com
apps/frappe/frappe/email/queue.py +456,This email was sent to {0},See e-posti saadeti {0}
apps/frappe/frappe/email/queue.py +472,This email was sent to {0},See e-posti saadeti {0}
DocType: DocField,Remember Last Selected Value,Pea meeles viimati valitud väärtus
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +334,Please select Document Type,Palun valige Dokumendi tüüp
DocType: Email Account,Check this to pull emails from your mailbox,Märgi see pull kirju oma postkasti
@@ -1926,6 +1933,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,Vari
DocType: Feedback Trigger,Email Field,E-Field
apps/frappe/frappe/www/update-password.html +59,New Password Required.,New Password vaja.
apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} jagas seda dokumenti {1}
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Seadistamine&gt; Kasutaja
DocType: Website Settings,Brand Image,kaubamärgi maine
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Setup top navigation bar, jalus ja logo."
@@ -1993,8 +2001,8 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa
apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Faili ei saa lugeda vorm {0}
DocType: Auto Email Report,Filter Data,filter andmed
apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Lisa silt
apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Palun lisage fail esimene.
apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Seal olid mõned vead, milles nime, võtke palun ühendust administraatoriga"
apps/frappe/frappe/public/js/frappe/form/control.js +1335,Please attach a file first.,Palun lisage fail esimene.
apps/frappe/frappe/model/naming.py +174,"There were some errors setting the name, please contact the administrator","Seal olid mõned vead, milles nime, võtke palun ühendust administraatoriga"
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Saabuva e-posti konto ei ole õige
apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \
Please enter a valid email address so that we can get back.","Tundub, et sa kirjutanud oma nime asemel oma e-posti. \ Sisestage kehtiv e-posti aadress, et saaksime naasta."
@@ -2046,7 +2054,6 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N
DocType: Custom DocPerm,Create,Loo
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Vale Filter: {0}
DocType: Email Account,no failed attempts,no ebaõnnestunud katseid
apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,Vaike Aadress Mall leitud. Looge uus üks Setup&gt; Trükkimine ja Branding&gt; Aadress Mall.
DocType: GSuite Settings,refresh_token,refresh_token
DocType: Dropbox Settings,App Access Key,App Access Key
DocType: OAuth Bearer Token,Access Token,Access Token
@@ -2072,6 +2079,7 @@ apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl +
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Tee uus {0}
apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,Uus e-posti konto
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +28,Document Restored,dokumendi taastatud
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +203,You can't set 'Options' for field {0},Väljale {0} ei saa määrata &#39;Valikud&#39;
apps/frappe/frappe/core/page/usage_info/usage_info.html +86,Size (MB),Suurus (MB)
DocType: Help Article,Author,autor
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +10,Resume Sending,Jätka saatmine
@@ -2081,7 +2089,7 @@ DocType: Print Settings,Monochrome,Mustvalge
DocType: Address,Purchase User,Ostu Kasutaja
DocType: Workflow,"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.","Erinevad &quot;riigid&quot; selle dokumendi võib esineda. Like &quot;Open&quot;, &quot;Kuni kinnitamine&quot; jms"
apps/frappe/frappe/utils/verified_command.py +43,This link is invalid or expired. Please make sure you have pasted correctly.,"See link on aegunud või vigane. Palun veenduge, et teil on kleebitud õigesti."
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> on edukalt loobunud selle nimekirja.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +136,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> on edukalt loobunud selle nimekirja.
DocType: Web Page,Slideshow,Slideshow
apps/frappe/frappe/contacts/doctype/address_template/address_template.py +31,Default Address Template cannot be deleted,Vaikimisi Aadress Mall ei saa kustutada
DocType: Contact,Maintenance Manager,Hooldus Manager
@@ -2102,7 +2110,7 @@ apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a r
DocType: System Settings,Apply Strict User Permissions,Ranged kasutajalubasid
DocType: DocField,Allow Bulk Edit,Luba Bulk Edit
DocType: Blog Post,Blog Post,Blogi Post
apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Täpsem otsing
apps/frappe/frappe/public/js/frappe/form/control.js +1527,Advanced Search,Täpsem otsing
apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Parooli uuendamine juhised on saadetud e-posti
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \
higher levels for field level permissions.","Tase 0 on dokumendi tasandil õigusi, \ kõrgem tasemed valdkonnas tasandil õigusi."
@@ -2127,13 +2135,13 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new re
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,otsimine
DocType: Currency,Fraction,Murdosa
DocType: LDAP Settings,LDAP First Name Field,LDAP Eesnimi Field
apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Vali olemasolevate manuseid
apps/frappe/frappe/public/js/frappe/form/control.js +1085,Select from existing attachments,Vali olemasolevate manuseid
DocType: Custom Field,Field Description,Field kirjeldus
apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Nimi ei määra kaudu Prompt
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,postkastist
DocType: Auto Email Report,Filters Display,filtrid Display
DocType: Website Theme,Top Bar Color,Top Bar Color
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Do you want to unsubscribe from this mailing list?,Kas soovite selle postituse tellimuse nimekirja?
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Do you want to unsubscribe from this mailing list?,Kas soovite selle postituse tellimuse nimekirja?
DocType: Address,Plant,Taim
apps/frappe/frappe/core/doctype/communication/communication.js +65,Reply All,Vasta kõigile
DocType: DocType,Setup,Setup
@@ -2176,7 +2184,7 @@ DocType: User,Send Notifications for Transactions I Follow,Saada teated Tehingut
apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Ei saa määrata Esita, Loobu, Muuta ilma kirjutamine"
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,"Olete kindel, et soovite kustutada manust?"
apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} <a href=""#Form/{0}/{1}"">{1}</a> is linked with {2} <a href=""#Form/{2}/{3}"">{3}</a>","Ei saa kustutada ega tühistada, sest {0} <a href=""#Form/{0}/{1}"">{1}</a> on seotud {2} <a href=""#Form/{2}/{3}"">{3}</a>"
apps/frappe/frappe/__init__.py +1062,Thank you,Aitäh
apps/frappe/frappe/__init__.py +1070,Thank you,Aitäh
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Salvestamine
DocType: Print Settings,Print Style Preview,Trüki Style eelvaade
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
@@ -2191,7 +2199,7 @@ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Lisa cus
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Sr No
,Role Permissions Manager,Role reeglid Manager
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Nimi uue Print Format
apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Clear Attachment
apps/frappe/frappe/public/js/frappe/form/control.js +1087,Clear Attachment,Clear Attachment
apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Kohustuslik:
,User Permissions Manager,Kasutaja reeglid Manager
DocType: Property Setter,New value to be set,Uus väärtus tuleb määrata
@@ -2216,7 +2224,7 @@ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment C
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,Clear vealogid
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,Palun valige hinnangud
DocType: Email Account,Notify if unreplied for (in mins),"Teavita, kui Vastuseta eest (in minutit)"
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 päeva tagasi
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +501,2 days ago,2 päeva tagasi
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Kategoriseerida blogi postitusi.
DocType: Workflow State,Time,Aeg
DocType: DocField,Attach,Kinnitage
@@ -2232,6 +2240,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,backup S
DocType: GSuite Templates,Template Name,malli nimi
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,Uue dokumendi tüüp
DocType: Custom DocPerm,Read,Lugema
DocType: Address,Chhattisgarh,Chhattisgarh
DocType: Role Permission for Page and Report,Role Permission for Page and Report,Role Luba Page ja aruanne
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Seadke Value
apps/frappe/frappe/www/update-password.html +14,Old Password,vana parool
@@ -2278,7 +2287,7 @@ apps/frappe/frappe/public/js/frappe/roles_editor.js +28,Add all roles,Lisa kõik
apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your email and message so that we \
can get back to you. Thanks!","Palun sisesta nii oma email ja sõnum, et me \ saan sulle tagasi. Tänan!"
apps/frappe/frappe/email/smtp.py +170,Could not connect to outgoing email server,Ei saanud ühendust väljuva e-posti serveri
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +162,Thank you for your interest in subscribing to our updates,Täname huvi tellides meie uuendused
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Thank you for your interest in subscribing to our updates,Täname huvi tellides meie uuendused
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Custom Column,Custom veerg
DocType: Workflow State,resize-full,suurust täis
DocType: Workflow State,off,ära
@@ -2341,7 +2350,7 @@ DocType: Address,Telangana,Telangana
apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Vaikimisi {0} peab olema võimalus
DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategooria
DocType: User,User Image,Kasutaja Image
apps/frappe/frappe/email/queue.py +289,Emails are muted,Kirjad on summutatud
apps/frappe/frappe/email/queue.py +304,Emails are muted,Kirjad on summutatud
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + Up
DocType: Website Theme,Heading Style,Rubriik Style
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +183,A new Project with this name will be created,Uue projekti selle nimega luuakse
@@ -2558,7 +2567,6 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,kell
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Viga Saatke Alert
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Jaga seda dokumenti
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Setup&gt; Kasutaja reeglid Manager
apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} ei saa olla lehttipuga kuna see on lapsed
DocType: Communication,Info,Info
apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Lisa manus
@@ -2602,7 +2610,7 @@ apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,Prindi For
DocType: Email Alert,Send days before or after the reference date,Saada päeva enne või pärast kontrollpäeva
DocType: User,Allow user to login only after this hour (0-24),Luba kasutajal sisse logida alles pärast seda tund (0-24)
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,Väärtus
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +165,Click here to verify,"Vajuta siia, et kontrollida"
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +166,Click here to verify,"Vajuta siia, et kontrollida"
apps/frappe/frappe/utils/password_strength.py +178,Predictable substitutions like '@' instead of 'a' don't help very much.,Ennustatav asendusi nagu &quot;@&quot; asemel &quot;a&quot; ei aita väga palju.
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Määratud Me
apps/frappe/frappe/utils/data.py +462,Zero,null
@@ -2614,6 +2622,7 @@ DocType: ToDo,Priority,Prioriteet
DocType: Email Queue,Unsubscribe Param,Tühista Param
DocType: Auto Email Report,Weekly,Weekly
DocType: Communication,In Reply To,Vastuseks
apps/frappe/frappe/contacts/doctype/address/address.py +189,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,Aadressimalli vaikimisi ei leitud. Loo uus seade häälestus&gt; Trükkimine ja branding&gt; Aadressimall.
DocType: DocType,Allow Import (via Data Import Tool),Luba Import (via Andmed Import Tool)
apps/frappe/frappe/templates/print_formats/standard_macros.html +30,Sr,Sr
DocType: DocField,Float,Float
@@ -2704,7 +2713,6 @@ apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Kehtetu piir {0}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Nimekiri dokumendi tüüp
DocType: Event,Ref Type,Ref Type
apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Kui teil on üleslaadimise uusi rekordeid, jäta &quot;nimi&quot; (ID) veerg tühjaks."
DocType: Address,Chattisgarh,Chattisgarhi
apps/frappe/frappe/config/core.py +47,Errors in Background Events,Vead Background Sündmused
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,No veergude
DocType: Workflow State,Calendar,Kalender
@@ -2736,7 +2744,7 @@ apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Ülesa
DocType: Integration Request,Remote,kauge
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Arvutama
apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Palun valige DocType esimene
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Kinnita oma e-
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +174,Confirm Your Email,Kinnita oma e-
apps/frappe/frappe/www/login.html +42,Or login with,Või logige sisse
DocType: Error Snapshot,Locals,Kohalikud
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Kaudu edastatud {0} on {1}: {2}
@@ -2753,7 +2761,7 @@ DocType: Web Page,Web Page,Veebi lehekülg
DocType: Blog Category,Blogger,Blogger
apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},&quot;Global Search ole lubatud tüüpi {0} järjest {1}
apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Vaata Nimekiri
apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Kuupäev peab olema kujul: {0}
apps/frappe/frappe/public/js/frappe/form/control.js +810,Date must be in format: {0},Kuupäev peab olema kujul: {0}
DocType: Workflow,Don't Override Status,Ära alistamisolek
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Palun andke hinnang.
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Tagasiside taotlus
@@ -2786,7 +2794,7 @@ DocType: Custom DocPerm,Report,Aruanne
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Summa peab olema suurem kui 0.
apps/frappe/frappe/desk/reportview.py +107,{0} is saved,{0} on salvestatud
apps/frappe/frappe/core/doctype/user/user.py +327,User {0} cannot be renamed,Kasutaja {0} ei saa ümber
apps/frappe/frappe/model/db_schema.py +107,Fieldname is limited to 64 characters ({0}),FIELDNAME on piiratud kuni 64 tähemärki ({0})
apps/frappe/frappe/model/db_schema.py +108,Fieldname is limited to 64 characters ({0}),FIELDNAME on piiratud kuni 64 tähemärki ({0})
apps/frappe/frappe/config/desk.py +59,Email Group List,E Group loetelu
DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],Ikoon faili ICO laiendamine. Peaks olema 16 x 16 px. Loodud kasutades Favicon generaator. [favicon-generator.org]
DocType: Auto Email Report,Format,vorming
@@ -2864,7 +2872,7 @@ DocType: Website Settings,Title Prefix,Pealkiri Eesliide
DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Teavitused ja lahtiselt kirju saadetakse selle posti serverit.
DocType: Workflow State,cog,hammas
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on Migrate,Sync Migrate
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Praegu Kasutaja
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Currently Viewing,Praegu Kasutaja
DocType: DocField,Default,Vaikimisi
apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} lisati
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Otsi &quot;{0}&quot;
@@ -2924,7 +2932,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +771,Report was
DocType: Print Settings,Print Style,Prindi Style
apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,Ei ole seotud ühegi rekord
DocType: Custom DocPerm,Import,Import
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +178,Row {0}: Not allowed to enable Allow on Submit for standard fields,"Row {0}: Ei ole lubatud, et võimaldada lubada Esita standard väljad"
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +180,Row {0}: Not allowed to enable Allow on Submit for standard fields,"Row {0}: Ei ole lubatud, et võimaldada lubada Esita standard väljad"
apps/frappe/frappe/config/setup.py +100,Import / Export Data,Import / Export Info
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,Standard rolle ei saa ümber
DocType: Communication,To and CC,Ja CC
@@ -2950,7 +2958,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo
DocType: Auto Email Report,Filter Meta,Filter Meta
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Tekst kuvatakse Link Web Page juhul, kui see on veebilehele. Link liinil hakkab automaatselt vastavalt sellele, `page_name` ja` parent_website_route`"
DocType: Feedback Request,Feedback Trigger,Tagasiside Trigger
apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Palun määra {0} Esimene
apps/frappe/frappe/public/js/frappe/form/control.js +1741,Please set {0} first,Palun määra {0} Esimene
DocType: Unhandled Email,Message-id,Message-ID
DocType: Patch Log,Patch,Plaaster
DocType: Async Task,Failed,Ebaõnnestunud


+ 72
- 64
frappe/translations/fa.csv Datei anzeigen

@@ -14,8 +14,9 @@ apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,ش
DocType: User,Facebook Username,فیس بوک نام کاربری
DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,توجه داشته باشید: جلسات متعدد خواهد شد در صورت از دستگاه تلفن همراه اجازه
apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},صندوق دریافت ایمیل فعال برای کاربران {} کاربران
apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,می توانید این ایمیل ارسال کنید. شما به محدودیت ارسال ایمیل {0} برای این ماه عبور کرده اند.
apps/frappe/frappe/email/queue.py +225,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,می توانید این ایمیل ارسال کنید. شما به محدودیت ارسال ایمیل {0} برای این ماه عبور کرده اند.
apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,به طور دائمی ثبت کردن {0}؟
apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,فایل پشتیبان را دانلود کنید
DocType: Address,County,شهرستان
DocType: Workflow,If Checked workflow status will not override status in list view,اگر وضعیت گردش کار بررسی خواهد شد وضعیت در نمای لیست باطل نیست
apps/frappe/frappe/client.py +280,Invalid file path: {0},مسیر فایل نامعتبر: {0}
@@ -80,10 +81,10 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,تنظی
apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,خارج شده است در مدیر
DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",گزینه های تماس، مانند &quot;فروش پرس و جو، پشتیبانی پرس و جو&quot; و غیره که هر کدام در یک خط جدید و یا از هم جدا شده توسط کاما.
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. دانلود
apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,درج
apps/frappe/frappe/public/js/frappe/form/control.js +1979,Insert,درج
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},انتخاب {0}
DocType: Print Settings,Classic,کلاسیک
DocType: Desktop Icon,Color,رنگ
DocType: DocField,Color,رنگ
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +54,For ranges,برای بردهای
DocType: Workflow State,indent-right,تورفتگی راست
DocType: Has Role,Has Role,است نقش
@@ -100,7 +101,7 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To impor
DocType: DocType,Default Print Format,به طور پیش فرض فرمت چاپ
DocType: Workflow State,Tags,برچسب ها
apps/frappe/frappe/public/js/frappe/form/workflow.js +33,None: End of Workflow,هیچ: پایان گردش کار
apps/frappe/frappe/model/db_schema.py +346,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",{0} درست است نه می تواند تنظیم شود که در {1} منحصر به فرد، به عنوان مقادیر غیر منحصر به فرد موجود وجود دارد
apps/frappe/frappe/model/db_schema.py +347,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",{0} درست است نه می تواند تنظیم شود که در {1} منحصر به فرد، به عنوان مقادیر غیر منحصر به فرد موجود وجود دارد
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +47,Document Types,انواع سند
DocType: Address,Jammu and Kashmir,جامو و کشمیر
DocType: Workflow,Workflow State Field,فیلد وضعیت گردش کار
@@ -231,7 +232,7 @@ DocType: Workflow,Transition Rules,مشاهده قوانین گذار
apps/frappe/frappe/core/doctype/report/report.js +11,Example:,به عنوان مثال:
DocType: Workflow,Defines workflow states and rules for a document.,تعریف وضعیت های گردش کار و قوانین برای یک سند
DocType: Workflow State,Filter,صافی
apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Fieldname {0} می تواند از کاراکترهای خاص مانند ندارد {1}
apps/frappe/frappe/model/db_schema.py +564,Fieldname {0} cannot have special characters like {1},Fieldname {0} می تواند از کاراکترهای خاص مانند ندارد {1}
apps/frappe/frappe/config/setup.py +121,Update many values at one time.,به روز رسانی ارزش بسیاری در یک زمان.
apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,خطا: سند اصلاح شده است بعد از شما آن را باز کرد
apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} سیستم خارج: {1}
@@ -260,7 +261,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,دریافت
apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.",اشتراک شما در {0} منقضی شده است. برای تمدید، {1}.
DocType: Workflow State,plus-sign,به علاوه نشانه
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,راه اندازی در حال حاضر کامل
apps/frappe/frappe/__init__.py +889,App {0} is not installed,نرم افزار {0} نصب نشده است
apps/frappe/frappe/__init__.py +897,App {0} is not installed,نرم افزار {0} نصب نشده است
DocType: Workflow State,Refresh,تازه کردن
DocType: Event,Public,عمومی
apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,هیچ چیز برای نشان دادن
@@ -339,7 +340,6 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,ویرایش سرنویس
DocType: File,File URL,URL فایل
DocType: Version,Table HTML,جدول HTML
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,"<p style=""""> نتیجه ای یافت نشد برای ' </p>"
apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,اضافه کردن مشترکین
apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,رویدادهای نزدیک برای امروز
DocType: Email Alert Recipient,Email By Document Field,ایمیل درست سند
@@ -404,7 +404,6 @@ DocType: Desktop Icon,Link,پیوند
apps/frappe/frappe/utils/file_manager.py +96,No file attached,بدون فایل پیوست
DocType: Version,Version,نسخه
DocType: User,Fill Screen,پر کردن صفحه
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,لطفا حساب به طور پیش فرض راه اندازی ایمیل از راه اندازی&gt; ایمیل&gt; حساب ایمیل
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",قادر به نمایش این گزارش درخت، با توجه به داده های از دست رفته. به احتمال زیاد، آن است که با توجه به مجوزهای فیلتر می شود.
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. فایل را انتخاب کنید
apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,ویرایش از طریق بارگذاری
@@ -474,9 +473,9 @@ DocType: User,Reset Password Key,کلید بازیابی کلمه عبور
DocType: Email Account,Enable Auto Reply,خودکار را فعال پاسخ
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,دیده نمی
DocType: Workflow State,zoom-in,بزرگنمایی
apps/frappe/frappe/email/queue.py +219,Unsubscribe from this list,لغو اشتراک از این لیست
apps/frappe/frappe/email/queue.py +234,Unsubscribe from this list,لغو اشتراک از این لیست
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Reference DocType and Reference Name are required,مرجع DOCTYPE و نام مرجع مورد نیاز
apps/frappe/frappe/utils/jinja.py +35,Syntax error in template,خطای نحوی در قالب
apps/frappe/frappe/utils/jinja.py +51,Syntax error in template,خطای نحوی در قالب
DocType: DocField,Width,عرض
DocType: Email Account,Notify if unreplied,اطلاع عنوانهای بدون پاسخ
DocType: System Settings,Minimum Password Score,حداقل کلمه عبور
@@ -560,6 +559,7 @@ DocType: Custom Field,Select the label after which you want to insert new field.
DocType: User,Last Login,تاریخ و زمان آخرین ورود
apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Fieldname در ردیف مورد نیاز است {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,ستون
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,لطفا تنظیمات پست الکترونیک از Setup&gt; Email&gt; Account Email
DocType: Custom Field,Adds a custom field to a DocType,می افزاید: درست سفارشی را به یک DOCTYPE
DocType: File,Is Home Folder,صفحه اصلی پوشه است
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} است یک آدرس ایمیل معتبر نیست
@@ -567,7 +567,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +733,Select atleast 1 reco
apps/frappe/frappe/core/doctype/has_role/has_role.py +13,User '{0}' already has the role '{1}',کاربر &#39;{0}&#39; در حال حاضر نقش دارد: &#39;{1}&#39;
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,آپلود و همگام سازی
apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},اشتراک گذاشته شده با {0}
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe,لغو اشتراک
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +132,Unsubscribe,لغو اشتراک
DocType: Communication,Reference Name,نام مرجع
apps/frappe/frappe/public/js/frappe/toolbar.js +30,Chat Support,پشتیبانی چت
DocType: Error Snapshot,Exception,استثناء
@@ -585,7 +585,7 @@ DocType: Email Group,Newsletter Manager,مدیر خبرنامه
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,انتخاب 1
apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} به {1}
apps/frappe/frappe/config/setup.py +89,Log of error during requests.,ورود به سیستم از خطا در هنگام درخواست.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} با موفقیت به ایمیل گروه اضافه شده است.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +194,{0} has been successfully added to the Email Group.,{0} با موفقیت به ایمیل گروه اضافه شده است.
DocType: Address,Uttar Pradesh,اوتار پرادش
DocType: Address,Pondicherry,پاندیچری
apps/frappe/frappe/public/js/frappe/upload.js +364,Make file(s) private or public?,ساخت فایل (بازدید کنندگان) خصوصی یا عمومی؟
@@ -616,7 +616,7 @@ DocType: Portal Settings,Portal Settings,تنظیمات پورتال
DocType: Web Page,0 is highest,0 بالاترین است
apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,آیا مطمئن هستید که می خواهید به پیوند این ارتباط {0} به؟
apps/frappe/frappe/www/login.html +104,Send Password,ارسال رمز عبور
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +45,Attachments,فایل های پیوست
DocType: Email Queue,Attachments,فایل های پیوست
apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,شما اجازه دسترسی به این سند را ندارید
DocType: Language,Language Name,نام زبان
DocType: Email Group Member,Email Group Member,ایمیل گروه کاربران
@@ -646,7 +646,7 @@ apps/frappe/frappe/utils/password_strength.py +78,Try to use a longer keyboard p
DocType: Feedback Trigger,Check Communication,بررسی ارتباط
DocType: Address,Rajasthan,راجستان
apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,گزارش گزارش ساز به طور مستقیم توسط سازنده گزارش اداره می شود. کاری برای انجام دادن نیست.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,لطفا آدرس ایمیل خود را تایید کنید
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +164,Please verify your Email Address,لطفا آدرس ایمیل خود را تایید کنید
apps/frappe/frappe/model/document.py +903,none of,هیچکدام از
apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,ارسال یک کپی
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,آپلود مجوز کاربر
@@ -657,7 +657,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Si
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban و انجمن {0} وجود ندارد.
apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} در حال مشاهده این سند
DocType: ToDo,Assigned By Full Name,اختصاص داده شده توسط نام و نام خانوادگی
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} بروز شد
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} بروز شد
apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,گزارش می تواند برای انواع تنها نمی تواند تنظیم شود
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} روز پیش
DocType: Email Account,Awaiting Password,در انتظار رمز عبور
@@ -682,7 +682,7 @@ DocType: Workflow State,Stop,توقف
DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,لینک به صفحه شما می خواهید برای باز کردن. خالی بگذارید اگر شما می خواهید به آن پدر و مادر گروه را.
DocType: DocType,Is Single,آیا تنها
apps/frappe/frappe/core/doctype/user/user.py +720,Sign Up is disabled,ثبت نام کردن غیر فعال است
apps/frappe/frappe/email/queue.py +278,{0} has left the conversation in {1} {2},{0} تا به گفتگو در سمت چپ {1} {2}
apps/frappe/frappe/email/queue.py +293,{0} has left the conversation in {1} {2},{0} تا به گفتگو در سمت چپ {1} {2}
DocType: Blogger,User ID of a Blogger,ID کاربر از بلاگر
apps/frappe/frappe/core/doctype/user/user.py +287,There should remain at least one System Manager,باید حداقل یک مدیر سیستم وجود دارد باقی می ماند
DocType: GSuite Settings,Authorization Code,کد مجوز
@@ -728,6 +728,7 @@ DocType: Event,Event,واقعه
apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:",در {0}، {1} نوشته است:
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,می تواند درست استاندارد را حذف کنید. شما می توانید آن را پنهان اگر شما می خواهید
DocType: Top Bar Item,For top bar,برای نوار بالا
apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,برای تهیه پشتیبان به صورت صف شما یک ایمیل با لینک دانلود دریافت خواهید کرد
apps/frappe/frappe/utils/bot.py +148,Could not identify {0},می تواند شناسایی کند {0}
DocType: Address,Address,نشانی
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +3,Payment Failed,پرداخت ناموفق
@@ -752,13 +753,13 @@ DocType: Web Form,Allow Print,اجازه چاپ
apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,هیچ برنامه نصب
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,علامت گذاری به عنوان زمینه اجباری
DocType: Communication,Clicked,کلیک
apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},بدون اجازه &#39;{0}&#39; {1}
apps/frappe/frappe/public/js/legacy/form.js +950,No permission to '{0}' {1},بدون اجازه &#39;{0}&#39; {1}
DocType: User,Google User ID,گوگل ID کاربر
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,برنامه ریزی به ارسال
DocType: DocType,Track Seen,آهنگ دیده
apps/frappe/frappe/desk/form/utils.py +55,This method can only be used to create a Comment,این روش تنها می تواند مورد استفاده برای ایجاد یک نظر
DocType: Event,orange,نارنجی
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,No {0} found,بدون {0} یافت
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +558,No {0} found,بدون {0} یافت
apps/frappe/frappe/config/setup.py +242,Add custom forms.,اضافه کردن فرم های سفارشی.
apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} در {2}
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +419,submitted this document,ارسال این سند
@@ -788,6 +789,7 @@ DocType: Newsletter Email Group,Newsletter Email Group,عضویت در خبرن
DocType: Dropbox Settings,Integrations,یکپارچگی
DocType: DocField,Section Break,شکستن بخش
DocType: Address,Warehouse,مخزن
DocType: Address,Other Territory,قلمرو دیگر
,Messages,پیام
apps/frappe/frappe/desk/page/applications/applications.js +49,Portal,پرتال
DocType: Email Account,Use Different Email Login ID,استفاده های مختلف ایمیل ورود به ID
@@ -818,6 +820,7 @@ apps/frappe/frappe/utils/data.py +556,1 month ago,1 ماه پیش
DocType: Contact,User ID,ID کاربر
DocType: Communication,Sent,فرستاده
DocType: Address,Kerala,کرالا
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} سال (ها) قبل
DocType: File,Lft,LFT
DocType: User,Simultaneous Sessions,جلسات به طور همزمان
DocType: OAuth Client,Client Credentials,مدارک مشتری
@@ -834,7 +837,7 @@ DocType: Email Queue,Unsubscribe Method,روش لغو اشتراک
DocType: GSuite Templates,Related DocType,DOCTYPE های مرتبط
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,ویرایش برای اضافه کردن مطالب
apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,انتخاب زبان
apps/frappe/frappe/__init__.py +509,No permission for {0},بدون اجازه برای {0}
apps/frappe/frappe/__init__.py +517,No permission for {0},بدون اجازه برای {0}
DocType: DocType,Advanced,پیشرفته
apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,به نظر می رسد کلید API یا API راز اشتباه است.
apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},مرجع: {0} {1}
@@ -845,6 +848,7 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P
DocType: Email Account,Yahoo Mail,ایمیل یاهو
apps/frappe/frappe/limits.py +75,Your subscription will expire tomorrow.,اشتراک شما خواهد فردا به پایان می رسد.
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +483,Saved!,ذخیره شد!
apps/frappe/frappe/public/js/frappe/form/control.js +729,{0} is not a valid hex color,{0} یک رنگ شصت معتبر نیست
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,خانم
apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},به روز شده {0}: {1}
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,استاد
@@ -872,7 +876,7 @@ DocType: Report,Disabled,غیر فعال
DocType: Workflow State,eye-close,چشم نزدیک
DocType: OAuth Provider Settings,OAuth Provider Settings,تنظیمات ارائه دهنده OAuth تأیید
apps/frappe/frappe/config/setup.py +254,Applications,برنامه
apps/frappe/frappe/public/js/frappe/request.js +347,Report this issue,گزارش این موضوع
apps/frappe/frappe/public/js/frappe/request.js +349,Report this issue,گزارش این موضوع
apps/frappe/frappe/public/js/frappe/form/save.js +79,Name is required,نام مورد نیاز است
DocType: Custom Script,Adds a custom script (client or server) to a DocType,اسکریپت های سفارشی (مشتری یا سرور) می افزاید: به یک DOCTYPE
DocType: Address,City/Town,شهرستان / شهر
@@ -966,6 +970,7 @@ DocType: Currency,**Currency** Master,** ** استاد ارز
DocType: Email Account,No of emails remaining to be synced,بدون ایمیل های باقی مانده به همگام سازی می شود
apps/frappe/frappe/public/js/frappe/upload.js +203,Uploading,آپلود
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,لطفا سند قبل از انتساب نجات
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,برای ارسال اشکالات و پیشنهادات اینجا را کلیک کنید
DocType: Website Settings,Address and other legal information you may want to put in the footer.,نشانی و دیگر اطلاعات حقوقی شما ممکن است بخواهید در پایین صفحه قرار داده است.
DocType: Website Sidebar Item,Website Sidebar Item,وب سایت نوار مورد
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +44,{0} records updated,{0} سوابق به روز شده
@@ -979,12 +984,10 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,واضح
apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,هر روز باید وقایع در همان روز به پایان برسد.
DocType: Communication,User Tags,کاربر برچسب ها
apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,واکشی تصاویر ..
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,راه اندازی&gt; کاربر
DocType: Workflow State,download-alt,دانلود-ALT
apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},دانلود برنامه {0}
DocType: Communication,Feedback Request,درخواست پاسخ به بازخورد
apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,زمینه های زیر را از دست رفته:
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Experimental Feature,از ویژگی های تجربی
apps/frappe/frappe/www/login.html +30,Sign in,وارد شدن
DocType: Web Page,Main Section,بخش اصلی
DocType: Page,Icon,شمایل
@@ -1086,7 +1089,7 @@ DocType: Customize Form,Customize Form,سفارشی کردن فرم
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +104,Mandatory field: set role for,فیلد اجباری: نقش تعیین شده برای
DocType: Currency,A symbol for this currency. For e.g. $,نماد برای این ارز. برای مثال $
apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,چارچوب یخ در بهشت
apps/frappe/frappe/model/naming.py +174,Name of {0} cannot be {1},نام {0} نمی تواند {1}
apps/frappe/frappe/model/naming.py +180,Name of {0} cannot be {1},نام {0} نمی تواند {1}
apps/frappe/frappe/config/setup.py +46,Show or hide modules globally.,نمایش یا پنهان ماژول در سطح جهان.
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,از تاریخ
apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,موفقیت
@@ -1107,7 +1110,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +308,Add A New
apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js +3,See on Website,مشاهده وب سایت
DocType: Workflow Transition,Next State,حالت بعدی
DocType: User,Block Modules,ماژول بلوک
apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,بازگشت به طول {0} برای &#39;{1}&#39; در &#39;{2}&#39;؛ تنظیم طول و {3} خواهد برشی از داده شود.
apps/frappe/frappe/model/db_schema.py +142,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,بازگشت به طول {0} برای &#39;{1}&#39; در &#39;{2}&#39;؛ تنظیم طول و {3} خواهد برشی از داده شود.
DocType: Print Format,Custom CSS,CSS سفارشی
apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,اضافه کردن نظر
apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},نادیده گرفته: {0} به {1}
@@ -1199,13 +1202,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,
DocType: Custom Role,Custom Role,نقش سفارشی
apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,صفحه اصلی / پوشه تست 2
DocType: System Settings,Ignore User Permissions If Missing,نادیده گرفتن مجوز کاربر اگر از دست رفته
apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,لطفا قبل از آپلود سند را ذخیره کنید.
apps/frappe/frappe/public/js/frappe/form/control.js +1075,Please save the document before uploading.,لطفا قبل از آپلود سند را ذخیره کنید.
apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,رمز عبور خود را وارد کنید
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox به دسترسی راز
apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,اضافه کردن یکی دیگر از نظر
apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,ویرایش DOCTYPE
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,لغو اشتراک از عضویت در خبرنامه
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,Unsubscribed from Newsletter,لغو اشتراک از عضویت در خبرنامه
apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,ریختن (فولد) باید قبل از شکستن بخش آمده
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,در حال توسعه
apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,آخرین تغییر توسط
DocType: Workflow State,hand-down,دست به پایین
DocType: Address,GST State,GST دولت
@@ -1226,6 +1230,7 @@ DocType: Workflow State,Tag,برچسب
DocType: Custom Script,Script,خط
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,تنظیمات من
DocType: Website Theme,Text Color,رنگ متن
apps/frappe/frappe/desk/page/backups/backups.py +72,Backup job is already queued. You will receive an email with the download link,کار پشتیبان گیری در حال حاضر در صف قرار دارد شما یک ایمیل با لینک دانلود دریافت خواهید کرد
DocType: Desktop Icon,Force Show,نیروی نمایش
apps/frappe/frappe/auth.py +78,Invalid Request,درخواست نامعتبر است
apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,این شکل هیچ ورودی ندارد
@@ -1336,7 +1341,7 @@ DocType: DocField,Name,نام
apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,شما در فضای حداکثر {0} برای طرح خود را فراتر رفته است. {1}.
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,جستجو اسناد
DocType: OAuth Authorization Code,Valid,معتبر
apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,لینک گسترش
apps/frappe/frappe/public/js/frappe/form/control.js +1354,Open Link,لینک گسترش
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,زبان شما
apps/frappe/frappe/desk/form/load.py +46,Did not load,بارگیری نشد
apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,اضافه کردن ردیف
@@ -1354,6 +1359,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.",اسناد خاص، مانند یک فاکتور، نباید تغییر کنند یک بار نهایی است. دولت نهایی برای چنین اسناد ارائه شده نامیده می شود. شما می توانید محدود است که نقش می توانید ارسال کنید.
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,شما مجاز به خروجی گرفتن از این گزارش نیستید
apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 آیتم انتخاب شده
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,"<p style=""""> هیچ نتیجه ای برای ' </p>"
DocType: Newsletter,Test Email Address,تست آدرس ایمیل
DocType: ToDo,Sender,فرستنده
DocType: GSuite Settings,Google Apps Script,اسکریپت برنامه گوگل
@@ -1461,7 +1467,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Ple
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,در حال بارگیری گزارش
apps/frappe/frappe/limits.py +72,Your subscription will expire today.,اشتراک شما امروز منقضی خواهد شد.
DocType: Page,Standard,استاندارد
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,ضمیمهی فایل
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,ضمیمهی فایل
apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,رمز عبور هشدار از طریق به روز رسانی
apps/frappe/frappe/desk/page/backups/backups.html +13,Size,اندازه
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,انتساب کامل
@@ -1491,7 +1497,7 @@ apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversat
apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},گزینه ها برای درست تنظیم نشده لینک {0}
DocType: Customize Form,"Must be of type ""Attach Image""",باید از این نوع باشد &quot;ضمیمه تصویر&quot;
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,لغو انتخاب همه
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},شما نمی توانید تنظیم نشده فقط خواندنی برای فیلد{0} بگذارید
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +199,You cannot unset 'Read Only' for field {0},شما نمی توانید تنظیم نشده فقط خواندنی برای فیلد{0} بگذارید
DocType: Auto Email Report,Zero means send records updated at anytime,صفر به معنای ارسال سوابق به روز شده در هر زمان
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +22,Complete Setup,راه اندازی کامل
DocType: Workflow State,asterisk,ستاره
@@ -1505,7 +1511,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +98,Week,هفته
DocType: Social Login Keys,Google,گوگل
DocType: Email Domain,Example Email Address,به عنوان مثال آدرس ایمیل
apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,بیشترین استفاده شده
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Unsubscribe from Newsletter,از عضویت در خبرنامه
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe from Newsletter,از عضویت در خبرنامه
apps/frappe/frappe/www/login.html +101,Forgot Password,رمز عبور را فراموش کرده اید
DocType: Dropbox Settings,Backup Frequency,فرکانس پشتیبان گیری
DocType: Workflow State,Inverse,معکوس
@@ -1583,10 +1589,11 @@ apps/frappe/frappe/config/setup.py +209,"Actions for workflow (e.g. Approve, Can
DocType: Workflow State,flag,پرچم
apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +57,Feedback Request is already sent to user,درخواست پاسخ به فیدبک قبلا برای کاربر ارسال
DocType: Web Page,Text Align,متن چین
apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},نام می تواند شامل کاراکترهای خاص مانند {0}
apps/frappe/frappe/model/naming.py +185,Name cannot contain special characters like {0},نام می تواند شامل کاراکترهای خاص مانند {0}
DocType: Contact Us Settings,Forward To Email Address,به جلو به آدرس پست الکترونیک
apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,نمایش همه داده ها
apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,عنوان درست باید fieldname معتبر باشد
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,حساب ایمیل تنظیم نشده است. لطفا یک حساب ایمیل جدید ایجاد کنید از Setup&gt; Email&gt; Account Email
apps/frappe/frappe/config/core.py +7,Documents,اسناد
DocType: Email Flag Queue,Is Completed,به اتمام است
apps/frappe/frappe/www/me.html +22,Edit Profile,ویرایش پروفایل
@@ -1596,7 +1603,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi
myfield
eval:doc.myfield=='My Value'
eval:doc.age&gt;18",در این زمینه به نظر می رسد تنها در صورتی که FIELDNAME تعریف شده در اینجا دارای ارزش و یا قوانین واقعی (مثال): myfield محاسبه-: doc.myfield == &#39;ارزش من &quot;تابع eval: doc.age&gt; 18
apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,امروز
apps/frappe/frappe/public/js/frappe/form/control.js +764,Today,امروز
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",هنگامی که شما تعیین کرده اند این، کاربران تنها اسناد دسترسی قادر باشد (. به عنوان مثال وبلاگ پست) که در آن پیوند وجود دارد (به عنوان مثال بلاگر).
DocType: Error Log,Log of Scheduler Errors,ورود از خطاها زمانبند
DocType: User,Bio,بیوگرافی
@@ -1655,7 +1662,7 @@ DocType: Print Format,Js,جی اس
apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,انتخاب قالب چاپ
apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,الگوهای صفحه کلید کوتاه به راحتی حدس زده
DocType: Portal Settings,Portal Menu,منو پورتال
apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,طول {0} باید بین 1 و 1000 می باشد
apps/frappe/frappe/model/db_schema.py +115,Length of {0} should be between 1 and 1000,طول {0} باید بین 1 و 1000 می باشد
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,جستجو برای هر چیزی
DocType: DocField,Print Hide,چاپ مخفی
apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,ارزش را وارد کنید
@@ -1708,8 +1715,7 @@ apps/frappe/frappe/model/document.py +564,Cannot change docstatus from 0 to 2,آ
DocType: User Permission for Page and Report,Roles Permission,نقش اجازه
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,به روز رسانی
DocType: Error Snapshot,Snapshot View,عکس فوری دیدگاه
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,لطفا قبل از ارسال خبرنامه نجات
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} سال پیش
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +101,Please save the Newsletter before sending,لطفا قبل از ارسال خبرنامه نجات
apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},گزینه باید DOCTYPE معتبر برای درست {0} در ردیف شود {1}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,ویرایش ویژگیها
DocType: Patch Log,List of patches executed,فهرست تکه اعدام
@@ -1727,7 +1733,7 @@ apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,به روز ر
DocType: Workflow State,trash,نخاله
DocType: System Settings,Older backups will be automatically deleted,پشتیبان گیری قدیمی تر به طور خودکار حذف
DocType: Event,Leave blank to repeat always,فیلد را خالی بگذارید به تکرار همیشه
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +192,Confirmed,تایید شده
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,Confirmed,تایید شده
DocType: Event,Ends on,به پایان می رسد در
DocType: Payment Gateway,Gateway,دروازه
apps/frappe/frappe/public/js/frappe/form/linked_with.js +116,Not enough permission to see links,نه اجازه اندازه کافی برای دیدن لینک
@@ -1758,7 +1764,6 @@ DocType: Contact,Purchase Manager,مدیر خرید
DocType: Custom Script,Sample,نمونه
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,دسته بندی نشده برچسب ها
DocType: Event,Every Week,هر هفته
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,حساب ایمیل را تنظیم کنیم. لطفا یک حساب ایمیل جدید از راه اندازی&gt; ایمیل&gt; حساب ایمیل ایجاد
apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,برای بررسی استفاده از خود را و یا ارتقاء به یک برنامه بالاتر اینجا را کلیک کنید
DocType: Custom Field,Is Mandatory Field,آیا فیلد اجباری
DocType: User,Website User,وب سایت کاربر
@@ -1766,7 +1771,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +10,Not equals,
DocType: Integration Request,Integration Request Service,یکپارچه سازی خدمات درخواست پاسخ به
DocType: Website Script,Script to attach to all web pages.,اسکریپت به ضمیمه به تمام صفحات وب است.
DocType: Web Form,Allow Multiple,اجازه چندین
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +40,Assign,اختصاص دادن
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +44,Assign,اختصاص دادن
apps/frappe/frappe/config/setup.py +102,Import / Export Data from .csv files.,واردات / صادرات داده ها از فایل های. CSV.
DocType: Auto Email Report,Only Send Records Updated in Last X Hours,فقط ارسال سوابق به روز شده در تاریخ و زمان آخرین X ساعت
DocType: Communication,Feedback,باز خورد
@@ -1846,7 +1851,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,باقی
apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,لطفا قبل از اتصال را نجات دهد.
apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),اضافه شده {0} ({1})
apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},تم پیش فرض در مجموعه {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype می تواند از عوض نمی شوند {0} به {1} در ردیف {2}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +325,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype می تواند از عوض نمی شوند {0} به {1} در ردیف {2}
apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,مجوز های نقش
DocType: Help Article,Intermediate,حد واسط
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,خوانش پذیر
@@ -1861,9 +1866,9 @@ apps/frappe/frappe/core/doctype/user/user.js +42,Refreshing...,تازه کردن
DocType: Event,Starts on,شروع می شود در
DocType: System Settings,System Settings,تنظیمات سیستم
apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,جلسه شروع نشد
apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},این ایمیل {0} به فرستاده شد و کپی شده را به {1}
apps/frappe/frappe/email/queue.py +470,This email was sent to {0} and copied to {1},این ایمیل {0} به فرستاده شد و کپی شده را به {1}
DocType: Workflow State,th,هفتم
apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},ایجاد جدید {0}
apps/frappe/frappe/public/js/frappe/form/control.js +1517,Create a new {0},ایجاد جدید {0}
DocType: Email Rule,Is Spam,اسپم
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},گزارش {0}
apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},گسترش {0}
@@ -1875,12 +1880,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon a
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,تکراری
DocType: Newsletter,Create and Send Newsletters,ایجاد و ارسال خبرنامه
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date must be before To Date,از تاریخ باید قبل از به روز می شود
DocType: Address,Andaman and Nicobar Islands,جزایر اندام و نیکوبار
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +216,GSuite Document,GSuite سند
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +29,Please specify which value field must be checked,لطفا مشخص کنید که مقدار فیلد باید بررسی شود
apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"""Parent"" signifies the parent table in which this row must be added",&quot;پدر و مادر&quot; به معنای جدول پدر و مادر است که در آن این ردیف باید اضافه شده
DocType: Website Theme,Apply Style,درخواست سبک
DocType: Feedback Request,Feedback Rating,رتبه فیدبک
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared With,اشتراک گذاشته شده با
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,اشتراک گذاشته شده با
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,تنظیم&gt; مدیریت مجوز کاربر
DocType: Help Category,Help Articles,راهنما مقاله
,Modules Setup,ماژول راه اندازی
apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,نوع:
@@ -1911,7 +1918,7 @@ DocType: OAuth Client,App Client ID,برنامه سرویس گیرنده ID
DocType: Kanban Board,Kanban Board Name,نام Kanban و انجمن
DocType: Email Alert Recipient,"Expression, Optional",بیان، اختیاری
DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,کپی و این کد را در و خالی Code.gs در پروژه های خود را در script.google.com رب
apps/frappe/frappe/email/queue.py +456,This email was sent to {0},این ایمیل فرستاده شد {0}
apps/frappe/frappe/email/queue.py +472,This email was sent to {0},این ایمیل فرستاده شد {0}
DocType: DocField,Remember Last Selected Value,به یاد داشته باشید آخرین مقدار انتخاب شده
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +334,Please select Document Type,لطفا انتخاب نوع سند
DocType: Email Account,Check this to pull emails from your mailbox,بررسی این به جلو و ایمیلهای صندوق پستی خود را
@@ -1926,6 +1933,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,ان
DocType: Feedback Trigger,Email Field,ایمیل درست
apps/frappe/frappe/www/update-password.html +59,New Password Required.,رمز جدید مورد نیاز است.
apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} این سند را با {1} به اشتراک گذارده است
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,تنظیم&gt; کاربر
DocType: Website Settings,Brand Image,تصویر نام تجاری
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.",راه اندازی ناوبری بار بالا، بالا و پایین صفحه و آرم.
@@ -1993,8 +2001,8 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa
apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},قادر به خواندن فرمت فایل برای {0}
DocType: Auto Email Report,Filter Data,فیلتر داده
apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,اضافه کردن برچسب
apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,لطفا ابتدا یک فایل ضمیمه کنید.
apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator",برخی از خطاهای تنظیم نام وجود دارد، لطفا با مدیر تماس بگیرید
apps/frappe/frappe/public/js/frappe/form/control.js +1335,Please attach a file first.,لطفا ابتدا یک فایل ضمیمه کنید.
apps/frappe/frappe/model/naming.py +174,"There were some errors setting the name, please contact the administrator",برخی از خطاهای تنظیم نام وجود دارد، لطفا با مدیر تماس بگیرید
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,حساب های ایمیل های دریافتی درست نیست
apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \
Please enter a valid email address so that we can get back.",به نظر میرسد شما نام خود را به جای ایمیل خود را به نوشته اند. \ لطفا یک آدرس ایمیل معتبر به طوری که ما می توانید دریافت کنید.
@@ -2046,7 +2054,6 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,
DocType: Custom DocPerm,Create,ساختن
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},فیلتر نامعتبر: {0}
DocType: Email Account,no failed attempts,تلاش بدون شکست خورده
apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,بدون پیش فرض آدرس الگو پیدا شده است. لطفا یکی از جدید از راه اندازی&gt; چاپ و تبلیغات تجاری&gt; آدرس الگو ایجاد کنید.
DocType: GSuite Settings,refresh_token,refresh_token
DocType: Dropbox Settings,App Access Key,برنامه کلید دسترسی
DocType: OAuth Bearer Token,Access Token,نشانه دسترسی
@@ -2072,6 +2079,7 @@ apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,کلی
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},یک جدید {0}
apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,حساب پست الکترونیک جدید
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +28,Document Restored,سند ترمیم
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +203,You can't set 'Options' for field {0},شما نمی توانید گزینه &#39;Options&#39; را برای فیلد {0} تنظیم کنید
apps/frappe/frappe/core/page/usage_info/usage_info.html +86,Size (MB),حجم (MB)
DocType: Help Article,Author,نویسنده
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +10,Resume Sending,رزومه ارسال
@@ -2081,7 +2089,7 @@ DocType: Print Settings,Monochrome,تک رنگ
DocType: Address,Purchase User,خرید کاربر
DocType: Workflow,"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.",متفاوت &quot;ایالات&quot; این سند در تواند وجود داشته باشد. مانند &quot;باز کردن&quot;، &quot;در انتظار تأیید&quot; و غیره
apps/frappe/frappe/utils/verified_command.py +43,This link is invalid or expired. Please make sure you have pasted correctly.,این لینک نامعتبر است و یا تمام شده است. لطفا مطمئن شوید که شما به درستی جا به جا.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> با موفقیت از این لیست پستی را دریافت نمیکنید.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +136,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> با موفقیت از این لیست پستی را دریافت نمیکنید.
DocType: Web Page,Slideshow,نمایش به صورت اسلاید
apps/frappe/frappe/contacts/doctype/address_template/address_template.py +31,Default Address Template cannot be deleted,به طور پیش فرض آدرس الگو نمی تواند حذف شود
DocType: Contact,Maintenance Manager,مدیر نگهداری و تعمیرات
@@ -2102,7 +2110,7 @@ apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a r
DocType: System Settings,Apply Strict User Permissions,درخواست ویرایش کاربر اکید
DocType: DocField,Allow Bulk Edit,اجازه ویرایش انبوه
DocType: Blog Post,Blog Post,وبلاگ پست
apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,جست و جوی پیشرفته
apps/frappe/frappe/public/js/frappe/form/control.js +1527,Advanced Search,جست و جوی پیشرفته
apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,دستورالعمل تنظیم مجدد رمز عبور به پست الکترونیک شما ارسال شده است
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \
higher levels for field level permissions.",سطح 0 است برای مجوز سطح سند، \ سطوح بالاتر برای مجوز سطح مزرعه.
@@ -2127,13 +2135,13 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new re
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,جستجوکردن
DocType: Currency,Fraction,کسر
DocType: LDAP Settings,LDAP First Name Field,LDAP نام درست
apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,انتخاب کنید و از فایل پیوست موجود
apps/frappe/frappe/public/js/frappe/form/control.js +1085,Select from existing attachments,انتخاب کنید و از فایل پیوست موجود
DocType: Custom Field,Field Description,درست شرح
apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,نام و نام خانوادگی از طریق فوری تنظیم نشده
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,صندوق دریافت ایمیل
DocType: Auto Email Report,Filters Display,فیلتر ها
DocType: Website Theme,Top Bar Color,بالا نوار رنگی
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Do you want to unsubscribe from this mailing list?,آیا شما می خواهید برای لغو اشتراک از این لیست پستی.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Do you want to unsubscribe from this mailing list?,آیا شما می خواهید برای لغو اشتراک از این لیست پستی.
DocType: Address,Plant,گیاه
apps/frappe/frappe/core/doctype/communication/communication.js +65,Reply All,پاسخ به همه
DocType: DocType,Setup,برپایی
@@ -2176,7 +2184,7 @@ DocType: User,Send Notifications for Transactions I Follow,ارسال اخبار
apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write",{0}: آیا می توانم تنظیم نشده ارسال، لغو، اصلاح بدون نوشتن
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,آیا شما مطمئن هستید که میخواهید فایل پیوست را حذف کنید؟
apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} <a href=""#Form/{0}/{1}"">{1}</a> is linked with {2} <a href=""#Form/{2}/{3}"">{3}</a>","نمی توانید حذف و یا لغو دلیل {0} <a href=""#Form/{0}/{1}"">{1}</a> با مرتبط {2} <a href=""#Form/{2}/{3}"">{3}</a>"
apps/frappe/frappe/__init__.py +1062,Thank you,متشکرم
apps/frappe/frappe/__init__.py +1070,Thank you,متشکرم
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,پس انداز
DocType: Print Settings,Print Style Preview,چاپ سبک پیشنمایش
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
@@ -2191,7 +2199,7 @@ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,اضاف
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,SR بدون
,Role Permissions Manager,مدیر دسترسی نقش
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,نام جدید فرمت چاپ
apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,فایل پیوست روشن
apps/frappe/frappe/public/js/frappe/form/control.js +1087,Clear Attachment,فایل پیوست روشن
apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,اجباری:
,User Permissions Manager,مدیر دسترسی کاربر
DocType: Property Setter,New value to be set,ارزش جدید به تنظیم شود
@@ -2216,7 +2224,7 @@ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment C
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,روشن سیاهههای مربوط به خطا
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,لطفا یک امتیاز را انتخاب کنید
DocType: Email Account,Notify if unreplied for (in mins),اطلاع عنوانهای بدون پاسخ برای (در دقیقه)
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 روز پیش
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +501,2 days ago,2 روز پیش
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,دسته بندی پست های وبلاگ.
DocType: Workflow State,Time,زمان
DocType: DocField,Attach,ضمیمه کردن
@@ -2232,6 +2240,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,اندا
DocType: GSuite Templates,Template Name,نام الگو
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,نوع جدیدی از سند
DocType: Custom DocPerm,Read,خواندن
DocType: Address,Chhattisgarh,Chhattisgarh
DocType: Role Permission for Page and Report,Role Permission for Page and Report,اجازه نقش صفحه و گزارش
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,تراز ارزش
apps/frappe/frappe/www/update-password.html +14,Old Password,رمز عبور
@@ -2278,7 +2287,7 @@ apps/frappe/frappe/public/js/frappe/roles_editor.js +28,Add all roles,اضافه
apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your email and message so that we \
can get back to you. Thanks!",لطفا هر دو ایمیل و پیام خود را وارد کنید تا ما \ بازگشت به شما می توانید دریافت کنید. با تشکر از شما
apps/frappe/frappe/email/smtp.py +170,Could not connect to outgoing email server,به سرور ایمیل خروجی وصل کنید
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +162,Thank you for your interest in subscribing to our updates,تشکر از شما برای منافع خود را در اشتراک به روز رسانی ما
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Thank you for your interest in subscribing to our updates,تشکر از شما برای منافع خود را در اشتراک به روز رسانی ما
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Custom Column,ستون های سفارشی
DocType: Workflow State,resize-full,تغییر اندازه کامل
DocType: Workflow State,off,خاموش
@@ -2341,7 +2350,7 @@ DocType: Address,Telangana,تلنگانا
apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,به طور پیش فرض برای {0} باید گزینه باشد
DocType: Tag Doc Category,Tag Doc Category,برچسب توضیحات رده
DocType: User,User Image,کاربر تصویر
apps/frappe/frappe/email/queue.py +289,Emails are muted,ایمیل خاموش می
apps/frappe/frappe/email/queue.py +304,Emails are muted,ایمیل خاموش می
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,کلیدهای Ctrl + تا
DocType: Website Theme,Heading Style,عنوان سبک
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +183,A new Project with this name will be created,یک پروژه جدید با این نام ایجاد خواهد شد
@@ -2558,7 +2567,6 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,ناقوس
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,اشکال در ایمیل هشدار
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,به اشتراک گذاشتن این سند با
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,راه اندازی&gt; مدیریت ویرایش کاربر
apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} نمی تواند یک پیام بگذارد چون ایشان زیر مجموعه دارند
DocType: Communication,Info,اطلاعات
apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,پیوست را اضافه کنید
@@ -2602,7 +2610,7 @@ apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,چاپ ف
DocType: Email Alert,Send days before or after the reference date,ارسال روز قبل یا بعد از تاریخ مرجع
DocType: User,Allow user to login only after this hour (0-24),اجازه می دهد تا کاربر را به تنها پس از این ساعت ورود (0-24)
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,ارزش
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +165,Click here to verify,به منظور بررسی اینجا را کلیک کنید
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +166,Click here to verify,به منظور بررسی اینجا را کلیک کنید
apps/frappe/frappe/utils/password_strength.py +178,Predictable substitutions like '@' instead of 'a' don't help very much.,تعویض قابل پیش بینی مانند &#39;@&#39; به جای &#39;A&#39; خیلی زیاد کمک نمی کند.
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,اختصاص داده شده توسط من
apps/frappe/frappe/utils/data.py +462,Zero,صفر
@@ -2614,6 +2622,7 @@ DocType: ToDo,Priority,اولویت
DocType: Email Queue,Unsubscribe Param,لغو اشتراک پرم
DocType: Auto Email Report,Weekly,هفتگی
DocType: Communication,In Reply To,در پاسخ به
apps/frappe/frappe/contacts/doctype/address/address.py +189,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,پیش فرض قالب آدرس یافت نشد لطفا یک صفحه جدید از Setup&gt; Printing and Branding&gt; Template Address ایجاد کنید.
DocType: DocType,Allow Import (via Data Import Tool),اجازه واردات (از طریق وارد کردن داده ها ابزار)
apps/frappe/frappe/templates/print_formats/standard_macros.html +30,Sr,SR
DocType: DocField,Float,شناور
@@ -2704,7 +2713,6 @@ apps/frappe/frappe/commands/site.py +451,Invalid limit {0},حد نامعتبر {
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,لیست یک نوع سند
DocType: Event,Ref Type,کد عکس نوع
apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.",اگر شما در حال آپلود رکورد جدید، ترک &quot;نام&quot; (ID) ستون خالی.
DocType: Address,Chattisgarh,چتیسگر
apps/frappe/frappe/config/core.py +47,Errors in Background Events,خطا در زمینه رویدادها
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,بدون ستون
DocType: Workflow State,Calendar,تقویم
@@ -2736,7 +2744,7 @@ apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},انت
DocType: Integration Request,Remote,از راه دور
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,محاسبه
apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,لطفا ابتدا DOCTYPE را انتخاب کنید
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,تکرار ایمیل شما
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +174,Confirm Your Email,تکرار ایمیل شما
apps/frappe/frappe/www/login.html +42,Or login with,و یا برای ورود با
DocType: Error Snapshot,Locals,مردم محلی
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},ارتباط از طریق {0} در {1}: {2}
@@ -2753,7 +2761,7 @@ DocType: Web Page,Web Page,صفحه وب
DocType: Blog Category,Blogger,وبلاگ نویس
apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},«در جهانی جستجو برای نوع مجاز نیست {0} در ردیف {1}
apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,نمایش فهرست
apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},تاریخ باید در فرمت شود: {0}
apps/frappe/frappe/public/js/frappe/form/control.js +810,Date must be in format: {0},تاریخ باید در فرمت شود: {0}
DocType: Workflow,Don't Override Status,هنوز وضعیت باطل نیست
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,لطفا یک امتیاز می دهد.
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} درخواست بازخورد
@@ -2786,7 +2794,7 @@ DocType: Custom DocPerm,Report,گزارش
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,مقدار باید بزرگتر از 0 باشد.
apps/frappe/frappe/desk/reportview.py +107,{0} is saved,{0} ذخیره شده
apps/frappe/frappe/core/doctype/user/user.py +327,User {0} cannot be renamed,کاربر {0} نمی تواند تغییر نام داد شود
apps/frappe/frappe/model/db_schema.py +107,Fieldname is limited to 64 characters ({0}),FIELDNAME به 64 کاراکتر محدود ({0})
apps/frappe/frappe/model/db_schema.py +108,Fieldname is limited to 64 characters ({0}),FIELDNAME به 64 کاراکتر محدود ({0})
apps/frappe/frappe/config/desk.py +59,Email Group List,ایمیل فهرست گروه
DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],یک فایل آیکون با .ICO فرمت. باید 16 × 16 پیکسل. تولید شده با استفاده از یک ژنراتور فاویکون. [favicon-generator.org]
DocType: Auto Email Report,Format,قالب
@@ -2864,7 +2872,7 @@ DocType: Website Settings,Title Prefix,عنوان پیشوند
DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,اخبار و ایمیل فله خواهد شد از این سرور خروجی ارسال می شود.
DocType: Workflow State,cog,دندانه دار کردن
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on Migrate,همگام سازی در مهاجرت
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,در حال مشاهده
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Currently Viewing,در حال مشاهده
DocType: DocField,Default,پیش فرض
apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} اضافه شد
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',جستجو برای &#39;{0}
@@ -2924,7 +2932,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +771,Report was
DocType: Print Settings,Print Style,چاپ سبک
apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,به هر رکورد در ارتباط نیست
DocType: Custom DocPerm,Import,واردات
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +178,Row {0}: Not allowed to enable Allow on Submit for standard fields,ردیف {0}: مجاز به فعال کردن اجازه در زمینه های استاندارد ثبت کردن
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +180,Row {0}: Not allowed to enable Allow on Submit for standard fields,ردیف {0}: مجاز به فعال کردن اجازه در زمینه های استاندارد ثبت کردن
apps/frappe/frappe/config/setup.py +100,Import / Export Data,واردات / صادرات داده ها
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,نقش استاندارد نمی تواند تغییر نام داد
DocType: Communication,To and CC,به و CC
@@ -2950,7 +2958,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo
DocType: Auto Email Report,Filter Meta,فیلتر متا
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,متن را برای لینک به وب سایت نمایش داده می شود این فرم دارای یک صفحه وب است. مسیر لینک خواهد شد به صورت خودکار تولید بر اساس `` page_name` و parent_website_route`
DocType: Feedback Request,Feedback Trigger,ماشه فیدبک
apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,لطفا {0} برای اولین بار
apps/frappe/frappe/public/js/frappe/form/control.js +1741,Please set {0} first,لطفا {0} برای اولین بار
DocType: Unhandled Email,Message-id,پیام-ID
DocType: Patch Log,Patch,وصله
DocType: Async Task,Failed,شکست خورد


+ 72
- 64
frappe/translations/fi.csv Datei anzeigen

@@ -14,8 +14,9 @@ apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,Si
DocType: User,Facebook Username,Facebook käyttäjänimi
DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Huomio: Useat istunnot saavat tapauksessa mobiililaitteen
apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Käytössä sähköpostilaatikko käyttäjän {käyttäjille}
apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Voi lähettää tämän sähköpostin. Olet ylittänyt lähettämisen raja {0} sähköposteja tässä kuussa.
apps/frappe/frappe/email/queue.py +225,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Voi lähettää tämän sähköpostin. Olet ylittänyt lähettämisen raja {0} sähköposteja tässä kuussa.
apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Lähetetäänkö pysyvästi {0}
apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,Lataa tiedostojen varmuuskopiointi
DocType: Address,County,Lääni
DocType: Workflow,If Checked workflow status will not override status in list view,Jos tarkastettu työnkulun tila ei ohita tilan luettelona
apps/frappe/frappe/client.py +280,Invalid file path: {0},Virheellinen tiedoston polku: {0}
@@ -80,10 +81,10 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Yhteystie
apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,ylläpitäjä kirjautunut
DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","yhteystietojen vaihtoehtomääritykset, kuten ""myyntikysely, tukikysely"" jne jokainen omalla rivillä tai pilkulla erotettuna"
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Vie
apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,aseta
apps/frappe/frappe/public/js/frappe/form/control.js +1979,Insert,aseta
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Valitse {0}
DocType: Print Settings,Classic,perinteinen
DocType: Desktop Icon,Color,väri
DocType: DocField,Color,väri
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +54,For ranges,alueille
DocType: Workflow State,indent-right,luetelmakohta-oikeus
DocType: Has Role,Has Role,on rooli
@@ -100,7 +101,7 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To impor
DocType: DocType,Default Print Format,oletus tulostusmuoto
DocType: Workflow State,Tags,tagit
apps/frappe/frappe/public/js/frappe/form/workflow.js +33,None: End of Workflow,Ei mitään: työmäärän loppu
apps/frappe/frappe/model/db_schema.py +346,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} kenttää ei voi asettaa ainutlaatuiseksi {1}, sillä ei-ainutlaatuisia arvoja on olemassa"
apps/frappe/frappe/model/db_schema.py +347,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} kenttää ei voi asettaa ainutlaatuiseksi {1}, sillä ei-ainutlaatuisia arvoja on olemassa"
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +47,Document Types,asiakirja tyypit
DocType: Address,Jammu and Kashmir,Jammun ja Kashmirin
DocType: Workflow,Workflow State Field,Työnkulun tilakenttä
@@ -231,7 +232,7 @@ DocType: Workflow,Transition Rules,siirto säännöt
apps/frappe/frappe/core/doctype/report/report.js +11,Example:,esimerkki:
DocType: Workflow,Defines workflow states and rules for a document.,määrittelee työmäärän tilat ja -säännöt asiakirjaa varten
DocType: Workflow State,Filter,Suodatin
apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Kenttänimi {0} nimessä ei voi olla erikoismerkkejä kuten {1}
apps/frappe/frappe/model/db_schema.py +564,Fieldname {0} cannot have special characters like {1},Kenttänimi {0} nimessä ei voi olla erikoismerkkejä kuten {1}
apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Päivitä monet arvot kerralla.
apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,virhe: asiakirja on muutettu sen jälkeen kun olet avannut sen
apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} kirjautui ulos: {1}
@@ -260,7 +261,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,hanki maailm
apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.",Tilauksesi päättyi {0}. Uusimaan {1}.
DocType: Workflow State,plus-sign,plus-merkki
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Asennus on jo valmis
apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} ei ole asennettu
apps/frappe/frappe/__init__.py +897,App {0} is not installed,App {0} ei ole asennettu
DocType: Workflow State,Refresh,Päivitä
DocType: Event,Public,Julkinen
apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Ei mitään näytettävää
@@ -339,7 +340,6 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,muokkaa ylätynniste
DocType: File,File URL,Tiedoston URL
DocType: Version,Table HTML,Taulukko HTML
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> Ei tuloksia ei löytynyt ' </p>
apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,lisätä tilaajia
apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Päivän tapahtumat
DocType: Email Alert Recipient,Email By Document Field,sähköposti asiakirjakentän mukaan
@@ -404,7 +404,6 @@ DocType: Desktop Icon,Link,Linkki
apps/frappe/frappe/utils/file_manager.py +96,No file attached,Ei tiedostoa liitteenä
DocType: Version,Version,Versio
DocType: User,Fill Screen,Täytä näyttö
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,Ole hyvä setup oletus sähköpostitilin asetukset&gt; Sähköposti&gt; sähköpostitili
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Tätä raporttipuuta ei voi näyttää puuttuvien tietojen vuoksi, todennäköisesti käyttöoikeudet on suodatettu pois"
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Valitse tiedosto
apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,muokkaa lataamalla
@@ -474,9 +473,9 @@ DocType: User,Reset Password Key,Nollaa salasana Key
DocType: Email Account,Enable Auto Reply,aktivoi automaattivastaus
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Ei Seen
DocType: Workflow State,zoom-in,lähennä
apps/frappe/frappe/email/queue.py +219,Unsubscribe from this list,Peruuta tämän sähköpostilistan tilaus
apps/frappe/frappe/email/queue.py +234,Unsubscribe from this list,Peruuta tämän sähköpostilistan tilaus
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Reference DocType and Reference Name are required,viitetyyppi ja viitteen nimi ovat vaadittuja tietoja
apps/frappe/frappe/utils/jinja.py +35,Syntax error in template,Syntaksivirheen malliin
apps/frappe/frappe/utils/jinja.py +51,Syntax error in template,Syntaksivirheen malliin
DocType: DocField,Width,Leveys
DocType: Email Account,Notify if unreplied,Ilmoita jos Vastaamattomat
DocType: System Settings,Minimum Password Score,Pienin Salasana Pisteet
@@ -560,6 +559,7 @@ DocType: Custom Field,Select the label after which you want to insert new field.
DocType: User,Last Login,Viimeksi kirjautunut
apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Kentän nimi tulee olla yhdellä rivillä {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,sarake
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,Aseta oletussähköpostitili Asetukset&gt; Sähköposti&gt; Sähköposti -tili
DocType: Custom Field,Adds a custom field to a DocType,Lisää oman kentän tietuetyyppiin
DocType: File,Is Home Folder,On Kotikansio
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} ei ole kelvollinen sähköpostiosoite
@@ -567,7 +567,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +733,Select atleast 1 reco
apps/frappe/frappe/core/doctype/has_role/has_role.py +13,User '{0}' already has the role '{1}',"Käyttäjällä {0} on jo rooli ""{1}"""
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,Tuo ja synkronoi
apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Jaettu {0} kanssa
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe,Lopeta tilaus
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +132,Unsubscribe,Lopeta tilaus
DocType: Communication,Reference Name,Viite Name
apps/frappe/frappe/public/js/frappe/toolbar.js +30,Chat Support,Chat Support
DocType: Error Snapshot,Exception,Poikkeus
@@ -585,7 +585,7 @@ DocType: Email Group,Newsletter Manager,Uutiskirje hallinta
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Vaihtoehto 1
apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} ja {1}
apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Kirjaudu virheen aikana pyyntöjä.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} on onnistuneesti lisätty Sähköpostiryhmä.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +194,{0} has been successfully added to the Email Group.,{0} on onnistuneesti lisätty Sähköpostiryhmä.
DocType: Address,Uttar Pradesh,Uttar Pradesh
DocType: Address,Pondicherry,Pondicherry
apps/frappe/frappe/public/js/frappe/upload.js +364,Make file(s) private or public?,Tee tiedosto (t) yksityisen tai julkisen?
@@ -616,7 +616,7 @@ DocType: Portal Settings,Portal Settings,Portaalin asetukset
DocType: Web Page,0 is highest,0 on korkein
apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,"Oletko varma, että haluat linkittää tätä tiedonannon {0}?"
apps/frappe/frappe/www/login.html +104,Send Password,Lähetä salasana
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +45,Attachments,Liitteet
DocType: Email Queue,Attachments,Liitteet
apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,Sinulla ei ole oikeuksia käyttää tätä dokumenttia
DocType: Language,Language Name,Kielen Nimi
DocType: Email Group Member,Email Group Member,Sähköposti Group jäsen
@@ -646,7 +646,7 @@ apps/frappe/frappe/utils/password_strength.py +78,Try to use a longer keyboard p
DocType: Feedback Trigger,Check Communication,Tarkista Communication
DocType: Address,Rajasthan,rajasthan
apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,"Raportin hallinta, raportteja hallinnoidaan suoraan raportin rakennus kohdassa"
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Vahvista sähköpostiosoite
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +164,Please verify your Email Address,Vahvista sähköpostiosoite
apps/frappe/frappe/model/document.py +903,none of,mikään
apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Lähetä kopio minulle
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Tuo käyttöoikeudet
@@ -657,7 +657,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Si
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban Hallitus {0} ei ole olemassa.
apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} parhaillaan tarkastelevat tätä asiakirjaa
DocType: ToDo,Assigned By Full Name,Määrittämä Koko nimi
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} päivitetty
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} päivitetty
apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,raporttia ei voi määrittää yhdelle tyypille
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} päivää sitten
DocType: Email Account,Awaiting Password,Odotetaan Salasana
@@ -682,7 +682,7 @@ DocType: Workflow State,Stop,pysäytä
DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,"linkitä sivulle jonka haluat avata, jätä tyhjäksi jos haluat tehdä ryhmän"
DocType: DocType,Is Single,on yksittäinen
apps/frappe/frappe/core/doctype/user/user.py +720,Sign Up is disabled,Rekisteröidy ole käytössä
apps/frappe/frappe/email/queue.py +278,{0} has left the conversation in {1} {2},{0} on jättänyt keskustelun {1} {2}
apps/frappe/frappe/email/queue.py +293,{0} has left the conversation in {1} {2},{0} on jättänyt keskustelun {1} {2}
DocType: Blogger,User ID of a Blogger,Bloginkäyttäjän käyttäjätunnus
apps/frappe/frappe/core/doctype/user/user.py +287,There should remain at least one System Manager,Järjestelmällä on oltava vähintään yksi järjestelmänhallitsija
DocType: GSuite Settings,Authorization Code,Authorization Code
@@ -728,6 +728,7 @@ DocType: Event,Event,tapahtuma
apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Käytössä {0}, {1} kirjoitti:"
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"peruskenttää ei voi poistaa, halutessasi voit piilottaa sen"
DocType: Top Bar Item,For top bar,yläpalkkiin
apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,Joudut varmuuskopiointiin. Saat sähköpostiosoitteen latauslinkin avulla
apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Ei voitu tunnistaa {0}
DocType: Address,Address,Osoite
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +3,Payment Failed,Maksu epäonnistui
@@ -752,13 +753,13 @@ DocType: Web Form,Allow Print,salli Print
apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Ei Apps asennettu
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Merkitse kentän Pakollinen
DocType: Communication,Clicked,Napsautetaan
apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Ei lupaa &quot;{0}&quot; {1}
apps/frappe/frappe/public/js/legacy/form.js +950,No permission to '{0}' {1},Ei lupaa &quot;{0}&quot; {1}
DocType: User,Google User ID,Google käyttäjätunnus
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Aikataulun lähettää
DocType: DocType,Track Seen,Track Seen
apps/frappe/frappe/desk/form/utils.py +55,This method can only be used to create a Comment,Tätä menetelmää voidaan käyttää vain kommenttien luontiin
DocType: Event,orange,oranssi
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,No {0} found,{0}tietueita ei löytynyt
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +558,No {0} found,{0}tietueita ei löytynyt
apps/frappe/frappe/config/setup.py +242,Add custom forms.,lisää omia lomakkeita/muotoja
apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} in {2}
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +419,submitted this document,toimitti tämän asiakirjan
@@ -788,6 +789,7 @@ DocType: Newsletter Email Group,Newsletter Email Group,Uutiskirje Sähköpostios
DocType: Dropbox Settings,Integrations,integraatiot
DocType: DocField,Section Break,Osanvaihto
DocType: Address,Warehouse,Varasto
DocType: Address,Other Territory,Muut alueet
,Messages,Viestit
apps/frappe/frappe/desk/page/applications/applications.js +49,Portal,Portaali
DocType: Email Account,Use Different Email Login ID,Käytä toista sähköpostiosoitetta kirjautumistunnus
@@ -818,6 +820,7 @@ apps/frappe/frappe/utils/data.py +556,1 month ago,1 kuukausi sitten
DocType: Contact,User ID,Käyttäjätunnus
DocType: Communication,Sent,Lähetetty
DocType: Address,Kerala,kerala
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} vuosi (t) sitten
DocType: File,Lft,Lft
DocType: User,Simultaneous Sessions,Samanaikaiset istunnot
DocType: OAuth Client,Client Credentials,Client valtakirjojen
@@ -834,7 +837,7 @@ DocType: Email Queue,Unsubscribe Method,tilaus Menetelmä
DocType: GSuite Templates,Related DocType,Liittyvät DOCTYPE
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,muokkaa lisäämällä sisältöä
apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Valitse Kielet
apps/frappe/frappe/__init__.py +509,No permission for {0},Ei lupaa {0}
apps/frappe/frappe/__init__.py +517,No permission for {0},Ei lupaa {0}
DocType: DocType,Advanced,tarkka
apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Näyttäisi sovellusliittymäavain tai API Secret on väärin !!!
apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Viite: {0} {1}
@@ -845,6 +848,7 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P
DocType: Email Account,Yahoo Mail,Yahoo sähköposti
apps/frappe/frappe/limits.py +75,Your subscription will expire tomorrow.,Tilauksesi vanhenee huomenna.
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +483,Saved!,Tallennettu!
apps/frappe/frappe/public/js/frappe/form/control.js +729,{0} is not a valid hex color,{0} ei ole kelvollinen heksadesimaali
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,Rouva
apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Päivitetty {0}: {1}
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,valvonta
@@ -872,7 +876,7 @@ DocType: Report,Disabled,ei käytössä
DocType: Workflow State,eye-close,silmä-kiinni
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth Provider Asetukset
apps/frappe/frappe/config/setup.py +254,Applications,sovellukset
apps/frappe/frappe/public/js/frappe/request.js +347,Report this issue,raportti tästä aiheesta
apps/frappe/frappe/public/js/frappe/request.js +349,Report this issue,raportti tästä aiheesta
apps/frappe/frappe/public/js/frappe/form/save.js +79,Name is required,Nimi vaaditaan
DocType: Custom Script,Adds a custom script (client or server) to a DocType,lisää oman (asiakas- tai palvelin-) sovelmaskriptin tietuetyypin kanssa käytettäväksi
DocType: Address,City/Town,kaupunki/kunta
@@ -966,6 +970,7 @@ DocType: Currency,**Currency** Master,**valuutta** valvonta
DocType: Email Account,No of emails remaining to be synced,Ei sähköposteja jäljellä synkronoidaan
apps/frappe/frappe/public/js/frappe/upload.js +203,Uploading,lataaminen
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,Tallenna asiakirja ennen nimeämistä
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,Napsauta tästä lähettääksesi virheitä ja ehdotuksia
DocType: Website Settings,Address and other legal information you may want to put in the footer.,"osoitteet, yhteys, sekä muut tiedot jotka haluat näkyvän alatunnisteessa."
DocType: Website Sidebar Item,Website Sidebar Item,Verkkosivu sivupalkkikohteen
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +44,{0} records updated,{0} kirjaa päivitetty
@@ -979,12 +984,10 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,tyhjennä
apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,joka päivä tapahtumat tulee päättyä samana päivänä
DocType: Communication,User Tags,Käyttäjä tagit
apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Haetaan kuvia ..
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Asetukset&gt; Käyttäjän
DocType: Workflow State,download-alt,lataa-alt
apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Lataaminen App {0}
DocType: Communication,Feedback Request,Palaute Ehdota
apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,Seuraavat kentät puuttuvat:
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Experimental Feature,kokeellinen Ominaisuus
apps/frappe/frappe/www/login.html +30,Sign in,Kirjaudu sisään
DocType: Web Page,Main Section,Main §
DocType: Page,Icon,ikoni
@@ -1086,7 +1089,7 @@ DocType: Customize Form,Customize Form,Muokkaa tietuetyyppiä
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +104,Mandatory field: set role for,Pakollinen kenttä: set rooli
DocType: Currency,A symbol for this currency. For e.g. $,"valuutan symboli, esim €"
apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,Frappe Framework
apps/frappe/frappe/model/naming.py +174,Name of {0} cannot be {1},Kohteen {0} nimi ei voi olla {1}
apps/frappe/frappe/model/naming.py +180,Name of {0} cannot be {1},Kohteen {0} nimi ei voi olla {1}
apps/frappe/frappe/config/setup.py +46,Show or hide modules globally.,Näytä tai piilota moduulit yleisesti
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,alkaen päivästä
apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,menestys
@@ -1107,7 +1110,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +308,Add A New
apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js +3,See on Website,Katso sivustossa
DocType: Workflow Transition,Next State,seuraava tila
DocType: User,Block Modules,estä moduuleita
apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Palataan pituus {0} ja {1} &quot;in&quot; {2} &quot;; Asettaminen pituus kuin {3} aiheuttaa katkaisu tietoja.
apps/frappe/frappe/model/db_schema.py +142,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Palataan pituus {0} ja {1} &quot;in&quot; {2} &quot;; Asettaminen pituus kuin {3} aiheuttaa katkaisu tietoja.
DocType: Print Format,Custom CSS,oma CSS
apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Lisää kommentti
apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Ohitetut: {0} on {1}
@@ -1199,13 +1202,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,
DocType: Custom Role,Custom Role,Custom rooli
apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Etusivu / Test-kansion 2
DocType: System Settings,Ignore User Permissions If Missing,Torju käyttäjä käyttöoikeudet Jos Puuttuu
apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Tallenna asiakirja ennen lataamista
apps/frappe/frappe/public/js/frappe/form/control.js +1075,Please save the document before uploading.,Tallenna asiakirja ennen lataamista
apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,syötä salasana
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox pääsy salaus
apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Lisää toinen kommentti
apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Muokkaa tietuetyyppiä
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Perunut uutiskirje
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,Unsubscribed from Newsletter,Perunut uutiskirje
apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Taitos tulee olla ennen osanvaihtoa
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,Kehitteillä
apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,muokkaaja
DocType: Workflow State,hand-down,käsi-alas
DocType: Address,GST State,GST State
@@ -1226,6 +1230,7 @@ DocType: Workflow State,Tag,tagi
DocType: Custom Script,Script,kirjoitus
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Omat asetukset
DocType: Website Theme,Text Color,Tekstin väri
apps/frappe/frappe/desk/page/backups/backups.py +72,Backup job is already queued. You will receive an email with the download link,Varmuuskopiointityö on jo jonossa. Saat sähköpostiosoitteen latauslinkin avulla
DocType: Desktop Icon,Force Show,Force Show
apps/frappe/frappe/auth.py +78,Invalid Request,virheellinen pyyntö
apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Lomakkeessa ei ole sisältöä
@@ -1336,7 +1341,7 @@ DocType: DocField,Name,Nimi
apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,Olet ylittänyt max tilaa {0} oman suunnitelman. {1}.
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Etsi dokumentit
DocType: OAuth Authorization Code,Valid,pätevä
apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Avaa linkki
apps/frappe/frappe/public/js/frappe/form/control.js +1354,Open Link,Avaa linkki
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Sinun kielesi
apps/frappe/frappe/desk/form/load.py +46,Did not load,ei ole lanattu
apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Lisää rivi
@@ -1354,6 +1359,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","tiettyjä asiakirjoja, kuten myyntilaskut ei tule enää muuttaa lähetetty tilassa, tarvittaessa voit rajoittaa lähettäjän käyttöoikeuksia rooleista"
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Raporttia ei saa ladata
apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 kohde valittu
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,"<p> Ei tuloksia haulle "" </p>"
DocType: Newsletter,Test Email Address,Test Sähköpostiosoite
DocType: ToDo,Sender,Lähettäjä
DocType: GSuite Settings,Google Apps Script,Google Apps Script
@@ -1461,7 +1467,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Ple
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,ladataan raporttia
apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Tilauksesi vanhenee tänään.
DocType: Page,Standard,perus
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Liitä tiedosto
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,Liitä tiedosto
apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,Salasanan päivitysilmoitus
apps/frappe/frappe/desk/page/backups/backups.html +13,Size,Koko
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,tehtävä valmis
@@ -1491,7 +1497,7 @@ apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversat
apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},vaihtoehtomäärityksiä ei ole tehty linkin kentälle {0}
DocType: Customize Form,"Must be of type ""Attach Image""","Täytyy olla tyyppiä ""Kuvaliite"""
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Poista valinnat
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},"Kentän {0} ""Vain luku"" -asetusta ei voi kytkeä pois."
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +199,You cannot unset 'Read Only' for field {0},"Kentän {0} ""Vain luku"" -asetusta ei voi kytkeä pois."
DocType: Auto Email Report,Zero means send records updated at anytime,Nolla lähettää kirjaa päivitetty milloin tahansa
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +22,Complete Setup,määritykset suoritettu loppuun
DocType: Workflow State,asterisk,tähtimerkki
@@ -1505,7 +1511,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +98,Week,Viikko
DocType: Social Login Keys,Google,Google verkkosivu
DocType: Email Domain,Example Email Address,Esimerkki Sähköpostiosoite
apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,käytetyimmät
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Unsubscribe from Newsletter,Uutiskirjeen peruuttaminen
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe from Newsletter,Uutiskirjeen peruuttaminen
apps/frappe/frappe/www/login.html +101,Forgot Password,Unohtuiko salasana
DocType: Dropbox Settings,Backup Frequency,Backup Frequency
DocType: Workflow State,Inverse,käänteinen
@@ -1583,10 +1589,11 @@ apps/frappe/frappe/config/setup.py +209,"Actions for workflow (e.g. Approve, Can
DocType: Workflow State,flag,lippu
apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +57,Feedback Request is already sent to user,Palaute Pyyntö on jo lähetetty käyttäjälle
DocType: Web Page,Text Align,Tekstin kohdistus
apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Nimi ei voi sisältää erikoismerkkejä kuten {0}
apps/frappe/frappe/model/naming.py +185,Name cannot contain special characters like {0},Nimi ei voi sisältää erikoismerkkejä kuten {0}
DocType: Contact Us Settings,Forward To Email Address,lähetä eteenpäin sähköpostiosoitteeseen
apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Näytä kaikki tiedot
apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Otsikkokentän on oltava kelvollinen kenttänimi
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,Sähköposti-tili ei ole asennettu. Luo uusi sähköpostitili Asetukset&gt; Sähköposti&gt; Sähköposti -tili
apps/frappe/frappe/config/core.py +7,Documents,Dokumentit
DocType: Email Flag Queue,Is Completed,on valmis
apps/frappe/frappe/www/me.html +22,Edit Profile,Muokkaa profiilia
@@ -1596,7 +1603,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi
myfield
eval:doc.myfield=='My Value'
eval:doc.age&gt;18","Tämä kenttä näkyy vain, jos fieldname määritelty tässä on arvo TAI säännöt ovat totta (esimerkkejä): myfield eval: doc.myfield == &#39;My Arvo &quot;eval: doc.age&gt; 18"
apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Tänään
apps/frappe/frappe/public/js/frappe/form/control.js +764,Today,Tänään
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Kun olet asettanut tämän, käyttäjät voivat vain tutustua asiakirjoihin (esim. Blogiviesti) jos linkki on olemassa (esim. Blogger)."
DocType: Error Log,Log of Scheduler Errors,aikatauluvirheloki
DocType: User,Bio,Bio
@@ -1655,7 +1662,7 @@ DocType: Print Format,Js,js
apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Valitse tulostusmuoto
apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Lyhyet näppäimistö kuviot on helppo arvata
DocType: Portal Settings,Portal Menu,Portaalivalikko
apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Pituus {0} on välillä 1 ja 1000
apps/frappe/frappe/model/db_schema.py +115,Length of {0} should be between 1 and 1000,Pituus {0} on välillä 1 ja 1000
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,Etsi mitään
DocType: DocField,Print Hide,Tulosta Piilota
apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,syötä Arvo
@@ -1708,8 +1715,7 @@ apps/frappe/frappe/model/document.py +564,Cannot change docstatus from 0 to 2,as
DocType: User Permission for Page and Report,Roles Permission,roolit Käyttöoikeus
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Muuta
DocType: Error Snapshot,Snapshot View,Tilannekuvanäkymä
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Säilytä uutiskirje ennen lähettämistä
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} year (s) sitten
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +101,Please save the Newsletter before sending,Säilytä uutiskirje ennen lähettämistä
apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Valinnan tulee olla rivillä {1} kentälle {0} hyväksytty tietuetyyppi
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,muokkaa ominaisuuksia
DocType: Patch Log,List of patches executed,Luettelo laastaria teloitettiin
@@ -1727,7 +1733,7 @@ apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Salasanan päi
DocType: Workflow State,trash,roska
DocType: System Settings,Older backups will be automatically deleted,Vanhemmat varmuuskopioita poistetaan automaattisesti
DocType: Event,Leave blank to repeat always,tyhjä mikäli toistetaan aina
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +192,Confirmed,Vahvistettu
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,Confirmed,Vahvistettu
DocType: Event,Ends on,päättyy
DocType: Payment Gateway,Gateway,Portti
apps/frappe/frappe/public/js/frappe/form/linked_with.js +116,Not enough permission to see links,Ei tarpeeksi lupaa nähdä linkit
@@ -1758,7 +1764,6 @@ DocType: Contact,Purchase Manager,Ostojenhallinta
DocType: Custom Script,Sample,Näyte
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Uncategorised Tunnisteet
DocType: Event,Every Week,joka viikko
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,Sähköpostitili ole määritetty. Luo uusi sähköpostitilin asetukset&gt; Sähköposti&gt; sähköpostitili
apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Klikkaa tästä tarkistaa oman käytön tai päivittää suurempaan sopimukseen
DocType: Custom Field,Is Mandatory Field,kenttä vaaditaan
DocType: User,Website User,Verkkosivuston käyttäjä
@@ -1766,7 +1771,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +10,Not equals,e
DocType: Integration Request,Integration Request Service,Integration Request Service
DocType: Website Script,Script to attach to all web pages.,kirjoitus liittääksesi sen kaikille verkkodivuille
DocType: Web Form,Allow Multiple,Salli Useita
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +40,Assign,Nimeä
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +44,Assign,Nimeä
apps/frappe/frappe/config/setup.py +102,Import / Export Data from .csv files.,tuo / vie tietoa .csv-tiedostot
DocType: Auto Email Report,Only Send Records Updated in Last X Hours,"Lähettää vain Records Päivitetty viime x tuntia,"
DocType: Communication,Feedback,Palaute
@@ -1846,7 +1851,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,jäljellä
apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Tallenna ennen kiinnittämistä.
apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),lisätty {0} ({1})
apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Alkuperäinen ulkoasu on asetettu {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Kenttätyyppiä {0} ei voi muuttaa {1}:si rivillä {2}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +325,Fieldtype cannot be changed from {0} to {1} in row {2},Kenttätyyppiä {0} ei voi muuttaa {1}:si rivillä {2}
apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,Rooli Oikeudet
DocType: Help Article,Intermediate,väli-
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,voi lukea
@@ -1861,9 +1866,9 @@ apps/frappe/frappe/core/doctype/user/user.js +42,Refreshing...,Virkistää...
DocType: Event,Starts on,alkaa
DocType: System Settings,System Settings,järjestelmäasetukset
apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Session Start epäonnistui
apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Tämä sähköposti lähetettiin {0} ja kopioidaan {1}
apps/frappe/frappe/email/queue.py +470,This email was sent to {0} and copied to {1},Tämä sähköposti lähetettiin {0} ja kopioidaan {1}
DocType: Workflow State,th,th
apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Lisää uusi {0}
apps/frappe/frappe/public/js/frappe/form/control.js +1517,Create a new {0},Lisää uusi {0}
DocType: Email Rule,Is Spam,roskaposti
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Raportti {0}
apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Open {0}
@@ -1875,12 +1880,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon a
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,kaksoiskappale
DocType: Newsletter,Create and Send Newsletters,tee ja lähetä uutiskirjeitä
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date must be before To Date,alkaen päivä on ennen päättymispäivää
DocType: Address,Andaman and Nicobar Islands,Andaman ja Nicobarsaaret
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +216,GSuite Document,GSuite Document
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +29,Please specify which value field must be checked,Määritä mikä arvokenttä tulee tarkistaa
apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"""Parent"" signifies the parent table in which this row must be added","""emo"" tarkoittaa emoyritystaulukkoa, johon tämä rivi tulee lisätä"
DocType: Website Theme,Apply Style,käytä tyyliä
DocType: Feedback Request,Feedback Rating,Palaute Rating
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared With,Jaettu käyttäjille
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Jaettu käyttäjille
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Asetukset&gt; Käyttäjäoikeuksien hallinta
DocType: Help Category,Help Articles,Ohje Artikkelit
,Modules Setup,moduuli määritykset
apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,tyyppi:
@@ -1911,7 +1918,7 @@ DocType: OAuth Client,App Client ID,Sovelluksen Client ID
DocType: Kanban Board,Kanban Board Name,Kanban Hallitus Name
DocType: Email Alert Recipient,"Expression, Optional","ilmaisu, valinnainen"
DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,Kopioi ja liitä koodi ja tyhjät Code.gs projektin osoitteessa script.google.com
apps/frappe/frappe/email/queue.py +456,This email was sent to {0},Tämä sähköposti lähetettiin {0}:lle
apps/frappe/frappe/email/queue.py +472,This email was sent to {0},Tämä sähköposti lähetettiin {0}:lle
DocType: DocField,Remember Last Selected Value,Muista Viimeksi Valitut Arvo
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +334,Please select Document Type,Valitse Document Type
DocType: Email Account,Check this to pull emails from your mailbox,täppää siirtääksesi sähköposteja postilaatikosta
@@ -1926,6 +1933,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,Vaih
DocType: Feedback Trigger,Email Field,Sähköposti Field
apps/frappe/frappe/www/update-password.html +59,New Password Required.,Uusi salasana vaaditaan.
apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} asiakirja on jaettu {1} kanssa
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Asennus&gt; Käyttäjä
DocType: Website Settings,Brand Image,Tuotekuva
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Määritä ylänavigointipalkki, alatunniste ja logo"
@@ -1993,8 +2001,8 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa
apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Ei voi lukea tiedostomuotoon {0}
DocType: Auto Email Report,Filter Data,suodatintiedot
apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Lisää tagi
apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Liitä tiedosto ensin.
apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Nimen asennuksessa ilmeni virheitä, ota yhteyttä järjestelmähallintaan"
apps/frappe/frappe/public/js/frappe/form/control.js +1335,Please attach a file first.,Liitä tiedosto ensin.
apps/frappe/frappe/model/naming.py +174,"There were some errors setting the name, please contact the administrator","Nimen asennuksessa ilmeni virheitä, ota yhteyttä järjestelmähallintaan"
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Saapuvat sähköpostitili ole oikein
apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \
Please enter a valid email address so that we can get back.","Näytätte kirjoittanut nimen sijasta sähköpostiisi. \ Anna kelvollinen sähköpostiosoite, jotta voimme saada takaisin."
@@ -2046,7 +2054,6 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,u
DocType: Custom DocPerm,Create,tee
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},virheellinen suodatus: {0}
DocType: Email Account,no failed attempts,no epäonnistunut
apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,Ei oletusosoitetta mallia ei löytynyt. Luo uusi yksi Asetukset&gt; Tulostus ja brändi&gt; Osoitemallin.
DocType: GSuite Settings,refresh_token,refresh_token
DocType: Dropbox Settings,App Access Key,App Access Key
DocType: OAuth Bearer Token,Access Token,Access Token
@@ -2072,6 +2079,7 @@ apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl +
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Lisää uusi {0}
apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,Uusi sähköpostitili
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +28,Document Restored,asiakirja Palautettu
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +203,You can't set 'Options' for field {0},Et voi asettaa &#39;Options&#39; kentälle {0}
apps/frappe/frappe/core/page/usage_info/usage_info.html +86,Size (MB),Koko (Mt)
DocType: Help Article,Author,kirjailija
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +10,Resume Sending,jatka lähettäminen
@@ -2081,7 +2089,7 @@ DocType: Print Settings,Monochrome,Yksivärinen
DocType: Address,Purchase User,Osto Käyttäjä
DocType: Workflow,"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.","eri ""tilat"" tämän asiakirjan näkyy, kuten ""avaa"",tai ""odottaa hyväksyntää"" tilassa jne"
apps/frappe/frappe/utils/verified_command.py +43,This link is invalid or expired. Please make sure you have pasted correctly.,"Tämä linkki on virheellinen tai vanhentunut, tarkista että se on liittetty oikein"
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> on peruuttanut tätä listaa.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +136,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> on peruuttanut tätä listaa.
DocType: Web Page,Slideshow,Diaesitys
apps/frappe/frappe/contacts/doctype/address_template/address_template.py +31,Default Address Template cannot be deleted,"oletus osoite, mallipohjaa ei voi poistaa"
DocType: Contact,Maintenance Manager,huoltohallinto
@@ -2102,7 +2110,7 @@ apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a r
DocType: System Settings,Apply Strict User Permissions,Levitä Tiukka Käyttöluvat
DocType: DocField,Allow Bulk Edit,Salli erämuokkauksen
DocType: Blog Post,Blog Post,Blogikirjoitukset
apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,tarkka haku
apps/frappe/frappe/public/js/frappe/form/control.js +1527,Advanced Search,tarkka haku
apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Salasanan palautusohjeet on lähetetty sähköpostiisi
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \
higher levels for field level permissions.","Taso 0 on dokumenttien tason käyttöoikeuksia, \ korkeammat tasot kenttätasolla käyttöoikeudet."
@@ -2127,13 +2135,13 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new re
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,tutkiva
DocType: Currency,Fraction,jako
DocType: LDAP Settings,LDAP First Name Field,LDAP etunimi Field
apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Valitse järjestelmään tuoduista liitteistä
apps/frappe/frappe/public/js/frappe/form/control.js +1085,Select from existing attachments,Valitse järjestelmään tuoduista liitteistä
DocType: Custom Field,Field Description,Kentän kuvaus
apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Nimeä ei ole asetettu kautta Kysy
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,Sähköposti Saapuneet
DocType: Auto Email Report,Filters Display,Suodattimet Näyttö
DocType: Website Theme,Top Bar Color,Ylävalikon väri
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Do you want to unsubscribe from this mailing list?,Haluatko peruuttaa tämän listan?
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Do you want to unsubscribe from this mailing list?,Haluatko peruuttaa tämän listan?
DocType: Address,Plant,Laite
apps/frappe/frappe/core/doctype/communication/communication.js +65,Reply All,Vastaa kaikille
DocType: DocType,Setup,Asetukset
@@ -2176,7 +2184,7 @@ DocType: User,Send Notifications for Transactions I Follow,Lähetä ilmoituksia
apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: ei voi lähettää, perua tai muuttaa ilman kirjoitusta"
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,"Oletko varma, että haluat poistaa liitetiedoston?"
apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} <a href=""#Form/{0}/{1}"">{1}</a> is linked with {2} <a href=""#Form/{2}/{3}"">{3}</a>","Ei voi poistaa tai peruuttaa, koska {0} <a href=""#Form/{0}/{1}"">{1}</a> liittyy {2} <a href=""#Form/{2}/{3}"">{3}</a>"
apps/frappe/frappe/__init__.py +1062,Thank you,Kiitos
apps/frappe/frappe/__init__.py +1070,Thank you,Kiitos
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Tallennetaan...
DocType: Print Settings,Print Style Preview,Tulosta Style esikatselu
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
@@ -2191,7 +2199,7 @@ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,lisää
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,srj nro
,Role Permissions Manager,Roolien oikeuksienhallinta
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,nimeä uusi tulostusmuoto
apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Clear Attachment
apps/frappe/frappe/public/js/frappe/form/control.js +1087,Clear Attachment,Clear Attachment
apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Pakollinen:
,User Permissions Manager,Käyttäjien oikeuksien hallinta
DocType: Property Setter,New value to be set,Uusi arvo asetettava
@@ -2216,7 +2224,7 @@ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment C
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,Clear Error Lokit
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,Valitse arvio
DocType: Email Account,Notify if unreplied for (in mins),Ilmoita jos ketjut varten (in min)
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 päivää sitten
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +501,2 days ago,2 päivää sitten
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,luokittele blogikirjoituksia
DocType: Workflow State,Time,Aika
DocType: DocField,Attach,liite
@@ -2232,6 +2240,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Backup K
DocType: GSuite Templates,Template Name,Mallin nimi
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,uudentyyppinen asiakirja
DocType: Custom DocPerm,Read,Luettu
DocType: Address,Chhattisgarh,Chhattisgarh
DocType: Role Permission for Page and Report,Role Permission for Page and Report,Rooli Lupa Sivu ja Raportti
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Kohdista Arvo
apps/frappe/frappe/www/update-password.html +14,Old Password,Vanha Salasana
@@ -2278,7 +2287,7 @@ apps/frappe/frappe/public/js/frappe/roles_editor.js +28,Add all roles,Lisää ka
apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your email and message so that we \
can get back to you. Thanks!","Syötä sähköpostiosoite ja viestin, jotta voimme \ vastata sinulle, kiitos!"
apps/frappe/frappe/email/smtp.py +170,Could not connect to outgoing email server,lähtevän sähköpostin palvelimeen ei saatu yhteyttä
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +162,Thank you for your interest in subscribing to our updates,Kiitos päivityksen tilaamisesta
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Thank you for your interest in subscribing to our updates,Kiitos päivityksen tilaamisesta
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Custom Column,Custom sarake
DocType: Workflow State,resize-full,"kokoa, täysi"
DocType: Workflow State,off,pois
@@ -2341,7 +2350,7 @@ DocType: Address,Telangana,Telangana
apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,oletus {0}:lle tulee olla vaihtoehto
DocType: Tag Doc Category,Tag Doc Category,Tag Doc Luokka
DocType: User,User Image,Käyttäjän kuva
apps/frappe/frappe/email/queue.py +289,Emails are muted,sähköpostit on mykistetty
apps/frappe/frappe/email/queue.py +304,Emails are muted,sähköpostit on mykistetty
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + ylös
DocType: Website Theme,Heading Style,otsikko tyyli
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +183,A new Project with this name will be created,Uusi projekti Tämänniminen luodaan
@@ -2558,7 +2567,6 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,soittokello
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Virhe sähköpostihälytys
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Jaa tämä asiakirja
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Asetukset&gt; Käyttäjän Permissions Manager
apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} ei voi olla jatkosidos koska sillä on alasidoksia
DocType: Communication,Info,info
apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Lisää LIITE
@@ -2602,7 +2610,7 @@ apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,Tulostusmu
DocType: Email Alert,Send days before or after the reference date,Lähetä päiviä ennen tai jälkeen viitepäivämäärän
DocType: User,Allow user to login only after this hour (0-24),Salli käyttäjän kirjautua vasta tämän jälkeen tunti (0-24)
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,Arvo
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +165,Click here to verify,vahvistaaksesi klikkaa tästä
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +166,Click here to verify,vahvistaaksesi klikkaa tästä
apps/frappe/frappe/utils/password_strength.py +178,Predictable substitutions like '@' instead of 'a' don't help very much.,Ennustettavissa vaihdot kuten &quot;@&quot; sijasta &quot;a&quot; eivät auta kovin paljon.
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Toimeksiantaja Me
apps/frappe/frappe/utils/data.py +462,Zero,Nolla
@@ -2614,6 +2622,7 @@ DocType: ToDo,Priority,prioriteetti
DocType: Email Queue,Unsubscribe Param,tilaus Param
DocType: Auto Email Report,Weekly,Viikoittain
DocType: Communication,In Reply To,Vastauksena
apps/frappe/frappe/contacts/doctype/address/address.py +189,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,Ei löytynyt oletusmallimallia. Luo uusi asetus Setup&gt; Printing and Branding&gt; Osoitemalli.
DocType: DocType,Allow Import (via Data Import Tool),Salli Tuo (via Tietojen tuonti Tool)
apps/frappe/frappe/templates/print_formats/standard_macros.html +30,Sr,sr
DocType: DocField,Float,Kellunta
@@ -2704,7 +2713,6 @@ apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Virheellinen raja {0}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,asiakirja tyyppi luettelo
DocType: Event,Ref Type,Viite tyyppi
apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","sarake ""nimi"" (tunnus) tulee olla tyhjä mikäli ladatessasi uusia tietueita"
DocType: Address,Chattisgarh,Chattisgarhin
apps/frappe/frappe/config/core.py +47,Errors in Background Events,Virheet Taustaa Tapahtumat
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,Sarakkeiden lukumäärä
DocType: Workflow State,Calendar,Kalenteri
@@ -2736,7 +2744,7 @@ apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},tehtä
DocType: Integration Request,Remote,Etä
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,laske
apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Valitse ensin tietuetyyppi
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,vahvista sähköposti
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +174,Confirm Your Email,vahvista sähköposti
apps/frappe/frappe/www/login.html +42,Or login with,Tai sisään
DocType: Error Snapshot,Locals,Paikalliset
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Viestitään {0} on {1}: {2}
@@ -2753,7 +2761,7 @@ DocType: Web Page,Web Page,Verkkosivu
DocType: Blog Category,Blogger,Kirjoittaja
apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},&#39;Global haku&#39; kielletty tyyppi {0} rivillä {1}
apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Katso List
apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},päivän on oltava muodossa: {0}
apps/frappe/frappe/public/js/frappe/form/control.js +810,Date must be in format: {0},päivän on oltava muodossa: {0}
DocType: Workflow,Don't Override Status,Älä poikkeuta tilaa
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Antakaa luokitus.
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} palaute pyyntö
@@ -2786,7 +2794,7 @@ DocType: Custom DocPerm,Report,Raportti
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Määrä on oltava suurempi kuin 0.
apps/frappe/frappe/desk/reportview.py +107,{0} is saved,{0} on tallennettu
apps/frappe/frappe/core/doctype/user/user.py +327,User {0} cannot be renamed,Käyttäjää {0} ei voi nimetä uudelleen
apps/frappe/frappe/model/db_schema.py +107,Fieldname is limited to 64 characters ({0}),Fieldname on rajoitettu 64 merkkiä ({0})
apps/frappe/frappe/model/db_schema.py +108,Fieldname is limited to 64 characters ({0}),Fieldname on rajoitettu 64 merkkiä ({0})
apps/frappe/frappe/config/desk.py +59,Email Group List,Sähköposti Group List
DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],Kuvake tiedosto Ico laajennus. Pitäisi olla 16 x 16 px. Tuottaa käyttäen favicon generaattori. [Favicon-generator.org]
DocType: Auto Email Report,Format,Muoto
@@ -2864,7 +2872,7 @@ DocType: Website Settings,Title Prefix,Otsikko etuliite
DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,ilmoitukset ja massasähköpostit lähetetään tästä lähtevän postin palvelimesta
DocType: Workflow State,cog,ratas
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on Migrate,Sync Siirrä
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Tuote
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Currently Viewing,Tuote
DocType: DocField,Default,oletus
apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} lisätty
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Etsi &quot;{0}
@@ -2924,7 +2932,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +771,Report was
DocType: Print Settings,Print Style,Tulostus tyyli
apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,Ei liity mihinkään ennätys
DocType: Custom DocPerm,Import,Tuo tietoja
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +178,Row {0}: Not allowed to enable Allow on Submit for standard fields,rivi {0}: peruskentissä ei ole sallittua aktivoida salli lähetettäessä
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +180,Row {0}: Not allowed to enable Allow on Submit for standard fields,rivi {0}: peruskentissä ei ole sallittua aktivoida salli lähetettäessä
apps/frappe/frappe/config/setup.py +100,Import / Export Data,tuo / vie tietoa
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,Standardi rooleja ei voi nimetä uudelleen
DocType: Communication,To and CC,To ja CC
@@ -2950,7 +2958,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo
DocType: Auto Email Report,Filter Meta,Filter Meta
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Teksti linkki verkkosivulle näytetään jos tällä lomakkeella on verkkosivu, linkin reitti muodostuu automaattisesti tyyliin `sivu_nimi` ja` emo_verkkosivu_reitti`"
DocType: Feedback Request,Feedback Trigger,Palaute Trigger
apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Aseta {0} Ensimmäinen
apps/frappe/frappe/public/js/frappe/form/control.js +1741,Please set {0} first,Aseta {0} Ensimmäinen
DocType: Unhandled Email,Message-id,Message-id
DocType: Patch Log,Patch,Korjauspäivitys
DocType: Async Task,Failed,Epäonnistui


+ 73
- 65
frappe/translations/fr.csv Datei anzeigen

@@ -14,8 +14,9 @@ apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,Vo
DocType: User,Facebook Username,Nom d'Utilisateur Facebook
DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Remarque : Plusieurs sessions seront autorisées en cas d'appareil mobile
apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Activer boîte de réception Email pour l'utilisateur {users}
apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Impossible d'envoyer cet E-mail. Vous avez franchi la limite d'envoi de {0} E-mails pour ce mois.
apps/frappe/frappe/email/queue.py +225,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Impossible d'envoyer cet E-mail. Vous avez franchi la limite d'envoi de {0} E-mails pour ce mois.
apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Soumettre de Manière Permanente {0} ?
apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,Télécharger la sauvegarde des fichiers
DocType: Address,County,Canton
DocType: Workflow,If Checked workflow status will not override status in list view,Si Cochée le statut du flux de travail ne remplacera pas le statut de la vue en liste
apps/frappe/frappe/client.py +280,Invalid file path: {0},Chemin de fichier invalide : {0}
@@ -80,10 +81,10 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Réglages
apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administrateur Connecté
DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Les options de contact, comme ""Demande de Ventes, Demande d'Aide"" etc., doivent être chacune sur une nouvelle ligne ou séparées par des virgules."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Télécharger
apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Insérer
apps/frappe/frappe/public/js/frappe/form/control.js +1979,Insert,Insérer
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Sélectionner {0}
DocType: Print Settings,Classic,Classique
DocType: Desktop Icon,Color,Couleur
DocType: DocField,Color,Couleur
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +54,For ranges,Pour les plages
DocType: Workflow State,indent-right,décaler-droite
DocType: Has Role,Has Role,A Un Rôle
@@ -100,7 +101,7 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To impor
DocType: DocType,Default Print Format,Format d'Impression par Défaut
DocType: Workflow State,Tags,Balises
apps/frappe/frappe/public/js/frappe/form/workflow.js +33,None: End of Workflow,Aucun: Fin de Flux de Travail
apps/frappe/frappe/model/db_schema.py +346,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Le champ {0} ne peut pas être défini comme unique dans {1}, car il existe des valeurs non-uniques"
apps/frappe/frappe/model/db_schema.py +347,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","Le champ {0} ne peut pas être défini comme unique dans {1}, car il existe des valeurs non-uniques"
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +47,Document Types,Types de Documents
DocType: Address,Jammu and Kashmir,Jammu and Kashmir
DocType: Workflow,Workflow State Field,Champ de l'État du Flux de Travail
@@ -232,7 +233,7 @@ DocType: Workflow,Transition Rules,Règles de Transition
apps/frappe/frappe/core/doctype/report/report.js +11,Example:,Exemple :
DocType: Workflow,Defines workflow states and rules for a document.,Défini les états du flux de travail et les règles pour un document.
DocType: Workflow State,Filter,Filtre
apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Nom du Champ {0} ne peut pas avoir des caractères spéciaux comme {1}
apps/frappe/frappe/model/db_schema.py +564,Fieldname {0} cannot have special characters like {1},Nom du Champ {0} ne peut pas avoir des caractères spéciaux comme {1}
apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Mettre à jour plusieurs valeurs en même temps.
apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Erreur : le document a été modifié après que vous l'ayez ouvert
apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} déconnecté: {1}
@@ -261,7 +262,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Obtenir votr
apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Votre abonnement a expiré le {0}. Pour le renouveler, {1}."
DocType: Workflow State,plus-sign,signe plus
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Configuration déjà terminée
apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} n'est pas installée
apps/frappe/frappe/__init__.py +897,App {0} is not installed,App {0} n'est pas installée
DocType: Workflow State,Refresh,Actualiser
DocType: Event,Public,Public
apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Rien à montrer
@@ -340,7 +341,6 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Modifier Rubrique
DocType: File,File URL,URL du fichier
DocType: Version,Table HTML,HTML de Table
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> Aucun résultat trouvé pour ' </p>
apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Ajouter des Abonnés
apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Événements À Venir Aujourd'hui
DocType: Email Alert Recipient,Email By Document Field,Email Par Champ de Document
@@ -405,7 +405,6 @@ DocType: Desktop Icon,Link,Lien
apps/frappe/frappe/utils/file_manager.py +96,No file attached,Pas de fichier joint
DocType: Version,Version,Version
DocType: User,Fill Screen,Remplir l'Écran
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,Configurez le compte de messagerie par défaut à partir de la configuration&gt; Courriel&gt; Compte de messagerie
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Impossible d'afficher ce rapport en arborescence, en raison de données manquantes. Très probablement, il est filtré sur la base des autorisations."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Sélectionner un fichier
apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Modifier via Chargement
@@ -475,9 +474,9 @@ DocType: User,Reset Password Key,Réinitialiser le Mot de Passe
DocType: Email Account,Enable Auto Reply,Activer la Réponse Automatique
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Non Vu
DocType: Workflow State,zoom-in,Agrandir
apps/frappe/frappe/email/queue.py +219,Unsubscribe from this list,Se Désinscrire de cette liste
apps/frappe/frappe/email/queue.py +234,Unsubscribe from this list,Se Désinscrire de cette liste
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Reference DocType and Reference Name are required,DocType de la Référence et le Nom de la Référence sont nécessaires
apps/frappe/frappe/utils/jinja.py +35,Syntax error in template,Erreur de syntaxe dans le modèle
apps/frappe/frappe/utils/jinja.py +51,Syntax error in template,Erreur de syntaxe dans le modèle
DocType: DocField,Width,Largeur
DocType: Email Account,Notify if unreplied,Notifier si aucune réponse
DocType: System Settings,Minimum Password Score,Score Minimum de Mot de Passe
@@ -561,6 +560,7 @@ DocType: Custom Field,Select the label after which you want to insert new field.
DocType: User,Last Login,Dernière Connexion
apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Nom du Champ est nécessaire dans la ligne {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Colonne
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,Veuillez configurer le compte de messagerie par défaut à partir de la configuration&gt; Courriel&gt; Compte de messagerie
DocType: Custom Field,Adds a custom field to a DocType,Ajoute d'un champ personnalisé à un DocType
DocType: File,Is Home Folder,Est le Dossier d'Accueil
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} n’est pas une Adresse Email valide
@@ -568,7 +568,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +733,Select atleast 1 reco
apps/frappe/frappe/core/doctype/has_role/has_role.py +13,User '{0}' already has the role '{1}',Utilisateur '{0}' a déjà le rôle '{1}'
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,Charger et Syncroniser
apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Partagé avec {0}
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe,Se Désinscrire
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +132,Unsubscribe,Se Désinscrire
DocType: Communication,Reference Name,Nom de la Référence
apps/frappe/frappe/public/js/frappe/toolbar.js +30,Chat Support,Support du Chat
DocType: Error Snapshot,Exception,Exception
@@ -586,7 +586,7 @@ DocType: Email Group,Newsletter Manager,Responsable de la Newsletter
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Option 1
apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} à {1}
apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Journal d'erreur lors des requêtes.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} a été ajouté avec succès au Groupe d’Email.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +194,{0} has been successfully added to the Email Group.,{0} a été ajouté avec succès au Groupe d’Email.
DocType: Address,Uttar Pradesh,Uttar Pradesh
DocType: Address,Pondicherry,Pondicherry
apps/frappe/frappe/public/js/frappe/upload.js +364,Make file(s) private or public?,Rendre le(s) fichier(s) privé(s) ou public(s) ?
@@ -610,14 +610,14 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +40,Fieldname not
apps/frappe/frappe/public/js/frappe/model/model.js +22,Last Updated By,Dernière Mise à Jour Par
apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,n'est pas autorisé.
apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Voir Abonnés
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Mme
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Me
DocType: Website Theme,Background Color,Couleur d’Arrière-plan
apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,Il y a eu des erreurs lors de l'envoi d’emails. Veuillez essayer à nouveau.
DocType: Portal Settings,Portal Settings,Réglages du Portail
DocType: Web Page,0 is highest,0 est le plus élevé
apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Êtes-vous sûr de vouloir relier cette communication à {0} ?
apps/frappe/frappe/www/login.html +104,Send Password,Envoyer le Mot de passe
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +45,Attachments,Pièces jointes
DocType: Email Queue,Attachments,Pièces jointes
apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,Vous n'avez pas l'autorisation d'accéder à ce document
DocType: Language,Language Name,Nom de la Langue
DocType: Email Group Member,Email Group Member,Membre du Groupe Email
@@ -647,7 +647,7 @@ apps/frappe/frappe/utils/password_strength.py +78,Try to use a longer keyboard p
DocType: Feedback Trigger,Check Communication,Vérifiez la Communication
DocType: Address,Rajasthan,Rajasthan
apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Les rapports de l’Éditeur de Rapports sont gérés directement par l’Éditeur de Rapports. Vous n’avez rien à faire.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Veuillez vérifier votre adresse e-mail
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +164,Please verify your Email Address,Veuillez vérifier votre adresse e-mail
apps/frappe/frappe/model/document.py +903,none of,aucun des
apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,M'Envoyer Une Copie
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Charger les Autorisations des Utilisateurs
@@ -658,7 +658,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Si
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Tableau Kanban {0} n'existe pas.
apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} sont en train de regarder ce document
DocType: ToDo,Assigned By Full Name,Assigné Par Nom complet
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} mis(e) à jour
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} mis(e) à jour
apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Le Rapport ne peut pas être défini pour les types Uniques
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,Il y a {0} jours
DocType: Email Account,Awaiting Password,En attente Mot de Passe
@@ -683,7 +683,7 @@ DocType: Workflow State,Stop,Arrêter
DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Lien vers la page que vous souhaitez ouvrir. Laissez ce champ vide si vous voulez faire un parent de groupe.
DocType: DocType,Is Single,Est Seul
apps/frappe/frappe/core/doctype/user/user.py +720,Sign Up is disabled,L'inscription est désactivée
apps/frappe/frappe/email/queue.py +278,{0} has left the conversation in {1} {2},{0} a quitté la conversation dans {1} {2}
apps/frappe/frappe/email/queue.py +293,{0} has left the conversation in {1} {2},{0} a quitté la conversation dans {1} {2}
DocType: Blogger,User ID of a Blogger,ID l'Utilisateur d'un Blogger
apps/frappe/frappe/core/doctype/user/user.py +287,There should remain at least one System Manager,Il doit rester au moins un Responsable Système
DocType: GSuite Settings,Authorization Code,Code d'Autorisation
@@ -729,6 +729,7 @@ DocType: Event,Event,Événement
apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Sur {0}, {1} a écrit :"
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,Suppression de champ standard impossible. Vous pouvez le cacher si vous voulez
DocType: Top Bar Item,For top bar,Pour la barre supérieure
apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,En file d&#39;attente pour la sauvegarde. Vous recevrez un courriel avec le lien de téléchargement
apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Impossible d&#39;identifier {0}
DocType: Address,Address,Adresse
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +3,Payment Failed,Le Paiement a Échoué
@@ -753,13 +754,13 @@ DocType: Web Form,Allow Print,Autoriser l'Impression
apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Aucunes Applications Installées
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Marquez le champ comme Obligatoire
DocType: Communication,Clicked,Cliqué
apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Pas d'autorisation pour '{0}' {1}
apps/frappe/frappe/public/js/legacy/form.js +950,No permission to '{0}' {1},Pas d'autorisation pour '{0}' {1}
DocType: User,Google User ID,ID Utilisateur Google
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Prévu pour envoyer
DocType: DocType,Track Seen,Suivre les Vues
apps/frappe/frappe/desk/form/utils.py +55,This method can only be used to create a Comment,Cette méthode peut uniquement être utilisée pour créer un Commentaire
DocType: Event,orange,orange
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,No {0} found,Pas de {0} trouvé
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +558,No {0} found,Pas de {0} trouvé
apps/frappe/frappe/config/setup.py +242,Add custom forms.,Ajouter des formulaires personnalisés.
apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0} : {1} à {2}
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +419,submitted this document,a soumis ce document
@@ -789,6 +790,7 @@ DocType: Newsletter Email Group,Newsletter Email Group,Groupe Email pour Newslet
DocType: Dropbox Settings,Integrations,Intégrations
DocType: DocField,Section Break,Saut de section
DocType: Address,Warehouse,Entrepôt
DocType: Address,Other Territory,Autre territoire
,Messages,Messages
apps/frappe/frappe/desk/page/applications/applications.js +49,Portal,Portail
DocType: Email Account,Use Different Email Login ID,Utiliser un Email d'Identification Différent
@@ -819,6 +821,7 @@ apps/frappe/frappe/utils/data.py +556,1 month ago,Il y a 1 mois
DocType: Contact,User ID,ID de l'Utilisateur
DocType: Communication,Sent,Envoyé
DocType: Address,Kerala,Kerala
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} année (s) depuis
DocType: File,Lft,Lft
DocType: User,Simultaneous Sessions,Sessions Simultanées
DocType: OAuth Client,Client Credentials,Identifiants du Client
@@ -835,7 +838,7 @@ DocType: Email Queue,Unsubscribe Method,Méthode de Désinscription
DocType: GSuite Templates,Related DocType,DocType Lié
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Modifier pour ajouter du contenu
apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Sélectionner les Langues
apps/frappe/frappe/__init__.py +509,No permission for {0},Pas d'autorisation pour {0}
apps/frappe/frappe/__init__.py +517,No permission for {0},Pas d'autorisation pour {0}
DocType: DocType,Advanced,Avancé
apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Il semble que la Clé API ou le Secret API soit faux !!!
apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Référence : {0} {1}
@@ -846,6 +849,7 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P
DocType: Email Account,Yahoo Mail,Yahoo Mail
apps/frappe/frappe/limits.py +75,Your subscription will expire tomorrow.,Votre abonnement expirera demain.
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +483,Saved!,Enregistré !
apps/frappe/frappe/public/js/frappe/form/control.js +729,{0} is not a valid hex color,{0} n&#39;est pas une couleur hexadéxique valide
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,Madame
apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Mis à jour {0} : {1}
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,Maître
@@ -873,7 +877,7 @@ DocType: Report,Disabled,Desactivé
DocType: Workflow State,eye-close,oeil-fermé
DocType: OAuth Provider Settings,OAuth Provider Settings,Paramètres du Fournisseur OAuth
apps/frappe/frappe/config/setup.py +254,Applications,Applications
apps/frappe/frappe/public/js/frappe/request.js +347,Report this issue,Signaler ce problème
apps/frappe/frappe/public/js/frappe/request.js +349,Report this issue,Signaler ce problème
apps/frappe/frappe/public/js/frappe/form/save.js +79,Name is required,Le Nom est obligatoire
DocType: Custom Script,Adds a custom script (client or server) to a DocType,Ajoute d'un script personnalisé (client ou serveur) à un DocType
DocType: Address,City/Town,Ville
@@ -968,6 +972,7 @@ DocType: Currency,**Currency** Master,Données de Base **Devise**
DocType: Email Account,No of emails remaining to be synced,Nb d’emails restants à être synchronisés
apps/frappe/frappe/public/js/frappe/upload.js +203,Uploading,Chargement
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,Veuillez enregistrer le document avant l'affectation
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,Cliquez ici pour publier des bugs et des suggestions
DocType: Website Settings,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.
DocType: Website Sidebar Item,Website Sidebar Item,Objet de la Barre Latérale du Site Web
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +44,{0} records updated,{0} enregistrements mis à jour
@@ -981,12 +986,10 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,effacer
apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Les événements quotidiens devrait se terminer le même jour.
DocType: Communication,User Tags,Balise Utilisateur
apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Récupération des Images...
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Configuration&gt; Utilisateur
DocType: Workflow State,download-alt,Télécharger-alt
apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Téléchargement de l’App {0}
DocType: Communication,Feedback Request,Demande de Retour d'Expérience
apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,Les champs suivants sont manquants :
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Experimental Feature,Fonctionalité Expérimentale
apps/frappe/frappe/www/login.html +30,Sign in,Se Connecter
DocType: Web Page,Main Section,Section Principale
DocType: Page,Icon,Icône
@@ -1088,7 +1091,7 @@ DocType: Customize Form,Customize Form,Personnaliser le formulaire
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +104,Mandatory field: set role for,Champ obligatoire : rôle défini pour
DocType: Currency,A symbol for this currency. For e.g. $,Un symbole pour cette monnaie. Par exemple $
apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,Modèle Frappe
apps/frappe/frappe/model/naming.py +174,Name of {0} cannot be {1},Nom de {0} ne peut pas être {1}
apps/frappe/frappe/model/naming.py +180,Name of {0} cannot be {1},Nom de {0} ne peut pas être {1}
apps/frappe/frappe/config/setup.py +46,Show or hide modules globally.,Afficher ou cacher les modules globalement.
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,A partir du
apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,Réussite
@@ -1109,7 +1112,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +308,Add A New
apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js +3,See on Website,Voir sur le Site
DocType: Workflow Transition,Next State,État Suivant
DocType: User,Block Modules,Bloquer les Modules
apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Retour à la longueur {0} pour '{1}' dans '{2}'; Le réglage de la longueur comme {3} provoque la troncature des données.
apps/frappe/frappe/model/db_schema.py +142,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Retour à la longueur {0} pour '{1}' dans '{2}'; Le réglage de la longueur comme {3} provoque la troncature des données.
DocType: Print Format,Custom CSS,CSS Personnalisé
apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Ajouter un commentaire
apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Ignoré : {0} à {1}
@@ -1201,13 +1204,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,
DocType: Custom Role,Custom Role,Rôle Personnalisé
apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Accueil / Dossier Test 2
DocType: System Settings,Ignore User Permissions If Missing,Ignorer les Autorisations des Utilisateurs si Manquant
apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Veuillez enregistrer le document avant de le charger.
apps/frappe/frappe/public/js/frappe/form/control.js +1075,Please save the document before uploading.,Veuillez enregistrer le document avant de le charger.
apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Entrez votre mot de passe
DocType: Dropbox Settings,Dropbox Access Secret,Secret d’Accès Dropbox
apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Ajouter un Autre Commentaire
apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Modifier le DocType
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Désinscrit de la Newsletter
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,Unsubscribed from Newsletter,Désinscrit de la Newsletter
apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Un Pli doit être avant un Saut de Section
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,En développement
apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Dernière Modification Par
DocType: Workflow State,hand-down,main vers le bas
DocType: Address,GST State,État GST
@@ -1228,6 +1232,7 @@ DocType: Workflow State,Tag,Balise
DocType: Custom Script,Script,Script
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Mes Paramètres
DocType: Website Theme,Text Color,Couleur du Texte
apps/frappe/frappe/desk/page/backups/backups.py +72,Backup job is already queued. You will receive an email with the download link,Le travail de sauvegarde est déjà mis en file d&#39;attente. Vous recevrez un courriel avec le lien de téléchargement
DocType: Desktop Icon,Force Show,Forcer l'Affichage
apps/frappe/frappe/auth.py +78,Invalid Request,Requête Invalide
apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Ce formulaire n'a aucune entrée
@@ -1338,7 +1343,7 @@ DocType: DocField,Name,Nom
apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,Vous avez dépassé l&#39;espace maximum de {0} pour votre plan. {1}.
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Recherchez les documents
DocType: OAuth Authorization Code,Valid,Valide
apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Ouvrir Lien
apps/frappe/frappe/public/js/frappe/form/control.js +1354,Open Link,Ouvrir Lien
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Votre Langue
apps/frappe/frappe/desk/form/load.py +46,Did not load,N'a pas été chargé
apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Ajouter une Ligne
@@ -1356,6 +1361,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Certains documents, comme une Facture, ne devraient pas être modifiés une fois finalisés. L'état final de ces documents est appelée Soumis. Vous pouvez limiter les rôles pouvant Soumettre."
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Vous n'êtes pas autorisé à exporter ce rapport.
apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 article sélectionné
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> Aucun résultat trouvé pour ' </p>
DocType: Newsletter,Test Email Address,Adresse Email de Test
DocType: ToDo,Sender,Expéditeur
DocType: GSuite Settings,Google Apps Script,Google Apps Script
@@ -1464,7 +1470,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Ple
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Chargement du Rapport
apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Votre abonnement expirera aujourd'hui.
DocType: Page,Standard,Standard
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Joindre un Fichier
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,Joindre un Fichier
apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,Notification de Mise à Jour du Mot de Passe
apps/frappe/frappe/desk/page/backups/backups.html +13,Size,Taille
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,Terminer l'Affectation
@@ -1494,7 +1500,7 @@ apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversat
apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Options non définis pour le champ lié {0}
DocType: Customize Form,"Must be of type ""Attach Image""","Doit être de type ""Joindre l'Image"""
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Tout Déselectionner
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},"Vous ne pouvez pas désactiver 'Lecture Seule' pour le champ {0}"""
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +199,You cannot unset 'Read Only' for field {0},"Vous ne pouvez pas désactiver 'Lecture Seule' pour le champ {0}"""
DocType: Auto Email Report,Zero means send records updated at anytime,Zéro signifie envoyer des enregistrements mis à jour à tout moment
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +22,Complete Setup,Terminer l'Installation
DocType: Workflow State,asterisk,Astérisque
@@ -1508,7 +1514,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +98,Week,Semaine
DocType: Social Login Keys,Google,Google
DocType: Email Domain,Example Email Address,Example d'Adresse Email
apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,Plus Utilisé
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Unsubscribe from Newsletter,Se Désinscire de la Newsletter
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe from Newsletter,Se Désinscire de la Newsletter
apps/frappe/frappe/www/login.html +101,Forgot Password,Mot de Passe Oublié
DocType: Dropbox Settings,Backup Frequency,Fréquence de Sauvegarde
DocType: Workflow State,Inverse,Inverse
@@ -1586,10 +1592,11 @@ apps/frappe/frappe/config/setup.py +209,"Actions for workflow (e.g. Approve, Can
DocType: Workflow State,flag,drapeau
apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +57,Feedback Request is already sent to user,La Demande de Retour d'Expérience a déjà été envoyée à l'utilisateur
DocType: Web Page,Text Align,Aligner le Texte
apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Le Nom ne peut contenir des caractères spéciaux tels que {0}
apps/frappe/frappe/model/naming.py +185,Name cannot contain special characters like {0},Le Nom ne peut contenir des caractères spéciaux tels que {0}
DocType: Contact Us Settings,Forward To Email Address,Transférer à l'Adresse Email
apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Afficher toutes les données
apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Champ Titre doit être un nom de champ valide
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,Compte de messagerie non configuré. Créez un nouveau compte de messagerie à partir de la configuration&gt; Courriel&gt; Compte de messagerie
apps/frappe/frappe/config/core.py +7,Documents,Documents
DocType: Email Flag Queue,Is Completed,Est Complété
apps/frappe/frappe/www/me.html +22,Edit Profile,Modifier le Profil
@@ -1599,7 +1606,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi
myfield
eval:doc.myfield=='My Value'
eval:doc.age&gt;18",Ce champ apparaît uniquement si le nom de champ défini ici a une valeur OU les règles sont vérifiées.
apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Aujourd'hui
apps/frappe/frappe/public/js/frappe/form/control.js +764,Today,Aujourd'hui
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Une fois que vous avez défini ceci, les utilisateurs ne pourront accèder qu'aux documents (e.g. Article de Blog) où le lien existe (e.g. Blogger) ."
DocType: Error Log,Log of Scheduler Errors,Journal des Erreurs du Planificateur
DocType: User,Bio,Biographie
@@ -1658,7 +1665,7 @@ DocType: Print Format,Js,Js
apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Sélectionner le Format d'Impression
apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Modèles de clavier courts sont faciles à deviner
DocType: Portal Settings,Portal Menu,Menu Portail
apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Longueur de {0} doit être comprise entre 1 et 1000
apps/frappe/frappe/model/db_schema.py +115,Length of {0} should be between 1 and 1000,Longueur de {0} doit être comprise entre 1 et 1000
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,Rechercher tout
DocType: DocField,Print Hide,Cacher à l'Impression
apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,Entrez une Valeur
@@ -1711,8 +1718,7 @@ apps/frappe/frappe/model/document.py +564,Cannot change docstatus from 0 to 2,Im
DocType: User Permission for Page and Report,Roles Permission,Autorisations de Rôles
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Mettre à Jour
DocType: Error Snapshot,Snapshot View,Vue Snapshot
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Veuillez sauvegarder la Newsletter avant de l'envoyer
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} année (s) depuis
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +101,Please save the Newsletter before sending,Veuillez sauvegarder la Newsletter avant de l'envoyer
apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Les options doivent être un DocType valide pour le champ {0} à la ligne {1}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Modifier les Propriétés
DocType: Patch Log,List of patches executed,Liste des correctifs exécutés
@@ -1730,7 +1736,7 @@ apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Mise à Jour d
DocType: Workflow State,trash,corbeille
DocType: System Settings,Older backups will be automatically deleted,Les anciennes sauvegardes seront automatiquement supprimées
DocType: Event,Leave blank to repeat always,Laissez vide pour répéter sans fin
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +192,Confirmed,Confirmé
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,Confirmed,Confirmé
DocType: Event,Ends on,Se termine le
DocType: Payment Gateway,Gateway,Passerelle
apps/frappe/frappe/public/js/frappe/form/linked_with.js +116,Not enough permission to see links,Pas assez d'autorisations pour voir les liens
@@ -1761,7 +1767,6 @@ DocType: Contact,Purchase Manager,Responsable des Achats
DocType: Custom Script,Sample,Échantillon
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Mots-clefs Non Catégorisés
DocType: Event,Every Week,Chaque Semaine
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,Compte de messagerie non configuré. Créez un nouveau compte de messagerie à partir de la configuration&gt; Courriel&gt; Compte de messagerie
apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Cliquez ici pour vérifier votre usage ou passer à un plan supérieur
DocType: Custom Field,Is Mandatory Field,Est Champ obligatoire
DocType: User,Website User,Utilisateur du Site Web
@@ -1769,7 +1774,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +10,Not equals,N
DocType: Integration Request,Integration Request Service,Service de Demande d'Intégration
DocType: Website Script,Script to attach to all web pages.,Script à joindre à toutes les pages web.
DocType: Web Form,Allow Multiple,Autoriser Plusieurs
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +40,Assign,Assigner
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +44,Assign,Assigner
apps/frappe/frappe/config/setup.py +102,Import / Export Data from .csv files.,Import / Export de Données à partir de fichiers CSV.
DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Envoyer Uniquement les Enregistrements Mis à Jour au cours des X Dernières Heures
DocType: Communication,Feedback,Retour d’Expérience
@@ -1849,7 +1854,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,Restant
apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Veuillez enregistrer avant de joindre une pièce.
apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Ajouté {0} ({1})
apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Le Thème par défaut est défini dans {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},"FieldType ne peut pas être modifié de {0} à {1}, à la ligne {2}"
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +325,Fieldtype cannot be changed from {0} to {1} in row {2},"FieldType ne peut pas être modifié de {0} à {1}, à la ligne {2}"
apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,Autorisations du Rôle
DocType: Help Article,Intermediate,Intermédiaire
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Peut Lire
@@ -1864,9 +1869,9 @@ apps/frappe/frappe/core/doctype/user/user.js +42,Refreshing...,Actualisation...
DocType: Event,Starts on,Commence le
DocType: System Settings,System Settings,Réglages Système
apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Le Démarrage de la Session a Échoué
apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Cet email a été envoyé à {0} et une copie à {1}
apps/frappe/frappe/email/queue.py +470,This email was sent to {0} and copied to {1},Cet email a été envoyé à {0} et une copie à {1}
DocType: Workflow State,th,th
apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Créer un(e) nouveau(elle) {0}
apps/frappe/frappe/public/js/frappe/form/control.js +1517,Create a new {0},Créer un(e) nouveau(elle) {0}
DocType: Email Rule,Is Spam,Est Spam
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Rapport {0}
apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Ouvrir {0}
@@ -1878,12 +1883,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon a
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,Dupliquer
DocType: Newsletter,Create and Send Newsletters,Créer et Envoyer des Newsletters
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date must be before To Date,La Date Initiale doit être antérieure à la Date Finale
DocType: Address,Andaman and Nicobar Islands,Îles Andaman et Nicobar
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +216,GSuite Document,Document GSuite
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +29,Please specify which value field must be checked,Veuillez indiquer quel champ de valeur doit être vérifiée
apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"""Parent"" signifies the parent table in which this row must be added","""Parent"" indique la table parent dans laquelle cette ligne doit être ajouté"
DocType: Website Theme,Apply Style,Appliquer le Style
DocType: Feedback Request,Feedback Rating,Note de Retour d’Expérience
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared With,Partagé Avec
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Partagé Avec
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Configuration&gt; Gestionnaire des autorisations utilisateur
DocType: Help Category,Help Articles,Articles d'Aide
,Modules Setup,Modules d'Installation
apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Type :
@@ -1914,7 +1921,7 @@ DocType: OAuth Client,App Client ID,ID Client de l'App
DocType: Kanban Board,Kanban Board Name,Nom du Tableau Kanban
DocType: Email Alert Recipient,"Expression, Optional","Expression, Optionnel"
DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,Veuillez copier-coller ce code dans une feuille Code.gs vierge de votre projet sur script.google.com
apps/frappe/frappe/email/queue.py +456,This email was sent to {0},Cet email a été envoyé à {0}
apps/frappe/frappe/email/queue.py +472,This email was sent to {0},Cet email a été envoyé à {0}
DocType: DocField,Remember Last Selected Value,Se Souvenir de la Dernière Valeur Sélectionnée
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +334,Please select Document Type,Veuillez sélectionner un Type de Document
DocType: Email Account,Check this to pull emails from your mailbox,Cochez cette case pour extraire des emails de votre boîte aux lettres
@@ -1929,6 +1936,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,Opti
DocType: Feedback Trigger,Email Field,Champ Email
apps/frappe/frappe/www/update-password.html +59,New Password Required.,Nouveau Mot de Passe Requis.
apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} a partagé ce document avec {1}
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Configuration&gt; Utilisateur
DocType: Website Settings,Brand Image,Logo
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Configuration de la barre de navigation en haut, du pied de page et du logo."
@@ -1996,8 +2004,8 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa
apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Impossible de lire le format de fichier pour {0}
DocType: Auto Email Report,Filter Data,Filtrer les Données
apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Ajouter un tag
apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Veuillez d’abord joindre un fichier.
apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Il y a eu des erreurs lors de la configuration du nom, veuillez contacter l'administrateur"
apps/frappe/frappe/public/js/frappe/form/control.js +1335,Please attach a file first.,Veuillez d’abord joindre un fichier.
apps/frappe/frappe/model/naming.py +174,"There were some errors setting the name, please contact the administrator","Il y a eu des erreurs lors de la configuration du nom, veuillez contacter l'administrateur"
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Compte Email entrant incorrect
apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \
Please enter a valid email address so that we can get back.",Vous semblez avoir écrit votre nom au lieu de votre email. \ Veuillez entrer une adresse email valide afin que nous puissions revenir vers vous.
@@ -2049,7 +2057,6 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N
DocType: Custom DocPerm,Create,Créer
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Filtre Invalide : {0}
DocType: Email Account,no failed attempts,aucune tentative ratée
apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,Aucun modèle d&#39;adresse par défaut trouvé. Créez une nouvelle version de Configuration&gt; Impression et Marquage&gt; Modèle d&#39;adresse.
DocType: GSuite Settings,refresh_token,refresh_token
DocType: Dropbox Settings,App Access Key,Clé d'Accès de l'App
DocType: OAuth Bearer Token,Access Token,Jeton d'Accès
@@ -2075,6 +2082,7 @@ apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl +
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Faire un(e) nouveau(elle) {0}
apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,Nouveau Compte de Messagerie
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +28,Document Restored,Document Restauré
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +203,You can't set 'Options' for field {0},Vous ne pouvez pas configurer &#39;Options&#39; pour le champ {0}
apps/frappe/frappe/core/page/usage_info/usage_info.html +86,Size (MB),Taille (Mo)
DocType: Help Article,Author,Auteur
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +10,Resume Sending,Reprendre l’Envoi
@@ -2084,7 +2092,7 @@ DocType: Print Settings,Monochrome,Monochrome
DocType: Address,Purchase User,Utilisateur Acheteur
DocType: Workflow,"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.","Différents «États» dans lesquels le présent document peut exister. Comme ""Ouvert"", ""En attente d'approbation"", etc"
apps/frappe/frappe/utils/verified_command.py +43,This link is invalid or expired. Please make sure you have pasted correctly.,Ce lien est invalide ou expiré. Veuillez vous assurer que vous l’avez collé correctement.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> a été désabonné avec succès de cette liste de diffusion.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +136,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> a été désabonné avec succès de cette liste de diffusion.
DocType: Web Page,Slideshow,Diaporama
apps/frappe/frappe/contacts/doctype/address_template/address_template.py +31,Default Address Template cannot be deleted,Le Modèle d’Adresse par défaut ne peut pas être supprimé
DocType: Contact,Maintenance Manager,Responsable de Maintenance
@@ -2105,7 +2113,7 @@ apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a r
DocType: System Settings,Apply Strict User Permissions,Appliquer des autorisations d&#39;utilisateur strictes
DocType: DocField,Allow Bulk Edit,Autoriser la Modification en Masse
DocType: Blog Post,Blog Post,Article de Blog
apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Recherche Avancée
apps/frappe/frappe/public/js/frappe/form/control.js +1527,Advanced Search,Recherche Avancée
apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Les Instructions de réinitialisation du mot de passe ont été envoyés à votre adresse Email
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \
higher levels for field level permissions.","Le niveau 0 est pour les autorisations au niveau du document, \ les niveaux supérieurs pour les autorisations au niveau des champs."
@@ -2130,13 +2138,13 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new re
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Recherche
DocType: Currency,Fraction,Fraction
DocType: LDAP Settings,LDAP First Name Field,Champ Prénom LDAP
apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Choisir parmi les pièces jointes existantes
apps/frappe/frappe/public/js/frappe/form/control.js +1085,Select from existing attachments,Choisir parmi les pièces jointes existantes
DocType: Custom Field,Field Description,Description du Champ
apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Nom non défini via l’Invite
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,Boîte de Réception
DocType: Auto Email Report,Filters Display,Affichage des Filtres
DocType: Website Theme,Top Bar Color,Couleur de la Barre Supérieure
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Do you want to unsubscribe from this mailing list?,Voulez-vous vous désinscrire de cette liste de diffusion?
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Do you want to unsubscribe from this mailing list?,Voulez-vous vous désinscrire de cette liste de diffusion?
DocType: Address,Plant,Usine
apps/frappe/frappe/core/doctype/communication/communication.js +65,Reply All,Répondre à Tous
DocType: DocType,Setup,Configuration
@@ -2179,7 +2187,7 @@ DocType: User,Send Notifications for Transactions I Follow,Envoyer des notificat
apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Vous ne pouvez pas choisir Envoyer, Annuler, Modifier sans Écrire"
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Êtes-vous sûr de vouloir supprimer la pièce jointe?
apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} <a href=""#Form/{0}/{1}"">{1}</a> is linked with {2} <a href=""#Form/{2}/{3}"">{3}</a>","Vous ne pouvez pas supprimer ou annuler parce que {0} <a href=""#Form/{0}/{1}"">{1}</a> est liée à {2} <a href=""#Form/{2}/{3}"">{3}</a>"
apps/frappe/frappe/__init__.py +1062,Thank you,Merci
apps/frappe/frappe/__init__.py +1070,Thank you,Merci
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,En Cours d'Enregistrement
DocType: Print Settings,Print Style Preview,Aperçu Style d'Impression
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Dossier_Test
@@ -2194,7 +2202,7 @@ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Ajouter
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,N° Série
,Role Permissions Manager,Gestionnaire d’Autorisations du Rôle
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Nom du nouveau Format d'Impression
apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Effacer la Pièce Jointe
apps/frappe/frappe/public/js/frappe/form/control.js +1087,Clear Attachment,Effacer la Pièce Jointe
apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Obligatoire :
,User Permissions Manager,Gestionnaire des Autorisations des Utilisateurs
DocType: Property Setter,New value to be set,Nouvelle valeur à définir
@@ -2219,7 +2227,7 @@ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment C
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,Effacer les Journaux d'Erreurs
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,Veuillez choisir une note
DocType: Email Account,Notify if unreplied for (in mins),Notifier si aucune réponse dans (en min)
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,Il y a 2 jours
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +501,2 days ago,Il y a 2 jours
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Catégoriser les posts de blog.
DocType: Workflow State,Time,Temps
DocType: DocField,Attach,Joindre
@@ -2235,6 +2243,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Taille d
DocType: GSuite Templates,Template Name,Nom du Modèle
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,nouveau type de document
DocType: Custom DocPerm,Read,Lire
DocType: Address,Chhattisgarh,Chhattisgarh
DocType: Role Permission for Page and Report,Role Permission for Page and Report,Autorisation du Rôle pour la Page et le Rapport
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Aligner la Valeur
apps/frappe/frappe/www/update-password.html +14,Old Password,Ancien Mot De Passe
@@ -2282,7 +2291,7 @@ apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your ema
can get back to you. Thanks!","Veuillez entrer à la fois votre email et votre message afin que nous \
puissions revenir vers vous. Merci !"
apps/frappe/frappe/email/smtp.py +170,Could not connect to outgoing email server,Impossible de se connecter au serveur de messagerie sortant
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +162,Thank you for your interest in subscribing to our updates,Merci de l’intérêt que vous nous montrez en vous abonnant à notre actualité
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Thank you for your interest in subscribing to our updates,Merci de l’intérêt que vous nous montrez en vous abonnant à notre actualité
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Custom Column,Colonne Personnalisée
DocType: Workflow State,resize-full,redimensionner-entièrement
DocType: Workflow State,off,de
@@ -2345,7 +2354,7 @@ DocType: Address,Telangana,Telangana
apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,{0} doit être une option par Défaut
DocType: Tag Doc Category,Tag Doc Category,Catégorie Doc de Tag
DocType: User,User Image,Photo de Profil
apps/frappe/frappe/email/queue.py +289,Emails are muted,Les Emails sont mis en sourdine
apps/frappe/frappe/email/queue.py +304,Emails are muted,Les Emails sont mis en sourdine
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + Haut
DocType: Website Theme,Heading Style,Style de Titre
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +183,A new Project with this name will be created,Un nouveau Projet sera créé avec ce nom
@@ -2562,7 +2571,6 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,cloche (bell)
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Erreur dans l'Alerte Email
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Partager ce document avec
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Configuration&gt; Gestionnaire des autorisations utilisateur
apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} ne peut pas être un nœud feuille car elle a des enfants
DocType: Communication,Info,Info
apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Ajouter une Pièce Jointe
@@ -2617,7 +2625,7 @@ apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,Le Format
DocType: Email Alert,Send days before or after the reference date,Envoyer jours avant ou après la date de référence
DocType: User,Allow user to login only after this hour (0-24),Autoriser l'utilisateur à se connecter seulement après cette heure (0-24)
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,Valeur
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +165,Click here to verify,Cliquez ici pour vérifier
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +166,Click here to verify,Cliquez ici pour vérifier
apps/frappe/frappe/utils/password_strength.py +178,Predictable substitutions like '@' instead of 'a' don't help very much.,Les substitutions prévisibles comme '@' au lieu de 'a' n’aident pas beaucoup.
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Assigné par moi
apps/frappe/frappe/utils/data.py +462,Zero,Zéro
@@ -2629,6 +2637,7 @@ DocType: ToDo,Priority,Priorité
DocType: Email Queue,Unsubscribe Param,Paramètre de Désinscription
DocType: Auto Email Report,Weekly,Hebdomadaire
DocType: Communication,In Reply To,En Réponse À
apps/frappe/frappe/contacts/doctype/address/address.py +189,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,Aucun modèle d&#39;adresse par défaut n&#39;a été trouvé. Créez une nouvelle version de Configuration&gt; Impression et Marquage&gt; Modèle d&#39;adresse.
DocType: DocType,Allow Import (via Data Import Tool),Autoriser l'Importation (via des données Outil d'Importation)
apps/frappe/frappe/templates/print_formats/standard_macros.html +30,Sr,Sr
DocType: DocField,Float,Nombre Réel
@@ -2719,7 +2728,6 @@ apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Limite {0} invalide
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Listez un type de document
DocType: Event,Ref Type,Type de Réf.
apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Si vous chargez de nouveaux enregistrements, laissez la colonne ""nom"" (ID) vide."
DocType: Address,Chattisgarh,Chattisgarh
apps/frappe/frappe/config/core.py +47,Errors in Background Events,Erreurs dans les Événements en Tâche de Fond
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,Nb de Colonnes
DocType: Workflow State,Calendar,Calendrier
@@ -2751,7 +2759,7 @@ apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Affect
DocType: Integration Request,Remote,À Distance
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Calculer
apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Veuillez d’abord sélectionner un DocType
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Confirmez Votre Email
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +174,Confirm Your Email,Confirmez Votre Email
apps/frappe/frappe/www/login.html +42,Or login with,Ou connectez-vous avec
DocType: Error Snapshot,Locals,Locaux
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Communiquée par {0} sur {1}: {2}
@@ -2768,7 +2776,7 @@ DocType: Web Page,Web Page,Page Web
DocType: Blog Category,Blogger,Blogueur
apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'Dans la Recherche Globale' n'est pas autorisé pour le type {0} dans la ligne {1}
apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Voir La Liste
apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Les Dates doivent être au format: {0}
apps/frappe/frappe/public/js/frappe/form/control.js +810,Date must be in format: {0},Les Dates doivent être au format: {0}
DocType: Workflow,Don't Override Status,Ne pas Remplacer le Statut
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Veuillez donner une note.
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Demande de Retour d'Expérience
@@ -2801,7 +2809,7 @@ DocType: Custom DocPerm,Report,Rapport
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Le montant doit être supérieur à 0.
apps/frappe/frappe/desk/reportview.py +107,{0} is saved,{0} est enregistré
apps/frappe/frappe/core/doctype/user/user.py +327,User {0} cannot be renamed,Utilisateur {0} ne peut pas être renommé
apps/frappe/frappe/model/db_schema.py +107,Fieldname is limited to 64 characters ({0}),Le Nom du champ est limité à 64 caractères ({0})
apps/frappe/frappe/model/db_schema.py +108,Fieldname is limited to 64 characters ({0}),Le Nom du champ est limité à 64 caractères ({0})
apps/frappe/frappe/config/desk.py +59,Email Group List,Liste des Groupes Email
DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],Un fichier d'icône avec l’extension .ico. Devrait être 16 x 16 px. Générer en utilisant un générateur de favicon. [favicon-generator.org]
DocType: Auto Email Report,Format,Format
@@ -2879,7 +2887,7 @@ DocType: Website Settings,Title Prefix,Préfixe de Titre
DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Les Notifications et Lots d’Emails seront envoyés à partir de ce serveur sortant.
DocType: Workflow State,cog,dent
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on Migrate,Sync sur Migration
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Affichage Actuel
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Currently Viewing,Affichage Actuel
DocType: DocField,Default,Par Défaut
apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} ajouté(e)
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Rechercher &#39;{0}&#39;
@@ -2939,7 +2947,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +771,Report was
DocType: Print Settings,Print Style,Style d'Impression
apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,Lié à aucun enregistrement
DocType: Custom DocPerm,Import,Importer
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +178,Row {0}: Not allowed to enable Allow on Submit for standard fields,Ligne {0} : Il n’est pas autorisé d’activer Autoriser à la Soumission pour les champs standards
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +180,Row {0}: Not allowed to enable Allow on Submit for standard fields,Ligne {0} : Il n’est pas autorisé d’activer Autoriser à la Soumission pour les champs standards
apps/frappe/frappe/config/setup.py +100,Import / Export Data,Import / Export de Données
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,Les rôles standard ne peuvent pas être renommés
DocType: Communication,To and CC,Pour et CC
@@ -2965,7 +2973,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo
DocType: Auto Email Report,Filter Meta,Meta de Filtre
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,Texte à afficher pour le lien vers la Page Web si ce formulaire dispose d'une page web. Le chemin du lien sera automatiquement généré sur la base des éléments `page_name` et `parent_website_route`
DocType: Feedback Request,Feedback Trigger,Générateur de Retour d’Expérience
apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Veuillez d'abord mettre {0}
apps/frappe/frappe/public/js/frappe/form/control.js +1741,Please set {0} first,Veuillez d'abord mettre {0}
DocType: Unhandled Email,Message-id,Id-message
DocType: Patch Log,Patch,Correctif
DocType: Async Task,Failed,Échoué


+ 72
- 64
frappe/translations/gu.csv Datei anzeigen

@@ -14,8 +14,9 @@ apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,
DocType: User,Facebook Username,ફેસબુક વપરાશકર્તા નામ
DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,નોંધ: બહુવિધ સત્રો મોબાઇલ ઉપકરણ કિસ્સામાં મંજૂરી આપવામાં આવશે
apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},આ વપરાશકર્તા માટે સક્ષમ ઇમેઇલ ઇનબૉક્સ {વપરાશકર્તાઓ}
apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,આ ઇમેઇલ મોકલી શકતા નથી. તમે આ મહિના માટે {0} ઇમેઇલ્સ મોકલવા મર્યાદા ઓળંગી દીધી છે.
apps/frappe/frappe/email/queue.py +225,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,આ ઇમેઇલ મોકલી શકતા નથી. તમે આ મહિના માટે {0} ઇમેઇલ્સ મોકલવા મર્યાદા ઓળંગી દીધી છે.
apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,કાયમ {0} સબમિટ?
apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,ફાઇલો બેકઅપ ડાઉનલોડ કરો
DocType: Address,County,કાઉન્ટી
DocType: Workflow,If Checked workflow status will not override status in list view,ચેક વર્કફ્લો સ્થિતિ યાદી જુઓ સ્થિતિ પર ફરીથી લખી નહીં તો
apps/frappe/frappe/client.py +280,Invalid file path: {0},અમાન્ય ફાઈલ પાથ: {0}
@@ -80,10 +81,10 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,અમા
apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,સંચાલક લૉગ માં
DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","વગેરે &quot;સેલ્સ ક્વેરી, આધાર ક્વેરી&quot; જેવા સંપર્ક વિકલ્પો, નવી લીટી પર દરેક અથવા અલ્પવિરામ દ્વારા અલગ થયેલ છે."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2 ડાઉનલોડ
apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,સામેલ કરો
apps/frappe/frappe/public/js/frappe/form/control.js +1979,Insert,સામેલ કરો
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},પસંદ કરો {0}
DocType: Print Settings,Classic,ઉત્તમ નમૂનાના
DocType: Desktop Icon,Color,રંગ
DocType: DocField,Color,રંગ
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +54,For ranges,શ્રેણીઓ માટે
DocType: Workflow State,indent-right,ઇન્ડેન્ટ અધિકાર
DocType: Has Role,Has Role,ભૂમિકા છે
@@ -100,7 +101,7 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To impor
DocType: DocType,Default Print Format,મૂળભૂત પ્રિન્ટ ફોર્મેટ
DocType: Workflow State,Tags,ટૅગ્સ
apps/frappe/frappe/public/js/frappe/form/workflow.js +33,None: End of Workflow,નહીં: વર્કફ્લો ઓવરને અંતે
apps/frappe/frappe/model/db_schema.py +346,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","બિન-અનન્ય હાલની કિંમતો કારણ કે ત્યાં {0} ક્ષેત્ર, {1} તરીકે અનન્ય સેટ કરી શકાય છે"
apps/frappe/frappe/model/db_schema.py +347,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","બિન-અનન્ય હાલની કિંમતો કારણ કે ત્યાં {0} ક્ષેત્ર, {1} તરીકે અનન્ય સેટ કરી શકાય છે"
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +47,Document Types,દસ્તાવેજ પ્રકાર
DocType: Address,Jammu and Kashmir,જમ્મુ અને કાશ્મીર
DocType: Workflow,Workflow State Field,વર્કફ્લો રાજ્ય ક્ષેત્ર
@@ -231,7 +232,7 @@ DocType: Workflow,Transition Rules,ટ્રાન્ઝિશન નિયમ
apps/frappe/frappe/core/doctype/report/report.js +11,Example:,ઉદાહરણ:
DocType: Workflow,Defines workflow states and rules for a document.,એક દસ્તાવેજ માટે વર્કફ્લો સ્ટેટ્સ અને નિયમો વ્યાખ્યાયિત કરે છે.
DocType: Workflow State,Filter,ફિલ્ટર
apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},FIELDNAME {0} જેવા વિશિષ્ટ અક્ષરો હોઈ શકે નહિં {1}
apps/frappe/frappe/model/db_schema.py +564,Fieldname {0} cannot have special characters like {1},FIELDNAME {0} જેવા વિશિષ્ટ અક્ષરો હોઈ શકે નહિં {1}
apps/frappe/frappe/config/setup.py +121,Update many values at one time.,એક સમયે ઘણા સુધારા કિંમતો.
apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,ભૂલ: તમે તેને ખોલી છે પછી દસ્તાવેજ સુધારાઈ ગયેલ છે
apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} લૉગ આઉટ: {1}
@@ -260,7 +261,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Gravatar.com
apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","તમારી ઉમેદવારી {0} પર સમાપ્ત થઈ છે. રિન્યૂ કરવા માટે, {1}."
DocType: Workflow State,plus-sign,પ્લસ-સાઇન
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,સેટઅપ પહેલેથી સંપૂર્ણ
apps/frappe/frappe/__init__.py +889,App {0} is not installed,એપ્લિકેશન {0} સ્થાપિત થયેલ નથી
apps/frappe/frappe/__init__.py +897,App {0} is not installed,એપ્લિકેશન {0} સ્થાપિત થયેલ નથી
DocType: Workflow State,Refresh,પુનઃતાજું
DocType: Event,Public,જાહેર
apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,કંઇ દર્શાવે છે
@@ -339,7 +340,6 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,સંપાદિત કરો મથાળું
DocType: File,File URL,ફાઈલ URL
DocType: Version,Table HTML,કોષ્ટક HTML
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> કોઈ પરિણામો નથી 'મળી </p>
apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,ઉમેદવારો ઉમેરો
apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,આજે આવનારી પ્રવૃત્તિઓ
DocType: Email Alert Recipient,Email By Document Field,દસ્તાવેજ ક્ષેત્ર દ્વારા ઇમેઇલ
@@ -404,7 +404,6 @@ DocType: Desktop Icon,Link,લિંક
apps/frappe/frappe/utils/file_manager.py +96,No file attached,જોડાયેલ કોઈ ફાઇલ
DocType: Version,Version,આવૃત્તિ
DocType: User,Fill Screen,સ્ક્રીન ભરો
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,કૃપા કરીને સેટઅપ&gt; ઇમેઇલ&gt; ઇમેઇલ એકાઉન્ટમાંથી સેટઅપ મૂળભૂત ઇમેઇલ એકાઉન્ટ
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","કારણે ગુમ માહિતી માટે, આ વૃક્ષ અહેવાલ પ્રદર્શિત કરવા માટે અસમર્થ છે. મોટે ભાગે, તે કારણે પરવાનગીઓ બહાર ફિલ્ટર કરવામાં આવી રહી છે."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. ફાઇલ પસંદ કરો
apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,અપલોડ દ્વારા સંપાદિત કરો
@@ -474,9 +473,9 @@ DocType: User,Reset Password Key,પાસવર્ડ રીસેટ કરો
DocType: Email Account,Enable Auto Reply,ઓટો જવાબ સક્ષમ
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,જોઇ ન
DocType: Workflow State,zoom-in,મોટું કરો
apps/frappe/frappe/email/queue.py +219,Unsubscribe from this list,આ યાદી માંથી અનસબ્સ્ક્રાઇબ
apps/frappe/frappe/email/queue.py +234,Unsubscribe from this list,આ યાદી માંથી અનસબ્સ્ક્રાઇબ
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Reference DocType and Reference Name are required,સંદર્ભ Doctype અને સંદર્ભ નામ જરૂરી છે
apps/frappe/frappe/utils/jinja.py +35,Syntax error in template,નમૂના સિન્ટેક્ષ ભૂલ
apps/frappe/frappe/utils/jinja.py +51,Syntax error in template,નમૂના સિન્ટેક્ષ ભૂલ
DocType: DocField,Width,પહોળાઈ
DocType: Email Account,Notify if unreplied,Unreplied જો સૂચિત
DocType: System Settings,Minimum Password Score,ન્યુનત્તમ પાસવર્ડ સ્કોર
@@ -560,6 +559,7 @@ DocType: Custom Field,Select the label after which you want to insert new field.
DocType: User,Last Login,છેલ્લું લૉગિન
apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},FIELDNAME પંક્તિ જરૂરી છે {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,કૉલમ
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,કૃપા કરીને સેટઅપ&gt; ઇમેઇલ&gt; ઇમેઇલ એકાઉન્ટમાંથી ડિફોલ્ટ ઇમેઇલ એકાઉન્ટ સેટ કરો
DocType: Custom Field,Adds a custom field to a DocType,એક Doctype માટે વૈવિધ્યપૂર્ણ ક્ષેત્ર ઉમેરે છે
DocType: File,Is Home Folder,મુખ્ય પૃષ્ઠ ફોલ્ડર છે
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} એ માન્ય ઇમેઇલ સરનામું નથી
@@ -567,7 +567,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +733,Select atleast 1 reco
apps/frappe/frappe/core/doctype/has_role/has_role.py +13,User '{0}' already has the role '{1}',વપરાશકર્તા &#39;{0}&#39; પહેલાથી જ ભૂમિકા છે &#39;{1}&#39;
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,અપલોડ કરો અને સમન્વય
apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},સાથે વહેંચાયેલ {0}
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe,અનસબ્સ્ક્રાઇબ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +132,Unsubscribe,અનસબ્સ્ક્રાઇબ
DocType: Communication,Reference Name,સંદર્ભ નામ
apps/frappe/frappe/public/js/frappe/toolbar.js +30,Chat Support,ચેટ આધાર
DocType: Error Snapshot,Exception,અપવાદ
@@ -585,7 +585,7 @@ DocType: Email Group,Newsletter Manager,ન્યૂઝલેટર વ્યવ
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,વિકલ્પ 1
apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} પર {1}
apps/frappe/frappe/config/setup.py +89,Log of error during requests.,વિનંતીઓ દરમિયાન ભૂલ લોગ.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} સફળતાપૂર્વક ઇમેઇલ ગ્રુપ ઉમેરી દેવામાં આવ્યુ છે.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +194,{0} has been successfully added to the Email Group.,{0} સફળતાપૂર્વક ઇમેઇલ ગ્રુપ ઉમેરી દેવામાં આવ્યુ છે.
DocType: Address,Uttar Pradesh,ઉત્તરપ્રદેશ
DocType: Address,Pondicherry,પોંડિચેરી
apps/frappe/frappe/public/js/frappe/upload.js +364,Make file(s) private or public?,ફાઈલ (ઓ) ખાનગી અથવા જાહેર કરો છો?
@@ -616,7 +616,7 @@ DocType: Portal Settings,Portal Settings,પોર્ટલ સેટિંગ
DocType: Web Page,0 is highest,0 સૌથી વધુ છે
apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,તમે ખાતરી કરો કે તમે કરવા માટે {0} આ સંચાર ફરીથી લિંક કરવા માંગો છો?
apps/frappe/frappe/www/login.html +104,Send Password,પાસવર્ડ મોકલો
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +45,Attachments,જોડાણો
DocType: Email Queue,Attachments,જોડાણો
apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,તમે આ દસ્તાવેજ ઍક્સેસ કરવા માટે તમારી પાસે પરવાનગીઓ નથી
DocType: Language,Language Name,ભાષા નામ
DocType: Email Group Member,Email Group Member,ઇમેઇલ ગ્રુપ સભ્ય
@@ -646,7 +646,7 @@ apps/frappe/frappe/utils/password_strength.py +78,Try to use a longer keyboard p
DocType: Feedback Trigger,Check Communication,કોમ્યુનિકેશન તપાસો
DocType: Address,Rajasthan,રાજસ્થાન
apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,રિપોર્ટ બિલ્ડર અહેવાલો અહેવાલ બિલ્ડર દ્વારા સીધા વ્યવસ્થાપિત થાય છે. નવરાશ.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,તમારું ઇમેઇલ સરનામું ચકાસો
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +164,Please verify your Email Address,તમારું ઇમેઇલ સરનામું ચકાસો
apps/frappe/frappe/model/document.py +903,none of,કંઈ
apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,મારા એક કૉપિ મોકલો
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,વપરાશકર્તા પરવાનગીઓ અપલોડ કરો
@@ -657,7 +657,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Si
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban બોર્ડ {0} અસ્તિત્વમાં નથી.
apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} હાલમાં આ દસ્તાવેજ જોઈ રહ્યા છે
DocType: ToDo,Assigned By Full Name,આખું નામ દ્વારા સોંપાયેલ
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} સુધારાશે
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} સુધારાશે
apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,રિપોર્ટ એક પ્રકારો માટે સેટ કરી શકાય છે
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} દિવસ પહેલા
DocType: Email Account,Awaiting Password,પ્રતીક્ષામાં પાસવર્ડ
@@ -682,7 +682,7 @@ DocType: Workflow State,Stop,બંધ કરો
DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,તમે ખોલવા માંગો છો પૃષ્ઠ પર લિંક. તમે તેને એક જૂથ પિતૃ બનાવવા માંગો છો તો ખાલી છોડી મૂકો.
DocType: DocType,Is Single,એક છે
apps/frappe/frappe/core/doctype/user/user.py +720,Sign Up is disabled,સાઇન અપ કરો અક્ષમ છે
apps/frappe/frappe/email/queue.py +278,{0} has left the conversation in {1} {2},{0} માં વાતચીત છોડી દીધી છે {1} {2}
apps/frappe/frappe/email/queue.py +293,{0} has left the conversation in {1} {2},{0} માં વાતચીત છોડી દીધી છે {1} {2}
DocType: Blogger,User ID of a Blogger,એક બ્લોગર ના વપરાશકર્તા ID
apps/frappe/frappe/core/doctype/user/user.py +287,There should remain at least one System Manager,ઓછામાં ઓછી એક સિસ્ટમ વ્યવસ્થાપક ત્યાં રહેવું જોઈએ
DocType: GSuite Settings,Authorization Code,અધિકૃતતા કોડ
@@ -728,6 +728,7 @@ DocType: Event,Event,ઇવેન્ટ
apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","{0} પર, {1} લખ્યું:"
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,ધોરણ ક્ષેત્ર કાઢી શકાતું નથી. તમે ઇચ્છો તો તમે તેને છુપાવી શકો છો
DocType: Top Bar Item,For top bar,ટોચ બાર
apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,બેકઅપ માટે કતારબદ્ધ તમને ડાઉનલોડ લિંક સાથે એક ઇમેઇલ પ્રાપ્ત થશે
apps/frappe/frappe/utils/bot.py +148,Could not identify {0},ઓળખી {0}
DocType: Address,Address,સરનામું
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +3,Payment Failed,ચુકવણી કરવામાં નિષ્ફળ
@@ -752,13 +753,13 @@ DocType: Web Form,Allow Print,પ્રિન્ટ માટે પરવાન
apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,કોઈ એપ્લિકેશન ઇન્સ્ટોલ
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,ફરજિયાત ક્ષેત્રમાં માર્ક
DocType: Communication,Clicked,વાપરો
apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},કોઈ પરવાનગી &#39;{0}&#39; {1}
apps/frappe/frappe/public/js/legacy/form.js +950,No permission to '{0}' {1},કોઈ પરવાનગી &#39;{0}&#39; {1}
DocType: User,Google User ID,Google વપરાશકર્તા ID
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,મોકલવા માટે અનુસૂચિત
DocType: DocType,Track Seen,ટ્રેક દેખાય
apps/frappe/frappe/desk/form/utils.py +55,This method can only be used to create a Comment,આ પદ્ધતિ ફક્ત ટિપ્પણી બનાવવા માટે વાપરી શકાય છે
DocType: Event,orange,નારંગી
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,No {0} found,કોઈ {0} મળ્યું
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +558,No {0} found,કોઈ {0} મળ્યું
apps/frappe/frappe/config/setup.py +242,Add custom forms.,વૈવિધ્યપૂર્ણ સ્વરૂપો ઉમેરો.
apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} માં {2}
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +419,submitted this document,આ દસ્તાવેજ રજૂ
@@ -788,6 +789,7 @@ DocType: Newsletter Email Group,Newsletter Email Group,ન્યૂઝલેટ
DocType: Dropbox Settings,Integrations,એકીકરણ
DocType: DocField,Section Break,વિભાગ બ્રેક
DocType: Address,Warehouse,વેરહાઉસ
DocType: Address,Other Territory,અન્ય પ્રદેશ
,Messages,સંદેશાઓ
apps/frappe/frappe/desk/page/applications/applications.js +49,Portal,પોર્ટલ
DocType: Email Account,Use Different Email Login ID,અલગ ઇમેઇલ લૉગિન ID નો ઉપયોગ
@@ -818,6 +820,7 @@ apps/frappe/frappe/utils/data.py +556,1 month ago,1 મહિનો પહેલ
DocType: Contact,User ID,વપરાશકર્તા ID
DocType: Communication,Sent,મોકલ્યું
DocType: Address,Kerala,કેરળ
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} વર્ષ (ઓ) પહેલા
DocType: File,Lft,Lft
DocType: User,Simultaneous Sessions,એક સાથે સત્રો
DocType: OAuth Client,Client Credentials,ક્લાઈન્ટ ઓળખપત્રો
@@ -834,7 +837,7 @@ DocType: Email Queue,Unsubscribe Method,ઉમેદવારી દૂર ક
DocType: GSuite Templates,Related DocType,સંબંધિત Doctype
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,સામગ્રી ઉમેરવા માટે સંપાદિત કરો
apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,ભાષા પસંદ કરો
apps/frappe/frappe/__init__.py +509,No permission for {0},માટે કોઈ પરવાનગી {0}
apps/frappe/frappe/__init__.py +517,No permission for {0},માટે કોઈ પરવાનગી {0}
DocType: DocType,Advanced,ઉન્નત
apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,API કી લાગે છે કે API સિક્રેટ ખોટું છે !!!
apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},સંદર્ભ: {0} {1}
@@ -845,6 +848,7 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P
DocType: Email Account,Yahoo Mail,યાહૂ મેલ
apps/frappe/frappe/limits.py +75,Your subscription will expire tomorrow.,તમારી ઉમેદવારી કાલે સમાપ્ત થઈ જશે.
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +483,Saved!,સાચવેલા!
apps/frappe/frappe/public/js/frappe/form/control.js +729,{0} is not a valid hex color,{0} માન્ય હેક્સ રંગ નથી
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,સૉરી
apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},સુધારાશે {0}: {1}
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,માસ્ટર
@@ -872,7 +876,7 @@ DocType: Report,Disabled,અક્ષમ
DocType: Workflow State,eye-close,આંખ બંધ
DocType: OAuth Provider Settings,OAuth Provider Settings,ઑથ પ્રદાતા સેટિંગ્સ
apps/frappe/frappe/config/setup.py +254,Applications,કાર્યક્રમો
apps/frappe/frappe/public/js/frappe/request.js +347,Report this issue,આ સમસ્યાની જાણ
apps/frappe/frappe/public/js/frappe/request.js +349,Report this issue,આ સમસ્યાની જાણ
apps/frappe/frappe/public/js/frappe/form/save.js +79,Name is required,નામ જરૂરી છે
DocType: Custom Script,Adds a custom script (client or server) to a DocType,એક Doctype માટે વૈવિધ્યપૂર્ણ સ્ક્રિપ્ટ (ક્લાઈન્ટ અથવા સર્વર) ઉમેરે છે
DocType: Address,City/Town,શહેર / નગર
@@ -966,6 +970,7 @@ DocType: Currency,**Currency** Master,** ** કરન્સી માસ્ટ
DocType: Email Account,No of emails remaining to be synced,બાકી ઇમેઇલ્સ કોઈ સમન્વયિત કરવા
apps/frappe/frappe/public/js/frappe/upload.js +203,Uploading,અપલોડ કરી
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,સોંપણી પહેલાં દસ્તાવેજ સેવ કરો
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,બગ્સ અને સૂચનો પોસ્ટ કરવા અહીં ક્લિક કરો
DocType: Website Settings,Address and other legal information you may want to put in the footer.,સરનામું અને અન્ય કાનૂની માહિતી તમે ફૂટર મૂકી કરવા માંગો છો શકે છે.
DocType: Website Sidebar Item,Website Sidebar Item,વેબસાઇટ સાઇડબાર વસ્તુ
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +44,{0} records updated,{0} રેકોર્ડ સુધારાશે
@@ -979,12 +984,10 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,સ્પષ
apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,દરરોજ ઘટનાઓ જ દિવસે સમાપ્ત કરીશું.
DocType: Communication,User Tags,વપરાશકર્તા ટૅગ્સ
apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,આનયન છબીઓ ..
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,સેટઅપ&gt; વપરાશકર્તા
DocType: Workflow State,download-alt,ડાઉનલોડ કરો-Alt
apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},એપ્લિકેશન ડાઉનલોડ {0}
DocType: Communication,Feedback Request,પ્રતિસાદ વિનંતી
apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,નીચેના ક્ષેત્રોમાં ખૂટે છે:
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Experimental Feature,પ્રાયોગિક લક્ષણ
apps/frappe/frappe/www/login.html +30,Sign in,સાઇન ઇન કરો
DocType: Web Page,Main Section,મુખ્ય વિભાગ
DocType: Page,Icon,ચિહ્ન
@@ -1086,7 +1089,7 @@ DocType: Customize Form,Customize Form,ફોર્મ કસ્ટમાઇઝ
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +104,Mandatory field: set role for,ફરજિયાત ફીલ્ડ છે: સુયોજિત ભૂમિકા
DocType: Currency,A symbol for this currency. For e.g. $,આ ચલણ માટે એક પ્રતીક. દા.ત. $ માટે
apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,Frappe ફ્રેમવર્ક
apps/frappe/frappe/model/naming.py +174,Name of {0} cannot be {1},નામ {0} ન હોઈ શકે {1}
apps/frappe/frappe/model/naming.py +180,Name of {0} cannot be {1},નામ {0} ન હોઈ શકે {1}
apps/frappe/frappe/config/setup.py +46,Show or hide modules globally.,બતાવો અથવા વૈશ્વિક મોડ્યુલો છુપાવો.
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,તારીખ થી
apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,સફળતા
@@ -1107,7 +1110,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +308,Add A New
apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js +3,See on Website,વેબસાઇટ પર જુઓ
DocType: Workflow Transition,Next State,આગામી રાજ્ય
DocType: User,Block Modules,બ્લોક મોડ્યુલો
apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,માટે આ બોલ પર પલટાવી {0} માટે &#39;{1}&#39; માં &#39;{2}; લંબાઈ સેટિંગ {3} માહિતી કાપી નાંખવાની રીત કારણ બનશે.
apps/frappe/frappe/model/db_schema.py +142,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,માટે આ બોલ પર પલટાવી {0} માટે &#39;{1}&#39; માં &#39;{2}; લંબાઈ સેટિંગ {3} માહિતી કાપી નાંખવાની રીત કારણ બનશે.
DocType: Print Format,Custom CSS,કસ્ટમ CSS
apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,એક ટિપ્પણી ઉમેરો
apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},અવગણેલ: {0} માટે {1}
@@ -1199,13 +1202,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,
DocType: Custom Role,Custom Role,કસ્ટમ ભૂમિકા
apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,ઘર / ટેસ્ટ ફોલ્ડરમાં 2
DocType: System Settings,Ignore User Permissions If Missing,ખૂટે જો વપરાશકર્તા પરવાનગીઓ અવગણો
apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,અપલોડ કરતા પહેલા આ દસ્તાવેજ સાચવી કરો.
apps/frappe/frappe/public/js/frappe/form/control.js +1075,Please save the document before uploading.,અપલોડ કરતા પહેલા આ દસ્તાવેજ સાચવી કરો.
apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,તમારો પાસવર્ડ દાખલ કરો
DocType: Dropbox Settings,Dropbox Access Secret,ડ્રૉપબૉક્સ ઍક્સેસ સિક્રેટ
apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,અન્ય એક ટિપ્પણી ઉમેરો
apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Doctype સંપાદિત કરો
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,ન્યૂઝલેટરમાંથી અનસબ્સ્ક્રાઇબ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,Unsubscribed from Newsletter,ન્યૂઝલેટરમાંથી અનસબ્સ્ક્રાઇબ
apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,વિભાગ બ્રેક પહેલા થવું જોઈએ ગડી
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,વિકાસ હેઠળ
apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,દ્વારા છેલ્લે સંશોધિત
DocType: Workflow State,hand-down,હાથ નીચે
DocType: Address,GST State,જીએસટી રાજ્ય
@@ -1226,6 +1230,7 @@ DocType: Workflow State,Tag,ટેગ
DocType: Custom Script,Script,સ્ક્રિપ્ટ
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,મારી સેટિંગ્સ
DocType: Website Theme,Text Color,ટેક્સ્ટ રંગ
apps/frappe/frappe/desk/page/backups/backups.py +72,Backup job is already queued. You will receive an email with the download link,બૅકઅપ જોબ પહેલેથી કતારમાં છે. તમને ડાઉનલોડ લિંક સાથે એક ઇમેઇલ પ્રાપ્ત થશે
DocType: Desktop Icon,Force Show,ફોર્સ બતાવો
apps/frappe/frappe/auth.py +78,Invalid Request,અમાન્ય વિનંતી
apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,આ ફોર્મ કોઈપણ ઇનપુટ નથી
@@ -1336,7 +1341,7 @@ DocType: DocField,Name,નામ
apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,તમે તમારી યોજના માટે {0} મહત્તમ જગ્યા વટાવી દીધી છે. {1}.
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,દસ્તાવેજ શોધો
DocType: OAuth Authorization Code,Valid,માન્ય
apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,લિંક ખોલો
apps/frappe/frappe/public/js/frappe/form/control.js +1354,Open Link,લિંક ખોલો
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,તમારી ભાષામાં
apps/frappe/frappe/desk/form/load.py +46,Did not load,લોડ થઈ નહોતી
apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,પંક્તિ ઉમેરો
@@ -1354,6 +1359,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","કેટલાક દસ્તાવેજો, એક ભરતિયું જેમ કે એક વખત અંતિમ બદલી ન હોવી જોઇએ. આવા દસ્તાવેજો માટે અંતિમ રાજ્ય સબમિટ કહેવામાં આવે છે. તમે ભૂમિકા સબમિટ કરી શકો છો કે જે પ્રતિબંધિત કરી શકો છો."
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,તમે આ અહેવાલ નિકાસ કરવાની પરવાનગી નથી
apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 આઇટમ પસંદ
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> 'કોઈ પરિણામ મળ્યાં નથી' </p>
DocType: Newsletter,Test Email Address,પરીક્ષણ ઇમેઇલ સરનામું
DocType: ToDo,Sender,પ્રેષક
DocType: GSuite Settings,Google Apps Script,Google Apps સ્ક્રિપ્ટ
@@ -1461,7 +1467,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Ple
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,લોડ કરી રહ્યું છે રિપોર્ટ
apps/frappe/frappe/limits.py +72,Your subscription will expire today.,તમારી ઉમેદવારી આજે સમાપ્ત થઈ જશે.
DocType: Page,Standard,સ્ટાન્ડર્ડ
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,ફાઇલ જોડવાનો
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,ફાઇલ જોડવાનો
apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,પાસવર્ડ સુધારા સૂચન
apps/frappe/frappe/desk/page/backups/backups.html +13,Size,માપ
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,પૂર્ણ સોંપણી
@@ -1491,7 +1497,7 @@ apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversat
apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},વિકલ્પો લિંક ક્ષેત્ર માટે સેટ નથી {0}
DocType: Customize Form,"Must be of type ""Attach Image""",પ્રકાર હોવા જ જોઈએ &quot;છબી જોડો&quot;
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,બધા નાપસંદ
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},તમે ક્ષેત્ર માટે સેટ કરેલી નથી &#39;ફક્ત વાંચવા માટે&#39; કરી શકો છો {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +199,You cannot unset 'Read Only' for field {0},તમે ક્ષેત્ર માટે સેટ કરેલી નથી &#39;ફક્ત વાંચવા માટે&#39; કરી શકો છો {0}
DocType: Auto Email Report,Zero means send records updated at anytime,ઝીરો અર્થ એ થાય કોઈપણ સમયે અપડેટ રેકોર્ડ મોકલી
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +22,Complete Setup,સેટઅપ પૂર્ણ
DocType: Workflow State,asterisk,ફૂદડી
@@ -1505,7 +1511,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +98,Week,અઠવ
DocType: Social Login Keys,Google,Google
DocType: Email Domain,Example Email Address,ઉદાહરણ ઇમેઇલ સરનામું
apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,સૌથી વધુ ઉપયોગમાં
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Unsubscribe from Newsletter,ન્યૂઝલેટર કોઇપણ સમયે અનસબ્સ્ક્રાઇબ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe from Newsletter,ન્યૂઝલેટર કોઇપણ સમયે અનસબ્સ્ક્રાઇબ
apps/frappe/frappe/www/login.html +101,Forgot Password,પાસવર્ડ ભૂલી ગયા છો
DocType: Dropbox Settings,Backup Frequency,બેકઅપ આવર્તન
DocType: Workflow State,Inverse,વ્યસ્ત
@@ -1583,10 +1589,11 @@ apps/frappe/frappe/config/setup.py +209,"Actions for workflow (e.g. Approve, Can
DocType: Workflow State,flag,ધ્વજ
apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +57,Feedback Request is already sent to user,પ્રતિસાદ વિનંતી પહેલાથી જ વપરાશકર્તા માટે મોકલવામાં આવે છે
DocType: Web Page,Text Align,લખાણ સંરેખિત
apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},નામ જેવા વિશિષ્ટ અક્ષરો સમાવી શકે નહિં {0}
apps/frappe/frappe/model/naming.py +185,Name cannot contain special characters like {0},નામ જેવા વિશિષ્ટ અક્ષરો સમાવી શકે નહિં {0}
DocType: Contact Us Settings,Forward To Email Address,ફોરવર્ડ ઇમેઇલ સરનામું
apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,બધા માહિતી બતાવો
apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,શીર્ષક ક્ષેત્ર માન્ય FIELDNAME હોવા જ જોઈએ
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,ઇમેઇલ એકાઉન્ટ સેટઅપ નથી કૃપા કરીને સેટઅપ&gt; ઇમેઇલ&gt; ઇમેઇલ એકાઉન્ટમાંથી એક નવું ઇમેઇલ એકાઉન્ટ બનાવો
apps/frappe/frappe/config/core.py +7,Documents,દસ્તાવેજો
DocType: Email Flag Queue,Is Completed,પૂર્ણ થાય છે
apps/frappe/frappe/www/me.html +22,Edit Profile,પ્રોફાઇલ સંપાદિત કરો
@@ -1596,7 +1603,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi
myfield
eval:doc.myfield=='My Value'
eval:doc.age&gt;18",આ ક્ષેત્ર દેખાશે તો જ FIELDNAME અહીં વ્યાખ્યાયિત મૂલ્ય ધરાવે છે અથવા નિયમો સાચા (ઉદાહરણો) છે: myfield eval: doc.myfield == &#39;મારું કિંમત&#39; eval: doc.age&gt; 18
apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,આજે
apps/frappe/frappe/public/js/frappe/form/control.js +764,Today,આજે
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","તમે આ સમૂહ છે એકવાર, વપરાશકર્તાઓ સક્ષમ વપરાશ દસ્તાવેજો હશે. (દા.ત. પોસ્ટ બ્લોગ) લિંક (દા.ત.. બ્લોગર) અસ્તિત્વમાં છે."
DocType: Error Log,Log of Scheduler Errors,નિયોજક ભૂલો લોગ
DocType: User,Bio,બાયો
@@ -1655,7 +1662,7 @@ DocType: Print Format,Js,જેએસ
apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,પસંદ કરો પ્રિંટ ફોર્મેટ
apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,લઘુ કીબોર્ડ પેટર્ન ધારી માટે સરળ હોય છે
DocType: Portal Settings,Portal Menu,પોર્ટલ મેનુ
apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,{0} લંબાઈ 1 અને 1000 વચ્ચે પ્રયત્ન કરીશું
apps/frappe/frappe/model/db_schema.py +115,Length of {0} should be between 1 and 1000,{0} લંબાઈ 1 અને 1000 વચ્ચે પ્રયત્ન કરીશું
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,કંઈપણ માટે શોધ
DocType: DocField,Print Hide,પ્રિંટ છુપાવો
apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,કિંમત દાખલ
@@ -1708,8 +1715,7 @@ apps/frappe/frappe/model/document.py +564,Cannot change docstatus from 0 to 2,0
DocType: User Permission for Page and Report,Roles Permission,ભૂમિકાઓ પરવાનગી
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,સુધારો
DocType: Error Snapshot,Snapshot View,સ્નેપશોટ જુઓ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,મોકલતા પહેલા ન્યૂઝલેટર સેવ કરો
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} વર્ષ (ઓ) પહેલા
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +101,Please save the Newsletter before sending,મોકલતા પહેલા ન્યૂઝલેટર સેવ કરો
apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},વિકલ્પો પંક્તિ માં ક્ષેત્ર {0} માટે માન્ય Doctype હોવા જ જોઈએ {1}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,ગુણધર્મોમાં ફેરફાર કરો
DocType: Patch Log,List of patches executed,પેચો યાદી ચલાવવામાં
@@ -1727,7 +1733,7 @@ apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,પાસવ
DocType: Workflow State,trash,કચરો
DocType: System Settings,Older backups will be automatically deleted,જૂની બેકઅપ આપોઆપ કાઢી નાખવામાં આવશે
DocType: Event,Leave blank to repeat always,હંમેશા પુનરાવર્તન ખાલી છોડી દો
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +192,Confirmed,પુષ્ટિ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,Confirmed,પુષ્ટિ
DocType: Event,Ends on,રોજ સમાપ્ત થાય છે
DocType: Payment Gateway,Gateway,ગેટવે
apps/frappe/frappe/public/js/frappe/form/linked_with.js +116,Not enough permission to see links,લિંક્સ જોવા માટે પૂરતી પરવાનગી નથી
@@ -1758,7 +1764,6 @@ DocType: Contact,Purchase Manager,ખરીદી વ્યવસ્થાપક
DocType: Custom Script,Sample,નમૂના
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,uncategorised ટૅગ્સ
DocType: Event,Every Week,દર અઠવાડિયે
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,ઇમેઇલ એકાઉન્ટ નથી સેટઅપ. સેટઅપ&gt; ઇમેઇલ&gt; ઇમેઇલ એકાઉન્ટ તરફથી એક નવી ઇમેઇલ એકાઉન્ટ બનાવવા કૃપા કરીને
apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,અહીં ક્લિક કરો તમારા વપરાશ તપાસો અથવા ઊંચી યોજના સુધારો કરવા
DocType: Custom Field,Is Mandatory Field,ફરજિયાત ફીલ્ડ છે
DocType: User,Website User,વેબસાઈટ
@@ -1766,7 +1771,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +10,Not equals,
DocType: Integration Request,Integration Request Service,એકત્રિકરણ વિનંતી સેવા
DocType: Website Script,Script to attach to all web pages.,સ્ક્રિપ્ટ બધા વેબ પાનાંઓ સાથે જોડે છે.
DocType: Web Form,Allow Multiple,મલ્ટીપલ માટે પરવાનગી આપે છે
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +40,Assign,સોંપો
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +44,Assign,સોંપો
apps/frappe/frappe/config/setup.py +102,Import / Export Data from .csv files.,CSV ફાઇલો આયાત / નિકાસ માહિતી.
DocType: Auto Email Report,Only Send Records Updated in Last X Hours,જ મોકલો રેકોર્ડ્સ છેલ્લે એક્સ કલાક અપડેટ કર્યું
DocType: Communication,Feedback,પ્રતિસાદ
@@ -1846,7 +1851,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,બાક
apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,જોડાણ પહેલા સેવ કરો.
apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),ઉમેરાયેલ {0} ({1})
apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},ડિફૉલ્ટ થીમ માં સુયોજિત થયેલ છે {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype થી બદલી શકાતું નથી {0} માટે {1} પંક્તિ માં {2}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +325,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype થી બદલી શકાતું નથી {0} માટે {1} પંક્તિ માં {2}
apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,ભૂમિકા પરવાનગીઓ
DocType: Help Article,Intermediate,વચગાળાના
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,વાંચો કરી શકો છો
@@ -1861,9 +1866,9 @@ apps/frappe/frappe/core/doctype/user/user.js +42,Refreshing...,તાજું .
DocType: Event,Starts on,પર શરૂ થાય છે
DocType: System Settings,System Settings,સિસ્ટમ ગોઠવણીઓ
apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,સત્ર શરૂ કરવામાં નિષ્ફળ
apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},આ ઇમેઇલ {0} મોકલવામાં આવે છે અને નકલ કરવામાં આવી હતી {1}
apps/frappe/frappe/email/queue.py +470,This email was sent to {0} and copied to {1},આ ઇમેઇલ {0} મોકલવામાં આવે છે અને નકલ કરવામાં આવી હતી {1}
DocType: Workflow State,th,મી
apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},બનાવેલા નવા {0}
apps/frappe/frappe/public/js/frappe/form/control.js +1517,Create a new {0},બનાવેલા નવા {0}
DocType: Email Rule,Is Spam,સ્પામ છે
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},રિપોર્ટ {0}
apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},ઓપન {0}
@@ -1875,12 +1880,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon a
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,ડુપ્લિકેટ
DocType: Newsletter,Create and Send Newsletters,બનાવો અને મોકલો ન્યૂઝલેટર્સ
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date must be before To Date,તારીખથી તારીખ પહેલાં જ હોવી જોઈએ
DocType: Address,Andaman and Nicobar Islands,આંદામાન અને નિકોબાર ટાપુઓ
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +216,GSuite Document,GSuite દસ્તાવેજ
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +29,Please specify which value field must be checked,ચકાસાયેલ જ હોવું જોઈએ કે જે કિંમત ક્ષેત્ર સ્પષ્ટ કરો
apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"""Parent"" signifies the parent table in which this row must be added",&quot;પિતૃ&quot; આ પંક્તિ ઉમેરાવી જ જોઈએ કે જેમાં પિતૃ ટેબલ નોંધે
DocType: Website Theme,Apply Style,શૈલી લાગુ
DocType: Feedback Request,Feedback Rating,પ્રતિસાદ રેટિંગ
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared With,સાથે વહેંચાયેલ
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,સાથે વહેંચાયેલ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,સેટઅપ&gt; વપરાશકર્તા પરવાનગીઓ વ્યવસ્થાપક
DocType: Help Category,Help Articles,મદદ લેખો
,Modules Setup,મોડ્યુલો સેટઅપ
apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,પ્રકાર:
@@ -1911,7 +1918,7 @@ DocType: OAuth Client,App Client ID,એપ્લિકેશન ક્લાઈ
DocType: Kanban Board,Kanban Board Name,Kanban બોર્ડ નામ
DocType: Email Alert Recipient,"Expression, Optional","અભિવ્યક્તિ, વૈકલ્પિક"
DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,કૉપિ કરો અને script.google.com ખાતે આ કોડને અને તમારા પ્રોજેક્ટમાં ખાલી Code.gs પેસ્ટ
apps/frappe/frappe/email/queue.py +456,This email was sent to {0},આ ઇમેઇલ મોકલવામાં આવ્યો હતો {0}
apps/frappe/frappe/email/queue.py +472,This email was sent to {0},આ ઇમેઇલ મોકલવામાં આવ્યો હતો {0}
DocType: DocField,Remember Last Selected Value,યાદ રાખો છેલ્લા પસંદ કરેલ કિંમત
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +334,Please select Document Type,પસંદ કરો દસ્તાવેજનો પ્રકાર
DocType: Email Account,Check this to pull emails from your mailbox,આ તમારા મેઇલબોક્સમાં ઇમેઇલ્સ ખેંચી માટે ચકાસો
@@ -1926,6 +1933,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,વ
DocType: Feedback Trigger,Email Field,ઇમેઇલ ક્ષેત્ર
apps/frappe/frappe/www/update-password.html +59,New Password Required.,નવો પાસવર્ડ જરૂરી છે.
apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} સાથે આ દસ્તાવેજ શેર {1}
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,સેટઅપ&gt; વપરાશકર્તા
DocType: Website Settings,Brand Image,બ્રાન્ડ છબી
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","ટોચની સંશોધક પટ્ટીમાં, ફૂટર અને લોગો સેટઅપ."
@@ -1993,8 +2001,8 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa
apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},માટે ફાઇલ ફોર્મેટ વાંચવામાં અસમર્થ {0}
DocType: Auto Email Report,Filter Data,ફિલ્ટર ડેટા
apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,ટેગ ઉમેરો
apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,પ્રથમ ફાઇલ જોડવાનો કરો.
apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","આ નામને સુયોજિત કરી તેમાં કેટલીક ભૂલો હતી, સંચાલકનો સંપર્ક કરો"
apps/frappe/frappe/public/js/frappe/form/control.js +1335,Please attach a file first.,પ્રથમ ફાઇલ જોડવાનો કરો.
apps/frappe/frappe/model/naming.py +174,"There were some errors setting the name, please contact the administrator","આ નામને સુયોજિત કરી તેમાં કેટલીક ભૂલો હતી, સંચાલકનો સંપર્ક કરો"
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,ઇનકમિંગ ઇમેઇલ એકાઉન્ટ યોગ્ય નથી
apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \
Please enter a valid email address so that we can get back.",તમે તમારા બદલે નામ તમારું ઇમેઇલ લખ્યું છે એવું લાગે છે. જેથી અમે પાછા જઈ શકો છો \ કૃપા કરીને માન્ય ઇમેઇલ સરનામું દાખલ કરો.
@@ -2046,7 +2054,6 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,
DocType: Custom DocPerm,Create,બનાવો
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},અમાન્ય ફિલ્ટર કરો: {0}
DocType: Email Account,no failed attempts,કોઈ નિષ્ફળ પ્રયાસો
apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,કોઈ ડિફોલ્ટ સરનામું ટેમ્પલેટ મળ્યાં નથી. સેટઅપ&gt; પ્રિન્ટિંગ અને બ્રાંડિંગ&gt; સરનામાં નમૂનામાંથી એક નવું બનાવો.
DocType: GSuite Settings,refresh_token,refresh_token
DocType: Dropbox Settings,App Access Key,એપ્લિકેશન ઍક્સેસ કી
DocType: OAuth Bearer Token,Access Token,ઍક્સેસ ટોકન
@@ -2072,6 +2079,7 @@ apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,મા
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},બનાવો નવી {0}
apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,નવા ઇમેઇલ એકાઉન્ટનો
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +28,Document Restored,દસ્તાવેજ પુનઃપ્રકાશિત
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +203,You can't set 'Options' for field {0},તમે {0} ક્ષેત્ર માટે &#39;વિકલ્પો&#39; સેટ કરી શકતા નથી
apps/frappe/frappe/core/page/usage_info/usage_info.html +86,Size (MB),માપ (MB)
DocType: Help Article,Author,લેખક
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +10,Resume Sending,રેઝ્યૂમે મોકલવાનું
@@ -2081,7 +2089,7 @@ DocType: Print Settings,Monochrome,મોનોક્રોમ
DocType: Address,Purchase User,ખરીદી વપરાશકર્તા
DocType: Workflow,"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.","વિવિધ &quot;સ્ટેટ્સ&quot; આ દસ્તાવેજ &quot;ખોલો&quot; ગમે છે. હાજર હોઈ શકે, &quot;મંજૂરી બાકી&quot; વગેરે"
apps/frappe/frappe/utils/verified_command.py +43,This link is invalid or expired. Please make sure you have pasted correctly.,આ લિંક અમાન્ય અથવા નિવૃત્ત થઈ છે. તમે યોગ્ય રીતે પેસ્ટ છે તેની ખાતરી કરો.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> સફળતાપૂર્વક આ મેઇલિંગ સૂચિમાંથી અનસબસ્ક્રાઇબ કરવામાં આવ્યા છે.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +136,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> સફળતાપૂર્વક આ મેઇલિંગ સૂચિમાંથી અનસબસ્ક્રાઇબ કરવામાં આવ્યા છે.
DocType: Web Page,Slideshow,સ્લાઇડ શો
apps/frappe/frappe/contacts/doctype/address_template/address_template.py +31,Default Address Template cannot be deleted,મૂળભૂત સરનામું ઢાંચો કાઢી શકાતી નથી
DocType: Contact,Maintenance Manager,જાળવણી વ્યવસ્થાપક
@@ -2102,7 +2110,7 @@ apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a r
DocType: System Settings,Apply Strict User Permissions,સખત વપરાશકર્તા પરવાનગીઓ લાગુ
DocType: DocField,Allow Bulk Edit,બલ્ક સંપાદન માટે પરવાનગી આપે છે
DocType: Blog Post,Blog Post,બ્લોગ પોસ્ટ
apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,અદ્યતન શોધ
apps/frappe/frappe/public/js/frappe/form/control.js +1527,Advanced Search,અદ્યતન શોધ
apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,પાસવર્ડ રીસેટ સૂચનાઓ તમારા ઇમેઇલ પર મોકલવામાં આવ્યા છે
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \
higher levels for field level permissions.",સ્તર 0 દસ્તાવેજ સ્તર પરવાનગીઓ \ ક્ષેત્ર સ્તર પરવાનગીઓ માટે ઉચ્ચ સ્તર છે.
@@ -2127,13 +2135,13 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new re
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,શોધી
DocType: Currency,Fraction,અપૂર્ણાંક
DocType: LDAP Settings,LDAP First Name Field,LDAP પ્રથમ નામ ક્ષેત્ર
apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,હાલની જોડાણો માંથી પસંદ કરો
apps/frappe/frappe/public/js/frappe/form/control.js +1085,Select from existing attachments,હાલની જોડાણો માંથી પસંદ કરો
DocType: Custom Field,Field Description,ક્ષેત્ર વર્ણન
apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,પ્રોમ્પ્ટ મારફતે સુયોજિત નથી Name
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,ઇમેઇલ ઇનબૉક્સ
DocType: Auto Email Report,Filters Display,ગાળકો ડિસ્પ્લે
DocType: Website Theme,Top Bar Color,ટોચના બાર રંગ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Do you want to unsubscribe from this mailing list?,તમે આ મેઇલિંગ યાદી માંથી અનસબ્સ્ક્રાઇબ કરવા માંગો છો?
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Do you want to unsubscribe from this mailing list?,તમે આ મેઇલિંગ યાદી માંથી અનસબ્સ્ક્રાઇબ કરવા માંગો છો?
DocType: Address,Plant,પ્લાન્ટ
apps/frappe/frappe/core/doctype/communication/communication.js +65,Reply All,બધાને જવાબ આપો
DocType: DocType,Setup,સ્થાપના
@@ -2176,7 +2184,7 @@ DocType: User,Send Notifications for Transactions I Follow,હું અનુ
apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: સબમિટ રદ, લખો વગર સુધારો સેટ કરી શકાતો નથી"
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,તમે જોડાણ કાઢી નાખવા માંગો છો તમને ખાતરી છે?
apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} <a href=""#Form/{0}/{1}"">{1}</a> is linked with {2} <a href=""#Form/{2}/{3}"">{3}</a>","કાઢી નાખો અથવા કારણ કે {0} રદ કરી શકાતું નથી <a href=""#Form/{0}/{1}"">{1}</a> સાથે કડી થયેલ છે {2} <a href=""#Form/{2}/{3}"">{3}</a>"
apps/frappe/frappe/__init__.py +1062,Thank you,આભાર
apps/frappe/frappe/__init__.py +1070,Thank you,આભાર
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,સાચવી
DocType: Print Settings,Print Style Preview,શૈલી પૂર્વાવલોકન છાપો
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
@@ -2191,7 +2199,7 @@ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,સ્
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,કર્મ
,Role Permissions Manager,ભૂમિકા પરવાનગીઓ વ્યવસ્થાપક
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,નવી પ્રિંટ ફોર્મેટ નામ
apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,જોડાણ સ્પષ્ટ
apps/frappe/frappe/public/js/frappe/form/control.js +1087,Clear Attachment,જોડાણ સ્પષ્ટ
apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,ફરજિયાત:
,User Permissions Manager,વપરાશકર્તા પરવાનગીઓ વ્યવસ્થાપક
DocType: Property Setter,New value to be set,નવી કિંમત સુયોજિત કરવા
@@ -2216,7 +2224,7 @@ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment C
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,સ્પષ્ટ ભૂલ લોગો
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,કૃપા કરીને રેટિંગ પસંદ કરો
DocType: Email Account,Notify if unreplied for (in mins),(મિનિટ) માટે unreplied જો સૂચિત
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 દિવસ પહેલા
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +501,2 days ago,2 દિવસ પહેલા
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,બ્લોગ પોસ્ટ્સ વર્ગીકૃત કરો.
DocType: Workflow State,Time,સમય
DocType: DocField,Attach,જોડો
@@ -2232,6 +2240,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,બે
DocType: GSuite Templates,Template Name,નમૂના નામ
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,દસ્તાવેજ નવી પ્રકાર
DocType: Custom DocPerm,Read,વાંચો
DocType: Address,Chhattisgarh,છત્તીસગઢ
DocType: Role Permission for Page and Report,Role Permission for Page and Report,પેજ અને રિપોર્ટ માટે રોલ પરવાનગી
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,સંરેખિત કરો ભાવ
apps/frappe/frappe/www/update-password.html +14,Old Password,જુનો પાસવર્ડ
@@ -2278,7 +2287,7 @@ apps/frappe/frappe/public/js/frappe/roles_editor.js +28,Add all roles,બધા
apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your email and message so that we \
can get back to you. Thanks!",અમે તમને પાછા મેળવી શકો છો \ કે જેથી તમારા ઇમેઇલ અને સંદેશ બંને દાખલ કરો. આભાર!
apps/frappe/frappe/email/smtp.py +170,Could not connect to outgoing email server,આઉટગોઇંગ ઇમેઇલ સર્વર સાથે કનેક્ટ કરી શકાયું
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +162,Thank you for your interest in subscribing to our updates,અમારી સુધારાઓ ઉમેદવારી નોંધાવવા માં તમારા રસ માટે આભાર
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Thank you for your interest in subscribing to our updates,અમારી સુધારાઓ ઉમેદવારી નોંધાવવા માં તમારા રસ માટે આભાર
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Custom Column,કસ્ટમ કૉલમ
DocType: Workflow State,resize-full,માપ બદલો સંપૂર્ણ
DocType: Workflow State,off,બંધ
@@ -2341,7 +2350,7 @@ DocType: Address,Telangana,તેલંગાણા
apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,{0} એક વિકલ્પ હોઈ જ જોઈએ માટે મૂળભૂત
DocType: Tag Doc Category,Tag Doc Category,ટેગ ડૉક વર્ગ
DocType: User,User Image,વપરાશકર્તા છબી
apps/frappe/frappe/email/queue.py +289,Emails are muted,ઇમેઇલ્સ મ્યૂટ છે
apps/frappe/frappe/email/queue.py +304,Emails are muted,ઇમેઇલ્સ મ્યૂટ છે
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + ઉપર
DocType: Website Theme,Heading Style,શીર્ષક શૈલી
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +183,A new Project with this name will be created,આ નામ સાથે એક નવો પ્રોજેક્ટ બનાવાશે
@@ -2558,7 +2567,6 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,બેલ
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,ઇમેઇલ ચેતવણી ભૂલ
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,સાથે આ દસ્તાવેજને શેર
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,સેટઅપ&gt; વપરાશકર્તા પરવાનગીઓ મેનેજર
apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,તે બાળકો ધરાવે છે {0} {1} પાંદડાના નોડ ન હોઈ શકે
DocType: Communication,Info,માહિતી
apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,જોડાણ ઉમેરો
@@ -2602,7 +2610,7 @@ apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,પ્ર
DocType: Email Alert,Send days before or after the reference date,પહેલાં અથવા સંદર્ભ તારીખ પછી દિવસો મોકલો
DocType: User,Allow user to login only after this hour (0-24),વપરાશકર્તા માત્ર આ કલાક પછી પ્રવેશ કરવા માટે (0-24) માટે પરવાનગી આપે છે
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,ભાવ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +165,Click here to verify,ચકાસવા માટે અહીં ક્લિક કરો
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +166,Click here to verify,ચકાસવા માટે અહીં ક્લિક કરો
apps/frappe/frappe/utils/password_strength.py +178,Predictable substitutions like '@' instead of 'a' don't help very much.,જેમ ધારી ખેલાડીઓની ફેરબદલ &#39;@&#39; બદલે &#39;એ&#39; ખૂબ મદદ ન કરી શકું.
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,મારા દ્વારા સોંપાયેલ
apps/frappe/frappe/utils/data.py +462,Zero,ઝીરો
@@ -2614,6 +2622,7 @@ DocType: ToDo,Priority,પ્રાધાન્યતા
DocType: Email Queue,Unsubscribe Param,ઉમેદવારી દૂર કરો પરમ
DocType: Auto Email Report,Weekly,અઠવાડિક
DocType: Communication,In Reply To,જવાબમાં
apps/frappe/frappe/contacts/doctype/address/address.py +189,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,કોઈ ડિફૉલ્ટ સરનામું ટેમ્પલેટ મળ્યું નથી કૃપા કરીને સેટઅપ&gt; પ્રિન્ટિંગ અને બ્રાંડિંગ&gt; સરનામું ઢાંચોમાંથી એક નવું બનાવો.
DocType: DocType,Allow Import (via Data Import Tool),આયાત મંજૂરી આપો (ડેટા આયાત સાધન મારફતે)
apps/frappe/frappe/templates/print_formats/standard_macros.html +30,Sr,SR
DocType: DocField,Float,ફ્લોટ
@@ -2704,7 +2713,6 @@ apps/frappe/frappe/commands/site.py +451,Invalid limit {0},અમાન્ય
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,દસ્તાવેજ પ્રકારની યાદી
DocType: Event,Ref Type,સંદર્ભ પ્રકાર
apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","તમે નવા વિક્રમો અપલોડ કરી રહ્યાં છો, તો &quot;નામ&quot; (ID) કોલમ ખાલી છોડી દો."
DocType: Address,Chattisgarh,છત્તીસગઢ
apps/frappe/frappe/config/core.py +47,Errors in Background Events,પૃષ્ઠભૂમિ ઘટનાઓ ભૂલો
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,સ્તંભોને કોઈ
DocType: Workflow State,Calendar,કેલેન્ડર
@@ -2736,7 +2744,7 @@ apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},સો
DocType: Integration Request,Remote,દૂરસ્થ
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,ગણતરી
apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,પ્રથમ Doctype પસંદ કરો
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,તમારા ઇમેઇલ ખાતરી
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +174,Confirm Your Email,તમારા ઇમેઇલ ખાતરી
apps/frappe/frappe/www/login.html +42,Or login with,અથવા પ્રવેશ
DocType: Error Snapshot,Locals,સ્થાનિક
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},દ્વારા વાતચીત {0} પર {1}: {2}
@@ -2753,7 +2761,7 @@ DocType: Web Page,Web Page,વેબ પેજ
DocType: Blog Category,Blogger,બ્લોગર
apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},ગ્લોબલ સર્ચ &#39;પ્રકાર માટે મંજૂરી નથી {0} પંક્તિમાં {1}
apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,યાદી જુઓ
apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},તારીખ બંધારણમાં જ હોવી જોઈએ: {0}
apps/frappe/frappe/public/js/frappe/form/control.js +810,Date must be in format: {0},તારીખ બંધારણમાં જ હોવી જોઈએ: {0}
DocType: Workflow,Don't Override Status,સ્થિતિ પર ફરીથી કરો
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,રેટિંગ આપો.
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} પ્રતિસાદ વિનંતી
@@ -2786,7 +2794,7 @@ DocType: Custom DocPerm,Report,રિપોર્ટ
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,રકમ 0 કરતાં મોટી હોવી જ જોઈએ.
apps/frappe/frappe/desk/reportview.py +107,{0} is saved,{0} સાચવવામાં આવે છે
apps/frappe/frappe/core/doctype/user/user.py +327,User {0} cannot be renamed,{0} વપરાશકર્તા નામ બદલી શકાતું નથી
apps/frappe/frappe/model/db_schema.py +107,Fieldname is limited to 64 characters ({0}),FIELDNAME 64 અક્ષરો સુધી મર્યાદિત છે ({0})
apps/frappe/frappe/model/db_schema.py +108,Fieldname is limited to 64 characters ({0}),FIELDNAME 64 અક્ષરો સુધી મર્યાદિત છે ({0})
apps/frappe/frappe/config/desk.py +59,Email Group List,ઇમેઇલ ગ્રુપ યાદી
DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],.ico વિસ્તરણ સાથે ચિહ્ન ફાઇલ. 16 x 16 px પ્રયત્ન કરીશું. એક ફેવિકોન જનરેટર મદદથી પેદા થાય છે. [Favicon-generator.org]
DocType: Auto Email Report,Format,ફોર્મેટ
@@ -2864,7 +2872,7 @@ DocType: Website Settings,Title Prefix,શીર્ષક પૂર્વગ
DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,સૂચનો અને બલ્ક મેલ્સ આ આઉટગોઇંગ સર્વર માંથી મોકલવામાં આવશે.
DocType: Workflow State,cog,કોગ
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on Migrate,સ્થળાંતર પર સમન્વય
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,હાલમાં જોઈ રહ્યા છીએ
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Currently Viewing,હાલમાં જોઈ રહ્યા છીએ
DocType: DocField,Default,મૂળભૂત
apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} ઉમેરવામાં
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',માટે શોધ &#39;{0}&#39;
@@ -2924,7 +2932,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +771,Report was
DocType: Print Settings,Print Style,પ્રિન્ટ શૈલી
apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,કોઈપણ રેકોર્ડ સાથે સંકળાયેલ નથી
DocType: Custom DocPerm,Import,આયાત
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +178,Row {0}: Not allowed to enable Allow on Submit for standard fields,રો {0}: પર પ્રમાણભૂત ક્ષેત્રો માટે સબમિટ પરવાનગી આપે છે સક્રિય કરવા માટે મંજૂરી નથી
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +180,Row {0}: Not allowed to enable Allow on Submit for standard fields,રો {0}: પર પ્રમાણભૂત ક્ષેત્રો માટે સબમિટ પરવાનગી આપે છે સક્રિય કરવા માટે મંજૂરી નથી
apps/frappe/frappe/config/setup.py +100,Import / Export Data,આયાત / નિકાસ માહિતી
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,ધોરણ ભૂમિકા નામ બદલી શકાતું નથી
DocType: Communication,To and CC,અને સીસી
@@ -2950,7 +2958,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo
DocType: Auto Email Report,Filter Meta,ફિલ્ટર મેટા
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"આ ફોર્મ વેબ પાનું છે, તો લખાણ વેબ પૃષ્ઠ પર લિંક માટે પ્રદર્શિત કરવા માટે. લિંક માર્ગ આપોઆપ page_name` અને `parent_website_route`` પર આધારિત પેદા થશે"
DocType: Feedback Request,Feedback Trigger,પ્રતિસાદ ટ્રિગર
apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,પ્રથમ {0} સુયોજિત કરો
apps/frappe/frappe/public/js/frappe/form/control.js +1741,Please set {0} first,પ્રથમ {0} સુયોજિત કરો
DocType: Unhandled Email,Message-id,સંદેશ- ID
DocType: Patch Log,Patch,પેચ
DocType: Async Task,Failed,નિષ્ફળ


+ 45
- 46
frappe/translations/he.csv Datei anzeigen

@@ -9,7 +9,7 @@ apps/frappe/frappe/www/desk.py +18,You are not permitted to access this page.,א
DocType: About Us Settings,Website,אתר
DocType: User,Facebook Username,שם משתמש פייסבוק
DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,הערה: מספר הפעלות תתאפשר במקרה של מכשיר נייד
apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,לא ניתן לשלוח דוא&quot;ל זה. אתה חצית את גבול השליחה של {0} מיילים לחודש זה.
apps/frappe/frappe/email/queue.py +225,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,לא ניתן לשלוח דוא&quot;ל זה. אתה חצית את גבול השליחה של {0} מיילים לחודש זה.
apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,באופן קבוע שלח {0}?
DocType: Address,County,מָחוֹז
apps/frappe/frappe/client.py +280,Invalid file path: {0},דרך לא חוקית קובץ: {0}
@@ -62,10 +62,10 @@ DocType: Workflow State,lock,לנעול
apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,הגדרות לצורו קשר דף.
apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,מנהל מחובר
DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","אפשרויות לתקשר, כמו ""שאילתת מכירות, תמיכת שאילתה"" וכו 'כל בשורה חדשה או מופרד בפסיקים."
apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,הכנס
apps/frappe/frappe/public/js/frappe/form/control.js +1979,Insert,הכנס
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},בחר {0}
DocType: Print Settings,Classic,קלאסי
DocType: Desktop Icon,Color,צבע
DocType: DocField,Color,צבע
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +54,For ranges,לטווחים
DocType: Workflow State,indent-right,כניסה ימנית
apps/frappe/frappe/public/js/frappe/ui/upload.html +12,Web Link,קישור אינטרנט
@@ -80,7 +80,7 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To impor
DocType: DocType,Default Print Format,פורמט ברירת מחדל להדפסה
DocType: Workflow State,Tags,תגיות
apps/frappe/frappe/public/js/frappe/form/workflow.js +33,None: End of Workflow,אין: סוף זרימת העבודה
apps/frappe/frappe/model/db_schema.py +346,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} השדה יכול לא להיות מוגדר בתור ייחודי {1}, שכן ישנם ערכים קיימים לא ייחודי"
apps/frappe/frappe/model/db_schema.py +347,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} השדה יכול לא להיות מוגדר בתור ייחודי {1}, שכן ישנם ערכים קיימים לא ייחודי"
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +47,Document Types,סוגי מסמכים
DocType: Workflow,Workflow State Field,מדינת שדה זרימת עבודה
DocType: Blog Post,Guest,אורח
@@ -174,7 +174,7 @@ DocType: Workflow,Transition Rules,הוראה מעבר
apps/frappe/frappe/core/doctype/report/report.js +11,Example:,לדוגמא:
DocType: Workflow,Defines workflow states and rules for a document.,מגדיר מדינות זרימת עבודה וכללים למסמך.
DocType: Workflow State,Filter,מסנן
apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Fieldname {0} לא יכול להיות תווים מיוחדים כמו {1}
apps/frappe/frappe/model/db_schema.py +564,Fieldname {0} cannot have special characters like {1},Fieldname {0} לא יכול להיות תווים מיוחדים כמו {1}
apps/frappe/frappe/config/setup.py +121,Update many values at one time.,עדכון ערכים רבים בבת אחת.
apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,שגיאה: המסמך השתנה לאחר שפתחת אותו
apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: לא ניתן להגדיר הקצאה שלח אם לא Submittable
@@ -196,7 +196,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,קבל גל
apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","המנוי שלך פג ב {0}. כדי לחדש, {1}."
DocType: Workflow State,plus-sign,תוספת-סימן
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,התקנה כבר מלאה
apps/frappe/frappe/__init__.py +889,App {0} is not installed,האפליקציה {0} אינה מותקנת
apps/frappe/frappe/__init__.py +897,App {0} is not installed,האפליקציה {0} אינה מותקנת
DocType: Workflow State,Refresh,רענן
DocType: Event,Public,ציבור
apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,מה להראות
@@ -352,9 +352,9 @@ DocType: User,Reset Password Key,מפתח איפוס סיסמא
DocType: Email Account,Enable Auto Reply,אפשר מענה אוטומטי
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,לא נראה
DocType: Workflow State,zoom-in,זום-ב
apps/frappe/frappe/email/queue.py +219,Unsubscribe from this list,לבטל את המנוי לרשימה זו
apps/frappe/frappe/email/queue.py +234,Unsubscribe from this list,לבטל את המנוי לרשימה זו
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Reference DocType and Reference Name are required,התייחסות DOCTYPE והפניה שם נדרשים
apps/frappe/frappe/utils/jinja.py +35,Syntax error in template,שגיאת תחביר התבנית
apps/frappe/frappe/utils/jinja.py +51,Syntax error in template,שגיאת תחביר התבנית
DocType: DocField,Width,רוחב
DocType: Email Account,Notify if unreplied,נא להודיע אם unreplied
DocType: DocType,Fields,שדות
@@ -459,7 +459,7 @@ apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were error
DocType: Portal Settings,Portal Settings,הגדרות Portal
DocType: Web Page,0 is highest,0 הוא גבוהה ביותר
apps/frappe/frappe/www/login.html +104,Send Password,שלח סיסמא
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +45,Attachments,קבצים מצורפים
DocType: Email Queue,Attachments,קבצים מצורפים
apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,אין לך את הרשאות גישה למסמך זה
DocType: Email Group Member,Email Group Member,אימייל קבוצת המשתמש
DocType: Email Alert,Value Changed,הערך השתנה
@@ -487,7 +487,7 @@ apps/frappe/frappe/config/website.py +7,Web Site,אתר אינטרנט
apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,פריטים מסומנים יוצגו בשולחן עבודה
apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} לא ניתן להגדיר עבור סוגים בודדים
apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} צופים כרגע מסמך זה
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} מעודכן
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} מעודכן
apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,לא ניתן להגדיר דווח לסוגים יחיד
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} ימים לפני
DocType: Address,Address Line 1,שורת כתובת 1
@@ -503,7 +503,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Pictu
DocType: Workflow State,Stop,להפסיק
DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,קישור לדף שברצונך לפתוח. שאר ריק אם אתה רוצה לעשות את זה הורה קבוצה.
DocType: DocType,Is Single,בודדת
apps/frappe/frappe/email/queue.py +278,{0} has left the conversation in {1} {2},{0} עזב את השיחה ב {1} {2}
apps/frappe/frappe/email/queue.py +293,{0} has left the conversation in {1} {2},{0} עזב את השיחה ב {1} {2}
DocType: Blogger,User ID of a Blogger,זיהוי משתמש של Blogger
apps/frappe/frappe/core/doctype/user/user.py +287,There should remain at least one System Manager,לא צריך להישאר מנהל מערכת אחת לפחות
DocType: Workflow State,circle-arrow-right,המעגל-חץ ימני
@@ -550,11 +550,11 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +222,Select Us
apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,אין יישומים מותקנים
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,סמן את השדה מנדטורי כ
DocType: Communication,Clicked,לחץ
apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},אין הרשאות ל&#39;{0} &#39;{1}
apps/frappe/frappe/public/js/legacy/form.js +950,No permission to '{0}' {1},אין הרשאות ל&#39;{0} &#39;{1}
DocType: User,Google User ID,זיהוי משתמש Google
DocType: DocType,Track Seen,מסלול בבלוג
apps/frappe/frappe/desk/form/utils.py +55,This method can only be used to create a Comment,שיטה זו יכולה רק לשמש ליצירת תגובה
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,No {0} found,לא {0} מצא
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +558,No {0} found,לא {0} מצא
apps/frappe/frappe/config/setup.py +242,Add custom forms.,להוסיף צורות מותאמות אישית.
apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} ב {2}
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,The system provides many pre-defined roles. You can add new roles to set finer permissions.,המערכת מספקת מספר רב של תפקידים מוגדרים מראש. אתה יכול להוסיף תפקידים חדשים כדי להגדיר הרשאות עדינות.
@@ -609,7 +609,7 @@ DocType: Workflow,"Field that represents the Workflow State of the transaction (
apps/frappe/frappe/utils/oauth.py +194,Email not verified with {1},"דוא""ל לא אומת עם {1}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,ערוך להוסיף תוכן
apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,שפות בחרו
apps/frappe/frappe/__init__.py +509,No permission for {0},אין הרשאה {0}
apps/frappe/frappe/__init__.py +517,No permission for {0},אין הרשאה {0}
DocType: DocType,Advanced,מתקדם
apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},התייחסות: {0} {1}
DocType: File,Attached To Name,מצורף לשם
@@ -639,7 +639,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +221,Specify
DocType: Report,Disabled,נכים
DocType: Workflow State,eye-close,עין-קרוב
apps/frappe/frappe/config/setup.py +254,Applications,יישומים
apps/frappe/frappe/public/js/frappe/request.js +347,Report this issue,דווח על בעיה זו
apps/frappe/frappe/public/js/frappe/request.js +349,Report this issue,דווח על בעיה זו
apps/frappe/frappe/public/js/frappe/form/save.js +79,Name is required,שם נדרש
DocType: Custom Script,Adds a custom script (client or server) to a DocType,מוסיף תסריט מותאם אישית (לקוח או שרת) לDOCTYPE
DocType: Address,City/Town,עיר / יישוב
@@ -719,7 +719,6 @@ apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finis
DocType: Communication,User Tags,תגיות משתמש
DocType: Workflow State,download-alt,הורדה-alt
apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},הורדת האפליקציה {0}
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Experimental Feature,תכונה ניסיונית
apps/frappe/frappe/www/login.html +30,Sign in,הירשם
DocType: Web Page,Main Section,סעיף עיקרי
DocType: Page,Icon,אייקון
@@ -793,7 +792,7 @@ DocType: ToDo,Medium,בינוני
DocType: Customize Form,Customize Form,התאמה אישית של טופס
DocType: Currency,A symbol for this currency. For e.g. $,סימן של מטבע זה. לדוגמה: $$
apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,Framework פְרָאפֶּה
apps/frappe/frappe/model/naming.py +174,Name of {0} cannot be {1},שם {0} אינו יכול להיות {1}
apps/frappe/frappe/model/naming.py +180,Name of {0} cannot be {1},שם {0} אינו יכול להיות {1}
apps/frappe/frappe/config/setup.py +46,Show or hide modules globally.,הצגה או הסתרה של מודולים בעולם.
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,מתאריך
apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,הצלחה
@@ -808,7 +807,7 @@ DocType: Print Format,Custom HTML Help,מותאם אישית HTML עזרה
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +308,Add A New Restriction,להוסיף הגבלה חדשה
DocType: Workflow Transition,Next State,המדינה הבאה
DocType: User,Block Modules,מודולים בלוק
apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,החזרה למצב אורך {0} עבור &#39;{1}&#39; ב &#39;{2}&#39;; הגדרת האורך כמו {3} תגרום עיצור של נתונים.
apps/frappe/frappe/model/db_schema.py +142,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,החזרה למצב אורך {0} עבור &#39;{1}&#39; ב &#39;{2}&#39;; הגדרת האורך כמו {3} תגרום עיצור של נתונים.
DocType: Print Format,Custom CSS,CSS המותאם אישית
apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,הוסף ביקורת
apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},להתעלם ממנו: {0} {1}
@@ -880,7 +879,7 @@ DocType: Website Settings,Top Bar,Top בר
apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,הגדרות גלובליות: משתמשים יוכלו רק לבחור סמלים בדקו
apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,דף בית / מבחן תיקייה 2
DocType: System Settings,Ignore User Permissions If Missing,להתעלם הרשאות משתמש אם חסר
apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,אנא שמור את המסמך לפני ההעלאה.
apps/frappe/frappe/public/js/frappe/form/control.js +1075,Please save the document before uploading.,אנא שמור את המסמך לפני ההעלאה.
apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,הכנס את הסיסמה שלך
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox גישה חשאי
apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,להוסיף עוד הערה
@@ -986,7 +985,7 @@ apps/frappe/frappe/www/404.html +8,Page missing or moved,דף חסר או עבר
DocType: DocType,Route,מַסלוּל
DocType: DocField,Name,שם
apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,חרגת שטח המקסימאלי של {0} עבור התכנית שלך. {1}.
apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,פתח קישור
apps/frappe/frappe/public/js/frappe/form/control.js +1354,Open Link,פתח קישור
apps/frappe/frappe/desk/form/load.py +46,Did not load,לא לטעון
apps/frappe/frappe/desk/query_report.py +87,Query must be a SELECT,שאילתא חייבת להיות SELECT
DocType: Integration Request,Completed,הושלם
@@ -1072,7 +1071,7 @@ apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print th
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,דווח טעינה
apps/frappe/frappe/limits.py +72,Your subscription will expire today.,המנוי שלך בתוקף עד היום.
DocType: Page,Standard,סטנדרטי
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,לצרף קובץ
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,לצרף קובץ
apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,דיווח על עדכוני טוויטר
apps/frappe/frappe/desk/page/backups/backups.html +13,Size,גודל
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,משימה מלאה
@@ -1097,7 +1096,7 @@ apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extension
apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,השאר את השיחה הזאת
apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},אפשרויות לא נקבעו לקישור שדה {0}
DocType: Customize Form,"Must be of type ""Attach Image""",חייב להיות מסוג &quot;צרף תמונה&quot;
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},אתה לא יכול לבטל את הגדרה של &#39;קריאה בלבד&#39; לשדה {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +199,You cannot unset 'Read Only' for field {0},אתה לא יכול לבטל את הגדרה של &#39;קריאה בלבד&#39; לשדה {0}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +22,Complete Setup,התקנה מלאה
DocType: Workflow State,asterisk,כוכבית
apps/frappe/frappe/core/page/data_import_tool/exporter.py +62,Please do not change the template headings.,נא לא לשנות את כותרות התבנית.
@@ -1167,7 +1166,7 @@ apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js +7,Not Published,
apps/frappe/frappe/config/setup.py +209,"Actions for workflow (e.g. Approve, Cancel).","פעולות לעבודה (לדוגמא לאשר, לבטל)."
DocType: Workflow State,flag,דגל
DocType: Web Page,Text Align,טקסט יישור
apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},שם אינו יכול להכיל תווים מיוחדים כמו {0}
apps/frappe/frappe/model/naming.py +185,Name cannot contain special characters like {0},שם אינו יכול להכיל תווים מיוחדים כמו {0}
DocType: Contact Us Settings,Forward To Email Address,"קדימה To כתובת דוא""ל"
apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,כותרת שדה חייב להיות תקף fieldname
apps/frappe/frappe/config/core.py +7,Documents,מסמכים
@@ -1265,7 +1264,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js +42,Close,לסג
apps/frappe/frappe/model/document.py +564,Cannot change docstatus from 0 to 2,לא יכול לשנות docstatus 0-2
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,עדכון
DocType: Error Snapshot,Snapshot View,צלם תצוגה
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,אנא שמור עלון לפני השליחה
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +101,Please save the Newsletter before sending,אנא שמור עלון לפני השליחה
apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},אפשרויות חייבת להיות DOCTYPE חוקי בשדה {0} בשורת {1}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,ערוך מאפיינים
DocType: Patch Log,List of patches executed,רשימה של תיקונים שבוצעה
@@ -1279,7 +1278,7 @@ apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desk
apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,עדכון סיסמא
DocType: Workflow State,trash,אשפה
DocType: Event,Leave blank to repeat always,שאר ריק כדי לחזור תמיד
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +192,Confirmed,אישר
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,Confirmed,אישר
DocType: Event,Ends on,מסתיים ב
DocType: Payment Gateway,Gateway,כְּנִיסָה
apps/frappe/frappe/contacts/doctype/address/address.py +34,Address Title is mandatory.,כותרת כתובת היא חובה.
@@ -1306,7 +1305,7 @@ DocType: User,Website User,משתמש אתר
apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +10,Not equals,לא שווה
DocType: Website Script,Script to attach to all web pages.,תסריט לצרף לכל דפי האינטרנט.
DocType: Web Form,Allow Multiple,לאפשר מרובה
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +40,Assign,להקצות
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +44,Assign,להקצות
apps/frappe/frappe/config/setup.py +102,Import / Export Data from .csv files.,יבוא / יצוא נתונים מקבצי csv.
DocType: Communication,Feedback,משוב
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +72,You are not allowed to create / edit reports,אין באפשרותך ליצור דוחות עריכה /
@@ -1368,7 +1367,7 @@ apps/frappe/frappe/utils/response.py +134,You need to be logged in and have Syst
apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,נוֹתָר
apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,אנא שמור לפני הצמדה.
apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),הוסיף {0} ({1})
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype לא יכול להיות שונה מ {0} {1} בשורה {2}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +325,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype לא יכול להיות שונה מ {0} {1} בשורה {2}
apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,הרשאות תפקיד
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,יכול לקרוא
DocType: Custom Role,Response,תגובה
@@ -1380,9 +1379,9 @@ apps/frappe/frappe/limits.py +67,Your subscription has expired.,פג תוקף ה
apps/frappe/frappe/core/doctype/user/user.js +42,Refreshing...,מרענן ...
DocType: Event,Starts on,מתחיל ב
DocType: System Settings,System Settings,הגדרות מערכת
apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},האימייל הזה נשלח ל {0} והעתיק {1}
apps/frappe/frappe/email/queue.py +470,This email was sent to {0} and copied to {1},האימייל הזה נשלח ל {0} והעתיק {1}
DocType: Workflow State,th,ה
apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},צור חדש {0}
apps/frappe/frappe/public/js/frappe/form/control.js +1517,Create a new {0},צור חדש {0}
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},דווח {0}
apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},להרחיב {0}
DocType: Email Alert,Recipients,מקבלי
@@ -1393,7 +1392,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +29,Please specify which value field must be checked,נא לציין שערך שדה חייב להיבדק
apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"""Parent"" signifies the parent table in which this row must be added","""הורה"" מסמל את שולחן ההורה שבו יש להוסיף את השורה הזו"
DocType: Website Theme,Apply Style,החל סגנון
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared With,משותף עם
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,משותף עם
,Modules Setup,התקנת מודולים
apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,סוג:
DocType: Communication,Unshared,שאינו משותף
@@ -1415,7 +1414,7 @@ DocType: System Settings,Scheduler Last Event,האירוע אחרון מתזמן
DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,הוספת זיהוי של Google Analytics: למשל. UA-89XXX57-1. אנא עזרה החיפוש ב- Google Analytics לקבלת מידע נוספת.
apps/frappe/frappe/utils/password.py +93,Password cannot be more than 100 characters long,סיסמא לא יכולה להיות יותר מ -100 תווים
DocType: Email Alert Recipient,"Expression, Optional","ביטוי, אופציונאלי"
apps/frappe/frappe/email/queue.py +456,This email was sent to {0},האימייל הזה נשלח ל {0}
apps/frappe/frappe/email/queue.py +472,This email was sent to {0},האימייל הזה נשלח ל {0}
DocType: Email Account,Check this to pull emails from your mailbox,לבדוק את זה כדי למשוך מיילים מתיבת הדואר שלך
apps/frappe/frappe/limits.py +139,click here,לחץ כאן
apps/frappe/frappe/model/document.py +577,Cannot edit cancelled document,לא ניתן לערוך מסמך בוטל
@@ -1471,8 +1470,8 @@ apps/frappe/frappe/public/js/frappe/form/share.js +115,Share With,שתף עם
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +136,Loading,Loading
apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Facebook, Google, GitHub.","הזן מפתחות כדי לאפשר התחברות באמצעות פייסבוק, גוגל, GitHub."
apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,הוסף תג
apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,נא לצרף קובץ ראשון.
apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","היו כמה טעויות הגדרה שם, אנא צור קשר עם המנהל"
apps/frappe/frappe/public/js/frappe/form/control.js +1335,Please attach a file first.,נא לצרף קובץ ראשון.
apps/frappe/frappe/model/naming.py +174,"There were some errors setting the name, please contact the administrator","היו כמה טעויות הגדרה שם, אנא צור קשר עם המנהל"
DocType: Website Slideshow Item,Website Slideshow Item,פריט מצגת אתר
DocType: DocType,Title Case,כותרת Case
DocType: Blog Post,Email Sent,"דוא""ל שנשלח"
@@ -1541,7 +1540,7 @@ apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},"ד
apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,סוף האירוע חייב להיות לאחר ההתחלה
apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},אין לך הרשאה על מנת לקבל דיווח על: {0}
DocType: Blog Post,Blog Post,בלוג הודעה
apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,חיפוש מתקדם
apps/frappe/frappe/public/js/frappe/form/control.js +1527,Advanced Search,חיפוש מתקדם
apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,"הוראות לאיפוס סיסמא נשלחו לדוא""ל שלך"
apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +661,Sort By,מיין לפי
DocType: Workflow,States,הברית
@@ -1555,7 +1554,7 @@ DocType: Workflow State,circle-arrow-left,המעגל לשמאל חץ
apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,שרת מטמון Redis אינו פועל. אנא פנה למנהל / תמיכה טכנית
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,לעשות תקליט חדש
DocType: Currency,Fraction,חלק
apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,בחר מלצרף קבצים קיימים
apps/frappe/frappe/public/js/frappe/form/control.js +1085,Select from existing attachments,בחר מלצרף קבצים קיימים
DocType: Custom Field,Field Description,שדה תיאור
apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,שם לא קבע באמצעות שורת
DocType: Website Theme,Top Bar Color,למעלה בר צבע
@@ -1593,7 +1592,7 @@ DocType: Custom Field,Permission Level,רמת הרשאה
DocType: User,Send Notifications for Transactions I Follow,שלח הודעות לעסקות אני בצע
apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: לא ניתן להגדיר שלח, לבטל, לשנות ללא כתיבה"
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,האם אתה בטוח שאתה רוצה למחוק את הקובץ המצורף?
apps/frappe/frappe/__init__.py +1062,Thank you,תודה לך
apps/frappe/frappe/__init__.py +1070,Thank you,תודה לך
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,שמירה
DocType: Print Settings,Print Style Preview,להדפיס תצוגה מקדימה של סגנון
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
@@ -1607,7 +1606,7 @@ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,להוס
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,SR לא
,Role Permissions Manager,מנהל הרשאות התפקיד
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,שמו של פורמט ההדפסה החדש
apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Attachment נקה
apps/frappe/frappe/public/js/frappe/form/control.js +1087,Clear Attachment,Attachment נקה
apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,חובה:
,User Permissions Manager,מנהל הרשאות משתמש
DocType: Property Setter,New value to be set,ערך חדש שיוקם
@@ -1625,7 +1624,7 @@ DocType: Email Alert,Message Examples,דוגמאות הודעה
DocType: Web Form,Login Required,כניסה לחשבון נדרש
apps/frappe/frappe/config/website.py +42,Write titles and introductions to your blog.,לכתוב כותרות והקדמות לבלוג שלך.
DocType: Email Account,Notify if unreplied for (in mins),נא להודיע אם unreplied ל( בדקות)
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,לפני 2 ימים
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +501,2 days ago,לפני 2 ימים
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,לסווג ההודעות שנכתבו על בלוג.
DocType: Workflow State,Time,זמן
DocType: DocField,Attach,צרף
@@ -1673,7 +1672,7 @@ apps/frappe/frappe/public/js/frappe/roles_editor.js +28,Add all roles,הוסף
apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your email and message so that we \
can get back to you. Thanks!",נא להזין את שני הדואר האלקטרוני וההודעה שלך כדי ש\ יכול לחזור אליך. תודה!
apps/frappe/frappe/email/smtp.py +170,Could not connect to outgoing email server,"לא ניתן להתחבר לשרת הדוא""ל יוצא"
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +162,Thank you for your interest in subscribing to our updates,תודה לך על התעניינותך במנוי לעדכונים שלנו
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Thank you for your interest in subscribing to our updates,תודה לך על התעניינותך במנוי לעדכונים שלנו
DocType: Workflow State,resize-full,גודל מלא
DocType: Workflow State,off,את
apps/frappe/frappe/desk/query_report.py +27,Report {0} is disabled,דווח {0} אינו זמין
@@ -1719,7 +1718,7 @@ apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an em
apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,יש לך שינויים שלא נשמרו בצורה זו. אנא שמור לפני שתמשיך.
apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,ברירת מחדל עבור {0} חייב להיות אופציה
DocType: User,User Image,תמונת משתמש
apps/frappe/frappe/email/queue.py +289,Emails are muted,מיילים מושתקים
apps/frappe/frappe/email/queue.py +304,Emails are muted,מיילים מושתקים
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + Up
DocType: Website Theme,Heading Style,סגנון כותרת
apps/frappe/frappe/desk/page/applications/applications.py +75,You cannot install this app,אתה לא יכול להתקין את היישום הזה
@@ -1914,7 +1913,7 @@ apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,פורמט
DocType: Email Alert,Send days before or after the reference date,שלח ימים לפני או אחרי תאריך ההתייחסות
DocType: User,Allow user to login only after this hour (0-24),אפשר למשתמש להתחבר רק לאחר שעה זו (0-24)
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,ערך
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +165,Click here to verify,לחץ כאן כדי לאמת
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +166,Click here to verify,לחץ כאן כדי לאמת
apps/frappe/frappe/utils/password_strength.py +178,Predictable substitutions like '@' instead of 'a' don't help very much.,החלפות צפויות כמו &#39;@&#39; במקום &#39;a&#39; לא עזר לנו במיוחד.
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,שהוקצה על ידי
apps/frappe/frappe/core/doctype/doctype/doctype.py +92,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,לא במצב מפתח! נקבע בsite_config.json או לעשות DOCTYPE 'המותאם אישית'.
@@ -2014,7 +2013,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level
apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},משימה נסגרה על ידי {0}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,לחשב
apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,אנא בחר DOCTYPE ראשון
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,אשר הדואר האלקטרוני שלך
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +174,Confirm Your Email,אשר הדואר האלקטרוני שלך
apps/frappe/frappe/www/login.html +42,Or login with,או התחבר עם
DocType: Error Snapshot,Locals,המקומיים
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},הודעה דרך {0} על {1}: {2}
@@ -2028,7 +2027,7 @@ apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,א
DocType: Web Page,Web Page,דף האינטרנט
DocType: Blog Category,Blogger,Blogger
apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,רשימת צפייה
apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},תאריך חייב להיות בפורמט: {0}
apps/frappe/frappe/public/js/frappe/form/control.js +810,Date must be in format: {0},תאריך חייב להיות בפורמט: {0}
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,המשתמש הראשון: אתה
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,בחרו עמודות
apps/frappe/frappe/www/login.py +55,Missing parameters for login,פרמטרים חסרים להתחברות
@@ -2108,7 +2107,7 @@ DocType: Email Alert,Save,שמור
DocType: Website Settings,Title Prefix,כותרת קידומת
DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,הודעות ומיילים בתפוצה רחבה תישלחנה מהשרת דואר יוצא זה.
DocType: Workflow State,cog,שֵׁן
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,כיום צופה ב
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Currently Viewing,כיום צופה ב
DocType: DocField,Default,ברירת מחדל
apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} הוסיף
apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} מנויים הוסיפו
@@ -2154,7 +2153,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +68,You can only uploa
apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +771,Report was not saved (there were errors),הדו&quot;ח לא נשמר (היו טעויות)
DocType: Print Settings,Print Style,סגנון הדפסה
DocType: Custom DocPerm,Import,יבוא
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +178,Row {0}: Not allowed to enable Allow on Submit for standard fields,שורת {0}: לא תורשה לאפשר אפשר בשלח לשדות סטנדרטיים
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +180,Row {0}: Not allowed to enable Allow on Submit for standard fields,שורת {0}: לא תורשה לאפשר אפשר בשלח לשדות סטנדרטיים
apps/frappe/frappe/config/setup.py +100,Import / Export Data,יבוא / יצוא נתונים
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,לא ניתן לשנות את שם תפקידים סטנדרטיים
apps/frappe/frappe/public/js/frappe/change_log.html +7,updated to {0},עודכן {0}
@@ -2174,7 +2173,7 @@ DocType: User,Security Settings,הגדרות אבטחה
apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +863,Add Column,להוסיף טור
,Desktop,שולחן עבודה
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,טקסט שיוצג לקישור לדף אינטרנט אם טופס זה יש דף אינטרנט. מסלול קישור יהיה באופן אוטומטי המבוסס על `` page_name` וparent_website_route`
apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,אנא הגדר {0} ראשון
apps/frappe/frappe/public/js/frappe/form/control.js +1741,Please set {0} first,אנא הגדר {0} ראשון
DocType: Patch Log,Patch,תיקון
DocType: Async Task,Failed,נכשל
apps/frappe/frappe/core/page/data_import_tool/importer.py +54,No data found,לא נמצאו נתונים


+ 72
- 64
frappe/translations/hi.csv Datei anzeigen

@@ -14,8 +14,9 @@ apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,
DocType: User,Facebook Username,फेसबुक यूजर का नाम
DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,नोट: कई सत्रों मोबाइल डिवाइस के मामले में अनुमति दी जाएगी
apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},उपयोगकर्ता के लिए सक्षम ईमेल इनबॉक्स {} उपयोगकर्ताओं
apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,इस ईमेल भेजने के लिए नहीं कर सकते हैं। आप इस महीने के लिए {0} ईमेल भेजने की सीमा को पार कर चुके हैं।
apps/frappe/frappe/email/queue.py +225,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,इस ईमेल भेजने के लिए नहीं कर सकते हैं। आप इस महीने के लिए {0} ईमेल भेजने की सीमा को पार कर चुके हैं।
apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,स्थायी रूप से {0} सबमिट करें ?
apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,फ़ाइलें बैकअप डाउनलोड करें
DocType: Address,County,काउंटी
DocType: Workflow,If Checked workflow status will not override status in list view,जाँचा वर्कफ़्लो स्थिति सूची दृश्य में स्थिति पर हावी नहीं होगा तो
apps/frappe/frappe/client.py +280,Invalid file path: {0},अवैध फाइल पथ: {0}
@@ -80,10 +81,10 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,के
apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,प्रशासक लॉग में
DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","संपर्क विकल्प, आदि एक नई लाइन पर प्रत्येक &quot;बिक्री प्रश्न, प्रश्न समर्थन&quot; कोमा से विभाजित."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. डाउनलोड
apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,सम्मिलित करें
apps/frappe/frappe/public/js/frappe/form/control.js +1979,Insert,सम्मिलित करें
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},चयन करें {0}
DocType: Print Settings,Classic,क्लासिक
DocType: Desktop Icon,Color,रंग
DocType: DocField,Color,रंग
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +54,For ranges,श्रेणियों के लिए
DocType: Workflow State,indent-right,इंडेंट सही
DocType: Has Role,Has Role,भूमिका है
@@ -100,7 +101,7 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To impor
DocType: DocType,Default Print Format,डिफ़ॉल्ट प्रिंट प्रारूप
DocType: Workflow State,Tags,टैग
apps/frappe/frappe/public/js/frappe/form/workflow.js +33,None: End of Workflow,कोई नहीं: कार्यप्रवाह समाप्ति
apps/frappe/frappe/model/db_schema.py +346,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","गैर-अद्वितीय मौजूदा मानों के रूप में वहाँ {0} फ़ील्ड, {1} में के रूप में अद्वितीय सेट नहीं किया जा सकता"
apps/frappe/frappe/model/db_schema.py +347,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","गैर-अद्वितीय मौजूदा मानों के रूप में वहाँ {0} फ़ील्ड, {1} में के रूप में अद्वितीय सेट नहीं किया जा सकता"
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +47,Document Types,दस्तावेज़ प्रकार
DocType: Address,Jammu and Kashmir,जम्मू और कश्मीर
DocType: Workflow,Workflow State Field,वर्कफ़्लो राज्य फील्ड
@@ -231,7 +232,7 @@ DocType: Workflow,Transition Rules,संक्रमण नियम
apps/frappe/frappe/core/doctype/report/report.js +11,Example:,उदाहरण:
DocType: Workflow,Defines workflow states and rules for a document.,एक दस्तावेज के लिए कार्यप्रवाह राज्यों और नियमों को परिभाषित करता है।
DocType: Workflow State,Filter,फिल्टर
apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},FIELDNAME {0} की तरह विशेष वर्ण नहीं हो सकता है {1}
apps/frappe/frappe/model/db_schema.py +564,Fieldname {0} cannot have special characters like {1},FIELDNAME {0} की तरह विशेष वर्ण नहीं हो सकता है {1}
apps/frappe/frappe/config/setup.py +121,Update many values at one time.,एक समय में कई मूल्यों को अद्यतन करें।
apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,त्रुटि: आप इसे खोल दिया है के बाद दस्तावेज़ संशोधित किया गया है
apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} लॉग आउट: {1}
@@ -260,7 +261,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Gravatar.com
apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","आपकी सदस्यता {0} को समाप्त हो गई। नवीनीकृत करने के लिए, {1}।"
DocType: Workflow State,plus-sign,प्लस पर हस्ताक्षर
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,सेटअप पहले से ही पूरा
apps/frappe/frappe/__init__.py +889,App {0} is not installed,अनुप्रयोग {0} स्थापित नहीं है
apps/frappe/frappe/__init__.py +897,App {0} is not installed,अनुप्रयोग {0} स्थापित नहीं है
DocType: Workflow State,Refresh,ताज़ा करना
DocType: Event,Public,सार्वजनिक
apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,दिखाने के लिए कुछ भी नहीं
@@ -339,7 +340,6 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,संपादन शीर्षक
DocType: File,File URL,फ़ाइल URL
DocType: Version,Table HTML,टेबल HTML
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> 'के लिए कोई परिणाम नहीं मिला' </p>
apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,सदस्य जोड़ें
apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,आज के लिए आगामी घटनाएँ
DocType: Email Alert Recipient,Email By Document Field,दस्तावेज़ क्षेत्र द्वारा ईमेल
@@ -404,7 +404,6 @@ DocType: Desktop Icon,Link,लिंक
apps/frappe/frappe/utils/file_manager.py +96,No file attached,नहीं जुड़े फाइल
DocType: Version,Version,संस्करण
DocType: User,Fill Screen,स्क्रीन को भरने
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,कृपया सेटअप&gt; ईमेल&gt; ईमेल खाता से डिफ़ॉल्ट ईमेल खाता सेटअप करें
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","कारण लापता डेटा के लिए, इस पेड़ की रिपोर्ट प्रदर्शित करने में असमर्थ। सबसे अधिक संभावना है, यह कारण अनुमतियों के लिए बाहर फ़िल्टर्ड किया जा रहा है।"
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. फ़ाइल का चयन करें
apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,अपलोड के माध्यम से संपादित करें
@@ -474,9 +473,9 @@ DocType: User,Reset Password Key,पासवर्ड को रीसेट
DocType: Email Account,Enable Auto Reply,ऑटो जवाब सक्षम करें
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,नहीं देखा
DocType: Workflow State,zoom-in,आकार वर्धन
apps/frappe/frappe/email/queue.py +219,Unsubscribe from this list,इस सूची से सदस्यता समाप्त
apps/frappe/frappe/email/queue.py +234,Unsubscribe from this list,इस सूची से सदस्यता समाप्त
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Reference DocType and Reference Name are required,संदर्भ doctype और संदर्भ नाम आवश्यक हैं
apps/frappe/frappe/utils/jinja.py +35,Syntax error in template,टेम्पलेट में सिंटेक्स त्रुटि
apps/frappe/frappe/utils/jinja.py +51,Syntax error in template,टेम्पलेट में सिंटेक्स त्रुटि
DocType: DocField,Width,चौडाई
DocType: Email Account,Notify if unreplied,Unreplied अगर सूचित करें
DocType: System Settings,Minimum Password Score,न्यूनतम पासवर्ड स्कोर
@@ -560,6 +559,7 @@ DocType: Custom Field,Select the label after which you want to insert new field.
DocType: User,Last Login,अंतिम लॉगिन
apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},FIELDNAME पंक्ति में आवश्यक है {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,स्तंभ
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,कृपया सेटअप&gt; ईमेल&gt; ईमेल खाता से डिफ़ॉल्ट ईमेल खाता सेट करें
DocType: Custom Field,Adds a custom field to a DocType,एक doctype के लिए एक कस्टम क्षेत्र जोड़ता है
DocType: File,Is Home Folder,होम फ़ोल्डर है
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} एक मान्य ईमेल पता नहीं है
@@ -567,7 +567,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +733,Select atleast 1 reco
apps/frappe/frappe/core/doctype/has_role/has_role.py +13,User '{0}' already has the role '{1}',उपयोगकर्ता &#39;{0}&#39; पहले से ही भूमिका है &#39;{1}&#39;
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,अपलोड और सिंक
apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},साथ साझा किया गया {0}
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe,सदस्यता रद्द
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +132,Unsubscribe,सदस्यता रद्द
DocType: Communication,Reference Name,संदर्भ नाम
apps/frappe/frappe/public/js/frappe/toolbar.js +30,Chat Support,चैट सहायता
DocType: Error Snapshot,Exception,अपवाद
@@ -585,7 +585,7 @@ DocType: Email Group,Newsletter Manager,न्यूज़लैटर प्र
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,विकल्प 1
apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} से {1}
apps/frappe/frappe/config/setup.py +89,Log of error during requests.,अनुरोधों के दौरान त्रुटि के लॉग ऑन करें।
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} सफलतापूर्वक ईमेल समूह को जोड़ा गया है।
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +194,{0} has been successfully added to the Email Group.,{0} सफलतापूर्वक ईमेल समूह को जोड़ा गया है।
DocType: Address,Uttar Pradesh,उत्तर प्रदेश
DocType: Address,Pondicherry,पांडिचेरी
apps/frappe/frappe/public/js/frappe/upload.js +364,Make file(s) private or public?,फ़ाइल (s) निजी या सार्वजनिक करें?
@@ -616,7 +616,7 @@ DocType: Portal Settings,Portal Settings,पोर्टल सेटिंग
DocType: Web Page,0 is highest,० सबसे ज्यादा है
apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,क्या वाकई आप {0} इस संचार लिंक देखना चाहते हैं?
apps/frappe/frappe/www/login.html +104,Send Password,पासवर्ड भेजें
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +45,Attachments,किए गए अनुलग्नकों के
DocType: Email Queue,Attachments,किए गए अनुलग्नकों के
apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,आप इस दस्तावेज़ का उपयोग करने की अनुमति नहीं है
DocType: Language,Language Name,भाषा का नाम
DocType: Email Group Member,Email Group Member,ईमेल समूह सदस्य
@@ -646,7 +646,7 @@ apps/frappe/frappe/utils/password_strength.py +78,Try to use a longer keyboard p
DocType: Feedback Trigger,Check Communication,संचार जांच
DocType: Address,Rajasthan,राजस्थान
apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,रिपोर्ट बिल्डर रिपोर्टों रिपोर्ट बिल्डर द्वारा सीधे प्रबंधित कर रहे हैं. ऐसा करने के लिए कुछ भी नहीं है.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,अपना ईमेल एड्रेस सुनिश्चित करें
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +164,Please verify your Email Address,अपना ईमेल एड्रेस सुनिश्चित करें
apps/frappe/frappe/model/document.py +903,none of,से कोई भी
apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,मुझे एक कॉपी भेज
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,उपयोगकर्ता अनुमतियाँ अपलोड
@@ -657,7 +657,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Si
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban बोर्ड {0} मौजूद नहीं है।
apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} वर्तमान में इस दस्तावेज़ को देख रहे हैं
DocType: ToDo,Assigned By Full Name,पूरा नाम द्वारा आवंटित
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} अद्यतन
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} अद्यतन
apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,रिपोर्ट एकल प्रकार के लिए निर्धारित नहीं किया जा सकता
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} दिन पहले
DocType: Email Account,Awaiting Password,प्रतीक्षा कर रहा है पासवर्ड
@@ -682,7 +682,7 @@ DocType: Workflow State,Stop,रोक
DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,आप खोलना चाहते हैं पृष्ठ के लिए लिंक। आप इसे एक समूह के माता पिता बनाना चाहते हैं खाली छोड़ दें।
DocType: DocType,Is Single,एकल
apps/frappe/frappe/core/doctype/user/user.py +720,Sign Up is disabled,साइन अप करें अक्षम किया गया है
apps/frappe/frappe/email/queue.py +278,{0} has left the conversation in {1} {2},{0} में बातचीत छोड़ दिया है {1} {2}
apps/frappe/frappe/email/queue.py +293,{0} has left the conversation in {1} {2},{0} में बातचीत छोड़ दिया है {1} {2}
DocType: Blogger,User ID of a Blogger,एक ब्लॉगर के यूजर आईडी
apps/frappe/frappe/core/doctype/user/user.py +287,There should remain at least one System Manager,कम से कम एक सिस्टम मैनेजर वहाँ रहना चाहिए
DocType: GSuite Settings,Authorization Code,प्राधिकरण कोड
@@ -728,6 +728,7 @@ DocType: Event,Event,घटना
apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","{0} पर, {1} ने लिखा है:"
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,मानक क्षेत्र को नष्ट नहीं किया जा सकता। अगर आप चाहते हैं आप इसे छिपा कर सकते हैं
DocType: Top Bar Item,For top bar,शीर्ष पट्टी के लिए
apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,बैकअप के लिए कतारबद्ध आपको डाउनलोड लिंक के साथ एक ईमेल प्राप्त होगा
apps/frappe/frappe/utils/bot.py +148,Could not identify {0},पहचान नहीं कर सका {0}
DocType: Address,Address,पता
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +3,Payment Failed,भुगतान असफल हुआ
@@ -752,13 +753,13 @@ DocType: Web Form,Allow Print,प्रिंट की अनुमति द
apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,कोई क्षुधा स्थापित
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,अनिवार्य रूप में क्षेत्र के निशान
DocType: Communication,Clicked,क्लिक किया
apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},करने के लिए कोई अनुमति नहीं '{0} ' {1}
apps/frappe/frappe/public/js/legacy/form.js +950,No permission to '{0}' {1},करने के लिए कोई अनुमति नहीं '{0} ' {1}
DocType: User,Google User ID,गूगल यूजर आईडी
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,भेजने के लिए अनुसूचित
DocType: DocType,Track Seen,ट्रैक देखा
apps/frappe/frappe/desk/form/utils.py +55,This method can only be used to create a Comment,इस पद्धति का ही एक टिप्पणी बनाने के लिए इस्तेमाल किया जा सकता है
DocType: Event,orange,नारंगी
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,No {0} found,कोई {0} पाया
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +558,No {0} found,कोई {0} पाया
apps/frappe/frappe/config/setup.py +242,Add custom forms.,कस्टम प्रपत्र जोड़ें।
apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} में {2}
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +419,submitted this document,इस दस्तावेज प्रस्तुत
@@ -788,6 +789,7 @@ DocType: Newsletter Email Group,Newsletter Email Group,न्यूज़ले
DocType: Dropbox Settings,Integrations,एकीकरण
DocType: DocField,Section Break,अनुभाग विराम
DocType: Address,Warehouse,गोदाम
DocType: Address,Other Territory,अन्य क्षेत्र
,Messages,संदेश
apps/frappe/frappe/desk/page/applications/applications.js +49,Portal,द्वार
DocType: Email Account,Use Different Email Login ID,विभिन्न ईमेल लॉगिन आईडी का उपयोग करें
@@ -818,6 +820,7 @@ apps/frappe/frappe/utils/data.py +556,1 month ago,1 महीने पहले
DocType: Contact,User ID,प्रयोक्ता आईडी
DocType: Communication,Sent,भेजे गए
DocType: Address,Kerala,केरल
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} वर्ष (पहले)
DocType: File,Lft,LFT
DocType: User,Simultaneous Sessions,एक साथ सत्र
DocType: OAuth Client,Client Credentials,हमारे ग्राहकों का साख
@@ -834,7 +837,7 @@ DocType: Email Queue,Unsubscribe Method,सदस्यता समाप्त
DocType: GSuite Templates,Related DocType,संबंधित डॉकटाइप
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,सामग्री जोड़ने के लिए संपादित करें
apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,भाषा चुनाव
apps/frappe/frappe/__init__.py +509,No permission for {0},के लिए कोई अनुमति नहीं {0}
apps/frappe/frappe/__init__.py +517,No permission for {0},के लिए कोई अनुमति नहीं {0}
DocType: DocType,Advanced,उन्नत
apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,एपीआई कुंजी लगता है या एपीआई गुप्त गलत है !!!
apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},संदर्भ: {0} {1}
@@ -845,6 +848,7 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P
DocType: Email Account,Yahoo Mail,याहू मेल
apps/frappe/frappe/limits.py +75,Your subscription will expire tomorrow.,आपकी सदस्यता कल समाप्त हो जाएगा।
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +483,Saved!,बचा लिया!
apps/frappe/frappe/public/js/frappe/form/control.js +729,{0} is not a valid hex color,{0} एक वैध हेक्स रंग नहीं है
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,महोदया
apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Updated {0}: {1}
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,मास्टर
@@ -872,7 +876,7 @@ DocType: Report,Disabled,विकलांग
DocType: Workflow State,eye-close,आंख को बंद
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth प्रदाता सेटिंग्स
apps/frappe/frappe/config/setup.py +254,Applications,ऐप्लकेशन
apps/frappe/frappe/public/js/frappe/request.js +347,Report this issue,इस समस्या की रिपोर्ट करें
apps/frappe/frappe/public/js/frappe/request.js +349,Report this issue,इस समस्या की रिपोर्ट करें
apps/frappe/frappe/public/js/frappe/form/save.js +79,Name is required,नाम आवश्यक है
DocType: Custom Script,Adds a custom script (client or server) to a DocType,एक doctype के लिए एक कस्टम स्क्रिप्ट (क्लाइंट या सर्वर) कहते हैं
DocType: Address,City/Town,शहर / नगर
@@ -966,6 +970,7 @@ DocType: Currency,**Currency** Master,** मुद्रा ** मास्ट
DocType: Email Account,No of emails remaining to be synced,शेष ईमेल का कोई समन्वयित किए जाने की
apps/frappe/frappe/public/js/frappe/upload.js +203,Uploading,अपलोड हो रहा है
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,कृपया असाइनमेंट से पहले दस्तावेज़ सहेजना
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,कीड़े और सुझाव पोस्ट करने के लिए यहां क्लिक करें
DocType: Website Settings,Address and other legal information you may want to put in the footer.,पता और अन्य कानूनी जानकारी आप पाद लेख में डाल सकते हैं.
DocType: Website Sidebar Item,Website Sidebar Item,वेबसाइट साइडबार आइटम
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +44,{0} records updated,{0} रिकॉर्ड अद्यतन
@@ -979,12 +984,10 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,स्पष
apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,हर दिन की घटनाओं के एक ही दिन में खत्म कर देना चाहिए।
DocType: Communication,User Tags,उपयोगकर्ता के टैग
apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,छवियां प्राप्त कर रहा है ..
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,सेटअप&gt; उपयोगकर्ता
DocType: Workflow State,download-alt,डाउनलोड-Alt
apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},डाउनलोडिंग अनुप्रयोग {0}
DocType: Communication,Feedback Request,प्रतिक्रिया के लिए अनुरोध
apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,निम्नलिखित क्षेत्रों याद कर रहे हैं:
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Experimental Feature,प्रायोगिक सुविधा
apps/frappe/frappe/www/login.html +30,Sign in,साइन इन करें
DocType: Web Page,Main Section,मुख्य धारा
DocType: Page,Icon,आइकन
@@ -1086,7 +1089,7 @@ DocType: Customize Form,Customize Form,प्रपत्र को अनुक
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +104,Mandatory field: set role for,अनिवार्य क्षेत्र: के लिए निर्धारित भूमिका
DocType: Currency,A symbol for this currency. For e.g. $,इस मुद्रा के लिए एक प्रतीक. उदाहरण के लिए $
apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,फ्रेपे फ्रेमवर्क
apps/frappe/frappe/model/naming.py +174,Name of {0} cannot be {1},{0} के नाम नहीं हो सकता है {1}
apps/frappe/frappe/model/naming.py +180,Name of {0} cannot be {1},{0} के नाम नहीं हो सकता है {1}
apps/frappe/frappe/config/setup.py +46,Show or hide modules globally.,दिखाएँ या विश्व स्तर पर मॉड्यूल को छिपाने .
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,दिनांक से
apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,सफलता
@@ -1107,7 +1110,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +308,Add A New
apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js +3,See on Website,वेबसाइट पर देख
DocType: Workflow Transition,Next State,अगले राज्य
DocType: User,Block Modules,ब्लॉक मॉड्यूल
apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,करने के लिए लंबाई उलट रहा {0} के लिए &#39;{1}&#39; में &#39;{2}&#39;; लंबाई सेटिंग {3} डेटा की ट्रंकेशन कारण होगा।
apps/frappe/frappe/model/db_schema.py +142,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,करने के लिए लंबाई उलट रहा {0} के लिए &#39;{1}&#39; में &#39;{2}&#39;; लंबाई सेटिंग {3} डेटा की ट्रंकेशन कारण होगा।
DocType: Print Format,Custom CSS,कस्टम सीएसएस
apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,एक टिप्पणी जोड़ें
apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},उपेक्षित: {0} को {1}
@@ -1199,13 +1202,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,
DocType: Custom Role,Custom Role,कस्टम भूमिका
apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,घर / परीक्षण फ़ोल्डर 2
DocType: System Settings,Ignore User Permissions If Missing,"गुम हैं, तो उपयोगकर्ता अनुमतियाँ पर ध्यान न दें"
apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,कृपया अपलोड करने से पहले दस्तावेज़ को सहेजें।
apps/frappe/frappe/public/js/frappe/form/control.js +1075,Please save the document before uploading.,कृपया अपलोड करने से पहले दस्तावेज़ को सहेजें।
apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,अपना पासवर्ड डालें
DocType: Dropbox Settings,Dropbox Access Secret,ड्रॉपबॉक्स पहुँच गुप्त
apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,एक अन्य टिप्पणी जोड़ें
apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,doctype संपादित करें
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,समाचार पत्रिका का सदस्यता रद्द
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,Unsubscribed from Newsletter,समाचार पत्रिका का सदस्यता रद्द
apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,एक धारा को तोड़ने से पहले आना चाहिए मोड़ो
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,विकास जारी है
apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,अंतिम बार संशोधित
DocType: Workflow State,hand-down,हाथ नीचे
DocType: Address,GST State,जीएसटी राज्य
@@ -1226,6 +1230,7 @@ DocType: Workflow State,Tag,टैग
DocType: Custom Script,Script,लिपि
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,मेरी सेटिंग्स
DocType: Website Theme,Text Color,अक्षर का रंग
apps/frappe/frappe/desk/page/backups/backups.py +72,Backup job is already queued. You will receive an email with the download link,बैकअप कार्य पहले से ही कतारबद्ध है। आपको डाउनलोड लिंक के साथ एक ईमेल प्राप्त होगा
DocType: Desktop Icon,Force Show,बल शो
apps/frappe/frappe/auth.py +78,Invalid Request,अमान्य अनुरोध
apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,इस फार्म के किसी भी इनपुट नहीं करता
@@ -1336,7 +1341,7 @@ DocType: DocField,Name,नाम
apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,आप अपनी योजना के लिए {0} की अधिकतम अंतरिक्ष पार कर चुके हैं। {1}।
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,डॉक्स खोजें
DocType: OAuth Authorization Code,Valid,मान्य
apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,लिंक खोलें
apps/frappe/frappe/public/js/frappe/form/control.js +1354,Open Link,लिंक खोलें
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,आपकी भाषा
apps/frappe/frappe/desk/form/load.py +46,Did not load,लोड नहीं किया
apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,लाइन जोड़ो
@@ -1354,6 +1359,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","कुछ दस्तावेजों , एक चालान की तरह , एक बार अंतिम बदला नहीं जाना चाहिए . ऐसे दस्तावेजों के लिए अंतिम अवस्था प्रस्तुत कहा जाता है. आप भूमिकाओं प्रस्तुत कर सकते हैं जो सीमित कर सकते हैं ."
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,आप इस रिपोर्ट को निर्यात करने की अनुमति नहीं है
apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 आइटम का चयन
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> 'के लिए कोई परिणाम नहीं मिला' </p>
DocType: Newsletter,Test Email Address,टेस्ट ईमेल एड्रेस
DocType: ToDo,Sender,प्रेषक
DocType: GSuite Settings,Google Apps Script,Google Apps स्क्रिप्ट
@@ -1461,7 +1467,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Ple
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,रिपोर्ट लोड हो रहा है
apps/frappe/frappe/limits.py +72,Your subscription will expire today.,आपकी सदस्यता आज समाप्त हो जाएगा।
DocType: Page,Standard,मानक
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,फ़ाइल जोड़ें
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,फ़ाइल जोड़ें
apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,पासवर्ड अद्यतन अधिसूचना
apps/frappe/frappe/desk/page/backups/backups.html +13,Size,आकार
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,पूर्ण समर्पण
@@ -1491,7 +1497,7 @@ apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversat
apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},विकल्प लिंक क्षेत्र के लिए निर्धारित नहीं {0}
DocType: Customize Form,"Must be of type ""Attach Image""",प्रकार का होना चाहिए &quot;छवि संलग्न&quot;
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,सभी का चयन रद्द
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},आप क्षेत्र के लिए सेट नहीं नहीं &#39;केवल पढ़ने के लिए कर सकते हैं&#39; {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +199,You cannot unset 'Read Only' for field {0},आप क्षेत्र के लिए सेट नहीं नहीं &#39;केवल पढ़ने के लिए कर सकते हैं&#39; {0}
DocType: Auto Email Report,Zero means send records updated at anytime,शून्य का मतलब किसी भी समय अपडेट रिकॉर्ड भेजना है
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +22,Complete Setup,पूरा सेटअप
DocType: Workflow State,asterisk,तारांकन
@@ -1505,7 +1511,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +98,Week,सप्
DocType: Social Login Keys,Google,गूगल
DocType: Email Domain,Example Email Address,उदाहरण ईमेल एड्रेस
apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,सबसे अधिक इस्तेमाल किया गता
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Unsubscribe from Newsletter,न्यूज़लेटर की सदस्यता समाप्त करें
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe from Newsletter,न्यूज़लेटर की सदस्यता समाप्त करें
apps/frappe/frappe/www/login.html +101,Forgot Password,पासवर्ड भूल गए
DocType: Dropbox Settings,Backup Frequency,बैकअप आवृत्ति
DocType: Workflow State,Inverse,उलटा
@@ -1583,10 +1589,11 @@ apps/frappe/frappe/config/setup.py +209,"Actions for workflow (e.g. Approve, Can
DocType: Workflow State,flag,झंडा
apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +57,Feedback Request is already sent to user,प्रतिक्रिया अनुरोध पहले से ही उपयोगकर्ता को भेजी जाती है
DocType: Web Page,Text Align,अक्षर संरेखण
apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},नाम की तरह विशेष वर्ण नहीं हो सकते हैं {0}
apps/frappe/frappe/model/naming.py +185,Name cannot contain special characters like {0},नाम की तरह विशेष वर्ण नहीं हो सकते हैं {0}
DocType: Contact Us Settings,Forward To Email Address,फॉरवर्ड ईमेल पते पर
apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,सभी डेटा दिखाएँ
apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,शीर्षक फ़ील्ड एक वैध fieldname होना चाहिए
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,ईमेल खाता सेटअप नहीं है कृपया सेटअप&gt; ईमेल&gt; ईमेल खाता से एक नया ईमेल खाता बनाएं
apps/frappe/frappe/config/core.py +7,Documents,दस्तावेज़
DocType: Email Flag Queue,Is Completed,पूरा हो गया है
apps/frappe/frappe/www/me.html +22,Edit Profile,प्रोफ़ाइल संपादित करें
@@ -1596,7 +1603,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi
myfield
eval:doc.myfield=='My Value'
eval:doc.age&gt;18",यह क्षेत्र केवल तभी दिखाई देगा FIELDNAME यहाँ परिभाषित महत्व है या नियमों के सच्चे (उदाहरण) कर रहे हैं: myfield eval: doc.myfield == &#39;मेरा मान&#39; eval: doc.age&gt; 18
apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,आज
apps/frappe/frappe/public/js/frappe/form/control.js +764,Today,आज
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","आप इस सेट करने के बाद , उपयोगकर्ताओं को केवल सक्षम पहुँच दस्तावेजों लिंक मौजूद है, जहां (जैसे ब्लॉग पोस्ट) (जैसे ब्लॉगर ) हो जाएगा ."
DocType: Error Log,Log of Scheduler Errors,समयबद्धक त्रुटियाँ का प्रवेश
DocType: User,Bio,जैव
@@ -1655,7 +1662,7 @@ DocType: Print Format,Js,जे एस
apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,प्रिंट प्रारूप का चयन करें
apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,कम कीबोर्ड पैटर्न अनुमान लगाना आसान है
DocType: Portal Settings,Portal Menu,पोर्टल मेन्यू
apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,{0} की लंबाई 1 और 1000 के बीच होना चाहिए
apps/frappe/frappe/model/db_schema.py +115,Length of {0} should be between 1 and 1000,{0} की लंबाई 1 और 1000 के बीच होना चाहिए
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,कुछ के लिए खोज
DocType: DocField,Print Hide,छिपाएँ प्रिंट
apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,मान दर्ज
@@ -1708,8 +1715,7 @@ apps/frappe/frappe/model/document.py +564,Cannot change docstatus from 0 to 2,0-
DocType: User Permission for Page and Report,Roles Permission,भूमिकाएँ अनुमति
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,अद्यतन
DocType: Error Snapshot,Snapshot View,स्नैपशॉट देखें
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,कृपया इस समाचार पत्र भेजने से पहले सहेजें
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} वर्ष (पहले)
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +101,Please save the Newsletter before sending,कृपया इस समाचार पत्र भेजने से पहले सहेजें
apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},विकल्प {0} पंक्ति में {1} क्षेत्र के लिए एक वैध DOCTYPE होना चाहिए
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,गुण संपादित करें
DocType: Patch Log,List of patches executed,पैच की सूची मार डाला
@@ -1727,7 +1733,7 @@ apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,पासव
DocType: Workflow State,trash,कचरा
DocType: System Settings,Older backups will be automatically deleted,पुराने बैकअप स्वचालित रूप से हटा दिया जाएगा
DocType: Event,Leave blank to repeat always,हमेशा दोहराने के लिए खाली छोड़ें
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +192,Confirmed,पुष्टि
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,Confirmed,पुष्टि
DocType: Event,Ends on,पर समाप्त होता है
DocType: Payment Gateway,Gateway,द्वार
apps/frappe/frappe/public/js/frappe/form/linked_with.js +116,Not enough permission to see links,लिंक देखने की पर्याप्त अनुमति नहीं है
@@ -1758,7 +1764,6 @@ DocType: Contact,Purchase Manager,खरीद प्रबंधक
DocType: Custom Script,Sample,नमूना
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Uncategorised टैग
DocType: Event,Every Week,हर हफ्ते
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,ईमेल खाता सेटअप नहीं है कृपया सेटअप&gt; ईमेल&gt; ईमेल खाता से एक नया ईमेल खाता बनाएं
apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,यहाँ क्लिक करें अपने उपयोग की जाँच करें या एक उच्च योजना को उन्नत करने के लिए
DocType: Custom Field,Is Mandatory Field,अनिवार्य क्षेत्र है
DocType: User,Website User,वेबसाइट प्रयोक्ता
@@ -1766,7 +1771,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +10,Not equals,
DocType: Integration Request,Integration Request Service,एकता अनुरोध सेवा
DocType: Website Script,Script to attach to all web pages.,स्क्रिप्ट सभी वेब पृष्ठों को देते हैं।
DocType: Web Form,Allow Multiple,एकाधिक अनुमति दें
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +40,Assign,निरुपित
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +44,Assign,निरुपित
apps/frappe/frappe/config/setup.py +102,Import / Export Data from .csv files.,आयात / निर्यात डेटा से . सीएसवी फाइल.
DocType: Auto Email Report,Only Send Records Updated in Last X Hours,केवल अंतिम एक्स घंटे में अपडेट रिकॉर्ड भेजें
DocType: Communication,Feedback,प्रतिपुष्टि
@@ -1846,7 +1851,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,शेष
apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,कृपया संलग्न करने से पहले सहेजें।
apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),जोड़ा गया {0} ({1})
apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},डिफ़ॉल्ट विषय में सेट है {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype को {0} से नहीं बदला जा सकता {1} पंक्ति में {2}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +325,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype को {0} से नहीं बदला जा सकता {1} पंक्ति में {2}
apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,भूमिका अनुमतियां
DocType: Help Article,Intermediate,मध्यम
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,पढ़ सकते हैं
@@ -1861,9 +1866,9 @@ apps/frappe/frappe/core/doctype/user/user.js +42,Refreshing...,रिफ्र
DocType: Event,Starts on,पर शुरू होता है
DocType: System Settings,System Settings,सिस्टम सेटिंग्स
apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,सत्र प्रारंभ विफल
apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},इस ईमेल {0} के लिए भेजा और करने के लिए नकल की थी {1}
apps/frappe/frappe/email/queue.py +470,This email was sent to {0} and copied to {1},इस ईमेल {0} के लिए भेजा और करने के लिए नकल की थी {1}
DocType: Workflow State,th,वें
apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},एक नया {0} बनाएँ
apps/frappe/frappe/public/js/frappe/form/control.js +1517,Create a new {0},एक नया {0} बनाएँ
DocType: Email Rule,Is Spam,स्पैम है
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},रिपोर्ट {0}
apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},ओपन {0}
@@ -1875,12 +1880,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon a
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,डुप्लिकेट
DocType: Newsletter,Create and Send Newsletters,बनाने और भेजने समाचार
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date must be before To Date,दिनांक से पहले तिथि करने के लिए होना चाहिए
DocType: Address,Andaman and Nicobar Islands,अंडमान व नोकोबार द्वीप समूह
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +216,GSuite Document,जीएसयूइट दस्तावेज़
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +29,Please specify which value field must be checked,मूल्य क्षेत्र की जाँच की जानी चाहिए जो निर्दिष्ट करें
apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"""Parent"" signifies the parent table in which this row must be added","""पॅरेंट"" का अर्थ पॅरेंट टेबल जिसमें यह पंक्ति को जोड़ा जाना चाहिए"
DocType: Website Theme,Apply Style,शैली लागू करें
DocType: Feedback Request,Feedback Rating,प्रतिक्रिया दर्ज़ा
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared With,इसके साथ साझा किया गया
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,इसके साथ साझा किया गया
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,सेटअप&gt; उपयोगकर्ता अनुमतियां प्रबंधक
DocType: Help Category,Help Articles,सहायता आलेख
,Modules Setup,मॉड्यूल सेटअप
apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,प्रकार:
@@ -1911,7 +1918,7 @@ DocType: OAuth Client,App Client ID,अनुप्रयोग ग्राह
DocType: Kanban Board,Kanban Board Name,Kanban बोर्ड का नाम
DocType: Email Alert Recipient,"Expression, Optional","अभिव्यक्ति, वैकल्पिक"
DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,Script.google.com पर इस प्रोजेक्ट में कॉपी और पेस्ट करें और अपने कोड में रिक्त Code.gs पेस्ट करें
apps/frappe/frappe/email/queue.py +456,This email was sent to {0},यह ईमेल भेजा गया था {0}
apps/frappe/frappe/email/queue.py +472,This email was sent to {0},यह ईमेल भेजा गया था {0}
DocType: DocField,Remember Last Selected Value,याद रखें अंतिम चयनित मूल्य
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +334,Please select Document Type,कृपया दस्तावेज़ प्रकार का चयन करें
DocType: Email Account,Check this to pull emails from your mailbox,इस जाँच के लिए अपने मेलबॉक्स से ईमेल खींच
@@ -1926,6 +1933,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,व
DocType: Feedback Trigger,Email Field,ईमेल क्षेत्र
apps/frappe/frappe/www/update-password.html +59,New Password Required.,नया पासवर्ड आवश्यक है।
apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} के साथ इस दस्तावेज़ साझा {1}
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,सेटअप&gt; उपयोगकर्ता
DocType: Website Settings,Brand Image,ब्रांड छवि
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","शीर्ष नेविगेशन पट्टी, पाद लेख, और लोगो का सेटअप."
@@ -1993,8 +2001,8 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa
apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},{0} के लिए फ़ाइल स्वरूप पढ़ने में असमर्थ
DocType: Auto Email Report,Filter Data,डेटा फ़िल्टर करें
apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,एक टैग जोड़ना
apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,पहले एक फ़ाइल संलग्न करें.
apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","नाम स्थापित करने में कुछ त्रुटियां थीं, व्यवस्थापक से संपर्क करें"
apps/frappe/frappe/public/js/frappe/form/control.js +1335,Please attach a file first.,पहले एक फ़ाइल संलग्न करें.
apps/frappe/frappe/model/naming.py +174,"There were some errors setting the name, please contact the administrator","नाम स्थापित करने में कुछ त्रुटियां थीं, व्यवस्थापक से संपर्क करें"
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,आने वाले ईमेल खाते सही नहीं हैं
apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \
Please enter a valid email address so that we can get back.",आपके ईमेल के बजाए आपने अपना नाम लिखा है कृपया एक वैध ईमेल पता दर्ज करें ताकि हम वापस आ सकें।
@@ -2046,7 +2054,6 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,
DocType: Custom DocPerm,Create,बनाना
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},अवैध फिल्टर: {0}
DocType: Email Account,no failed attempts,कोई असफल प्रयासों
apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,कोई डिफ़ॉल्ट पता टेम्पलेट पाया नहीं कृपया सेटअप&gt; प्रिंटिंग और ब्रांडिंग&gt; पता टेम्पलेट से एक नया बनाएं।
DocType: GSuite Settings,refresh_token,refresh_token
DocType: Dropbox Settings,App Access Key,अनुप्रयोग प्रवेश कुंजी
DocType: OAuth Bearer Token,Access Token,एक्सेस टोकन
@@ -2072,6 +2079,7 @@ apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl +
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},बनाओ एक नई {0}
apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,नया ईमेल खाता
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +28,Document Restored,दस्तावेज़ बहाल
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +203,You can't set 'Options' for field {0},आप फ़ील्ड {0} के लिए &#39;विकल्प&#39; सेट नहीं कर सकते
apps/frappe/frappe/core/page/usage_info/usage_info.html +86,Size (MB),आकार (MB)
DocType: Help Article,Author,लेखक
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +10,Resume Sending,फिर से शुरू भेज
@@ -2081,7 +2089,7 @@ DocType: Print Settings,Monochrome,एक रंग का
DocType: Address,Purchase User,क्रय उपयोगकर्ता
DocType: Workflow,"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.","विभिन्न इस दस्तावेज़ &quot;राज्य अमेरिका&quot; की तरह &quot;ओपन&quot; अंदर मौजूद है, &quot;अनुमोदन लंबित&quot; आदि कर सकते हैं"
apps/frappe/frappe/utils/verified_command.py +43,This link is invalid or expired. Please make sure you have pasted correctly.,इस कड़ी में अवैध या समाप्त हो गई है। आप सही तरीके से चिपकाया है सुनिश्चित करें।
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> सफलतापूर्वक इस मेलिंग सूची से सदस्यता समाप्त कर दी गई है।
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +136,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> सफलतापूर्वक इस मेलिंग सूची से सदस्यता समाप्त कर दी गई है।
DocType: Web Page,Slideshow,स्लाइड शो
apps/frappe/frappe/contacts/doctype/address_template/address_template.py +31,Default Address Template cannot be deleted,डिफ़ॉल्ट पता खाका हटाया नहीं जा सकता
DocType: Contact,Maintenance Manager,रखरखाव प्रबंधक
@@ -2102,7 +2110,7 @@ apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a r
DocType: System Settings,Apply Strict User Permissions,सख्त उपयोगकर्ता अनुमतियां लागू करें
DocType: DocField,Allow Bulk Edit,बल्क संपादन की अनुमति दें
DocType: Blog Post,Blog Post,ब्लॉग पोस्ट
apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,उन्नत खोज
apps/frappe/frappe/public/js/frappe/form/control.js +1527,Advanced Search,उन्नत खोज
apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,पासवर्ड रीसेट निर्देश अपने ईमेल पर भेज दिया गया है
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \
higher levels for field level permissions.","स्तर 0 दस्तावेज़ स्तर की अनुमतियों के लिए है, \\ फ़ील्ड स्तर अनुमतियों के लिए उच्च स्तर।"
@@ -2127,13 +2135,13 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new re
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,खोज कर
DocType: Currency,Fraction,अंश
DocType: LDAP Settings,LDAP First Name Field,LDAP पहला नाम फील्ड
apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,मौजूदा संलग्नक से चुनें
apps/frappe/frappe/public/js/frappe/form/control.js +1085,Select from existing attachments,मौजूदा संलग्नक से चुनें
DocType: Custom Field,Field Description,फील्ड विवरण
apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,प्रॉम्प्ट के माध्यम से निर्धारित नहीं नाम
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,ईमेल इनबॉक्स
DocType: Auto Email Report,Filters Display,फिल्टर प्रदर्शन
DocType: Website Theme,Top Bar Color,टॉप बार रंग
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Do you want to unsubscribe from this mailing list?,आप इस मेलिंग सूची से सदस्यता समाप्त करना चाहते हैं?
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Do you want to unsubscribe from this mailing list?,आप इस मेलिंग सूची से सदस्यता समाप्त करना चाहते हैं?
DocType: Address,Plant,पौधा
apps/frappe/frappe/core/doctype/communication/communication.js +65,Reply All,सभी को उत्तर दें
DocType: DocType,Setup,व्यवस्था
@@ -2176,7 +2184,7 @@ DocType: User,Send Notifications for Transactions I Follow,मैं पाल
apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : लिखने के बिना संशोधन रद्द , सबमिट सेट नहीं कर सकता"
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,क्या आप सुनिश्चित करें कि आप अनुलग्नक हटाना चाहते हैं?
apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} <a href=""#Form/{0}/{1}"">{1}</a> is linked with {2} <a href=""#Form/{2}/{3}"">{3}</a>","नष्ट या क्योंकि {0} रद्द नहीं कर सकते <a href=""#Form/{0}/{1}"">{1}</a> के साथ जुड़ा हुआ है {2} <a href=""#Form/{2}/{3}"">{3}</a>"
apps/frappe/frappe/__init__.py +1062,Thank you,धन्यवाद
apps/frappe/frappe/__init__.py +1070,Thank you,धन्यवाद
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,बचत
DocType: Print Settings,Print Style Preview,मुद्रण शैली पूर्वावलोकन
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
@@ -2191,7 +2199,7 @@ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,रू
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,क्रमांक
,Role Permissions Manager,रोल अनुमतियां प्रबंधक
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,नया प्रिंट प्रारूप का नाम
apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,कुर्की साफ
apps/frappe/frappe/public/js/frappe/form/control.js +1087,Clear Attachment,कुर्की साफ
apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,अनिवार्य:
,User Permissions Manager,उपयोगकर्ता अनुमतियाँ प्रबंधक
DocType: Property Setter,New value to be set,नई करने के लिए सेट किया जा मूल्य
@@ -2216,7 +2224,7 @@ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment C
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,स्पष्ट त्रुटि लॉग
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,कृपया मूल्यांकन का चयन करें
DocType: Email Account,Notify if unreplied for (in mins),(मिनट में) के लिए unreplied अगर सूचित करें
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 दिन पहले
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +501,2 days ago,2 दिन पहले
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,ब्लॉग पोस्ट श्रेणीबद्ध.
DocType: Workflow State,Time,समय
DocType: DocField,Attach,संलग्न करना
@@ -2232,6 +2240,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,बै
DocType: GSuite Templates,Template Name,टेम्पलेट नाम
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,दस्तावेज़ के नए प्रकार
DocType: Custom DocPerm,Read,पढ़ना
DocType: Address,Chhattisgarh,छत्तीसगढ़
DocType: Role Permission for Page and Report,Role Permission for Page and Report,पृष्ठ और रिपोर्ट के लिए भूमिका की अनुमति
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,संरेखित मूल्य
apps/frappe/frappe/www/update-password.html +14,Old Password,पुराना पासवर्ड
@@ -2279,7 +2288,7 @@ apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your ema
can get back to you. Thanks!","हम आपको वापस मिल सकता है \
इतना है कि अपने ईमेल और संदेश दोनों दर्ज करें। शुक्रिया!"
apps/frappe/frappe/email/smtp.py +170,Could not connect to outgoing email server,निवर्तमान ईमेल सर्वर से कनेक्ट नहीं कर सका
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +162,Thank you for your interest in subscribing to our updates,हमारे अद्यतन करने के लिए सदस्यता लेने में आपकी रुचि के लिए धन्यवाद
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Thank you for your interest in subscribing to our updates,हमारे अद्यतन करने के लिए सदस्यता लेने में आपकी रुचि के लिए धन्यवाद
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Custom Column,कस्टम स्तंभ
DocType: Workflow State,resize-full,का आकार परिवर्तन भरा
DocType: Workflow State,off,बंद
@@ -2342,7 +2351,7 @@ DocType: Address,Telangana,तेलंगाना
apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,{0} एक विकल्प होना चाहिए के लिए डिफ़ॉल्ट
DocType: Tag Doc Category,Tag Doc Category,टैग डॉक्टर श्रेणी
DocType: User,User Image,User Image
apps/frappe/frappe/email/queue.py +289,Emails are muted,ईमेल मौन हैं
apps/frappe/frappe/email/queue.py +304,Emails are muted,ईमेल मौन हैं
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + ऊपर
DocType: Website Theme,Heading Style,शीर्ष शैली
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +183,A new Project with this name will be created,इस नाम से एक नई परियोजना बनाया जाएगा
@@ -2559,7 +2568,6 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,घंटी
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,ईमेल अलर्ट में त्रुटि
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,के साथ इस दस्तावेज़ को साझा करें
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,सेटअप&gt; उपयोगकर्ता अनुमतियां प्रबंधक
apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,यह बच्चों के रूप में {0} {1} एक पत्ती नोड नहीं हो सकता
DocType: Communication,Info,जानकारी
apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,अय्टाचमेंट जोडे
@@ -2614,7 +2622,7 @@ apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,छाप
DocType: Email Alert,Send days before or after the reference date,पहले या संदर्भ तारीख के बाद के दिनों भेजें
DocType: User,Allow user to login only after this hour (0-24),उपयोगकर्ता इस घंटे के बाद ही प्रवेश करने की अनुमति दें (0-24)
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,मूल्य
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +165,Click here to verify,सत्यापित करने के लिए यहां क्लिक करें
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +166,Click here to verify,सत्यापित करने के लिए यहां क्लिक करें
apps/frappe/frappe/utils/password_strength.py +178,Predictable substitutions like '@' instead of 'a' don't help very much.,की तरह उम्मीद के मुताबिक प्रतिस्थापन &#39;@&#39; के बजाय &#39;एक&#39; बहुत ज्यादा मदद नहीं करते।
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,मेरे द्वारा आवंटित
apps/frappe/frappe/utils/data.py +462,Zero,शून्य
@@ -2626,6 +2634,7 @@ DocType: ToDo,Priority,प्राथमिकता
DocType: Email Queue,Unsubscribe Param,सदस्यता समाप्त परम
DocType: Auto Email Report,Weekly,साप्ताहिक
DocType: Communication,In Reply To,इसके उत्तर में
apps/frappe/frappe/contacts/doctype/address/address.py +189,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,कोई डिफ़ॉल्ट पता टेम्पलेट पाया नहीं कृपया सेटअप&gt; प्रिंटिंग और ब्रांडिंग&gt; पता टेम्प्लेट से एक नया बनाएं।
DocType: DocType,Allow Import (via Data Import Tool),आयात की अनुमति दें (डेटा आयात के उपकरण के माध्यम से)
apps/frappe/frappe/templates/print_formats/standard_macros.html +30,Sr,सीनियर
DocType: DocField,Float,नाव
@@ -2716,7 +2725,6 @@ apps/frappe/frappe/commands/site.py +451,Invalid limit {0},अमान्य
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,एक दस्तावेज़ प्रकार सूची
DocType: Event,Ref Type,रेफरी के प्रकार
apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","आप नए रिकॉर्ड अपलोड कर रहे हैं, ""नाम"" (आईडी) कॉलम खाली छोड़ दें।"
DocType: Address,Chattisgarh,छत्तीसगढ़
apps/frappe/frappe/config/core.py +47,Errors in Background Events,पृष्ठभूमि घटनाक्रम में त्रुटियाँ
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,स्तंभ का कोई
DocType: Workflow State,Calendar,कैलेंडर
@@ -2748,7 +2756,7 @@ apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},अस
DocType: Integration Request,Remote,रिमोट
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,गणना करें
apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,पहले doctype का चयन करें
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,आपके ईमेल की पुष्टि करें
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +174,Confirm Your Email,आपके ईमेल की पुष्टि करें
apps/frappe/frappe/www/login.html +42,Or login with,या साथ लॉगिन
DocType: Error Snapshot,Locals,स्थानीय लोग
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},के माध्यम से भेजी {0} को {1}: {2}
@@ -2765,7 +2773,7 @@ DocType: Web Page,Web Page,वेब पेज
DocType: Blog Category,Blogger,ब्लॉगर
apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},पंक्ति {1} में {0} प्रकार के लिए &#39;वैश्विक खोज में&#39; की अनुमति नहीं है
apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,सूची देखें
apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},तिथि प्रारूप में होना चाहिए : {0}
apps/frappe/frappe/public/js/frappe/form/control.js +810,Date must be in format: {0},तिथि प्रारूप में होना चाहिए : {0}
DocType: Workflow,Don't Override Status,स्थिति पर हावी नहीं है
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,रेटिंग दे दीजिए।
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} प्रतिक्रिया का अनुरोध
@@ -2798,7 +2806,7 @@ DocType: Custom DocPerm,Report,रिपोर्ट
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,राशि 0 से अधिक होना चाहिए।
apps/frappe/frappe/desk/reportview.py +107,{0} is saved,{0} सहेजा जाता है
apps/frappe/frappe/core/doctype/user/user.py +327,User {0} cannot be renamed,प्रयोक्ता {0} नाम बदला नहीं जा सकता
apps/frappe/frappe/model/db_schema.py +107,Fieldname is limited to 64 characters ({0}),FIELDNAME 64 अक्षरों तक सीमित है ({0})
apps/frappe/frappe/model/db_schema.py +108,Fieldname is limited to 64 characters ({0}),FIELDNAME 64 अक्षरों तक सीमित है ({0})
apps/frappe/frappe/config/desk.py +59,Email Group List,ईमेल समूह सूची
DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],.ico विस्तार के साथ एक आइकन फ़ाइल। 16 x 16 पिक्सल होना चाहिए। एक favicon जनरेटर का उपयोग कर उत्पन्न। [Favicon-generator.org]
DocType: Auto Email Report,Format,प्रारूप
@@ -2876,7 +2884,7 @@ DocType: Website Settings,Title Prefix,शीर्षक उपसर्ग
DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,सूचनाएं और थोक मेल इस जावक सर्वर से भेजा जाएगा।
DocType: Workflow State,cog,दांत
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on Migrate,माइग्रेट पर सिंक
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,वर्तमान में देख
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Currently Viewing,वर्तमान में देख
DocType: DocField,Default,चूक
apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} जोड़ा गया
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',&#39;{0}&#39; के लिए खोजें
@@ -2936,7 +2944,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +771,Report was
DocType: Print Settings,Print Style,मुद्रण शैली
apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,किसी भी रिकॉर्ड से जुड़ा नहीं है
DocType: Custom DocPerm,Import,आयात
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +178,Row {0}: Not allowed to enable Allow on Submit for standard fields,पंक्ति {0}: पर मानक क्षेत्रों के लिए सबमिट की अनुमति दें सक्षम करने के लिए अनुमति नहीं है
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +180,Row {0}: Not allowed to enable Allow on Submit for standard fields,पंक्ति {0}: पर मानक क्षेत्रों के लिए सबमिट की अनुमति दें सक्षम करने के लिए अनुमति नहीं है
apps/frappe/frappe/config/setup.py +100,Import / Export Data,आयात / निर्यात डेटा
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,स्टैंडर्ड भूमिकाओं का नाम बदला नहीं जा सकता है
DocType: Communication,To and CC,प्रति और प्रतिलिपि
@@ -2963,7 +2971,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo
DocType: Auto Email Report,Filter Meta,फ़िल्टर मेटा
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"इस फार्म के लिए एक वेब पेज है, तो वेब पेज को जोड़ने वाली लिंक को नाम प्रदान करे। लिंक मार्ग खुद ब खुद `page_name` और `parent_website_route` से उत्पन्न हो जाएगा।"
DocType: Feedback Request,Feedback Trigger,प्रतिक्रिया उत्प्रेरक
apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,पहला {0} सेट करें
apps/frappe/frappe/public/js/frappe/form/control.js +1741,Please set {0} first,पहला {0} सेट करें
DocType: Unhandled Email,Message-id,संदेश-आईडी
DocType: Patch Log,Patch,पैच
DocType: Async Task,Failed,विफल


+ 75
- 67
frappe/translations/hr.csv Datei anzeigen

@@ -14,8 +14,9 @@ apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,Mo
DocType: User,Facebook Username,Facebook ime
DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Napomena: Više sjednice će biti dopušteno u slučaju mobilnog uređaja
apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},E omogućeno spremnika za korisnika {korisnik}
apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Ne možete poslati ovu poruku. Ste prešli granicu od slanja {0} e-pošte za ovaj mjesec.
apps/frappe/frappe/email/queue.py +225,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Ne možete poslati ovu poruku. Ste prešli granicu od slanja {0} e-pošte za ovaj mjesec.
apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Trajno Podnijeti {0} ?
apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,Preuzmite sigurnosnu kopiju datoteka
DocType: Address,County,Okrug
DocType: Workflow,If Checked workflow status will not override status in list view,Ako je označeno stanje tijeka rada neće poništiti status u prikazu popisa
apps/frappe/frappe/client.py +280,Invalid file path: {0},Pogrešna Put datoteke: {0}
@@ -80,10 +81,10 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Postavke
apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administrator prijavljeni
DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontakt opcije, poput &quot;Sales Query, Podrška upit&quot; itd jedni na novoj liniji ili odvojene zarezima."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Preuzimanje
apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Insert
apps/frappe/frappe/public/js/frappe/form/control.js +1979,Insert,Insert
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Odaberite {0}
DocType: Print Settings,Classic,Klasik
DocType: Desktop Icon,Color,Boja
DocType: DocField,Color,Boja
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +54,For ranges,Za raspone
DocType: Workflow State,indent-right,alineje-desno
DocType: Has Role,Has Role,ima ulogu
@@ -100,7 +101,7 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To impor
DocType: DocType,Default Print Format,Zadani oblik ispisa
DocType: Workflow State,Tags,oznake
apps/frappe/frappe/public/js/frappe/form/workflow.js +33,None: End of Workflow,Ništa: Kraj Workflow
apps/frappe/frappe/model/db_schema.py +346,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} polje ne može se postaviti kao jedinstvena po {1}, kao što su non-jedinstveni postojeće vrijednosti"
apps/frappe/frappe/model/db_schema.py +347,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} polje ne može se postaviti kao jedinstvena po {1}, kao što su non-jedinstveni postojeće vrijednosti"
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +47,Document Types,Vrste dokumenata
DocType: Address,Jammu and Kashmir,Jammu i Kašmir
DocType: Workflow,Workflow State Field,Workflow Državna polja
@@ -231,7 +232,7 @@ DocType: Workflow,Transition Rules,Prijelazna pravila
apps/frappe/frappe/core/doctype/report/report.js +11,Example:,Primjer:
DocType: Workflow,Defines workflow states and rules for a document.,Određuje tijek rada države i pravila za dokument.
DocType: Workflow State,Filter,filter
apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Fieldname {0} ne može imati posebne znakove kao {1}
apps/frappe/frappe/model/db_schema.py +564,Fieldname {0} cannot have special characters like {1},Fieldname {0} ne može imati posebne znakove kao {1}
apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Ažuriranje mnoge vrijednosti u jednom trenutku.
apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Pogreška: Dokument je promijenjen nakon što ste ga otvorili
apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} odjavljen: {1}
@@ -260,7 +261,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Get your glo
apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Vaša pretplata istekla je {0}. Obnoviti, {1}."
DocType: Workflow State,plus-sign,plus-potpisati
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Postavljanje je već završena
apps/frappe/frappe/__init__.py +889,App {0} is not installed,Asi {0} nije instaliran
apps/frappe/frappe/__init__.py +897,App {0} is not installed,Asi {0} nije instaliran
DocType: Workflow State,Refresh,Osvježi stranicu
DocType: Event,Public,Javni
apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Ništa pokazati
@@ -339,7 +340,6 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Uredi naslov
DocType: File,File URL,URL datoteke
DocType: Version,Table HTML,Tablica HTML
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> Nema rezultata za ' </p>
apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Dodaj Pretplatnici
apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Buduća događanja za danas
DocType: Email Alert Recipient,Email By Document Field,E-mail dokumentom Field
@@ -404,7 +404,6 @@ DocType: Desktop Icon,Link,Poveznica
apps/frappe/frappe/utils/file_manager.py +96,No file attached,Nema datoteke u prilogu
DocType: Version,Version,Verzija
DocType: User,Fill Screen,Ispunite zaslon
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,Postavite zadani račun e-pošte iz Postava&gt; E-pošta&gt; Račun e-pošte
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Nije moguće prikazati ovaj izvještaj stabla, zbog nedostatka podataka. Najvjerojatnije, to se filtrira kako zbog dozvole."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Odaberite File
apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Uredi preko Pošalji
@@ -474,9 +473,9 @@ DocType: User,Reset Password Key,Reset Password ključ
DocType: Email Account,Enable Auto Reply,Omogućite Auto Odgovor
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Ne vidi
DocType: Workflow State,zoom-in,uvećaj
apps/frappe/frappe/email/queue.py +219,Unsubscribe from this list,Odjaviti s ovog popisa
apps/frappe/frappe/email/queue.py +234,Unsubscribe from this list,Odjaviti s ovog popisa
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Reference DocType and Reference Name are required,Referentni DOCTYPE i reference Ime su obavezna
apps/frappe/frappe/utils/jinja.py +35,Syntax error in template,Pogreška u sintaksi u predlošku
apps/frappe/frappe/utils/jinja.py +51,Syntax error in template,Pogreška u sintaksi u predlošku
DocType: DocField,Width,Širina
DocType: Email Account,Notify if unreplied,Obavijesti ako Neodgovoreno
DocType: System Settings,Minimum Password Score,Minimalna ocjena zaporke
@@ -560,6 +559,7 @@ DocType: Custom Field,Select the label after which you want to insert new field.
DocType: User,Last Login,Zadnja prijava
apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},"Podataka, Naziv Polja je potrebno u redu {0}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Kolona
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,Postavite zadani račun e-pošte od Postava&gt; E-pošta&gt; Račun e-pošte
DocType: Custom Field,Adds a custom field to a DocType,Dodaje prilagođeni polje na vrstu dokumenata
DocType: File,Is Home Folder,Je Početna mapa
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} nije valjana e-mail adresa
@@ -567,7 +567,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +733,Select atleast 1 reco
apps/frappe/frappe/core/doctype/has_role/has_role.py +13,User '{0}' already has the role '{1}',Korisnik &#39;{0}&#39; već ima ulogu &#39;{1}&#39;
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,Postaviti i Sync
apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Zajednička s {0}
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe,Otkažite pretplatu
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +132,Unsubscribe,Otkažite pretplatu
DocType: Communication,Reference Name,Referenca Ime
apps/frappe/frappe/public/js/frappe/toolbar.js +30,Chat Support,Chat Support
DocType: Error Snapshot,Exception,Izuzetak
@@ -585,7 +585,7 @@ DocType: Email Group,Newsletter Manager,Newsletter Upravitelj
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Opcija 1
apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} do {1}
apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Prijava pogreške prilikom zahtjeva.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} je uspješno dodan u e-Grupe.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +194,{0} has been successfully added to the Email Group.,{0} je uspješno dodan u e-Grupe.
DocType: Address,Uttar Pradesh,Uttar Pradesh
DocType: Address,Pondicherry,Pondicherry
apps/frappe/frappe/public/js/frappe/upload.js +364,Make file(s) private or public?,Provjerite datoteku (e) privatno ili javno?
@@ -616,7 +616,7 @@ DocType: Portal Settings,Portal Settings,Postavke portala
DocType: Web Page,0 is highest,0 je najviši
apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Jeste li sigurni da želite povezati ovaj komunikacija na {0}?
apps/frappe/frappe/www/login.html +104,Send Password,Pošalji lozinku
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +45,Attachments,Privitci
DocType: Email Queue,Attachments,Privitci
apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,Vi nemate dopuštenja za pristup ovom dokumentu
DocType: Language,Language Name,Jezik Naziv
DocType: Email Group Member,Email Group Member,Email član grupe
@@ -646,7 +646,7 @@ apps/frappe/frappe/utils/password_strength.py +78,Try to use a longer keyboard p
DocType: Feedback Trigger,Check Communication,Provjerite Komunikacija
DocType: Address,Rajasthan,Rajasthan
apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Report Builder izvješća se izravno upravlja Report Builder. Ništa učiniti.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Potvrdite svoju adresu e-pošte
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +164,Please verify your Email Address,Potvrdite svoju adresu e-pošte
apps/frappe/frappe/model/document.py +903,none of,nitko od
apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Pošaljite mi kopiju
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Postavi korisnik dozvole
@@ -657,7 +657,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Si
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban odbor {0} ne postoji.
apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} Trenutno pregledavate ovaj dokument
DocType: ToDo,Assigned By Full Name,Dodjeljuje Puni naziv
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} ažurirana
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} ažurirana
apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Izvješće ne može se postaviti za samohrane vrste
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,Prije {0} dana
DocType: Email Account,Awaiting Password,Očekujem Lozinka
@@ -682,7 +682,7 @@ DocType: Workflow State,Stop,zaustaviti
DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Link na stranicu koju želite otvoriti. Ostavite prazno ako želite da grupa roditelja čine.
DocType: DocType,Is Single,Je Samac
apps/frappe/frappe/core/doctype/user/user.py +720,Sign Up is disabled,Registracija je onemogućen
apps/frappe/frappe/email/queue.py +278,{0} has left the conversation in {1} {2},{0} je napustio razgovor u {1} {2}
apps/frappe/frappe/email/queue.py +293,{0} has left the conversation in {1} {2},{0} je napustio razgovor u {1} {2}
DocType: Blogger,User ID of a Blogger,Korisnik ID bloger
apps/frappe/frappe/core/doctype/user/user.py +287,There should remain at least one System Manager,Tu bi trebao ostati barem jedan sustav Manager
DocType: GSuite Settings,Authorization Code,Autorizacija Code
@@ -728,6 +728,7 @@ DocType: Event,Event,Događaj
apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Na {0}, {1} je napisano:"
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,Ne možete izbrisati standardne polje. Možete ga sakriti ako želite
DocType: Top Bar Item,For top bar,Na gornjoj traci
apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,U redu za backup. Primit ćete e-poruku s vezom za preuzimanje
apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Ne može se utvrditi {0}
DocType: Address,Address,Adresa
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +3,Payment Failed,Plaćanje nije uspjelo
@@ -752,13 +753,13 @@ DocType: Web Form,Allow Print,Dopusti Ispis
apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Nema instaliranih aplikacija
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Označite polje kao obvezno
DocType: Communication,Clicked,Kliknuo
apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Nema dozvole za ' {0} ' {1}
apps/frappe/frappe/public/js/legacy/form.js +950,No permission to '{0}' {1},Nema dozvole za ' {0} ' {1}
DocType: User,Google User ID,Google korisnički ID
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Planirano za slanje
DocType: DocType,Track Seen,Prati Gledano
apps/frappe/frappe/desk/form/utils.py +55,This method can only be used to create a Comment,Ova metoda može se koristiti samo za stvaranje komentar
DocType: Event,orange,narančasta
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,No {0} found,Ne {0} pronađeno
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +558,No {0} found,Ne {0} pronađeno
apps/frappe/frappe/config/setup.py +242,Add custom forms.,Dodaj prilagođene oblike.
apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} u {2}
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +419,submitted this document,podnosi ovaj dokument
@@ -788,6 +789,7 @@ DocType: Newsletter Email Group,Newsletter Email Group,Newsletter Email Grupa
DocType: Dropbox Settings,Integrations,Integracije
DocType: DocField,Section Break,Odjeljak Break
DocType: Address,Warehouse,Skladište
DocType: Address,Other Territory,Drugi teritorij
,Messages,Poruke
apps/frappe/frappe/desk/page/applications/applications.js +49,Portal,Portal
DocType: Email Account,Use Different Email Login ID,Koristite različite ID e-pošte za prijavu
@@ -818,6 +820,7 @@ apps/frappe/frappe/utils/data.py +556,1 month ago,prije 1 mjesec
DocType: Contact,User ID,Korisnički ID
DocType: Communication,Sent,Poslano
DocType: Address,Kerala,Kerala
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} godina
DocType: File,Lft,LFT
DocType: User,Simultaneous Sessions,Simultano sesije
DocType: OAuth Client,Client Credentials,Mandatno Client
@@ -834,7 +837,7 @@ DocType: Email Queue,Unsubscribe Method,odjaviti metoda
DocType: GSuite Templates,Related DocType,Povezani DocType
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Uredi za dodavanje sadržaja
apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,odaberite jezici
apps/frappe/frappe/__init__.py +509,No permission for {0},Nema dozvole za {0}
apps/frappe/frappe/__init__.py +517,No permission for {0},Nema dozvole za {0}
DocType: DocType,Advanced,Napredan
apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Čini API ključ ili API Tajna je u redu !!!
apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Referenca: {0} {1}
@@ -845,6 +848,7 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P
DocType: Email Account,Yahoo Mail,Yahoo Mail
apps/frappe/frappe/limits.py +75,Your subscription will expire tomorrow.,Pretplata će isteći sutra.
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +483,Saved!,Spremljeno!
apps/frappe/frappe/public/js/frappe/form/control.js +729,{0} is not a valid hex color,{0} nije važeća heksadecimalna boja
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,gospođa
apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Ažurirano {0}: {1}
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,Master
@@ -872,7 +876,7 @@ DocType: Report,Disabled,Ugašeno
DocType: Workflow State,eye-close,oka u blizini
DocType: OAuth Provider Settings,OAuth Provider Settings,Postavke OAutha Provider
apps/frappe/frappe/config/setup.py +254,Applications,Prijave
apps/frappe/frappe/public/js/frappe/request.js +347,Report this issue,Prijavite ovaj problem
apps/frappe/frappe/public/js/frappe/request.js +349,Report this issue,Prijavite ovaj problem
apps/frappe/frappe/public/js/frappe/form/save.js +79,Name is required,Ime je potrebno
DocType: Custom Script,Adds a custom script (client or server) to a DocType,Dodaje prilagođenu skriptu (klijent ili poslužitelj) na DOCTYPE
DocType: Address,City/Town,Grad / Mjesto
@@ -966,6 +970,7 @@ DocType: Currency,**Currency** Master,** Valuta ** osnovna
DocType: Email Account,No of emails remaining to be synced,Bez e-pošte preostalih se sinkronizirati
apps/frappe/frappe/public/js/frappe/upload.js +203,Uploading,Prijenos
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,Molimo spremite dokument prije dodjele
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,Kliknite ovdje da biste objavili bugove i prijedloge
DocType: Website Settings,Address and other legal information you may want to put in the footer.,Adresa i druge pravne informacije koje možda želite staviti u podnožje.
DocType: Website Sidebar Item,Website Sidebar Item,Web Bočna predmeta
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +44,{0} records updated,{0} evidencija ažurira
@@ -979,12 +984,10 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,jasno
apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Svaki dan događanja trebao završiti na isti dan.
DocType: Communication,User Tags,Upute Tags
apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Dohvaćanje slika ..
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Postavke&gt; Korisnik
DocType: Workflow State,download-alt,download-alt
apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Preuzimanje Asi {0}
DocType: Communication,Feedback Request,Zahtjev povratne informacije
apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,Sljedeća polja su nestali:
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Experimental Feature,eksperimentalna značajka
apps/frappe/frappe/www/login.html +30,Sign in,Prijaviti se
DocType: Web Page,Main Section,Glavno odjeljenje
DocType: Page,Icon,ikona
@@ -1086,7 +1089,7 @@ DocType: Customize Form,Customize Form,Prilagodite obrazac
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +104,Mandatory field: set role for,Obavezna polja: postavljanje uloga
DocType: Currency,A symbol for this currency. For e.g. $,Simbol za ovu valutu. Kao npr. $
apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,Frappe Framework
apps/frappe/frappe/model/naming.py +174,Name of {0} cannot be {1},Naziv od {0} ne može biti {1}
apps/frappe/frappe/model/naming.py +180,Name of {0} cannot be {1},Naziv od {0} ne može biti {1}
apps/frappe/frappe/config/setup.py +46,Show or hide modules globally.,Pokaži ili sakrij module na globalnoj razini.
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,Od datuma
apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,Uspješno
@@ -1096,7 +1099,7 @@ DocType: Kanban Board Column,Kanban Board Column,Stupac Kanban zajednica
apps/frappe/frappe/utils/password_strength.py +76,Straight rows of keys are easy to guess,Ravne reda tipki mogu se lako pogoditi
DocType: Communication,Phone No.,Telefonski broj
DocType: Workflow State,fire,vatra
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +23,; not allowed in condition,; Nije dopušteno u stanju
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +23,; not allowed in condition,; Nije dopušteno u uvjetu
DocType: Async Task,Async Task,Asinkronom zadatak
DocType: Workflow State,picture,slika
apps/frappe/frappe/www/complete_signup.html +22,Complete,Kompletna
@@ -1107,7 +1110,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +308,Add A New
apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js +3,See on Website,Pogledajte na web
DocType: Workflow Transition,Next State,Sljedeća županija
DocType: User,Block Modules,Blok Moduli
apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Vraćam duljine do {0} za &#39;{1}&#39; u &#39;{2}&#39;; Podešavanje dužine kao {3} će uzrokovati skraćivanje podataka.
apps/frappe/frappe/model/db_schema.py +142,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Vraćam duljine do {0} za &#39;{1}&#39; u &#39;{2}&#39;; Podešavanje dužine kao {3} će uzrokovati skraćivanje podataka.
DocType: Print Format,Custom CSS,Prilagođeni CSS
apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Dodaj komentar
apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Zanemareni: {0} do {1}
@@ -1199,13 +1202,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,
DocType: Custom Role,Custom Role,Prilagođena uloga
apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Početna / Ispitni mapa 2
DocType: System Settings,Ignore User Permissions If Missing,Zanemari korisnik dozvole Ako nestale
apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Molimo spremite dokument prije učitavanja.
apps/frappe/frappe/public/js/frappe/form/control.js +1075,Please save the document before uploading.,Molimo spremite dokument prije učitavanja.
apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Unesite zaporku
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox tajni pristup
apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Dodaj još jedan komentar
apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Uredi DOCTYPE
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Poništili pretplatu na Newsletter
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,Unsubscribed from Newsletter,Poništili pretplatu na Newsletter
apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Preklopite moraju doći pred Odjeljak Break
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,U razvoju
apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Zadnji izmijenio
DocType: Workflow State,hand-down,rukom prema dolje
DocType: Address,GST State,GST država
@@ -1226,6 +1230,7 @@ DocType: Workflow State,Tag,Privjesak
DocType: Custom Script,Script,Skripta
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Moje postavke
DocType: Website Theme,Text Color,Tekst u boji
apps/frappe/frappe/desk/page/backups/backups.py +72,Backup job is already queued. You will receive an email with the download link,Sigurnosno kopiranje je već u redu čekanja. Primit ćete e-poruku s vezom za preuzimanje
DocType: Desktop Icon,Force Show,Force Show
apps/frappe/frappe/auth.py +78,Invalid Request,Pogrešna Zahtjev
apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Ovaj oblik nema ulaz
@@ -1280,7 +1285,7 @@ apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under
DocType: Email Alert,Send alert if date matches this field's value,Pošalji upozorenje ako datum odgovara vrijednost ovom području je
DocType: Workflow,Transitions,Prijelazi
apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Ukloni {0} i izbrisati sve podatke?
apps/frappe/frappe/desk/page/activity/activity_row.html +34,{0} {1} to {2},{0} {1} {2}
apps/frappe/frappe/desk/page/activity/activity_row.html +34,{0} {1} to {2},{0} {1} do {2}
DocType: User,Login After,Prijava nakon
DocType: Print Format,Monospace,Monospace
DocType: Letter Head,Printing,Tiskanje
@@ -1336,7 +1341,7 @@ DocType: DocField,Name,Ime
apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,Premašili ste maksimalni prostor {0} za svoj plan. {1}.
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Pretražite dokumente
DocType: OAuth Authorization Code,Valid,vrijedi
apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Otvori link
apps/frappe/frappe/public/js/frappe/form/control.js +1354,Open Link,Otvori link
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Tvoj jezik
apps/frappe/frappe/desk/form/load.py +46,Did not load,Nije učitano
apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Dodaj Row
@@ -1354,6 +1359,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Određeni dokumenti , poput fakturu , ne treba mijenjati jednom finalu . Konačno stanje za takve dokumente se zove Postavio . Možete ograničiti koje uloge mogu podnijeti ."
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Nije Vam dopušteno izvoziti ovo izvješće
apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 stavka odabrana
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> Nema rezultata za ' </p>
DocType: Newsletter,Test Email Address,Test e-mail adresa
DocType: ToDo,Sender,Pošiljalac
DocType: GSuite Settings,Google Apps Script,Skripta za Google Apps
@@ -1461,7 +1467,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Ple
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Učitavanje izvješće
apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Pretplata će isteći danas.
DocType: Page,Standard,Standard
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Priložite Datoteku
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,Priložite Datoteku
apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,Obavijest o ažuriranju zaporke
apps/frappe/frappe/desk/page/backups/backups.html +13,Size,Veličina
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,Dodjela Kompletna
@@ -1491,7 +1497,7 @@ apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversat
apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Opcije nije postavljen za link polju {0}
DocType: Customize Form,"Must be of type ""Attach Image""",Mora biti tipa &quot;Priloži sliku&quot;
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Poništi sve
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Ne možete postavi &quot;Samo za čitanje&quot; za polje {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +199,You cannot unset 'Read Only' for field {0},Ne možete postavi &quot;Samo za čitanje&quot; za polje {0}
DocType: Auto Email Report,Zero means send records updated at anytime,Zero znači poslati zapise ažurirane u bilo koje vrijeme
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +22,Complete Setup,kompletan Setup
DocType: Workflow State,asterisk,zvjezdica
@@ -1505,7 +1511,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +98,Week,Tjedan
DocType: Social Login Keys,Google,Google
DocType: Email Domain,Example Email Address,Primjer e-mail adresa
apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,Većina Rabljeni
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Unsubscribe from Newsletter,Otkazivanje pretplate na Newsletter
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe from Newsletter,Otkazivanje pretplate na Newsletter
apps/frappe/frappe/www/login.html +101,Forgot Password,Zaboravili ste lozinku
DocType: Dropbox Settings,Backup Frequency,Backup Frequency
DocType: Workflow State,Inverse,Inverzan
@@ -1583,10 +1589,11 @@ apps/frappe/frappe/config/setup.py +209,"Actions for workflow (e.g. Approve, Can
DocType: Workflow State,flag,zastava
apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +57,Feedback Request is already sent to user,Zahtjev Povratne informacije već je poslana na korisnika
DocType: Web Page,Text Align,Tekst Poravnajte
apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Ime ne može sadržavati posebne znakove kao {0}
apps/frappe/frappe/model/naming.py +185,Name cannot contain special characters like {0},Ime ne može sadržavati posebne znakove kao {0}
DocType: Contact Us Settings,Forward To Email Address,Napadač na e-mail adresu
apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Prikaži sve podatke
apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,"Naslov polje mora bitivaljana podataka, Naziv Polja"
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,Račun e-pošte nije postavljen. Izradite novi račun e-pošte od postavke&gt; E-pošta&gt; Račun e-pošte
apps/frappe/frappe/config/core.py +7,Documents,Dokumenti
DocType: Email Flag Queue,Is Completed,je završena
apps/frappe/frappe/www/me.html +22,Edit Profile,Uredi profil
@@ -1596,7 +1603,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi
myfield
eval:doc.myfield=='My Value'
eval:doc.age&gt;18",Ovo polje će se pojaviti samo ako je FIELDNAME ovdje definirana je vrijednost ili pravila su pravi (primjeri): myfield eval: doc.myfield == &quot;Moj Vrijednost&quot; eval: doc.age&gt; 18
apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Danas
apps/frappe/frappe/public/js/frappe/form/control.js +764,Today,Danas
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Nakon što ste ovo postavili, korisnici će moći samo pristupiti dokumentima (npr. blog post) gdje veza postoji (npr. Blogger)."
DocType: Error Log,Log of Scheduler Errors,Zapis grešaka pri planskim radnjama
DocType: User,Bio,Bio
@@ -1655,7 +1662,7 @@ DocType: Print Format,Js,Js
apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Odaberite format ispisa
apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Kratki uzoraka s tipkovnice mogu se lako pogoditi
DocType: Portal Settings,Portal Menu,Portal Izbornik
apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Duljina {0} mora biti između 1 i 1000
apps/frappe/frappe/model/db_schema.py +115,Length of {0} should be between 1 and 1000,Duljina {0} mora biti između 1 i 1000
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,Pretraga za sve
DocType: DocField,Print Hide,Sakrij ispis
apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,Unesite vrijednost
@@ -1693,7 +1700,7 @@ DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Nanesite ovo p
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Bit će vaš ID za prijavu
apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Izgradite Prijavite
DocType: Note,Notify users with a popup when they log in,Obavijesti korisnicima popup kad se prijavite
apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} ne postoji , odaberite novu metu za spajanje"
apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} ne postoji , odaberite novo odredište za spajanje"
apps/frappe/frappe/www/search.py +10,"Search Results for ""{0}""",Rezultati pretraživanja za &quot;{0}&quot;
DocType: GSuite Settings,Google Credentials,Google vjerodajnice
apps/frappe/frappe/core/page/user_permissions/user_permissions.py +67,Cannot set permission for DocType: {0} and Name: {1},Ne mogu postaviti dopuštenje za DOCTYPE : {0} i ime : {1}
@@ -1708,8 +1715,7 @@ apps/frappe/frappe/model/document.py +564,Cannot change docstatus from 0 to 2,Ne
DocType: User Permission for Page and Report,Roles Permission,uloge Dopuštenje
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Ažuriraj
DocType: Error Snapshot,Snapshot View,Snimak Pogledaj
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Molimo spremite Newsletter prije slanja
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} godina
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +101,Please save the Newsletter before sending,Molimo spremite Newsletter prije slanja
apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Opcije mora bitivaljana DOCTYPE za polje {0} je u redu {1}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Uredi Nekretnine
DocType: Patch Log,List of patches executed,Popis izvršenih zakrpa
@@ -1727,7 +1733,7 @@ apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Ažuriranje za
DocType: Workflow State,trash,smeće
DocType: System Settings,Older backups will be automatically deleted,Stariji sigurnosne kopije automatski će se izbrisati
DocType: Event,Leave blank to repeat always,Ostavite prazno ako se uvijek ponavlja
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +192,Confirmed,Potvrđen
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,Confirmed,Potvrđen
DocType: Event,Ends on,Završava
DocType: Payment Gateway,Gateway,Prolaz
apps/frappe/frappe/public/js/frappe/form/linked_with.js +116,Not enough permission to see links,Nema dovoljno dopuštenja za prikazivanje veza
@@ -1758,7 +1764,6 @@ DocType: Contact,Purchase Manager,Upravitelj nabave
DocType: Custom Script,Sample,Uzorak
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Nekategorizirani Tagovi
DocType: Event,Every Week,Svaki tjedan
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,Račun e-pošte nije postavljen. Izradite novi račun e-pošte od postavke&gt; E-pošta&gt; Račun e-pošte
apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Kliknite ovdje kako bi provjerili svoje korištenja ili nadograditi na višu planu
DocType: Custom Field,Is Mandatory Field,Je Obvezno polje
DocType: User,Website User,Korisnik web stranice
@@ -1766,7 +1771,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +10,Not equals,n
DocType: Integration Request,Integration Request Service,Integracija zahtjev za uslugu
DocType: Website Script,Script to attach to all web pages.,Skripta se priključiti na svim web stranicama.
DocType: Web Form,Allow Multiple,Dopusti više
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +40,Assign,Dodijeliti
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +44,Assign,Dodijeliti
apps/frappe/frappe/config/setup.py +102,Import / Export Data from .csv files.,Uvoz / izvoz podataka iz .csv datoteka
DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Pošaljite samo evidencije ažurirane u zadnjih X sati
DocType: Communication,Feedback,Povratna veza
@@ -1846,7 +1851,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,ostali
apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Molimo spremite prije postavljanja.
apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Dodano {0} ({1})
apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Zadana tema je postavljena na {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Tip polja ne može se mijenjati iz {0} u {1} u redku {2}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +325,Fieldtype cannot be changed from {0} to {1} in row {2},Tip polja ne može se mijenjati iz {0} u {1} u redku {2}
apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,Ovlasti uloge
DocType: Help Article,Intermediate,srednji
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Može Pročitajte
@@ -1861,9 +1866,9 @@ apps/frappe/frappe/core/doctype/user/user.js +42,Refreshing...,Osvježavanje ...
DocType: Event,Starts on,Počinje na
DocType: System Settings,System Settings,Postavke sustava
apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Sesija započela nije uspjela
apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Ova e-mail je poslan na {0} i kopiju prima {1}
apps/frappe/frappe/email/queue.py +470,This email was sent to {0} and copied to {1},Ova e-mail je poslan na {0} i kopiju prima {1}
DocType: Workflow State,th,og
apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Stvaranje nove {0}
apps/frappe/frappe/public/js/frappe/form/control.js +1517,Create a new {0},Stvaranje nove {0}
DocType: Email Rule,Is Spam,Spam
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Prijavi {0}
apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Otvori {0}
@@ -1875,12 +1880,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon a
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,Duplikat
DocType: Newsletter,Create and Send Newsletters,Kreiraj i pošalji bilten
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date must be before To Date,Od datuma mora biti prije do danas
DocType: Address,Andaman and Nicobar Islands,Andaman i Nicobar Islands
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +216,GSuite Document,GSuite dokument
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +29,Please specify which value field must be checked,Navedite što vrijednost polja moraju biti provjereni
apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"""Parent"" signifies the parent table in which this row must be added","""Nadređen"" označava nadređenu tablicu u koju se ovaj redak mora dodati."
DocType: Website Theme,Apply Style,Primijeni stil
DocType: Feedback Request,Feedback Rating,povratne informacije ocjene
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared With,Zajednička S
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Zajednička S
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Postavljanje&gt; Upravitelj dozvola korisnika
DocType: Help Category,Help Articles,Članci pomoći
,Modules Setup,Postavke modula
apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Vrsta:
@@ -1911,7 +1918,7 @@ DocType: OAuth Client,App Client ID,Aplikacija Client ID
DocType: Kanban Board,Kanban Board Name,Naziv Kanban zajednica
DocType: Email Alert Recipient,"Expression, Optional","Expression, fakultativno"
DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,Kopirajte i zalijepite ovaj kôd u prazne Code.gs u svoj projekt na adresi script.google.com
apps/frappe/frappe/email/queue.py +456,This email was sent to {0},Ova e-mail je poslan na {0}
apps/frappe/frappe/email/queue.py +472,This email was sent to {0},Ova e-mail je poslan na {0}
DocType: DocField,Remember Last Selected Value,Sjeti se posljednja odabrana vrijednost
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +334,Please select Document Type,Odaberite vrstu dokumenta
DocType: Email Account,Check this to pull emails from your mailbox,Provjerite to povući e-pošte iz poštanskog sandučića
@@ -1926,6 +1933,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,Opci
DocType: Feedback Trigger,Email Field,E-mail polje
apps/frappe/frappe/www/update-password.html +59,New Password Required.,Potrebna je nova lozinka.
apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} podijelio ovaj dokument sa {1}
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Postavke&gt; Korisnik
DocType: Website Settings,Brand Image,Slika marke
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Postavke gornje navigacijske trake, podnožja i loga."
@@ -1993,8 +2001,8 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa
apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Nije moguće pročitati format datoteke za {0}
DocType: Auto Email Report,Filter Data,Filtriranje podataka
apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Dodaj oznaku
apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Molimo priložite datoteku prva.
apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Bilo je nekih pogrešaka postavljanje ime, kontaktirajte administratora"
apps/frappe/frappe/public/js/frappe/form/control.js +1335,Please attach a file first.,Molimo priložite datoteku prva.
apps/frappe/frappe/model/naming.py +174,"There were some errors setting the name, please contact the administrator","Bilo je nekih pogrešaka postavljanje ime, kontaktirajte administratora"
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Dolazni račun e-pošte nije točan
apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \
Please enter a valid email address so that we can get back.",Čini se da ste napisali svoje ime umjesto svoje e-pošte. \ Unesite valjanu adresu e-pošte kako bismo se mogli vratiti.
@@ -2046,7 +2054,6 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N
DocType: Custom DocPerm,Create,Stvoriti
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Nevažeći filter: {0}
DocType: Email Account,no failed attempts,nema neuspjelih pokušaja
apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,Nije pronađen zadani predložak adrese. Izradite novi iz Postavke&gt; Ispis i Branding&gt; Predložak adrese.
DocType: GSuite Settings,refresh_token,refresh_token
DocType: Dropbox Settings,App Access Key,App Pristup Ključ
DocType: OAuth Bearer Token,Access Token,Pristupni token
@@ -2072,6 +2079,7 @@ apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl +
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Napravite novi {0}
apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,Nova e-pošte računa
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +28,Document Restored,Dokument je obnovljen
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +203,You can't set 'Options' for field {0},Ne možete postaviti &#39;Opcije&#39; za polje {0}
apps/frappe/frappe/core/page/usage_info/usage_info.html +86,Size (MB),Veličina (MB)
DocType: Help Article,Author,Autor
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +10,Resume Sending,Nastavi Slanje
@@ -2081,7 +2089,7 @@ DocType: Print Settings,Monochrome,Jednobojna slika
DocType: Address,Purchase User,Korisnik nabave
DocType: Workflow,"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.","Različita ""Stanja"", ovaj dokument može postojati u ""Otvoreno"", ""Na čekanju za odobrenje"", itd."
apps/frappe/frappe/utils/verified_command.py +43,This link is invalid or expired. Please make sure you have pasted correctly.,Ovaj link je valjan ili istekla. Molimo provjerite jeste li ispravno zalijepili.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> uspješno pretplatu ovog popisa.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +136,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> uspješno pretplatu ovog popisa.
DocType: Web Page,Slideshow,Slideshow
apps/frappe/frappe/contacts/doctype/address_template/address_template.py +31,Default Address Template cannot be deleted,Zadani predložak adrese ne može se izbrisati
DocType: Contact,Maintenance Manager,Upravitelj održavanja
@@ -2102,7 +2110,7 @@ apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a r
DocType: System Settings,Apply Strict User Permissions,Primijte stroge korisničke dozvole
DocType: DocField,Allow Bulk Edit,Dopusti Skupno uređivanje
DocType: Blog Post,Blog Post,Blog članak
apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Napredna pretraga
apps/frappe/frappe/public/js/frappe/form/control.js +1527,Advanced Search,Napredna pretraga
apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Upute poništenja zaporke su poslane na e-mail
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \
higher levels for field level permissions.","Razina 0 odnosi se na dozvole na razini dokumenta, \ viših razina za dopuštenja na razini polja."
@@ -2127,13 +2135,13 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new re
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Pretraživanje
DocType: Currency,Fraction,Frakcija
DocType: LDAP Settings,LDAP First Name Field,LDAP Ime Polje
apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Odaberi jednu od postojećih privitke
apps/frappe/frappe/public/js/frappe/form/control.js +1085,Select from existing attachments,Odaberi jednu od postojećih privitke
DocType: Custom Field,Field Description,Opis polja
apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Ne postavljajte ime preko Prompt-a
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,E-pošta
DocType: Auto Email Report,Filters Display,filteri za prikaz
DocType: Website Theme,Top Bar Color,Najbolje bar Boja
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Do you want to unsubscribe from this mailing list?,Želite li se odjaviti s ovog popisa primatelja?
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Do you want to unsubscribe from this mailing list?,Želite li se odjaviti s ovog popisa primatelja?
DocType: Address,Plant,Biljka
apps/frappe/frappe/core/doctype/communication/communication.js +65,Reply All,Odgovori svima
DocType: DocType,Setup,Postavke
@@ -2176,7 +2184,7 @@ DocType: User,Send Notifications for Transactions I Follow,Pošalji obavijesti o
apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Ne može se postaviti Potvrdi, Odustani, Izmijeni bez zapisivanja"
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Jeste li sigurni da želite izbrisati privitak?
apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} <a href=""#Form/{0}/{1}"">{1}</a> is linked with {2} <a href=""#Form/{2}/{3}"">{3}</a>","Ne može se izbrisati ili otkazati, jer {0} <a href=""#Form/{0}/{1}"">{1}</a> povezan s {2} <a href=""#Form/{2}/{3}"">{3}</a>"
apps/frappe/frappe/__init__.py +1062,Thank you,Hvala
apps/frappe/frappe/__init__.py +1070,Thank you,Hvala
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Spašavanje
DocType: Print Settings,Print Style Preview,Prikaz stila ispisa
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
@@ -2191,7 +2199,7 @@ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Dodaj pr
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Sr Ne
,Role Permissions Manager,Upravitelj ovlastima uloga
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Ime novog ispisnog oblika
apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Vedro Prilog
apps/frappe/frappe/public/js/frappe/form/control.js +1087,Clear Attachment,Vedro Prilog
apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Obavezno:
,User Permissions Manager,Upravitelj korisničkih ovlasti
DocType: Property Setter,New value to be set,Nova vrijednost za postaviti
@@ -2216,7 +2224,7 @@ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment C
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,Očistiti zapise pogrešaka
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,Molimo odaberite ocjenu
DocType: Email Account,Notify if unreplied for (in mins),Obavijesti ako Neodgovoreno za (u minutama)
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,Prije 2 dana
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +501,2 days ago,Prije 2 dana
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Kategorizacija blogu.
DocType: Workflow State,Time,Vrijeme
DocType: DocField,Attach,Pričvrstiti
@@ -2232,6 +2240,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Backup V
DocType: GSuite Templates,Template Name,Naziv predloška
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,Nova vrsta dokumenta
DocType: Custom DocPerm,Read,Pročitaj
DocType: Address,Chhattisgarh,Chhattisgarh
DocType: Role Permission for Page and Report,Role Permission for Page and Report,Uloga Odobrenje za stranicu i Izvješće
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Poravnajte vrijednost
apps/frappe/frappe/www/update-password.html +14,Old Password,Stara zaporka
@@ -2279,7 +2288,7 @@ apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your ema
can get back to you. Thanks!","Unesite obje e-poštu i poruke, tako da smo \
mogu dobiti natrag na vas. Hvala!"
apps/frappe/frappe/email/smtp.py +170,Could not connect to outgoing email server,Nije se moguće spojiti na odlazni e-mail poslužitelj
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +162,Thank you for your interest in subscribing to our updates,Hvala vam na interesu za pretplate na naše ažuriranja
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Thank you for your interest in subscribing to our updates,Hvala vam na interesu za pretplate na naše ažuriranja
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Custom Column,Prilagođena Stupac
DocType: Workflow State,resize-full,resize-pun
DocType: Workflow State,off,isključen
@@ -2342,7 +2351,7 @@ DocType: Address,Telangana,Telangana
apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Zadana za {0} mora biti opcija
DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategorija
DocType: User,User Image,Upute slike
apps/frappe/frappe/email/queue.py +289,Emails are muted,E-mailovi su prigušeni
apps/frappe/frappe/email/queue.py +304,Emails are muted,E-mailovi su prigušeni
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + Gore
DocType: Website Theme,Heading Style,Tarifni Stil
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +183,A new Project with this name will be created,Novi projekt s ovim imenom će se stvoriti
@@ -2559,7 +2568,6 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,zvono
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Pogreška u upozorenju e-poštom
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Podijelite ovaj dokument sa
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Postavljanje&gt; Upravitelj dozvola korisnika
apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} Ne može biti čvor nultog stupnja budući da ima slijednike
DocType: Communication,Info,Info
apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Dodaj privitak
@@ -2614,7 +2622,7 @@ apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,Print Form
DocType: Email Alert,Send days before or after the reference date,Pošalji dana prije ili nakon referentnog datuma
DocType: User,Allow user to login only after this hour (0-24),Dopustite korisniku da se prijavi tek nakon ovoliko sati (0-24)
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,Vrijednost
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +165,Click here to verify,Kliknite ovdje da biste potvrdili
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +166,Click here to verify,Kliknite ovdje da biste potvrdili
apps/frappe/frappe/utils/password_strength.py +178,Predictable substitutions like '@' instead of 'a' don't help very much.,Predvidivim zamjene kao što su &quot;@&quot; umjesto &quot;a&quot; ne pomažu puno.
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Dodjeljuje Me
apps/frappe/frappe/utils/data.py +462,Zero,Nula
@@ -2626,6 +2634,7 @@ DocType: ToDo,Priority,Prioritet
DocType: Email Queue,Unsubscribe Param,Otkažite pretplatu Param
DocType: Auto Email Report,Weekly,Tjedni
DocType: Communication,In Reply To,U odgovoru na
apps/frappe/frappe/contacts/doctype/address/address.py +189,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,Nije pronađen zadani predložak adrese. Izradite novi iz Postavke&gt; Ispis i Branding&gt; Predložak adrese.
DocType: DocType,Allow Import (via Data Import Tool),Dopustite uvoz (putem podataka alat za uvoz)
apps/frappe/frappe/templates/print_formats/standard_macros.html +30,Sr,sr
DocType: DocField,Float,Plutati
@@ -2716,7 +2725,6 @@ apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Nevažeća granica {0
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Popis tipova dokumenta
DocType: Event,Ref Type,Ref. Tip
apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Ako ste upload nove rekorde, napustiti ""ime"" (ID) stupac prazan."
DocType: Address,Chattisgarh,Chhattisgarh
apps/frappe/frappe/config/core.py +47,Errors in Background Events,Pogreške u pozadini Događanja
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,Broj stupaca
DocType: Workflow State,Calendar,Kalendar
@@ -2748,7 +2756,7 @@ apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Raspor
DocType: Integration Request,Remote,Daljinski
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Izračunaj
apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Odaberite vrstu dokumenta najprije
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Potvrdite vašu e-mail
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +174,Confirm Your Email,Potvrdite vašu e-mail
apps/frappe/frappe/www/login.html +42,Or login with,Ili se prijavite sa
DocType: Error Snapshot,Locals,Mještani
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Dostaviti putem {0} na {1}: {2}
@@ -2765,7 +2773,7 @@ DocType: Web Page,Web Page,Web stranica
DocType: Blog Category,Blogger,Bloger
apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},&quot;U globalnom pretraživanju&quot; nije dopušteno za vrstu {0} u retku {1}
apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Pogledajte popis
apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Datum mora biti u obliku: {0}
apps/frappe/frappe/public/js/frappe/form/control.js +810,Date must be in format: {0},Datum mora biti u obliku: {0}
DocType: Workflow,Don't Override Status,Ne Brisanje statusa
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Molimo dati ocjenu.
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Zahtjev ocjena
@@ -2798,7 +2806,7 @@ DocType: Custom DocPerm,Report,Prijavi
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Iznos mora biti veći od 0.
apps/frappe/frappe/desk/reportview.py +107,{0} is saved,{0} se sprema
apps/frappe/frappe/core/doctype/user/user.py +327,User {0} cannot be renamed,Korisnik {0} se ne može preimenovati
apps/frappe/frappe/model/db_schema.py +107,Fieldname is limited to 64 characters ({0}),FIELDNAME je ograničena na 64 znakova ({0})
apps/frappe/frappe/model/db_schema.py +108,Fieldname is limited to 64 characters ({0}),FIELDNAME je ograničena na 64 znakova ({0})
apps/frappe/frappe/config/desk.py +59,Email Group List,Popis e-pošte grupe
DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],Ikona datoteke s ekstenzijom ICO. Treba biti 16 x 16 px. Generira pomoću favicon generator. [favicon-generator.org]
DocType: Auto Email Report,Format,Format
@@ -2876,7 +2884,7 @@ DocType: Website Settings,Title Prefix,Naslov Prefiks
DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Obavijesti i rasuti mailovi biti će poslani sa ovog odlaznog poslužitelja.
DocType: Workflow State,cog,vršak
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on Migrate,Sinkronizacija na migriraju
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Trenutno Pregled
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Currently Viewing,Trenutno Pregled
DocType: DocField,Default,Zadano
apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} je dodano
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Potražite &quot;{0}&quot;
@@ -2936,7 +2944,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +771,Report was
DocType: Print Settings,Print Style,Stil ispisa
apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,Nije povezano s bilo kojim zapisom
DocType: Custom DocPerm,Import,Uvoz
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +178,Row {0}: Not allowed to enable Allow on Submit for standard fields,Red {0}: Nije dopušteno da se omogući Omogućite na Pošalji na standardne polja
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +180,Row {0}: Not allowed to enable Allow on Submit for standard fields,Red {0}: Nije dopušteno da se omogući Omogućite na Pošalji na standardne polja
apps/frappe/frappe/config/setup.py +100,Import / Export Data,Uvoz / izvoz podataka
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,Standardni uloge ne mogu se preimenovati
DocType: Communication,To and CC,Da i CC
@@ -2963,7 +2971,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo
DocType: Auto Email Report,Filter Meta,Filter Metu
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Tekst koji će biti prikazani na vezu na web stranicu, ako je taj oblik ima web stranicu. Link put će se automatski generira na temelju `page_name` i` parent_website_route`"
DocType: Feedback Request,Feedback Trigger,povratne informacije Trigger
apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Molimo postavite {0} Prvi
apps/frappe/frappe/public/js/frappe/form/control.js +1741,Please set {0} first,Molimo postavite {0} Prvi
DocType: Unhandled Email,Message-id,Id poruke
DocType: Patch Log,Patch,Patch
DocType: Async Task,Failed,Neuspješno


+ 73
- 65
frappe/translations/hu.csv Datei anzeigen

@@ -14,8 +14,9 @@ apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,"B
DocType: User,Facebook Username,Facebook Felhasználónév
DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Megjegyzés: Több szakasz lesz megengedve a mobil eszköz esetén
apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Email beérkező üzenetek bekapcsolva ehhez a felhasználóhoz {users}
apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Nem lehet elküldeni az e-mailt. Átléphette ezt a küldési limt felső határt: {0} az e-mailekre ebben a hónapban.
apps/frappe/frappe/email/queue.py +225,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Nem lehet elküldeni az e-mailt. Átléphette ezt a küldési limt felső határt: {0} az e-mailekre ebben a hónapban.
apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Véglegesen Küldje {0}?
apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,Fájlok biztonsági mentése
DocType: Address,County,Megye
DocType: Workflow,If Checked workflow status will not override status in list view,"Ha be van jelölve, a munkafolyamat állapota nem hatálytalanítja az állapotát, listanézetben"
apps/frappe/frappe/client.py +280,Invalid file path: {0},Érvénytelen fájl elérési út: {0}
@@ -80,10 +81,10 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Beállít
apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Rendszergazda bejelentkezve
DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kapcsolat lehetőségek, mint a ""Vásárlói érdeklődések, Támogatási igények"" stb mindegyiket új sorba vagy vesszővel elválasztva."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Letöltés
apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Beszúr
apps/frappe/frappe/public/js/frappe/form/control.js +1979,Insert,Beszúr
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Válassza ki a {0}
DocType: Print Settings,Classic,Klasszikus
DocType: Desktop Icon,Color,Szín
DocType: DocField,Color,Szín
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +54,For ranges,Tartományokhoz
DocType: Workflow State,indent-right,behúzás-jobbra
DocType: Has Role,Has Role,Van szerepe
@@ -100,7 +101,7 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To impor
DocType: DocType,Default Print Format,Alapértelmezett nyomtatási formátum
DocType: Workflow State,Tags,Címkék
apps/frappe/frappe/public/js/frappe/form/workflow.js +33,None: End of Workflow,Nincs: Munkafolyamat vége
apps/frappe/frappe/model/db_schema.py +346,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} mező nem beállítható egyedülállónak ebben {1}, mert már van néhány nem egyedi érték"
apps/frappe/frappe/model/db_schema.py +347,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} mező nem beállítható egyedülállónak ebben {1}, mert már van néhány nem egyedi érték"
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +47,Document Types,Dokumentum típusok
DocType: Address,Jammu and Kashmir,Dzsammu és Kasmír
DocType: Workflow,Workflow State Field,Munkafolyamat állapotmező
@@ -231,7 +232,7 @@ DocType: Workflow,Transition Rules,Átvezetési szabályok
apps/frappe/frappe/core/doctype/report/report.js +11,Example:,Példa:
DocType: Workflow,Defines workflow states and rules for a document.,Meghatározza a munkafolyamat állapotokat és szabályokat a dokumentumhoz.
DocType: Workflow State,Filter,Szűrő
apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},"A {0} mezőnév nem tartalmazhat speciális karaktereket, mint a(z) {1}"
apps/frappe/frappe/model/db_schema.py +564,Fieldname {0} cannot have special characters like {1},"A {0} mezőnév nem tartalmazhat speciális karaktereket, mint a(z) {1}"
apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Frissítsen sok értéket egyszerre.
apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,"Hiba: A dokumentum módosításra került, miután megnyitotta"
apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} kijelentkezett: {1}
@@ -260,7 +261,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Kérje le a
apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.",Az előfizetése lejárt ekkor: {0}. Megújításhoz {1}.
DocType: Workflow State,plus-sign,plusz-jel
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Telepítés már teljes
apps/frappe/frappe/__init__.py +889,App {0} is not installed,Alkalm.: {0} nincs telepítve
apps/frappe/frappe/__init__.py +897,App {0} is not installed,Alkalm.: {0} nincs telepítve
DocType: Workflow State,Refresh,Frissítés
DocType: Event,Public,Nyilvános
apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Nincs itt semmi látnivaló
@@ -339,7 +340,6 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Fejszöveg szerkesztése
DocType: File,File URL,Fájl URL
DocType: Version,Table HTML,Táblázat HTML
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> Nincs találat a ' </p>
apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Előfizetők hozzáadása
apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,"A mai nap eseményei, teendői"
DocType: Email Alert Recipient,Email By Document Field,Email dokumentum mezőből
@@ -404,7 +404,6 @@ DocType: Desktop Icon,Link,Link
apps/frappe/frappe/utils/file_manager.py +96,No file attached,Nincs csatolt fájl
DocType: Version,Version,Verzió
DocType: User,Fill Screen,Képernyő kitöltése
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,Kérjük beállítás alapértelmezett e-mail fiók a Beállítás&gt; E-mail&gt; E-mail fiók
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Nem lehet megjeleníteni ezt a jelentés fát, hiányzó adatok miatt. A legvalószínűbb, hogy éppen kiszűrt a jogosultságok miatt."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Fájl kiválasztása
apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Feltöltésen keresztüli szerkesztés
@@ -474,9 +473,9 @@ DocType: User,Reset Password Key,Jelszó visszaállítása Key
DocType: Email Account,Enable Auto Reply,Automatikus válasz engedélyezése
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Nem megtekintett
DocType: Workflow State,zoom-in,nagyítás
apps/frappe/frappe/email/queue.py +219,Unsubscribe from this list,Leiratkozni a listáról
apps/frappe/frappe/email/queue.py +234,Unsubscribe from this list,Leiratkozni a listáról
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Reference DocType and Reference Name are required,Referencia DocType és Referencia neve van szükség
apps/frappe/frappe/utils/jinja.py +35,Syntax error in template,Szintaktikai hiba a sablonban
apps/frappe/frappe/utils/jinja.py +51,Syntax error in template,Szintaktikai hiba a sablonban
DocType: DocField,Width,Szélesség
DocType: Email Account,Notify if unreplied,"Értesítés, ha: megválaszolatlan"
DocType: System Settings,Minimum Password Score,Minimum jelszó pontszám
@@ -560,6 +559,7 @@ DocType: Custom Field,Select the label after which you want to insert new field.
DocType: User,Last Login,Utolsó belépés
apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},A mezőnév szükséges a(z) {0} sorában
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Oszlop
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,Állítsa be az alapértelmezett e-mail fiókot a Beállítás&gt; E-mail&gt; E-mail fiók beállításával
DocType: Custom Field,Adds a custom field to a DocType,Hozzáad egy egyedi mezőt a DocType-hoz
DocType: File,Is Home Folder,Ez a home mappa
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} nem érvényes e-mail cím
@@ -567,7 +567,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +733,Select atleast 1 reco
apps/frappe/frappe/core/doctype/has_role/has_role.py +13,User '{0}' already has the role '{1}',Felhasználó '{0}' már megkapta ezt a Beosztást: '{1}'
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,Feltöltés és szinkronizálás
apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Megosztva vele {0}
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe,Leiratkozás
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +132,Unsubscribe,Leiratkozás
DocType: Communication,Reference Name,Hivatkozott tétel
apps/frappe/frappe/public/js/frappe/toolbar.js +30,Chat Support,Csevegés támogatás
DocType: Error Snapshot,Exception,Kivétel
@@ -585,7 +585,7 @@ DocType: Email Group,Newsletter Manager,Hírlevél kezelő
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,1. lehetőség
apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} {1}
apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Kérés közbeni hiba napló.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} sikeresen hozzá adta az E-mail csoporthoz.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +194,{0} has been successfully added to the Email Group.,{0} sikeresen hozzá adta az E-mail csoporthoz.
DocType: Address,Uttar Pradesh,Uttar Pradesh
DocType: Address,Pondicherry,Pondicherry
apps/frappe/frappe/public/js/frappe/upload.js +364,Make file(s) private or public?,Privát vagy nyilvános fájl(ok) készítése?
@@ -616,7 +616,7 @@ DocType: Portal Settings,Portal Settings,Portál Beállítások
DocType: Web Page,0 is highest,0 a legnagyobb
apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,"Biztos benne, hogy szeretné összekapcsolni ezt a kommunikációs {0}?"
apps/frappe/frappe/www/login.html +104,Send Password,Küldje a Jelszót
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +45,Attachments,Mellékletek
DocType: Email Queue,Attachments,Mellékletek
apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,Nincs jogosultsága a dokumentum eléréséhez
DocType: Language,Language Name,Nyelv neve
DocType: Email Group Member,Email Group Member,Email csoport tagja
@@ -646,7 +646,7 @@ apps/frappe/frappe/utils/password_strength.py +78,Try to use a longer keyboard p
DocType: Feedback Trigger,Check Communication,Ellenőrizze a kommunikációt
DocType: Address,Rajasthan,Rajasthan
apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Report Builder jelentéseket közvetlenül irányítja a jelentést készítő. Semmi köze.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,"Kérjük, ellenőrizze az e-mail címét"
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +164,Please verify your Email Address,"Kérjük, ellenőrizze az e-mail címét"
apps/frappe/frappe/model/document.py +903,none of,egyik sem
apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Küldj egy másolatot részemre
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Töltse fel a felhasználói engedélyeket
@@ -657,7 +657,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Si
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban pult {0} nem létezik.
apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} jelenleg betekint ebbe a dokumentumba
DocType: ToDo,Assigned By Full Name,Hozzárendelt teljes nevén
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} frissített
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} frissített
apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Jelentés nem lehet beállítani a Single típusú
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} napja
DocType: Email Account,Awaiting Password,Várakozás jelszóra
@@ -682,7 +682,7 @@ DocType: Workflow State,Stop,Megáll
DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,"Link a megnyitni kívánt oldalra. Hagyja üresen, ha azt szeretné, hogy ez egy szülő csoport legyen."
DocType: DocType,Is Single,Ez egyedi
apps/frappe/frappe/core/doctype/user/user.py +720,Sign Up is disabled,Regisztráció letiltott
apps/frappe/frappe/email/queue.py +278,{0} has left the conversation in {1} {2},{0} elhagyta a párbeszédet itt {1} {2}
apps/frappe/frappe/email/queue.py +293,{0} has left the conversation in {1} {2},{0} elhagyta a párbeszédet itt {1} {2}
DocType: Blogger,User ID of a Blogger,Felhasználói azonosító egy Bloggernek
apps/frappe/frappe/core/doctype/user/user.py +287,There should remain at least one System Manager,Maradnia kell legalább egy Rendszergazdának
DocType: GSuite Settings,Authorization Code,Jóváhagyó kód
@@ -728,6 +728,7 @@ DocType: Event,Event,Esemény
apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","{0}, {1} írta:"
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"Nem lehet törölni az alapértelmezett mezőt. Elrejtheti, ha akarja"
DocType: Top Bar Item,For top bar,A felső sávhoz
apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,Beérkezett a biztonsági másolat készítéséhez. E-mailt fog kapni a letöltési hivatkozással
apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Nem sikerült azonosítani: {0}
DocType: Address,Address,Cím
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +3,Payment Failed,Fizetés meghiúsult
@@ -752,13 +753,13 @@ DocType: Web Form,Allow Print,Nyomtatás engedélyezése
apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Nincs alkalmazás telepítve
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,"Jelölje meg a mezőt, mint Kötelezőt"
DocType: Communication,Clicked,Rákattintott
apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Nincs engedélye a &#39;{0}&#39; {1}
apps/frappe/frappe/public/js/legacy/form.js +950,No permission to '{0}' {1},Nincs engedélye a &#39;{0}&#39; {1}
DocType: User,Google User ID,Google felhasználói azonosító
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Ütemezett küldeni
DocType: DocType,Track Seen,Követés megtekintve
apps/frappe/frappe/desk/form/utils.py +55,This method can only be used to create a Comment,"Ez a módszer csak akkor használható, ha egy hozzászólást hoz létre"
DocType: Event,orange,narancs
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,No {0} found,{0} sz. található
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +558,No {0} found,{0} sz. található
apps/frappe/frappe/config/setup.py +242,Add custom forms.,Egyéni űrlapok hozzáadása.
apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} ebben: {2}
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +419,submitted this document,benyújtotta ezt a dokumentumot
@@ -788,6 +789,7 @@ DocType: Newsletter Email Group,Newsletter Email Group,Hírlevél E-mail csoport
DocType: Dropbox Settings,Integrations,Integrációk
DocType: DocField,Section Break,Szakasztörés
DocType: Address,Warehouse,Raktár
DocType: Address,Other Territory,Egyéb területek
,Messages,Üzenetek
apps/frappe/frappe/desk/page/applications/applications.js +49,Portal,Portál
DocType: Email Account,Use Different Email Login ID,Használjon különböző e-mail bejelentkezési azonosítót
@@ -818,6 +820,7 @@ apps/frappe/frappe/utils/data.py +556,1 month ago,1 hónapja
DocType: Contact,User ID,Felhasználó ID
DocType: Communication,Sent,Elküldött
DocType: Address,Kerala,Kerala
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} év (ek) ezelőtt
DocType: File,Lft,Lft
DocType: User,Simultaneous Sessions,Egyidejű gyűlés
DocType: OAuth Client,Client Credentials,Ügyfél bizonyítványok
@@ -834,7 +837,7 @@ DocType: Email Queue,Unsubscribe Method,Leiratkozási módszer
DocType: GSuite Templates,Related DocType,Kapcsolódó DocType
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Szerkeszteni a tartalom felvételéhez
apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Válasszon nyelveket
apps/frappe/frappe/__init__.py +509,No permission for {0},Nincs engedélye erre {0}
apps/frappe/frappe/__init__.py +517,No permission for {0},Nincs engedélye erre {0}
DocType: DocType,Advanced,Fejlett
apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Úgy tűnik API kulcs vagy API Secret rossz !!!
apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Referencia: {0} {1}
@@ -845,7 +848,8 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P
DocType: Email Account,Yahoo Mail,Yahoo Mail
apps/frappe/frappe/limits.py +75,Your subscription will expire tomorrow.,Az előfizetése holnap jár le.
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +483,Saved!,Mentve!
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,Madám
apps/frappe/frappe/public/js/frappe/form/control.js +729,{0} is not a valid hex color,{0} nem érvényes hex szín
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,Hölgy
apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Frissítve {0}: {1}
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,Fő adat
DocType: DocType,User Cannot Create,Felhasználó nem hozhatja létre
@@ -872,7 +876,7 @@ DocType: Report,Disabled,Tiltva
DocType: Workflow State,eye-close,szem-bezárt
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth Szolgáltató beállítások
apps/frappe/frappe/config/setup.py +254,Applications,Alkalmazások
apps/frappe/frappe/public/js/frappe/request.js +347,Report this issue,Jelentse ezt a Problémát
apps/frappe/frappe/public/js/frappe/request.js +349,Report this issue,Jelentse ezt a Problémát
apps/frappe/frappe/public/js/frappe/form/save.js +79,Name is required,Név szükséges
DocType: Custom Script,Adds a custom script (client or server) to a DocType,"Hozzáteszi egyéni scriptet (kliens vagy szerver), egy DocType-hoz"
DocType: Address,City/Town,Város/település
@@ -966,6 +970,7 @@ DocType: Currency,**Currency** Master,** Valuta ** mester
DocType: Email Account,No of emails remaining to be synced,"Fennmaradó, szinkronizálandó emailek száma"
apps/frappe/frappe/public/js/frappe/upload.js +203,Uploading,Feltöltés
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,"Kérjük, mentse a dokumentumot, mielőtt hozzárendelné"
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,Kattintson ide a hibák és javaslatok közzétételéhez
DocType: Website Settings,Address and other legal information you may want to put in the footer.,Cím és más hivatalos információkat érdemes lehet a láblécbe tenni.
DocType: Website Sidebar Item,Website Sidebar Item,Weboldal oldalsáv tétel
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +44,{0} records updated,{0} rekord frissítve
@@ -979,12 +984,10 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,világos
apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,A napi eseményeknek ugyanazon a napon kell befejeződniük.
DocType: Communication,User Tags,Felhasználó címkéi
apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Képek betöltése..
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Beállítás&gt; Felhasználói
DocType: Workflow State,download-alt,download-alt
apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},{0} alk. letöltése
DocType: Communication,Feedback Request,Visszajelzés kérése
apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,Következő területeken hiányoznak:
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Experimental Feature,Kísérleti tulajdonság
apps/frappe/frappe/www/login.html +30,Sign in,Bejelentkezés
DocType: Web Page,Main Section,Fő rész
DocType: Page,Icon,Ikon
@@ -1086,7 +1089,7 @@ DocType: Customize Form,Customize Form,Űrlap testreszabása
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +104,Mandatory field: set role for,Kötelező mező: szerep beállítás hozzá
DocType: Currency,A symbol for this currency. For e.g. $,A szimbólum erre a pénznemre. Pl.: $$
apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,Frappé Framework
apps/frappe/frappe/model/naming.py +174,Name of {0} cannot be {1},Ez a név {0} nem lehet {1}
apps/frappe/frappe/model/naming.py +180,Name of {0} cannot be {1},Ez a név {0} nem lehet {1}
apps/frappe/frappe/config/setup.py +46,Show or hide modules globally.,Modulok mutatása vagy rejtése rendszerszinten.
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,Dátumtól
apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,Sikerült
@@ -1107,7 +1110,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +308,Add A New
apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js +3,See on Website,Lásd a honlapon
DocType: Workflow Transition,Next State,Következő állapot
DocType: User,Block Modules,Zárolt modulok
apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Visszatérve hossz {0} &#39;{1}&#39; a &#39;{2}&#39;; Beállítása hosszában {3} okoz csonkolást adatok.
apps/frappe/frappe/model/db_schema.py +142,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Visszatérve hossz {0} &#39;{1}&#39; a &#39;{2}&#39;; Beállítása hosszában {3} okoz csonkolást adatok.
DocType: Print Format,Custom CSS,Egyedi CSS
apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Hozzászólás hozzáadása
apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Figyelmen kívül hagyva: {0} - {1}
@@ -1199,13 +1202,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,
DocType: Custom Role,Custom Role,Egyedi szerep
apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Kezdőlap / Teszt mappa 2
DocType: System Settings,Ignore User Permissions If Missing,Figyelmen kívül hagyja felhasználói engedélyeket ha hiányoznak
apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,"Kérjük, mentse a dokumentumot a feltöltés előtt."
apps/frappe/frappe/public/js/frappe/form/control.js +1075,Please save the document before uploading.,"Kérjük, mentse a dokumentumot a feltöltés előtt."
apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Adja meg a jelszavát
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox belépési titkosítás
apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Másik hozzászólás hozzáadása
apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,DocType szerkesztése
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Leiratkozott a hírlevélről
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,Unsubscribed from Newsletter,Leiratkozott a hírlevélről
apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Becsukásnak a szekció elválasztás előtt kell lennie
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,Fejlesztés alatt
apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Utoljára módosította
DocType: Workflow State,hand-down,kéz-le
DocType: Address,GST State,GST Állam
@@ -1226,6 +1230,7 @@ DocType: Workflow State,Tag,Címke
DocType: Custom Script,Script,Forgatókönyv
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Beállításaim
DocType: Website Theme,Text Color,Szöveg színe
apps/frappe/frappe/desk/page/backups/backups.py +72,Backup job is already queued. You will receive an email with the download link,A biztonsági mentés már várakozik. E-mailt fog kapni a letöltési hivatkozással
DocType: Desktop Icon,Force Show,Eröltetés mutatása
apps/frappe/frappe/auth.py +78,Invalid Request,Érvénytelen kérelem
apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Ez az űrlap nem rendelkezik bemenettel
@@ -1336,7 +1341,7 @@ DocType: DocField,Name,Név
apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,Túllépte a max hely területét: {0} a tervéhez: {1}.
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Keresés a dokumentumokban
DocType: OAuth Authorization Code,Valid,Érvényes
apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Link megnyitása
apps/frappe/frappe/public/js/frappe/form/control.js +1354,Open Link,Link megnyitása
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,A nyelve
apps/frappe/frappe/desk/form/load.py +46,Did not load,Nem töltötte be
apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Add Row
@@ -1354,6 +1359,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Bizonyos dokumentumokat, mint egy számla, nem lehet változtatni, miután véglegesítették. Ezeknek a dokumentumoknak a végleges állapota a Benyújtás. Korlátozni lehet ezt a Benyújtó beosztással."
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Ön nem exportálja ezt a jelentést
apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 kiválasztott elem
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,"<p> Nincs találat a "" </p>"
DocType: Newsletter,Test Email Address,Teszt e-mail cím
DocType: ToDo,Sender,Küldő
DocType: GSuite Settings,Google Apps Script,Google alkalmazások Script
@@ -1461,7 +1467,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Ple
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Jelentés betöltése
apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Az előfizetése ma jár le.
DocType: Page,Standard,Általános
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Fájl csatolása
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,Fájl csatolása
apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,Jelszó frissítési értesítő
apps/frappe/frappe/desk/page/backups/backups.html +13,Size,Méret
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,Hozzárendelés befejezve
@@ -1491,7 +1497,7 @@ apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversat
apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Választást nem állította be erre a link mezőre: {0}
DocType: Customize Form,"Must be of type ""Attach Image""","Ilyen típusnak kell lennie: ""Kép csatolása"""
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Minden kijelölés megszüntetése
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Nem lehet hatástalanítani 'Csak olvasható' mező: {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +199,You cannot unset 'Read Only' for field {0},Nem lehet hatástalanítani 'Csak olvasható' mező: {0}
DocType: Auto Email Report,Zero means send records updated at anytime,Nulla jelenti a beküldött bejegyzések bármikor frissülhettek
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +22,Complete Setup,Teljes telepítés
DocType: Workflow State,asterisk,csillag
@@ -1505,7 +1511,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +98,Week,Hét
DocType: Social Login Keys,Google,Google
DocType: Email Domain,Example Email Address,Példa e-mail címek
apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,Legtöbbet használt
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Unsubscribe from Newsletter,Leiratkozás a hírlevélről
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe from Newsletter,Leiratkozás a hírlevélről
apps/frappe/frappe/www/login.html +101,Forgot Password,Elfelejtett jelszó
DocType: Dropbox Settings,Backup Frequency,Mentések gyakorisága
DocType: Workflow State,Inverse,Inverz
@@ -1583,10 +1589,11 @@ apps/frappe/frappe/config/setup.py +209,"Actions for workflow (e.g. Approve, Can
DocType: Workflow State,flag,zászló
apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +57,Feedback Request is already sent to user,Visszajelzés kérése már elküldött a felhasználónak
DocType: Web Page,Text Align,Szöveg igazítása
apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},"Név nem tartalmazhat speciális karaktereket, mint a {0}"
apps/frappe/frappe/model/naming.py +185,Name cannot contain special characters like {0},"Név nem tartalmazhat speciális karaktereket, mint a {0}"
DocType: Contact Us Settings,Forward To Email Address,Továbbítás emailcímekre
apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Összes adat mutatása
apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Cím mezőnek érvényes mezőnévvel kell rendelkeznie
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,E-mail fiók nincs beállítva. Új e-mail fiók létrehozása a Beállítás&gt; E-mail&gt; E-mail fiókból
apps/frappe/frappe/config/core.py +7,Documents,Dokumentumok
DocType: Email Flag Queue,Is Completed,Elkészült
apps/frappe/frappe/www/me.html +22,Edit Profile,Profil szerkesztése
@@ -1596,7 +1603,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi
myfield
eval:doc.myfield=='My Value'
eval:doc.age&gt;18","Ez a mező csak akkor jelenik meg, ha a mezőnévnek itt megadott értéke van VAGY a szabályok igazak (példák): myfield eval:doc.myfield=='My Value'eval:doc.age&gt;18"
apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Ma
apps/frappe/frappe/public/js/frappe/form/control.js +764,Today,Ma
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Ha beállította ezt, a felhasználók csak akkor férhetnek hozzá a dokumentumokhoz (pl. Blogbejegyzés), ahol a link jelen van (pl. Blogger)."
DocType: Error Log,Log of Scheduler Errors,Ütemező hiba naplója
DocType: User,Bio,Életrajz
@@ -1655,7 +1662,7 @@ DocType: Print Format,Js,Js
apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Válasszon nyomtatási formátumot
apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Rövid billentyűzet minták könnyen kitalálhatóak
DocType: Portal Settings,Portal Menu,Portál Menü
apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,"Ennek a hossznak: {0}, 1 és 1000 között kell lennie"
apps/frappe/frappe/model/db_schema.py +115,Length of {0} should be between 1 and 1000,"Ennek a hossznak: {0}, 1 és 1000 között kell lennie"
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,Keresés bármire
DocType: DocField,Print Hide,Nyomtatás elrejtése
apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,Adjon Értéket
@@ -1708,8 +1715,7 @@ apps/frappe/frappe/model/document.py +564,Cannot change docstatus from 0 to 2,Ne
DocType: User Permission for Page and Report,Roles Permission,Szerepek engedélye
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Frissítés
DocType: Error Snapshot,Snapshot View,Pillanatkép megtekintése
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,"Kérjük, mentse a hírlevelet a küldés előtt"
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} év (ek) ezelőtt
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +101,Please save the Newsletter before sending,"Kérjük, mentse a hírlevelet a küldés előtt"
apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},"Lehetőségnek egy érvényes DocType -nak kell lennie erre a mezőre: {0} , ebben a sorban {1}"
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Tulajdonságok szerkesztése
DocType: Patch Log,List of patches executed,Javítások listája végrehajtott
@@ -1727,7 +1733,7 @@ apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Jelszó friss
DocType: Workflow State,trash,kuka
DocType: System Settings,Older backups will be automatically deleted,Régebbi mentések automatikusan törlődnek
DocType: Event,Leave blank to repeat always,Üresen hagyva örökké ismétlődik
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +192,Confirmed,Megerősített
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,Confirmed,Megerősített
DocType: Event,Ends on,Véget ér
DocType: Payment Gateway,Gateway,Átjáró
apps/frappe/frappe/public/js/frappe/form/linked_with.js +116,Not enough permission to see links,Nincs elég Jogosultság a linkek megtekintéséhez
@@ -1758,7 +1764,6 @@ DocType: Contact,Purchase Manager,Beszerzési menedzser
DocType: Custom Script,Sample,Minta
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Besorolatlan Címkék
DocType: Event,Every Week,Minden héten
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,"E-mail fiók nincs beállítva. Kérjük, hozzon létre egy új e-mail fiók a Beállítás&gt; E-mail&gt; E-mail fiók"
apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,"Kattintson ide, hogy ellenőrizze a használatot vagy frissítsen egy nagyobb előfizetésre"
DocType: Custom Field,Is Mandatory Field,Ez kötelező mező
DocType: User,Website User,Weboldal Felhasználó
@@ -1766,7 +1771,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +10,Not equals,N
DocType: Integration Request,Integration Request Service,Integrációt igénylő szolgáltatás
DocType: Website Script,Script to attach to all web pages.,Script tulajdonítanak az összes weboldalt.
DocType: Web Form,Allow Multiple,Többszöri engedélyezése
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +40,Assign,Hozzárendelni
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +44,Assign,Hozzárendelni
apps/frappe/frappe/config/setup.py +102,Import / Export Data from .csv files.,Adatok importálása / exportálása .csv fájlból.
DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Csak az X órán bellül frissített Rekordokat küldjük
DocType: Communication,Feedback,Visszajelzés
@@ -1846,7 +1851,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,Megmaradó
apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Kérjük mentsen a csatolás elött.
apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Hozzáadva: {0} ({1})
apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Alapértelmezett téma van beállítva ebben {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},"MezőTípust nem lehet megváltoztatni erről {0} erre {1}, a {2} sorban"
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +325,Fieldtype cannot be changed from {0} to {1} in row {2},"MezőTípust nem lehet megváltoztatni erről {0} erre {1}, a {2} sorban"
apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,Beosztás engedélyei
DocType: Help Article,Intermediate,Közbülső
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Olvashat
@@ -1861,9 +1866,9 @@ apps/frappe/frappe/core/doctype/user/user.js +42,Refreshing...,Frissítés...
DocType: Event,Starts on,Kezdődik
DocType: System Settings,System Settings,Rendszer beállításai
apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Munkamenet indítása sikertelen
apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Ezt az e-mailt elküldte ide: {0} és másolatot ide: {1}
apps/frappe/frappe/email/queue.py +470,This email was sent to {0} and copied to {1},Ezt az e-mailt elküldte ide: {0} és másolatot ide: {1}
DocType: Workflow State,th,th
apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Hozzon létre egy új {0}
apps/frappe/frappe/public/js/frappe/form/control.js +1517,Create a new {0},Hozzon létre egy új {0}
DocType: Email Rule,Is Spam,Ez Levélszemét
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Report {0}
apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},{0} megnyitva
@@ -1875,12 +1880,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon a
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,Megsokszoroz
DocType: Newsletter,Create and Send Newsletters,Létrehoz és küld hírleveleket
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date must be before To Date,Dátumtól a dátimig előtt kell legyen
DocType: Address,Andaman and Nicobar Islands,Andamán és Nicobar-szigetek
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +216,GSuite Document,GSuite Dokumentum
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +29,Please specify which value field must be checked,"Kérjük, határozza meg melyik érték mezőt kell llenőrizni"
apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"""Parent"" signifies the parent table in which this row must be added","""Szülő"" jelenti azt a szülő táblát, amelyhez ezt a sort hozzá kell adni"
DocType: Website Theme,Apply Style,Stílus alkalmazása
DocType: Feedback Request,Feedback Rating,Visszajelzés értékelése
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared With,Megosztva
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Megosztva
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Beállítás&gt; Felhasználói jogosultságkezelő
DocType: Help Category,Help Articles,Súgóbejegyzések
,Modules Setup,Modulok beállítása
apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Típus:
@@ -1911,7 +1918,7 @@ DocType: OAuth Client,App Client ID,Alk kliens ID
DocType: Kanban Board,Kanban Board Name,Kanban pult neve
DocType: Email Alert Recipient,"Expression, Optional","Kifejezés, opcionális"
DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,Másolja be ezt a kódot és az üres Code.gs a script.google.com projektjébe
apps/frappe/frappe/email/queue.py +456,This email was sent to {0},Ezt az e-mailt elküldte ide: {0}
apps/frappe/frappe/email/queue.py +472,This email was sent to {0},Ezt az e-mailt elküldte ide: {0}
DocType: DocField,Remember Last Selected Value,Emlékezzen az utolsó kiválasztott értékre
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +334,Please select Document Type,"Kérjük, válasszon Document típust"
DocType: Email Account,Check this to pull emails from your mailbox,Jelöld be az emailek lekéréséhez a postafiókjából.
@@ -1926,6 +1933,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,2. l
DocType: Feedback Trigger,Email Field,E-mail mező
apps/frappe/frappe/www/update-password.html +59,New Password Required.,Új jelszó szükséges.
apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} megosztotta ezt a dokumentumot vele: {1}
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Beállítás&gt; Felhasználó
DocType: Website Settings,Brand Image,Márka képe
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Felső menüsor, lábléc és logo telepítése."
@@ -1993,8 +2001,8 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa
apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Nem olvasható fájl formátum erre: {0}
DocType: Auto Email Report,Filter Data,Adatok szűrése
apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Címke hozzáadása
apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,"Kérjük, csatoljon egy fájlt először."
apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Hibák voltak a név beállításakor, kérjük forduljon a rendszergazdához"
apps/frappe/frappe/public/js/frappe/form/control.js +1335,Please attach a file first.,"Kérjük, csatoljon egy fájlt először."
apps/frappe/frappe/model/naming.py +174,"There were some errors setting the name, please contact the administrator","Hibák voltak a név beállításakor, kérjük forduljon a rendszergazdához"
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Bejövő e-mail fiók nem helyes
apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \
Please enter a valid email address so that we can get back.","Úgy tűnik, hogy írásos neved helyett az e-mail. \ Kérem adjon meg egy érvényes e-mail címét, hogy kap vissza."
@@ -2046,7 +2054,6 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,
DocType: Custom DocPerm,Create,Létrehozás
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Érvénytelen szűrő: {0}
DocType: Email Account,no failed attempts,nincs sikertelen kísérlet
apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,"Nincs alapértelmezett Címsablon talált. Kérjük, hozzon létre egy újat a Beállítás&gt; Nyomtatás és Branding&gt; Címsablon."
DocType: GSuite Settings,refresh_token,refresh_token
DocType: Dropbox Settings,App Access Key,Alk hozzáférési kulcs
DocType: OAuth Bearer Token,Access Token,Hozzáférési token
@@ -2072,6 +2079,7 @@ apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl +
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Létrehoz egy újat {0}
apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,Új e-mail fiók
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +28,Document Restored,Dokumentum helyreállított
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +203,You can't set 'Options' for field {0},A {0} mezőre nem állíthatja be az &quot;Opciók&quot;
apps/frappe/frappe/core/page/usage_info/usage_info.html +86,Size (MB),Méret (MB)
DocType: Help Article,Author,Szerző
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +10,Resume Sending,Küldés folytatása
@@ -2081,7 +2089,7 @@ DocType: Print Settings,Monochrome,Monokróm
DocType: Address,Purchase User,Beszerzési megrendelés Felhasználó
DocType: Workflow,"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.","Különböző ""Állapotok"" melyben ez a dokumentum is létezhet. Mint ""Nyitott"", ""Jóváhagyás folyamatban"" stb"
apps/frappe/frappe/utils/verified_command.py +43,This link is invalid or expired. Please make sure you have pasted correctly.,"Ez a link érvénytelen, vagy lejárt. Kérjük, győződjön meg róla, hogy a helyesen illesztette be ."
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> sikeresen leiratkozott erről levelezési lista.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +136,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> sikeresen leiratkozott erről levelezési lista.
DocType: Web Page,Slideshow,Diavetítés
apps/frappe/frappe/contacts/doctype/address_template/address_template.py +31,Default Address Template cannot be deleted,Alapértelmezett Címsablont nem lehet törölni
DocType: Contact,Maintenance Manager,Karbantartási vezető
@@ -2102,7 +2110,7 @@ apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a r
DocType: System Settings,Apply Strict User Permissions,Szigorú Felhasználói jogosultságok
DocType: DocField,Allow Bulk Edit,Engedélyezi a tömeges szerkesztést
DocType: Blog Post,Blog Post,Blog bejegyzés
apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Részletes keresés
apps/frappe/frappe/public/js/frappe/form/control.js +1527,Advanced Search,Részletes keresés
apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,A jelszó visszaállításához szükséges utasítok el lettek küldve emailen
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \
higher levels for field level permissions.","0 szint van a dokumentumok szintű engedélyekkel, \ magasabb szinteket mező szintű engedélyekkel."
@@ -2127,13 +2135,13 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new re
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Keres
DocType: Currency,Fraction,Törtrész
DocType: LDAP Settings,LDAP First Name Field,LDAP Utónév mező
apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Válasszon a meglévő mellékletekből
apps/frappe/frappe/public/js/frappe/form/control.js +1085,Select from existing attachments,Válasszon a meglévő mellékletekből
DocType: Custom Field,Field Description,Mező leírása
apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Nevet nem állította be a felszólítással
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,E-mail beérkezett üzenetek
DocType: Auto Email Report,Filters Display,Szűrők megjelenítése
DocType: Website Theme,Top Bar Color,Felső sáv színe
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Do you want to unsubscribe from this mailing list?,Szeretné leiratkozni erről a levelezési listáról?
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Do you want to unsubscribe from this mailing list?,Szeretné leiratkozni erről a levelezési listáról?
DocType: Address,Plant,Géppark
apps/frappe/frappe/core/doctype/communication/communication.js +65,Reply All,Válasz mindenkinek
DocType: DocType,Setup,Telepítés
@@ -2176,7 +2184,7 @@ DocType: User,Send Notifications for Transactions I Follow,Küldjön értesíté
apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Írás nélkül nem elérhető a Küldés, Törlés, és Módosítás"
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,"Biztos benne, hogy törölni szeretné a mellékletet?"
apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} <a href=""#Form/{0}/{1}"">{1}</a> is linked with {2} <a href=""#Form/{2}/{3}"">{3}</a>","Nem lehet törölni, vagy törölni, mert {0} <a href=""#Form/{0}/{1}"">{1}</a> kapcsolódik {2} <a href=""#Form/{2}/{3}"">{3}</a>"
apps/frappe/frappe/__init__.py +1062,Thank you,Köszönöm
apps/frappe/frappe/__init__.py +1070,Thank you,Köszönöm
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Mentés
DocType: Print Settings,Print Style Preview,Nyomtatvány stílus előnézet
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
@@ -2191,7 +2199,7 @@ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Egyéni
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Szér sz.
,Role Permissions Manager,Beosztás jogosultság kezelő
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Új nyomtatási formátum neve
apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Melléklet törlés
apps/frappe/frappe/public/js/frappe/form/control.js +1087,Clear Attachment,Melléklet törlés
apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Kötelező:
,User Permissions Manager,Felhasználói jogosultság kezelő
DocType: Property Setter,New value to be set,Új érték kerül beállításra
@@ -2216,7 +2224,7 @@ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment C
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,Hiba naplók törlése
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,"Kérjük, válasszon egy értékelést"
DocType: Email Account,Notify if unreplied for (in mins),"Értesítés, ha: megválaszolatlan ennyi ideig (perc)"
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 napja
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +501,2 days ago,2 napja
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Blogbejegyzések kategorizálása.
DocType: Workflow State,Time,Idő
DocType: DocField,Attach,Csatolás
@@ -2232,6 +2240,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Mentés
DocType: GSuite Templates,Template Name,Sablon neve
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,Új típusú dokumentum
DocType: Custom DocPerm,Read,Olvas
DocType: Address,Chhattisgarh,Cshattíszgarh
DocType: Role Permission for Page and Report,Role Permission for Page and Report,Szerep engedély az oldalhoz és jelentéshez
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Igazítás értéke
apps/frappe/frappe/www/update-password.html +14,Old Password,Régi jelszó
@@ -2278,7 +2287,7 @@ apps/frappe/frappe/public/js/frappe/roles_editor.js +28,Add all roles,Minden beo
apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your email and message so that we \
can get back to you. Thanks!","Írja be az e-mail-jét és üzenetét, hogy mi \ tudjunk válaszolni Önnek. Köszönjük!"
apps/frappe/frappe/email/smtp.py +170,Could not connect to outgoing email server,Nem tudott csatlakozni a kimenő e-mail szerverre
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +162,Thank you for your interest in subscribing to our updates,Köszönjük az érdeklődését a feliratkozásával a frissítésekre
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Thank you for your interest in subscribing to our updates,Köszönjük az érdeklődését a feliratkozásával a frissítésekre
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Custom Column,Egyedi oszlop
DocType: Workflow State,resize-full,átméretezés-teljes
DocType: Workflow State,off,ki
@@ -2341,7 +2350,7 @@ DocType: Address,Telangana,Telangana
apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,"Alapértelmezetten ehhez: {0}, kell lennie egy lehetőségnek"
DocType: Tag Doc Category,Tag Doc Category,Címke Doc Kategória
DocType: User,User Image,Felhasználó képe
apps/frappe/frappe/email/queue.py +289,Emails are muted,E-mailek elnémítva
apps/frappe/frappe/email/queue.py +304,Emails are muted,E-mailek elnémítva
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + Fel
DocType: Website Theme,Heading Style,Címsorstílus
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +183,A new Project with this name will be created,Egy új projekt ezzel a névvel kerül létrehozásra
@@ -2558,7 +2567,6 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,csengő
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Hiba az e-mail figyelmeztetésben
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Dokumentum megosztása vele:
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Beállítás&gt; Felhasználói jogosultságok menedzser
apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} nem lehet levélcsomópont hiszen al elágazásai vannak
DocType: Communication,Info,Infó
apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Melléklet hozzáadás
@@ -2602,7 +2610,7 @@ apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,A(z) {0} n
DocType: Email Alert,Send days before or after the reference date,Küldjön a referencia időponthoz viszonyítva ennyi nappal megelőzően vagy azt követően
DocType: User,Allow user to login only after this hour (0-24),"A felhasználó megadhatja, hogy ezen óra után jelentkezhet be (0-24)"
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,Érték
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +165,Click here to verify,"Kattintson ide, hogy ellenőrizze"
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +166,Click here to verify,"Kattintson ide, hogy ellenőrizze"
apps/frappe/frappe/utils/password_strength.py +178,Predictable substitutions like '@' instead of 'a' don't help very much.,"Kiszámítható helyettesítések, mint a '@' helyett 'a' nem nagyon segít."
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Általam hozzárendelt
apps/frappe/frappe/utils/data.py +462,Zero,Nulla
@@ -2614,6 +2622,7 @@ DocType: ToDo,Priority,Prioritás
DocType: Email Queue,Unsubscribe Param,Leiratkozás Paraméter
DocType: Auto Email Report,Weekly,Heti
DocType: Communication,In Reply To,A Válaszban
apps/frappe/frappe/contacts/doctype/address/address.py +189,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,"Nincs alapértelmezett címséma. Kérjük, hozzon létre újat a Beállítás&gt; Nyomtatás és branding&gt; Cím sablonból."
DocType: DocType,Allow Import (via Data Import Tool),IImport engedélyezése (az adatok importálása eszközzel)
apps/frappe/frappe/templates/print_formats/standard_macros.html +30,Sr,Szér
DocType: DocField,Float,Lebegőpontos
@@ -2704,7 +2713,6 @@ apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Érvénytelen határ
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Listázzon egy dokument típust
DocType: Event,Ref Type,Hivatkozás típusa
apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Ha új rekordokat tölt fel, hagyja üresen a ""Név"" (ID) oszlopot."
DocType: Address,Chattisgarh,Chattisgarh
apps/frappe/frappe/config/core.py +47,Errors in Background Events,Hibák a Háttér Eseményeken
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,Oszlopok száma
DocType: Workflow State,Calendar,Naptár
@@ -2736,7 +2744,7 @@ apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Hozzá
DocType: Integration Request,Remote,Távoli
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Számolás
apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,"Kérjük, válasszon DocType először"
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Erősítse meg az e-maileket
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +174,Confirm Your Email,Erősítse meg az e-maileket
apps/frappe/frappe/www/login.html +42,Or login with,Vagy jelentkezz be ezzel
DocType: Error Snapshot,Locals,A helyiek
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Keresztül közölt {0} ezen {1}: {2}
@@ -2753,7 +2761,7 @@ DocType: Web Page,Web Page,Weboldal
DocType: Blog Category,Blogger,Blogger
apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'Globális keresésben' nem engedélyezett {0} típusú a {1} sorában
apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Lista megtekintése
apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Dátumnak ebben a formátumban kell lennie: {0}
apps/frappe/frappe/public/js/frappe/form/control.js +810,Date must be in format: {0},Dátumnak ebben a formátumban kell lennie: {0}
DocType: Workflow,Don't Override Status,Ne írja fellül az állapotot
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,"Kérjük, adjon egy minősítést."
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Visszajelzés kérése
@@ -2786,7 +2794,7 @@ DocType: Custom DocPerm,Report,Jelentés
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,"Összegnek nagyobbnak kell lennie, mint 0."
apps/frappe/frappe/desk/reportview.py +107,{0} is saved,{0} mentve
apps/frappe/frappe/core/doctype/user/user.py +327,User {0} cannot be renamed,Felhasználó {0} nem lehet átnevezni
apps/frappe/frappe/model/db_schema.py +107,Fieldname is limited to 64 characters ({0}),Fieldname legfeljebb 64 karakter ({0})
apps/frappe/frappe/model/db_schema.py +108,Fieldname is limited to 64 characters ({0}),Fieldname legfeljebb 64 karakter ({0})
apps/frappe/frappe/config/desk.py +59,Email Group List,E-mail csoport lista
DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],Egy ikon fájlt .ico kiterjesztéssel. Legyen 16 x 16 px. favicon generátor felhasználásával előállított . [favicon-generator.org]
DocType: Auto Email Report,Format,Formátum
@@ -2864,7 +2872,7 @@ DocType: Website Settings,Title Prefix,Cím előtag
DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Közlemények és csoportos emailek erről a kimenő szerverről lesznek elküldve.
DocType: Workflow State,cog,egymásba fog
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on Migrate,Szink. áttelepítésen
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Jelenleg megtekinti
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Currently Viewing,Jelenleg megtekinti
DocType: DocField,Default,Alapértelmezett
apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} hozzáadva
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Keresés erre '{0}'
@@ -2924,7 +2932,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +771,Report was
DocType: Print Settings,Print Style,Nyomtatási stílus
apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,Nem kapcsolódik semmilyen rekordhoz
DocType: Custom DocPerm,Import,Importálás
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +178,Row {0}: Not allowed to enable Allow on Submit for standard fields,Row {0}: Nem szabad engedélyezni Hagyjuk a Submit szabványos mezők
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +180,Row {0}: Not allowed to enable Allow on Submit for standard fields,Row {0}: Nem szabad engedélyezni Hagyjuk a Submit szabványos mezők
apps/frappe/frappe/config/setup.py +100,Import / Export Data,Adatok importálása / exportálása
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,Alapértelmezett Beosztások nem átnevezhetők
DocType: Communication,To and CC,Címzett és CC
@@ -2950,7 +2958,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo
DocType: Auto Email Report,Filter Meta,Szűrő meta
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"A megjelenítendő szöveget a weboldalhoz fűzi, ha ennek az űrlapnak van weboldala. Hozzáfűzési útvonalat automatikusan hozza létre a 'page_name' és 'parent_website_route` alapján"
DocType: Feedback Request,Feedback Trigger,Visszajelzés indítás
apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,"Kérjük, állítsa be {0} először"
apps/frappe/frappe/public/js/frappe/form/control.js +1741,Please set {0} first,"Kérjük, állítsa be {0} először"
DocType: Unhandled Email,Message-id,Üzenet-ID
DocType: Patch Log,Patch,Javítócsomag
DocType: Async Task,Failed,Sikertelen


+ 72
- 64
frappe/translations/id.csv Datei anzeigen

@@ -14,8 +14,9 @@ apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,An
DocType: User,Facebook Username,Username
DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Catatan: Beberapa sesi akan diizinkan dalam kasus perangkat mobile
apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Diaktifkan inbox email untuk pengguna {} pengguna
apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Tidak bisa mengirim email ini. Anda telah menyeberangi batas pengiriman {0} email untuk bulan ini.
apps/frappe/frappe/email/queue.py +225,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Tidak bisa mengirim email ini. Anda telah menyeberangi batas pengiriman {0} email untuk bulan ini.
apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Kirim permanen {0}?
apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,Download File Backup
DocType: Address,County,daerah
DocType: Workflow,If Checked workflow status will not override status in list view,Jika status alur kerja Diperiksa tidak akan menimpa status dalam tampilan daftar
apps/frappe/frappe/client.py +280,Invalid file path: {0},Path file tidak valid: {0}
@@ -80,10 +81,10 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Pengatura
apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administrator Logged In
DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opsi kontak, seperti ""Penjualan Query, Dukungan Query"" dll masing-masing pada baris baru atau dipisahkan dengan koma."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Unduh
apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Insert
apps/frappe/frappe/public/js/frappe/form/control.js +1979,Insert,Insert
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Pilih {0}
DocType: Print Settings,Classic,Klasik
DocType: Desktop Icon,Color,Warna
DocType: DocField,Color,Warna
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +54,For ranges,Untuk rentang
DocType: Workflow State,indent-right,indent kanan
DocType: Has Role,Has Role,memiliki Peran
@@ -100,7 +101,7 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To impor
DocType: DocType,Default Print Format,Standar Print Format
DocType: Workflow State,Tags,tag
apps/frappe/frappe/public/js/frappe/form/workflow.js +33,None: End of Workflow,Tidak ada: Akhir Workflow
apps/frappe/frappe/model/db_schema.py +346,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} lapangan tidak dapat ditetapkan sebagai unik di {1}, karena ada nilai-nilai yang ada non-unik"
apps/frappe/frappe/model/db_schema.py +347,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} lapangan tidak dapat ditetapkan sebagai unik di {1}, karena ada nilai-nilai yang ada non-unik"
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +47,Document Types,Jenis dokumen
DocType: Address,Jammu and Kashmir,Jammu dan Kashmir
DocType: Workflow,Workflow State Field,Workflow Negara Bidang
@@ -231,7 +232,7 @@ DocType: Workflow,Transition Rules,Aturan Transisi
apps/frappe/frappe/core/doctype/report/report.js +11,Example:,Contoh:
DocType: Workflow,Defines workflow states and rules for a document.,Mendefinisikan negara alur kerja dan aturan untuk dokumen.
DocType: Workflow State,Filter,filter
apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Fieldname {0} tidak dapat memiliki karakter khusus seperti {1}
apps/frappe/frappe/model/db_schema.py +564,Fieldname {0} cannot have special characters like {1},Fieldname {0} tidak dapat memiliki karakter khusus seperti {1}
apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Memperbarui banyak nilai pada satu waktu.
apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Kesalahan: Dokumen telah dimodifikasi setelah Anda membukanya
apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} log out: {1}
@@ -260,7 +261,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Dapatkan ava
apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Langganan Anda berakhir pada {0}. Untuk memperbaharui, {1}."
DocType: Workflow State,plus-sign,tanda plus
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Setup sudah lengkap
apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} tidak diinstal
apps/frappe/frappe/__init__.py +897,App {0} is not installed,App {0} tidak diinstal
DocType: Workflow State,Refresh,Segarkan
DocType: Event,Public,Publik
apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Tidak ada yang menunjukkan
@@ -339,7 +340,6 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Mengedit Heading
DocType: File,File URL,URL File
DocType: Version,Table HTML,tabel HTML
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> Tidak ada hasil yang ditemukan untuk ' </p>
apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Tambahkan Pengikut
apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Acara Mendatang untuk Hari Ini
DocType: Email Alert Recipient,Email By Document Field,Email Dengan Dokumen Lapangan
@@ -404,7 +404,6 @@ DocType: Desktop Icon,Link,Link
apps/frappe/frappe/utils/file_manager.py +96,No file attached,Tidak ada file terlampir
DocType: Version,Version,Versi
DocType: User,Fill Screen,Isi Layar
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,Silakan setup default Email Account dari Setup&gt; Email&gt; Email Account
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Tidak dapat menampilkan laporan pohon ini, karena data yang hilang. Kemungkinan besar, ia sedang disaring karena izin."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Pilih File
apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Mengedit via Upload
@@ -474,9 +473,9 @@ DocType: User,Reset Password Key,Reset Password Key
DocType: Email Account,Enable Auto Reply,Aktifkan Auto Reply
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Tidak Terlihat
DocType: Workflow State,zoom-in,perbesar
apps/frappe/frappe/email/queue.py +219,Unsubscribe from this list,Berhenti berlangganan dari daftar ini
apps/frappe/frappe/email/queue.py +234,Unsubscribe from this list,Berhenti berlangganan dari daftar ini
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Reference DocType and Reference Name are required,Referensi DOCTYPE dan referensi Nama diperlukan
apps/frappe/frappe/utils/jinja.py +35,Syntax error in template,Sintaks error pada template
apps/frappe/frappe/utils/jinja.py +51,Syntax error in template,Sintaks error pada template
DocType: DocField,Width,Lebar
DocType: Email Account,Notify if unreplied,Beritahu jika unreplied
DocType: System Settings,Minimum Password Score,Skor Kata Kunci Minimum
@@ -560,6 +559,7 @@ DocType: Custom Field,Select the label after which you want to insert new field.
DocType: User,Last Login,Terakhir Login
apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Fieldname diperlukan berturut-turut {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Kolom
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,Silakan setup default Email Account dari Setup&gt; Email&gt; Email Account
DocType: Custom Field,Adds a custom field to a DocType,Menambahkan kolom (custom field) untuk DOCTYPE
DocType: File,Is Home Folder,Apakah Home Folder
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} bukanlah Alamat Email valid
@@ -567,7 +567,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +733,Select atleast 1 reco
apps/frappe/frappe/core/doctype/has_role/has_role.py +13,User '{0}' already has the role '{1}',Pengguna {0} &#39;sudah memiliki peran&#39; {1} &#39;
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,Upload dan Sinkronisasi
apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Bersama dengan {0}
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe,Berhenti berlangganan
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +132,Unsubscribe,Berhenti berlangganan
DocType: Communication,Reference Name,Referensi Nama
apps/frappe/frappe/public/js/frappe/toolbar.js +30,Chat Support,Dukungan chatting
DocType: Error Snapshot,Exception,Pengecualian
@@ -585,7 +585,7 @@ DocType: Email Group,Newsletter Manager,Newsletter Manajer
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Pilihan 1
apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} sampai {1}
apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Log dari kesalahan selama permintaan.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} telah berhasil ditambahkan ke Email Group.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +194,{0} has been successfully added to the Email Group.,{0} telah berhasil ditambahkan ke Email Group.
DocType: Address,Uttar Pradesh,Uttar Pradesh
DocType: Address,Pondicherry,Pondicherry
apps/frappe/frappe/public/js/frappe/upload.js +364,Make file(s) private or public?,Membuat file (s) swasta atau publik?
@@ -616,7 +616,7 @@ DocType: Portal Settings,Portal Settings,Pengaturan Portal
DocType: Web Page,0 is highest,0 adalah tertinggi
apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Apakah Anda yakin Anda ingin menautkan komunikasi ini untuk {0}?
apps/frappe/frappe/www/login.html +104,Send Password,Kirim Sandi
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +45,Attachments,Lampiran
DocType: Email Queue,Attachments,Lampiran
apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,Anda tidak memiliki izin untuk mengakses dokumen ini
DocType: Language,Language Name,Nama bahasa
DocType: Email Group Member,Email Group Member,Email Group Anggota
@@ -646,7 +646,7 @@ apps/frappe/frappe/utils/password_strength.py +78,Try to use a longer keyboard p
DocType: Feedback Trigger,Check Communication,periksa Komunikasi
DocType: Address,Rajasthan,Rajasthan
apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Laporan Report Builder dikelola langsung oleh pembangun laporan. Tidak ada hubungannya.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Harap verifikasi Alamat Email Anda
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +164,Please verify your Email Address,Harap verifikasi Alamat Email Anda
apps/frappe/frappe/model/document.py +903,none of,tidak ada
apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Kirim Me Salin A
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Upload Izin Pengguna
@@ -657,7 +657,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Si
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban Dewan {0} tidak ada.
apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} sedang melihat dokumen ini
DocType: ToDo,Assigned By Full Name,Ditugaskan Dengan Nama Lengkap
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} diperbarui
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} diperbarui
apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Laporan tidak dapat ditetapkan untuk jenis Tunggal
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} hari yang lalu
DocType: Email Account,Awaiting Password,Menunggu Sandi
@@ -682,7 +682,7 @@ DocType: Workflow State,Stop,berhenti
DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Link ke halaman yang ingin Anda buka. Kosongkan jika Anda ingin membuatnya kelompok orang tua.
DocType: DocType,Is Single,Tunggal
apps/frappe/frappe/core/doctype/user/user.py +720,Sign Up is disabled,Sign Up dinonaktifkan
apps/frappe/frappe/email/queue.py +278,{0} has left the conversation in {1} {2},{0} telah meninggalkan percakapan di {1} {2}
apps/frappe/frappe/email/queue.py +293,{0} has left the conversation in {1} {2},{0} telah meninggalkan percakapan di {1} {2}
DocType: Blogger,User ID of a Blogger,User ID dari Blogger
apps/frappe/frappe/core/doctype/user/user.py +287,There should remain at least one System Manager,Ada harus tetap setidaknya satu System Manager
DocType: GSuite Settings,Authorization Code,Kode otorisasi
@@ -728,6 +728,7 @@ DocType: Event,Event,Acara
apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Pada {0}, {1} menulis:"
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,Tidak dapat menghapus bidang standar. Anda dapat menyembunyikannya jika Anda ingin
DocType: Top Bar Item,For top bar,Untuk top bar
apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,Antri untuk backup Anda akan menerima email dengan link download
apps/frappe/frappe/utils/bot.py +148,Could not identify {0},tidak bisa mengidentifikasi {0}
DocType: Address,Address,Alamat
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +3,Payment Failed,Pembayaran gagal
@@ -752,13 +753,13 @@ DocType: Web Form,Allow Print,Izinkan Cetak
apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Tidak ada Apps Terpasang
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Tandai lapangan sebagai Wajib
DocType: Communication,Clicked,Diklik
apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Tidak ada izin untuk '{0}' {1}
apps/frappe/frappe/public/js/legacy/form.js +950,No permission to '{0}' {1},Tidak ada izin untuk '{0}' {1}
DocType: User,Google User ID,Google User ID
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Dijadwalkan untuk mengirim
DocType: DocType,Track Seen,track Dilihat
apps/frappe/frappe/desk/form/utils.py +55,This method can only be used to create a Comment,Metode ini hanya dapat digunakan untuk membuat Komentar
DocType: Event,orange,Jeruk
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,No {0} found,Tidak ada {0} ditemukan
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +558,No {0} found,Tidak ada {0} ditemukan
apps/frappe/frappe/config/setup.py +242,Add custom forms.,Tambah form kustom.
apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} di {2}
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +419,submitted this document,disampaikan dokumen ini
@@ -788,6 +789,7 @@ DocType: Newsletter Email Group,Newsletter Email Group,Newsletter Email Grup
DocType: Dropbox Settings,Integrations,Integrasi
DocType: DocField,Section Break,Bagian istirahat
DocType: Address,Warehouse,Gudang
DocType: Address,Other Territory,Wilayah lainnya
,Messages,Pesan
apps/frappe/frappe/desk/page/applications/applications.js +49,Portal,Pintu gerbang
DocType: Email Account,Use Different Email Login ID,Gunakan Email Login Email yang berbeda
@@ -818,6 +820,7 @@ apps/frappe/frappe/utils/data.py +556,1 month ago,1 bulan lalu
DocType: Contact,User ID,ID Pengguna
DocType: Communication,Sent,Terkirim
DocType: Address,Kerala,Kerala
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} tahun yang lalu
DocType: File,Lft,lft
DocType: User,Simultaneous Sessions,Sesi simultan
DocType: OAuth Client,Client Credentials,Kredensial klien
@@ -834,7 +837,7 @@ DocType: Email Queue,Unsubscribe Method,Metode berhenti berlangganan
DocType: GSuite Templates,Related DocType,Terkait DocType
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Edit untuk menambahkan konten
apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Pilih Bahasa
apps/frappe/frappe/__init__.py +509,No permission for {0},Tidak ada izin untuk {0}
apps/frappe/frappe/__init__.py +517,No permission for {0},Tidak ada izin untuk {0}
DocType: DocType,Advanced,Advanced
apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Tampaknya API Key atau API Secret adalah salah !!!
apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Referensi: {0} {1}
@@ -845,6 +848,7 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P
DocType: Email Account,Yahoo Mail,Surat Yahoo
apps/frappe/frappe/limits.py +75,Your subscription will expire tomorrow.,Langganan Anda akan berakhir besok.
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +483,Saved!,Disimpan!
apps/frappe/frappe/public/js/frappe/form/control.js +729,{0} is not a valid hex color,{0} bukan warna hex yang valid
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,Nyonya
apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Diperbarui {0}: {1}
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,Nahkoda
@@ -872,7 +876,7 @@ DocType: Report,Disabled,Dinonaktifkan
DocType: Workflow State,eye-close,eye-close
DocType: OAuth Provider Settings,OAuth Provider Settings,Pengaturan OAuth Provider
apps/frappe/frappe/config/setup.py +254,Applications,Aplikasi
apps/frappe/frappe/public/js/frappe/request.js +347,Report this issue,Melaporkan masalah ini
apps/frappe/frappe/public/js/frappe/request.js +349,Report this issue,Melaporkan masalah ini
apps/frappe/frappe/public/js/frappe/form/save.js +79,Name is required,Nama dibutuhkan
DocType: Custom Script,Adds a custom script (client or server) to a DocType,Menambahkan custom script (client atau server) ke DOCTYPE
DocType: Address,City/Town,Kota / Kota
@@ -966,6 +970,7 @@ DocType: Currency,**Currency** Master,**Mata Uang** Utama
DocType: Email Account,No of emails remaining to be synced,Tidak ada email yang masih harus disinkronkan
apps/frappe/frappe/public/js/frappe/upload.js +203,Uploading,Mengunggah
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,Silakan menyimpan dokumen sebelum penugasan
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,Klik di sini untuk mengirim bug dan saran
DocType: Website Settings,Address and other legal information you may want to put in the footer.,Alamat dan informasi legal lainnya yang mungkin Anda ingin masukkan ke dalam catatan kaki (footer).
DocType: Website Sidebar Item,Website Sidebar Item,Website Barang Sidebar
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +44,{0} records updated,{0} catatan diperbarui
@@ -979,12 +984,10 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,jelas
apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Setiap peristiwa hari harus selesai pada hari yang sama.
DocType: Communication,User Tags,Pengguna Tags
apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Mengambil gambar ..
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Setup&gt; Pengguna
DocType: Workflow State,download-alt,men-download-alt
apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Download App {0}
DocType: Communication,Feedback Request,Masukan Permintaan
apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,bidang berikut yang hilang:
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Experimental Feature,Fitur eksperimental
apps/frappe/frappe/www/login.html +30,Sign in,Masuk
DocType: Web Page,Main Section,Bagian Utama
DocType: Page,Icon,icon
@@ -1086,7 +1089,7 @@ DocType: Customize Form,Customize Form,Sesuaikan Form
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +104,Mandatory field: set role for,bidang wajib: menetapkan peran untuk
DocType: Currency,A symbol for this currency. For e.g. $,Simbol untuk mata uang ini. Contoh $
apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,Frappe Kerangka
apps/frappe/frappe/model/naming.py +174,Name of {0} cannot be {1},Nama {0} tidak dapat {1}
apps/frappe/frappe/model/naming.py +180,Name of {0} cannot be {1},Nama {0} tidak dapat {1}
apps/frappe/frappe/config/setup.py +46,Show or hide modules globally.,Menampilkan atau menyembunyikan modul global.
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,Dari Tanggal
apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,Sukses
@@ -1107,7 +1110,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +308,Add A New
apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js +3,See on Website,Lihat di Website
DocType: Workflow Transition,Next State,Negara berikutnya
DocType: User,Block Modules,Blok Modul
apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Mengembalikan panjang ke {0} untuk &#39;{1}&#39; di &#39;{2}&#39;; Mengatur panjang sebagai {3} akan menyebabkan pemotongan data.
apps/frappe/frappe/model/db_schema.py +142,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Mengembalikan panjang ke {0} untuk &#39;{1}&#39; di &#39;{2}&#39;; Mengatur panjang sebagai {3} akan menyebabkan pemotongan data.
DocType: Print Format,Custom CSS,Kustom CSS
apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Tambah komentar
apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Diabaikan: {0} ke {1}
@@ -1199,13 +1202,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,
DocType: Custom Role,Custom Role,Peran kustom
apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Rumah / Test Folder 2
DocType: System Settings,Ignore User Permissions If Missing,Abaikan Izin Pengguna Jika Hilang
apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Silakan menyimpan dokumen sebelum meng-upload.
apps/frappe/frappe/public/js/frappe/form/control.js +1075,Please save the document before uploading.,Silakan menyimpan dokumen sebelum meng-upload.
apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Masukkan password Anda
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Rahasia
apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Tambahkan Komentar lain
apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,mengedit DocType
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Berhenti berlangganan dari Newsletter
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,Unsubscribed from Newsletter,Berhenti berlangganan dari Newsletter
apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Lipat harus datang sebelum Bagian istirahat
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,Dalam pengembangan
apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Terakhir Diubah Dengan
DocType: Workflow State,hand-down,tangan-ke bawah
DocType: Address,GST State,Negara bagian
@@ -1226,6 +1230,7 @@ DocType: Workflow State,Tag,Label
DocType: Custom Script,Script,Skrip
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Pengaturan saya
DocType: Website Theme,Text Color,Warna Teks
apps/frappe/frappe/desk/page/backups/backups.py +72,Backup job is already queued. You will receive an email with the download link,Pekerjaan cadangan sudah antri. Anda akan menerima email dengan link download
DocType: Desktop Icon,Force Show,Angkatan Tampilkan
apps/frappe/frappe/auth.py +78,Invalid Request,Permintaan tidak valid
apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Formulir ini tidak memiliki masukan
@@ -1336,7 +1341,7 @@ DocType: DocField,Name,Nama
apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,Anda telah melebihi ruang max {0} untuk rencana Anda. {1}.
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Cari dokumen
DocType: OAuth Authorization Code,Valid,Sah
apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Open Link
apps/frappe/frappe/public/js/frappe/form/control.js +1354,Open Link,Open Link
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Bahasa Anda
apps/frappe/frappe/desk/form/load.py +46,Did not load,Tidak memuat
apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Menambahkan Baris
@@ -1354,6 +1359,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Dokumen-dokumen tertentu, seperti Faktur, tidak boleh berubah sekali final. Keadaan akhir untuk dokumen tersebut disebut Dikirim. Anda dapat membatasi peran yang dapat Submit."
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Anda tidak diizinkan untuk mengekspor laporan ini
apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 item yang dipilih
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> Tidak ada hasil yang ditemukan untuk ' </p>
DocType: Newsletter,Test Email Address,Uji Alamat Email
DocType: ToDo,Sender,Pengirim
DocType: GSuite Settings,Google Apps Script,Skrip Google Apps
@@ -1462,7 +1468,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Ple
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Memuat Laporan
apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Langganan Anda akan berakhir hari ini.
DocType: Page,Standard,Standar
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Lampirkan Berkas
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,Lampirkan Berkas
apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,Sandi Perbarui Pemberitahuan
apps/frappe/frappe/desk/page/backups/backups.html +13,Size,Ukuran
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,Tugas Lengkap
@@ -1492,7 +1498,7 @@ apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversat
apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Pilihan tidak diatur untuk bidang tautan {0}
DocType: Customize Form,"Must be of type ""Attach Image""",Harus dari jenis &quot;Lampirkan Gambar&quot;
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,batalkan Semua
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Anda tidak bisa diset &#39;Read Only&#39; untuk bidang {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +199,You cannot unset 'Read Only' for field {0},Anda tidak bisa diset &#39;Read Only&#39; untuk bidang {0}
DocType: Auto Email Report,Zero means send records updated at anytime,Nol berarti mengirim catatan diperbarui kapan saja
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +22,Complete Setup,Pengaturan Lengkap
DocType: Workflow State,asterisk,asterisk
@@ -1506,7 +1512,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +98,Week,Minggu
DocType: Social Login Keys,Google,Google
DocType: Email Domain,Example Email Address,Misalnya Alamat Email
apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,sebagian Digunakan
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Unsubscribe from Newsletter,Berhenti berlangganan dari Newsletter
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe from Newsletter,Berhenti berlangganan dari Newsletter
apps/frappe/frappe/www/login.html +101,Forgot Password,Lupa kata sandi
DocType: Dropbox Settings,Backup Frequency,backup Frekuensi
DocType: Workflow State,Inverse,Terbalik
@@ -1584,10 +1590,11 @@ apps/frappe/frappe/config/setup.py +209,"Actions for workflow (e.g. Approve, Can
DocType: Workflow State,flag,tanda
apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +57,Feedback Request is already sent to user,Masukan Permintaan sudah dikirim ke pengguna
DocType: Web Page,Text Align,Teks Align
apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Nama tidak boleh berisi karakter khusus seperti {0}
apps/frappe/frappe/model/naming.py +185,Name cannot contain special characters like {0},Nama tidak boleh berisi karakter khusus seperti {0}
DocType: Contact Us Settings,Forward To Email Address,Forward Ke Alamat Email
apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Tampilkan semua data
apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Judul lapangan harus fieldname valid
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,Akun Email tidak disiapkan Buat Akun Email baru dari Setup&gt; Email&gt; Email Account
apps/frappe/frappe/config/core.py +7,Documents,Docuements
DocType: Email Flag Queue,Is Completed,Apakah selesai
apps/frappe/frappe/www/me.html +22,Edit Profile,Edit Profile
@@ -1597,7 +1604,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi
myfield
eval:doc.myfield=='My Value'
eval:doc.age&gt;18",Bidang ini hanya akan muncul jika fieldname didefinisikan di sini memiliki nilai OR aturan yang benar (contoh): MyField eval: doc.myfield == &#39;Nilai saya&#39; eval: doc.age&gt; 18
apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Hari ini
apps/frappe/frappe/public/js/frappe/form/control.js +764,Today,Hari ini
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Setelah Anda telah mengatur ini, pengguna hanya akan bisa mengakses dokumen (misalnya Blog Post) di mana link yang ada (misalnya Blogger)."
DocType: Error Log,Log of Scheduler Errors,Log Kesalahan Scheduler
DocType: User,Bio,Bio
@@ -1656,7 +1663,7 @@ DocType: Print Format,Js,js
apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Pilih Print Format
apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,pola keyboard pendek mudah ditebak
DocType: Portal Settings,Portal Menu,Portal menu
apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Panjang {0} harus antara 1 dan 1000
apps/frappe/frappe/model/db_schema.py +115,Length of {0} should be between 1 and 1000,Panjang {0} harus antara 1 dan 1000
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,Cari untuk apapun
DocType: DocField,Print Hide,Cetak Sembunyikan
apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,Masukkan Nilai
@@ -1709,8 +1716,7 @@ apps/frappe/frappe/model/document.py +564,Cannot change docstatus from 0 to 2,Ti
DocType: User Permission for Page and Report,Roles Permission,peran Izin
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Perbarui
DocType: Error Snapshot,Snapshot View,Snapshot View
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Harap menyimpan Newsletter sebelum dikirim
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} tahun yang lalu
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +101,Please save the Newsletter before sending,Harap menyimpan Newsletter sebelum dikirim
apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Pilihan harus DocType valid untuk bidang {0} berturut-turut {1}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Edit Properties
DocType: Patch Log,List of patches executed,Daftar patch dieksekusi
@@ -1728,7 +1734,7 @@ apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Sandi Pembarua
DocType: Workflow State,trash,sampah
DocType: System Settings,Older backups will be automatically deleted,backup yang lebih tua akan dihapus secara otomatis
DocType: Event,Leave blank to repeat always,Biarkan kosong untuk mengulang selalu
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +192,Confirmed,Dikonfirmasi
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,Confirmed,Dikonfirmasi
DocType: Event,Ends on,Berakhir pada
DocType: Payment Gateway,Gateway,Gerbang
apps/frappe/frappe/public/js/frappe/form/linked_with.js +116,Not enough permission to see links,Tidak cukup izin untuk melihat link
@@ -1759,7 +1765,6 @@ DocType: Contact,Purchase Manager,Manajer Pembelian
DocType: Custom Script,Sample,Sampel
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Berkatagori Tags
DocType: Event,Every Week,Setiap Minggu
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,Akun email tidak di setup Buat Akun Email baru dari Setup&gt; Email&gt; Email Account
apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Klik di sini untuk memeriksa penggunaan Anda atau meng-upgrade ke rencana yang lebih tinggi
DocType: Custom Field,Is Mandatory Field,Apakah Lapangan Wajib
DocType: User,Website User,Website User
@@ -1767,7 +1772,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +10,Not equals,T
DocType: Integration Request,Integration Request Service,Integrasi Permintaan Layanan
DocType: Website Script,Script to attach to all web pages.,Script untuk melampirkan semua halaman web.
DocType: Web Form,Allow Multiple,Izinkan Beberapa
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +40,Assign,Menetapkan
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +44,Assign,Menetapkan
apps/frappe/frappe/config/setup.py +102,Import / Export Data from .csv files.,Impor / Ekspor Data dari. File csv.
DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Hanya Kirim Rekor yang Diperbarui pada Jam Terakhir X
DocType: Communication,Feedback,Umpan balik
@@ -1847,7 +1852,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,sisa
apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Silakan simpan sebelum memasang.
apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Ditambahkan {0} ({1})
apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},tema default diatur dalam {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype tidak dapat diubah dari {0} ke {1} di baris {2}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +325,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype tidak dapat diubah dari {0} ke {1} di baris {2}
apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,Izin peran
DocType: Help Article,Intermediate,Menengah
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Bisa Baca
@@ -1862,9 +1867,9 @@ apps/frappe/frappe/core/doctype/user/user.js +42,Refreshing...,Refreshing ...
DocType: Event,Starts on,Mulai dari
DocType: System Settings,System Settings,Pengaturan Sistem
apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Sesi Mulai Gagal
apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Email ini dikirim ke {0} dan disalin ke {1}
apps/frappe/frappe/email/queue.py +470,This email was sent to {0} and copied to {1},Email ini dikirim ke {0} dan disalin ke {1}
DocType: Workflow State,th,th
apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Buat baru {0}
apps/frappe/frappe/public/js/frappe/form/control.js +1517,Create a new {0},Buat baru {0}
DocType: Email Rule,Is Spam,Apakah Spam
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Laporan {0}
apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Terbuka {0}
@@ -1876,12 +1881,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon a
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,Duplikat
DocType: Newsletter,Create and Send Newsletters,Membuat dan Kirim Nawala
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date must be before To Date,Dari Tanggal harus sebelum To Date
DocType: Address,Andaman and Nicobar Islands,Kepulauan Andaman dan Nicobar
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +216,GSuite Document,Dokumen GSuite
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +29,Please specify which value field must be checked,Silakan tentukan mana bidang nilai harus diperiksa
apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"""Parent"" signifies the parent table in which this row must be added","""Induk"" menandakan tabel induk di mana baris ini harus ditambahkan"
DocType: Website Theme,Apply Style,Terapkan Gaya
DocType: Feedback Request,Feedback Rating,Masukan Penilaian
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared With,Bersama Dengan
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Bersama Dengan
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Setup&gt; User Permissions Manager
DocType: Help Category,Help Articles,Bantuan Artikel
,Modules Setup,Modul Pengaturan
apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Jenis:
@@ -1912,7 +1919,7 @@ DocType: OAuth Client,App Client ID,Aplikasi Client ID
DocType: Kanban Board,Kanban Board Name,Nama kanban Dewan
DocType: Email Alert Recipient,"Expression, Optional","Expression, Opsional"
DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,Copy dan paste kode ini ke dalam dan kosongkan Code.gs di proyek Anda di script.google.com
apps/frappe/frappe/email/queue.py +456,This email was sent to {0},Email ini dikirim ke {0}
apps/frappe/frappe/email/queue.py +472,This email was sent to {0},Email ini dikirim ke {0}
DocType: DocField,Remember Last Selected Value,Ingat Nilai Dipilih terakhir
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +334,Please select Document Type,Silahkan pilih Document Type
DocType: Email Account,Check this to pull emails from your mailbox,Periksa ini untuk menarik email dari kotak surat Anda
@@ -1927,6 +1934,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,Opsi
DocType: Feedback Trigger,Email Field,email Lapangan
apps/frappe/frappe/www/update-password.html +59,New Password Required.,Password Baru Diperlukan.
apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} berbagi dokumen ini dengan {1}
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Setup&gt; Pengguna
DocType: Website Settings,Brand Image,brand Image
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Setup atas bar navigasi, footer dan logo."
@@ -1994,8 +2002,8 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa
apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Tidak dapat membaca format file untuk {0}
DocType: Auto Email Report,Filter Data,Filter Data
apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Menambahkan tag
apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Harap melampirkan file pertama.
apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Ada beberapa kesalahan pengaturan nama, silahkan hubungi administrator"
apps/frappe/frappe/public/js/frappe/form/control.js +1335,Please attach a file first.,Harap melampirkan file pertama.
apps/frappe/frappe/model/naming.py +174,"There were some errors setting the name, please contact the administrator","Ada beberapa kesalahan pengaturan nama, silahkan hubungi administrator"
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Akun email masuk tidak benar
apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \
Please enter a valid email address so that we can get back.",Anda tampaknya telah menulis nama Anda dan bukan email Anda. \ Silahkan masukkan alamat email yang valid agar kami bisa kembali.
@@ -2047,7 +2055,6 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N
DocType: Custom DocPerm,Create,Buat
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Filter tidak valid: {0}
DocType: Email Account,no failed attempts,upaya tidak gagal
apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,Tidak ada Kerangka Alamat default yang ditemukan. Buat yang baru dari Setup&gt; Printing and Branding&gt; Address Template.
DocType: GSuite Settings,refresh_token,Refresh_token
DocType: Dropbox Settings,App Access Key,Aplikasi Access Key
DocType: OAuth Bearer Token,Access Token,Akses Token
@@ -2073,6 +2080,7 @@ apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl +
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Membuat baru {0}
apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,Akun Email Baru
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +28,Document Restored,Dokumen dipulihkan
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +203,You can't set 'Options' for field {0},Anda tidak dapat menyetel &#39;Pilihan&#39; untuk bidang {0}
apps/frappe/frappe/core/page/usage_info/usage_info.html +86,Size (MB),Ukuran (MB)
DocType: Help Article,Author,Penulis
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +10,Resume Sending,Lanjutkan Mengirim
@@ -2082,7 +2090,7 @@ DocType: Print Settings,Monochrome,Satu warna
DocType: Address,Purchase User,Pembelian Pengguna
DocType: Workflow,"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.","Berbeda ""Negara"" dokumen ini dapat eksis masuk Like ""Open"", ""Menunggu Persetujuan"" dll"
apps/frappe/frappe/utils/verified_command.py +43,This link is invalid or expired. Please make sure you have pasted correctly.,Link ini tidak valid atau kedaluwarsa. Pastikan Anda telah disisipkan dengan benar.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> telah berhasil berhenti berlangganan dari milis ini.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +136,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> telah berhasil berhenti berlangganan dari milis ini.
DocType: Web Page,Slideshow,Rangkai Salindia
apps/frappe/frappe/contacts/doctype/address_template/address_template.py +31,Default Address Template cannot be deleted,Template Default Address tidak bisa dihapus
DocType: Contact,Maintenance Manager,Manajer Pemeliharaan
@@ -2103,7 +2111,7 @@ apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a r
DocType: System Settings,Apply Strict User Permissions,Terapkan Izin Pengguna yang Ketat
DocType: DocField,Allow Bulk Edit,Izinkan Edit Massal
DocType: Blog Post,Blog Post,Posting Blog
apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Pencarian Lanjutan
apps/frappe/frappe/public/js/frappe/form/control.js +1527,Advanced Search,Pencarian Lanjutan
apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Sandi instruksi ulang telah dikirim ke email Anda
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \
higher levels for field level permissions.","Level 0 adalah untuk perizinan tingkat dokumen, \ tingkat yang lebih tinggi untuk izin tingkat lapangan."
@@ -2128,13 +2136,13 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new re
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Pencarian
DocType: Currency,Fraction,Pecahan
DocType: LDAP Settings,LDAP First Name Field,LDAP Nama Field Pertama
apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Pilih dari lampiran yang ada
apps/frappe/frappe/public/js/frappe/form/control.js +1085,Select from existing attachments,Pilih dari lampiran yang ada
DocType: Custom Field,Field Description,Bidang Deskripsi
apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Name tidak diatur melalui Prompt
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,email Inbox
DocType: Auto Email Report,Filters Display,filter Tampilan
DocType: Website Theme,Top Bar Color,Top Bar Warna
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Do you want to unsubscribe from this mailing list?,Apakah Anda ingin berhenti berlangganan dari milis ini?
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Do you want to unsubscribe from this mailing list?,Apakah Anda ingin berhenti berlangganan dari milis ini?
DocType: Address,Plant,Tanaman
apps/frappe/frappe/core/doctype/communication/communication.js +65,Reply All,Membalas semua
DocType: DocType,Setup,Pengaturan
@@ -2177,7 +2185,7 @@ DocType: User,Send Notifications for Transactions I Follow,Kirim Notifikasi Tran
apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Tidak dapat mengatur Pengajuan, Pembatalan, Perubahan tanpa Pencatatan"
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Apakah Anda yakin ingin menghapus lampiran?
apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} <a href=""#Form/{0}/{1}"">{1}</a> is linked with {2} <a href=""#Form/{2}/{3}"">{3}</a>","Tidak dapat menghapus atau membatalkan karena {0} <a href=""#Form/{0}/{1}"">{1}</a> terkait dengan {2} <a href=""#Form/{2}/{3}"">{3}</a>"
apps/frappe/frappe/__init__.py +1062,Thank you,Terima kasih
apps/frappe/frappe/__init__.py +1070,Thank you,Terima kasih
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Hemat
DocType: Print Settings,Print Style Preview,Print Style Preview
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
@@ -2192,7 +2200,7 @@ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Tambahka
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Sr Tidak
,Role Permissions Manager,Permissions Peran Manajer
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Nama Print Format baru
apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Bersihkan Lampiran
apps/frappe/frappe/public/js/frappe/form/control.js +1087,Clear Attachment,Bersihkan Lampiran
apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Wajib:
,User Permissions Manager,Permissions User Manager
DocType: Property Setter,New value to be set,Nilai baru yang akan ditetapkan
@@ -2217,7 +2225,7 @@ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment C
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,Log Kesalahan jelas
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,Silakan pilih rating
DocType: Email Account,Notify if unreplied for (in mins),Beritahu jika unreplied untuk (dalam menit)
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 hari lalu
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +501,2 days ago,2 hari lalu
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Mengkategorikan posting blog.
DocType: Workflow State,Time,Durasi
DocType: DocField,Attach,Melampirkan
@@ -2233,6 +2241,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Ukuran B
DocType: GSuite Templates,Template Name,Nama template
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,jenis baru dokumen
DocType: Custom DocPerm,Read,Membaca
DocType: Address,Chhattisgarh,Chhattisgarh
DocType: Role Permission for Page and Report,Role Permission for Page and Report,Peran Izin Page dan Laporan
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,menyelaraskan Nilai
apps/frappe/frappe/www/update-password.html +14,Old Password,Password Lama
@@ -2280,7 +2289,7 @@ apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your ema
can get back to you. Thanks!","Ketikkan kedua email dan pesan sehingga kita \
bisa kembali kepada Anda. Terima kasih!"
apps/frappe/frappe/email/smtp.py +170,Could not connect to outgoing email server,Tidak dapat terhubung ke server email keluar
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +162,Thank you for your interest in subscribing to our updates,Terima kasih atas minat Anda untuk berlangganan update kami
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Thank you for your interest in subscribing to our updates,Terima kasih atas minat Anda untuk berlangganan update kami
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Custom Column,Kolom kustom
DocType: Workflow State,resize-full,mengubah ukuran-penuh
DocType: Workflow State,off,lepas
@@ -2343,7 +2352,7 @@ DocType: Address,Telangana,Telangana
apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Default untuk {0} harus menjadi pilihan
DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategori
DocType: User,User Image,KOSONG
apps/frappe/frappe/email/queue.py +289,Emails are muted,Email akan dinonaktifkan
apps/frappe/frappe/email/queue.py +304,Emails are muted,Email akan dinonaktifkan
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + Up
DocType: Website Theme,Heading Style,Heading Style
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +183,A new Project with this name will be created,Sebuah Proyek baru dengan nama ini akan dibuat
@@ -2560,7 +2569,6 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,bel
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Kesalahan dalam Email Alert
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Bagi dokumen ini dengan
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Setup&gt; User Permissions Manager
apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} tidak bisa menjadi node tumpuan karena memiliki anak-anak
DocType: Communication,Info,Info
apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Tambahkan sisipan
@@ -2615,7 +2623,7 @@ apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,Cetak Form
DocType: Email Alert,Send days before or after the reference date,Kirim hari sebelum atau setelah tanggal referensi
DocType: User,Allow user to login only after this hour (0-24),Memungkinkan pengguna untuk login hanya setelah jam ini (0-24)
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,Nilai
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +165,Click here to verify,Klik di sini untuk memverifikasi
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +166,Click here to verify,Klik di sini untuk memverifikasi
apps/frappe/frappe/utils/password_strength.py +178,Predictable substitutions like '@' instead of 'a' don't help very much.,substitusi diprediksi seperti &#39;@&#39; bukan &#39;a&#39; tidak membantu banyak.
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Ditugaskan Olehku
apps/frappe/frappe/utils/data.py +462,Zero,Nol
@@ -2627,6 +2635,7 @@ DocType: ToDo,Priority,Prioritas
DocType: Email Queue,Unsubscribe Param,Unsubscribe Param
DocType: Auto Email Report,Weekly,Mingguan
DocType: Communication,In Reply To,In Reply Untuk
apps/frappe/frappe/contacts/doctype/address/address.py +189,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,Tidak ada Kerangka Alamat default yang ditemukan. Buat yang baru dari Setup&gt; Printing and Branding&gt; Address Template.
DocType: DocType,Allow Import (via Data Import Tool),Memungkinkan Impor (melalui Alat Import Data)
apps/frappe/frappe/templates/print_formats/standard_macros.html +30,Sr,sr
DocType: DocField,Float,Mengapung
@@ -2717,7 +2726,6 @@ apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Batas tidak valid {0}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Daftar jenis dokumen
DocType: Event,Ref Type,Ref Type
apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Jika Anda meng-upload catatan baru, meninggalkan ""nama"" (ID) kolom kosong."
DocType: Address,Chattisgarh,Chattisgarh
apps/frappe/frappe/config/core.py +47,Errors in Background Events,Kesalahan dalam Latar Belakang Acara
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,Tidak ada dari Kolom
DocType: Workflow State,Calendar,Kalender
@@ -2749,7 +2757,7 @@ apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Tugas
DocType: Integration Request,Remote,Terpencil
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Menghitung
apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Silakan pilih DOCTYPE pertama
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Konfirmasi Email Anda
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +174,Confirm Your Email,Konfirmasi Email Anda
apps/frappe/frappe/www/login.html +42,Or login with,Atau login dengan
DocType: Error Snapshot,Locals,Penduduk setempat
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Dikomunikasikan melalui {0} pada {1}: {2}
@@ -2766,7 +2774,7 @@ DocType: Web Page,Web Page,Halaman web
DocType: Blog Category,Blogger,Blogger
apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},&#39;Di Global Search&#39; tidak diizinkan untuk mengetik {0} pada baris {1}
apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Lihat Daftar
apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Tanggal harus dalam format: {0}
apps/frappe/frappe/public/js/frappe/form/control.js +810,Date must be in format: {0},Tanggal harus dalam format: {0}
DocType: Workflow,Don't Override Status,Jangan Override Status
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Tolong beri rating.
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Masukan Permintaan
@@ -2799,7 +2807,7 @@ DocType: Custom DocPerm,Report,Laporan
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Jumlah harus lebih besar dari 0.
apps/frappe/frappe/desk/reportview.py +107,{0} is saved,{0} telah disimpan
apps/frappe/frappe/core/doctype/user/user.py +327,User {0} cannot be renamed,Pengguna {0} tidak dapat diganti
apps/frappe/frappe/model/db_schema.py +107,Fieldname is limited to 64 characters ({0}),Fieldname dibatasi 64 karakter ({0})
apps/frappe/frappe/model/db_schema.py +108,Fieldname is limited to 64 characters ({0}),Fieldname dibatasi 64 karakter ({0})
apps/frappe/frappe/config/desk.py +59,Email Group List,Email Daftar Grup
DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],File icon dengan ekstensi .ico. Harus 16 x 16 px. Dihasilkan menggunakan generator favicon. [favicon-generator.org]
DocType: Auto Email Report,Format,Format
@@ -2877,7 +2885,7 @@ DocType: Website Settings,Title Prefix,Judul Prefix
DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Pemberitahuan dan kiriman bulk akan dikirim dari server keluar ini.
DocType: Workflow State,cog,gigi
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on Migrate,Sinkronisasi di Migrasi
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Saat Melihat
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Currently Viewing,Saat Melihat
DocType: DocField,Default,Standar
apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} ditambahkan
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Cari &#39;{0}&#39;
@@ -2937,7 +2945,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +771,Report was
DocType: Print Settings,Print Style,Print Style
apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,Tidak terkait dengan catatan apapun
DocType: Custom DocPerm,Import,Impor
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +178,Row {0}: Not allowed to enable Allow on Submit for standard fields,Baris {0}: Tidak diizinkan untuk mengaktifkan Memungkinkan Submit untuk bidang standar
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +180,Row {0}: Not allowed to enable Allow on Submit for standard fields,Baris {0}: Tidak diizinkan untuk mengaktifkan Memungkinkan Submit untuk bidang standar
apps/frappe/frappe/config/setup.py +100,Import / Export Data,Impor / Export Data
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,Peran standar tidak dapat diganti
DocType: Communication,To and CC,Untuk dan CC
@@ -2964,7 +2972,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo
DocType: Auto Email Report,Filter Meta,Filter Meta
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,Teks yang akan ditampilkan untuk Link ke Halaman Web jika formulir ini memiliki halaman web. Link rute akan secara otomatis dihasilkan berdasarkan `page_name` dan` parent_website_route`
DocType: Feedback Request,Feedback Trigger,Masukan Pemicu
apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Silakan set {0} pertama
apps/frappe/frappe/public/js/frappe/form/control.js +1741,Please set {0} first,Silakan set {0} pertama
DocType: Unhandled Email,Message-id,Pesan-id
DocType: Patch Log,Patch,Tambalan
DocType: Async Task,Failed,Gagal


+ 72
- 64
frappe/translations/is.csv Datei anzeigen

@@ -14,8 +14,9 @@ apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,Þ
DocType: User,Facebook Username,Facebook Notandanafn
DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Ath: Margar fundur verður leyft að ræða farsíma
apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Virkt Innhólfið fyrir notandann {notendur}
apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Ekki er hægt að senda þennan tölvupóst. Þú hefur farið yfir sendingu mörk {0} tölvupósti fyrir þennan mánuð.
apps/frappe/frappe/email/queue.py +225,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Ekki er hægt að senda þennan tölvupóst. Þú hefur farið yfir sendingu mörk {0} tölvupósti fyrir þennan mánuð.
apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Varanlega Senda {0}?
apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,Sækja skrá af fjarlægri tölvu
DocType: Address,County,County
DocType: Workflow,If Checked workflow status will not override status in list view,Ef hakað workflow staða mun ekki forgang stöðu í listayfirliti
apps/frappe/frappe/client.py +280,Invalid file path: {0},Ógild skrá Slóð: {0}
@@ -80,10 +81,10 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Stillinga
apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Stjórnandi innskráður
DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Samskiptakostir, eins og &quot;Velta fyrirspurn, Support Fyrirspurn&quot; osfrv hver á nýja línu eða aðskilin með kommum."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Sækja
apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Setja inn
apps/frappe/frappe/public/js/frappe/form/control.js +1979,Insert,Setja inn
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Veldu {0}
DocType: Print Settings,Classic,Classic
DocType: Desktop Icon,Color,Litur
DocType: DocField,Color,Litur
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +54,For ranges,fyrir svið
DocType: Workflow State,indent-right,inndráttur hægri
DocType: Has Role,Has Role,hefur hlutverki
@@ -100,7 +101,7 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To impor
DocType: DocType,Default Print Format,Sjálfgefið Prenta Format
DocType: Workflow State,Tags,Tags
apps/frappe/frappe/public/js/frappe/form/workflow.js +33,None: End of Workflow,Ekkert: Lok Workflow
apps/frappe/frappe/model/db_schema.py +346,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} reit er ekki hægt að setja eins og einstök í {1}, þar sem það eru ekki einstök fyrirliggjandi gildi"
apps/frappe/frappe/model/db_schema.py +347,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} reit er ekki hægt að setja eins og einstök í {1}, þar sem það eru ekki einstök fyrirliggjandi gildi"
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +47,Document Types,skjal Tegundir
DocType: Address,Jammu and Kashmir,Jammu og Kashmir
DocType: Workflow,Workflow State Field,Workflow State Field
@@ -231,7 +232,7 @@ DocType: Workflow,Transition Rules,umskipti Reglur
apps/frappe/frappe/core/doctype/report/report.js +11,Example:,Dæmi:
DocType: Workflow,Defines workflow states and rules for a document.,Skilgreinir workflow ríki og reglur um skjal.
DocType: Workflow State,Filter,Sía
apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},FIELDNAME {0} getur ekki hafa sérstaka stafi eins {1}
apps/frappe/frappe/model/db_schema.py +564,Fieldname {0} cannot have special characters like {1},FIELDNAME {0} getur ekki hafa sérstaka stafi eins {1}
apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Uppfæra marga gildi í einu.
apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Villa: Skjal hefur verið breytt eftir að þú hefur opnað hana
apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} innskráð út: {1}
@@ -260,7 +261,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Fá heimsví
apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Áskriftin þín rann {0}. Að endurnýja, {1}."
DocType: Workflow State,plus-sign,plús-merki
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Skipulag þegar lokið
apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} er ekki uppsett
apps/frappe/frappe/__init__.py +897,App {0} is not installed,App {0} er ekki uppsett
DocType: Workflow State,Refresh,Uppfæra
DocType: Event,Public,Public
apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Ekkert til að sýna
@@ -339,7 +340,6 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Breyta fyrirsögn
DocType: File,File URL,File URL
DocType: Version,Table HTML,Tafla HTML
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> Engar niðurstöður fundust fyrir ' </p>
apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Bæta Áskrifandi
apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Næstu viðburðir í dag
DocType: Email Alert Recipient,Email By Document Field,Netfang By Document Field
@@ -404,7 +404,6 @@ DocType: Desktop Icon,Link,Link
apps/frappe/frappe/utils/file_manager.py +96,No file attached,Engin skrá viðhengi
DocType: Version,Version,útgáfa
DocType: User,Fill Screen,fylla skjáinn
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,Vinsamlegast settu upp sjálfgefið tölvupóstreikning frá uppsetningu&gt; Email&gt; Email Account
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Ekki er hægt að birta þetta tré skýrslu, vegna þess að vantar gögn. Líklegast, það er verið síað út vegna heimildir."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Veldu File
apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Breyta um Senda
@@ -474,9 +473,9 @@ DocType: User,Reset Password Key,Endurstilla lykilorð Key
DocType: Email Account,Enable Auto Reply,Virkja sjálfvirka svar
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,ekki séð
DocType: Workflow State,zoom-in,stækka í
apps/frappe/frappe/email/queue.py +219,Unsubscribe from this list,Segja upp áskrift að þessum lista
apps/frappe/frappe/email/queue.py +234,Unsubscribe from this list,Segja upp áskrift að þessum lista
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Reference DocType and Reference Name are required,Tilvísun DOCTYPE og tilvísun Name þarf
apps/frappe/frappe/utils/jinja.py +35,Syntax error in template,Málskipanarvilla í sniðmáti
apps/frappe/frappe/utils/jinja.py +51,Syntax error in template,Málskipanarvilla í sniðmáti
DocType: DocField,Width,breidd
DocType: Email Account,Notify if unreplied,Tilkynna ef unreplied
DocType: System Settings,Minimum Password Score,Lágmarks Lykilorðsstig
@@ -560,6 +559,7 @@ DocType: Custom Field,Select the label after which you want to insert new field.
DocType: User,Last Login,Last Login
apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},FIELDNAME er krafist í röð {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,dálkur
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,Vinsamlegast settu upp sjálfgefið tölvupóstreikning frá uppsetningu&gt; tölvupósti&gt; tölvupóstreikning
DocType: Custom Field,Adds a custom field to a DocType,Bætir við sérsniðnu svæði til DOCTYPE
DocType: File,Is Home Folder,Er Home Folder
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} er ekki gilt netfang
@@ -567,7 +567,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +733,Select atleast 1 reco
apps/frappe/frappe/core/doctype/has_role/has_role.py +13,User '{0}' already has the role '{1}',User &#39;{0}&#39; þegar hefur það hlutverk &#39;{1}&#39;
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,Hlaða og Sync
apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Deilt með {0}
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe,afskrá
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +132,Unsubscribe,afskrá
DocType: Communication,Reference Name,Tilvísun Name
apps/frappe/frappe/public/js/frappe/toolbar.js +30,Chat Support,chat Stuðningur
DocType: Error Snapshot,Exception,undantekning
@@ -585,7 +585,7 @@ DocType: Email Group,Newsletter Manager,Fréttabréf Manager
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,valkostur 1
apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} til {1}
apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Ur villa á beiðnum.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} hefur verið bætt við Email Group.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +194,{0} has been successfully added to the Email Group.,{0} hefur verið bætt við Email Group.
DocType: Address,Uttar Pradesh,Uttar Pradesh
DocType: Address,Pondicherry,Pondicherry
apps/frappe/frappe/public/js/frappe/upload.js +364,Make file(s) private or public?,Gera skrá (r) einkarekið eða opinbert?
@@ -616,7 +616,7 @@ DocType: Portal Settings,Portal Settings,Portal Stillingar
DocType: Web Page,0 is highest,0 er hæst
apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Ertu viss um að þú viljir Tengdu þessa orðsendingu til {0}?
apps/frappe/frappe/www/login.html +104,Send Password,Senda lykilorð
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +45,Attachments,viðhengi
DocType: Email Queue,Attachments,viðhengi
apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,Þú hefur ekki heimildir til að opna þetta skjal
DocType: Language,Language Name,Tungumál Name
DocType: Email Group Member,Email Group Member,Sendu hópmeðlimur
@@ -646,7 +646,7 @@ apps/frappe/frappe/utils/password_strength.py +78,Try to use a longer keyboard p
DocType: Feedback Trigger,Check Communication,Athugaðu Samskipti
DocType: Address,Rajasthan,Rajasthan
apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Report Builder skýrslur eru stjórnað beint af skýrslu byggir. Ekkert að gera.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Vinsamlegast staðfestu netfangið þitt
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +164,Please verify your Email Address,Vinsamlegast staðfestu netfangið þitt
apps/frappe/frappe/model/document.py +903,none of,ekkert af
apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Senda mér afrit
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Hlaða heimildir notanda
@@ -657,7 +657,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Si
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban Board {0} er ekki til.
apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} ert að lesa þetta skjal
DocType: ToDo,Assigned By Full Name,Úthlutað undir fullu nafni
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} uppfærð
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} uppfærð
apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Skýrslan er ekki hægt að setja fyrir Single tegundir
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} dagar síðan
DocType: Email Account,Awaiting Password,bíður Lykilorð
@@ -682,7 +682,7 @@ DocType: Workflow State,Stop,Hættu
DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Tengill á síðuna sem þú vilt opna. Skildu eftir autt ef þú vilt gera það hópur foreldri.
DocType: DocType,Is Single,er Single
apps/frappe/frappe/core/doctype/user/user.py +720,Sign Up is disabled,Skráning er óvirkur
apps/frappe/frappe/email/queue.py +278,{0} has left the conversation in {1} {2},{0} hefur yfirgefið samtalið í {1} {2}
apps/frappe/frappe/email/queue.py +293,{0} has left the conversation in {1} {2},{0} hefur yfirgefið samtalið í {1} {2}
DocType: Blogger,User ID of a Blogger,User ID á Blogger
apps/frappe/frappe/core/doctype/user/user.py +287,There should remain at least one System Manager,Það ætti að vera að minnsta kosti einn System Manager
DocType: GSuite Settings,Authorization Code,heimild Code
@@ -728,6 +728,7 @@ DocType: Event,Event,Event
apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Á {0}, {1} skrifaði:"
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,Ekki hægt að eyða stöðluðu sviði. Hægt er að fela það ef þú vilt
DocType: Top Bar Item,For top bar,Fyrir toppur bar
apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,Í biðröð fyrir öryggisafrit. Þú færð tölvupóst með niðurhalslóðinni
apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Gat ekki þekkja {0}
DocType: Address,Address,Heimilisfang
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +3,Payment Failed,greiðsla mistókst
@@ -752,13 +753,13 @@ DocType: Web Form,Allow Print,leyfa Prenta
apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Ekkert forrit uppsett
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Merktu vellinum Nauðsynlegur
DocType: Communication,Clicked,smellt
apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Engin heimild til að &#39;{0}&#39; {1}
apps/frappe/frappe/public/js/legacy/form.js +950,No permission to '{0}' {1},Engin heimild til að &#39;{0}&#39; {1}
DocType: User,Google User ID,Google User ID
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Áætlunarferðir til að senda
DocType: DocType,Track Seen,Track Séð
apps/frappe/frappe/desk/form/utils.py +55,This method can only be used to create a Comment,Þessi aðferð er aðeins hægt að nota til að búa a Athugasemd
DocType: Event,orange,appelsínugulur
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,No {0} found,Engin {0} fannst
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +558,No {0} found,Engin {0} fannst
apps/frappe/frappe/config/setup.py +242,Add custom forms.,Bæta sérsniðnum form.
apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} í {2}
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +419,submitted this document,lögð þessu skjali
@@ -788,6 +789,7 @@ DocType: Newsletter Email Group,Newsletter Email Group,Fréttabréf Email Group
DocType: Dropbox Settings,Integrations,Integrations
DocType: DocField,Section Break,Hluti Break
DocType: Address,Warehouse,Vöruhús
DocType: Address,Other Territory,Annað svæði
,Messages,skilaboð
apps/frappe/frappe/desk/page/applications/applications.js +49,Portal,Portal
DocType: Email Account,Use Different Email Login ID,Notaðu annað netfangið þitt
@@ -818,6 +820,7 @@ apps/frappe/frappe/utils/data.py +556,1 month ago,1 mánuður síðan
DocType: Contact,User ID,notandanafn
DocType: Communication,Sent,sendir
DocType: Address,Kerala,Kerala
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} ári (s) síðan
DocType: File,Lft,Lft
DocType: User,Simultaneous Sessions,samtímis Sessions
DocType: OAuth Client,Client Credentials,viðskiptavinur persónuskilríki
@@ -834,7 +837,7 @@ DocType: Email Queue,Unsubscribe Method,afskrá Aðferð
DocType: GSuite Templates,Related DocType,Tengd skjalgerð
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Breyta til að bæta við efni
apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Select Tungumál
apps/frappe/frappe/__init__.py +509,No permission for {0},Engin heimild fyrir {0}
apps/frappe/frappe/__init__.py +517,No permission for {0},Engin heimild fyrir {0}
DocType: DocType,Advanced,Ítarlegri
apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Virðast API lykil eða API Secret er rangt !!!
apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Tilvísun: {0} {1}
@@ -845,6 +848,7 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P
DocType: Email Account,Yahoo Mail,Yahoo póstur
apps/frappe/frappe/limits.py +75,Your subscription will expire tomorrow.,Áskriftin mun renna út á morgun.
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +483,Saved!,Vistuð!
apps/frappe/frappe/public/js/frappe/form/control.js +729,{0} is not a valid hex color,{0} er ekki gildur sex litur
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,Frú
apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Uppfært {0}: {1}
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,Master
@@ -872,7 +876,7 @@ DocType: Report,Disabled,Fatlaðir
DocType: Workflow State,eye-close,auga-loka
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth Provider Stillingar
apps/frappe/frappe/config/setup.py +254,Applications,Umsóknir
apps/frappe/frappe/public/js/frappe/request.js +347,Report this issue,Tilkynna þetta mál
apps/frappe/frappe/public/js/frappe/request.js +349,Report this issue,Tilkynna þetta mál
apps/frappe/frappe/public/js/frappe/form/save.js +79,Name is required,Nafnið er krafist
DocType: Custom Script,Adds a custom script (client or server) to a DocType,Bætir sérsniðna handrit (viðskiptavinur eða miðlara) til DOCTYPE
DocType: Address,City/Town,City / Town
@@ -966,6 +970,7 @@ DocType: Currency,**Currency** Master,** Gjaldmiðill ** Master
DocType: Email Account,No of emails remaining to be synced,Engin tölvupósta eftir að samstilla
apps/frappe/frappe/public/js/frappe/upload.js +203,Uploading,Upphleðsla
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,Vinsamlegast vista skjalið áður en ráðning
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,Smelltu hér til að senda inn galla og tillögur
DocType: Website Settings,Address and other legal information you may want to put in the footer.,Heimilisfang og aðrar lagalegar upplýsingar sem þú vilt kannski að setja á fót.
DocType: Website Sidebar Item,Website Sidebar Item,Vefsíða Sidebar Item
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +44,{0} records updated,{0} færslur uppfærð
@@ -979,12 +984,10 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,ljóst
apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Á hverjum degi atburðir ættu að klára á sama degi.
DocType: Communication,User Tags,User Tags
apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Að nálgast myndir ..
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Uppsetning&gt; Notandi
DocType: Workflow State,download-alt,sækja-alt
apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Sæki App {0}
DocType: Communication,Feedback Request,athugasemdir Beiðni
apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,Eftirfarandi reitir vantar:
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Experimental Feature,Experimental Lögun
apps/frappe/frappe/www/login.html +30,Sign in,Skráðu þig inn
DocType: Web Page,Main Section,Main Section
DocType: Page,Icon,Táknmynd
@@ -1086,7 +1089,7 @@ DocType: Customize Form,Customize Form,sérsníða Form
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +104,Mandatory field: set role for,Nauðsynlegur reitur: setja hlutverk að
DocType: Currency,A symbol for this currency. For e.g. $,Tákn fyrir þennan gjaldmiðil. t.d $
apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,frappe Framework
apps/frappe/frappe/model/naming.py +174,Name of {0} cannot be {1},Heiti {0} er ekki hægt að {1}
apps/frappe/frappe/model/naming.py +180,Name of {0} cannot be {1},Heiti {0} er ekki hægt að {1}
apps/frappe/frappe/config/setup.py +46,Show or hide modules globally.,Sýna eða fela mát heimsvísu.
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,frá Dagsetning
apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,Velgengni
@@ -1107,7 +1110,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +308,Add A New
apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js +3,See on Website,Sjá á vefsvæðinu
DocType: Workflow Transition,Next State,næsta State
DocType: User,Block Modules,blokk Modules
apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Tek lengd til {0} fyrir &#39;{1}&#39; í &#39;{2}&#39;; Stilling á lengd sem {3} mun valda truncation gagna.
apps/frappe/frappe/model/db_schema.py +142,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Tek lengd til {0} fyrir &#39;{1}&#39; í &#39;{2}&#39;; Stilling á lengd sem {3} mun valda truncation gagna.
DocType: Print Format,Custom CSS,Custom CSS
apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Bæta við athugasemd
apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Hunsuð: {0} til {1}
@@ -1199,13 +1202,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,
DocType: Custom Role,Custom Role,Custom hlutverk
apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Forsíða / Test Folder 2
DocType: System Settings,Ignore User Permissions If Missing,Hunsa notanda Heimildir Ef Vantar
apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Vistaðu skjalið áður en þú hleður.
apps/frappe/frappe/public/js/frappe/form/control.js +1075,Please save the document before uploading.,Vistaðu skjalið áður en þú hleður.
apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Sláðu inn lykilorðið þitt
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Aðgangur Secret
apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Bæta Annar athugasemd
apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Breyta DOCTYPE
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Afskráðir úr Fréttabréf
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,Unsubscribed from Newsletter,Afskráðir úr Fréttabréf
apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Fold verður að koma áður en kafla brjóta
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,Í þróun
apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Síðast breytt af
DocType: Workflow State,hand-down,hönd-niður
DocType: Address,GST State,GST ríki
@@ -1226,6 +1230,7 @@ DocType: Workflow State,Tag,tag
DocType: Custom Script,Script,Script
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Mínar Stillingar
DocType: Website Theme,Text Color,Litur texta
apps/frappe/frappe/desk/page/backups/backups.py +72,Backup job is already queued. You will receive an email with the download link,Öryggisafrit er þegar í biðstöðu. Þú færð tölvupóst með niðurhalslóðinni
DocType: Desktop Icon,Force Show,Force Sýna
apps/frappe/frappe/auth.py +78,Invalid Request,ógild beiðni
apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Þessi mynd hefur ekki allir inntak
@@ -1336,7 +1341,7 @@ DocType: DocField,Name,heiti
apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,Þú hefur farið á max rými {0} fyrir áætlun. {1}.
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Leita í skjölunum
DocType: OAuth Authorization Code,Valid,gildir
apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Open Link
apps/frappe/frappe/public/js/frappe/form/control.js +1354,Open Link,Open Link
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Þitt tungumál
apps/frappe/frappe/desk/form/load.py +46,Did not load,Fékk ekki að hlaða
apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Bæta Row
@@ -1354,6 +1359,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Ákveðnar skjöl, eins og Invoice, ætti ekki að breyta einu sinni endanlega. Endanleg Ríkið fyrir þessi skjöl er kallað Submitted. Hægt er að takmarka sem hlutverk getur Senda."
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Þú hefur ekki heimild til að flytja þessa skýrslu
apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 atriði valin
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> Engar niðurstöður fundust fyrir ' </p>
DocType: Newsletter,Test Email Address,Próf Netfang
DocType: ToDo,Sender,sendanda
DocType: GSuite Settings,Google Apps Script,Google Apps Script
@@ -1461,7 +1467,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Ple
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Loading Report
apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Áskriftin mun renna út í dag.
DocType: Page,Standard,Standard
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,hengja skrá
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,hengja skrá
apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,Lykilorð Uppfæra Tilkynning
apps/frappe/frappe/desk/page/backups/backups.html +13,Size,Size
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,framsal Complete
@@ -1491,7 +1497,7 @@ apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversat
apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Valkostir ekki sett fyrir tengilinn sviði {0}
DocType: Customize Form,"Must be of type ""Attach Image""",Verður að vera af gerðinni &quot;Hengja mynd&quot;
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Velja ekkert
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Þú getur ekki aftengt &quot;Read Only&quot; fyrir sviði {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +199,You cannot unset 'Read Only' for field {0},Þú getur ekki aftengt &quot;Read Only&quot; fyrir sviði {0}
DocType: Auto Email Report,Zero means send records updated at anytime,Núll þýðir að senda skrár uppfærð hvenær sem er
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +22,Complete Setup,Complete Skipulag
DocType: Workflow State,asterisk,Stjörnumerki
@@ -1505,7 +1511,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +98,Week,vika
DocType: Social Login Keys,Google,Google
DocType: Email Domain,Example Email Address,Dæmi Email Address
apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,flestir Notað
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Unsubscribe from Newsletter,Segja upp áskrift að fréttabréfinu
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe from Newsletter,Segja upp áskrift að fréttabréfinu
apps/frappe/frappe/www/login.html +101,Forgot Password,Gleymt lykilorð
DocType: Dropbox Settings,Backup Frequency,Backup Tíðni
DocType: Workflow State,Inverse,andhverfa
@@ -1583,10 +1589,11 @@ apps/frappe/frappe/config/setup.py +209,"Actions for workflow (e.g. Approve, Can
DocType: Workflow State,flag,merkja
apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +57,Feedback Request is already sent to user,Athugasemdir Beiðni er þegar sent til notandans
DocType: Web Page,Text Align,jöfnun texta
apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Nafn má ekki innihalda sértákn eins {0}
apps/frappe/frappe/model/naming.py +185,Name cannot contain special characters like {0},Nafn má ekki innihalda sértákn eins {0}
DocType: Contact Us Settings,Forward To Email Address,Forward á netfangið
apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Sýna öll gögn
apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Title reitur verður að vera gilt FIELDNAME
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,Email reikningur ekki uppsetning. Búðu til nýjan tölvupóstreikning frá Uppsetning&gt; Tölvupóstur&gt; Netfang
apps/frappe/frappe/config/core.py +7,Documents,skjöl
DocType: Email Flag Queue,Is Completed,er lokið
apps/frappe/frappe/www/me.html +22,Edit Profile,Edit Profile
@@ -1596,7 +1603,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi
myfield
eval:doc.myfield=='My Value'
eval:doc.age&gt;18",Þessi reitur verður að birtast aðeins ef FIELDNAME skilgreint hér hefur gildi OR reglur eru sannir (dæmi): myfield eval: doc.myfield == &#39;Gildi minn&#39; eval: doc.age&gt; 18
apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Í dag
apps/frappe/frappe/public/js/frappe/form/control.js +764,Today,Í dag
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Þegar þú hefur sett þetta, sem notendur munu aðeins vera fær aðgang skjöl (td. Bloggfærsluna) þar sem tengill er til (td. Blogger)."
DocType: Error Log,Log of Scheduler Errors,Log um Tímaáætlun Villa
DocType: User,Bio,bio
@@ -1655,7 +1662,7 @@ DocType: Print Format,Js,js
apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Veldu Print Format
apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Stutt hljómborð mynstur er auðvelt að giska
DocType: Portal Settings,Portal Menu,Portal Matseðill
apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Lengd {0} ætti að vera á milli 1 og 1000
apps/frappe/frappe/model/db_schema.py +115,Length of {0} should be between 1 and 1000,Lengd {0} ætti að vera á milli 1 og 1000
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,Leita að nokkuð
DocType: DocField,Print Hide,Print Fela
apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,Sláðu gildi
@@ -1708,8 +1715,7 @@ apps/frappe/frappe/model/document.py +564,Cannot change docstatus from 0 to 2,Ge
DocType: User Permission for Page and Report,Roles Permission,hlutverk Leyfi
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Uppfæra
DocType: Error Snapshot,Snapshot View,Snapshot View
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Vistaðu Fréttabréf áður en þú sendir
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} ári (s) síðan
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +101,Please save the Newsletter before sending,Vistaðu Fréttabréf áður en þú sendir
apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Valkostir verður að vera gilt DOCTYPE fyrir sviði {0} í röð {1}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Breyta Properties
DocType: Patch Log,List of patches executed,Listi yfir plástra keyrð
@@ -1727,7 +1733,7 @@ apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Lykilorð Uppf
DocType: Workflow State,trash,rugl
DocType: System Settings,Older backups will be automatically deleted,Eldri afrit verður sjálfkrafa eytt
DocType: Event,Leave blank to repeat always,Skildu eftir autt til að endurtaka alltaf
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +192,Confirmed,staðfest
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,Confirmed,staðfest
DocType: Event,Ends on,endar á
DocType: Payment Gateway,Gateway,Gateway
apps/frappe/frappe/public/js/frappe/form/linked_with.js +116,Not enough permission to see links,Ekki nóg leyfi til að sjá tengla
@@ -1758,7 +1764,6 @@ DocType: Contact,Purchase Manager,kaup Manager
DocType: Custom Script,Sample,Dæmi um
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Óflokkað Tags
DocType: Event,Every Week,Í hverri viku
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,Email Account ekki uppsetning. Búðu til nýjan tölvupóstreikning frá Uppsetning&gt; Tölvupóstur&gt; Netfang
apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Smelltu hér til að athuga notkun eða uppfæra í hærri áætlun
DocType: Custom Field,Is Mandatory Field,Er nauðsynlegur Field
DocType: User,Website User,Vefsíða User
@@ -1766,7 +1771,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +10,Not equals,e
DocType: Integration Request,Integration Request Service,Sameining Beiðni Service
DocType: Website Script,Script to attach to all web pages.,Script til að hengja öllum vefsíðum.
DocType: Web Form,Allow Multiple,leyfa Multiple
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +40,Assign,úthluta
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +44,Assign,úthluta
apps/frappe/frappe/config/setup.py +102,Import / Export Data from .csv files.,Import / Export Gögn úr .csv skrá.
DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Aðeins Senda Records Uppfært í síðustu X Hours
DocType: Communication,Feedback,athugasemdir
@@ -1846,7 +1851,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,eftir
apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Vinsamlegast vista áður festa.
apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Bætti {0} ({1})
apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Sjálfgefið útlit er sett í {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype ekki hægt að breyta frá {0} til {1} í röð {2}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +325,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype ekki hægt að breyta frá {0} til {1} í röð {2}
apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,hlutverk Heimildir
DocType: Help Article,Intermediate,Intermediate
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Get Lesa
@@ -1861,9 +1866,9 @@ apps/frappe/frappe/core/doctype/user/user.js +42,Refreshing...,Hressandi ...
DocType: Event,Starts on,byrjar á
DocType: System Settings,System Settings,System Settings
apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Session Start tókst ekki
apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Þessi tölvupóstur var sendur til {0} og afrita til {1}
apps/frappe/frappe/email/queue.py +470,This email was sent to {0} and copied to {1},Þessi tölvupóstur var sendur til {0} og afrita til {1}
DocType: Workflow State,th,Þ
apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Búa til nýjan {0}
apps/frappe/frappe/public/js/frappe/form/control.js +1517,Create a new {0},Búa til nýjan {0}
DocType: Email Rule,Is Spam,er ruslpóstur
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Skýrsla {0}
apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Open {0}
@@ -1875,12 +1880,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon a
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,afrit
DocType: Newsletter,Create and Send Newsletters,Búa til og senda Fréttabréf
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date must be before To Date,Frá Dagsetning verður að vera fyrir Lokadagurinn
DocType: Address,Andaman and Nicobar Islands,Andaman og Nicobar Islands
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +216,GSuite Document,GSuite Document
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +29,Please specify which value field must be checked,Vinsamlegast tilgreinið hvaða gildi reit verður að vera merkt
apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"""Parent"" signifies the parent table in which this row must be added",&quot;Parent&quot; táknar foreldri borð sem þessi röð verður að bæta
DocType: Website Theme,Apply Style,gilda Style
DocType: Feedback Request,Feedback Rating,athugasemdir Einkunn
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared With,deilt með
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,deilt með
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Uppsetning&gt; Notendahópur
DocType: Help Category,Help Articles,Hjálp Greinar
,Modules Setup,Modules skipulag
apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Tegund:
@@ -1911,7 +1918,7 @@ DocType: OAuth Client,App Client ID,App Viðskiptavinur ID
DocType: Kanban Board,Kanban Board Name,Kanban Board Name
DocType: Email Alert Recipient,"Expression, Optional","Tjáningu, Valfrjálst"
DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,Afritaðu og límdu þennan kóða í og tæma Code.gs í verkefninu á script.google.com
apps/frappe/frappe/email/queue.py +456,This email was sent to {0},Þessi tölvupóstur var sendur til {0}
apps/frappe/frappe/email/queue.py +472,This email was sent to {0},Þessi tölvupóstur var sendur til {0}
DocType: DocField,Remember Last Selected Value,Mundu Síðasta völdu gildi
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +334,Please select Document Type,Vinsamlegast veldu Document Type
DocType: Email Account,Check this to pull emails from your mailbox,Hakaðu við þetta til að draga tölvupóst úr pósthólfinu
@@ -1926,6 +1933,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,valk
DocType: Feedback Trigger,Email Field,Tölvupóstur Field
apps/frappe/frappe/www/update-password.html +59,New Password Required.,Nýtt lykilorð sem krafist er.
apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} deildi þessu skjali með {1}
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Uppsetning&gt; Notandi
DocType: Website Settings,Brand Image,Brand Image
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.",Uppsetning á topp stöðustikunni fót og merki.
@@ -1993,8 +2001,8 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa
apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Ekki tókst að lesa skráarsnið fyrir {0}
DocType: Auto Email Report,Filter Data,Sía gögn
apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Bæta tag
apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Hengdu skrá fyrst.
apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Það voru nokkrar villur stilling nafn, vinsamlegast hafið samband við umsjónarmann"
apps/frappe/frappe/public/js/frappe/form/control.js +1335,Please attach a file first.,Hengdu skrá fyrst.
apps/frappe/frappe/model/naming.py +174,"There were some errors setting the name, please contact the administrator","Það voru nokkrar villur stilling nafn, vinsamlegast hafið samband við umsjónarmann"
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Komandi pósthólf ekki rétt
apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \
Please enter a valid email address so that we can get back.",Þú virðist hafa skrifað nafnið þitt í staðinn fyrir tölvupóstinn þinn. \ Vinsamlegast sláðu inn gilt netfang svo að við getum komist aftur.
@@ -2046,7 +2054,6 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N
DocType: Custom DocPerm,Create,Búa
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Ógild Filter: {0}
DocType: Email Account,no failed attempts,nei misheppnaðar tilraunir
apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,Engin sjálfgefin Heimilisfang Snið fannst. Vinsamlegast búðu til nýjan úr Uppsetning&gt; Prentun og merkingu&gt; Heimilisfangmát.
DocType: GSuite Settings,refresh_token,Refresh_token
DocType: Dropbox Settings,App Access Key,App Access Key
DocType: OAuth Bearer Token,Access Token,aðgangur Token
@@ -2072,6 +2079,7 @@ apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl +
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Gera nýtt {0}
apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,Nýtt netfangs
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +28,Document Restored,Skjal endurheimt
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +203,You can't set 'Options' for field {0},Þú getur ekki stillt &#39;Valkostir&#39; fyrir reit {0}
apps/frappe/frappe/core/page/usage_info/usage_info.html +86,Size (MB),Stærð (MB)
DocType: Help Article,Author,Höfundur
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +10,Resume Sending,halda áfram að senda
@@ -2081,7 +2089,7 @@ DocType: Print Settings,Monochrome,Svarthvítt
DocType: Address,Purchase User,kaup User
DocType: Workflow,"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.","Öðruvísi &quot;States&quot; þetta skjal getur verið í. Eins og &quot;Open&quot;, &quot;bíður samþykkis&quot; osfrv"
apps/frappe/frappe/utils/verified_command.py +43,This link is invalid or expired. Please make sure you have pasted correctly.,Þessi tengill er ógilt eða útrunnin. Vinsamlegast vertu viss um að hafa límt rétt.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> hefur verið áskrift þessum póstlista.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +136,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> hefur verið áskrift þessum póstlista.
DocType: Web Page,Slideshow,Slideshow
apps/frappe/frappe/contacts/doctype/address_template/address_template.py +31,Default Address Template cannot be deleted,Sjálfgefið heimilisfang Snið getur ekki eytt
DocType: Contact,Maintenance Manager,viðhald Manager
@@ -2102,7 +2110,7 @@ apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a r
DocType: System Settings,Apply Strict User Permissions,Sækja um strangar notendaskilmálar
DocType: DocField,Allow Bulk Edit,Leyfa magnsstjórnun
DocType: Blog Post,Blog Post,Blog Post
apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Ítarleg leit
apps/frappe/frappe/public/js/frappe/form/control.js +1527,Advanced Search,Ítarleg leit
apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Lykilorð Endurstilla leiðbeiningar hafa verið send til þinn email
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \
higher levels for field level permissions.","Stig 0 er fyrir heimildir á skjalastigi, \ hærra stig fyrir heimildir á vettvangi."
@@ -2127,13 +2135,13 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new re
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Leita
DocType: Currency,Fraction,brot
DocType: LDAP Settings,LDAP First Name Field,LDAP First Name Field
apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Veldu úr núverandi viðhengi
apps/frappe/frappe/public/js/frappe/form/control.js +1085,Select from existing attachments,Veldu úr núverandi viðhengi
DocType: Custom Field,Field Description,Field Lýsing
apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Nafn ekki sett með Hvetja
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,Innhólfið
DocType: Auto Email Report,Filters Display,síur Sýna
DocType: Website Theme,Top Bar Color,Top Bar Color
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Do you want to unsubscribe from this mailing list?,Viltu segja upp áskrift af þessum póstlista?
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Do you want to unsubscribe from this mailing list?,Viltu segja upp áskrift af þessum póstlista?
DocType: Address,Plant,Plant
apps/frappe/frappe/core/doctype/communication/communication.js +65,Reply All,Svara öllum
DocType: DocType,Setup,Setja upp
@@ -2176,7 +2184,7 @@ DocType: User,Send Notifications for Transactions I Follow,Senda Tilkynningar fy
apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Get ekki sett Senda, Hætta, breytt án Write"
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Ertu viss um að þú viljir eyða viðhengi?
apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} <a href=""#Form/{0}/{1}"">{1}</a> is linked with {2} <a href=""#Form/{2}/{3}"">{3}</a>","Ekki er hægt að eyða eða hætta við vegna þess að {0} <a href=""#Form/{0}/{1}"">{1}</a> er tengd við {2} <a href=""#Form/{2}/{3}"">{3}</a>"
apps/frappe/frappe/__init__.py +1062,Thank you,Þakka þér
apps/frappe/frappe/__init__.py +1070,Thank you,Þakka þér
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Saving
DocType: Print Settings,Print Style Preview,Print Style Forskoða
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
@@ -2191,7 +2199,7 @@ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Bæta s
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Sr No
,Role Permissions Manager,Hlutverk Heimildir Manager
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Heiti nýju Prenta Format
apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Hreinsa Attachment
apps/frappe/frappe/public/js/frappe/form/control.js +1087,Clear Attachment,Hreinsa Attachment
apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,nauðsynlegur:
,User Permissions Manager,User Heimildir Manager
DocType: Property Setter,New value to be set,Ný gildi til að setja
@@ -2216,7 +2224,7 @@ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment C
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,Hreinsa Logs Villa
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,Vinsamlegast veldu einkunn
DocType: Email Account,Notify if unreplied for (in mins),Tilkynna ef unreplied fyrir (í mín)
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 dagar síðan
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +501,2 days ago,2 dagar síðan
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Flokka bloggfærslum.
DocType: Workflow State,Time,tími
DocType: DocField,Attach,hengja
@@ -2232,6 +2240,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Backup S
DocType: GSuite Templates,Template Name,Sniðmát Nafn
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,Ný tegund skjals
DocType: Custom DocPerm,Read,Lesa
DocType: Address,Chhattisgarh,Chhattisgarh
DocType: Role Permission for Page and Report,Role Permission for Page and Report,Hlutverk Leyfi fyrir Page og skýrslu
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,jöfnun gildi
apps/frappe/frappe/www/update-password.html +14,Old Password,gamalt lykilorð
@@ -2278,7 +2287,7 @@ apps/frappe/frappe/public/js/frappe/roles_editor.js +28,Add all roles,Bæta við
apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your email and message so that we \
can get back to you. Thanks!",Vinsamlegast sláðu inn bæði netfangið þitt og skilaboð þannig að við \ getum fengið til baka til þín. Takk!
apps/frappe/frappe/email/smtp.py +170,Could not connect to outgoing email server,Gat ekki tengst sendan email framreiðslumaður
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +162,Thank you for your interest in subscribing to our updates,Þakka þér fyrir áhuga þinn á að gerast áskrifandi að uppfærslum okkar
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Thank you for your interest in subscribing to our updates,Þakka þér fyrir áhuga þinn á að gerast áskrifandi að uppfærslum okkar
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Custom Column,Custom Dálkur
DocType: Workflow State,resize-full,resize-fullur
DocType: Workflow State,off,burt
@@ -2341,7 +2350,7 @@ DocType: Address,Telangana,Telangana
apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Sjálfgefið fyrir {0} verður að vera valkostur
DocType: Tag Doc Category,Tag Doc Category,Tag Doc Flokkur
DocType: User,User Image,User Image
apps/frappe/frappe/email/queue.py +289,Emails are muted,Póstur er þögguð
apps/frappe/frappe/email/queue.py +304,Emails are muted,Póstur er þögguð
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + Up
DocType: Website Theme,Heading Style,Fyrirsögn Style
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +183,A new Project with this name will be created,Ný Project með þessu nafni verður búin
@@ -2558,7 +2567,6 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,bjalla
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Villa í Email Alert
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Deila þessari skjal með
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Uppsetning&gt; Notendahópur
apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} getur ekki verið blaða hnút sem það á börn
DocType: Communication,Info,upplýsingar
apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Bæta viðhengi
@@ -2602,7 +2610,7 @@ apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,Print Form
DocType: Email Alert,Send days before or after the reference date,Senda dögum fyrir eða eftir frestdag
DocType: User,Allow user to login only after this hour (0-24),Leyfa notanda að skráðu aðeins eftir þessum klukkutíma (0-24)
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,gildi
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +165,Click here to verify,Smelltu hér til að sannreyna
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +166,Click here to verify,Smelltu hér til að sannreyna
apps/frappe/frappe/utils/password_strength.py +178,Predictable substitutions like '@' instead of 'a' don't help very much.,Fyrirsjáanlegar útskiptingar eins &#39;@&#39; í stað &#39;a&#39; gera ekki hjálpa mjög mikið.
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Úthlutað By Me
apps/frappe/frappe/utils/data.py +462,Zero,Núll
@@ -2614,6 +2622,7 @@ DocType: ToDo,Priority,Forgangur
DocType: Email Queue,Unsubscribe Param,afskrá Gildi
DocType: Auto Email Report,Weekly,Vikuleg
DocType: Communication,In Reply To,Sem svar við
apps/frappe/frappe/contacts/doctype/address/address.py +189,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,Engin sjálfgefin Heimilisfang Snið fannst. Vinsamlegast búðu til nýjan úr Uppsetning&gt; Prentun og merkingu&gt; Heimilisfangmát.
DocType: DocType,Allow Import (via Data Import Tool),Leyfa Import (með Data Import Tool)
apps/frappe/frappe/templates/print_formats/standard_macros.html +30,Sr,Sr
DocType: DocField,Float,Float
@@ -2704,7 +2713,6 @@ apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Ógild mörk {0}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Listi af gerðinni
DocType: Event,Ref Type,Ref Type
apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Ef þú ert að senda nýjar færslur, fara á &quot;nafn&quot; (ID) dálk autt."
DocType: Address,Chattisgarh,Chattisgarh
apps/frappe/frappe/config/core.py +47,Errors in Background Events,Villur í bakgrunni Viðburðir
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,Engin dálka
DocType: Workflow State,Calendar,Dagatal
@@ -2735,7 +2743,7 @@ apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Framsa
DocType: Integration Request,Remote,Remote
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,reikna
apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Vinsamlegast veldu DOCTYPE fyrst
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Staðfestu netfangið þitt
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +174,Confirm Your Email,Staðfestu netfangið þitt
apps/frappe/frappe/www/login.html +42,Or login with,Eða tenging við
DocType: Error Snapshot,Locals,heimamenn
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Miðlað í gegnum {0} á {1}: {2}
@@ -2752,7 +2760,7 @@ DocType: Web Page,Web Page,Vefsíða
DocType: Blog Category,Blogger,Blogger
apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},&#39;Global Search&#39; ekki leyfð fyrir tegund {0} í röð {1}
apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,view List
apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Dagsetning verður að vera í formi: {0}
apps/frappe/frappe/public/js/frappe/form/control.js +810,Date must be in format: {0},Dagsetning verður að vera í formi: {0}
DocType: Workflow,Don't Override Status,Ekki Hunsa Status
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Vinsamlegast gefa einkunn.
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Athugasemdir Beiðni
@@ -2785,7 +2793,7 @@ DocType: Custom DocPerm,Report,skýrsla
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Upphæð verður að vera hærri en 0.
apps/frappe/frappe/desk/reportview.py +107,{0} is saved,{0} er vistuð
apps/frappe/frappe/core/doctype/user/user.py +327,User {0} cannot be renamed,User {0} Ekki er hægt að endurnefna
apps/frappe/frappe/model/db_schema.py +107,Fieldname is limited to 64 characters ({0}),FIELDNAME er takmörkuð við 64 stafi ({0})
apps/frappe/frappe/model/db_schema.py +108,Fieldname is limited to 64 characters ({0}),FIELDNAME er takmörkuð við 64 stafi ({0})
apps/frappe/frappe/config/desk.py +59,Email Group List,Tölvupóstur Group List
DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],An táknið skrá með ICO framlengingu. Ætti að vera 16 x 16 px. Mynda með því að nota favicon rafall. [Favicon-generator.org]
DocType: Auto Email Report,Format,Format
@@ -2863,7 +2871,7 @@ DocType: Website Settings,Title Prefix,Title forskeyti
DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Tilkynningar og magn póstur verður sendur frá þessum sendan póst.
DocType: Workflow State,cog,Cog
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on Migrate,Sync á Flytja
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Eins Skoða
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Currently Viewing,Eins Skoða
DocType: DocField,Default,Sjálfgefið
apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} bætti við
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Leita að &#39;{0}&#39;
@@ -2923,7 +2931,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +771,Report was
DocType: Print Settings,Print Style,Print Style
apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,Ekki tengd við hvaða skrá
DocType: Custom DocPerm,Import,innflutningur
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +178,Row {0}: Not allowed to enable Allow on Submit for standard fields,Row {0}: Ekki leyfilegt að virkja Leyfa á Senda standard sviðum
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +180,Row {0}: Not allowed to enable Allow on Submit for standard fields,Row {0}: Ekki leyfilegt að virkja Leyfa á Senda standard sviðum
apps/frappe/frappe/config/setup.py +100,Import / Export Data,Import / Export Data
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,Staðlaðar hlutverk er ekki hægt að endurnefna
DocType: Communication,To and CC,Til og CC
@@ -2949,7 +2957,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo
DocType: Auto Email Report,Filter Meta,Sía Meta
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Texti til að sýna fyrir Tengill á vefsíðu, ef þetta form er á vefsíðu. Link leið verður sjálfkrafa byggt á `page_name` og` parent_website_route`"
DocType: Feedback Request,Feedback Trigger,athugasemdir Trigger
apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Vinsamlegast settu {0} fyrst
apps/frappe/frappe/public/js/frappe/form/control.js +1741,Please set {0} first,Vinsamlegast settu {0} fyrst
DocType: Unhandled Email,Message-id,Kennistrengur
DocType: Patch Log,Patch,Patch
DocType: Async Task,Failed,mistókst


+ 73
- 65
frappe/translations/it.csv Datei anzeigen

@@ -14,8 +14,9 @@ apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,De
DocType: User,Facebook Username,Facebook Nome utente
DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Nota: Le sessioni multiple saranno ammesse in caso di dispositivo mobile
apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},casella di posta abilitata per l&#39;utente {} utenti
apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Impossibile inviare questa e-mail. Hai oltrepassato il limite di invio di {0} mail per questo mese.
apps/frappe/frappe/email/queue.py +225,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Impossibile inviare questa e-mail. Hai oltrepassato il limite di invio di {0} mail per questo mese.
apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Conferma Definitivamente {0} ?
apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,Scarica File Backup
DocType: Address,County,Contea
DocType: Workflow,If Checked workflow status will not override status in list view,Se lo stato del flusso di lavoro Controllato non sovrascriverà stato in vista elenco
apps/frappe/frappe/client.py +280,Invalid file path: {0},Non valido percorso del file: {0}
@@ -80,10 +81,10 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Impostazi
apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Amministratore connesso
DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opzioni di contatto, come &quot;Query vendite, il supporto delle query&quot;, ecc ciascuno su una nuova riga o separati da virgole."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Download
apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Inserire
apps/frappe/frappe/public/js/frappe/form/control.js +1979,Insert,Inserire
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Selezionare {0}
DocType: Print Settings,Classic,Classico
DocType: Desktop Icon,Color,Colore
DocType: DocField,Color,Colore
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +54,For ranges,Per Intervallo
DocType: Workflow State,indent-right,indent-right
DocType: Has Role,Has Role,ha un ruolo
@@ -100,7 +101,7 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To impor
DocType: DocType,Default Print Format,Formato Stampa Predefinito
DocType: Workflow State,Tags,Tags
apps/frappe/frappe/public/js/frappe/form/workflow.js +33,None: End of Workflow,Nessuno: Fine del flusso di lavoro
apps/frappe/frappe/model/db_schema.py +346,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} campo non può essere impostato come unica in {1}, in quanto vi sono valori non univoci esistenti"
apps/frappe/frappe/model/db_schema.py +347,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} campo non può essere impostato come unica in {1}, in quanto vi sono valori non univoci esistenti"
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +47,Document Types,Tipi di documenti
DocType: Address,Jammu and Kashmir,Jammu e Kashmir
DocType: Workflow,Workflow State Field,Stato del campo Workflow
@@ -231,7 +232,7 @@ DocType: Workflow,Transition Rules,Regole di transizione
apps/frappe/frappe/core/doctype/report/report.js +11,Example:,Esempio:
DocType: Workflow,Defines workflow states and rules for a document.,Definisce gli stati del flusso di lavoro e le regole per un documento.
DocType: Workflow State,Filter,Filtro
apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Il nome del campo {0} non può avere caratteri speciali come {1}
apps/frappe/frappe/model/db_schema.py +564,Fieldname {0} cannot have special characters like {1},Il nome del campo {0} non può avere caratteri speciali come {1}
apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Aggiorna più valori contemporaneamente.
apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Errore: Il Documento è stato modificato dopo averlo aperto
apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} disconnesso: {1}
@@ -260,7 +261,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Ottieni il t
apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","L&#39;abbonamento è scaduto il {0}. Per rinnovare, {1}."
DocType: Workflow State,plus-sign,segno più
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Setup già completo
apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} non è installato
apps/frappe/frappe/__init__.py +897,App {0} is not installed,App {0} non è installato
DocType: Workflow State,Refresh,Aggiorna
DocType: Event,Public,Pubblico
apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Niente da mostrare
@@ -339,7 +340,6 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Modifica Intestazione
DocType: File,File URL,URL del file
DocType: Version,Table HTML,Tabella HTML
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> Nessun risultato trovato per ' </p>
apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Aggiungi abbonati
apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Prossimi eventi di oggi
DocType: Email Alert Recipient,Email By Document Field,Email Di Campo documento
@@ -404,7 +404,6 @@ DocType: Desktop Icon,Link,Collegamento
apps/frappe/frappe/utils/file_manager.py +96,No file attached,Nessun file allegato
DocType: Version,Version,versione
DocType: User,Fill Screen,Riempi schermo
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,Imposta l&#39;account di posta elettronica predefinito da Setup&gt; Email&gt; Account di posta elettronica
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",Impossibile visualizzare questo report dell'albero a causa dei dati mancanti. Molto probabilmente non hai le autorizzazioni necessarie.
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Seleziona File
apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Modifica via Upload
@@ -474,9 +473,9 @@ DocType: User,Reset Password Key,Reimposta Password
DocType: Email Account,Enable Auto Reply,Abilita risposta automatica
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Non Visto
DocType: Workflow State,zoom-in,Ingrandisci
apps/frappe/frappe/email/queue.py +219,Unsubscribe from this list,Disiscriviti da questa lista
apps/frappe/frappe/email/queue.py +234,Unsubscribe from this list,Disiscriviti da questa lista
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Reference DocType and Reference Name are required,Riferimento DocType e Nome Riferimento sono necessari
apps/frappe/frappe/utils/jinja.py +35,Syntax error in template,Errore di sintassi nel template
apps/frappe/frappe/utils/jinja.py +51,Syntax error in template,Errore di sintassi nel template
DocType: DocField,Width,Larghezza
DocType: Email Account,Notify if unreplied,Notifica se non risponde
DocType: System Settings,Minimum Password Score,Punteggio minimo di password
@@ -560,6 +559,7 @@ DocType: Custom Field,Select the label after which you want to insert new field.
DocType: User,Last Login,Ultimo Login
apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Il nome del campo è richiesto in riga {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Colonna
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,Imposta l&#39;account di posta elettronica predefinito da Setup&gt; Email&gt; Account di posta elettronica
DocType: Custom Field,Adds a custom field to a DocType,Aggiunge un campo personalizzato a un DOCTYPE
DocType: File,Is Home Folder,È Cartella Home
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} non è un indirizzo e-mail valido
@@ -567,7 +567,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +733,Select atleast 1 reco
apps/frappe/frappe/core/doctype/has_role/has_role.py +13,User '{0}' already has the role '{1}',Utente &#39;{0}&#39; già ha il ruolo &#39;{1}&#39;
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,Carica e sincronizzazione
apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Condiviso con {0}
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe,Disiscrivi
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +132,Unsubscribe,Disiscrivi
DocType: Communication,Reference Name,Nome di riferimento
apps/frappe/frappe/public/js/frappe/toolbar.js +30,Chat Support,Supporto Chat
DocType: Error Snapshot,Exception,Eccezione
@@ -585,7 +585,7 @@ DocType: Email Group,Newsletter Manager,Newsletter Manager
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Opzione 1
apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} a {1}
apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Log di errore durante le richieste.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} correttamente aggiunto al gruppo e-mail.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +194,{0} has been successfully added to the Email Group.,{0} correttamente aggiunto al gruppo e-mail.
DocType: Address,Uttar Pradesh,Uttar Pradesh
DocType: Address,Pondicherry,Pondicherry
apps/frappe/frappe/public/js/frappe/upload.js +364,Make file(s) private or public?,Rendere file (s) privato o pubblico?
@@ -616,7 +616,7 @@ DocType: Portal Settings,Portal Settings,Impostazioni del portale
DocType: Web Page,0 is highest,0 è il più alto
apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Sei sicuro di voler ricollegare questa comunicazione a {0}?
apps/frappe/frappe/www/login.html +104,Send Password,Invia password
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +45,Attachments,Allegati
DocType: Email Queue,Attachments,Allegati
apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,Non hai i permessi per accedere a questo documento
DocType: Language,Language Name,Nome lingua
DocType: Email Group Member,Email Group Member,Email del gruppo membro
@@ -646,7 +646,7 @@ apps/frappe/frappe/utils/password_strength.py +78,Try to use a longer keyboard p
DocType: Feedback Trigger,Check Communication,controllare Comunicazione
DocType: Address,Rajasthan,Rajasthan
apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,I Report generati con Report Builder vengono gestite direttamente. Niente da fare.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Per cortesia verifichi il suo indirizzo email
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +164,Please verify your Email Address,Per cortesia verifichi il suo indirizzo email
apps/frappe/frappe/model/document.py +903,none of,nessuno dei
apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Inviami una copia
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Carica autorizzazioni utente
@@ -657,7 +657,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Si
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban Consiglio {0} non esiste.
apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} stanno attualmente visualizzando questo documento
DocType: ToDo,Assigned By Full Name,Assegnato By Nome completo
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} aggiornato
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} aggiornato
apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Rapporto non può essere impostato per i tipi semplici
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} giorni fà
DocType: Email Account,Awaiting Password,In attesa di password
@@ -682,7 +682,7 @@ DocType: Workflow State,Stop,Stop
DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Link alla pagina che si desidera aprire. Lascia vuoto se si vuole fare un capogruppo.
DocType: DocType,Is Single,È single
apps/frappe/frappe/core/doctype/user/user.py +720,Sign Up is disabled,Registrati è disattivato
apps/frappe/frappe/email/queue.py +278,{0} has left the conversation in {1} {2},{0} ha lasciato la conversazione in {1} {2}
apps/frappe/frappe/email/queue.py +293,{0} has left the conversation in {1} {2},{0} ha lasciato la conversazione in {1} {2}
DocType: Blogger,User ID of a Blogger,ID utente di un Blogger
apps/frappe/frappe/core/doctype/user/user.py +287,There should remain at least one System Manager,Deve esserci almeno un Amministratore di sistema
DocType: GSuite Settings,Authorization Code,codice di autorizzazione
@@ -728,6 +728,7 @@ DocType: Event,Event,Evento
apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Il {0}, {1} ha scritto:"
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"Impossibile eliminare campo standard. È possibile nascondere, se volete"
DocType: Top Bar Item,For top bar,Per i top bar
apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,In coda per il backup. Riceverai un&#39;e-mail con il link di download
apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Impossibile identificare {0}
DocType: Address,Address,Indirizzo
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +3,Payment Failed,Pagamento fallito
@@ -752,13 +753,13 @@ DocType: Web Form,Allow Print,consentire la stampa
apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,No applicazioni installate
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Segna il campo come obbligatorio
DocType: Communication,Clicked,Cliccato
apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Nessuna autorizzazione per ' {0} ' {1}
apps/frappe/frappe/public/js/legacy/form.js +950,No permission to '{0}' {1},Nessuna autorizzazione per ' {0} ' {1}
DocType: User,Google User ID,Google User ID
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,In programma per inviare
DocType: DocType,Track Seen,Traccia Visto
apps/frappe/frappe/desk/form/utils.py +55,This method can only be used to create a Comment,Questo metodo può essere utilizzato solo per creare un commento
DocType: Event,orange,arancia
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,No {0} found,No {0} trovati
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +558,No {0} found,No {0} trovati
apps/frappe/frappe/config/setup.py +242,Add custom forms.,Aggiungere moduli personalizzati.
apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} in {2}
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +419,submitted this document,presentato questo documento
@@ -788,6 +789,7 @@ DocType: Newsletter Email Group,Newsletter Email Group,Newsletter Email Group
DocType: Dropbox Settings,Integrations,Integrazioni
DocType: DocField,Section Break,Interruzione di sezione
DocType: Address,Warehouse,Deposito
DocType: Address,Other Territory,Altro Territorio
,Messages,Messaggi
apps/frappe/frappe/desk/page/applications/applications.js +49,Portal,Portale
DocType: Email Account,Use Different Email Login ID,Utilizzare un diverso ID di accesso alla posta elettronica
@@ -818,6 +820,7 @@ apps/frappe/frappe/utils/data.py +556,1 month ago,1 mese fa
DocType: Contact,User ID,ID utente
DocType: Communication,Sent,Inviati
DocType: Address,Kerala,Kerala
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} anno (i) fa
DocType: File,Lft,LFT
DocType: User,Simultaneous Sessions,Sessioni Simultanee
DocType: OAuth Client,Client Credentials,Credenziali client
@@ -834,7 +837,7 @@ DocType: Email Queue,Unsubscribe Method,Modalità di disiscrizione
DocType: GSuite Templates,Related DocType,DocType correlato
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Modifica per aggiungere contenuti
apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,selezionare le lingue
apps/frappe/frappe/__init__.py +509,No permission for {0},Nessun permesso per {0}
apps/frappe/frappe/__init__.py +517,No permission for {0},Nessun permesso per {0}
DocType: DocType,Advanced,Avanzato
apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Sembra chiave API o API Secret è sbagliato !!!
apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Riferimento: {0} {1}
@@ -845,6 +848,7 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P
DocType: Email Account,Yahoo Mail,Yahoo Mail
apps/frappe/frappe/limits.py +75,Your subscription will expire tomorrow.,L&#39;abbonamento scadrà domani.
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +483,Saved!,Salvato!
apps/frappe/frappe/public/js/frappe/form/control.js +729,{0} is not a valid hex color,{0} non è un colore esadecimale valido
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,signora
apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},Aggiornato {0}: {1}
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,Maestro
@@ -872,7 +876,7 @@ DocType: Report,Disabled,Disabilitato
DocType: Workflow State,eye-close,occhio da vicino
DocType: OAuth Provider Settings,OAuth Provider Settings,Impostazioni OAuth Provider
apps/frappe/frappe/config/setup.py +254,Applications,applicazioni
apps/frappe/frappe/public/js/frappe/request.js +347,Report this issue,Segnala il problema
apps/frappe/frappe/public/js/frappe/request.js +349,Report this issue,Segnala il problema
apps/frappe/frappe/public/js/frappe/form/save.js +79,Name is required,Il nome è obbligatorio
DocType: Custom Script,Adds a custom script (client or server) to a DocType,Aggiunge un script personalizzato (client o server) per un DOCTYPE
DocType: Address,City/Town,Città/Paese
@@ -966,6 +970,7 @@ DocType: Currency,**Currency** Master,**Valuta** Principale
DocType: Email Account,No of emails remaining to be synced,Num. di e-mail da sincronizzare
apps/frappe/frappe/public/js/frappe/upload.js +203,Uploading,Caricamento
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,Si prega di salvare il documento prima di assegnazione
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,Clicca qui per inserire bug e suggerimenti
DocType: Website Settings,Address and other legal information you may want to put in the footer.,Indirizzo e altre informazioni legali che si intende visualizzare nel piè di pagina.
DocType: Website Sidebar Item,Website Sidebar Item,Sito Sidebar Articolo
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +44,{0} records updated,{0} record aggiornati
@@ -979,12 +984,10 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,chiaro
apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Ogni giorno gli eventi dovrebbero terminare nello stesso giorno.
DocType: Communication,User Tags,Tags Utente
apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Cattura immagini ..
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Impostazione&gt; Utente
DocType: Workflow State,download-alt,download-alt
apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Il download App {0}
DocType: Communication,Feedback Request,Feedback Richiesta
apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,Seguenti campi mancanti:
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Experimental Feature,funzione sperimentale
apps/frappe/frappe/www/login.html +30,Sign in,Accedi
DocType: Web Page,Main Section,Sezione principale
DocType: Page,Icon,Icona
@@ -1086,7 +1089,7 @@ DocType: Customize Form,Customize Form,Personalizzare modulo
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +104,Mandatory field: set role for,Campo obbligatorio: ruolo impostato per
DocType: Currency,A symbol for this currency. For e.g. $,Un simbolo per questa valuta. Per esempio $
apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,Frappe Framework
apps/frappe/frappe/model/naming.py +174,Name of {0} cannot be {1},Nome {0} non può essere {1}
apps/frappe/frappe/model/naming.py +180,Name of {0} cannot be {1},Nome {0} non può essere {1}
apps/frappe/frappe/config/setup.py +46,Show or hide modules globally.,Mostrare o nascondere i moduli a livello globale .
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,Da Data
apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,Riuscito
@@ -1107,7 +1110,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +308,Add A New
apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js +3,See on Website,Vedere sul Sito
DocType: Workflow Transition,Next State,Stato Successivo
DocType: User,Block Modules,Block Moduli
apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Ripristino lunghezza {0} per &#39;{1}&#39; a &#39;{2}&#39;; Impostare la lunghezza come {3} causerà troncamento dei dati.
apps/frappe/frappe/model/db_schema.py +142,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Ripristino lunghezza {0} per &#39;{1}&#39; a &#39;{2}&#39;; Impostare la lunghezza come {3} causerà troncamento dei dati.
DocType: Print Format,Custom CSS,CSS Personalizzato
apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Aggiungi un commento
apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Ignorato: {0} a {1}
@@ -1199,13 +1202,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,
DocType: Custom Role,Custom Role,ruolo personalizzato
apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Home/Test Folder 2
DocType: System Settings,Ignore User Permissions If Missing,Ignora Autorizzazioni utente Se mancante
apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Si prega di salvare il documento prima di caricare.
apps/frappe/frappe/public/js/frappe/form/control.js +1075,Please save the document before uploading.,Si prega di salvare il documento prima di caricare.
apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Inserisci la tua password
DocType: Dropbox Settings,Dropbox Access Secret,Accesso Segreto Dropbox
apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Aggiungi un altro Commento
apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Modifica DocType
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Disiscritto dalla Newsletter
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,Unsubscribed from Newsletter,Disiscritto dalla Newsletter
apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Piegare deve venire prima di un&#39;interruzione di sezione
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,Sotto lo sviluppo
apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Ultima modifica Di
DocType: Workflow State,hand-down,mano giù
DocType: Address,GST State,Stato GST
@@ -1226,6 +1230,7 @@ DocType: Workflow State,Tag,Tag
DocType: Custom Script,Script,Script
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Le mie impostazioni
DocType: Website Theme,Text Color,Colore testo
apps/frappe/frappe/desk/page/backups/backups.py +72,Backup job is already queued. You will receive an email with the download link,Il processo di backup è già in coda. Riceverai un&#39;e-mail con il link di download
DocType: Desktop Icon,Force Show,forza Visualizza
apps/frappe/frappe/auth.py +78,Invalid Request,Richiesta non valida
apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Questo modulo non ha alcun input
@@ -1336,7 +1341,7 @@ DocType: DocField,Name,Nome
apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,È stato superato lo spazio massimo di {0} per il piano. {1}.
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Cerca i documenti
DocType: OAuth Authorization Code,Valid,Valido
apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Open Link
apps/frappe/frappe/public/js/frappe/form/control.js +1354,Open Link,Open Link
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,La tua lingua
apps/frappe/frappe/desk/form/load.py +46,Did not load,Non caricare
apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Aggiungi riga
@@ -1354,6 +1359,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Alcuni documenti , come una fattura , non devono essere cambiati una volta finale . Lo stato finale di tali documenti è chiamata inoltrata . È possibile limitare le quali ruoli possono Submit ."
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Non sei autorizzato a esportare questo report
apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 elemento selezionato
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> Nessun risultato trovato per ' </p>
DocType: Newsletter,Test Email Address,Prova Indirizzo e-mail
DocType: ToDo,Sender,Mittente
DocType: GSuite Settings,Google Apps Script,Script di Google Apps
@@ -1461,7 +1467,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Ple
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Caricamento report
apps/frappe/frappe/limits.py +72,Your subscription will expire today.,L&#39;abbonamento scade oggi.
DocType: Page,Standard,Standard
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Allega File
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,Allega File
apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,Notifica aggiornamento password
apps/frappe/frappe/desk/page/backups/backups.html +13,Size,Taglia
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,Assegnazione Complete
@@ -1491,7 +1497,7 @@ apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversat
apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Le opzioni non impostate per il campo link {0}
DocType: Customize Form,"Must be of type ""Attach Image""",Deve essere di tipo &quot;Allega immagine&quot;
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Deseleziona tutto
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Non è possibile rimuovere 'Sola lettura' per il campo {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +199,You cannot unset 'Read Only' for field {0},Non è possibile rimuovere 'Sola lettura' per il campo {0}
DocType: Auto Email Report,Zero means send records updated at anytime,Zero significa inviare registri aggiornati in qualsiasi momento
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +22,Complete Setup,installazione completa
DocType: Workflow State,asterisk,asterisco
@@ -1505,7 +1511,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +98,Week,Settimana
DocType: Social Login Keys,Google,Google
DocType: Email Domain,Example Email Address,Esempio Indirizzo e-mail
apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,Più usato
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Unsubscribe from Newsletter,Disiscriviti dalla Newsletter
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe from Newsletter,Disiscriviti dalla Newsletter
apps/frappe/frappe/www/login.html +101,Forgot Password,Reimposta la password
DocType: Dropbox Settings,Backup Frequency,frequenza di backup
DocType: Workflow State,Inverse,Inverso
@@ -1583,10 +1589,11 @@ apps/frappe/frappe/config/setup.py +209,"Actions for workflow (e.g. Approve, Can
DocType: Workflow State,flag,bandiera
apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +57,Feedback Request is already sent to user,Feedback Richiesta è già inviato all&#39;utente
DocType: Web Page,Text Align,Allineamento testo
apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Il nome non può contenere caratteri speciali come {0}
apps/frappe/frappe/model/naming.py +185,Name cannot contain special characters like {0},Il nome non può contenere caratteri speciali come {0}
DocType: Contact Us Settings,Forward To Email Address,Inoltra a Indirizzo e-mail
apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Mostra tutti i dati
apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Campo del titolo deve essere un nome di campo valido
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,Account di posta elettronica non configurato. Crea un nuovo account di posta elettronica da Setup&gt; Email&gt; Account di posta elettronica
apps/frappe/frappe/config/core.py +7,Documents,Documenti
DocType: Email Flag Queue,Is Completed,È completato
apps/frappe/frappe/www/me.html +22,Edit Profile,Modifica Profilo
@@ -1596,7 +1603,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi
myfield
eval:doc.myfield=='My Value'
eval:doc.age&gt;18",Questo campo viene visualizzato solo se il nome del campo definito qui ha valore o le regole sono veri (esempi): eval myfield: doc.myfield == &#39;il mio valore&#39; eval: doc.age&gt; 18
apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Oggi
apps/frappe/frappe/public/js/frappe/form/control.js +764,Today,Oggi
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Dopo aver impostato questo, gli utenti saranno solo documenti di accesso in grado (es. post del blog ) in cui è presente il link (es. Blogger ) ."
DocType: Error Log,Log of Scheduler Errors,Log degli errori Scheduler
DocType: User,Bio,Bio
@@ -1655,7 +1662,7 @@ DocType: Print Format,Js,Js
apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Selezionare Formato di stampa
apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,modelli di tastiera brevi sono facili da indovinare
DocType: Portal Settings,Portal Menu,Menu del Portale
apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Lunghezza {0} deve essere compreso tra 1 e 1000
apps/frappe/frappe/model/db_schema.py +115,Length of {0} should be between 1 and 1000,Lunghezza {0} deve essere compreso tra 1 e 1000
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,Ricerca per nulla
DocType: DocField,Print Hide,Stampa Hide
apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,Immettere Valore
@@ -1708,8 +1715,7 @@ apps/frappe/frappe/model/document.py +564,Cannot change docstatus from 0 to 2,Im
DocType: User Permission for Page and Report,Roles Permission,ruoli permesso
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Aggiornare
DocType: Error Snapshot,Snapshot View,Istantanea vista
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Si prega di salvare la Newsletter prima di inviare
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} anno (i) fa
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +101,Please save the Newsletter before sending,Si prega di salvare la Newsletter prima di inviare
apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Opzioni necessario essere un DocType valido per il campo {0} in riga {1}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Modifica Proprietà
DocType: Patch Log,List of patches executed,Elenco di patch eseguita
@@ -1727,7 +1733,7 @@ apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Aggiornamento
DocType: Workflow State,trash,cestinare
DocType: System Settings,Older backups will be automatically deleted,i backup più vecchi verranno eliminati automaticamente
DocType: Event,Leave blank to repeat always,Lascia in bianco per ripetere sempre
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +192,Confirmed,Confermato
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,Confirmed,Confermato
DocType: Event,Ends on,Termina il
DocType: Payment Gateway,Gateway,Ingresso
apps/frappe/frappe/public/js/frappe/form/linked_with.js +116,Not enough permission to see links,Non è sufficiente l&#39;autorizzazione per visualizzare i collegamenti
@@ -1758,7 +1764,6 @@ DocType: Contact,Purchase Manager,Responsabile Acquisti
DocType: Custom Script,Sample,Esempio
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Tags senza categoria
DocType: Event,Every Week,Ogni Settimana
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,Account di posta elettronica non configurato. Crea un nuovo account di posta elettronica da Setup&gt; Email&gt; Account di posta elettronica
apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Clicca qui per controllare l&#39;utilizzo o l&#39;aggiornamento a un piano più alto
DocType: Custom Field,Is Mandatory Field,È Campo obbligatorio
DocType: User,Website User,Website Utente
@@ -1766,7 +1771,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +10,Not equals,N
DocType: Integration Request,Integration Request Service,Integrazione richiesta di servizio
DocType: Website Script,Script to attach to all web pages.,Script di allegare a tutte le pagine web.
DocType: Web Form,Allow Multiple,Consenti multipla
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +40,Assign,Assegnare
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +44,Assign,Assegnare
apps/frappe/frappe/config/setup.py +102,Import / Export Data from .csv files.,Import / Export dati da file. Csv .
DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Invia solo i record aggiornati nelle ultime ore X
DocType: Communication,Feedback,Riscontri
@@ -1846,10 +1851,10 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,Disponibil
apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Salvare prima di allegare.
apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Aggiunti {0} ({1})
apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Tema di Default si trova in {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},FieldType non può essere modificato da {0} a {1} in riga {2}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +325,Fieldtype cannot be changed from {0} to {1} in row {2},FieldType non può essere modificato da {0} a {1} in riga {2}
apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,Autorizzazioni di ruolo
DocType: Help Article,Intermediate,Intermedio
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Impossibile leggere
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Può leggere
DocType: Custom Role,Response,Risposta
apps/frappe/frappe/public/js/frappe/form/workflow.js +41,Workflow will start after saving.,Il flusso di lavoro avrà inizio dopo il salvataggio.
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +7,Can Share,Può Condividere
@@ -1861,9 +1866,9 @@ apps/frappe/frappe/core/doctype/user/user.js +42,Refreshing...,Aggiornamento ...
DocType: Event,Starts on,Inizia il
DocType: System Settings,System Settings,Impostazioni di sistema
apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,La sessione non è riuscita
apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Questa email è stata inviata a {0} e copiato in {1}
apps/frappe/frappe/email/queue.py +470,This email was sent to {0} and copied to {1},Questa email è stata inviata a {0} e copiato in {1}
DocType: Workflow State,th,th
apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Creare un nuovo {0}
apps/frappe/frappe/public/js/frappe/form/control.js +1517,Create a new {0},Creare un nuovo {0}
DocType: Email Rule,Is Spam,è spam
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Report {0}
apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Apri {0}
@@ -1875,12 +1880,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon a
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,Duplica
DocType: Newsletter,Create and Send Newsletters,Creare e inviare newsletter
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date must be before To Date,Da Data deve essere prima di A Data
DocType: Address,Andaman and Nicobar Islands,Isole Andamane e Nicobar
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +216,GSuite Document,Documento di GSuite
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +29,Please specify which value field must be checked,Si prega di specificare quale campo valore deve essere controllato
apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"""Parent"" signifies the parent table in which this row must be added","""Padre"" indica la tabella padre in cui si deve aggiungere la riga"
DocType: Website Theme,Apply Style,applica stile
DocType: Feedback Request,Feedback Rating,Feedback
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared With,Condiviso con
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,Condiviso con
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Impostazione&gt; Gestione autorizzazioni utente
DocType: Help Category,Help Articles,Aiuto articoli
,Modules Setup,Impostazione Moduli
apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Tipo:
@@ -1911,7 +1918,7 @@ DocType: OAuth Client,App Client ID,Applicazione client ID
DocType: Kanban Board,Kanban Board Name,Nome della Kanban Board
DocType: Email Alert Recipient,"Expression, Optional","Espressione, Opzionale"
DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,Copia e incolla questo codice in e vuoto Code.gs nel tuo progetto a script.google.com
apps/frappe/frappe/email/queue.py +456,This email was sent to {0},Questa email è stata inviata a {0}
apps/frappe/frappe/email/queue.py +472,This email was sent to {0},Questa email è stata inviata a {0}
DocType: DocField,Remember Last Selected Value,Ricorda ultimo valore selezionato
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +334,Please select Document Type,Seleziona Tipo documento
DocType: Email Account,Check this to pull emails from your mailbox,Seleziona per scaricare la posta dal tuo account
@@ -1926,6 +1933,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,Opzi
DocType: Feedback Trigger,Email Field,Email campo
apps/frappe/frappe/www/update-password.html +59,New Password Required.,Nuova password richiesta.
apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} ha condiviso questo documento con {1}
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,Impostazione&gt; Utente
DocType: Website Settings,Brand Image,Immagine di marca
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Impostazione di barra di navigazione superiore, piè di pagina e il logo."
@@ -1993,8 +2001,8 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa
apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Impossibile leggere il formato di file per {0}
DocType: Auto Email Report,Filter Data,Filtro Dati
apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Aggiungi un tag
apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Si prega di allegare un file.
apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Ci sono stati alcuni errori durante l'impostazione del nome, si prega di contattare l'amministratore"
apps/frappe/frappe/public/js/frappe/form/control.js +1335,Please attach a file first.,Si prega di allegare un file.
apps/frappe/frappe/model/naming.py +174,"There were some errors setting the name, please contact the administrator","Ci sono stati alcuni errori durante l'impostazione del nome, si prega di contattare l'amministratore"
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,L&#39;account di posta in arrivo non è corretto
apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \
Please enter a valid email address so that we can get back.",Sembra che hai scritto il tuo nome anziché la tua email. \ Inserisci un indirizzo email valido in modo che possiamo tornare indietro.
@@ -2046,7 +2054,6 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N
DocType: Custom DocPerm,Create,Crea
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Filtro non valido: {0}
DocType: Email Account,no failed attempts,tentativi non riusciti
apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,Non è stato trovato alcun modello di indirizzo predefinito. Crea un nuovo dalla configurazione&gt; Stampa e branding&gt; Template indirizzo.
DocType: GSuite Settings,refresh_token,refresh_token
DocType: Dropbox Settings,App Access Key,App Accessibilità
DocType: OAuth Bearer Token,Access Token,Token di accesso
@@ -2072,6 +2079,7 @@ apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl +
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Aggiungi un nuovo {0}
apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,Un nuovo account e-mail
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +28,Document Restored,Documento ripristinato
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +203,You can't set 'Options' for field {0},Non puoi impostare &#39;Opzioni&#39; per il campo {0}
apps/frappe/frappe/core/page/usage_info/usage_info.html +86,Size (MB),Dimensioni (MB)
DocType: Help Article,Author,Autore
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +10,Resume Sending,riprendere l&#39;invio
@@ -2081,7 +2089,7 @@ DocType: Print Settings,Monochrome,Monocromatico
DocType: Address,Purchase User,Acquisto utente
DocType: Workflow,"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.","Diverso &quot;Uniti&quot; questo documento può esistere in Come &quot;Open&quot;, &quot;In attesa di approvazione&quot;, ecc"
apps/frappe/frappe/utils/verified_command.py +43,This link is invalid or expired. Please make sure you have pasted correctly.,Questo collegamento non è valido o scaduto. Assicurati di aver incollato correttamente.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> è stata annullata con successo da questa mailing list.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +136,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> è stata annullata con successo da questa mailing list.
DocType: Web Page,Slideshow,Slideshow
apps/frappe/frappe/contacts/doctype/address_template/address_template.py +31,Default Address Template cannot be deleted,Indirizzo modello predefinito non può essere eliminato
DocType: Contact,Maintenance Manager,Responsabile della manutenzione
@@ -2102,7 +2110,7 @@ apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a r
DocType: System Settings,Apply Strict User Permissions,Applicare autorizzazioni utente rigorose
DocType: DocField,Allow Bulk Edit,Consenti la modifica bulk
DocType: Blog Post,Blog Post,Articolo Blog
apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Ricerca Avanzata
apps/frappe/frappe/public/js/frappe/form/control.js +1527,Advanced Search,Ricerca Avanzata
apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Le istruzioni per la reimpostazione della password sono state inviate al tuo indirizzo email
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \
higher levels for field level permissions.","Livello 0 è per le autorizzazioni a livello di documento, \ livelli più elevati per le autorizzazioni a livello di campo."
@@ -2127,13 +2135,13 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new re
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Ricerca
DocType: Currency,Fraction,Frazione
DocType: LDAP Settings,LDAP First Name Field,LDAP Nome campo
apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Seleziona da allegati esistenti
apps/frappe/frappe/public/js/frappe/form/control.js +1085,Select from existing attachments,Seleziona da allegati esistenti
DocType: Custom Field,Field Description,Descrizione Campo
apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Nome non impostato tramite Prompt
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,E-mail in arrivo
DocType: Auto Email Report,Filters Display,filtri di visualizzazione
DocType: Website Theme,Top Bar Color,Top Bar di colore
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Do you want to unsubscribe from this mailing list?,Vuoi annullare l&#39;iscrizione a questa mailing list?
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Do you want to unsubscribe from this mailing list?,Vuoi annullare l&#39;iscrizione a questa mailing list?
DocType: Address,Plant,Impianto
apps/frappe/frappe/core/doctype/communication/communication.js +65,Reply All,Rispondi a tutti
DocType: DocType,Setup,Setup
@@ -2176,7 +2184,7 @@ DocType: User,Send Notifications for Transactions I Follow,Invia notifiche per l
apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Impossibile impostare Invia, Annulla, Modifica senza Scrivere"
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Eliminare Veramente questo Allegato?
apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} <a href=""#Form/{0}/{1}"">{1}</a> is linked with {2} <a href=""#Form/{2}/{3}"">{3}</a>","Impossibile eliminare o annullare perché {0} <a href=""#Form/{0}/{1}"">{1}</a> è collegato con {2} <a href=""#Form/{2}/{3}"">{3}</a>"
apps/frappe/frappe/__init__.py +1062,Thank you,Grazie
apps/frappe/frappe/__init__.py +1070,Thank you,Grazie
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Salvataggio
DocType: Print Settings,Print Style Preview,Stile di stampa Anteprima
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
@@ -2191,7 +2199,7 @@ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Aggiungi
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Sr No
,Role Permissions Manager,Gestore Autorizzazioni Ruolo
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Nome del nuovo formato di stampa
apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Cancella Allegato
apps/frappe/frappe/public/js/frappe/form/control.js +1087,Clear Attachment,Cancella Allegato
apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Obbligatorio:
,User Permissions Manager,Amministratore Permessi Utente
DocType: Property Setter,New value to be set,Nuovo valore da impostare
@@ -2216,7 +2224,7 @@ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment C
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,Registri evidente errore
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,Seleziona un rating
DocType: Email Account,Notify if unreplied for (in mins),Notifica se non risponde per (in minuti)
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 giorni fà
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +501,2 days ago,2 giorni fà
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Categorizzare i post sul blog.
DocType: Workflow State,Time,Tempo
DocType: DocField,Attach,Allega
@@ -2232,6 +2240,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Dimensio
DocType: GSuite Templates,Template Name,Nome modello
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,nuovo tipo di documento
DocType: Custom DocPerm,Read,Leggi
DocType: Address,Chhattisgarh,Chhattisgarh
DocType: Role Permission for Page and Report,Role Permission for Page and Report,Autorizzazione dei ruoli per pagina e rapporto
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,allineare Valore
apps/frappe/frappe/www/update-password.html +14,Old Password,Vecchia Password
@@ -2279,7 +2288,7 @@ apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your ema
can get back to you. Thanks!","Inserisci sia tua email e messaggio in modo che noi \
può tornare a voi. Grazie!"
apps/frappe/frappe/email/smtp.py +170,Could not connect to outgoing email server,Impossibile connettersi al server di posta in uscita
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +162,Thank you for your interest in subscribing to our updates,Grazie per il vostro interesse per sottoscrivere i nostri aggiornamenti
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Thank you for your interest in subscribing to our updates,Grazie per il vostro interesse per sottoscrivere i nostri aggiornamenti
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Custom Column,colonna personalizzata
DocType: Workflow State,resize-full,resize-pieno
DocType: Workflow State,off,spento
@@ -2342,7 +2351,7 @@ DocType: Address,Telangana,Telangana
apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Predefinito per {0} deve essere un&#39;opzione
DocType: Tag Doc Category,Tag Doc Category,Tag Doc Categoria
DocType: User,User Image,Immagini Utente
apps/frappe/frappe/email/queue.py +289,Emails are muted,Le E-mail sono disattivati
apps/frappe/frappe/email/queue.py +304,Emails are muted,Le E-mail sono disattivati
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl +
DocType: Website Theme,Heading Style,Stile Intestazione
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +183,A new Project with this name will be created,Verrà creato un nuovo progetto con questo nome
@@ -2559,7 +2568,6 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,campana
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Errore nell&#39;avviso di posta elettronica
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Condividi questo documento con
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,Impostazione&gt; Gestione autorizzazioni utente
apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} non può essere una foglia dato che ha figli
DocType: Communication,Info,Info
apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Aggiungi allegato
@@ -2614,7 +2622,7 @@ apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,Formato di
DocType: Email Alert,Send days before or after the reference date,Invia giorni prima o dopo la data di riferimento
DocType: User,Allow user to login only after this hour (0-24),Consentire Login Utente solo dopo questo orario (0-24)
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,Valore
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +165,Click here to verify,Clicca qui per verificare
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +166,Click here to verify,Clicca qui per verificare
apps/frappe/frappe/utils/password_strength.py +178,Predictable substitutions like '@' instead of 'a' don't help very much.,sostituzioni prevedibili come &#39;@&#39; invece di &#39;un&#39; non aiutano molto.
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Assegnato By Me
apps/frappe/frappe/utils/data.py +462,Zero,Zero
@@ -2626,6 +2634,7 @@ DocType: ToDo,Priority,Priorità
DocType: Email Queue,Unsubscribe Param,Parametri di disiscrizione
DocType: Auto Email Report,Weekly,Settimanale
DocType: Communication,In Reply To,In risposta a
apps/frappe/frappe/contacts/doctype/address/address.py +189,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,Non è stato trovato alcun modello di indirizzo predefinito. Crea un nuovo dalla configurazione&gt; Stampa e marca&gt; Modello indirizzo.
DocType: DocType,Allow Import (via Data Import Tool),Consentire l&#39;importazione (tramite dati Import Tool)
apps/frappe/frappe/templates/print_formats/standard_macros.html +30,Sr,sr
DocType: DocField,Float,Galleggiare
@@ -2716,7 +2725,6 @@ apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Limite non valido {0}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Elencare un tipo di documento
DocType: Event,Ref Type,Tipo Rif.
apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Se si sta caricando nuovi record, lasciare il ""nome"" (ID) colonna vuota."
DocType: Address,Chattisgarh,Chattisgarh
apps/frappe/frappe/config/core.py +47,Errors in Background Events,Errori in Background Eventi
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,Numero di colonne
DocType: Workflow State,Calendar,Calendario
@@ -2748,7 +2756,7 @@ apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Assegn
DocType: Integration Request,Remote,A distanza
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Calcola
apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Seleziona DocType primo
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Conferma La Tua Email
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +174,Confirm Your Email,Conferma La Tua Email
apps/frappe/frappe/www/login.html +42,Or login with,O login con
DocType: Error Snapshot,Locals,La gente del posto
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Comunicato via {0} il {1}: {2}
@@ -2765,7 +2773,7 @@ DocType: Web Page,Web Page,Pagina Web
DocType: Blog Category,Blogger,Blogger
apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},&#39;In ricerca globale&#39; non consentito per il tipo {0} nella riga {1}
apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Visualizza elenco
apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},La data deve essere in formato : {0}
apps/frappe/frappe/public/js/frappe/form/control.js +810,Date must be in format: {0},La data deve essere in formato : {0}
DocType: Workflow,Don't Override Status,Non override Stato
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Si prega di dare una valutazione.
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Richiesta Feedback
@@ -2798,7 +2806,7 @@ DocType: Custom DocPerm,Report,Report
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,L&#39;importo deve essere maggiore di 0.
apps/frappe/frappe/desk/reportview.py +107,{0} is saved,{0} è salvato
apps/frappe/frappe/core/doctype/user/user.py +327,User {0} cannot be renamed,Utente {0} non può essere rinominato
apps/frappe/frappe/model/db_schema.py +107,Fieldname is limited to 64 characters ({0}),Fieldname è limitata a 64 caratteri ({0})
apps/frappe/frappe/model/db_schema.py +108,Fieldname is limited to 64 characters ({0}),Fieldname è limitata a 64 caratteri ({0})
apps/frappe/frappe/config/desk.py +59,Email Group List,Lista Gruppi E-mail
DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],Un file di icona con estensione .ico. Dovrebbe essere 16 x 16 px. Generato usando un generatore di favicon. [favicon-generator.org]
DocType: Auto Email Report,Format,Formato
@@ -2876,7 +2884,7 @@ DocType: Website Settings,Title Prefix,Title Prefix
DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Notifiche e mail di massa verranno inviati da questo server in uscita.
DocType: Workflow State,cog,COG
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on Migrate,Sync su Migrazione
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Si sta visualizzando
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Currently Viewing,Si sta visualizzando
DocType: DocField,Default,Predefinito
apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} aggiunto
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Cerca &#39;{0}&#39;
@@ -2936,7 +2944,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +771,Report was
DocType: Print Settings,Print Style,Stile di stampa
apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,Non è collegato a alcun record
DocType: Custom DocPerm,Import,Importazione
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +178,Row {0}: Not allowed to enable Allow on Submit for standard fields,Riga {0}: Non consentito per attivare Consenti su Invia per campi standard
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +180,Row {0}: Not allowed to enable Allow on Submit for standard fields,Riga {0}: Non consentito per attivare Consenti su Invia per campi standard
apps/frappe/frappe/config/setup.py +100,Import / Export Data,Importa / Esporta dati
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,Ruoli standard non possono essere rinominati
DocType: Communication,To and CC,Per e CC
@@ -2963,7 +2971,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo
DocType: Auto Email Report,Filter Meta,Filtro Meta
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Testo da visualizzare per collegamento alla pagina Web, se questa forma ha una pagina web. Percorso di collegamento verrà automaticamente generato in base `page_name` e` parent_website_route`"
DocType: Feedback Request,Feedback Trigger,Commenti trigger
apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Impostare {0} prima
apps/frappe/frappe/public/js/frappe/form/control.js +1741,Please set {0} first,Impostare {0} prima
DocType: Unhandled Email,Message-id,Message-ID
DocType: Patch Log,Patch,Patch
DocType: Async Task,Failed,Impossibile


+ 72
- 64
frappe/translations/ja.csv Datei anzeigen

@@ -14,8 +14,9 @@ apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,
DocType: User,Facebook Username,Facebookのユーザー名
DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,注:複数のセッションは、モバイルデバイスの場合に許可されます
apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},ユーザーのための有効電子メールの受信トレイ{ユーザー}
apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,この電子メールを送信することはできません。あなたは今月の{0}の電子メールの送信制限を超えています。
apps/frappe/frappe/email/queue.py +225,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,この電子メールを送信することはできません。あなたは今月の{0}の電子メールの送信制限を超えています。
apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,完全に{0}を提出しますか?
apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,ダウンロードファイルバックアップ
DocType: Address,County,郡
DocType: Workflow,If Checked workflow status will not override status in list view,チェックワークフローステータスは、リストビューのステータスを上書きしない場合
apps/frappe/frappe/client.py +280,Invalid file path: {0},無効なファイルパス:{0}
@@ -80,10 +81,10 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,お問い
apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,管理者がログインしました
DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",新しい行またはカンマで区切られた「セールスクエリ、サポートクエリ」などのような連絡先オプション
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2.ダウンロード
apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,挿入
apps/frappe/frappe/public/js/frappe/form/control.js +1979,Insert,挿入
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},{0}を選択
DocType: Print Settings,Classic,クラシック
DocType: Desktop Icon,Color,色
DocType: DocField,Color,色
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +54,For ranges,対象範囲
DocType: Workflow State,indent-right,インデント右
DocType: Has Role,Has Role,役割を持っています
@@ -100,7 +101,7 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To impor
DocType: DocType,Default Print Format,デフォルト印刷フォーマット
DocType: Workflow State,Tags,タグ
apps/frappe/frappe/public/js/frappe/form/workflow.js +33,None: End of Workflow,なし:ワークフローの終了
apps/frappe/frappe/model/db_schema.py +346,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",非ユニークの値が存在するため、フィールド {0} を{1} 内でユニークに設定することはできません
apps/frappe/frappe/model/db_schema.py +347,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",非ユニークの値が存在するため、フィールド {0} を{1} 内でユニークに設定することはできません
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +47,Document Types,文書タイプ
DocType: Address,Jammu and Kashmir,ジャムとカシミール
DocType: Workflow,Workflow State Field,ワークフローステータスのフィールド
@@ -232,7 +233,7 @@ DocType: Workflow,Transition Rules,移行ルール
apps/frappe/frappe/core/doctype/report/report.js +11,Example:,例:
DocType: Workflow,Defines workflow states and rules for a document.,ドキュメントのためのワークフローの状況とルールを定義します。
DocType: Workflow State,Filter,フィルタ
apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},フィールド名{0}には、{1}などの特殊文字を含めることはできません
apps/frappe/frappe/model/db_schema.py +564,Fieldname {0} cannot have special characters like {1},フィールド名{0}には、{1}などの特殊文字を含めることはできません
apps/frappe/frappe/config/setup.py +121,Update many values at one time.,一度に多くの値を更新します。
apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,エラー:あなたが文書を開いた後に変更されています
apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0}ログアウト:{1}
@@ -261,7 +262,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Gravatar.com
apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.",あなたのサブスクリプションは、{0}に有効期限が切れています。更新するには、{1}。
DocType: Workflow State,plus-sign,プラス記号
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,すでに完全なセットアップ
apps/frappe/frappe/__init__.py +889,App {0} is not installed,アプリケーション{0}がインストールされていません
apps/frappe/frappe/__init__.py +897,App {0} is not installed,アプリケーション{0}がインストールされていません
DocType: Workflow State,Refresh,再読込
DocType: Event,Public,公開
apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,表示するものがありません
@@ -340,7 +341,6 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,見出しを編集
DocType: File,File URL,ファイルURL
DocType: Version,Table HTML,表HTML
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> 'の検索結果はありません' </p>
apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,登録者を追加
apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,今日の予定
DocType: Email Alert Recipient,Email By Document Field,文書フィールドによるメール
@@ -405,7 +405,6 @@ DocType: Desktop Icon,Link,リンク
apps/frappe/frappe/utils/file_manager.py +96,No file attached,添付ファイルがありません
DocType: Version,Version,バージョン
DocType: User,Fill Screen,フルスクリーン
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,セットアップ&gt;電子メール&gt;電子メールアカウントからデフォルトの電子メールアカウントを設定してください
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",データが存在しないため、このツリーのレポートを表示することができません。権限によって除外されている可能性があります
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. [ファイル]
apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,アップロード経由で編集
@@ -476,9 +475,9 @@ DocType: User,Reset Password Key,パスワードキーリセット
DocType: Email Account,Enable Auto Reply,自動返信を有効にする
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,閲覧なし
DocType: Workflow State,zoom-in,ズームアップ
apps/frappe/frappe/email/queue.py +219,Unsubscribe from this list,リスト登録解除
apps/frappe/frappe/email/queue.py +234,Unsubscribe from this list,リスト登録解除
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Reference DocType and Reference Name are required,参考文書タイプと参照名が必要です
apps/frappe/frappe/utils/jinja.py +35,Syntax error in template,テンプレートの構文エラー
apps/frappe/frappe/utils/jinja.py +51,Syntax error in template,テンプレートの構文エラー
DocType: DocField,Width,幅
DocType: Email Account,Notify if unreplied,返信されていない場合に通知
DocType: System Settings,Minimum Password Score,最小パスワードスコア
@@ -562,6 +561,7 @@ DocType: Custom Field,Select the label after which you want to insert new field.
DocType: User,Last Login,最新ログイン
apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},行{0}にはフィールド名が必要です
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,列
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,セットアップ&gt;電子メール&gt;電子メールアカウントからデフォルトの電子メールアカウントを設定してください
DocType: Custom Field,Adds a custom field to a DocType,文書タイプにカスタムフィールドを追加
DocType: File,Is Home Folder,ホームフォルダ
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0}は有効なメールアドレスではありません
@@ -569,7 +569,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +733,Select atleast 1 reco
apps/frappe/frappe/core/doctype/has_role/has_role.py +13,User '{0}' already has the role '{1}',ユーザーは、 &#39;{0}&#39;は既に役割を持っている &#39;{1}&#39;
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,アップロード・同期
apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},{0}と共有
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe,登録解除
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +132,Unsubscribe,登録解除
DocType: Communication,Reference Name,参照名
apps/frappe/frappe/public/js/frappe/toolbar.js +30,Chat Support,チャットサポート
DocType: Error Snapshot,Exception,例外
@@ -587,7 +587,7 @@ DocType: Email Group,Newsletter Manager,ニュースレターマネージャー
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,オプション1
apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0}から{1}
apps/frappe/frappe/config/setup.py +89,Log of error during requests.,リクエスト中のエラーのログ。
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0}正常に電子メールグループに追加されました。
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +194,{0} has been successfully added to the Email Group.,{0}正常に電子メールグループに追加されました。
DocType: Address,Uttar Pradesh,ウッタル・プラデーシュ州
DocType: Address,Pondicherry,ポンディシェリ
apps/frappe/frappe/public/js/frappe/upload.js +364,Make file(s) private or public?,プライベートまたはパブリックファイルを作りますか?
@@ -618,7 +618,7 @@ DocType: Portal Settings,Portal Settings,ポータル設定
DocType: Web Page,0 is highest,0が上限です
apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,あなたはに{0}この通信を再リンクしてもよろしいですか?
apps/frappe/frappe/www/login.html +104,Send Password,パスワードを送信
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +45,Attachments,添付
DocType: Email Queue,Attachments,添付
apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,この文書にアクセスする権限がありません
DocType: Language,Language Name,言語名
DocType: Email Group Member,Email Group Member,メールグループメンバー
@@ -648,7 +648,7 @@ apps/frappe/frappe/utils/password_strength.py +78,Try to use a longer keyboard p
DocType: Feedback Trigger,Check Communication,コミュニケーションをチェック
DocType: Address,Rajasthan,ラージャスターン
apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,レポートビルダのレポートは、レポートビルダーによって直接管理されています。何もする必要がありません。
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,あなたのメールアドレスを確認してください
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +164,Please verify your Email Address,あなたのメールアドレスを確認してください
apps/frappe/frappe/model/document.py +903,none of,のどれも
apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,自分にコピーを送付
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,ユーザー権限をアップロード
@@ -659,7 +659,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Si
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,かんばんボードは{0}が存在しません。
apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0}が現在この文書を表示しています
DocType: ToDo,Assigned By Full Name,フルネームによって割り当て
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} 更新
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} 更新
apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,レポートはシングルタイプに設定することはできません
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0}日前
DocType: Email Account,Awaiting Password,パスワードを待っています
@@ -684,7 +684,7 @@ DocType: Workflow State,Stop,停止
DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,開きたいページへのリンク。グループの親にする場合は空白のままにします。
DocType: DocType,Is Single,シングル
apps/frappe/frappe/core/doctype/user/user.py +720,Sign Up is disabled,サインアップ無効になっています
apps/frappe/frappe/email/queue.py +278,{0} has left the conversation in {1} {2},{0} が {1} {2} の会話から退出しました
apps/frappe/frappe/email/queue.py +293,{0} has left the conversation in {1} {2},{0} が {1} {2} の会話から退出しました
DocType: Blogger,User ID of a Blogger,BloggerのユーザーID
apps/frappe/frappe/core/doctype/user/user.py +287,There should remain at least one System Manager,少なくとも1つのシステムマネージャーを残さねばなりません
DocType: GSuite Settings,Authorization Code,認証コード
@@ -730,6 +730,7 @@ DocType: Event,Event,イベント
apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:",{0}で{1}が記述:
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,標準のフィールドを削除することはできません。必要に応じて非表示にできます
DocType: Top Bar Item,For top bar,トップバー用
apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,バックアップのために待機します。ダウンロードリンクが記載されたメールが届きます
apps/frappe/frappe/utils/bot.py +148,Could not identify {0},識別できませんでした{0}
DocType: Address,Address,住所
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +3,Payment Failed,支払いできませんでした
@@ -754,13 +755,13 @@ DocType: Web Form,Allow Print,印刷を許可します
apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,アプリがインストールされていません
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,フィールドに「必須」をマーク
DocType: Communication,Clicked,クリック済
apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},権限がありません '{0}' {1}
apps/frappe/frappe/public/js/legacy/form.js +950,No permission to '{0}' {1},権限がありません '{0}' {1}
DocType: User,Google User ID,GoogleのユーザーID
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,送信するスケジュール
DocType: DocType,Track Seen,トラックは見ました
apps/frappe/frappe/desk/form/utils.py +55,This method can only be used to create a Comment,この方法は、コメントの作成に使用できます
DocType: Event,orange,オレンジ
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,No {0} found,{0}が見つかりません
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +558,No {0} found,{0}が見つかりません
apps/frappe/frappe/config/setup.py +242,Add custom forms.,カスタムフォームを追加
apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}:{1} {2}
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +419,submitted this document,この文書を提出
@@ -790,6 +791,7 @@ DocType: Newsletter Email Group,Newsletter Email Group,ニュースレターの
DocType: Dropbox Settings,Integrations,インテグレーション
DocType: DocField,Section Break,セクション区切り
DocType: Address,Warehouse,倉庫
DocType: Address,Other Territory,その他の地域
,Messages,メッセージ
apps/frappe/frappe/desk/page/applications/applications.js +49,Portal,ポータル
DocType: Email Account,Use Different Email Login ID,異なるメールログインIDを使用する
@@ -820,6 +822,7 @@ apps/frappe/frappe/utils/data.py +556,1 month ago,1ヶ月前
DocType: Contact,User ID,ユーザー ID
DocType: Communication,Sent,送信済
DocType: Address,Kerala,ケララ州
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0}年前
DocType: File,Lft,左
DocType: User,Simultaneous Sessions,同時セッション
DocType: OAuth Client,Client Credentials,クライアントの資格情報
@@ -836,7 +839,7 @@ DocType: Email Queue,Unsubscribe Method,配信停止方法
DocType: GSuite Templates,Related DocType,関連するDocType
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,コンテンツを追加して編集
apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,言語を選択
apps/frappe/frappe/__init__.py +509,No permission for {0},{0} には許可がありません
apps/frappe/frappe/__init__.py +517,No permission for {0},{0} には許可がありません
DocType: DocType,Advanced,高度な
apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,APIキーまたはAPIの秘密は間違っているようです!
apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},参照:{0} {1}
@@ -847,6 +850,7 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P
DocType: Email Account,Yahoo Mail,Yahooメール
apps/frappe/frappe/limits.py +75,Your subscription will expire tomorrow.,あなたのサブスクリプションは明日期限切れになります。
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +483,Saved!,保存しました!
apps/frappe/frappe/public/js/frappe/form/control.js +729,{0} is not a valid hex color,{0}は有効な16進数ではありません
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,マダム
apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},更新済{0}:{1}
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,マスター
@@ -874,7 +878,7 @@ DocType: Report,Disabled,無効
DocType: Workflow State,eye-close,目を閉じる
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuthプロバイダーの設定
apps/frappe/frappe/config/setup.py +254,Applications,アプリケーション
apps/frappe/frappe/public/js/frappe/request.js +347,Report this issue,この課題をレポート
apps/frappe/frappe/public/js/frappe/request.js +349,Report this issue,この課題をレポート
apps/frappe/frappe/public/js/frappe/form/save.js +79,Name is required,名前が必要です
DocType: Custom Script,Adds a custom script (client or server) to a DocType,文書タイプにカスタムスクリプト(クライアントまたはサーバ)を追加
DocType: Address,City/Town,市町村
@@ -969,6 +973,7 @@ DocType: Currency,**Currency** Master,「通貨」マスター
DocType: Email Account,No of emails remaining to be synced,メールのいいえが同期されるように残りません
apps/frappe/frappe/public/js/frappe/upload.js +203,Uploading,アップロード中
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,割当の前に文書を保存してください
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,バグや提案を投稿するには、ここをクリックしてください
DocType: Website Settings,Address and other legal information you may want to put in the footer.,住所やその他の法的情報(フッターに配置するなど)
DocType: Website Sidebar Item,Website Sidebar Item,ウェブサイトのサイドバー項目
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +44,{0} records updated,{0}レコードを更新
@@ -982,12 +987,10 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,クリア
apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,日次イベントは、同じ日に終了する必要があります。
DocType: Communication,User Tags,ユーザータグ
apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,画像を取得中...
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,セットアップ&gt;ユーザー
DocType: Workflow State,download-alt,ダウンロード-ALT
apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},アプリケーション{0}をダウンロード中
DocType: Communication,Feedback Request,フィードバック要求
apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,次のフィールドが不足しています:
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Experimental Feature,実験的な機能
apps/frappe/frappe/www/login.html +30,Sign in,サインイン
DocType: Web Page,Main Section,メインセクション
DocType: Page,Icon,アイコン
@@ -1089,7 +1092,7 @@ DocType: Customize Form,Customize Form,フォームをカスタマイズ
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +104,Mandatory field: set role for,必須フィールド:のための設定役割
DocType: Currency,A symbol for this currency. For e.g. $,この通貨のシンボル(例:$)
apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,Frappe Framework
apps/frappe/frappe/model/naming.py +174,Name of {0} cannot be {1},{0}の名前は{1}にすることはできません
apps/frappe/frappe/model/naming.py +180,Name of {0} cannot be {1},{0}の名前は{1}にすることはできません
apps/frappe/frappe/config/setup.py +46,Show or hide modules globally.,共通モジュール表示/非表示
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,開始日
apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,成功
@@ -1110,7 +1113,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +308,Add A New
apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js +3,See on Website,ウェブサイトで見ます
DocType: Workflow Transition,Next State,次の状態
DocType: User,Block Modules,ブロックモジュール
apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,&#39;{1}&#39;の{0}に長さを戻す &#39;{2}&#39;に。長さを設定すると、{3}のデータの切り捨ての原因になりますように。
apps/frappe/frappe/model/db_schema.py +142,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,&#39;{1}&#39;の{0}に長さを戻す &#39;{2}&#39;に。長さを設定すると、{3}のデータの切り捨ての原因になりますように。
DocType: Print Format,Custom CSS,カスタムCSS
apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,コメントを追加
apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},無視されます:{0} {1}
@@ -1202,13 +1205,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,
DocType: Custom Role,Custom Role,カスタムロール
apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,ホーム/テスト フォルダ2
DocType: System Settings,Ignore User Permissions If Missing,不足している場合はユーザー権限を無視
apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,アップロードする前に書類を保存してください
apps/frappe/frappe/public/js/frappe/form/control.js +1075,Please save the document before uploading.,アップロードする前に書類を保存してください
apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,パスワードを入力
DocType: Dropbox Settings,Dropbox Access Secret,Dropboxのアクセスの秘密
apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,別のコメントの追加
apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,編集DOCTYPE
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,ニュースレターから退会し
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,Unsubscribed from Newsletter,ニュースレターから退会し
apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,フォールドはセクション区切りの前に来なければなりません
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,開発中で
apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,最終更新者
DocType: Workflow State,hand-down,手(下)
DocType: Address,GST State,GSTの状態
@@ -1229,6 +1233,7 @@ DocType: Workflow State,Tag,タグ
DocType: Custom Script,Script,スクリプト
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,私の設定
DocType: Website Theme,Text Color,テキストの色
apps/frappe/frappe/desk/page/backups/backups.py +72,Backup job is already queued. You will receive an email with the download link,バックアップジョブはすでにキューに入れられています。ダウンロードリンクが記載されたメールが届きます
DocType: Desktop Icon,Force Show,フォースショー
apps/frappe/frappe/auth.py +78,Invalid Request,無効なリクエスト
apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,このフォームは入力されていません
@@ -1339,7 +1344,7 @@ DocType: DocField,Name,名前
apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,あなたは、あなたの計画のために、{0}の最大容量を超えています。 {1}。
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,ドキュメントを検索する
DocType: OAuth Authorization Code,Valid,有効な
apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,リンクを開く
apps/frappe/frappe/public/js/frappe/form/control.js +1354,Open Link,リンクを開く
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,あなたの言語
apps/frappe/frappe/desk/form/load.py +46,Did not load,ロードされませんでした
apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,行の追加
@@ -1358,6 +1363,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16
「提出」は「役割」によって制限することができます。"
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,この記事をエクスポートすることは許可されていません
apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1項目選択
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> 'の検索結果はありません' </p>
DocType: Newsletter,Test Email Address,テスト電子メールアドレス
DocType: ToDo,Sender,送信者
DocType: GSuite Settings,Google Apps Script,Google Appsスクリプト
@@ -1465,7 +1471,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Ple
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,レポートを読み込み中
apps/frappe/frappe/limits.py +72,Your subscription will expire today.,あなたのサブスクリプションは、今日期限切れになります。
DocType: Page,Standard,標準
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,ファイルを添付
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,ファイルを添付
apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,パスワード更新通知
apps/frappe/frappe/desk/page/backups/backups.html +13,Size,サイズ
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,割当完了
@@ -1495,7 +1501,7 @@ apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversat
apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},リンクフィールド{0}に設定されていないオプション
DocType: Customize Form,"Must be of type ""Attach Image""",「画像添付」タイプでなければなりません
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,すべての選択を解除
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},フィールド {0} の「読み取り専用」設定を解除することはできません
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +199,You cannot unset 'Read Only' for field {0},フィールド {0} の「読み取り専用」設定を解除することはできません
DocType: Auto Email Report,Zero means send records updated at anytime,ゼロは、いつでも更新されたレコードを送信することを意味します
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +22,Complete Setup,完全セットアップ
DocType: Workflow State,asterisk,アスタリスク
@@ -1509,7 +1515,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +98,Week,週間
DocType: Social Login Keys,Google,Google
DocType: Email Domain,Example Email Address,例メールアドレス
apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,最多使用
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Unsubscribe from Newsletter,ニュースレターの配信を停止します
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe from Newsletter,ニュースレターの配信を停止します
apps/frappe/frappe/www/login.html +101,Forgot Password,パスワードをお忘れですか
DocType: Dropbox Settings,Backup Frequency,バックアップ頻度
DocType: Workflow State,Inverse,反転
@@ -1588,10 +1594,11 @@ apps/frappe/frappe/config/setup.py +209,"Actions for workflow (e.g. Approve, Can
DocType: Workflow State,flag,フラグ
apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +57,Feedback Request is already sent to user,フィードバック要求は、すでにユーザに送信されます
DocType: Web Page,Text Align,行揃え
apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},名前には {0} などの特殊文字を含めることはできません
apps/frappe/frappe/model/naming.py +185,Name cannot contain special characters like {0},名前には {0} などの特殊文字を含めることはできません
DocType: Contact Us Settings,Forward To Email Address,メールアドレスに転送
apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,すべてのデータを表示
apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,タイトルフィールドは、有効なフィールド名である必要があります。
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,電子メールアカウントは設定されません。セットアップ&gt;電子メール&gt;電子メールアカウントから新しい電子メールアカウントを作成してください
apps/frappe/frappe/config/core.py +7,Documents,文書
DocType: Email Flag Queue,Is Completed,完成されました
apps/frappe/frappe/www/me.html +22,Edit Profile,プロフィール編集
@@ -1601,7 +1608,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi
myfield
eval:doc.myfield=='My Value'
eval:doc.age&gt;18",ここで定義されたフィールド名が値を持っているかのルールが真(例)である場合にのみ、このフィールドが表示されます:myFieldでのeval:doc.myfield == &#39;マイ値&#39;のeval:doc.age&gt; 18
apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,今日
apps/frappe/frappe/public/js/frappe/form/control.js +764,Today,今日
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",この設定によりユーザーはリンクのあるドキュメント(ブログ記事など)にアクセス可能となります(例:Blogger)。
DocType: Error Log,Log of Scheduler Errors,スケジューラーのエラーログ
DocType: User,Bio,自己紹介
@@ -1660,7 +1667,7 @@ DocType: Print Format,Js,Jsの
apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,印刷形式を選択
apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,ショートキーボードパターンが推測するのは簡単です
DocType: Portal Settings,Portal Menu,ポータルメニュー
apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,{0}の長さは、1〜1000の間であるべきです
apps/frappe/frappe/model/db_schema.py +115,Length of {0} should be between 1 and 1000,{0}の長さは、1〜1000の間であるべきです
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,何を検索します
DocType: DocField,Print Hide,印刷を隠す
apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,値を入力します
@@ -1713,8 +1720,7 @@ apps/frappe/frappe/model/document.py +564,Cannot change docstatus from 0 to 2,
DocType: User Permission for Page and Report,Roles Permission,ロールパーミッション
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,更新
DocType: Error Snapshot,Snapshot View,スナップショットの表示
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,送信する前にニュースレターを保存してください
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0}年前
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +101,Please save the Newsletter before sending,送信する前にニュースレターを保存してください
apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},フィールド{0}行{1}のオプションは有効な文書型でなければなりません
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,プロパティ編集
DocType: Patch Log,List of patches executed,実行されるパッチのリスト
@@ -1732,7 +1738,7 @@ apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,パスワー
DocType: Workflow State,trash,ゴミ箱
DocType: System Settings,Older backups will be automatically deleted,古いバックアップは自動的に削除されます
DocType: Event,Leave blank to repeat always,常に繰り返す場合は空白のままにします
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +192,Confirmed,確認済
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,Confirmed,確認済
DocType: Event,Ends on,終了
DocType: Payment Gateway,Gateway,ゲートウェイ
apps/frappe/frappe/public/js/frappe/form/linked_with.js +116,Not enough permission to see links,リンクを表示する権限がありません
@@ -1763,7 +1769,6 @@ DocType: Contact,Purchase Manager,仕入マネージャー
DocType: Custom Script,Sample,サンプル
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,未分類タグ
DocType: Event,Every Week,毎週
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,電子メールアカウントは設定されません。セットアップ&gt;電子メール&gt;電子メールアカウントから新しい電子メールアカウントを作成してください
apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,あなたの使用状況を確認したり、より高いプランにアップグレードするには、ここをクリックしてください
DocType: Custom Field,Is Mandatory Field,必須フィールド
DocType: User,Website User,ウェブサイトのユーザー
@@ -1771,7 +1776,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +10,Not equals,
DocType: Integration Request,Integration Request Service,統合リクエストサービス
DocType: Website Script,Script to attach to all web pages.,全てのWebページに添付するためのスクリプト
DocType: Web Form,Allow Multiple,複数の許可
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +40,Assign,割当
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +44,Assign,割当
apps/frappe/frappe/config/setup.py +102,Import / Export Data from .csv files.,CSVファイルからのインポート/エクスポートデータ。
DocType: Auto Email Report,Only Send Records Updated in Last X Hours,最新のX時間で更新されたレコードのみを送信する
DocType: Communication,Feedback,フィードバック
@@ -1851,7 +1856,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,残り
apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,添付する前に保存してください
apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),追加された{0}({1})
apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},デフォルトのテーマは{0}に設定されています
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},行{2}のフィールドタイプは{0}から{1}に変更することはできません
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +325,Fieldtype cannot be changed from {0} to {1} in row {2},行{2}のフィールドタイプは{0}から{1}に変更することはできません
apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,役割の権限
DocType: Help Article,Intermediate,中間体
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,閲覧可能
@@ -1866,9 +1871,9 @@ apps/frappe/frappe/core/doctype/user/user.js +42,Refreshing...,再読込して
DocType: Event,Starts on,開始
DocType: System Settings,System Settings,システム設定
apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,セッションの開始に失敗しました
apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},このメールは{0}に送信され、{1}にコピーされました
apps/frappe/frappe/email/queue.py +470,This email was sent to {0} and copied to {1},このメールは{0}に送信され、{1}にコピーされました
DocType: Workflow State,th,th
apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},新しい{0}を作成する
apps/frappe/frappe/public/js/frappe/form/control.js +1517,Create a new {0},新しい{0}を作成する
DocType: Email Rule,Is Spam,スパムはあります
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},レポート {0}
apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},{0}を開く
@@ -1880,12 +1885,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon a
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,複製
DocType: Newsletter,Create and Send Newsletters,ニュースレターの作成・送信
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date must be before To Date,開始日は終了日より前でなければなりません
DocType: Address,Andaman and Nicobar Islands,アンダマンとニコバル諸島
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +216,GSuite Document,GSuiteドキュメント
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +29,Please specify which value field must be checked,チェックする必要がある値フィールドを指定してください
apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"""Parent"" signifies the parent table in which this row must be added",「親」は、この行を追加する必要のある親テーブルを意味します
DocType: Website Theme,Apply Style,スタイルを適用
DocType: Feedback Request,Feedback Rating,フィードバック評価
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared With,共有済
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,共有済
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,セットアップ&gt;ユーザーパーミッションマネージャ
DocType: Help Category,Help Articles,ヘルプ記事
,Modules Setup,モジュールのセットアップ
apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,タイプ:
@@ -1916,7 +1923,7 @@ DocType: OAuth Client,App Client ID,アプリのクライアントID
DocType: Kanban Board,Kanban Board Name,かんばんボード名
DocType: Email Alert Recipient,"Expression, Optional",(オプション)表現
DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,このコードをコピーしてscript.google.comのプロジェクトの空のCode.gsに貼り付けます
apps/frappe/frappe/email/queue.py +456,This email was sent to {0},{0}にメール送信されました
apps/frappe/frappe/email/queue.py +472,This email was sent to {0},{0}にメール送信されました
DocType: DocField,Remember Last Selected Value,最終選択された値を覚えておいてください
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +334,Please select Document Type,ドキュメントタイプを選択してください
DocType: Email Account,Check this to pull emails from your mailbox,自分のメールボックスからメールを受信する場合チェック
@@ -1932,6 +1939,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,オ
DocType: Feedback Trigger,Email Field,電子メールフィールド
apps/frappe/frappe/www/update-password.html +59,New Password Required.,新しいパスワードが必要です。
apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} はこの文書を{1}と共有しました
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,セットアップ&gt;ユーザー
DocType: Website Settings,Brand Image,ブランドイメージ
DocType: Print Settings,A4,A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.",上部のナビゲーションバー・フッター・ロゴ設定
@@ -2001,8 +2009,8 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa
apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},{0}のファイル形式を読み取ることができません
DocType: Auto Email Report,Filter Data,データのフィルタリング
apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,タグを追加
apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,ファイルを添付してください
apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator",名前の設定でいくつかエラーが発生しました。管理者に連絡してください。
apps/frappe/frappe/public/js/frappe/form/control.js +1335,Please attach a file first.,ファイルを添付してください
apps/frappe/frappe/model/naming.py +174,"There were some errors setting the name, please contact the administrator",名前の設定でいくつかエラーが発生しました。管理者に連絡してください。
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,受信メールアカウントが正しくない
apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \
Please enter a valid email address so that we can get back.",あなたは電子メールの代わりにあなたの名前を書いたようです。 \返信できるように、有効なメールアドレスを入力してください。
@@ -2054,7 +2062,6 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,
DocType: Custom DocPerm,Create,作成
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},無効なフィルタ:{0}
DocType: Email Account,no failed attempts,いいえ失敗した試み
apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,デフォルトアドレステンプレートが見つかりません。 「設定」&gt;「印刷とブランド」&gt;「アドレステンプレート」から新しいものを作成してください。
DocType: GSuite Settings,refresh_token,refresh_token
DocType: Dropbox Settings,App Access Key,アプリのアクセスキー
DocType: OAuth Bearer Token,Access Token,アクセストークン
@@ -2080,6 +2087,7 @@ apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl +
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},新しい{0}を作成
apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,新しい電子メールアカウント
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +28,Document Restored,ドキュメントの復元
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +203,You can't set 'Options' for field {0},フィールド{0}に「オプション」を設定することはできません
apps/frappe/frappe/core/page/usage_info/usage_info.html +86,Size (MB),サイズ(MB)
DocType: Help Article,Author,著者
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +10,Resume Sending,送信を再開
@@ -2089,7 +2097,7 @@ DocType: Print Settings,Monochrome,モノクロ
DocType: Address,Purchase User,仕入ユーザー
DocType: Workflow,"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.",このドキュメントには異なる「ステータス」を入れることができます。(「オープン」「承認待ち」など)
apps/frappe/frappe/utils/verified_command.py +43,This link is invalid or expired. Please make sure you have pasted correctly.,このリンクは無効または期限切れです。正しく貼り付けられていることを確認してください
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}は</b>このメーリングリストから正常に解除されています。
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +136,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}は</b>このメーリングリストから正常に解除されています。
DocType: Web Page,Slideshow,スライドショー
apps/frappe/frappe/contacts/doctype/address_template/address_template.py +31,Default Address Template cannot be deleted,デフォルトのアドレステンプレートを削除することはできません
DocType: Contact,Maintenance Manager,メンテナンスマネージャー
@@ -2110,7 +2118,7 @@ apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a r
DocType: System Settings,Apply Strict User Permissions,厳格なユーザー権限を適用する
DocType: DocField,Allow Bulk Edit,一括編集を許可する
DocType: Blog Post,Blog Post,ブログの投稿
apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,詳細検索
apps/frappe/frappe/public/js/frappe/form/control.js +1527,Advanced Search,詳細検索
apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,パスワードのリセット手順をメールで送信しました
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \
higher levels for field level permissions.",レベル0は、ドキュメントレベルのアクセス許可、フィールドレベルのアクセス許可の上位レベルです。
@@ -2135,13 +2143,13 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new re
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,検索
DocType: Currency,Fraction,分数
DocType: LDAP Settings,LDAP First Name Field,LDAPファーストネームフィールド
apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,既存の添付ファイルから選択
apps/frappe/frappe/public/js/frappe/form/control.js +1085,Select from existing attachments,既存の添付ファイルから選択
DocType: Custom Field,Field Description,フィールド説明
apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,プロンプトから名前が設定されていません
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,メールの受信トレイ
DocType: Auto Email Report,Filters Display,フィルタの表示
DocType: Website Theme,Top Bar Color,トップバーの色
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Do you want to unsubscribe from this mailing list?,あなたはこのメーリングリストから退会しますか?
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Do you want to unsubscribe from this mailing list?,あなたはこのメーリングリストから退会しますか?
DocType: Address,Plant,プラント
apps/frappe/frappe/core/doctype/communication/communication.js +65,Reply All,全員に返信
DocType: DocType,Setup,セットアップ
@@ -2184,7 +2192,7 @@ DocType: User,Send Notifications for Transactions I Follow,次の取引の通知
apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write",{0}:書き込みせずに提出・キャンセル・修正を設定することはできません
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,添付ファイルを削除してもよろしいですか?
apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} <a href=""#Form/{0}/{1}"">{1}</a> is linked with {2} <a href=""#Form/{2}/{3}"">{3}</a>","削除するか、{0}ので、キャンセルすることはできません<a href=""#Form/{0}/{1}"">{1}</a>とリンクされている{2} <a href=""#Form/{2}/{3}"">{3}</a>"
apps/frappe/frappe/__init__.py +1062,Thank you,ありがとうございます
apps/frappe/frappe/__init__.py +1070,Thank you,ありがとうございます
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,保存
DocType: Print Settings,Print Style Preview,印刷スタイルプレビュー
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
@@ -2199,7 +2207,7 @@ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,フォ
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,シリアル番号
,Role Permissions Manager,役割権限マネージャー
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,新しい印刷形式の名前
apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,クリアアタッチメント
apps/frappe/frappe/public/js/frappe/form/control.js +1087,Clear Attachment,クリアアタッチメント
apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,必須:
,User Permissions Manager,ユーザー権限マネージャー
DocType: Property Setter,New value to be set,新しい値を設定する必要があります
@@ -2224,7 +2232,7 @@ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment C
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,クリアエラーログ
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,評価を選択してください
DocType: Email Account,Notify if unreplied for (in mins),返信されていない場合に通知(分)
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 日前
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +501,2 days ago,2 日前
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,ブログの記事を分類。
DocType: Workflow State,Time,時間
DocType: DocField,Attach,添付する
@@ -2240,6 +2248,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,バッ
DocType: GSuite Templates,Template Name,テンプレート名
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,文書の新しいタイプ
DocType: Custom DocPerm,Read,読む
DocType: Address,Chhattisgarh,チャッティースガル
DocType: Role Permission for Page and Report,Role Permission for Page and Report,ページおよびレポートのためのロール権限
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,値を合わせます
apps/frappe/frappe/www/update-password.html +14,Old Password,以前のパスワード
@@ -2286,7 +2295,7 @@ apps/frappe/frappe/public/js/frappe/roles_editor.js +28,Add all roles,すべて
apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your email and message so that we \
can get back to you. Thanks!",メールアドレスとメッセージをご入力ください。折り返しご連絡いたします。
apps/frappe/frappe/email/smtp.py +170,Could not connect to outgoing email server,送信メールサーバーに接続できませんでした
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +162,Thank you for your interest in subscribing to our updates,アップデートに関心をお寄せいただきありがとうございます
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Thank you for your interest in subscribing to our updates,アップデートに関心をお寄せいただきありがとうございます
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Custom Column,カスタム列
DocType: Workflow State,resize-full,全画面アイコン
DocType: Workflow State,off,オフ
@@ -2349,7 +2358,7 @@ DocType: Address,Telangana,テランガナ
apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,{0}のデフォルトはオプションでなければなりません
DocType: Tag Doc Category,Tag Doc Category,タグドクカテゴリ
DocType: User,User Image,ユーザー画像
apps/frappe/frappe/email/queue.py +289,Emails are muted,メールはミュートされました
apps/frappe/frappe/email/queue.py +304,Emails are muted,メールはミュートされました
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl+↑
DocType: Website Theme,Heading Style,見出しスタイル
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +183,A new Project with this name will be created,この名前の新しいプロジェクトが作成されます
@@ -2566,7 +2575,6 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip
DocType: Workflow State,bell,鐘
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,電子メール警告のエラー
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,この文書を共有
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,セットアップ&gt;ユーザーパーミッションマネージャ
apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1}には子ノードがあるため、リーフノードにすることはできません
DocType: Communication,Info,情報
apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,添付ファイルを追加します。
@@ -2622,7 +2630,7 @@ apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,印刷書
DocType: Email Alert,Send days before or after the reference date,基準日の前または後に送信
DocType: User,Allow user to login only after this hour (0-24),(0-24)以降の時間のみユーザーログインを許可
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,値
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +165,Click here to verify,クリックして認証
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +166,Click here to verify,クリックして認証
apps/frappe/frappe/utils/password_strength.py +178,Predictable substitutions like '@' instead of 'a' don't help very much.,予測可能なように置換 &#39;@&#39;の代わりに &#39;&#39;あまり役立ちません。
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,自分に割当
apps/frappe/frappe/utils/data.py +462,Zero,ゼロ
@@ -2634,6 +2642,7 @@ DocType: ToDo,Priority,優先度
DocType: Email Queue,Unsubscribe Param,配信停止のParam
DocType: Auto Email Report,Weekly,毎週
DocType: Communication,In Reply To,応答
apps/frappe/frappe/contacts/doctype/address/address.py +189,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,デフォルトアドレステンプレートが見つかりません。 「設定」&gt;「印刷とブランド」&gt;「アドレステンプレート」から新しいものを作成してください。
DocType: DocType,Allow Import (via Data Import Tool),インポートを許可する(データのインポートツールを経由して)
apps/frappe/frappe/templates/print_formats/standard_macros.html +30,Sr,Sr
DocType: DocField,Float,小数
@@ -2724,7 +2733,6 @@ apps/frappe/frappe/commands/site.py +451,Invalid limit {0},無効な制限{0}
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,ドキュメントタイプを一覧表示します
DocType: Event,Ref Type,参照タイプ
apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.",新しいレコードをアップロードする場合、「名前」(ID)欄を空白のままにします
DocType: Address,Chattisgarh,チャティスガル
apps/frappe/frappe/config/core.py +47,Errors in Background Events,バックグラウンドイベントのエラー
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,列の数
DocType: Workflow State,Calendar,カレンダー
@@ -2756,7 +2764,7 @@ apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},{0}が
DocType: Integration Request,Remote,リモート
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,計算
apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,文書タイプを選択してください
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,メール確認
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +174,Confirm Your Email,メール確認
apps/frappe/frappe/www/login.html +42,Or login with,またはでログイン
DocType: Error Snapshot,Locals,地元の人々
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},介して通信{0} {1}:{2}
@@ -2773,7 +2781,7 @@ DocType: Web Page,Web Page,ウェブページ
DocType: Blog Category,Blogger,ブロガー
apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},行{1}の{0}型に対して &#39;グローバル検索中&#39;が許可されていません
apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,ビューの一覧
apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},日付が形式である必要があります:{0}
apps/frappe/frappe/public/js/frappe/form/control.js +810,Date must be in format: {0},日付が形式である必要があります:{0}
DocType: Workflow,Don't Override Status,ステータスを上書きしないでください
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,評価をお願いします。
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0}フィードバック要求
@@ -2806,7 +2814,7 @@ DocType: Custom DocPerm,Report,レポート
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,量は0より大きくなければなりません。
apps/frappe/frappe/desk/reportview.py +107,{0} is saved,{0} を保存しました
apps/frappe/frappe/core/doctype/user/user.py +327,User {0} cannot be renamed,ユーザー{0}の名前を変更できません
apps/frappe/frappe/model/db_schema.py +107,Fieldname is limited to 64 characters ({0}),フィールド名が64文字に制限されています({0})
apps/frappe/frappe/model/db_schema.py +108,Fieldname is limited to 64 characters ({0}),フィールド名が64文字に制限されています({0})
apps/frappe/frappe/config/desk.py +59,Email Group List,メールグループ一覧
DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],.ico拡張子のアイコンファイル。 16x16ピクセルにする必要があります。ファビコンジェネレータを使用して生成されました。 [favicon-generator.org]
DocType: Auto Email Report,Format,フォーマット
@@ -2885,7 +2893,7 @@ DocType: Website Settings,Title Prefix,タイトルの接頭辞
DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,通知および一括送信メールは、この送信サーバーから送信されます。
DocType: Workflow State,cog,歯車の歯
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on Migrate,移行上の同期
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,現在の表示
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Currently Viewing,現在の表示
DocType: DocField,Default,初期値
apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0}を追加
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',&#39;{0}&#39;を検索する
@@ -2945,7 +2953,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +771,Report was
DocType: Print Settings,Print Style,印刷スタイル
apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,レコードにリンクされていない
DocType: Custom DocPerm,Import,インポート
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +178,Row {0}: Not allowed to enable Allow on Submit for standard fields,行{0}:標準フィールドの「提出」を「許可」にすることが許可されていません
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +180,Row {0}: Not allowed to enable Allow on Submit for standard fields,行{0}:標準フィールドの「提出」を「許可」にすることが許可されていません
apps/frappe/frappe/config/setup.py +100,Import / Export Data,データのインポート/エクスポート
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,標準の役割は、名前を変更することができません
DocType: Communication,To and CC,CC
@@ -2971,7 +2979,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo
DocType: Auto Email Report,Filter Meta,メタをフィルタリング
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,このフォームがウェブページを持っている場合、テキストは、ウェブページへのリンクとして表示されます。リンク先は `page_name`と` parent_website_route`に基づいて自動的に生成されます
DocType: Feedback Request,Feedback Trigger,フィードバックトリガー
apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,{0}を設定してください
apps/frappe/frappe/public/js/frappe/form/control.js +1741,Please set {0} first,{0}を設定してください
DocType: Unhandled Email,Message-id,メッセージID
DocType: Patch Log,Patch,パッチ
DocType: Async Task,Failed,失敗


+ 73
- 64
frappe/translations/km.csv Datei anzeigen

@@ -14,8 +14,9 @@ apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,
DocType: User,Facebook Username,ហ្វេសប៊ុកឈ្មោះអ្នកប្រើ
DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,ចំណាំ: វគ្គច្រើននឹងត្រូវបានអនុញ្ញាតនៅក្នុងករណីនៃឧបករណ៍ចល័ត
apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},បានបើកប្រអប់ទទួលអ៊ីម៉ែសម្រាប់អ្នកប្រើ {user}
apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,មិនអាចផ្ញើអ៊ីម៉ែលនេះទេ។ អ្នកបានឆ្លងកាត់ដែនកំណត់ផ្ញើ {0} អ៊ីម៉ែលសម្រាប់ខែនេះ។
apps/frappe/frappe/email/queue.py +225,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,មិនអាចផ្ញើអ៊ីម៉ែលនេះទេ។ អ្នកបានឆ្លងកាត់ដែនកំណត់ផ្ញើ {0} អ៊ីម៉ែលសម្រាប់ខែនេះ។
apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,អចិន្ត្រៃ {0} ដាក់ស្នើ?
apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,ទាញយកឯកសារបម្រុងទុក
DocType: Address,County,ខោនធី
DocType: Workflow,If Checked workflow status will not override status in list view,ប្រសិនបើមានស្ថានភាពលំហូរការងារដែលបានធីកនឹងមិនបដិសេធស្ថានភាពនៅក្នុងទិដ្ឋភាពបញ្ជី
apps/frappe/frappe/client.py +280,Invalid file path: {0},ផ្លូវឯកសារមិនត្រឹមត្រូវ: {0}
@@ -72,6 +73,7 @@ DocType: Note,Seen By,បានឃើញដោយ
apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,បន្ថែមច្រើន
apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,មិនចូលចិត្ត
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,កំណត់ស្លាកបង្ហាញសម្រាប់វាលនេះ
apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},តម្លៃមិនត្រឹមត្រូវ: {0} ត្រូវតែ {1} {2}
apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","លក្ខណៈសម្បត្តិនៃការផ្លាស់ប្តូរវាល (លាក់, បានតែអាន, ការអនុញ្ញាតល)"
apps/frappe/frappe/integrations/oauth2.py +109,Define Frappe Server URL in Social Login Keys,កំណត់ URL របស់ម៉ាស៊ីនបម្រើ Frappe ក្នុងគ្រាប់ចុចចូលសង្គម
DocType: Workflow State,lock,ចាក់សោរ
@@ -79,10 +81,10 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,ការ
apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,អ្នកគ្រប់គ្រងចូលទេ
DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","ជម្រើសនៃការទំនាក់ទំនង, ដូចជា &quot;ការលក់សំណួរជំនួយសំណួរ&quot; លនៅលើបន្ទាត់ថ្មីឬបំបែកដោយសញ្ញាក្បៀស។"
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. ទាញយក
apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,បញ្ចូល
apps/frappe/frappe/public/js/frappe/form/control.js +1979,Insert,បញ្ចូល
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},ជ្រើស {0}
DocType: Print Settings,Classic,បុរាណ
DocType: Desktop Icon,Color,ពណ៌
DocType: DocField,Color,ពណ៌
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +54,For ranges,សម្រាប់ជួរ
DocType: Workflow State,indent-right,ចូលបន្ទាត់ស្តាំ
DocType: Has Role,Has Role,មានតួនាទី
@@ -99,7 +101,7 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To impor
DocType: DocType,Default Print Format,ទ្រង់ទ្រាយបោះពុម្ពលំនាំដើម
DocType: Workflow State,Tags,ស្លាក
apps/frappe/frappe/public/js/frappe/form/workflow.js +33,None: End of Workflow,គ្មាន: ការបញ្ចប់នៃលំហូរការងារ
apps/frappe/frappe/model/db_schema.py +346,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} វាលមិនអាចត្រូវបានកំណត់ជាតែមួយគត់នៅ {1}, ដូចជាមានតម្លៃតែមួយគត់ដែលមិនមែនជាដែលមានស្រាប់"
apps/frappe/frappe/model/db_schema.py +347,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0} វាលមិនអាចត្រូវបានកំណត់ជាតែមួយគត់នៅ {1}, ដូចជាមានតម្លៃតែមួយគត់ដែលមិនមែនជាដែលមានស្រាប់"
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +47,Document Types,ប្រភេទឯកសារ
DocType: Address,Jammu and Kashmir,Jammu និង Kashmir
DocType: Workflow,Workflow State Field,វាលរដ្ឋលំហូរការងារ
@@ -230,7 +232,7 @@ DocType: Workflow,Transition Rules,ច្បាប់នៃការផ្លា
apps/frappe/frappe/core/doctype/report/report.js +11,Example:,ឧទាហរណ៍:
DocType: Workflow,Defines workflow states and rules for a document.,កំណត់របស់រដ្ឋជាលំហូរការងារនិងច្បាប់សម្រាប់ឯកសារមួយ។
DocType: Workflow State,Filter,តម្រង
apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Fieldname {0} មិនអាចមានតួអក្សរពិសេសដូចជា {1}
apps/frappe/frappe/model/db_schema.py +564,Fieldname {0} cannot have special characters like {1},Fieldname {0} មិនអាចមានតួអក្សរពិសេសដូចជា {1}
apps/frappe/frappe/config/setup.py +121,Update many values at one time.,ធ្វើឱ្យទាន់សម័យតម្លៃជាច្រើននៅពេលតែមួយ។
apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,កំហុស: ឯកសារបានត្រូវកែប្រែបន្ទាប់ពីអ្នកបានបើកវា
apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} បានចេញ: {1}
@@ -259,7 +261,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,ទទួល
apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","ជាវរបស់អ្នកបានផុតកំណត់នៅលើ {0} ។ ដើម្បីបន្តជាថ្មី, {1} ។"
DocType: Workflow State,plus-sign,បូកសញ្ញា
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,ការរៀបចំបានបញ្ចប់រួចទៅហើយ
apps/frappe/frappe/__init__.py +889,App {0} is not installed,កម្មវិធី {0} មិនត្រូវបានដំឡើង
apps/frappe/frappe/__init__.py +897,App {0} is not installed,កម្មវិធី {0} មិនត្រូវបានដំឡើង
DocType: Workflow State,Refresh,ធ្វើឱ្យស្រស់
DocType: Event,Public,សាធារណៈ
apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,គ្មានអ្វីដែលបានបង្ហាញ
@@ -338,7 +340,6 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,កែសម្រួលក្បាល
DocType: File,File URL,URL ឯកសារ
DocType: Version,Table HTML,តារាង HTML
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> បានរកឃើញសម្រាប់ 'គ្មានលទ្ធផល </p>
apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,បន្ថែមអតិថិជន
apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,ព្រឹត្តិការណ៍ជិតមកដល់សម្រាប់ថ្ងៃនេះ
DocType: Email Alert Recipient,Email By Document Field,អ៊ីម៉ែលដោយវាលឯកសារ
@@ -403,7 +404,6 @@ DocType: Desktop Icon,Link,តំណភ្ជាប់
apps/frappe/frappe/utils/file_manager.py +96,No file attached,ឯកសារភ្ជាប់គ្មាន
DocType: Version,Version,កំណែ
DocType: User,Fill Screen,បំពេញអេក្រង់
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,សូមគណនីអ៊ីម៉ែលដែលបានមកពីការដំឡើងលំនាំដើមដំឡើង&gt; អ៊ីមែល&gt; គណនីអ៊ីម៉ែល
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",មិនអាចបង្ហាញរបាយការណ៍របស់មែកធាងនេះដោយសារតែទិន្នន័យដែលបាត់ខ្លួន។ ភាគច្រើនវាត្រូវបានត្រងចេញដោយសារតែសិទ្ធិ។
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. ជ្រើសឯកសារ
apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,កែសម្រួលតាមរយៈការផ្ទុកឡើង
@@ -473,9 +473,9 @@ DocType: User,Reset Password Key,គន្លឹះពាក្យសម្ង
DocType: Email Account,Enable Auto Reply,អនុញ្ញាតការឆ្លើយតបដោយស្វ័យប្រវត្តិ
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,មិនដែលឃើញ
DocType: Workflow State,zoom-in,ពង្រីក
apps/frappe/frappe/email/queue.py +219,Unsubscribe from this list,ជាវជាប្រចាំពីបញ្ជីនេះ
apps/frappe/frappe/email/queue.py +234,Unsubscribe from this list,ជាវជាប្រចាំពីបញ្ជីនេះ
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Reference DocType and Reference Name are required,សេចក្តីយោង DOCTYPE និងឈ្មោះត្រូវបានទាមទារយោង
apps/frappe/frappe/utils/jinja.py +35,Syntax error in template,កំហុសវាក្យសម្ព័ន្ធក្នុងទំព័រគំរូ
apps/frappe/frappe/utils/jinja.py +51,Syntax error in template,កំហុសវាក្យសម្ព័ន្ធក្នុងទំព័រគំរូ
DocType: DocField,Width,ទទឹង
DocType: Email Account,Notify if unreplied,ជូនដំណឹងប្រសិនបើ unreplied
DocType: System Settings,Minimum Password Score,ពិន្ទុពាក្យសម្ងាត់អប្បបរមា
@@ -559,6 +559,7 @@ DocType: Custom Field,Select the label after which you want to insert new field.
DocType: User,Last Login,ចូលចុងក្រោយ
apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Fieldname ត្រូវបានទាមទារនៅក្នុងជួរដេក {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,ជួរឈរ
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,សូមរៀបចំគណនីអ៊ីម៉ែលលំនាំដើមពីការរៀបចំ&gt; អ៊ីម៉ែល&gt; គណនីអ៊ីម៉ែល
DocType: Custom Field,Adds a custom field to a DocType,បន្ថែមវាលផ្ទាល់ខ្លួនមួយដើម្បីចង្អុលបង្ហាញមួយ
DocType: File,Is Home Folder,នេះគឺជាថតផ្ទះ
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} គឺមិនមែនជាអាសយដ្ឋានអ៊ីមែលដែលមានសុពលភាព
@@ -566,7 +567,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +733,Select atleast 1 reco
apps/frappe/frappe/core/doctype/has_role/has_role.py +13,User '{0}' already has the role '{1}',អ្នកប្រើ &#39;{0}&#39; ដែលមានតួនាទីរួចទៅហើយ &quot;{1} &#39;
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,ផ្ទុកឡើងនិងធ្វើសមកាលកម្ម
apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},ចែករំលែកជាមួយនឹង {0}
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe,ឈប់ជាវ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +132,Unsubscribe,ឈប់ជាវ
DocType: Communication,Reference Name,ឈ្មោះឯកសារយោង
apps/frappe/frappe/public/js/frappe/toolbar.js +30,Chat Support,ការគាំទ្រការជជែកកំសាន្ត
DocType: Error Snapshot,Exception,ករណីលើកលែង
@@ -584,7 +585,7 @@ DocType: Email Group,Newsletter Manager,កម្មវិធីគ្រប់
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,ជម្រើសទី 1
apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} ទៅ {1}
apps/frappe/frappe/config/setup.py +89,Log of error during requests.,ចូលមានកំហុសក្នុងអំឡុងពេលសំណើ។
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} ត្រូវបានបន្ថែមដោយជោគជ័យទៅគ្រុបអ៊ីម៉ែល។
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +194,{0} has been successfully added to the Email Group.,{0} ត្រូវបានបន្ថែមដោយជោគជ័យទៅគ្រុបអ៊ីម៉ែល។
DocType: Address,Uttar Pradesh,រដ្ឋ Uttar Pradesh
DocType: Address,Pondicherry,Pondicherry
apps/frappe/frappe/public/js/frappe/upload.js +364,Make file(s) private or public?,ធ្វើឱ្យឯកសារ (s បាន) ឯកជនឬសាធារណៈឬ?
@@ -615,7 +616,7 @@ DocType: Portal Settings,Portal Settings,ការកំណត់ផតថល
DocType: Web Page,0 is highest,0 គឺខ្ពស់បំផុត
apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,តើអ្នកពិតជាចង់ relink ការទំនាក់ទំនងទៅនឹង {0} នេះ?
apps/frappe/frappe/www/login.html +104,Send Password,ផ្ញើរពាក្យសម្ងាត់
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +45,Attachments,ឯកសារភ្ជាប់
DocType: Email Queue,Attachments,ឯកសារភ្ជាប់
apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,អ្នកមិនមានសិទ្ធិដើម្បីចូលដំណើរការឯកសារនេះ
DocType: Language,Language Name,ឈ្មោះភាសា
DocType: Email Group Member,Email Group Member,អ៊ីម៉ែលសមាជិកក្រុម
@@ -645,7 +646,7 @@ apps/frappe/frappe/utils/password_strength.py +78,Try to use a longer keyboard p
DocType: Feedback Trigger,Check Communication,សូមពិនិត្យមើលការទំនាក់ទំនង
DocType: Address,Rajasthan,រដ្ឋ Rajasthan
apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,របាយការណ៏ដែលត្រូវបានគ្រប់គ្រងរបាយការសាងសង់ដោយផ្ទាល់ដោយសាងសង់របាយការណ៍។ គ្មានអ្វីដែលត្រូវធ្វើ។
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,សូមផ្ទៀងផ្ទាត់អាសយដ្ឋានអ៊ីមែលរបស់អ្នក
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +164,Please verify your Email Address,សូមផ្ទៀងផ្ទាត់អាសយដ្ឋានអ៊ីមែលរបស់អ្នក
apps/frappe/frappe/model/document.py +903,none of,គ្មាននរណាម្នាក់ក្នុងចំណោម
apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,ផ្ញើច្បាប់ចម្លងពីខ្ញុំ
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,ផ្ទុកឡើងសិទ្ធិរបស់អ្នកប្រើប្រាស់
@@ -656,7 +657,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Si
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,ក្រុមប្រឹក្សាភិបាល Kanban {0} មិនមានទេ។
apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} បច្ចុប្បន្នកំពុងមើលឯកសារនេះ
DocType: ToDo,Assigned By Full Name,បានផ្ដល់ដោយឈ្មោះពេញ
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} ធ្វើឱ្យទាន់សម័យ
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} ធ្វើឱ្យទាន់សម័យ
apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,របាយការណ៏ដែលមិនអាចត្រូវបានកំណត់សម្រាប់ប្រភេទលីវ
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} ថ្ងៃមុន
DocType: Email Account,Awaiting Password,រង់ចាំការពាក្យសម្ងាត់
@@ -681,7 +682,7 @@ DocType: Workflow State,Stop,បញ្ឈប់
DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,តំណភ្ជាប់ទៅទំព័រដែលអ្នកចង់បើក។ ទុកឱ្យវានៅទទេប្រសិនបើអ្នកចង់ធ្វើឱ្យវាឪពុកម្តាយក្រុម។
DocType: DocType,Is Single,តើការនៅលីវ
apps/frappe/frappe/core/doctype/user/user.py +720,Sign Up is disabled,ចុះឈ្មោះត្រូវបានបិទ
apps/frappe/frappe/email/queue.py +278,{0} has left the conversation in {1} {2},{0} បានចេញពីការសន្ទនានៅ {1} {2}
apps/frappe/frappe/email/queue.py +293,{0} has left the conversation in {1} {2},{0} បានចេញពីការសន្ទនានៅ {1} {2}
DocType: Blogger,User ID of a Blogger,លេខសម្គាល់អ្នកប្រើរបស់ Blogger មួយ
apps/frappe/frappe/core/doctype/user/user.py +287,There should remain at least one System Manager,វាគួរតែនៅតែមានប្រព័ន្ធអ្នកគ្រប់គ្រងការយ៉ាងហោចណាស់មួយ
DocType: GSuite Settings,Authorization Code,កូដអនុញ្ញាត
@@ -727,6 +728,7 @@ DocType: Event,Event,ព្រឹត្តការណ៍
apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","នៅលើ {0}, {1} បានសរសេរថា:"
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,មិនអាចលុបវាលស្តង់ដារ។ អ្នកអាចលាក់វាប្រសិនបើអ្នកចង់បាន
DocType: Top Bar Item,For top bar,សម្រាប់របារកំពូល
apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,ដាក់ក្នុងជួរបម្រុងទុក។ អ្នកនឹងទទួលបានអ៊ីម៉ែលដែលមានតំណទាញយក
apps/frappe/frappe/utils/bot.py +148,Could not identify {0},មិនអាចកំណត់អត្តសញ្ញាណ {0}
DocType: Address,Address,អាសយដ្ឋាន
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +3,Payment Failed,ការទូទាត់បរាជ័យ
@@ -751,13 +753,13 @@ DocType: Web Form,Allow Print,អនុញ្ញាតឱ្យបោះពុ
apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,គ្មានកម្មវិធីដំឡើង
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,សម្គាល់វាលនេះចាំបាច់ជាការ
DocType: Communication,Clicked,ចុច
apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},គ្មានសិទ្ធិ &#39;{0}&#39; {1}
apps/frappe/frappe/public/js/legacy/form.js +950,No permission to '{0}' {1},គ្មានសិទ្ធិ &#39;{0}&#39; {1}
DocType: User,Google User ID,ក្រុមហ៊ុន Google លេខសម្គាល់អ្នកប្រើ
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,គ្រោងនឹងផ្ញើ
DocType: DocType,Track Seen,បទឃើញ
apps/frappe/frappe/desk/form/utils.py +55,This method can only be used to create a Comment,វិធីសាស្រ្តនេះអាចត្រូវបានប្រើដើម្បីបង្កើតមតិយោបល់
DocType: Event,orange,ទឹកក្រូច
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,No {0} found,គ្មាន {0} បានរកឃើញ
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +558,No {0} found,គ្មាន {0} បានរកឃើញ
apps/frappe/frappe/config/setup.py +242,Add custom forms.,បន្ថែមទម្រង់បែបបទផ្ទាល់ខ្លួន។
apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} នៅក្នុង {2}
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +419,submitted this document,បានដាក់ស្នើឯកសារនេះ
@@ -787,6 +789,7 @@ DocType: Newsletter Email Group,Newsletter Email Group,ព្រឹត្តិ
DocType: Dropbox Settings,Integrations,ការធ្វើសមាហរណកម្ម
DocType: DocField,Section Break,បំបែកផ្នែកទី
DocType: Address,Warehouse,ឃ្លាំង
DocType: Address,Other Territory,ដែនដីផ្សេងទៀត
,Messages,សារដែលបាន
apps/frappe/frappe/desk/page/applications/applications.js +49,Portal,វិបផតថល
DocType: Email Account,Use Different Email Login ID,ប្រើលេខសម្គាល់អ៊ីមែលចូលផ្សេងគ្នា
@@ -817,6 +820,7 @@ apps/frappe/frappe/utils/data.py +556,1 month ago,1 ខែកន្លងទៅ
DocType: Contact,User ID,លេខសម្គាល់អ្នកប្រើ
DocType: Communication,Sent,ដែលបានផ្ញើ
DocType: Address,Kerala,រដ្ឋ Kerala
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} ឆ្នាំមុន
DocType: File,Lft,Lft
DocType: User,Simultaneous Sessions,សម័យដំណាលគ្នា
DocType: OAuth Client,Client Credentials,សារតាំងរបស់ម៉ាស៊ីនភ្ញៀវ
@@ -833,7 +837,7 @@ DocType: Email Queue,Unsubscribe Method,វិធីសាស្រ្តឈប
DocType: GSuite Templates,Related DocType,ប្រភេទឯកសារដែលទាក់ទង
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,កែសម្រួលដើម្បីបន្ថែមមាតិកា
apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,ជ្រើសភាសា
apps/frappe/frappe/__init__.py +509,No permission for {0},មិនមានសិទ្ធិដើម្បី {0}
apps/frappe/frappe/__init__.py +517,No permission for {0},មិនមានសិទ្ធិដើម្បី {0}
DocType: DocType,Advanced,កម្រិតខ្ពស់
apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,ហាក់ដូចជា API របស់សោ API ឬជាខុស !!! សម្ងាត់
apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},ឯកសារយោង: {0} {1}
@@ -844,6 +848,7 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P
DocType: Email Account,Yahoo Mail,Yahoo Mail
apps/frappe/frappe/limits.py +75,Your subscription will expire tomorrow.,ការជាវរបស់អ្នកនឹងផុតកំណត់នៅថ្ងៃស្អែក។
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +483,Saved!,សង្រ្គោះ!
apps/frappe/frappe/public/js/frappe/form/control.js +729,{0} is not a valid hex color,{0} មិនមែនជាពណ៌គោលដប់ប្រាំមួយដែលត្រឹមត្រូវនោះទេ
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,លោកស្រី
apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},បានបន្ទាន់សម័យ {0}: {1}
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,អនុបណ្ឌិត
@@ -871,7 +876,7 @@ DocType: Report,Disabled,ជនពិការ
DocType: Workflow State,eye-close,បិទភ្នែក
DocType: OAuth Provider Settings,OAuth Provider Settings,ការកំណត់ក្រុមហ៊ុនផ្ដល់ OAuth
apps/frappe/frappe/config/setup.py +254,Applications,កម្មវិធីដែលបាន
apps/frappe/frappe/public/js/frappe/request.js +347,Report this issue,រាយការណ៍ពីបញ្ហានេះ
apps/frappe/frappe/public/js/frappe/request.js +349,Report this issue,រាយការណ៍ពីបញ្ហានេះ
apps/frappe/frappe/public/js/frappe/form/save.js +79,Name is required,ឈ្មោះត្រូវបានទាមទារ
DocType: Custom Script,Adds a custom script (client or server) to a DocType,បន្ថែមស្គ្រីបផ្ទាល់ខ្លួន (ម៉ាស៊ីនភ្ញៀវឬម៉ាស៊ីនបម្រើ) ទៅនឹងចង្អុលបង្ហាញមួយ
DocType: Address,City/Town,ទីក្រុង / ក្រុង
@@ -965,6 +970,7 @@ DocType: Currency,**Currency** Master,** រូបិយប័ណ្ណ ** អ
DocType: Email Account,No of emails remaining to be synced,អ៊ីម៉ែលដែលនៅសេសសល់មិនត្រូវបានធ្វើសមកាលកម្មទៅ
apps/frappe/frappe/public/js/frappe/upload.js +203,Uploading,ផ្ទុកឡើង
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,សូមរក្សាឯកសារទុកមុនពេលដែលកិច្ចការ
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,សូមចុចនៅទីនេះដើម្បីប្រកាសកំហុសនិងការផ្ដល់យោបល់
DocType: Website Settings,Address and other legal information you may want to put in the footer.,អាសយដ្ឋាននិងពត៌មានច្បាប់ផ្សេងទៀតដែលអ្នកប្រហែលជាចង់ទៅដាក់នៅក្នុងបាតកថា។
DocType: Website Sidebar Item,Website Sidebar Item,គេហទំព័រធាតុរបារចំហៀង
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +44,{0} records updated,{0} កំណត់ត្រាធ្វើឱ្យទាន់សម័យ
@@ -978,12 +984,10 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,ការច
apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,ព្រឹត្តិការណ៍ថ្ងៃជារៀងរាល់គួរបញ្ចប់នៅថ្ងៃដដែលនោះ។
DocType: Communication,User Tags,ស្លាករបស់អ្នកប្រើ
apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,កំពុងទៅប្រមូលយក .. រូបភាព
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,ការដំឡើង&gt; អ្នកប្រើ
DocType: Workflow State,download-alt,ទាញយក-alt
apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},ទាញយកកម្មវិធី {0}
DocType: Communication,Feedback Request,មតិអ្នកសំណើ
apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,វាលដូចខាងក្រោមដែលត្រូវបានបាត់ខ្លួន:
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Experimental Feature,លក្ខណៈពិសេសពិសោធន៍
apps/frappe/frappe/www/login.html +30,Sign in,ចុះឈ្មោះចូល
DocType: Web Page,Main Section,ផ្នែកដ៏សំខាន់
DocType: Page,Icon,រូបតំណាង
@@ -1085,7 +1089,7 @@ DocType: Customize Form,Customize Form,ប្ដូរតាមបំណងស
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +104,Mandatory field: set role for,វាលដែលចាំបាច់: កំណត់តួនាទីសម្រាប់
DocType: Currency,A symbol for this currency. For e.g. $,ជានិមិត្តរូបសម្រាប់រូបិយប័ណ្ណនេះ។ ឧទាហរណ៍ៈ $
apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,ក្របខ័ណ្ឌ Frappe
apps/frappe/frappe/model/naming.py +174,Name of {0} cannot be {1},ឈ្មោះរបស់ {0} មិនអាចមាន {1}
apps/frappe/frappe/model/naming.py +180,Name of {0} cannot be {1},ឈ្មោះរបស់ {0} មិនអាចមាន {1}
apps/frappe/frappe/config/setup.py +46,Show or hide modules globally.,បង្ហាញឬលាក់ម៉ូឌុលទូទាំងពិភពលោក។
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,ពីកាលបរិច្ឆេទ
apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,ទទួលបានភាពជោគជ័យ
@@ -1106,7 +1110,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +308,Add A New
apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js +3,See on Website,សូមមើលលើវេបសាយ
DocType: Workflow Transition,Next State,រដ្ឋបន្ទាប់
DocType: User,Block Modules,ម៉ូឌុលប្លុក
apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,ត្រលប់ប្រវែង {0} សម្រាប់ &#39;{1}&#39; ក្នុង &#39;{2}&#39;; ការកំណត់ប្រវែងដែលជា {3} នឹងបង្កឱ្យ truncation នៃទិន្នន័យ។
apps/frappe/frappe/model/db_schema.py +142,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,ត្រលប់ប្រវែង {0} សម្រាប់ &#39;{1}&#39; ក្នុង &#39;{2}&#39;; ការកំណត់ប្រវែងដែលជា {3} នឹងបង្កឱ្យ truncation នៃទិន្នន័យ។
DocType: Print Format,Custom CSS,CSS ផ្ទាល់
apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,បន្ថែមសេចក្តីអធិប្បាយ
apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},មិនអើពើ: {0} ទៅ {1}
@@ -1198,13 +1202,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,
DocType: Custom Role,Custom Role,តួនាទីផ្ទាល់ខ្លួន
apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,ទំព័រដើម / ការធ្វើតេស្តថត 2
DocType: System Settings,Ignore User Permissions If Missing,មិនអើពើសិទ្ធិអ្នកប្រើប្រសិនបើបាត់
apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,សូមរក្សាទុកឯកសារមុនពេលផ្ទុកឡើង។
apps/frappe/frappe/public/js/frappe/form/control.js +1075,Please save the document before uploading.,សូមរក្សាទុកឯកសារមុនពេលផ្ទុកឡើង។
apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,បញ្ចូលពាក្យសម្ងាត់របស់អ្នក
DocType: Dropbox Settings,Dropbox Access Secret,Dropbox ចូលដំណើរការសម្ងាត់
apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,បន្ថែមសេចក្តីអធិប្បាយមួយទៀត
apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,កែសម្រួល DOCTYPE
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,ជាវពីព្រឹត្តិបត្រ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,Unsubscribed from Newsletter,ជាវពីព្រឹត្តិបត្រ
apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,បត់ត្រូវតែមកមុនពេលដែលបំបែកផ្នែក
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,ស្ថិតនៅក្រោមការអភិវឌ្ឍន៍
apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,បានកែប្រែចុងក្រោយដោយ
DocType: Workflow State,hand-down,ដៃចុះ
DocType: Address,GST State,រដ្ឋជីអេសធី
@@ -1225,6 +1230,7 @@ DocType: Workflow State,Tag,ស្លាក
DocType: Custom Script,Script,ស្គ្រីប
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,ការកំណត់របស់ខ្ញុំ
DocType: Website Theme,Text Color,ពណ៌អត្ថបទ
apps/frappe/frappe/desk/page/backups/backups.py +72,Backup job is already queued. You will receive an email with the download link,ការងារបម្រុងទុកត្រូវបានដាក់ជាជួររួចហើយ។ អ្នកនឹងទទួលបានអ៊ីម៉ែលដែលមានតំណទាញយក
DocType: Desktop Icon,Force Show,កម្លាំងបង្ហាញ
apps/frappe/frappe/auth.py +78,Invalid Request,ស្នើសុំមិនត្រឹមត្រូវ
apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,សំណុំបែបបទនេះមិនមានបញ្ចូលណាមួយ
@@ -1335,7 +1341,7 @@ DocType: DocField,Name,ឈ្មោះ
apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,អ្នកបានលើសពីទំហំអតិបរមានៃ {0} សម្រាប់ផែនការរបស់អ្នក។ {1} ។
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,ស្វែងរកឯកសារនេះ
DocType: OAuth Authorization Code,Valid,សុពលភាព
apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,បើកតំណ
apps/frappe/frappe/public/js/frappe/form/control.js +1354,Open Link,បើកតំណ
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,ភាសារបស់អ្នក
apps/frappe/frappe/desk/form/load.py +46,Did not load,មិនបានផ្ទុក
apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,បន្ថែមជួរដេក
@@ -1353,6 +1359,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.",ឯកសារជាក់លាក់មួយចំនួនដូចជាវិក័យប័ត្រមួយដែលមិនគួរត្រូវបានផ្លាស់ប្តូរផ្តាច់ព្រ័ត្រម្តង។ នៅរដ្ឋចុងក្រោយសម្រាប់ឯកសារទាំងនោះត្រូវបានគេហៅថាផ្តល់ជូន។ អ្នកអាចដាក់កម្រិតដែលមានតួនាទីអាចដាក់ស្នើ។
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យនាំចេញរបាយការណ៍នេះ
apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 ធាតុដែលបានជ្រើស
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> រកមិនឃើញលទ្ធផលសម្រាប់ ' </p>
DocType: Newsletter,Test Email Address,ការធ្វើតេស្តអាសយដ្ឋានអ៊ីមែល
DocType: ToDo,Sender,អ្នកផ្ញើ
DocType: GSuite Settings,Google Apps Script,Google ស្គ្រីបកម្មវិធី
@@ -1460,7 +1467,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Ple
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,កំពុងផ្ទុករបាយការណ៍
apps/frappe/frappe/limits.py +72,Your subscription will expire today.,ការជាវរបស់អ្នកនឹងផុតកំណត់នៅថ្ងៃនេះ។
DocType: Page,Standard,ស្ដង់ដារ
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,ភ្ជាប់ឯកសារ
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,ភ្ជាប់ឯកសារ
apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,សេចក្តីជូនដំណឹងស្តីពីការធ្វើឱ្យទាន់សម័យពាក្យសម្ងាត់
apps/frappe/frappe/desk/page/backups/backups.html +13,Size,ទំហំ
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,ការផ្តល់តម្លៃពេញលេញ
@@ -1490,7 +1497,7 @@ apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversat
apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},ជម្រើសមិនត្រូវបានកំណត់សម្រាប់វាលតំណ {0}
DocType: Customize Form,"Must be of type ""Attach Image""",ត្រូវតែមានប្រភេទ &quot;ភ្ជាប់រូបភាព&quot;
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,មិនជ្រើសទាំងអស់
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},អ្នកមិនអាចកំណត់ទៅ &quot;បានតែអាន&quot; សម្រាប់វាល {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +199,You cannot unset 'Read Only' for field {0},អ្នកមិនអាចកំណត់ទៅ &quot;បានតែអាន&quot; សម្រាប់វាល {0}
DocType: Auto Email Report,Zero means send records updated at anytime,សូន្យមានន័យថាការផ្ញើកំណត់ត្រាដែលបានធ្វើបច្ចុប្បន្នភាពនៅគ្រប់ពេលវេលា
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +22,Complete Setup,ការរៀបចំពេញលេញ
DocType: Workflow State,asterisk,សញ្ញាផ្កាយ
@@ -1504,7 +1511,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +98,Week,សប្
DocType: Social Login Keys,Google,ក្រុមហ៊ុន Google
DocType: Email Domain,Example Email Address,ឧទាហរណ៍អាសយដ្ឋានអ៊ីមែល
apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,គេប្រើច្រើនបំផុត
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Unsubscribe from Newsletter,ឈប់ជាវពីព្រឹត្តិបត្រ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe from Newsletter,ឈប់ជាវពីព្រឹត្តិបត្រ
apps/frappe/frappe/www/login.html +101,Forgot Password,ភ្លេចលេខសំងាត់
DocType: Dropbox Settings,Backup Frequency,ភពញឹកញប់បម្រុងទុក
DocType: Workflow State,Inverse,ច្រាស
@@ -1582,10 +1589,11 @@ apps/frappe/frappe/config/setup.py +209,"Actions for workflow (e.g. Approve, Can
DocType: Workflow State,flag,ទង់ជាតិ
apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +57,Feedback Request is already sent to user,មតិអ្នកប្រើត្រូវបានបញ្ជូនរួចទៅហើយសំណើទៅអ្នកប្រើ
DocType: Web Page,Text Align,អត្ថបទតម្រឹម
apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},ឈ្មោះមិនអាចមានតួអក្សរពិសេសដូចជា {0}
apps/frappe/frappe/model/naming.py +185,Name cannot contain special characters like {0},ឈ្មោះមិនអាចមានតួអក្សរពិសេសដូចជា {0}
DocType: Contact Us Settings,Forward To Email Address,បញ្ចូនបន្តទៅអាសយដ្ឋានអ៊ីម៉ែ
apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,បង្ហាញទិន្នន័យទាំងអស់
apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,វាលចំណងជើងត្រូវតែជា fieldname ដែលមានសុពលភាព
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,មិនមានគណនីអ៊ីម៉ែល។ សូមបង្កើតគណនីអ៊ីម៉ែលថ្មីមួយពីការរៀបចំ&gt; អ៊ីម៉ែល&gt; គណនីអ៊ីម៉ែល
apps/frappe/frappe/config/core.py +7,Documents,ឯកសារ
DocType: Email Flag Queue,Is Completed,ត្រូវបានបញ្ចប់
apps/frappe/frappe/www/me.html +22,Edit Profile,កែសម្រួលទម្រង់
@@ -1595,7 +1603,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi
myfield
eval:doc.myfield=='My Value'
eval:doc.age&gt;18",វាលនេះនឹងបង្ហាញតែប៉ុណ្ណោះប្រសិនបើបានកំណត់នៅទីនេះ fieldname តម្លៃឬច្បាប់ដែលមាននេះគឺជាការពិត (ឧទាហរណ៍): myfield eval: doc.myfield == &#39;តម្លៃរបស់ខ្ញុំ&#39; eval: doc.age&gt; 18
apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,ថ្ងៃនេះ
apps/frappe/frappe/public/js/frappe/form/control.js +764,Today,ថ្ងៃនេះ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",នៅពេលដែលអ្នកបានកំណត់នេះអ្នកប្រើនឹងត្រូវបានចូលដំណើរការឯកសារដែលអាច (ឧ។ ប្រកាសកំណត់ហេតុបណ្ដាញ) ដែលជាកន្លែងដែលតំណនេះមាន (អ្នកសរសេរប្លុកឧ។ ) ។
DocType: Error Log,Log of Scheduler Errors,កំណត់ហេតុនៃកំហុសកម្មវិធីកំណត់ពេល
DocType: User,Bio,ជីវប្រវត្តិ
@@ -1654,7 +1662,7 @@ DocType: Print Format,Js,jS
apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,ជ្រើសទ្រង់ទ្រាយម៉ាស៊ីនបោះពុម្ព
apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,លំនាំក្តារចុចខ្លីគឺជាការងាយស្រួលក្នុងការទាយ
DocType: Portal Settings,Portal Menu,ម៉ឺនុយវិបផតថល
apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,ប្រវែងនៃ {0} គួរត្រូវបានរវាង 1 និង 1000
apps/frappe/frappe/model/db_schema.py +115,Length of {0} should be between 1 and 1000,ប្រវែងនៃ {0} គួរត្រូវបានរវាង 1 និង 1000
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,ស្វែងរកអ្វីនោះទេ
DocType: DocField,Print Hide,បោះពុម្ពលាក់
apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,បញ្ចូលតម្លៃ
@@ -1707,8 +1715,7 @@ apps/frappe/frappe/model/document.py +564,Cannot change docstatus from 0 to 2,
DocType: User Permission for Page and Report,Roles Permission,តួនាទីសិទ្ធិ
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,ធ្វើឱ្យទាន់សម័យ
DocType: Error Snapshot,Snapshot View,រូបថតមើល
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,សូមរក្សាទុកព្រឹត្តិប័ត្រព័ត៌មានមុនពេលបញ្ជូន
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} ឆ្នាំ (s បាន) មុន
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +101,Please save the Newsletter before sending,សូមរក្សាទុកព្រឹត្តិប័ត្រព័ត៌មានមុនពេលបញ្ជូន
apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},ជម្រើសត្រូវតែជា DOCTYPE សុពលភាពសម្រាប់វាល {0} នៅក្នុងជួរដេក {1}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,កែសម្រួលលក្ខណៈសម្បត្តិ
DocType: Patch Log,List of patches executed,បញ្ជីនៃបំណះត្រូវបានប្រតិបត្តិ
@@ -1726,7 +1733,7 @@ apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,ធ្វើ
DocType: Workflow State,trash,ធុងសំរាម
DocType: System Settings,Older backups will be automatically deleted,បម្រុងទុកចាស់ជាងនេះនឹងត្រូវបានលុបដោយស្វ័យប្រវត្តិ
DocType: Event,Leave blank to repeat always,ទុកទទេដើម្បីធ្វើឡើងវិញតែងតែ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +192,Confirmed,បានបញ្ជាក់ថា
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,Confirmed,បានបញ្ជាក់ថា
DocType: Event,Ends on,បញ្ចប់នៅថ្ងៃ
DocType: Payment Gateway,Gateway,ផ្លូវចេញចូល
apps/frappe/frappe/public/js/frappe/form/linked_with.js +116,Not enough permission to see links,មិនមានសិទ្ធិគ្រប់គ្រាន់ក្នុងការមើលឃើញតំណភ្ជាប់
@@ -1757,7 +1764,6 @@ DocType: Contact,Purchase Manager,កម្មវិធីគ្រប់គ្
DocType: Custom Script,Sample,គំរូ
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Uncategorised ស្លាក
DocType: Event,Every Week,ជារៀងរាល់សប្តាហ៍
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,គណនីអ៊ីម៉ែលមិនត្រូវបានដំឡើង។ សូមបង្កើតគណនីអ៊ីម៉ែលថ្មីពីការដំឡើង&gt; អ៊ីមែល&gt; គណនីអ៊ីម៉ែល
apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,សូមចុចទីនេះដើម្បីពិនិត្យមើលការប្រើប្រាស់របស់អ្នកឬធ្វើឱ្យប្រសើរឡើងចំពោះផែនការមួយខ្ពស់
DocType: Custom Field,Is Mandatory Field,គឺជាវាលដោយបង្ខំ
DocType: User,Website User,វេបសាយរបស់អ្នកប្រើប្រាស់
@@ -1765,7 +1771,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +10,Not equals,
DocType: Integration Request,Integration Request Service,សេវាសំណើសមាហរណកម្ម
DocType: Website Script,Script to attach to all web pages.,ស្គ្រីបដើម្បីភ្ជាប់ទៅទំព័រតំបន់បណ្ដាញទាំងអស់។
DocType: Web Form,Allow Multiple,អនុញ្ញាតឱ្យច្រើន
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +40,Assign,ចាត់តាំង
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +44,Assign,ចាត់តាំង
apps/frappe/frappe/config/setup.py +102,Import / Export Data from .csv files.,នាំចូល / នាំចេញទិន្នន័យពីឯកសារដែលបាន .csv ។
DocType: Auto Email Report,Only Send Records Updated in Last X Hours,មានតែផ្ញើកំណត់ត្រាដែលបានធ្វើបច្ចុប្បន្នភាពនៅម៉ោងចុងក្រោយ X បាន
DocType: Communication,Feedback,មតិអ្នក
@@ -1845,7 +1851,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,ដែល
apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,សូមរក្សាទុកមុនពេលភ្ជាប់។
apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),បន្ថែម {0} ({1})
apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},ស្បែកលំនាំដើមគឺត្រូវបានកំណត់នៅក្នុង {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype មិនអាចត្រូវបានផ្លាស់ប្តូរពី {0} ទៅ {1} នៅក្នុងជួរ {2}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +325,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype មិនអាចត្រូវបានផ្លាស់ប្តូរពី {0} ទៅ {1} នៅក្នុងជួរ {2}
apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,សិទ្ធិតួនាទីយ៉ាង
DocType: Help Article,Intermediate,កម្រិតមធ្យម
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,អាចអាន
@@ -1861,9 +1867,9 @@ DocType: Event,Starts on,ចាប់ផ្តើមនៅ
DocType: System Settings,System Settings,កំណត់ប្រព័ន្ធ
apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,ចាប់ផ្ដើមសម័យបានបរាជ័យ
apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,ចាប់ផ្ដើមសម័យបានបរាជ័យ
apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},អ៊ីម៉ែលនេះបានផ្ញើទៅ {0} និងបានចម្លងទៅ {1}
apps/frappe/frappe/email/queue.py +470,This email was sent to {0} and copied to {1},អ៊ីម៉ែលនេះបានផ្ញើទៅ {0} និងបានចម្លងទៅ {1}
DocType: Workflow State,th,ទី
apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},បង្កើតថ្មីមួយ {0}
apps/frappe/frappe/public/js/frappe/form/control.js +1517,Create a new {0},បង្កើតថ្មីមួយ {0}
DocType: Email Rule,Is Spam,នេះគឺជាសារឥតបានការ
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},របាយការណ៍ {0}
apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},ការបើកចំហរ {0}
@@ -1875,12 +1881,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon a
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,ស្ទួន
DocType: Newsletter,Create and Send Newsletters,បង្កើតនិងផ្ញើការពិពណ៌នា
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date must be before To Date,ចាប់ពីកាលបរិច្ឆេទត្រូវតែជាកាលបរិច្ឆេទមុន
DocType: Address,Andaman and Nicobar Islands,កោះអាន់ឌាន់និងកោះនីកូបារ
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +216,GSuite Document,ឯកសារ GSuite
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +29,Please specify which value field must be checked,សូមបញ្ជាក់វាលដែលតម្លៃត្រូវតែត្រូវបានធីក
apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"""Parent"" signifies the parent table in which this row must be added",&quot;ឪពុកម្តាយ&quot; បង្ហាញតារាងមេដែលជួរដេកនេះត្រូវតែត្រូវបានបន្ថែម
DocType: Website Theme,Apply Style,អនុវត្តរចនាប័ទ្ម
DocType: Feedback Request,Feedback Rating,មតិអ្នកវាយតម្លៃ
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared With,ចែករំលែកជាមួយ
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,ចែករំលែកជាមួយ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,ការតំឡើង&gt; កម្មវិធីគ្រប់គ្រងការអនុញ្ញាតអ្នកប្រើ
DocType: Help Category,Help Articles,អត្ថបទជំនួយ
,Modules Setup,ម៉ូឌុលការរៀបចំ
apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,ប្រភេទ:
@@ -1912,7 +1920,7 @@ DocType: OAuth Client,App Client ID,លេខសម្គាល់កម្ម
DocType: Kanban Board,Kanban Board Name,ឈ្មោះក្រុមប្រឹក្សាភិបាល Kanban
DocType: Email Alert Recipient,"Expression, Optional",ការបញ្ចេញមតិជាជម្រើស
DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,ចម្លងនិងបិទភ្ជាប់កូដនេះចូលទៅក្នុងហើយទទេ Code.gs នៅក្នុងគម្រោងរបស់អ្នកនៅ script.google.com
apps/frappe/frappe/email/queue.py +456,This email was sent to {0},អ៊ីម៉ែលនេះបានផ្ញើទៅ {0}
apps/frappe/frappe/email/queue.py +472,This email was sent to {0},អ៊ីម៉ែលនេះបានផ្ញើទៅ {0}
DocType: DocField,Remember Last Selected Value,ចូរចាំថាតម្លៃដែលបានជ្រើសមុន
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +334,Please select Document Type,សូមជ្រើសរើសប្រភេទឯកសារ
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +334,Please select Document Type,សូមជ្រើសរើសប្រភេទឯកសារ
@@ -1928,6 +1936,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,ជ
DocType: Feedback Trigger,Email Field,វាលអ៊ីមែល
apps/frappe/frappe/www/update-password.html +59,New Password Required.,ពាក្យសម្ងាត់ថ្មីត្រូវការ។
apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} ចែករំលែកឯកសារនេះជាមួយនឹង {1}
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,ដំឡើង&gt; អ្នកប្រើ
DocType: Website Settings,Brand Image,រូបភាពយីហោ
DocType: Print Settings,A4,រថយន្ត A4
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.",ការរៀបចំនៃរបាររុករកកំពូលរបស់បាតកថានិងស្លាកសញ្ញា។
@@ -1996,8 +2005,8 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for
DocType: Auto Email Report,Filter Data,ទិន្នន័យតម្រង
DocType: Auto Email Report,Filter Data,ទិន្នន័យតម្រង
apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,បន្ថែមស្លាក
apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,សូមភ្ជាប់ឯកសារមួយជាលើកដំបូង។
apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","មានកំហុសមួយចំនួនការកំណត់ឈ្មោះនេះត្រូវបានគេ, សូមទាក់ទងអ្នកគ្រប់គ្រង"
apps/frappe/frappe/public/js/frappe/form/control.js +1335,Please attach a file first.,សូមភ្ជាប់ឯកសារមួយជាលើកដំបូង។
apps/frappe/frappe/model/naming.py +174,"There were some errors setting the name, please contact the administrator","មានកំហុសមួយចំនួនការកំណត់ឈ្មោះនេះត្រូវបានគេ, សូមទាក់ទងអ្នកគ្រប់គ្រង"
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,គណនីអ៊ីម៉ែលចូលមិនត្រឹមត្រូវ
apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \
Please enter a valid email address so that we can get back.",អ្នកហាក់ដូចជាបានសរសេរឈ្មោះរបស់អ្នកជំនួសឱ្យអ៊ីមែលរបស់អ្នក។ \ សូមបញ្ចូលអាសយដ្ឋានអ៊ីមែលដែលត្រឹមត្រូវដើម្បីឱ្យយើងអាចទទួលបានត្រឡប់មកវិញ។
@@ -2049,7 +2058,6 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,
DocType: Custom DocPerm,Create,បង្កើត
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},តម្រងមិនត្រឹមត្រូវ: {0}
DocType: Email Account,no failed attempts,ការបរាជ័យនោះទេ
apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,រកមិនឃើញអាសយដ្ឋានលំនាំដើមពុម្ព។ សូមបង្កើតថ្មីមួយពីការដំឡើង&gt; បោះពុម្ពនិងម៉ាក&gt; អាស័យពុម្ព។
DocType: GSuite Settings,refresh_token,refresh_token
DocType: Dropbox Settings,App Access Key,ការចូលដំណើរការកម្មវិធីគន្លឹះ
DocType: OAuth Bearer Token,Access Token,ការចូលដំណើរការ Token
@@ -2075,6 +2083,7 @@ apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,ចុ
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},ធ្វើឱ្យថ្មីមួយ {0}
apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,គណនីអ៊ីម៉ែលថ្មី
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +28,Document Restored,ឯកសារស្ដារ
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +203,You can't set 'Options' for field {0},អ្នកមិនអាចកំណត់ &#39;ជម្រើស&#39; សម្រាប់វាល {0}
apps/frappe/frappe/core/page/usage_info/usage_info.html +86,Size (MB),ទំហំ (MB)
DocType: Help Article,Author,អ្នកនិពន្ធ
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +10,Resume Sending,បន្តការផ្ញើ
@@ -2084,7 +2093,7 @@ DocType: Print Settings,Monochrome,មួយពណ៌
DocType: Address,Purchase User,អ្នកប្រើប្រាស់ទិញ
DocType: Workflow,"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.",ភាពខុសគ្នា &quot;អាមេរិក&quot; ឯកសារនេះអាចមាននៅក្នុង។ ដូចជា &quot;បើក&quot; &quot;រង់ចាំការអនុម័ត&quot; ល
apps/frappe/frappe/utils/verified_command.py +43,This link is invalid or expired. Please make sure you have pasted correctly.,តំណនេះគឺមិនត្រឹមត្រូវឬផុតកំណត់។ សូមធ្វើឱ្យប្រាកដថាអ្នកបានបិទភ្ជាប់ត្រឹមត្រូវ។
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> ត្រូវបានឈប់ជាវដោយជោគជ័យពីបញ្ជីសំបុត្ររួមនេះ។
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +136,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> ត្រូវបានឈប់ជាវដោយជោគជ័យពីបញ្ជីសំបុត្ររួមនេះ។
DocType: Web Page,Slideshow,ការបញ្ចាំងស្លាយ
apps/frappe/frappe/contacts/doctype/address_template/address_template.py +31,Default Address Template cannot be deleted,អាសយដ្ឋានលំនាំដើមទំព័រគំរូមិនអាចត្រូវបានលុប
DocType: Contact,Maintenance Manager,កម្មវិធីគ្រប់គ្រងថែទាំ
@@ -2107,7 +2116,7 @@ DocType: System Settings,Apply Strict User Permissions,អនុវត្តស
DocType: DocField,Allow Bulk Edit,អនុញ្ញាតការកែសម្រួលជាដុំ
DocType: DocField,Allow Bulk Edit,អនុញ្ញាតការកែសម្រួលជាដុំ
DocType: Blog Post,Blog Post,ភ្នំពេញប៉ុស្តិ៍កំណត់ហេតុបណ្ដាញ
apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,ស្វែងរកកំរិតខ្ពស់
apps/frappe/frappe/public/js/frappe/form/control.js +1527,Advanced Search,ស្វែងរកកំរិតខ្ពស់
apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,សេចក្តីណែនាំអំពីការកំណត់ពាក្យសម្ងាត់ត្រូវបានគេបញ្ជូនទៅកាន់អ៊ីម៉ែលរបស់អ្នក
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \
higher levels for field level permissions.",កម្រិត 0 គឺសម្រាប់សិទ្ធិកម្រិតឯកសារ \ កម្រិតខ្ពស់សម្រាប់សិទ្ធិកម្រិតវាល។
@@ -2134,13 +2143,13 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,ស្វែងរក
DocType: Currency,Fraction,ប្រភាគ
DocType: LDAP Settings,LDAP First Name Field,ឈ្មោះវាលដំបូងរបស់ LDAP
apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,ឯកសារភ្ជាប់ដែលមានស្រាប់ជ្រើសពី
apps/frappe/frappe/public/js/frappe/form/control.js +1085,Select from existing attachments,ឯកសារភ្ជាប់ដែលមានស្រាប់ជ្រើសពី
DocType: Custom Field,Field Description,វាលទិសដៅ
apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,មិនបានកំណត់តាមរយៈការពីឈ្មោះវីនដូ
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,ប្រអប់ទទួលអ៊ីម៉ែល
DocType: Auto Email Report,Filters Display,បង្ហាញតម្រង
DocType: Website Theme,Top Bar Color,កំពូលទាំងបារពណ៌
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Do you want to unsubscribe from this mailing list?,តើអ្នកចង់ចាកចេញពីបញ្ជីសំបុត្ររួមនេះ?
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Do you want to unsubscribe from this mailing list?,តើអ្នកចង់ចាកចេញពីបញ្ជីសំបុត្ររួមនេះ?
DocType: Address,Plant,រោងចក្រ
apps/frappe/frappe/core/doctype/communication/communication.js +65,Reply All,ឆ្លើយតបទាំងអស់
DocType: DocType,Setup,ការដំឡើង
@@ -2183,7 +2192,7 @@ DocType: User,Send Notifications for Transactions I Follow,ផ្ញើការ
apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: មិនអាចកំណត់ការដាក់ស្នើ, បោះបង់ធ្វើវិសោធនកម្មដោយគ្មានការសរសេរ"
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,តើអ្នកពិតជាចង់លុបឯកសារភ្ជាប់ហើយឬនៅ?
apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} <a href=""#Form/{0}/{1}"">{1}</a> is linked with {2} <a href=""#Form/{2}/{3}"">{3}</a>","មិនអាចលុបឬលុបចោលទេព្រោះ {0} <a href=""#Form/{0}/{1}"">{1}</a> ត្រូវបានផ្សារភ្ជាប់ជាមួយនឹងការ {2} <a href=""#Form/{2}/{3}"">{3}</a>"
apps/frappe/frappe/__init__.py +1062,Thank you,សូមអរគុណអ្នក
apps/frappe/frappe/__init__.py +1070,Thank you,សូមអរគុណអ្នក
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,ការរក្សាទុកដោយ
DocType: Print Settings,Print Style Preview,បោះពុម្ពរចនាប័ទ្មមើលជាមុន
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
@@ -2198,7 +2207,7 @@ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,បន
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,លេខសំគាល់
,Role Permissions Manager,កម្មវិធីគ្រប់គ្រងសិទ្ធិតួនាទីយ៉ាង
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,ឈ្មោះនៃទ្រង់ទ្រាយបោះពុម្ពថ្មី
apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,ជម្រះការឯកសារភ្ជាប់
apps/frappe/frappe/public/js/frappe/form/control.js +1087,Clear Attachment,ជម្រះការឯកសារភ្ជាប់
apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,ជាចាំបាច់:
,User Permissions Manager,កម្មវិធីគ្រប់គ្រងសិទ្ធិអ្នកប្រើ
DocType: Property Setter,New value to be set,តម្លៃថ្មីត្រូវបានកំណត់
@@ -2224,7 +2233,7 @@ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment C
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,កំណត់ហេតុកំហុសក្នុងការយ៉ាងច្បាស់លាស់
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,សូមជ្រើសចំណាត់ថ្នាក់
DocType: Email Account,Notify if unreplied for (in mins),ជូនដំណឹងប្រសិនបើ unreplied សម្រាប់ (នៅក្នុងនាទី)
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 ថ្ងៃមុន
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +501,2 days ago,2 ថ្ងៃមុន
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,ប្រភេទប្រកាសកំណត់ហេតុបណ្ដាញ។
DocType: Workflow State,Time,ម៉ោង
DocType: DocField,Attach,ភ្ជាប់
@@ -2240,6 +2249,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,ទំ
DocType: GSuite Templates,Template Name,ឈ្មោះពុម្ព
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,ប្រភេទថ្មីមួយនៃឯកសារ
DocType: Custom DocPerm,Read,អាន
DocType: Address,Chhattisgarh,Chhattisgarh
DocType: Role Permission for Page and Report,Role Permission for Page and Report,សិទ្ធិតួនាទីសម្រាប់ Page និងរបាយការណ៍
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,តម្រឹមតម្លៃ
apps/frappe/frappe/www/update-password.html +14,Old Password,ពាក្យសម្ងាត់ចាស់
@@ -2286,7 +2296,7 @@ apps/frappe/frappe/public/js/frappe/roles_editor.js +28,Add all roles,បន្
apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your email and message so that we \
can get back to you. Thanks!",សូមបញ្ចូលសារអ៊ីមែលហើយទាំងពីរនាក់របស់អ្នកដូច្នេះយើងអាចទទួលបានមកវិញ \ ទៅអ្នក។ សូមអរគុណ!
apps/frappe/frappe/email/smtp.py +170,Could not connect to outgoing email server,មិនអាចតភ្ជាប់ទៅម៉ាស៊ីនបម្រើអ៊ីមែលចេញ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +162,Thank you for your interest in subscribing to our updates,សូមអរគុណចំពោះការចាប់អារម្មណ៍របស់អ្នកក្នុងការធ្វើឱ្យទាន់សម័យជាវរបស់យើង
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Thank you for your interest in subscribing to our updates,សូមអរគុណចំពោះការចាប់អារម្មណ៍របស់អ្នកក្នុងការធ្វើឱ្យទាន់សម័យជាវរបស់យើង
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Custom Column,ជួរឈរផ្ទាល់ខ្លួន
DocType: Workflow State,resize-full,ផ្លាស់ប្តូរទំហំពេញ
DocType: Workflow State,off,បិទ
@@ -2349,7 +2359,7 @@ DocType: Address,Telangana,Telangana
apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,លំនាំដើមសម្រាប់ {0} ត្រូវតែជាជម្រើសមួយ
DocType: Tag Doc Category,Tag Doc Category,ស្លាកប្រភេទដុក
DocType: User,User Image,រូបភាពរបស់អ្នកប្រើ
apps/frappe/frappe/email/queue.py +289,Emails are muted,អ៊ីម៉ែលគឺមានបំបិទ
apps/frappe/frappe/email/queue.py +304,Emails are muted,អ៊ីម៉ែលគឺមានបំបិទ
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,បញ្ជា + ឡើង
DocType: Website Theme,Heading Style,រចនាប័ទ្មក្បាល
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +183,A new Project with this name will be created,គម្រោងថ្មីដែលមានឈ្មោះនេះនឹងត្រូវបានបង្កើត
@@ -2569,7 +2579,6 @@ DocType: Workflow State,bell,កណ្តឹង
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,មានកំហុសក្នុងការជូនដំណឹងអ៊ីមែល
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,មានកំហុសក្នុងការជូនដំណឹងអ៊ីមែល
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,ចែករំលែកជាមួយឯកសារនេះ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,ការដំឡើង&gt; កម្មវិធីគ្រប់គ្រងសិទ្ធិអ្នកប្រើ
apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} មិនអាចមានការថ្នាំងស្លឹកមួយដូចដែលវាបានមានកូន
DocType: Communication,Info,ពត៌មាន
apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,បន្ថែមឯកសារភ្ជាប់
@@ -2614,7 +2623,7 @@ apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,បោះ
DocType: Email Alert,Send days before or after the reference date,ផ្ញើមុនឬបន្ទាប់ពីកាលបរិច្ឆេទសេចក្តីយោងថ្ងៃ
DocType: User,Allow user to login only after this hour (0-24),អនុញ្ញាតឱ្យអ្នកប្រើដើម្បីចូលតែប៉ុណ្ណោះបន្ទាប់ពីម៉ោងនេះ (0-24)
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,គុណតម្លៃ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +165,Click here to verify,សូមចុចទីនេះដើម្បីផ្ទៀងផ្ទាត់
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +166,Click here to verify,សូមចុចទីនេះដើម្បីផ្ទៀងផ្ទាត់
apps/frappe/frappe/utils/password_strength.py +178,Predictable substitutions like '@' instead of 'a' don't help very much.,ជំនួសព្យាករបានដូចជា &#39;@&#39; ជំនួសឱ្យ &quot;មួយ&quot; មិនអាចជួយបានច្រើនណាស់។
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,ដែលបានផ្ដល់ដោយខ្ញុំ
apps/frappe/frappe/utils/data.py +462,Zero,សូន្យ
@@ -2626,6 +2635,7 @@ DocType: ToDo,Priority,អាទិភាព
DocType: Email Queue,Unsubscribe Param,ឈប់ជាវ Param
DocType: Auto Email Report,Weekly,ប្រចាំសប្តាហ៍
DocType: Communication,In Reply To,នៅក្នុងការឆ្លើយតបទៅ
apps/frappe/frappe/contacts/doctype/address/address.py +189,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,រកមិនឃើញគំរូអាស័យដ្ឋានលំនាំដើម។ សូមបង្កើតថ្មីមួយពីការរៀបចំ&gt; បោះពុម្ពនិងបង្កើតយីហោ&gt; ពុម្ពលើ។
DocType: DocType,Allow Import (via Data Import Tool),អនុញ្ញាតឱ្យនាំចូល (តាមរយៈទិន្នន័យឧបករណ៍នាំចូល)
apps/frappe/frappe/templates/print_formats/standard_macros.html +30,Sr,sr
DocType: DocField,Float,ទសភាគ
@@ -2719,7 +2729,6 @@ apps/frappe/frappe/commands/site.py +451,Invalid limit {0},ដែនកំណត
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,រាយប្រភេទឯកសារ
DocType: Event,Ref Type,ប្រភេទយោង
apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","ប្រសិនបើអ្នកកំពុងផ្ទុកកំណត់ត្រាថ្មី, ទុកឱ្យនៅទទេ &quot;ឈ្មោះ&quot; ជួរឈរ (ID) ។"
DocType: Address,Chattisgarh,Chattisgarh
apps/frappe/frappe/config/core.py +47,Errors in Background Events,មានកំហុសនៅក្នុងផ្ទៃខាងក្រោយព្រឹត្តការណ៍
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,គ្មានជួរឈរ
DocType: Workflow State,Calendar,ប្រតិទិន
@@ -2752,7 +2761,7 @@ apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},កា
DocType: Integration Request,Remote,ពីចម្ងាយ
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,គណនា
apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,សូមជ្រើសចង្អុលបង្ហាញជាលើកដំបូង
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,បញ្ជាក់ការម៉ែលរបស់អ្នក
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +174,Confirm Your Email,បញ្ជាក់ការម៉ែលរបស់អ្នក
apps/frappe/frappe/www/login.html +42,Or login with,ឬការចូលជាមួយនឹង
DocType: Error Snapshot,Locals,អ្នកស្រុក
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},បានទាក់ទងតាមរយៈ {0} {1} លើ: {2}
@@ -2770,7 +2779,7 @@ DocType: Blog Category,Blogger,អ្នកសរសេរប្លុក
apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},&quot;នៅក្នុងការស្វែងរកសកល &#39;មិនត្រូវបានអនុញ្ញាតសម្រាប់ប្រភេទ {0} នៅក្នុងជួរដេក {1}
apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},&quot;នៅក្នុងការស្វែងរកសកល &#39;មិនត្រូវបានអនុញ្ញាតសម្រាប់ប្រភេទ {0} នៅក្នុងជួរដេក {1}
apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,ទិដ្ឋភាពបញ្ជី
apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},កាលបរិច្ឆេទត្រូវតែមាននៅក្នុងទ្រង់ទ្រាយ: {0}
apps/frappe/frappe/public/js/frappe/form/control.js +810,Date must be in format: {0},កាលបរិច្ឆេទត្រូវតែមាននៅក្នុងទ្រង់ទ្រាយ: {0}
DocType: Workflow,Don't Override Status,កុំបដិសេធស្ថានភាព
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,សូមផ្តល់ចំណាត់ថ្នាក់មួយ។
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} ប្រតិកម្មសំណើ
@@ -2803,7 +2812,7 @@ DocType: Custom DocPerm,Report,របាយការណ៏
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,ចំនួនទឹកប្រាក់ត្រូវតែធំជាង 0 ។
apps/frappe/frappe/desk/reportview.py +107,{0} is saved,{0} ត្រូវបានរក្សាទុក
apps/frappe/frappe/core/doctype/user/user.py +327,User {0} cannot be renamed,អ្នកប្រើ {0} មិនអាចត្រូវបានប្តូរឈ្មោះ
apps/frappe/frappe/model/db_schema.py +107,Fieldname is limited to 64 characters ({0}),Fieldname ត្រូវបានកំណត់ទៅ 64 តួអក្សរ ({0})
apps/frappe/frappe/model/db_schema.py +108,Fieldname is limited to 64 characters ({0}),Fieldname ត្រូវបានកំណត់ទៅ 64 តួអក្សរ ({0})
apps/frappe/frappe/config/desk.py +59,Email Group List,បញ្ជីគ្រុបអ៊ីម៉ែល
DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],ឯកសាររូបតំណាងជាមួយផ្នែកបន្ថែម .ico ។ គួរជា 16 x 16 ភិចសែល។ បង្កើតដោយប្រើម៉ាស៊ីនភ្លើងឱ្យរូបតំណាងសំណព្វមួយ។ [favicon-generator.org]
DocType: Auto Email Report,Format,ទ្រង់ទ្រាយ
@@ -2882,7 +2891,7 @@ DocType: Website Settings,Title Prefix,ចំណងជើងបុព្វប
DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,ការជូនដំណឹងនិងអ៊ីភាគច្រើននឹងត្រូវបានផ្ញើពីម៉ាស៊ីនបម្រើចេញនេះ។
DocType: Workflow State,cog,កត្តា
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on Migrate,ធ្វើសមកាលកម្មស្តីពីអន្តោប្រវេសន៍
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,បច្ចុប្បន្ននេះការមើល
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Currently Viewing,បច្ចុប្បន្ននេះការមើល
DocType: DocField,Default,លំនាំដើម
apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} បានបន្ថែម
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',ស្វែងរក &#39;{0}&#39;
@@ -2945,7 +2954,7 @@ DocType: Print Settings,Print Style,រចនាប័ទ្មបោះពុ
apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,មិនបានផ្សារភ្ជាប់ទៅនឹងកំណត់ត្រាណាមួយឡើយ
apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,មិនបានផ្សារភ្ជាប់ទៅនឹងកំណត់ត្រាណាមួយឡើយ
DocType: Custom DocPerm,Import,នាំចូល
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +178,Row {0}: Not allowed to enable Allow on Submit for standard fields,ជួរដេក {0}: មិនត្រូវបានអនុញ្ញាតឱ្យបើកការអនុញ្ញាតនៅលើវាលស្ដង់ដារសម្រាប់ការដាក់ស្នើ
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +180,Row {0}: Not allowed to enable Allow on Submit for standard fields,ជួរដេក {0}: មិនត្រូវបានអនុញ្ញាតឱ្យបើកការអនុញ្ញាតនៅលើវាលស្ដង់ដារសម្រាប់ការដាក់ស្នើ
apps/frappe/frappe/config/setup.py +100,Import / Export Data,នាំចូល / នាំចេញទិន្នន័យ
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,តួនាទីជាស្ដង់ដារមិនអាចត្រូវបានប្តូរឈ្មោះ
DocType: Communication,To and CC,ទៅនិង CC
@@ -2971,7 +2980,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo
DocType: Auto Email Report,Filter Meta,តម្រងមេតា
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,អត្ថបទដែលត្រូវបង្ហាញសម្រាប់តំណទៅទំព័របណ្តាញប្រសិនបើសំណុំបែបបទនេះមានទំព័របណ្ដាញ។ ផ្លូវតំណនឹងត្រូវបានបង្កើតដោយស្វ័យប្រវត្តិដែលមានមូលដ្ឋានលើ `` parent_website_route` និង page_name`
DocType: Feedback Request,Feedback Trigger,មតិអ្នកប្រើកេះ
apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,សូមកំណត់ {0} ដំបូង
apps/frappe/frappe/public/js/frappe/form/control.js +1741,Please set {0} first,សូមកំណត់ {0} ដំបូង
DocType: Unhandled Email,Message-id,លេខសម្គាល់សារ
DocType: Patch Log,Patch,បំណះ
DocType: Async Task,Failed,បានបរាជ័យ


+ 73
- 65
frappe/translations/kn.csv Datei anzeigen

@@ -14,8 +14,9 @@ apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,
DocType: User,Facebook Username,ಫೇಸ್ಬುಕ್ ಬಳಕೆದಾರಹೆಸರು
DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,ಗಮನಿಸಿ: ಬಹು ಅವಧಿಗಳ ಮೊಬೈಲ್ ಸಾಧನದ ಸಂದರ್ಭದಲ್ಲಿ ಅನುಮತಿಸಲಾಗುವುದು
apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},ಬಳಕೆದಾರರ ಸಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ ಇಮೇಲ್ ಇನ್ಬಾಕ್ಸ್ {ಬಳಕೆದಾರರು}
apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,ಈ ಇಮೇಲ್ ಕಳುಹಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. ಈ ತಿಂಗಳು {0} ಇಮೇಲ್ಗಳನ್ನು ಕಳುಹಿಸಲು ಮಿತಿಯನ್ನು ದಾಟಿತು.
apps/frappe/frappe/email/queue.py +225,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,ಈ ಇಮೇಲ್ ಕಳುಹಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. ಈ ತಿಂಗಳು {0} ಇಮೇಲ್ಗಳನ್ನು ಕಳುಹಿಸಲು ಮಿತಿಯನ್ನು ದಾಟಿತು.
apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,ಶಾಶ್ವತವಾಗಿ {0} ಸಲ್ಲಿಸಿ ?
apps/frappe/frappe/desk/page/backups/backups.js +12,Download Files Backup,ಫೈಲ್ಗಳನ್ನು ಬ್ಯಾಕ್ಅಪ್ ಡೌನ್ಲೋಡ್ ಮಾಡಿ
DocType: Address,County,ಕೌಂಟಿ
DocType: Workflow,If Checked workflow status will not override status in list view,ಪರಿಶೀಲಿಸಲ್ಪಟ್ಟ ಕೆಲಸದೊತ್ತಡದ ಸ್ಥಿತಿ ಪಟ್ಟಿ ವೀಕ್ಷಣೆಯಲ್ಲಿ ಸ್ಥಿತಿಯನ್ನು ಅತಿಕ್ರಮಿಸಲು ಹೋದಲ್ಲಿ
apps/frappe/frappe/client.py +280,Invalid file path: {0},ಅಮಾನ್ಯ ಕಡತ ಪಥವನ್ನು: {0}
@@ -81,10 +82,10 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,ನಮ್
apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,ನಿರ್ವಾಹಕ ಲಾಗ್ ಇನ್
DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","ಇತ್ಯಾದಿ "" ಮಾರಾಟದ ಪ್ರಶ್ನೆ , ಪ್ರಶ್ನೆ ಬೆಂಬಲ "" ಹೊಸ ಸಾಲಿನಲ್ಲಿ ಪ್ರತಿ ಅಥವಾ ಬೇರ್ಪಡಿಸಲಾಗಿರುತ್ತದೆ ನಂತಹ ಸಂಪರ್ಕ ಆಯ್ಕೆಗಳನ್ನು ."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. ಡೌನ್ಲೋಡ್
apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,ಸೇರಿಸಿ
apps/frappe/frappe/public/js/frappe/form/control.js +1979,Insert,ಸೇರಿಸಿ
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},ಆಯ್ಕೆ {0}
DocType: Print Settings,Classic,ಅತ್ಯುತ್ಕೃಷ್ಟ
DocType: Desktop Icon,Color,ಬಣ್ಣ
DocType: DocField,Color,ಬಣ್ಣ
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +54,For ranges,ಶ್ರೇಣಿಗಳಿಗೆ
DocType: Workflow State,indent-right,ಇಂಡೆಂಟ್ ಬಲ
DocType: Has Role,Has Role,ಪಾತ್ರ ಹ್ಯಾಸ್
@@ -101,7 +102,7 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To impor
DocType: DocType,Default Print Format,ಡೀಫಾಲ್ಟ್ ಪ್ರಿಂಟ್ ಫಾರ್ಮ್ಯಾಟ್
DocType: Workflow State,Tags,ಟ್ಯಾಗ್ಗಳು
apps/frappe/frappe/public/js/frappe/form/workflow.js +33,None: End of Workflow,ಯಾವುದೂ : ವರ್ಕ್ಫ್ಲೋ ಅಂತ್ಯ
apps/frappe/frappe/model/db_schema.py +346,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",ಅ ಅನನ್ಯ ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಮೌಲ್ಯಗಳನ್ನು ಲಭ್ಯವಿರುವುದರಿಂದ {0} ಕ್ಷೇತ್ರದಲ್ಲಿ {1} ನಲ್ಲಿ ಅನನ್ಯ ಹೊಂದಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ
apps/frappe/frappe/model/db_schema.py +347,"{0} field cannot be set as unique in {1}, as there are non-unique existing values",ಅ ಅನನ್ಯ ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಮೌಲ್ಯಗಳನ್ನು ಲಭ್ಯವಿರುವುದರಿಂದ {0} ಕ್ಷೇತ್ರದಲ್ಲಿ {1} ನಲ್ಲಿ ಅನನ್ಯ ಹೊಂದಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +47,Document Types,ಡಾಕ್ಯುಮೆಂಟ್ ವಿಧಗಳು
DocType: Address,Jammu and Kashmir,ಜಮ್ಮು ಮತ್ತು ಕಾಶ್ಮೀರ
DocType: Workflow,Workflow State Field,ವರ್ಕ್ಫ್ಲೋ ರಾಜ್ಯ ಫೀಲ್ಡ್
@@ -234,7 +235,7 @@ DocType: Workflow,Transition Rules,ಪರಿವರ್ತನೆ ನಿಯಮಗ
apps/frappe/frappe/core/doctype/report/report.js +11,Example:,ಉದಾಹರಣೆ :
DocType: Workflow,Defines workflow states and rules for a document.,ಒಂದು ದಾಖಲೆ ಕೆಲಸದೊತ್ತಡದ ರಾಜ್ಯಗಳು ಮತ್ತು ನಿಯಮಗಳನ್ನು ವ್ಯಾಖ್ಯಾನಿಸುತ್ತದೆ.
DocType: Workflow State,Filter,ಫಿಲ್ಟರ್
apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},FIELDNAME {0} ನಂತಹ ವಿಶೇಷ ಅಕ್ಷರಗಳು ಹೊಂದುವಂತಿಲ್ಲ {1}
apps/frappe/frappe/model/db_schema.py +564,Fieldname {0} cannot have special characters like {1},FIELDNAME {0} ನಂತಹ ವಿಶೇಷ ಅಕ್ಷರಗಳು ಹೊಂದುವಂತಿಲ್ಲ {1}
apps/frappe/frappe/config/setup.py +121,Update many values at one time.,ಒಂದು ಸಮಯದಲ್ಲಿ ಅನೇಕ ಮೌಲ್ಯಗಳು ನವೀಕರಿಸಿ.
apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,ದೋಷ : ನೀವು ತೆರೆದಿದ್ದೀರಿ ನಂತರ ಡಾಕ್ಯುಮೆಂಟ್ ಮಾರ್ಪಡಿಸಲಾಗಿದೆ
apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} ಲಾಗ್ ಔಟ್: {1}
@@ -263,7 +264,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Gravatar.com
apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","ನಿಮ್ಮ ಚಂದಾದಾರಿಕೆಯನ್ನು {0} ರಂದು ಮುಕ್ತಾಯಗೊಂಡಿದೆ. ನವೀಕರಿಸಲು, {1}."
DocType: Workflow State,plus-sign,ಪ್ಲಸ್ ಚಿಹ್ನೆ
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,ಸೆಟಪ್ ಈಗಾಗಲೇ ಸಂಪೂರ್ಣ
apps/frappe/frappe/__init__.py +889,App {0} is not installed,ಅಪ್ಲಿಕೇಶನ್ {0} ಅನುಸ್ಥಾಪಿತಗೊಂಡಿಲ್ಲ
apps/frappe/frappe/__init__.py +897,App {0} is not installed,ಅಪ್ಲಿಕೇಶನ್ {0} ಅನುಸ್ಥಾಪಿತಗೊಂಡಿಲ್ಲ
DocType: Workflow State,Refresh,ರಿಫ್ರೆಶ್
DocType: Event,Public,ಸಾರ್ವಜನಿಕ
apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,ತೋರಿಸಲು ಏನೂ
@@ -346,7 +347,6 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,ಸಂಪಾದಿಸಿ ಶಿರೋನಾಮೆ
DocType: File,File URL,ಫೈಲ್ URL ಅನ್ನು
DocType: Version,Table HTML,ಟೇಬಲ್ ಎಚ್ಟಿಎಮ್ಎಲ್
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> ಯಾವುದೇ ಫಲಿತಾಂಶಗಳು 'ಕಂಡುಬಂದಿಲ್ಲ </p>
apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,ಚಂದಾದಾರರು ಸೇರಿಸಿ
apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,ಇಂದು ಮುಂಬರುವ ಕಾರ್ಯಕ್ರಮಗಳು
DocType: Email Alert Recipient,Email By Document Field,ಡಾಕ್ಯುಮೆಂಟ್ ಕ್ಷೇತ್ರವು ಇಮೇಲ್
@@ -412,7 +412,6 @@ DocType: Desktop Icon,Link,ಕೊಂಡಿ
apps/frappe/frappe/utils/file_manager.py +96,No file attached,ಲಗತ್ತಿಸಲಾದ ಯಾವುದೇ ಕಡತ
DocType: Version,Version,ರೂಪಾಂತರ
DocType: User,Fill Screen,ಪರದೆಯನ್ನು ತುಂಬಿರಿ
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,ಸೆಟಪ್&gt; ಇಮೇಲ್&gt; ಇಮೇಲ್ ಖಾತೆಯಿಂದ ಅನ್ನು ಹೊಂದಿಸಿ ಡೀಫಾಲ್ಟ್ ಇಮೇಲ್ ಖಾತೆ
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","ಕಾರಣ ಕಾಣೆಯಾಗಿದೆ ಡೇಟಾ, ಈ ಮರದ ವರದಿ ತೋರಿಸಲು ಸಾಧ್ಯವಾಗುತ್ತಿಲ್ಲ. ಹೆಚ್ಚಾಗಿ, ಇದು ಕಾರಣ ಅನುಮತಿಗಳನ್ನು ಔಟ್ ಫಿಲ್ಟರ್ ಮಾಡಲಾಗುತ್ತಿದೆ."
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. ಫೈಲ್ ಆಯ್ಕೆಮಾಡಿ
apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,ಅಪ್ಲೋಡ್ ಮೂಲಕ ಸಂಪಾದಿಸಿ
@@ -482,9 +481,9 @@ DocType: User,Reset Password Key,ಪಾಸ್ವರ್ಡ್ ಕೀ ಕೊ
DocType: Email Account,Enable Auto Reply,ಆಟೋ ಉತ್ತರಿಸಿ ಸಕ್ರಿಯಗೊಳಿಸಿ
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,ನೋಡಿಲ್ಲ
DocType: Workflow State,zoom-in,ಜೂಮ್ ಇನ್
apps/frappe/frappe/email/queue.py +219,Unsubscribe from this list,ಈ ಪಟ್ಟಿಯಿಂದ ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್
apps/frappe/frappe/email/queue.py +234,Unsubscribe from this list,ಈ ಪಟ್ಟಿಯಿಂದ ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್
apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +13,Reference DocType and Reference Name are required,ರೆಫರೆನ್ಸ್ DOCTYPE ಮತ್ತು ರೆಫರೆನ್ಸ್ ಹೆಸರು ಅಗತ್ಯವಿದೆ
apps/frappe/frappe/utils/jinja.py +35,Syntax error in template,ಟೆಂಪ್ಲೇಟ್ ಸಿಂಟ್ಯಾಕ್ಸ್ ದೋಷ
apps/frappe/frappe/utils/jinja.py +51,Syntax error in template,ಟೆಂಪ್ಲೇಟ್ ಸಿಂಟ್ಯಾಕ್ಸ್ ದೋಷ
DocType: DocField,Width,ಅಗಲ
DocType: Email Account,Notify if unreplied,Unreplied ವೇಳೆ ಸೂಚಿಸಿ
DocType: System Settings,Minimum Password Score,ಕನಿಷ್ಠ ಪಾಸ್ವರ್ಡ್ ಸ್ಕೋರ್
@@ -570,6 +569,7 @@ DocType: Custom Field,Select the label after which you want to insert new field.
DocType: User,Last Login,ಕೊನೆಯ ಲಾಗಿನ್
apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},ಕ್ಷೇತ್ರ ಹೆಸರು ಸತತವಾಗಿ ಅಗತ್ಯವಿದೆ {0}
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,ಅಂಕಣ
apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup &gt; Email &gt; Email Account,ಸೆಟಪ್&gt; ಇಮೇಲ್&gt; ಇಮೇಲ್ ಖಾತೆಯಿಂದ ಡೀಫಾಲ್ಟ್ ಇಮೇಲ್ ಖಾತೆಯನ್ನು ಹೊಂದಿಸಿ
DocType: Custom Field,Adds a custom field to a DocType,ಒಂದು DOCTYPE ಕಸ್ಟಮ್ ಕ್ಷೇತ್ರ ಸೇರಿಸುತ್ತದೆ
DocType: File,Is Home Folder,ಮುಖಪುಟ ಫೋಲ್ಡರ್
apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} ಮಾನ್ಯ ಇಮೇಲ್ ವಿಳಾಸ ಅಲ್ಲ
@@ -577,7 +577,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +733,Select atleast 1 reco
apps/frappe/frappe/core/doctype/has_role/has_role.py +13,User '{0}' already has the role '{1}',ಬಳಕೆದಾರ &#39;{0}&#39; ಈಗಾಗಲೇ ಪಾತ್ರವನ್ನು ಹೊಂದಿದೆ &#39;{1}&#39;
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,ಅಪ್ಲೋಡ್ ಮತ್ತು ಸಿಂಕ್
apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},ಹಂಚಿಕೊಂಡಿದ್ದಾರೆ {0}
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe,ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +132,Unsubscribe,ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್
DocType: Communication,Reference Name,ರೆಫರೆನ್ಸ್ ಹೆಸರು
apps/frappe/frappe/public/js/frappe/toolbar.js +30,Chat Support,ಚಾಟಿಂಗ್ ಬೆಂಬಲ
DocType: Error Snapshot,Exception,ಎಕ್ಸೆಪ್ಶನ್
@@ -596,7 +596,7 @@ DocType: Email Group,Newsletter Manager,ಸುದ್ದಿಪತ್ರ ಮ್ಯ
apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,ಆಯ್ಕೆ 1
apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} ನಿಂದ {1}
apps/frappe/frappe/config/setup.py +89,Log of error during requests.,ವಿನಂತಿಗಳನ್ನು ಸಮಯದಲ್ಲಿ ದೋಷ ಲಾಗ್.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} ಯಶಸ್ವಿಯಾಗಿ ಇಮೇಲ್ ಗುಂಪು ಸೇರಿಸಲಾಗಿದೆ.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +194,{0} has been successfully added to the Email Group.,{0} ಯಶಸ್ವಿಯಾಗಿ ಇಮೇಲ್ ಗುಂಪು ಸೇರಿಸಲಾಗಿದೆ.
DocType: Address,Uttar Pradesh,ಉತ್ತರ ಪ್ರದೇಶ
DocType: Address,Pondicherry,ಪಾಂಡಿಚೇರಿ
apps/frappe/frappe/public/js/frappe/upload.js +364,Make file(s) private or public?,ಕಡತ (ಗಳು) ಖಾಸಗಿ ಅಥವಾ ಸಾರ್ವಜನಿಕ ಮಾಡಿ?
@@ -628,7 +628,7 @@ DocType: Portal Settings,Portal Settings,ಪೋರ್ಟಲ್ ಸೆಟ
DocType: Web Page,0 is highest,0 ಅತಿ
apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,ನೀವು {0} ಈ ಸಂವಹನ relink ಬಯಸಿದ್ದೀರಾ?
apps/frappe/frappe/www/login.html +104,Send Password,ಪಾಸ್ವರ್ಡ್ ಕಳುಹಿಸಿ
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +45,Attachments,ಲಗತ್ತುಗಳು
DocType: Email Queue,Attachments,ಲಗತ್ತುಗಳು
apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,ನೀವು ಈ ಡಾಕ್ಯುಮೆಂಟ್ ಪ್ರವೇಶಿಸಲು ಅನುಮತಿ ಇಲ್ಲ
DocType: Language,Language Name,ಭಾಷಾ ಹೆಸರು
DocType: Email Group Member,Email Group Member,ಗುಂಪಿನ ಸದಸ್ಯರ ಇಮೇಲ್
@@ -659,7 +659,7 @@ apps/frappe/frappe/utils/password_strength.py +78,Try to use a longer keyboard p
DocType: Feedback Trigger,Check Communication,ಸಂವಹನ ಪರಿಶೀಲಿಸಿ
DocType: Address,Rajasthan,ರಾಜಸ್ಥಾನ
apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,ವರದಿ ಬಿಲ್ಡರ್ ವರದಿಗಳು ವರದಿಯನ್ನು ಬಿಲ್ಡರ್ ನೇರವಾಗಿ ನಿರ್ವಹಿಸಲಾಗುತ್ತದೆ. ಏನೂ .
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,ದಯವಿಟ್ಟು ನಿಮ್ಮ ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ಪರಿಶೀಲಿಸಿ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +164,Please verify your Email Address,ದಯವಿಟ್ಟು ನಿಮ್ಮ ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ಪರಿಶೀಲಿಸಿ
apps/frappe/frappe/model/document.py +903,none of,ಯಾವುದೂ
apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,ಮಿ ಪ್ರತಿಯನ್ನು ಕಳುಹಿಸಿ
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,ಬಳಕೆದಾರ ಅನುಮತಿಗಳು ಅಪ್ಲೋಡ್
@@ -670,7 +670,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Si
apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,ಕನ್ಬನ್ ಬೋರ್ಡ್ {0} ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ.
apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} ಪ್ರಸ್ತುತ ದಾಖಲೆ ವೀಕ್ಷಿಸುತ್ತಿದ್ದಾರೆ
DocType: ToDo,Assigned By Full Name,ಪೂರ್ಣ ಹೆಸರು ಅದಕ್ಕೆ
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} ಅಪ್ಡೇಟ್ಗೊಳಿಸಲಾಗಿದೆ
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +153,{0} updated,{0} ಅಪ್ಡೇಟ್ಗೊಳಿಸಲಾಗಿದೆ
apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,ವರದಿ ಒಂದೇ ರೀತಿಯ ಹೊಂದಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} ದಿನಗಳ ಹಿಂದೆ
DocType: Email Account,Awaiting Password,ಕಾಯುತ್ತಿದ್ದ ಪಾಸ್ವರ್ಡ್
@@ -695,7 +695,7 @@ DocType: Workflow State,Stop,ನಿಲ್ಲಿಸಲು
DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,ನೀವು ತೆರೆಯಲು ಬಯಸುವ ಪುಟಕ್ಕೆ ಲಿಂಕ್. ನೀವು ಒಂದು ಗುಂಪು ಪೋಷಕ ಮಾಡಲು ಬಯಸಿದರೆ ಖಾಲಿ ಬಿಡಿ.
DocType: DocType,Is Single,ಏಕ
apps/frappe/frappe/core/doctype/user/user.py +720,Sign Up is disabled,ಸೈನ್ ಅಪ್ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ
apps/frappe/frappe/email/queue.py +278,{0} has left the conversation in {1} {2},{0} ನಲ್ಲಿ ಸಂಭಾಷಣೆಯನ್ನು ಬಿಟ್ಟಿದ್ದಾರೆ {1} {2}
apps/frappe/frappe/email/queue.py +293,{0} has left the conversation in {1} {2},{0} ನಲ್ಲಿ ಸಂಭಾಷಣೆಯನ್ನು ಬಿಟ್ಟಿದ್ದಾರೆ {1} {2}
DocType: Blogger,User ID of a Blogger,ಬ್ಲಾಗರ್ ಬಳಕೆದಾರ ID
apps/frappe/frappe/core/doctype/user/user.py +287,There should remain at least one System Manager,ಕನಿಷ್ಠ ಒಂದು ಸಿಸ್ಟಮ್ ಮ್ಯಾನೇಜರ್ ಇಲ್ಲ ಉಳಿಯಬೇಕು
DocType: GSuite Settings,Authorization Code,ಅಧಿಕಾರ ಕೋಡ್
@@ -742,6 +742,7 @@ DocType: Event,Event,ಈವೆಂಟ್
apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","{0} ನಲ್ಲಿ, {1} ಬರೆದರು:"
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,ಪ್ರಮಾಣಿತ ಕ್ಷೇತ್ರದಲ್ಲಿ ಅಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. ನೀವು ಬಯಸಿದರೆ ನೀವು ಇದು ಮರೆಮಾಡಬಹುದು
DocType: Top Bar Item,For top bar,ಅಗ್ರ ಬಾರ್
apps/frappe/frappe/desk/page/backups/backups.py +70,Queued for backup. You will receive an email with the download link,ಬ್ಯಾಕಪ್ಗಾಗಿ ಸರಬರಾಜು ಮಾಡಲಾಗಿದೆ. ಡೌನ್ಲೋಡ್ ಲಿಂಕ್ನೊಂದಿಗೆ ನೀವು ಇಮೇಲ್ ಅನ್ನು ಸ್ವೀಕರಿಸುತ್ತೀರಿ
apps/frappe/frappe/utils/bot.py +148,Could not identify {0},ಗುರುತಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ {0}
DocType: Address,Address,ವಿಳಾಸ
apps/frappe/frappe/templates/pages/integrations/payment-failed.html +3,Payment Failed,ಪಾವತಿ ವಿಫಲವಾಗಿದೆ
@@ -767,13 +768,13 @@ DocType: Web Form,Allow Print,ಪ್ರಿಂಟ್ ಅನುಮತಿಸಿ
apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,ಯಾವುದೇ ಅಪ್ಲಿಕೇಶನ್ಗಳನ್ನು ಸ್ಥಾಪಿಸಲಾಗಿಲ್ಲ
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,ಕಡ್ಡಾಯ ಕ್ಷೇತ್ರ ಗುರುತು
DocType: Communication,Clicked,ಕ್ಲಿಕ್
apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},ಯಾವುದೇ ಅನುಮತಿಯಿಲ್ಲ ' {0} ' {1}
apps/frappe/frappe/public/js/legacy/form.js +950,No permission to '{0}' {1},ಯಾವುದೇ ಅನುಮತಿಯಿಲ್ಲ ' {0} ' {1}
DocType: User,Google User ID,ಗೂಗಲ್ ಬಳಕೆದಾರ ID
apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,ಕಳುಹಿಸಲು ಪರಿಶಿಷ್ಟ
DocType: DocType,Track Seen,ಟ್ರ್ಯಾಕ್ ಸೀನ್
apps/frappe/frappe/desk/form/utils.py +55,This method can only be used to create a Comment,ಈ ವಿಧಾನವು ಕೇವಲ ಕಾಮೆಂಟ್ ರಚಿಸಲು ಬಳಸಬಹುದು
DocType: Event,orange,ಕಿತ್ತಳೆ
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,No {0} found,ಯಾವುದೇ {0} ಕಂಡು
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +558,No {0} found,ಯಾವುದೇ {0} ಕಂಡು
apps/frappe/frappe/config/setup.py +242,Add custom forms.,ಕಸ್ಟಮ್ ರೂಪಗಳು ಸೇರಿಸಿ.
apps/frappe/frappe/desk/like.py +84,{0}: {1} in {2},{0}: {1} ನಲ್ಲಿ {2}
apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +419,submitted this document,ಈ ಡಾಕ್ಯುಮೆಂಟ್ ಸಲ್ಲಿಸಿದ
@@ -803,6 +804,7 @@ DocType: Newsletter Email Group,Newsletter Email Group,ಸುದ್ದಿಪತ
DocType: Dropbox Settings,Integrations,ಅನುಕಲನ
DocType: DocField,Section Break,ವಿಭಾಗ ಬ್ರೇಕ್
DocType: Address,Warehouse,ಮಳಿಗೆ
DocType: Address,Other Territory,ಇತರ ಪ್ರದೇಶ
,Messages,ಸಂದೇಶಗಳು
apps/frappe/frappe/desk/page/applications/applications.js +49,Portal,ಪೋರ್ಟಲ್
DocType: Email Account,Use Different Email Login ID,ವಿವಿಧ ಇಮೇಲ್ ಲಾಗಿನ್ ID ಅನ್ನು ಬಳಸಿ
@@ -834,6 +836,7 @@ apps/frappe/frappe/utils/data.py +556,1 month ago,1 ತಿಂಗಳ ಹಿಂದ
DocType: Contact,User ID,ಬಳಕೆದಾರ ID
DocType: Communication,Sent,ಕಳುಹಿಸಲಾಗಿದೆ
DocType: Address,Kerala,ಕೇರಳ
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} ವರ್ಷ (ಗಳು) ಹಿಂದೆ
DocType: File,Lft,lft
DocType: User,Simultaneous Sessions,ಏಕಕಾಲಿಕ ಸೆಷನ್ಸ್
DocType: OAuth Client,Client Credentials,ಕ್ಲೈಂಟ್ ರುಜುವಾತುಗಳು
@@ -850,7 +853,7 @@ DocType: Email Queue,Unsubscribe Method,ಅನ್ಸಬ್ಸ್ಕ್ರೈ
DocType: GSuite Templates,Related DocType,ಸಂಬಂಧಿತ doctype
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,ವಿಷಯ ಸೇರಿಸಿ ಸಂಪಾದಿಸಿ
apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,ಭಾಷೆಗಳು ಆಯ್ಕೆ
apps/frappe/frappe/__init__.py +509,No permission for {0},ಯಾವುದೇ ಅನುಮತಿ {0}
apps/frappe/frappe/__init__.py +517,No permission for {0},ಯಾವುದೇ ಅನುಮತಿ {0}
DocType: DocType,Advanced,ಸುಧಾರಿತ
apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,API ಕೀ ತೋರುತ್ತದೆ ಅಥವಾ API ಸೀಕ್ರೆಟ್ ತಪ್ಪು !!!
apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},ರೆಫರೆನ್ಸ್: {0} {1}
@@ -861,6 +864,7 @@ apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. P
DocType: Email Account,Yahoo Mail,ಯಾಹೂ ಮೇಲ್
apps/frappe/frappe/limits.py +75,Your subscription will expire tomorrow.,ನಿಮ್ಮ ಚಂದಾದಾರಿಕೆಯನ್ನು ನಾಳೆ ಅಂತ್ಯಗೊಳ್ಳಲಿದೆ.
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +483,Saved!,ಉಳಿಸಿದ!
apps/frappe/frappe/public/js/frappe/form/control.js +729,{0} is not a valid hex color,{0} ಮಾನ್ಯವಾದ ಹೆಕ್ಸ್ ಬಣ್ಣವಲ್ಲ
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Madam,ಮ್ಯಾಡಮ್
apps/frappe/frappe/desk/page/activity/activity_row.html +21,Updated {0}: {1},ಅಪ್ಡೇಟ್ಗೊಳಿಸಲಾಗಿದೆ {0}: {1}
apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Master,ಯಜಮಾನ
@@ -888,7 +892,7 @@ DocType: Report,Disabled,ಅಂಗವಿಕಲ
DocType: Workflow State,eye-close,ಕಣ್ಣಿನ ಹತ್ತಿರ
DocType: OAuth Provider Settings,OAuth Provider Settings,OAuth ಅನ್ನು ಒದಗಿಸುವವರು ಸೆಟ್ಟಿಂಗ್ಗಳು
apps/frappe/frappe/config/setup.py +254,Applications,ಅಪ್ಲಿಕೇಷನ್ಸ್
apps/frappe/frappe/public/js/frappe/request.js +347,Report this issue,ಈ ಸಮಸ್ಯೆಯನ್ನು ವರದಿಮಾಡಿ
apps/frappe/frappe/public/js/frappe/request.js +349,Report this issue,ಈ ಸಮಸ್ಯೆಯನ್ನು ವರದಿಮಾಡಿ
apps/frappe/frappe/public/js/frappe/form/save.js +79,Name is required,ಹೆಸರು ಅಗತ್ಯವಿದೆ
DocType: Custom Script,Adds a custom script (client or server) to a DocType,ಒಂದು DOCTYPE ಕಸ್ಟಮ್ ಸ್ಕ್ರಿಪ್ಟ್ (ಗ್ರಾಹಕ ಅಥವಾ ಸರ್ವರ್) ಸೇರಿಸುತ್ತದೆ
DocType: Address,City/Town,ನಗರ / ಪಟ್ಟಣ
@@ -984,6 +988,7 @@ DocType: Email Account,No of emails remaining to be synced,ಉಳಿದ ಇಮ
apps/frappe/frappe/public/js/frappe/upload.js +203,Uploading,ಅಪ್ಲೋಡ್
apps/frappe/frappe/public/js/frappe/upload.js +203,Uploading,ಅಪ್ಲೋಡ್
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,ಹುದ್ದೆ ಮೊದಲು ಡಾಕ್ಯುಮೆಂಟ್ ಉಳಿಸಬಹುದು ದಯವಿಟ್ಟು
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +16,Click here to post bugs and suggestions,ದೋಷಗಳು ಮತ್ತು ಸಲಹೆಗಳನ್ನು ಪೋಸ್ಟ್ ಮಾಡಲು ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ
DocType: Website Settings,Address and other legal information you may want to put in the footer.,ವಿಳಾಸ ಮತ್ತು ನೀವು ಜೂನ್ ಅಡಿಟಿಪ್ಪಣಿ ಹಾಕಲು ಬಯಸುವ ಇತರ ಕಾನೂನು ಮಾಹಿತಿ .
DocType: Website Sidebar Item,Website Sidebar Item,ವೆಬ್ಸೈಟ್ ಪಾರ್ಶ್ವಪಟ್ಟಿ ಐಟಂ
apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +44,{0} records updated,{0} ದಾಖಲೆಗಳನ್ನು ಅಪ್ಡೇಟ್ಗೊಳಿಸಲಾಗಿದೆ
@@ -997,12 +1002,10 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,ಸ್ಪಷ
apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,ಪ್ರತಿ ದಿನ ಘಟನೆಗಳು ಅದೇ ದಿನ ಮುಗಿಸಲು ಮಾಡಬೇಕು.
DocType: Communication,User Tags,ಬಳಕೆದಾರ ಟ್ಯಾಗ್ಗಳು
apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,ಪಡೆಯಲಾಗುತ್ತಿದೆ ಚಿತ್ರಗಳು ..
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,ಸೆಟಪ್&gt; ಬಳಕೆದಾರ
DocType: Workflow State,download-alt,ಡೌನ್ಲೋಡ್ ವಯಸ್ಸಿನ
apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},ಅಪ್ಲಿಕೇಶನ್ ಡೌನ್ಲೋಡ್ {0}
DocType: Communication,Feedback Request,ಪ್ರತಿಕ್ರಿಯೆ ವಿನಂತಿ
apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,ನಂತರ ಜಾಗ ಕಾಣೆಯಾಗಿವೆ:
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Experimental Feature,ಪ್ರಾಯೋಗಿಕ ವೈಶಿಷ್ಟ್ಯವನ್ನು
apps/frappe/frappe/www/login.html +30,Sign in,ಸೈನ್ ಇನ್
DocType: Web Page,Main Section,ಮುಖ್ಯ ವಿಭಾಗ
DocType: Page,Icon,ಐಕಾನ್
@@ -1107,7 +1110,7 @@ DocType: Customize Form,Customize Form,ಫಾರ್ಮ್ ಕಸ್ಟಮೈ
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +104,Mandatory field: set role for,ಕಡ್ಡಾಯ: ಸೆಟ್ ಪಾತ್ರ
DocType: Currency,A symbol for this currency. For e.g. $,ಈ ಕರೆನ್ಸಿ ಒಂದು ಸಂಕೇತ. ಇ ಜಿ ಫಾರ್ $
apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,ಫ್ರಾಫೆ ಫ್ರೇಮ್ವರ್ಕ್
apps/frappe/frappe/model/naming.py +174,Name of {0} cannot be {1},{0} ನ ಹೆಸರು ಸಾಧ್ಯವಿಲ್ಲ {1}
apps/frappe/frappe/model/naming.py +180,Name of {0} cannot be {1},{0} ನ ಹೆಸರು ಸಾಧ್ಯವಿಲ್ಲ {1}
apps/frappe/frappe/config/setup.py +46,Show or hide modules globally.,ತೋರಿಸಿ ಅಥವಾ ಜಾಗತಿಕವಾಗಿ ಮಾಡ್ಯೂಲ್ ಮರೆಮಾಡಲು .
apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,Fromdate
apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,ಯಶಸ್ಸು
@@ -1129,7 +1132,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +308,Add A New
apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js +3,See on Website,ವೆಬ್ಸೈಟ್ ನೋಡಿ
DocType: Workflow Transition,Next State,ಮುಂದೆ ರಾಜ್ಯ
DocType: User,Block Modules,ಬ್ಲಾಕ್ ಘಟಕಗಳನ್ನು
apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,ಸುದೀರ್ಘವಾಗಿ ಮರಳುವಂತೆ {0} ಫಾರ್ &#39;{1}&#39; ನಲ್ಲಿ &#39;{2}&#39;; ಉದ್ದ ಹೊಂದಿಸಲಾಗುತ್ತಿದೆ {3} ಡೇಟಾ ಮೊಟಕುಗೊಳಿಸುವ ಕಾರಣವಾಗುತ್ತದೆ ಎಂದು.
apps/frappe/frappe/model/db_schema.py +142,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,ಸುದೀರ್ಘವಾಗಿ ಮರಳುವಂತೆ {0} ಫಾರ್ &#39;{1}&#39; ನಲ್ಲಿ &#39;{2}&#39;; ಉದ್ದ ಹೊಂದಿಸಲಾಗುತ್ತಿದೆ {3} ಡೇಟಾ ಮೊಟಕುಗೊಳಿಸುವ ಕಾರಣವಾಗುತ್ತದೆ ಎಂದು.
DocType: Print Format,Custom CSS,ಕಸ್ಟಮ್ CSS
apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,ಕಾಮೆಂಟ್ ಅನ್ನು ಸೇರಿಸಿ
apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},ನಿರ್ಲಕ್ಷಿಸಲಾಗಿದೆ: {0} ಗೆ {1}
@@ -1222,13 +1225,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,
DocType: Custom Role,Custom Role,ಕಸ್ಟಮ್ ಪಾತ್ರ
apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,ಮುಖಪುಟ / ಟೆಸ್ಟ್ ಫೋಲ್ಡರ್ 2
DocType: System Settings,Ignore User Permissions If Missing,ಮಿಸ್ಸಿಂಗ್ ವೇಳೆ ಬಳಕೆದಾರ ಅನುಮತಿಗಳು ನಿರ್ಲಕ್ಷಿಸು
apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,ಅಪ್ಲೋಡ್ ಮೊದಲು ಡಾಕ್ಯುಮೆಂಟ್ ಉಳಿಸಬಹುದು ದಯವಿಟ್ಟು.
apps/frappe/frappe/public/js/frappe/form/control.js +1075,Please save the document before uploading.,ಅಪ್ಲೋಡ್ ಮೊದಲು ಡಾಕ್ಯುಮೆಂಟ್ ಉಳಿಸಬಹುದು ದಯವಿಟ್ಟು.
apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,ನಿಮ್ಮ ಗುಪ್ತಪದವನ್ನು ನಮೂದಿಸಿ
DocType: Dropbox Settings,Dropbox Access Secret,ಡ್ರಾಪ್ಬಾಕ್ಸ್ ಪ್ರವೇಶ ಸೀಕ್ರೆಟ್
apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,ಮತ್ತೊಂದು ಕಾಮೆಂಟ್ ಸೇರಿಸಿ
apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,DOCTYPE ಸಂಪಾದಿಸಿ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,ಸುದ್ದಿಪತ್ರ ಚಂದಾದಾರಿಕೆ ರದ್ದು
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,Unsubscribed from Newsletter,ಸುದ್ದಿಪತ್ರ ಚಂದಾದಾರಿಕೆ ರದ್ದು
apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,ಒಂದು ವಿಭಾಗ ಬ್ರೇಕ್ ಮೊದಲು ಬರುವದು ಪಟ್ಟು
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Under Development,ಅಭಿವೃದ್ಧಿ ಅಡಿಯಲ್ಲಿ
apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,ಕೊನೆಯ ಮಾರ್ಪಾಡು ಮೂಲಕ
DocType: Workflow State,hand-down,ಕೈ ಕೆಳಗೆ
DocType: Address,GST State,ಜಿಎಸ್ಟಿ ರಾಜ್ಯ
@@ -1249,6 +1253,7 @@ DocType: Workflow State,Tag,ಡೇ
DocType: Custom Script,Script,ಸ್ಕ್ರಿಪ್ಟ್
apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,ನನ್ನ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು
DocType: Website Theme,Text Color,ಪಠ್ಯ ಬಣ್ಣ
apps/frappe/frappe/desk/page/backups/backups.py +72,Backup job is already queued. You will receive an email with the download link,ಬ್ಯಾಕಪ್ ಉದ್ಯೋಗ ಈಗಾಗಲೇ ಸರದಿಯಲ್ಲಿದೆ. ಡೌನ್ಲೋಡ್ ಲಿಂಕ್ನೊಂದಿಗೆ ನೀವು ಇಮೇಲ್ ಅನ್ನು ಸ್ವೀಕರಿಸುತ್ತೀರಿ
DocType: Desktop Icon,Force Show,ಫೋರ್ಸ್ ಶೋ
apps/frappe/frappe/auth.py +78,Invalid Request,ಅಮಾನ್ಯ ವಿನಂತಿ
apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,ಈ ಮಾದರಿಯ ಇನ್ಪುಟ್ ಹೊಂದಿಲ್ಲ
@@ -1360,7 +1365,7 @@ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for you
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,ಡಾಕ್ಸ್ ಹುಡುಕಾಟ
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,ಡಾಕ್ಸ್ ಹುಡುಕಾಟ
DocType: OAuth Authorization Code,Valid,ಮಾನ್ಯ
apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,ಲಿಂಕ್ ತೆರೆಯಿರಿ
apps/frappe/frappe/public/js/frappe/form/control.js +1354,Open Link,ಲಿಂಕ್ ತೆರೆಯಿರಿ
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,ನಿನ್ನ ಭಾಷೆ
apps/frappe/frappe/desk/form/load.py +46,Did not load,ಲೋಡ್ ಮಾಡಲಿಲ್ಲ
apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,ರೋ ಸೇರಿಸಿ
@@ -1378,6 +1383,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","ಕೆಲವು ದಾಖಲೆಗಳನ್ನು , ಒಂದು ಸರಕುಪಟ್ಟಿ ಹಾಗೆ ಒಮ್ಮೆ ಅಂತಿಮ ಬದಲಾಗಿದೆ ಮಾಡಬಾರದು . ಹುಡುಕುವ ದಾಖಲೆಗಳಲ್ಲಿ ಅಂತಿಮ ರಾಜ್ಯದ ಸಲ್ಲಿಸಲಾಗಿದೆ ಎಂದು ಕರೆಯಲಾಗುತ್ತದೆ . ನೀವು ಪಾತ್ರಗಳನ್ನು ಸಲ್ಲಿಸಬಹುದು ಯಾವ ನಿರ್ಬಂಧಿಸಬಹುದು."
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,ನೀವು ಈ ವರದಿಯನ್ನು ರಫ್ತು ಮಾಡಲು ಅನುಮತಿ ಇಲ್ಲ
apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 ಐಟಂ ಆಯ್ಕೆಮಾಡಲಾಗಿದೆ
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,<p>No results found for '</p>,<p> 'ಫಲಿತಾಂಶಗಳಿಗಾಗಿ ಯಾವುದೇ ಫಲಿತಾಂಶಗಳು ಕಂಡುಬಂದಿಲ್ಲ </p>
DocType: Newsletter,Test Email Address,ಟೆಸ್ಟ್ ಇಮೇಲ್ ವಿಳಾಸ
DocType: ToDo,Sender,ಪ್ರೇಷಕ
DocType: GSuite Settings,Google Apps Script,Google Apps ಸ್ಕ್ರಿಪ್ಟ್
@@ -1486,7 +1492,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Ple
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,ಲೋಡ್ ವರದಿ
apps/frappe/frappe/limits.py +72,Your subscription will expire today.,ನಿಮ್ಮ ಚಂದಾದಾರಿಕೆಯನ್ನು ಇಂದು ಅಂತ್ಯಗೊಳ್ಳಲಿದೆ.
DocType: Page,Standard,ಸ್ಟ್ಯಾಂಡರ್ಡ್
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,ಫೈಲ್ ಲಗತ್ತಿಸಿ
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +50,Attach File,ಫೈಲ್ ಲಗತ್ತಿಸಿ
apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,ಪಾಸ್ವರ್ಡ್ ಅಪ್ಡೇಟ್ ಅಧಿಸೂಚನೆ
apps/frappe/frappe/desk/page/backups/backups.html +13,Size,ಗಾತ್ರ
apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,ಕಂಪ್ಲೀಟ್ ನಿಯೋಜನೆ
@@ -1516,7 +1522,7 @@ apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversat
apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},ಆಯ್ಕೆಗಳು ಲಿಂಕ್ ಕ್ಷೇತ್ರದಲ್ಲಿ ಸೆಟ್ ಅಲ್ಲ {0}
DocType: Customize Form,"Must be of type ""Attach Image""",ಮಾದರಿ ಇರಬೇಕು &quot;ಚಿತ್ರ ಲಗತ್ತಿಸಿ&quot;
apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,ಆಯ್ಕೆ ಮಾಡದ ಎಲ್ಲಾ
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},ನೀವು ಕ್ಷೇತ್ರಕ್ಕೆ ಹೊಂದಿಸದೆ ಅಲ್ಲ &#39;ಓದಲು ಮಾತ್ರ&#39; ಮಾಡಬಹುದು {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +199,You cannot unset 'Read Only' for field {0},ನೀವು ಕ್ಷೇತ್ರಕ್ಕೆ ಹೊಂದಿಸದೆ ಅಲ್ಲ &#39;ಓದಲು ಮಾತ್ರ&#39; ಮಾಡಬಹುದು {0}
DocType: Auto Email Report,Zero means send records updated at anytime,ಶೂನ್ಯ ದಾಖಲೆಗಳನ್ನು ಯಾವ ಸಮಯದಲ್ಲಾದರೂ ಅಪ್ಡೇಟ್ಗೊಳಿಸಲಾಗಿದೆ ಕಳುಹಿಸಿ ಅರ್ಥ
DocType: Auto Email Report,Zero means send records updated at anytime,ಶೂನ್ಯ ದಾಖಲೆಗಳನ್ನು ಯಾವ ಸಮಯದಲ್ಲಾದರೂ ಅಪ್ಡೇಟ್ಗೊಳಿಸಲಾಗಿದೆ ಕಳುಹಿಸಿ ಅರ್ಥ
apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +22,Complete Setup,ಕಂಪ್ಲೀಟ್ ಸೆಟಪ್
@@ -1531,7 +1537,7 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +98,Week,ವಾರ
DocType: Social Login Keys,Google,ಗೂಗಲ್
DocType: Email Domain,Example Email Address,ಉದಾಹರಣೆಗೆ ಇಮೇಲ್ ವಿಳಾಸ
apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,ಅತ್ಯಂತ ಉಪಯೋಗಿಸಿದ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Unsubscribe from Newsletter,ಸುದ್ದಿಪತ್ರ ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್ ಮಾಡಿ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe from Newsletter,ಸುದ್ದಿಪತ್ರ ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್ ಮಾಡಿ
apps/frappe/frappe/www/login.html +101,Forgot Password,ಪಾಸ್ವರ್ಡ್ ಮರೆತಿರಾ
DocType: Dropbox Settings,Backup Frequency,ಬ್ಯಾಕಪ್ ಆವರ್ತನ
DocType: Workflow State,Inverse,ವಿಲೋಮ
@@ -1612,10 +1618,11 @@ apps/frappe/frappe/config/setup.py +209,"Actions for workflow (e.g. Approve, Can
DocType: Workflow State,flag,ಧ್ವಜ
apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +57,Feedback Request is already sent to user,ಪ್ರತಿಕ್ರಿಯೆ ವಿನಂತಿ ಈಗಾಗಲೇ ಬಳಕೆದಾರ ಕಳುಹಿಸಲಾಗುತ್ತದೆ
DocType: Web Page,Text Align,ಪಠ್ಯ align
apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},ಹೆಸರು ವಿಶೇಷ ಅಕ್ಷರಗಳನ್ನು ಹೊಂದುವಂತಿಲ್ಲ {0}
apps/frappe/frappe/model/naming.py +185,Name cannot contain special characters like {0},ಹೆಸರು ವಿಶೇಷ ಅಕ್ಷರಗಳನ್ನು ಹೊಂದುವಂತಿಲ್ಲ {0}
DocType: Contact Us Settings,Forward To Email Address,ಫಾರ್ವರ್ಡ್ ಇಮೇಲ್ ವಿಳಾಸಕ್ಕೆ
apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,ಎಲ್ಲಾ ಡೇಟಾವನ್ನು ತೋರಿಸಿ
apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,ಶೀರ್ಷಿಕೆ ಕ್ಷೇತ್ರದಲ್ಲಿ ಮಾನ್ಯ ಕ್ಷೇತ್ರ ಹೆಸರು ಇರಬೇಕು
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,ಇಮೇಲ್ ಖಾತೆ ಸೆಟಪ್ ಆಗಿಲ್ಲ. ದಯವಿಟ್ಟು ಸೆಟಪ್&gt; ಇಮೇಲ್&gt; ಇಮೇಲ್ ಖಾತೆಯಿಂದ ಹೊಸ ಇಮೇಲ್ ಖಾತೆಯನ್ನು ರಚಿಸಿ
apps/frappe/frappe/config/core.py +7,Documents,ಡಾಕ್ಯುಮೆಂಟ್ಸ್
DocType: Email Flag Queue,Is Completed,ಮುಗಿದ
apps/frappe/frappe/www/me.html +22,Edit Profile,ಪ್ರೊಫೈಲ್ಸಂಪಾದಿಸು
@@ -1625,8 +1632,8 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi
myfield
eval:doc.myfield=='My Value'
eval:doc.age&gt;18",ಇಲ್ಲಿ ವ್ಯಾಖ್ಯಾನಿಸಲಾಗಿದೆ FIELDNAME ಮೌಲ್ಯವನ್ನು ಹೊಂದಿದೆ ಮಾತ್ರ ಅಥವಾ ನಿಯಮಗಳನ್ನು ನೈಜ (ಉದಾಹರಣೆಗಳು) ಈ ಕ್ಷೇತ್ರದಲ್ಲಿ ಕಾಣಿಸುತ್ತದೆ: myfield eval: doc.myfield == &#39;ನನ್ನ ಮೌಲ್ಯ&#39; eval: doc.age&gt; 18
apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,ಇಂದು
apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,ಇಂದು
apps/frappe/frappe/public/js/frappe/form/control.js +764,Today,ಇಂದು
apps/frappe/frappe/public/js/frappe/form/control.js +764,Today,ಇಂದು
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","ನೀವು ಈ ಹೊಂದಿರಬೇಕು, ಬಳಕೆದಾರರು ಮಾತ್ರ ಸಾಧ್ಯವಾಗುತ್ತದೆ ಪ್ರವೇಶ ದಾಖಲೆಗಳನ್ನು ಲಿಂಕ್ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ ಅಲ್ಲಿ ( ಉದಾ. ಬ್ಲಾಗ್ ಪೋಸ್ಟ್ ) ( ಉದಾ. ಬ್ಲಾಗರ್ ) ಇರುತ್ತದೆ ."
DocType: Error Log,Log of Scheduler Errors,ಶೆಡ್ಯೂಲರ ತಪ್ಪುಗಳಿಗೆ ಲಾಗ್
DocType: User,Bio,ಬಯೋ
@@ -1685,7 +1692,7 @@ DocType: Print Format,Js,ಉಪಯೋಗಿಸಿದ
apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,ಆಯ್ಕೆ ಪ್ರಿಂಟ್ ಫಾರ್ಮ್ಯಾಟ್
apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,ಸಣ್ಣ ಕೀಬೋರ್ಡ್ ಮಾದರಿಗಳನ್ನು ಊಹಿಸುವುದು ಸುಲಭ
DocType: Portal Settings,Portal Menu,ಪೋರ್ಟಲ್ ಮೆನು
apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,{0} ಉದ್ದ 1 ಮತ್ತು 1000 ನಡುವೆ ಇರಬೇಕು
apps/frappe/frappe/model/db_schema.py +115,Length of {0} should be between 1 and 1000,{0} ಉದ್ದ 1 ಮತ್ತು 1000 ನಡುವೆ ಇರಬೇಕು
apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,ಏನು ಹುಡುಕು
DocType: DocField,Print Hide,ಪ್ರಿಂಟ್ ಅಡಗಿಸು
apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,ಮೌಲ್ಯ ಯನ್ನು
@@ -1739,8 +1746,7 @@ apps/frappe/frappe/model/document.py +564,Cannot change docstatus from 0 to 2,0
DocType: User Permission for Page and Report,Roles Permission,ಪಾತ್ರಗಳು ಅನುಮತಿ
apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,ಅಪ್ಡೇಟ್
DocType: Error Snapshot,Snapshot View,ಸ್ನ್ಯಾಪ್ಶಾಟ್ ವೀಕ್ಷಿಸಿ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,ಕಳುಹಿಸುವ ಮೊದಲು ಸುದ್ದಿಪತ್ರವನ್ನು ಉಳಿಸಲು ದಯವಿಟ್ಟು
apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,&gt; {0} year(s) ago,&gt; {0} ವರ್ಷ (ಗಳ) ಹಿಂದೆ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +101,Please save the Newsletter before sending,ಕಳುಹಿಸುವ ಮೊದಲು ಸುದ್ದಿಪತ್ರವನ್ನು ಉಳಿಸಲು ದಯವಿಟ್ಟು
apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},ಆಯ್ಕೆಗಳು {0} ಸತತವಾಗಿ {1} ಕ್ಷೇತ್ರದಲ್ಲಿ ಒಂದು ಮಾನ್ಯವಾದ DOCTYPE ಇರಬೇಕು
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,ಪ್ರಾಪರ್ಟೀಸ್ ಸಂಪಾದಿಸಿ
DocType: Patch Log,List of patches executed,ತೇಪೆ ಪಟ್ಟಿ ಮರಣದಂಡನೆ
@@ -1758,7 +1764,7 @@ apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,ಪಾಸ್
DocType: Workflow State,trash,ಕಸ
DocType: System Settings,Older backups will be automatically deleted,ಹಳೆಯ ಬ್ಯಾಕ್ಅಪ್ ಅಳಿಸಲ್ಪಡುತ್ತದೆ
DocType: Event,Leave blank to repeat always,ಯಾವಾಗಲೂ ಪುನರಾವರ್ತಿಸಲು ಖಾಲಿ ಬಿಡಿ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +192,Confirmed,ದೃಢಪಡಿಸಿದರು
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,Confirmed,ದೃಢಪಡಿಸಿದರು
DocType: Event,Ends on,ಮೇಲೆ ಎಂಡ್ಸ್
DocType: Payment Gateway,Gateway,ಗೇಟ್ವೇ
apps/frappe/frappe/public/js/frappe/form/linked_with.js +116,Not enough permission to see links,ಕೊಂಡಿಗಳು ನೋಡಲು ಸಾಕಷ್ಟು ಅನುಮತಿಯನ್ನು
@@ -1790,7 +1796,6 @@ DocType: Contact,Purchase Manager,ಖರೀದಿ ಮ್ಯಾನೇಜರ
DocType: Custom Script,Sample,ಮಾದರಿ
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,ವರ್ಗಿಕರಿಸದ ಟ್ಯಾಗ್ಗಳು
DocType: Event,Every Week,ಪ್ರತಿ ವಾರ
apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup &gt; Email &gt; Email Account,ಇಮೇಲ್ ಖಾತೆ ಹೊಂದಾಣಿಕೆ. ದಯವಿಟ್ಟು ಸೆಟಪ್&gt; ಇಮೇಲ್&gt; ಇಮೇಲ್ ಖಾತೆಯಿಂದ ಹೊಸ ಇಮೇಲ್ ಖಾತೆ ರಚಿಸಲು
apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,ನಿಮ್ಮ ಬಳಕೆಯ ಪರಿಶೀಲಿಸಿ ಅಥವಾ ಹೆಚ್ಚಿನ ಮೊತ್ತದ ಯೋಜನೆಯನ್ನು ಅಪ್ಗ್ರೇಡ್ ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ
DocType: Custom Field,Is Mandatory Field,ಕಡ್ಡಾಯ ಕ್ಷೇತ್ರವಾಗಿದೆ
DocType: User,Website User,ವೆಬ್ಸೈಟ್ ಬಳಕೆದಾರ
@@ -1798,7 +1803,7 @@ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +10,Not equals,
DocType: Integration Request,Integration Request Service,ಇಂಟಿಗ್ರೇಷನ್ ವಿನಂತಿ ಸೇವೆ
DocType: Website Script,Script to attach to all web pages.,ಸ್ಕ್ರಿಪ್ಟ್ ಎಲ್ಲ ವೆಬ್ ಪುಟಗಳು ಅಂಟಿಕೊಳ್ಳುವುದು.
DocType: Web Form,Allow Multiple,ಬಹು ಅವಕಾಶ
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +40,Assign,ನಿಗದಿಪಡಿಸಿ
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +44,Assign,ನಿಗದಿಪಡಿಸಿ
apps/frappe/frappe/config/setup.py +102,Import / Export Data from .csv files.,. CSV ಫೈಲುಗಳಿಂದ ಆಮದು / ರಫ್ತು ಡೇಟಾವನ್ನು .
DocType: Auto Email Report,Only Send Records Updated in Last X Hours,ಮಾತ್ರ ರೆಕಾರ್ಡ್ಸ್ ಕೊನೆಯ ಎಕ್ಸ್ ಗಂಟೆಗಳ ನವೀಕರಿಸಲಾಗಿದೆ ಕಳುಹಿಸಿ
DocType: Auto Email Report,Only Send Records Updated in Last X Hours,ಮಾತ್ರ ರೆಕಾರ್ಡ್ಸ್ ಕೊನೆಯ ಎಕ್ಸ್ ಗಂಟೆಗಳ ನವೀಕರಿಸಲಾಗಿದೆ ಕಳುಹಿಸಿ
@@ -1880,7 +1885,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,ಉಳಿ
apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,ಲಗತ್ತಿಸುತ್ತಿದ್ದೇನೆ ಮೊದಲು ಉಳಿಸಲು ದಯವಿಟ್ಟು.
apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),ಸೇರಿಸಲಾಗಿದೆ {0} ({1})
apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},ಡೀಫಾಲ್ಟ್ ಥೀಮ್ ಹೊಂದಿಸಿದ {0}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype ಗೆ {0} ನಿಂದ ಬದಲಾವಣೆ ಸಾಧ್ಯವಿಲ್ಲ {1} ಸತತವಾಗಿ {2}
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +325,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype ಗೆ {0} ನಿಂದ ಬದಲಾವಣೆ ಸಾಧ್ಯವಿಲ್ಲ {1} ಸತತವಾಗಿ {2}
apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,ಅನುಮತಿಗಳನ್ನು
DocType: Help Article,Intermediate,ಮಧ್ಯಂತರ
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,ಓದಬಹುದು
@@ -1896,9 +1901,9 @@ DocType: Event,Starts on,ರಂದು ಪ್ರಾರಂಭವಾಗುತ್ತ
DocType: System Settings,System Settings,ಸಿಸ್ಟಂ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು
apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,ಸೆಷನ್ ಪ್ರಾರಂಭಿಸಿ ವಿಫಲವಾಗಿದೆ
apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,ಸೆಷನ್ ಪ್ರಾರಂಭಿಸಿ ವಿಫಲವಾಗಿದೆ
apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},ಈ ಇಮೇಲ್ {0} ಕಳುಹಿಸಲಾಗಿದೆ ಮತ್ತು ನಕಲು ಮಾಡಲಾಯಿತು {1}
apps/frappe/frappe/email/queue.py +470,This email was sent to {0} and copied to {1},ಈ ಇಮೇಲ್ {0} ಕಳುಹಿಸಲಾಗಿದೆ ಮತ್ತು ನಕಲು ಮಾಡಲಾಯಿತು {1}
DocType: Workflow State,th,ನೇ
apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},ಹೊಸ {0} ರಚಿಸಿ
apps/frappe/frappe/public/js/frappe/form/control.js +1517,Create a new {0},ಹೊಸ {0} ರಚಿಸಿ
DocType: Email Rule,Is Spam,ಸ್ಪಾಮ್ ಈಸ್
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},ವರದಿ {0}
apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},ಓಪನ್ {0}
@@ -1910,12 +1915,14 @@ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon a
apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,ನಕಲು
DocType: Newsletter,Create and Send Newsletters,ರಚಿಸಿ ಮತ್ತು ಕಳುಹಿಸಿ ಸುದ್ದಿಪತ್ರಗಳು
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date must be before To Date,ದಿನಾಂಕ ಇಲ್ಲಿಯವರೆಗೆ ಮೊದಲು ಇರಬೇಕು
DocType: Address,Andaman and Nicobar Islands,ಅಂಡಮಾನ್ ಮತ್ತು ನಿಕೋಬಾರ್ ದ್ವೀಪಗಳು
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +216,GSuite Document,GSuite ಡಾಕ್ಯುಮೆಂಟ್
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +29,Please specify which value field must be checked,ಮೌಲ್ಯದ ಕ್ಷೇತ್ರದಲ್ಲಿ ಪರೀಕ್ಷಿಸಬೇಕು ನಿರ್ದಿಷ್ಟಪಡಿಸಲು ದಯವಿಟ್ಟು
apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"""Parent"" signifies the parent table in which this row must be added","""ಪೋಷಕ"" ಈ ಸಾಲಿನಲ್ಲಿ ಇದರಲ್ಲಿ ಪೋಷಕ ಟೇಬಲ್ ಸೂಚಿಸುತ್ತದೆ"
DocType: Website Theme,Apply Style,ಶೈಲಿ ಅನ್ವಯಿಸು
DocType: Feedback Request,Feedback Rating,ಪ್ರತಿಕ್ರಿಯೆ ರೇಟಿಂಗ್
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared With,ಹಂಚಿಕೊಂಡಿದ್ದಾರೆ
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +63,Shared With,ಹಂಚಿಕೊಂಡಿದ್ದಾರೆ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,ಸೆಟಪ್&gt; ಬಳಕೆದಾರ ಅನುಮತಿಗಳು ನಿರ್ವಾಹಕ
DocType: Help Category,Help Articles,ಲೇಖನಗಳು ಸಹಾಯ
,Modules Setup,ಮಾಡ್ಯೂಲ್ಗಳು ಸೆಟಪ್
apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,ಟೈಪ್:
@@ -1947,7 +1954,7 @@ DocType: OAuth Client,App Client ID,ಅಪ್ಲಿಕೇಶನ್ ಕ್ಲ
DocType: Kanban Board,Kanban Board Name,ಕನ್ಬನ್ ಬೋರ್ಡ್ ಹೆಸರು
DocType: Email Alert Recipient,"Expression, Optional","ಅಭಿವ್ಯಕ್ತಿ, ಐಚ್ಛಿಕ"
DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,ನಕಲಿಸಿ ಮತ್ತು script.google.com ನಿಮ್ಮ ಯೋಜನೆಯಲ್ಲಿ ಈ ಕೋಡ್ ಮತ್ತು ಖಾಲಿ Code.gs ಅಂಟಿಸಿ
apps/frappe/frappe/email/queue.py +456,This email was sent to {0},ಈ ಇಮೇಲ್ ಕಳುಹಿಸಲಾಗಿದೆ {0}
apps/frappe/frappe/email/queue.py +472,This email was sent to {0},ಈ ಇಮೇಲ್ ಕಳುಹಿಸಲಾಗಿದೆ {0}
DocType: DocField,Remember Last Selected Value,ಕೊನೆಯ ಆಯ್ದ ಮೌಲ್ಯ
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +334,Please select Document Type,ದಯವಿಟ್ಟು ಆಯ್ಕೆ ಡಾಕ್ಯುಮೆಂಟ್ ಕೌಟುಂಬಿಕತೆ
apps/frappe/frappe/core/page/user_permissions/user_permissions.js +334,Please select Document Type,ದಯವಿಟ್ಟು ಆಯ್ಕೆ ಡಾಕ್ಯುಮೆಂಟ್ ಕೌಟುಂಬಿಕತೆ
@@ -1963,6 +1970,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,ಆ
DocType: Feedback Trigger,Email Field,ಇಮೇಲ್ ಫೀಲ್ಡ್
apps/frappe/frappe/www/update-password.html +59,New Password Required.,ಹೊಸ ಪಾಸ್ವರ್ಡ್ ಅಗತ್ಯವಿದೆ.
apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} ಈ ಡಾಕ್ಯುಮೆಂಟ್ ಹಂಚಿಕೆಯ {1}
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup &gt; User,ಸೆಟಪ್&gt; ಬಳಕೆದಾರ
DocType: Website Settings,Brand Image,ಬ್ರಾಂಡ್ ಇಮೇಜ್
DocType: Print Settings,A4,A4 ಕಾರು
apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","ಉನ್ನತ ಸಂಚರಣೆ ಬಾರ್ , ಅಡಿಟಿಪ್ಪಣಿ ಮತ್ತು ಲಾಂಛನವನ್ನು ಸೆಟಪ್ ."
@@ -2031,8 +2039,8 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for
DocType: Auto Email Report,Filter Data,ಫಿಲ್ಟರ್ ಡೇಟಾ
DocType: Auto Email Report,Filter Data,ಫಿಲ್ಟರ್ ಡೇಟಾ
apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,ಟ್ಯಾಗ್ ಸೇರಿಸಿ
apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,ಮೊದಲ ಒಂದು ಕಡತ ಲಗತ್ತಿಸಬಹುದು ದಯವಿಟ್ಟು .
apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","ಹೆಸರು ಹೊಂದಿಸುವ ಕೆಲವು ದೋಷಗಳಿವೆ, ನಿರ್ವಾಹಕರನ್ನು ಸಂಪರ್ಕಿಸಿ"
apps/frappe/frappe/public/js/frappe/form/control.js +1335,Please attach a file first.,ಮೊದಲ ಒಂದು ಕಡತ ಲಗತ್ತಿಸಬಹುದು ದಯವಿಟ್ಟು .
apps/frappe/frappe/model/naming.py +174,"There were some errors setting the name, please contact the administrator","ಹೆಸರು ಹೊಂದಿಸುವ ಕೆಲವು ದೋಷಗಳಿವೆ, ನಿರ್ವಾಹಕರನ್ನು ಸಂಪರ್ಕಿಸಿ"
apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,ಒಳಬರುವ ಇಮೇಲ್ ಖಾತೆಯನ್ನು ಸರಿಯಾಗಿಲ್ಲ
apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \
Please enter a valid email address so that we can get back.",ನೀವು ಬರೆದಿರುವಿರಿ ಬದಲಿಗೆ ನಿಮ್ಮ ಹೆಸರು ನಿಮ್ಮ ಇಮೇಲ್ ತೋರುತ್ತದೆ. \ ನಾವು ಮತ್ತೆ ಪಡೆಯುವುದಕ್ಕಾಗಿ ದಯವಿಟ್ಟು ಮಾನ್ಯ ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ನಮೂದಿಸಿ.
@@ -2084,7 +2092,6 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,
DocType: Custom DocPerm,Create,ರಚಿಸಿ
apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},ಅಮಾನ್ಯವಾದ ಫಿಲ್ಟರ್ : {0}
DocType: Email Account,no failed attempts,ಯಾವುದೇ ಪ್ರಯತ್ನಗಳು ವಿಫಲವಾದ
apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,ಡೀಫಾಲ್ಟ್ ವಿಳಾಸ ಟೆಂಪ್ಲೇಟು ಕಂಡುಬಂದಿಲ್ಲ. ದಯವಿಟ್ಟು ಸೆಟಪ್&gt; ಮುದ್ರಣ ಮತ್ತು ಬ್ರ್ಯಾಂಡಿಂಗ್&gt; ವಿಳಾಸ ಟೆಂಪ್ಲೇಟು ಒಂದು ಹೊಸದನ್ನು ರಚಿಸಿ.
DocType: GSuite Settings,refresh_token,refresh_token
DocType: Dropbox Settings,App Access Key,ಅಪ್ಲಿಕೇಶನ್ ಪ್ರವೇಶ ಕೀ
DocType: OAuth Bearer Token,Access Token,ಪ್ರವೇಶ ಟೋಕನ್
@@ -2110,6 +2117,7 @@ apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl +
apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},ಮಾಡಿ ಹೊಸ {0}
apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,ಹೊಸ ಇಮೇಲ್ ಖಾತೆ
apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +28,Document Restored,ಡಾಕ್ಯುಮೆಂಟ್ ಮರುಸ್ಥಾಪಿಸಲಾಯಿತು
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +203,You can't set 'Options' for field {0},ನೀವು ಕ್ಷೇತ್ರಕ್ಕಾಗಿ &#39;ಆಯ್ಕೆಗಳು&#39; ಹೊಂದಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ {0}
apps/frappe/frappe/core/page/usage_info/usage_info.html +86,Size (MB),ಗಾತ್ರ (MB)
DocType: Help Article,Author,ಲೇಖಕ
apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +10,Resume Sending,ಪುನರಾರಂಭಿಸು ಕಳುಹಿಸಲಾಗುತ್ತಿದೆ
@@ -2119,7 +2127,7 @@ DocType: Print Settings,Monochrome,ಏಕವರ್ಣದ
DocType: Address,Purchase User,ಖರೀದಿ ಬಳಕೆದಾರ
DocType: Workflow,"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.","ಇತ್ಯಾದಿ ಈ ದಾಖಲೆಯಂತೆ "" ಓಪನ್ "" ಸೈನ್ ಇರುವಂತಹುದು ವಿವಿಧ "" ಸ್ಟೇಟ್ಸ್ "" , "" ಅನುಮೋದನೆ ಬಾಕಿ "" ,"
apps/frappe/frappe/utils/verified_command.py +43,This link is invalid or expired. Please make sure you have pasted correctly.,ಅಮಾನ್ಯ ಲಿಂಕ್ ಅಥವಾ ಅವಧಿ ಇದೆ. ನೀವು ಸರಿಯಾಗಿ ಅಂಟಿಸಲಾಗಿದೆ ದಯವಿಟ್ಟು ಖಚಿತಪಡಿಸಿ.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> ಯಶಸ್ವಿಯಾಗಿ ಈ ಮೇಲಿಂಗ್ ಪಟ್ಟಿ ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್ ಮಾಡಲಾಗಿದೆ.
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +136,<b>{0}</b> has been successfully unsubscribed from this mailing list.,<b>{0}</b> ಯಶಸ್ವಿಯಾಗಿ ಈ ಮೇಲಿಂಗ್ ಪಟ್ಟಿ ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್ ಮಾಡಲಾಗಿದೆ.
DocType: Web Page,Slideshow,ಸ್ಲೈಡ್ಶೋ
apps/frappe/frappe/contacts/doctype/address_template/address_template.py +31,Default Address Template cannot be deleted,ಡೀಫಾಲ್ಟ್ ವಿಳಾಸ ಟೆಂಪ್ಲೇಟು ಅಳಿಸಲಾಗಿಲ್ಲ
DocType: Contact,Maintenance Manager,ನಿರ್ವಹಣೆ ಮ್ಯಾನೇಜರ್
@@ -2142,7 +2150,7 @@ DocType: System Settings,Apply Strict User Permissions,ಕಟ್ಟುನಿಟ
DocType: DocField,Allow Bulk Edit,ಒಟ್ಟು ಸಂಪಾದನೆ ಅನುಮತಿಸಿ
DocType: DocField,Allow Bulk Edit,ಒಟ್ಟು ಸಂಪಾದನೆ ಅನುಮತಿಸಿ
DocType: Blog Post,Blog Post,ಬ್ಲಾಗ್ ಪೋಸ್ಟ್
apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,ವಿಸ್ತೃತ ಹುಡುಕಾಟ
apps/frappe/frappe/public/js/frappe/form/control.js +1527,Advanced Search,ವಿಸ್ತೃತ ಹುಡುಕಾಟ
apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,ಪಾಸ್ವರ್ಡ್ ರೀಸೆಟ್ ಸೂಚನೆಗಳನ್ನು ನಿಮ್ಮ ಇಮೇಲ್ ಕಳುಹಿಸಲಾಗಿದೆ
apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \
higher levels for field level permissions.","ಹಂತ 0 ಕ್ಷೇತ್ರದಲ್ಲಿ ಹಂತದ ಅನುಮತಿಗಳನ್ನು ಡಾಕ್ಯುಮೆಂಟ್ ಹಂತದ ಅನುಮತಿಗಳನ್ನು, \ ಹೆಚ್ಚಿನ ಮಟ್ಟದ ಹೊಂದಿದೆ."
@@ -2169,13 +2177,13 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,ಹುಡುಕುತ್ತಿರುವಿರೆ
DocType: Currency,Fraction,ಭಿನ್ನರಾಶಿ
DocType: LDAP Settings,LDAP First Name Field,LDAP ಅನ್ನು ಮೊದಲ ಹೆಸರು ಫೀಲ್ಡ್
apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಲಗತ್ತುಗಳನ್ನು ಆಯ್ಕೆಮಾಡಿ
apps/frappe/frappe/public/js/frappe/form/control.js +1085,Select from existing attachments,ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಲಗತ್ತುಗಳನ್ನು ಆಯ್ಕೆಮಾಡಿ
DocType: Custom Field,Field Description,ಫೀಲ್ಡ್ ವಿವರಣೆ
apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,ಪ್ರಾಂಪ್ಟಿನಲ್ಲಿ ಮೂಲಕ ಸೆಟ್ ಹೆಸರು
apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,ಇಮೇಲ್ ಇನ್ಬಾಕ್ಸ್
DocType: Auto Email Report,Filters Display,ಶೋಧಕಗಳು ಪ್ರದರ್ಶನ
DocType: Website Theme,Top Bar Color,ಟಾಪ್ ಬಾರ್ ಬಣ್ಣ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Do you want to unsubscribe from this mailing list?,ಈ ಮೇಲಿಂಗ್ ಪಟ್ಟಿಯಿಂದ ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್ ಆಗಲು ಬಯಸುವಿರಾ?
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Do you want to unsubscribe from this mailing list?,ಈ ಮೇಲಿಂಗ್ ಪಟ್ಟಿಯಿಂದ ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್ ಆಗಲು ಬಯಸುವಿರಾ?
DocType: Address,Plant,ಗಿಡ
apps/frappe/frappe/core/doctype/communication/communication.js +65,Reply All,ಎಲ್ಲರಿಗೂ ಪ್ರತ್ಯುತ್ತರ
DocType: DocType,Setup,ಸೆಟಪ್
@@ -2218,7 +2226,7 @@ DocType: User,Send Notifications for Transactions I Follow,ನಾನು ಅನ
apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : ಬರೆಯಿರಿ ಇಲ್ಲದೆ ಮಾಡಿರಿ , ರದ್ದು , ಸಲ್ಲಿಸಿ ಹೊಂದಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ"
apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,ನೀವು ಬಾಂಧವ್ಯ ಅಳಿಸಲು ಬಯಸುತ್ತೀರೆ?
apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} <a href=""#Form/{0}/{1}"">{1}</a> is linked with {2} <a href=""#Form/{2}/{3}"">{3}</a>","ಅಳಿಸಲು ಅಥವಾ {0} ಏಕೆಂದರೆ ರದ್ದು ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ <a href=""#Form/{0}/{1}"">{1}</a> ಸಂಬಂಧ ಇದೆ {2} <a href=""#Form/{2}/{3}"">{3}</a>"
apps/frappe/frappe/__init__.py +1062,Thank you,ಧನ್ಯವಾದಗಳು
apps/frappe/frappe/__init__.py +1070,Thank you,ಧನ್ಯವಾದಗಳು
apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,ಉಳಿಸಲಾಗುತ್ತಿದೆ
DocType: Print Settings,Print Style Preview,ಮುದ್ರಣ ಶೈಲಿ ಮುನ್ನೋಟ
apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder
@@ -2233,7 +2241,7 @@ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,ಸ್
apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,SR ಯಾವುದೇ
,Role Permissions Manager,ಪಾತ್ರ ಅನುಮತಿಗಳು ಮ್ಯಾನೇಜರ್
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,ಹೊಸ ಪ್ರಿಂಟ್ ಸ್ವರೂಪ ಹೆಸರು
apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,ತೆರವುಗೊಳಿಸಿ ಲಗತ್ತು
apps/frappe/frappe/public/js/frappe/form/control.js +1087,Clear Attachment,ತೆರವುಗೊಳಿಸಿ ಲಗತ್ತು
apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,ಕಡ್ಡಾಯ:
,User Permissions Manager,ಬಳಕೆದಾರ ಅನುಮತಿಗಳು ಮ್ಯಾನೇಜರ್
DocType: Property Setter,New value to be set,ಸೆಟ್ ಹೊಸ ಮೌಲ್ಯ
@@ -2259,7 +2267,7 @@ apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment C
apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,ದೋಷ ಲಾಗ್ ತೆರವುಗೊಳಿಸಿ
apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,ರೇಟಿಂಗ್ ಆಯ್ಕೆಮಾಡಿ
DocType: Email Account,Notify if unreplied for (in mins),(ನಿಮಿಷಗಳು) ಕಾಲ unreplied ವೇಳೆ ಸೂಚಿಸಿ
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 ದಿನಗಳ ಹಿಂದೆ
apps/frappe/frappe/public/js/frappe/list/list_renderer.js +501,2 days ago,2 ದಿನಗಳ ಹಿಂದೆ
apps/frappe/frappe/config/website.py +47,Categorize blog posts.,ಬ್ಲಾಗ್ ಪೋಸ್ಟ್ಗಳನ್ನು ವರ್ಗೀಕರಿಸಲು.
DocType: Workflow State,Time,ಟೈಮ್
DocType: DocField,Attach,ಲಗತ್ತಿಸಿ
@@ -2275,6 +2283,7 @@ apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,ಬ್
DocType: GSuite Templates,Template Name,ಟೆಂಪ್ಲೇಟ್ ಹೆಸರು
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,ದಸ್ತಾವೇಜಿನ ಹೊಸ ರೀತಿಯ
DocType: Custom DocPerm,Read,ಓದು
DocType: Address,Chhattisgarh,ಛತ್ತೀಸ್ಗಢ
DocType: Role Permission for Page and Report,Role Permission for Page and Report,ಪುಟ ಮತ್ತು ವರದಿಗಾಗಿ ಪಾತ್ರ ಅನುಮತಿ
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,ಮೌಲ್ಯ align
apps/frappe/frappe/www/update-password.html +14,Old Password,ಹಳೆಯ ಪಾಸ್ವರ್ಡ್
@@ -2322,7 +2331,7 @@ apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your ema
can get back to you. Thanks!","ನಾವು ನೀವು ಮರಳಿ ಪಡೆಯಬಹುದು \
ಆದ್ದರಿಂದ ನಿಮ್ಮ ಇಮೇಲ್ ಮತ್ತು ಸಂದೇಶವನ್ನು ಎರಡೂ ನಮೂದಿಸಿ. ಧನ್ಯವಾದಗಳು!"
apps/frappe/frappe/email/smtp.py +170,Could not connect to outgoing email server,ಹೊರಹೋಗುವ ಇಮೇಲ್ ಸರ್ವರ್ ಸಂಪರ್ಕ ಸಾಧ್ಯವಾಗಿಲ್ಲ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +162,Thank you for your interest in subscribing to our updates,ನಮ್ಮ ನವೀಕರಣಗಳನ್ನು ಚಂದಾದಾರರಾಗುವ ನಿಮ್ಮ ಆಸಕ್ತಿಗೆ ಧನ್ಯವಾದಗಳು
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Thank you for your interest in subscribing to our updates,ನಮ್ಮ ನವೀಕರಣಗಳನ್ನು ಚಂದಾದಾರರಾಗುವ ನಿಮ್ಮ ಆಸಕ್ತಿಗೆ ಧನ್ಯವಾದಗಳು
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Custom Column,ಕಸ್ಟಮ್ ಅಂಕಣ
DocType: Workflow State,resize-full,ಮರುಗಾತ್ರಗೊಳಿಸಿ - ಪೂರ್ಣ
DocType: Workflow State,off,ಆಫ್
@@ -2385,7 +2394,7 @@ DocType: Address,Telangana,ತೆಲಂಗಾಣ
apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,{0} ಒಂದು ಆಯ್ಕೆಯನ್ನು ಇರಬೇಕು ಡೀಫಾಲ್ಟ್
DocType: Tag Doc Category,Tag Doc Category,ಟ್ಯಾಗ್ ಡಾಕ್ ವರ್ಗ
DocType: User,User Image,ಬಳಕೆದಾರ ಚಿತ್ರ
apps/frappe/frappe/email/queue.py +289,Emails are muted,ಇಮೇಲ್ಗಳನ್ನು ಮ್ಯೂಟ್
apps/frappe/frappe/email/queue.py +304,Emails are muted,ಇಮೇಲ್ಗಳನ್ನು ಮ್ಯೂಟ್
apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + ಅಪ್
DocType: Website Theme,Heading Style,ಶಿರೋನಾಮೆ ಶೈಲಿ
apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +183,A new Project with this name will be created,ಈ ಹೆಸರಿನ ಹೊಸ ಪ್ರಾಜೆಕ್ಟ್ ನಿರ್ಮಿಸಲಾಗುತ್ತದೆ
@@ -2605,7 +2614,6 @@ DocType: Workflow State,bell,ಗಂಟೆ
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,ಇಮೇಲ್ ಎಚ್ಚರಿಕೆ ದೋಷ
apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,ಇಮೇಲ್ ಎಚ್ಚರಿಕೆ ದೋಷ
apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,ಈ ಡಾಕ್ಯುಮೆಂಟ್ ಅನ್ನು ಹಂಚಿಕೊಳ್ಳಿ
apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup &gt; User Permissions Manager,ಸೆಟಪ್&gt; ಬಳಕೆದಾರ ಅನುಮತಿಗಳು ಮ್ಯಾನೇಜರ್
apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} ಒಂದು ಲೀಫ್ ನೋಡ್ ಆಲ್ಡ್ವಿಚ್ ಮಕ್ಕಳು ಸಾಧ್ಯವಿಲ್ಲ
DocType: Communication,Info,ಮಾಹಿತಿ
apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,ಲಗತ್ತು ಸೇರಿಸಿ
@@ -2661,7 +2669,7 @@ apps/frappe/frappe/www/printview.py +211,Print Format {0} is disabled,ಪ್ರ
DocType: Email Alert,Send days before or after the reference date,ಮೊದಲು ಅಥವಾ ಉಲ್ಲೇಖ ದಿನಾಂಕ ನಂತರ ದಿನಗಳಲ್ಲಿ ಕಳುಹಿಸಿ
DocType: User,Allow user to login only after this hour (0-24),ಬಳಕೆದಾರ ಮಾತ್ರ ಈ ಗಂಟೆ ನಂತರ ( 0-24 ) ಲಾಗಿನ್ ಅನುಮತಿಸಿ
apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Value,ಮೌಲ್ಯ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +165,Click here to verify,ಪರಿಶೀಲಿಸಲು ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +166,Click here to verify,ಪರಿಶೀಲಿಸಲು ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ
apps/frappe/frappe/utils/password_strength.py +178,Predictable substitutions like '@' instead of 'a' don't help very much.,ಹಾಗೆ ಊಹಿಸಬಹುದಾದ ಬದಲಿ &#39;@&#39; ಬದಲಿಗೆ &#39;ಒಂದು&#39; ತುಂಬಾ ಸಹಾಯ ಇಲ್ಲ.
apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,ನನ್ನ ಅದಕ್ಕೆ
apps/frappe/frappe/utils/data.py +462,Zero,ಝೀರೋ
@@ -2673,6 +2681,7 @@ DocType: ToDo,Priority,ಆದ್ಯತೆ
DocType: Email Queue,Unsubscribe Param,ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್ ಪರಮ
DocType: Auto Email Report,Weekly,ವಾರದ
DocType: Communication,In Reply To,ಉತ್ತರವಾಗಿ
apps/frappe/frappe/contacts/doctype/address/address.py +189,No default Address Template found. Please create a new one from Setup &gt; Printing and Branding &gt; Address Template.,ಡೀಫಾಲ್ಟ್ ವಿಳಾಸ ಟೆಂಪ್ಲೆಟ್ ಕಂಡುಬಂದಿಲ್ಲ. ದಯವಿಟ್ಟು ಸೆಟಪ್&gt; ಮುದ್ರಣ ಮತ್ತು ಬ್ರ್ಯಾಂಡಿಂಗ್&gt; ವಿಳಾಸ ಟೆಂಪ್ಲೆಟ್ನಿಂದ ಹೊಸದನ್ನು ರಚಿಸಿ.
DocType: DocType,Allow Import (via Data Import Tool),ಆಮದು ಅನುಮತಿಸಿ (ಡೇಟಾ ಆಮದು ಟೂಲ್ ಮೂಲಕ)
apps/frappe/frappe/templates/print_formats/standard_macros.html +30,Sr,sr
DocType: DocField,Float,ತೇಲುವುದು
@@ -2766,7 +2775,6 @@ apps/frappe/frappe/commands/site.py +451,Invalid limit {0},ಅಮಾನ್ಯವ
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,ಒಂದು ದಾಖಲೆ ಪ್ರಕಾರ ಪಟ್ಟಿ
DocType: Event,Ref Type,ಉಲ್ಲೇಖ ಪ್ರಕಾರ
apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","ನೀವು ಹೊಸ ದಾಖಲೆ ಅಪ್ಲೋಡ್ ಮಾಡುತ್ತಿದ್ದರೆ, ""ಹೆಸರು"" (ಐಡಿ) ಕಾಲಮ್ ಖಾಲಿ ಬಿಡಿ."
DocType: Address,Chattisgarh,ಛತ್ತೀಸ್ಗಢ
apps/frappe/frappe/config/core.py +47,Errors in Background Events,ಹಿನ್ನೆಲೆ ಕ್ರಿಯೆಗಳು ದೋಷಗಳು
apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,ಕಾಲಮ್ಗಳು ಯಾವುದೇ
DocType: Workflow State,Calendar,ಕ್ಯಾಲೆಂಡರ್
@@ -2799,7 +2807,7 @@ apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},ಹು
DocType: Integration Request,Remote,ರಿಮೋಟ್
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,ಲೆಕ್ಕ
apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,ಮೊದಲ DOCTYPE ಆಯ್ಕೆಮಾಡಿ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,ನಿಮ್ಮ ಇಮೇಲ್ ಅನ್ನು ಖಾತ್ರಿ
apps/frappe/frappe/email/doctype/newsletter/newsletter.py +174,Confirm Your Email,ನಿಮ್ಮ ಇಮೇಲ್ ಅನ್ನು ಖಾತ್ರಿ
apps/frappe/frappe/www/login.html +42,Or login with,ಅಥವಾ ಲಾಗಿನ್
DocType: Error Snapshot,Locals,ಸ್ಥಳೀಯರು
apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},ಮೂಲಕ ಸಂವಹನ {0} ನಲ್ಲಿ {1}: {2}
@@ -2817,7 +2825,7 @@ DocType: Blog Category,Blogger,ಬ್ಲಾಗರ್
apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},&#39;ಗ್ಲೋಬಲ್ ಸರ್ಚ್&#39; ಮಾದರಿ ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ {0} ಸತತವಾಗಿ {1}
apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},&#39;ಗ್ಲೋಬಲ್ ಸರ್ಚ್&#39; ಮಾದರಿ ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ {0} ಸತತವಾಗಿ {1}
apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,ಪಟ್ಟಿ ವೀಕ್ಷಣೆ
apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},ದಿನಾಂಕ ಸ್ವರೂಪದಲ್ಲಿರಬೇಕು : {0}
apps/frappe/frappe/public/js/frappe/form/control.js +810,Date must be in format: {0},ದಿನಾಂಕ ಸ್ವರೂಪದಲ್ಲಿರಬೇಕು : {0}
DocType: Workflow,Don't Override Status,ಸ್ಥಿತಿ ಬದಲಾಯಿಸಬೇಡಿ
apps/frappe/frappe/www/feedback.html +90,Please give a rating.,ರೇಟಿಂಗ್ ನೀಡಿ.
apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} ಪ್ರತಿಕ್ರಿಯೆ ವಿನಂತಿ
@@ -2850,7 +2858,7 @@ DocType: Custom DocPerm,Report,ವರದಿ
apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,ಪ್ರಮಾಣ 0 ಹೆಚ್ಚು ಇರಬೇಕು.
apps/frappe/frappe/desk/reportview.py +107,{0} is saved,{0} ಉಳಿಸಲಾಗಿದೆ
apps/frappe/frappe/core/doctype/user/user.py +327,User {0} cannot be renamed,ಬಳಕೆದಾರ {0} ಮರುನಾಮಕರಣ ಸಾಧ್ಯವಿಲ್ಲ
apps/frappe/frappe/model/db_schema.py +107,Fieldname is limited to 64 characters ({0}),FIELDNAME 64 ಅಕ್ಷರಗಳನ್ನು ಸೀಮಿತವಾಗಿರುತ್ತದೆ ({0})
apps/frappe/frappe/model/db_schema.py +108,Fieldname is limited to 64 characters ({0}),FIELDNAME 64 ಅಕ್ಷರಗಳನ್ನು ಸೀಮಿತವಾಗಿರುತ್ತದೆ ({0})
apps/frappe/frappe/config/desk.py +59,Email Group List,ಇಮೇಲ್ ಗುಂಪು ಪಟ್ಟಿ
DocType: Website Settings,An icon file with .ico extension. Should be 16 x 16 px. Generated using a favicon generator. [favicon-generator.org],.ico ವಿಸ್ತರಣೆ ಐಕಾನ್ ಕಡತ. 16 X 16 px ಇರಬೇಕು. ಒಂದು ಫೆವಿಕಾನ್ ಜನರೇಟರ್ ಬಳಸಿ ಉತ್ಪಾದಿಸಲಾಗುತ್ತದೆ. [favicon-generator.org]
DocType: Auto Email Report,Format,ಸ್ವರೂಪ
@@ -2929,7 +2937,7 @@ DocType: Website Settings,Title Prefix,ಶೀರ್ಷಿಕೆ ಪೂರ್
DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,ಸೂಚನೆಗಳು ಮತ್ತು ಬೃಹತ್ ಮೇಲ್ಗಳು ಈ ಹೊರಹೋಗುವ ಪರಿಚಾರಕದಿಂದ ಕಳುಹಿಸಲಾಗುವುದು.
DocType: Workflow State,cog,ಗಾಲಿಹುಲ್ಲು
apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on Migrate,ವಲಸೆ ಸಿಂಕ್
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,ಪ್ರಸ್ತುತ ವೀಕ್ಷಿಸುತ್ತಿದ್ದಾರೆ
apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +68,Currently Viewing,ಪ್ರಸ್ತುತ ವೀಕ್ಷಿಸುತ್ತಿದ್ದಾರೆ
DocType: DocField,Default,ಡೀಫಾಲ್ಟ್
apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} ಸೇರಿಸಲಾಗಿದೆ
apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',ಹುಡುಕು &#39;{0}&#39;
@@ -2992,7 +3000,7 @@ DocType: Print Settings,Print Style,ಮುದ್ರಣ ಶೈಲಿ
apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,ಯಾವುದೇ ದಾಖಲೆ ಲಿಂಕ್
apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,ಯಾವುದೇ ದಾಖಲೆ ಲಿಂಕ್
DocType: Custom DocPerm,Import,ಆಮದು
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +178,Row {0}: Not allowed to enable Allow on Submit for standard fields,ಸಾಲು {0}: ಪ್ರಮಾಣಿತ ಕ್ಷೇತ್ರಗಳಿಗೆ ಸಲ್ಲಿಸಿ ಅನುಮತಿಸಿ ಬೆಳೆಸಲು ಅವಕಾಶವಿರುತ್ತದೆ ಮಾಡಿರುವುದಿಲ್ಲ
apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +180,Row {0}: Not allowed to enable Allow on Submit for standard fields,ಸಾಲು {0}: ಪ್ರಮಾಣಿತ ಕ್ಷೇತ್ರಗಳಿಗೆ ಸಲ್ಲಿಸಿ ಅನುಮತಿಸಿ ಬೆಳೆಸಲು ಅವಕಾಶವಿರುತ್ತದೆ ಮಾಡಿರುವುದಿಲ್ಲ
apps/frappe/frappe/config/setup.py +100,Import / Export Data,ಆಮದು / ರಫ್ತು ಡೇಟಾವನ್ನು
apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,ಸ್ಟ್ಯಾಂಡರ್ಡ್ ಪಾತ್ರಗಳನ್ನು ಮರುನಾಮಕರಣ ಸಾಧ್ಯವಿಲ್ಲ
DocType: Communication,To and CC,ಮತ್ತು ಸಿಸಿ
@@ -3019,7 +3027,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo
DocType: Auto Email Report,Filter Meta,ಫಿಲ್ಟರ್ ಮೆಟಾ
DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,ಈ ಫಾರ್ಮ್ ವೆಬ್ ಪುಟ ವೇಳೆ ಪಠ್ಯ ವೆಬ್ ಪುಟ ಲಿಂಕ್ ಫಾರ್ ಪ್ರದರ್ಶನವಾಗಲು. ಲಿಂಕ್ ಮಾರ್ಗ ಸ್ವಯಂಚಾಲಿತವಾಗಿ page_name` ಮತ್ತು `parent_website_route`` ಆಧರಿಸಿ ರಚಿಸಲಾಗಿದೆ
DocType: Feedback Request,Feedback Trigger,ಪ್ರತಿಕ್ರಿಯೆ ಟ್ರಿಗ್ಗರ್
apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,ಮೊದಲ {0} ಸೆಟ್ ದಯವಿಟ್ಟು
apps/frappe/frappe/public/js/frappe/form/control.js +1741,Please set {0} first,ಮೊದಲ {0} ಸೆಟ್ ದಯವಿಟ್ಟು
DocType: Unhandled Email,Message-id,ಸಂದೇಶ ಸೂಚಕ
DocType: Patch Log,Patch,ಮಚ್ಚೆ
DocType: Async Task,Failed,ವಿಫಲವಾಗಿದೆ


Einige Dateien werden nicht angezeigt, da zu viele Dateien in diesem Diff geändert wurden.

Laden…
Abbrechen
Speichern