Merge branch 'develop' into feat/improve-openid-connect-devx

This commit is contained in:
David Arnold 2023-09-16 09:58:53 +02:00 committed by GitHub
commit 64a09be958
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
152 changed files with 9521 additions and 2707 deletions

View file

@ -64,9 +64,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: |
3.7
3.10
python-version: "3.10"
- name: Setup Node
uses: actions/setup-node@v3
@ -112,8 +110,8 @@ jobs:
- name: Run Patch Tests
run: |
cd ~/frappe-bench/
wget https://frappeframework.com/files/v10-frappe.sql.gz
bench --site test_site --force restore ~/frappe-bench/v10-frappe.sql.gz
wget https://frappeframework.com/files/v13-frappe.sql.gz
bench --site test_site --force restore ~/frappe-bench/v13-frappe.sql.gz
source env/bin/activate
cd apps/frappe/
@ -121,7 +119,6 @@ jobs:
function update_to_version() {
version=$1
py=$2
branch_name="version-$version-hotfix"
echo "Updating to v$version"
@ -130,22 +127,22 @@ jobs:
pgrep honcho | xargs kill
rm -rf ~/frappe-bench/env
bench -v setup env --python $py
bench start &> ~/frappe-bench/bench_start.log &
bench -v setup env
bench start &>> ~/frappe-bench/bench_start.log &
bench --site test_site migrate
}
update_to_version 12 python3.7
update_to_version 13 python3.7
update_to_version 14 python3.10
update_to_version 14
echo "Updating to last commit"
pgrep honcho | xargs kill
rm -rf ~/frappe-bench/env
git checkout -q -f "$GITHUB_SHA"
bench -v setup env
bench start &>> ~/frappe-bench/bench_start.log &
bench --site test_site migrate
bench --site test_site execute frappe.tests.utils.check_orpahned_doctypes
- name: Show bench output
if: ${{ always() }}

View file

@ -1,17 +1,18 @@
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
# License: MIT. See LICENSE
import functools
import gc
import logging
import os
import re
from werkzeug.exceptions import HTTPException, NotFound
from werkzeug.local import LocalManager
from werkzeug.middleware.profiler import ProfilerMiddleware
from werkzeug.middleware.proxy_fix import ProxyFix
from werkzeug.middleware.shared_data import SharedDataMiddleware
from werkzeug.wrappers import Request, Response
from werkzeug.wsgi import ClosingIterator
import frappe
import frappe.api
@ -23,12 +24,11 @@ import frappe.utils.response
from frappe import _
from frappe.auth import SAFE_HTTP_METHODS, UNSAFE_HTTP_METHODS, HTTPRequest
from frappe.middlewares import StaticDataMiddleware
from frappe.utils import cint, get_site_name, sanitize_html
from frappe.utils import CallbackManager, cint, get_site_name, sanitize_html
from frappe.utils.data import escape_html
from frappe.utils.error import log_error_snapshot
from frappe.website.serve import get_response
local_manager = LocalManager(frappe.local)
_site = None
_sites_path = os.environ.get("SITES_PATH", ".")
@ -62,7 +62,28 @@ if frappe._tune_gc:
# end: module pre-loading
@local_manager.middleware
def after_response_wrapper(app):
"""Wrap a WSGI application to call after_response hooks after we have responded.
This is done to reduce response time by deferring expensive tasks."""
@functools.wraps(app)
def application(environ, start_response):
return ClosingIterator(
app(environ, start_response),
(
frappe.rate_limiter.update,
frappe.monitor.stop,
frappe.recorder.dump,
frappe.request.after_response.run,
frappe.destroy,
),
)
return application
@after_response_wrapper
@Request.application
def application(request: Request):
response = None
@ -109,7 +130,7 @@ def application(request: Request):
# this function *must* always return a response, hence any exception thrown outside of
# try..catch block like this finally block needs to be handled appropriately.
if request.method in UNSAFE_HTTP_METHODS and frappe.db and rollback:
if rollback and request.method in UNSAFE_HTTP_METHODS and frappe.db:
frappe.db.rollback()
try:
@ -120,8 +141,6 @@ def application(request: Request):
log_request(request, response)
process_response(response)
if frappe.db:
frappe.db.close()
return response
@ -136,6 +155,8 @@ def run_after_request_hooks(request, response):
def init_request(request):
frappe.local.request = request
frappe.local.request.after_response = CallbackManager()
frappe.local.is_ajax = frappe.get_request_header("X-Requested-With") == "XMLHttpRequest"
site = _site or request.headers.get("X-Frappe-Site-Name") or get_site_name(request.host)
@ -343,7 +364,7 @@ def handle_exception(e):
response = frappe.rate_limiter.respond()
else:
traceback = "<pre>" + sanitize_html(frappe.get_traceback()) + "</pre>"
traceback = "<pre>" + escape_html(frappe.get_traceback()) + "</pre>"
# disable traceback in production if flag is set
if frappe.local.flags.disable_traceback or not allow_traceback and not frappe.local.dev_server:
traceback = ""
@ -393,6 +414,7 @@ def sync_database(rollback: bool) -> bool:
def serve(
host=None,
port=8000,
profile=False,
no_reload=False,
@ -417,7 +439,7 @@ def serve(
application = ProxyFix(application, x_for=1, x_proto=1, x_host=1, x_port=1, x_prefix=1)
application.debug = True
application.config = {"SERVER_NAME": "localhost:8000"}
application.config = {"SERVER_NAME": "127.0.0.1:8000"}
log = logging.getLogger("werkzeug")
log.propagate = False
@ -427,7 +449,7 @@ def serve(
log.setLevel(logging.ERROR)
run_simple(
"0.0.0.0",
host,
int(port),
application,
exclude_patterns=["test_*"],

View file

@ -1169,7 +1169,7 @@ def start_ngrok(context, bind_tls, use_default_authtoken):
port = frappe.conf.http_port or frappe.conf.webserver_port
tunnel = ngrok.connect(addr=str(port), host_header=site, bind_tls=bind_tls)
print(f"Public URL: {tunnel.public_url}")
print("Inspect logs at http://localhost:4040")
print("Inspect logs at http://127.0.0.1:4040")
ngrok_process = ngrok.get_ngrok_process()
try:

View file

@ -863,6 +863,7 @@ def run_ui_tests(
):
"Run UI tests"
site = get_site(context)
frappe.init(site)
app_base_path = frappe.get_app_source_path(app)
site_url = frappe.utils.get_site_url(site)
admin_password = frappe.get_conf(site).admin_password
@ -921,6 +922,7 @@ def run_ui_tests(
@click.command("serve")
@click.option("--host", default="127.0.0.1")
@click.option("--port", default=8000)
@click.option("--profile", is_flag=True, default=False)
@click.option(
@ -935,6 +937,7 @@ def run_ui_tests(
@pass_context
def serve(
context,
host="127.0.0.1",
port=None,
profile=False,
proxy=False,
@ -957,6 +960,7 @@ def serve(
no_threading = True
no_reload = True
frappe.app.serve(
host=host,
port=port,
profile=profile,
proxy=proxy,

View file

@ -84,7 +84,11 @@ def get_files_by_search_text(text: str) -> list[dict]:
@frappe.whitelist(allow_guest=True)
def get_max_file_size() -> int:
return cint(frappe.conf.get("max_file_size")) or 10485760
return (
cint(frappe.get_system_settings("max_file_size")) * 1024 * 1024
or cint(frappe.conf.get("max_file_size"))
or 25 * 1024 * 1024
)
@frappe.whitelist()

View file

@ -0,0 +1,77 @@
<div>
<div class="p-2">
{% if documents.length > 1 %}
<p>Documents to Compare : <b>{{ documents.length }}</b></p>
{% else %}
<p>Documents to Compare : <b>{{ documents.length - 1 }}</b></p>
{% endif %}
</div>
{% var field_keys = Object.keys(changed).sort(); %}
{% if field_keys.length > 0 %}
<div class="p-2">
<h5><b>Fields Changed</b></h5>
<table class="table table-bordered">
<thead>
<th> Fields </th>
{% for doc in documents %}
<th>{{ doc }}</th>
{% endfor %}
</thead>
<tbody>
{% for fieldname in field_keys %}
<tr>
<td> {{ fieldname }} </td>
{% var values = changed[fieldname] %}
{% for value in values %}
<td>{{ value }}</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endif %}
{% var tables = Object.keys(row_changed).sort(); %}
{% if tables.length > 0 %}
<div class="p-2">
<h5><b>Rows Updated</b></h5>
<table class="table table-bordered">
<thead>
<th> Fields </th>
</thead>
<tbody>
{% for table in tables %}
<tr>
<tr>
<td><b>{{ table }}</b></td>
{% for doc in documents %}
<td><b>{{ doc }}</b></td>
{% endfor %}
</tr>
{% var rows = Object.keys(row_changed[table]).sort(); %}
{% for idx in rows %}
<tr><td><b>idx : {{ idx }}</b></td></tr>
{% var fields = Object.keys(row_changed[table][idx]).sort(); %}
{% for field in fields %}
<tr>
<td>{{ field }}</td>
{% var values = row_changed[table][idx][field] %}
{% for value in values %}
<td> {{ value }} </td>
{% endfor %}
</tr>
{% endfor %}
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endif %}
</div>

View file

@ -0,0 +1,67 @@
// Copyright (c) 2023, Frappe Technologies and contributors
// For license information, please see license.txt
frappe.ui.form.on("Audit Trail", {
refresh(frm) {
frm.page.clear_indicator();
frm.disable_save();
frm.set_query("doctype_name", () => {
return {
filters: {
track_changes: 1,
is_submittable: 1,
},
};
});
frm.page.set_primary_action("Compare", () => {
frm.call({
doc: frm.doc,
method: "compare_document",
callback: function (r) {
let document_names = r.message[0];
let changed_fields = r.message[1];
frm.events.render_changed_fields(frm, document_names, changed_fields);
frm.events.render_rows_added_or_removed(frm, changed_fields);
},
});
});
},
render_changed_fields(frm, document_names, changed_fields) {
let render_dict = {
documents: document_names,
changed: changed_fields.changed,
row_changed: changed_fields.row_changed,
};
$(frappe.render_template("audit_trail", render_dict)).appendTo(
frm.fields_dict.version_table.$wrapper.empty()
);
frm.set_df_property("version_table", "hidden", 0);
},
render_rows_added_or_removed(frm, changed_fields) {
let added_or_removed = {
rows_added: changed_fields.added,
rows_removed: changed_fields.removed,
};
let hide_section = 0;
let section_dict = {};
for (let key in added_or_removed) {
hide_section = 0;
section_dict = {
added_or_removed: added_or_removed[key],
};
$(frappe.render_template("audit_trail_rows_added_removed", section_dict)).appendTo(
frm.fields_dict[key].$wrapper.empty()
);
if (!frm.fields_dict[key].disp_area.innerHTML.includes("<table")) hide_section = 1;
frm.set_df_property(key + "_section", "hidden", hide_section);
}
},
});

View file

@ -0,0 +1,94 @@
{
"actions": [],
"creation": "2023-08-14 13:06:24.520160",
"default_view": "List",
"doctype": "DocType",
"editable_grid": 1,
"engine": "InnoDB",
"field_order": [
"doctype_name",
"column_break_peck",
"document",
"section_break_gppi",
"version_table",
"rows_added_section",
"rows_added",
"rows_removed_section",
"rows_removed"
],
"fields": [
{
"fieldname": "doctype_name",
"fieldtype": "Link",
"in_list_view": 1,
"label": "Doctype",
"options": "DocType",
"reqd": 1
},
{
"fieldname": "document",
"fieldtype": "Dynamic Link",
"in_list_view": 1,
"label": "Document",
"options": "doctype_name",
"reqd": 1
},
{
"fieldname": "column_break_peck",
"fieldtype": "Column Break"
},
{
"fieldname": "section_break_gppi",
"fieldtype": "Section Break"
},
{
"fieldname": "version_table",
"fieldtype": "HTML",
"hidden": 1,
"label": "version_table"
},
{
"fieldname": "rows_added",
"fieldtype": "HTML"
},
{
"fieldname": "rows_removed",
"fieldtype": "HTML"
},
{
"collapsible": 1,
"fieldname": "rows_added_section",
"fieldtype": "Section Break",
"hidden": 1,
"label": "Rows Added"
},
{
"collapsible": 1,
"fieldname": "rows_removed_section",
"fieldtype": "Section Break",
"hidden": 1,
"label": "Rows Removed"
}
],
"hide_toolbar": 1,
"index_web_pages_for_search": 1,
"issingle": 1,
"links": [],
"modified": "2023-08-22 12:12:59.780845",
"modified_by": "Administrator",
"module": "Core",
"name": "Audit Trail",
"owner": "Administrator",
"permissions": [
{
"email": 1,
"print": 1,
"read": 1,
"role": "System Manager",
"share": 1
}
],
"sort_field": "modified",
"sort_order": "DESC",
"states": []
}

View file

@ -0,0 +1,129 @@
# Copyright (c) 2023, Frappe Technologies and contributors
# For license information, please see license.txt
import json
import frappe
from frappe import _
from frappe.core.doctype.version.version import get_diff
from frappe.model.document import Document
class AuditTrail(Document):
# begin: auto-generated types
# This code is auto-generated. Do not modify anything in this block.
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from frappe.types import DF
doctype_name: DF.Link
document: DF.DynamicLink
# end: auto-generated types
pass
def validate(self):
self.validate_doctype_name()
self.validate_document()
def validate_doctype_name(self):
if not self.doctype_name:
frappe.throw(_("{} field cannot be empty.").format(frappe.bold("Doctype")))
def validate_document(self):
if not self.document:
frappe.throw(_("{} field cannot be empty.").format(frappe.bold("Document")))
@frappe.whitelist()
def compare_document(self):
self.validate()
amended_document_names = self.get_amended_documents()
self.amended_docs = [frappe.get_doc(self.doctype_name, name) for name in amended_document_names]
self.docs_to_compare = len(self.amended_docs)
self.changed, self.row_changed, self.added, self.removed = {}, {}, {}, {}
for i in range(1, self.docs_to_compare):
diff = get_diff(self.amended_docs[i - 1], self.amended_docs[i], compare_cancelled=True)
self.get_diff_grid(i, diff)
self.get_rows_added_removed_grid(i, diff, "added", self.added)
self.get_rows_added_removed_grid(i, diff, "removed", self.removed)
self.get_rows_updated_grid(i, diff)
return amended_document_names, {
"changed": self.changed,
"row_changed": self.row_changed,
"added": self.added,
"removed": self.removed,
}
def get_amended_documents(self):
amended_document_names = []
curr_doc = self.document
while curr_doc and len(amended_document_names) < 5:
amended_document_names.append(curr_doc)
curr_doc = frappe.db.get_value(self.doctype_name, curr_doc, "amended_from")
amended_document_names = amended_document_names[::-1]
return amended_document_names
def get_diff_grid(self, i, diff):
for change in diff.changed:
fieldname = get_field_label(change[0], doctype=self.doctype_name)
value = change[-1]
value_list = [""] * self.docs_to_compare
self.changed.setdefault(fieldname, value_list)
self.changed[fieldname][i] = value or ""
if i == 1:
value = change[1]
self.changed[fieldname][i - 1] = value or ""
def get_rows_added_removed_grid(self, i, diff, key, changed_dict):
doc_name = self.amended_docs[i].name
changed_dict[doc_name] = {}
for change in diff[key]:
tablename = get_field_label(change[0], doctype=self.doctype_name)
value_dict = filter_fields_for_gridview(change[-1])
changed_dict[doc_name].setdefault(tablename, []).append(value_dict)
def get_rows_updated_grid(self, i, diff):
for change in diff.row_changed:
table_name = get_field_label(change[0], doctype=self.doctype_name)
index = change[1]
self.row_changed.setdefault(table_name, {}).setdefault(index, {})
for field in change[-1]:
fieldname = get_field_label(field[0], doctype=self.doctype_name, child_field=change[0])
value = field[-1]
value_list = [""] * self.docs_to_compare
self.row_changed[table_name][index].setdefault(fieldname, value_list)
self.row_changed[table_name][index][fieldname][i] = value or ""
if i == 1:
value = field[1]
self.row_changed[table_name][index][fieldname][i - 1] = value or ""
def get_field_label(fieldname, doctype, child_field=None):
if child_field:
meta = frappe.get_meta(doctype)
for field in meta.fields:
if field.fieldname == child_field:
doctype = field.options
meta = frappe.get_meta(doctype)
label = meta.get_label(fieldname)
if label not in ["No Label", None, ""]:
return label
return fieldname
def filter_fields_for_gridview(row):
grid_row = {}
meta = frappe.get_meta(row.doctype)
for field in meta.fields:
if field.in_list_view == 1:
fieldlabel = get_field_label(field.fieldname, row.doctype)
grid_row[fieldlabel] = row[field.fieldname] or ""
return grid_row

View file

@ -0,0 +1,34 @@
<div>
{% var docs = Object.keys(added_or_removed) %}
{% for doc in docs %}
<div>
{% if Object.keys(added_or_removed[doc]).length > 0 %}
<h5>{{ doc }}</h5>
<br>
{% var tables = Object.keys(added_or_removed[doc]) %}
{% for table in tables %}
<h5 class="text-muted">{{ table }}</h5>
<table class="table table-bordered">
<thead>
{% var fieldnames = Object.keys(added_or_removed[doc][table][0]) %}
{% for fieldname in fieldnames %}
<th>{{ fieldname }}</th>
{% endfor %}
</thead>
<tbody>
{% var rows = Object.keys(added_or_removed[doc][table]) %}
{% for row in rows %}
<tr>
{% var field_keys = Object.keys(added_or_removed[doc][table][row]) %}
{% for key in field_keys %}
<td>{{ added_or_removed[doc][table][row][key] }}</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>
{% endfor %}
{% endif %}
</div>
{% endfor %}
</div>

View file

@ -0,0 +1,134 @@
# Copyright (c) 2023, Frappe Technologies and Contributors
# See license.txt
import frappe
from frappe.tests.utils import FrappeTestCase
class TestAuditTrail(FrappeTestCase):
def setUp(self):
self.child_doctype = create_custom_child_doctype()
self.custom_doctype = create_custom_doctype()
def test_compare_changed_fields(self):
doc = frappe.new_doc("Test Custom Doctype for Doc Comparator")
doc.test_field = "first value"
doc.submit()
doc.cancel()
changed_fields = frappe._dict(test_field="second value")
amended_doc = amend_document(doc, changed_fields, {}, 1)
amended_doc.cancel()
changed_fields = frappe._dict(test_field="third value")
re_amended_doc = amend_document(amended_doc, changed_fields, {}, 1)
comparator = create_comparator_doc("Test Custom Doctype for Doc Comparator", re_amended_doc.name)
documents, results = comparator.compare_document()
test_field_values = results["changed"]["Field"]
self.check_expected_values(test_field_values, ["first value", "second value", "third value"])
def test_compare_rows(self):
doc = frappe.new_doc("Test Custom Doctype for Doc Comparator")
doc.append("child_table_field", {"test_table_field": "old row 1 value"})
doc.submit()
doc.cancel()
child_table_new = [{"test_table_field": "new row 1 value"}, {"test_table_field": "row 2 value"}]
rows_updated = frappe._dict(child_table_field=child_table_new)
amended_doc = amend_document(doc, {}, rows_updated, 1)
comparator = create_comparator_doc("Test Custom Doctype for Doc Comparator", amended_doc.name)
documents, results = comparator.compare_document()
results = frappe._dict(results)
self.check_rows_updated(results.row_changed)
self.check_rows_added(results.added[amended_doc.name])
def check_rows_updated(self, row_changed):
self.assertIn("Child Table Field", row_changed)
self.assertIn(0, row_changed["Child Table Field"])
self.assertIn("Table Field", row_changed["Child Table Field"][0])
table_field_values = row_changed["Child Table Field"][0]["Table Field"]
self.check_expected_values(table_field_values, ["old row 1 value", "new row 1 value"])
def check_rows_added(self, rows_added):
self.assertIn("Child Table Field", rows_added)
child_table = rows_added["Child Table Field"]
self.assertIn("Table Field", child_table[0])
self.check_expected_values(child_table[0]["Table Field"], "row 2 value")
def check_expected_values(self, values_to_check, expected_values):
for i in range(len(values_to_check)):
self.assertEqual(values_to_check[i], expected_values[i])
def tearDown(self):
self.child_doctype.delete()
self.custom_doctype.delete()
def create_custom_child_doctype():
child_doctype = frappe.get_doc(
{
"doctype": "DocType",
"module": "Core",
"name": "Test Custom Child for Doc Comparator",
"custom": 1,
"istable": 1,
"fields": [
{
"label": "Table Field",
"fieldname": "test_table_field",
"fieldtype": "Data",
"in_list_view": 1,
},
],
}
).insert(ignore_if_duplicate=True)
return child_doctype
def create_custom_doctype():
custom_doctype = frappe.get_doc(
{
"doctype": "DocType",
"module": "Core",
"name": "Test Custom Doctype for Doc Comparator",
"custom": 1,
"is_submittable": 1,
"fields": [
{
"label": "Field",
"fieldname": "test_field",
"fieldtype": "Data",
},
{
"label": "Child Table Field",
"fieldname": "child_table_field",
"fieldtype": "Table",
"options": "Test Custom Child for Doc Comparator",
},
],
"permissions": [{"role": "System Manager", "read": 1}],
}
).insert(ignore_if_duplicate=True)
return custom_doctype
def amend_document(amend_from, changed_fields, rows_updated, submit=False):
amended_doc = frappe.copy_doc(amend_from)
amended_doc.amended_from = amend_from.name
amended_doc.update(changed_fields)
for child_table in rows_updated:
amended_doc.set(child_table, rows_updated[child_table])
if submit:
amended_doc.submit()
return amended_doc
def create_comparator_doc(doctype_name, document):
comparator = frappe.new_doc("Audit Trail")
comparator.doctype_name = doctype_name
comparator.document = document
return comparator

View file

@ -258,15 +258,17 @@ def add_attachments(name: str, attachments: Iterable[str | dict]) -> None:
@frappe.whitelist(allow_guest=True, methods=("GET",))
def mark_email_as_seen(name: str = None):
frappe.request.after_response.add(lambda: _mark_email_as_seen(name))
frappe.response.update(frappe.utils.get_imaginary_pixel_response())
def _mark_email_as_seen(name):
try:
update_communication_as_read(name)
frappe.db.commit() # nosemgrep: this will be called in a GET request
except Exception:
frappe.log_error("Unable to mark as seen", None, "Communication", name)
finally:
frappe.response.update(frappe.utils.get_imaginary_pixel_response())
frappe.db.commit() # nosemgrep: after_response requires explicit commit
def update_communication_as_read(name):

View file

@ -45,6 +45,7 @@ class Importer:
file_path or data_import.google_sheets_url or data_import.import_file,
self.template_options,
self.import_type,
console=self.console,
)
def get_data_for_import_preview(self):
@ -393,12 +394,13 @@ class Importer:
class ImportFile:
def __init__(self, doctype, file, template_options=None, import_type=None):
def __init__(self, doctype, file, template_options=None, import_type=None, *, console=False):
self.doctype = doctype
self.template_options = template_options or frappe._dict(column_to_field_map=frappe._dict())
self.column_to_field_map = self.template_options.column_to_field_map
self.import_type = import_type
self.warnings = []
self.console = console
self.file_doc = self.file_path = self.google_sheets_url = None
if isinstance(file, str):

View file

@ -18,8 +18,11 @@ from frappe.core.doctype.doctype.doctype import (
WrongOptionsDoctypeLinkError,
validate_links_table_fieldnames,
)
from frappe.core.doctype.rq_job.test_rq_job import wait_for_completion
from frappe.custom.doctype.custom_field.custom_field import create_custom_fields
from frappe.desk.form.load import getdoc
from frappe.model.delete_doc import delete_controllers
from frappe.model.sync import remove_orphan_doctypes
from frappe.tests.utils import FrappeTestCase
@ -739,6 +742,21 @@ class TestDocType(FrappeTestCase):
self.assertEqual(frappe.get_meta(doctype).get_field(field).default, "DELETETHIS")
frappe.delete_doc("DocType", doctype)
@unittest.skipUnless(
os.access(frappe.get_app_path("frappe"), os.W_OK), "Only run if frappe app paths is writable"
)
@patch.dict(frappe.conf, {"developer_mode": 1})
def test_delete_orphaned_doctypes(self):
doctype = new_doctype(custom=0).insert()
frappe.db.commit()
delete_controllers(doctype.name, doctype.module)
job = frappe.enqueue(remove_orphan_doctypes)
wait_for_completion(job)
frappe.db.rollback()
self.assertFalse(frappe.db.exists("DocType", doctype.name))
def test_not_in_list_view_for_not_allowed_mandatory_field(self):
doctype = new_doctype(
fields=[

View file

@ -659,10 +659,10 @@ class File(Document):
file_size = len(self._content or b"")
if file_size > max_file_size:
frappe.throw(
_("File size exceeded the maximum allowed size of {0} MB").format(max_file_size / 1048576),
exc=MaxFileSizeReachedError,
)
msg = _("File size exceeded the maximum allowed size of {0} MB").format(max_file_size / 1048576)
if frappe.has_permission("System Settings", "write"):
msg += ".<br>" + _("You can increase the limit from System Settings.")
frappe.throw(msg, exc=MaxFileSizeReachedError)
return file_size

View file

@ -3,6 +3,7 @@
import json
import os
from pathlib import Path
import frappe
from frappe.model.document import Document
@ -63,21 +64,23 @@ class ModuleDef(Document):
if not frappe.conf.get("developer_mode") or frappe.flags.in_uninstall or self.custom:
return
modules = None
if frappe.local.module_app.get(frappe.scrub(self.name)):
delete_folder(self.module_name, "Module Def", self.name)
with open(frappe.get_app_path(self.app_name, "modules.txt")) as f:
content = f.read()
if self.name in content.splitlines():
modules = list(filter(None, content.splitlines()))
modules.remove(self.name)
frappe.db.after_commit.add(self.delete_module_from_file)
if modules:
with open(frappe.get_app_path(self.app_name, "modules.txt"), "w") as f:
f.write("\n".join(modules))
def delete_module_from_file(self):
delete_folder(self.module_name, "Module Def", self.name)
modules = []
frappe.clear_cache()
frappe.setup_module_map()
modules_txt = Path(frappe.get_app_path(self.app_name, "modules.txt"))
modules = [m for m in modules_txt.read_text().splitlines() if m]
if self.name in modules:
modules.remove(self.name)
if modules:
modules_txt.write_text("\n".join(modules))
frappe.clear_cache()
frappe.setup_module_map()
@frappe.whitelist()

View file

@ -86,7 +86,7 @@ class Report(Document):
if (
self.is_standard == "Yes"
and not cint(getattr(frappe.local.conf, "developer_mode", 0))
and not frappe.flags.in_patch
and not (frappe.flags.in_migrate or frappe.flags.in_patch)
):
frappe.throw(_("You are not allowed to delete Standard Report"))
delete_custom_role("report", self.name)

View file

@ -15,16 +15,20 @@ from frappe.utils import cstr, execute_in_shell
from frappe.utils.background_jobs import get_job_status, is_job_enqueued
@timeout(seconds=20)
def wait_for_completion(job: Job):
while True:
if not (job.is_queued or job.is_started):
break
time.sleep(0.2)
class TestRQJob(FrappeTestCase):
BG_JOB = "frappe.core.doctype.rq_job.test_rq_job.test_func"
@timeout(seconds=20)
def check_status(self, job: Job, status, wait=True):
while wait:
if not (job.is_queued or job.is_started):
break
time.sleep(0.2)
if wait:
wait_for_completion(job)
self.assertEqual(frappe.get_doc("RQ Job", job.id).status, status)
def test_serialization(self):

View file

@ -81,7 +81,10 @@
"disable_system_update_notification",
"disable_change_log_notification",
"telemetry_section",
"enable_telemetry"
"enable_telemetry",
"files_section",
"max_file_size",
"column_break_uqma"
],
"fields": [
{
@ -571,12 +574,28 @@
"fieldname": "force_web_capture_mode_for_uploads",
"fieldtype": "Check",
"label": "Force Web Capture Mode for Uploads"
},
{
"collapsible": 1,
"fieldname": "files_section",
"fieldtype": "Section Break",
"label": "Files"
},
{
"fieldname": "max_file_size",
"fieldtype": "Int",
"label": "Max File Size (MB)",
"non_negative": 1
},
{
"fieldname": "column_break_uqma",
"fieldtype": "Column Break"
}
],
"icon": "fa fa-cog",
"issingle": 1,
"links": [],
"modified": "2023-08-31 20:19:07.181041",
"modified": "2023-09-13 12:49:32.309521",
"modified_by": "Administrator",
"module": "Core",
"name": "System Settings",

View file

@ -64,6 +64,7 @@ class SystemSettings(Document):
login_with_email_link_expiry: DF.Int
logout_on_password_reset: DF.Check
max_auto_email_report_per_user: DF.Int
max_file_size: DF.Int
minimum_password_score: DF.Literal["2", "3", "4"]
number_format: DF.Literal[
"#,###.##",

View file

@ -301,7 +301,7 @@ frappe.ui.form.on("User", {
email: frm.doc.email,
},
callback: function (r) {
if (!Array.isArray(r.message)) {
if (!Array.isArray(r.message) || !r.message.length) {
frappe.route_options = {
email_id: frm.doc.email,
awaiting_password: 1,

View file

@ -59,7 +59,7 @@ class Version(Document):
return json.loads(self.data)
def get_diff(old, new, for_child=False):
def get_diff(old, new, for_child=False, compare_cancelled=False):
"""Get diff between 2 document objects
If there is a change, then returns a dict like:
@ -112,6 +112,11 @@ def get_diff(old, new, for_child=False):
# check rows for additions, changes
for i, d in enumerate(new_value):
old_row_name = getattr(d, old_row_name_field, None)
if compare_cancelled:
if amended_from:
if len(old_value) > i:
old_row_name = old_value[i].name
if old_row_name and old_row_name in old_rows_by_name:
found_rows.add(old_row_name)

View file

@ -44,22 +44,23 @@ frappe.PermissionEngine = class PermissionEngine {
}
setup_page() {
this.doctype_select = this.wrapper.page
.add_select(
__("Document Type"),
[{ value: "", label: __("Select Document Type") + "..." }].concat(
this.options.doctypes
)
)
.change(function () {
frappe.set_route("permission-manager", $(this).val());
});
this.doctype_select = this.wrapper.page.add_field({
fieldname: "doctype_select",
label: __("Document Type"),
fieldtype: "Link",
options: "DocType",
change: function () {
frappe.set_route("permission-manager", this.get_value());
},
});
this.role_select = this.wrapper.page
.add_select(__("Roles"), [__("Select Role") + "..."].concat(this.options.roles))
.change(() => {
this.refresh();
});
this.role_select = this.wrapper.page.add_field({
fieldname: "role_select",
label: __("Roles"),
fieldtype: "Link",
options: "Role",
change: () => this.refresh(),
});
this.page.add_inner_button(__("Set User Permissions"), () => {
return frappe.set_route("List", "User Permission");
@ -76,13 +77,13 @@ frappe.PermissionEngine = class PermissionEngine {
return;
}
if (frappe.get_route()[1]) {
this.doctype_select.val(frappe.get_route()[1]);
this.doctype_select.set_value(frappe.get_route()[1]);
} else if (frappe.route_options) {
if (frappe.route_options.doctype) {
this.doctype_select.val(frappe.route_options.doctype);
this.doctype_select.set_value(frappe.route_options.doctype);
}
if (frappe.route_options.role) {
this.role_select.val(frappe.route_options.role);
this.role_select.set_value(frappe.route_options.role);
}
frappe.route_options = null;
}
@ -140,13 +141,11 @@ frappe.PermissionEngine = class PermissionEngine {
}
get_doctype() {
let doctype = this.doctype_select.val();
return this.doctype_select.get(0).selectedIndex == 0 ? null : doctype;
return this.doctype_select.get_value();
}
get_role() {
let role = this.role_select.val();
return this.role_select.get(0).selectedIndex == 0 ? null : role;
return this.role_select.get_value();
}
set_empty_message(message) {

View file

@ -72,9 +72,7 @@ class Workspace:
"""Returns true if Has Role is not set or the user is allowed."""
from frappe.utils import has_common
allowed = [
d.role for d in frappe.get_all("Has Role", fields=["role"], filters={"parent": self.doc.name})
]
allowed = [d.role for d in self.doc.roles]
custom_roles = get_custom_allowed_roles("page", self.doc.name)
allowed.extend(custom_roles)

View file

@ -8,7 +8,7 @@
"include_name_field": 0,
"is_standard": 1,
"list_name": "",
"modified": "2023-08-24 11:01:18.688875",
"modified": "2023-05-24 12:43:43.741781",
"modified_by": "Administrator",
"module": "Desk",
"name": "Main Workspace Tour",
@ -22,7 +22,7 @@
"steps": [
{
"description": "This is Awesomebar, it helps you to navigate anywhere in the system, find documents, reports, settings, create new records and many more things.",
"element_selector": "#navbar-search[aria-expanded=\"true\"]",
"element_selector": "#navbar-search",
"fieldtype": "0",
"has_next_condition": 0,
"hide_buttons": 0,

View file

@ -270,7 +270,9 @@ def get_open_count(doctype, name, items=None):
}
for d in items:
internal_link_for_doctype = links.get("internal_links", {}).get(d)
internal_link_for_doctype = links.get("internal_links", {}).get(d) or links.get(
"internal_and_external_links", {}
).get(d)
if internal_link_for_doctype:
internal_links_data_for_d = get_internal_links(doc, internal_link_for_doctype, d)
if internal_links_data_for_d["count"]:

View file

@ -25,8 +25,7 @@ def get_report_doc(report_name):
if doc.report_type == "Custom Report":
custom_report_doc = doc
reference_report = custom_report_doc.reference_report
doc = frappe.get_doc("Report", reference_report)
doc = get_reference_report(doc)
doc.custom_report = report_name
if custom_report_doc.json:
data = json.loads(custom_report_doc.json)
@ -172,9 +171,17 @@ def get_script(report_name):
"html_format": html_format,
"execution_time": frappe.cache.hget("report_execution_time", report_name) or 0,
"filters": report.filters,
"custom_report_name": report.name if report.get("is_custom_report") else None,
}
def get_reference_report(report):
if report.report_type != "Custom Report":
return report
reference_report = frappe.get_doc("Report", report.reference_report)
return get_reference_report(reference_report)
@frappe.whitelist()
@frappe.read_only()
def run(

View file

@ -1,12 +1,13 @@
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors
# License: MIT. See LICENSE
import imaplib
import poplib
import smtplib
from functools import wraps
import frappe
from frappe import _
from frappe.email.receive import Timed_IMAP4, Timed_IMAP4_SSL, Timed_POP3, Timed_POP3_SSL
from frappe.email.utils import get_port
from frappe.model.document import Document
from frappe.utils import cint
@ -101,9 +102,9 @@ class EmailDomain(Document):
self.incoming_port = get_port(self)
if self.use_imap:
conn_method = Timed_IMAP4_SSL if self.use_ssl else Timed_IMAP4
conn_method = imaplib.IMAP4_SSL if self.use_ssl else imaplib.IMAP4
else:
conn_method = Timed_POP3_SSL if self.use_ssl else Timed_POP3
conn_method = poplib.POP3_SSL if self.use_ssl else poplib.POP3
self.use_starttls = cint(self.use_imap and self.use_starttls and not self.use_ssl)
incoming_conn = conn_method(self.email_server, port=self.incoming_port)

View file

@ -49,10 +49,6 @@ class EmailSizeExceededError(frappe.ValidationError):
pass
class EmailTimeoutError(frappe.ValidationError):
pass
class LoginLimitExceeded(frappe.ValidationError):
pass
@ -75,11 +71,11 @@ class EmailServer:
"""Connect to IMAP"""
try:
if cint(self.settings.use_ssl):
self.imap = Timed_IMAP4_SSL(
self.imap = imaplib.IMAP4_SSL(
self.settings.host, self.settings.incoming_port, timeout=frappe.conf.get("pop_timeout")
)
else:
self.imap = Timed_IMAP4(
self.imap = imaplib.IMAP4(
self.settings.host, self.settings.incoming_port, timeout=frappe.conf.get("pop_timeout")
)
@ -109,11 +105,11 @@ class EmailServer:
# this method return pop connection
try:
if cint(self.settings.use_ssl):
self.pop = Timed_POP3_SSL(
self.pop = poplib.POP3_SSL(
self.settings.host, self.settings.incoming_port, timeout=frappe.conf.get("pop_timeout")
)
else:
self.pop = Timed_POP3(
self.pop = poplib.POP3(
self.settings.host, self.settings.incoming_port, timeout=frappe.conf.get("pop_timeout")
)
@ -170,7 +166,7 @@ class EmailServer:
for i, uid in enumerate(email_list[:100]):
try:
self.retrieve_message(uid, i + 1)
except (EmailTimeoutError, LoginLimitExceeded):
except (_socket.timeout, LoginLimitExceeded):
# get whatever messages were retrieved
break
@ -263,7 +259,7 @@ class EmailServer:
else:
msg = self.pop.retr(msg_num)
self.latest_messages.append(b"\n".join(msg[1]))
except EmailTimeoutError:
except _socket.timeout:
# propagate this error to break the loop
raise
@ -900,43 +896,3 @@ class InboundMail(Email):
"has_attachment": 1 if self.attachments else 0,
"seen": self.seen_status or 0,
}
class TimerMixin:
def __init__(self, *args, **kwargs):
self.timeout = kwargs.pop("timeout", 0.0)
self.elapsed_time = 0.0
self._super.__init__(self, *args, **kwargs)
if self.timeout:
# set per operation timeout to one-fifth of total pop timeout
self.sock.settimeout(self.timeout / 5.0)
def _getline(self, *args, **kwargs):
start_time = time.monotonic()
ret = self._super._getline(self, *args, **kwargs)
self.elapsed_time += time.monotonic() - start_time
if self.timeout and self.elapsed_time > self.timeout:
raise EmailTimeoutError
return ret
def quit(self, *args, **kwargs):
self.elapsed_time = 0.0
return self._super.quit(self, *args, **kwargs)
class Timed_POP3(TimerMixin, poplib.POP3):
_super = poplib.POP3
class Timed_POP3_SSL(TimerMixin, poplib.POP3_SSL):
_super = poplib.POP3_SSL
class Timed_IMAP4(TimerMixin, imaplib.IMAP4):
_super = imaplib.IMAP4
class Timed_IMAP4_SSL(TimerMixin, imaplib.IMAP4_SSL):
_super = imaplib.IMAP4_SSL

View file

@ -73,7 +73,7 @@ def create_email_account(email_id, password, enable_outgoing, default_outgoing=0
"enable_incoming": 1,
"append_to": append_to,
"is_dummy_password": 1,
"smtp_server": "localhost",
"smtp_server": "127.0.0.1",
"use_imap": 0,
}

View file

@ -422,7 +422,6 @@ before_request = [
"frappe.monitor.start",
"frappe.rate_limiter.apply",
]
after_request = ["frappe.rate_limiter.update", "frappe.monitor.stop", "frappe.recorder.dump"]
# Background Job Hooks
before_job = [

View file

@ -214,7 +214,7 @@ def get_google_calendar_object(g_calendar):
"token_uri": GoogleOAuth.OAUTH_URL,
"client_id": google_settings.client_id,
"client_secret": google_settings.get_password(fieldname="client_secret", raise_exception=False),
"scopes": "https://www.googleapis.com/auth/calendar/v3",
"scopes": ["https://www.googleapis.com/auth/calendar/v3"],
}
credentials = google.oauth2.credentials.Credentials(**credentials_dict)

View file

@ -135,6 +135,7 @@ class SiteMigration:
sync_customizations()
sync_languages()
flush_deferred_inserts()
frappe.model.sync.remove_orphan_doctypes()
frappe.get_single("Portal Settings").sync_menu()
frappe.get_single("Installed Applications").update_versions()

View file

@ -245,7 +245,7 @@ class Meta(Document):
def get_label(self, fieldname):
"""Get label of the given fieldname"""
if df := self.get_field(fieldname):
return df.label
return df.get("label")
if fieldname in DEFAULT_FIELD_LABELS:
return DEFAULT_FIELD_LABELS[fieldname]()

View file

@ -7,6 +7,8 @@
import os
import frappe
from frappe.cache_manager import clear_controller_cache
from frappe.model.base_document import get_controller
from frappe.modules.import_file import import_file_by_path
from frappe.modules.patch_handler import _patch_mode
from frappe.utils import update_progress_bar
@ -135,3 +137,37 @@ def get_doc_files(files, start_path):
files.append(doc_path)
return files
def remove_orphan_doctypes():
"""Find and remove any orphaned doctypes.
These are doctypes for which code and schema file is
deleted but entry is present in DocType table.
Note: Deleting the entry doesn't delete any data.
So this is supposed to be non-destrictive operation.
"""
doctype_names = frappe.get_all("DocType", {"custom": 0}, pluck="name")
orphan_doctypes = []
clear_controller_cache()
for doctype in doctype_names:
try:
get_controller(doctype=doctype)
except ImportError:
orphan_doctypes.append(doctype)
except Exception:
continue
if not orphan_doctypes:
return
print(f"Orphaned DocType(s) found: {', '.join(orphan_doctypes)}")
for i, name in enumerate(orphan_doctypes):
frappe.delete_doc("DocType", name, force=True, ignore_missing=True)
update_progress_bar("Deleting orphaned DocTypes", i, len(orphan_doctypes))
frappe.db.commit()
print()

View file

@ -228,6 +228,5 @@ frappe.patches.v15_0.remove_background_jobs_from_dropdown
frappe.desk.doctype.form_tour.patches.introduce_ui_tours
execute:frappe.delete_doc_if_exists("Workspace", "Customization")
execute:frappe.db.set_single_value("Document Naming Settings", "default_amend_naming", "Amend Counter")
execute:frappe.delete_doc_if_exists("DocType", "Error Snapshot")
frappe.patches.v15_0.move_event_cancelled_to_status
frappe.patches.v15_0.set_file_type

View file

@ -20,7 +20,7 @@ class NetworkPrinterSettings(Document):
server_ip: DF.Data
# end: auto-generated types
@frappe.whitelist()
def get_printers_list(self, ip="localhost", port=631):
def get_printers_list(self, ip="127.0.0.1", port=631):
printer_list = []
try:
import cups

View file

@ -120,6 +120,12 @@
<path d="M3.14886 8.08422L5.23297 6.00012L3.14886 3.91602" stroke="var(--icon-stroke)" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg" id="icon-external-link">
<path d="M9.75003 7.83333V9C9.75003 9.82843 9.07846 10.5 8.25003 10.5H3.25C2.42157 10.5 1.75 9.82843 1.75 9V4C1.75 3.17158 2.42151 2.50001 3.24993 2.50001C3.62327 2.5 4.02808 2.5 4.4167 2.5" stroke="var(--icon-stroke)" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6.75 1.5H10.25V4.5" stroke="var(--icon-stroke)" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M6.75 5L9.75 2" stroke="var(--icon-stroke)" stroke-linecap="round" stroke-linejoin="round"/>
</symbol>
<symbol viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg" fill="#112B42" id="icon-up">
<path d="M3 5h6L6 2 3 5z"></path>
<path opacity=".5" d="M6 10l3-3H3l3 3z"></path>
@ -302,7 +308,7 @@
<path stroke="#E24C4C" stroke-linejoin="round" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M13.2 14.4v8.571"></path>
</symbol>
<symbol viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" id="icon-external-link">
<symbol viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" id="icon-pen">
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.348 3.207a1 1 0 0 1 1.415 0l1.03 1.03a1 1 0 0 1 0 1.415l-6.626 6.626L2.5 13.5l1.222-3.667 6.626-6.626z" stroke="var(--icon-stroke)" stroke-linecap="round" stroke-linejoin="round"></path>
</symbol>

Before

Width:  |  Height:  |  Size: 113 KiB

After

Width:  |  Height:  |  Size: 114 KiB

View file

@ -1,22 +1,40 @@
<template>
<div class="tree-node" :class="{ opened: node.open }">
<span
ref="reference"
class="tree-link"
@click="emit('node-click', node)"
:class="{ active: node.value === selected_node.value }"
:disabled="node.fetching"
@mouseover="onMouseover"
@mouseleave="onMouseleave"
>
<div v-html="icon"></div>
<a class="tree-label">{{ node.label }}</a>
<!-- Icon open File record in new tab -->
<a
v-if="node.is_leaf"
:href="open_file(node.value)"
:disabled="node.fetching"
target="_blank"
class="file-doc-link ml-2"
v-html="frappe.utils.icon('external-link', 'sm')"
@click.stop
/>
</span>
<div v-if="node.file_url && frappe.utils.is_image_file(node.file_url)">
<div v-show="isOpen" class="popover" ref="popover" role="tooltip">
<img :src="node.file_url" />
</div>
</div>
<ul class="tree-children" v-show="node.open">
<TreeNode
v-for="n in node.children"
:key="n.value"
:node="n"
:selected_node="selected_node"
@node-click="n => emit('node-click', n)"
@load-more="n => emit('load-more', n)"
@node-click="(n) => emit('node-click', n)"
@load-more="(n) => emit('load-more', n)"
/>
<button
class="btn btn-xs btn-load-more"
@ -32,7 +50,8 @@
<script setup>
import TreeNode from "./TreeNode.vue";
import { computed } from "vue";
import { createPopper } from "@popperjs/core";
import { ref, computed } from "vue";
// props
const props = defineProps({
@ -50,7 +69,7 @@ let icon = computed(() => {
open: frappe.utils.icon("folder-open", "md"),
closed: frappe.utils.icon("folder-normal", "md"),
leaf: frappe.utils.icon("primitive-dot", "xs"),
search: frappe.utils.icon("search")
search: frappe.utils.icon("search"),
};
if (props.node.by_search) return icons.search;
@ -59,6 +78,52 @@ let icon = computed(() => {
return icons.closed;
});
let open_file = (filename) => {
return frappe.utils.get_form_link("File", filename);
};
const reference = ref(null);
const popover = ref(null);
let isOpen = ref(false);
let popper = ref(null);
function setupPopper() {
if (!popper.value) {
popper.value = createPopper(reference.value, popover.value, {
placement: "top",
modifiers: [
{
name: "offset",
options: {
offset: [0, 4],
},
},
],
});
} else {
popper.value.update();
}
}
let hoverTimer = null;
let leaveTimer = null;
function onMouseover() {
leaveTimer && clearTimeout(leaveTimer) && (leaveTimer = null);
hoverTimer && clearTimeout(hoverTimer);
hoverTimer = setTimeout(() => {
isOpen.value = true;
setupPopper();
}, 800);
}
function onMouseleave() {
hoverTimer && clearTimeout(hoverTimer) && (hoverTimer = null);
leaveTimer && clearTimeout(leaveTimer);
leaveTimer = setTimeout(() => {
isOpen.value = false;
}, 100);
}
</script>
<style scoped>
@ -66,4 +131,7 @@ let icon = computed(() => {
margin-left: 1.6rem;
margin-top: 0.5rem;
}
.popover {
padding: 10px;
}
</style>

View file

@ -221,7 +221,7 @@ frappe.ui.form.ControlLink = class ControlLink extends frappe.ui.form.ControlDat
return $("<li></li>")
.data("item.autocomplete", d)
.prop("aria-selected", "false")
.html(`<a><p title="${_label}">${html}</p></a>`)
.html(`<a><p title="${frappe.utils.escape_html(_label)}">${html}</p></a>`)
.get(0);
},
sort: function () {

View file

@ -249,6 +249,7 @@ frappe.ui.form.Dashboard = class FormDashboard {
this.data = this.frm.meta.__dashboard || {};
if (!this.data.transactions) this.data.transactions = [];
if (!this.data.internal_links) this.data.internal_links = {};
if (!this.data.internal_and_external_links) this.data.internal_and_external_links = {};
this.filter_permissions();
}

View file

@ -1837,7 +1837,7 @@ frappe.ui.form.Form = class FrappeForm {
<a class="indicator ${get_color(doc || {})}"
href="/app/${frappe.router.slug(df.options)}/${escaped_name}"
data-doctype="${df.options}"
data-name="${value}">
data-name="${frappe.utils.escape_html(value)}">
${label}
</a>
`;

View file

@ -1,24 +1,44 @@
<div class="clearfix"></div>
{% for(var i=0, l=addr_list.length; i<l; i++) { %}
<div class="address-box">
<p class="h6">
{%= i+1 %}. {%= addr_list[i].address_title %}{% if(addr_list[i].address_type!="Other") { %}
<span class="text-muted">({%= __(addr_list[i].address_type) %})</span>{% } %}
{% if(addr_list[i].is_primary_address) { %}
<span class="text-muted">({%= __("Primary") %})</span>{% } %}
{% if(addr_list[i].is_shipping_address) { %}
<span class="text-muted">({%= __("Shipping") %})</span>{% } %}
{% if(addr_list[i].disabled) { %}
<span class="text-muted">({%= __("Disabled") %})</span>{% } %}
{% for (const addr of addr_list) { %}
<div class="address-box">
<a
href="{%= frappe.utils.get_form_link('Address', addr.name) %}"
class="btn btn-xs btn-default edit-btn"
title="{%= __('Edit') %}"
>
<svg class="icon icon-xs">
<use href="#icon-edit"></use>
</svg>
</a>
<p class="h6 flex flex-wrap">
<span>{%= addr.address_title %}</span>
{% if (addr.address_type !== "Other") { %}
&nbsp;&#183;&nbsp;
<span class="text-muted">{%= __(addr.address_type) %}</span>
{% } %}
{% if (addr.is_primary_address) { %}
&nbsp;&#183;&nbsp;
<span class="text-muted">{%= __("Primary Address") %}</span>
{% } %}
{% if (addr.is_shipping_address) { %}
&nbsp;&#183;&nbsp;
<span class="text-muted">{%= __("Shipping Address") %}</span>
{% } %}
{% if (addr.disabled) { %}
&nbsp;&#183;&nbsp;
<span class="text-muted">{%= __("Disabled") %}</span>
{% } %}
</p>
<p>{%= addr.display %}</p>
</div>
{% } %}
<a href="/app/Form/Address/{%= encodeURIComponent(addr_list[i].name) %}" class="btn btn-default btn-xs pull-right"
style="margin-top:-3px; margin-right: -5px;">
{%= __("Edit") %}</a>
</p>
<p>{%= addr_list[i].display %}</p>
</div>
{% if (!addr_list.length) { %}
<p class="text-muted small">{%= __("No address added yet.") %}</p>
{% } %}
{% if(!addr_list.length) { %}
<p class="text-muted small">{%= __("No address added yet.") %}</p>
{% } %}
<p><button class="btn btn-xs btn-default btn-address">{{ __("New Address") }}</button></p>
<p>
<button class="btn btn-xs btn-default btn-address">
{{ __("New Address") }}
</button>
</p>

View file

@ -1,42 +1,74 @@
<div class="clearfix"></div>
{% for(const contact of contact_list) { %}
{% for (const contact of contact_list) { %}
<div class="address-box">
<p class="h6 flex align-center">
{%= contact.first_name %} {%= contact.last_name %}
{% if(contact.is_primary_contact) { %}
<span class="text-muted">&nbsp;({%= __("Primary") %})</span>
<a
href="{%= frappe.utils.get_form_link('Contact', contact.name) %}"
class="btn btn-xs btn-default edit-btn"
title="{%= __('Edit') %}"
>
<svg class="icon icon-xs">
<use href="#icon-edit"></use>
</svg>
</a>
<p class="h6 flex flex-wrap">
<span>{%= contact.first_name %} {%= contact.last_name %}</span>
{% if (contact.is_primary_contact) { %}
&nbsp;&#183;&nbsp;
<span class="text-muted">{%= __("Primary Contact") %}</span>
{% } %}
{% if(contact.designation){ %}
<span class="text-muted">&ndash; {%= contact.designation %}</span>
{% if (contact.is_billing_contact) { %}
&nbsp;&#183;&nbsp;
<span class="text-muted">{%= __("Billing Contact") %}</span>
{% } %}
{% if (contact.designation){ %}
&nbsp;&#183;&nbsp;
<span class="text-muted"> {%= contact.designation %}</span>
{% } %}
<a href="/app/Form/Contact/{%= encodeURIComponent(contact.name) %}"
class="btn btn-xs btn-default ml-auto">
{%= __("Edit") %}
</a>
</p>
{% if (contact.phone || contact.mobile_no || contact.phone_nos.length > 0) { %}
<p>
{% if(contact.phone) { %}
<a href="tel:{%= frappe.utils.escape_html(contact.phone) %}">{%= frappe.utils.escape_html(contact.phone) %}</a> &#183; <span class="text-muted">{%= __("Primary Phone") %}</span><br>
{% if (contact.phone) { %}
<a href="tel:{%= frappe.utils.escape_html(contact.phone) %}">
{%= frappe.utils.escape_html(contact.phone) %}
</a>
&#183;
<span class="text-muted">{%= __("Primary Phone") %}</span>
<br>
{% endif %}
{% if(contact.mobile_no) { %}
<a href="tel:{%= frappe.utils.escape_html(contact.mobile_no) %}">{%= frappe.utils.escape_html(contact.mobile_no) %}</a> &#183; <span class="text-muted">{%= __("Primary Mobile") %}</span><br>
{% if (contact.mobile_no) { %}
<a href="tel:{%= frappe.utils.escape_html(contact.mobile_no) %}">
{%= frappe.utils.escape_html(contact.mobile_no) %}
</a>
&#183;
<span class="text-muted">{%= __("Primary Mobile") %}</span>
<br>
{% endif %}
{% if(contact.phone_nos) { %}
{% for(const phone_no of contact.phone_nos) { %}
<a href="tel:{%= frappe.utils.escape_html(phone_no.phone) %}">{%= frappe.utils.escape_html(phone_no.phone) %}</a><br>
{% if (contact.phone_nos) { %}
{% for (const phone_no of contact.phone_nos) { %}
<a href="tel:{%= frappe.utils.escape_html(phone_no.phone) %}">
{%= frappe.utils.escape_html(phone_no.phone) %}
</a>
<br>
{% } %}
{% endif %}
</p>
{% endif %}
{% if (contact.email_id || contact.email_ids.length > 0) { %}
<p>
{% if(contact.email_id) { %}
<a href="mailto:{%= frappe.utils.escape_html(contact.email_id) %}">{%= frappe.utils.escape_html(contact.email_id) %}</a> &#183; <span class="text-muted">{%= __("Primary Email") %}</span><br>
{% if (contact.email_id) { %}
<a href="mailto:{%= frappe.utils.escape_html(contact.email_id) %}">
{%= frappe.utils.escape_html(contact.email_id) %}
</a>
&#183;
<span class="text-muted">{%= __("Primary Email") %}</span>
<br>
{% endif %}
{% if(contact.email_ids) { %}
{% for(const email_id of contact.email_ids) { %}
<a href="mailto:{%= frappe.utils.escape_html(email_id.email_id) %}">{%= frappe.utils.escape_html(email_id.email_id) %}</a><br>
{% if (contact.email_ids) { %}
{% for (const email_id of contact.email_ids) { %}
<a href="mailto:{%= frappe.utils.escape_html(email_id.email_id) %}">
{%= frappe.utils.escape_html(email_id.email_id) %}
</a>
<br>
{% } %}
{% endif %}
</p>
@ -48,9 +80,13 @@
{% endif %}
</div>
{% } %}
{% if(!contact_list.length) { %}
<p class="text-muted small">{%= __("No contacts added yet.") %}</p>
{% if (!contact_list.length) { %}
<p class="text-muted small">{%= __("No contacts added yet.") %}</p>
{% } %}
<p><button class="btn btn-xs btn-default btn-contact">
{{ __("New Contact") }}</button>
<p>
<button class="btn btn-xs btn-default btn-contact">
{{ __("New Contact") }}
</button>
</p>

View file

@ -378,7 +378,8 @@ frappe.ui.form.Toolbar = class Toolbar {
function () {
me.frm.copy_doc();
},
true
true,
"Shift+D"
);
}

View file

@ -214,14 +214,17 @@ frappe.views.ListGroupBy = class ListGroupBy {
}
get_dropdown_html(field, fieldtype, applied = false) {
let label = field.name == null ? __("Not Set") : field.name;
if (label === frappe.session.user) {
let label;
if (field.name == null) {
label = __("Not Set");
} else if (field.name === frappe.session.user) {
label = __("Me");
} else if (fieldtype && fieldtype == "Check") {
label = label == "0" ? __("No") : __("Yes");
label = field.name == "0" ? __("No") : __("Yes");
} else {
label = __(field.name);
}
let value = field.name == null ? "" : encodeURIComponent(field.name);
let applied_html = applied
? `<span class="applied"> ${frappe.utils.icon("tick", "xs")} </span>`
: "";

View file

@ -26,7 +26,7 @@ frappe.ui.LinkPreview = class {
identify_doc() {
if (this.is_link) {
this.doctype = this.element.attr("data-doctype");
this.name = this.element.attr("data-name");
this.name = frappe.utils.unescape_html(this.element.attr("data-name"));
this.href = this.element.attr("href");
} else {
this.href = this.element

View file

@ -3,83 +3,83 @@ frappe.provide("frappe.help.help_links");
frappe.help.help_links["data-import-tool"] = [
{
label: "Importing and Exporting Data",
url: "https://frappe.github.io/erpnext/user/manual/en/setting-up/data/data-import-tool.html",
url: "https://docs.erpnext.com/docs/user/manual/en/data",
},
];
frappe.help.help_links["modules/Setup"] = [
{
label: "Users and Permissions",
url: "http://frappe.github.io/erpnext/user/manual/en/setting-up/users-and-permissions/",
url: "https://frappeframework.com/docs/user/en/basics/users-and-permissions",
},
{
label: "Settings",
url: "http://frappe.github.io/erpnext/user/manual/en/setting-up/settings/",
label: "System Settings",
url: "https://docs.erpnext.com/docs/user/manual/en/system-settings",
},
{
label: "Data Management",
url: "http://frappe.github.io/erpnext/user/manual/en/setting-up/data/",
url: "https://docs.erpnext.com/docs/user/manual/en/data",
},
{ label: "Email", url: "http://frappe.github.io/erpnext/user/manual/en/setting-up/email/" },
{ label: "Printing", url: "http://frappe.github.io/erpnext/user/manual/en/setting-up/print/" },
{ label: "Email", url: "https://docs.erpnext.com/docs/user/manual/en/email" },
{ label: "Printing and Branding", url: "https://docs.erpnext.com/docs/user/manual/en/print" },
];
frappe.help.help_links["List/User"] = [
{
label: "Adding Users",
url: "https://frappe.github.io/erpnext/user/manual/en/setting-up/users-and-permissions/adding-users",
url: "https://docs.erpnext.com/docs/user/manual/en/adding-users",
},
{
label: "Rename User",
url: "https://frappe.github.io/erpnext/user/manual/en/setting-up/articles/rename-user",
url: "https://docs.erpnext.com/docs/user/manual/en/renaming-documents",
},
];
frappe.help.help_links["permission-manager"] = [
{
label: "Role Permissions Manager",
url: "https://frappe.github.io/erpnext/user/manual/en/setting-up/users-and-permissions/role-based-permissions",
url: "https://frappeframework.com/docs/user/en/basics/users-and-permissions#role-permissions-manager",
},
];
frappe.help.help_links["user-permissions"] = [
{
label: "User Permissions",
url: "https://frappe.github.io/erpnext/user/manual/en/setting-up/users-and-permissions/user-permissions",
url: "https://frappeframework.com/docs/user/en/basics/users-and-permissions#user-permissions",
},
];
frappe.help.help_links["Form/System Settings"] = [
{
label: "System Settings",
url: "https://frappe.github.io/erpnext/user/manual/en/setting-up/settings/system-settings",
url: "https://docs.erpnext.com/docs/user/manual/en/system-settings",
},
];
frappe.help.help_links["List/Email Account"] = [
{
label: "Email Account",
url: "https://frappe.github.io/erpnext/user/manual/en/setting-up/email/email-account",
url: "https://docs.erpnext.com/docs/user/manual/en/email-account",
},
];
frappe.help.help_links["List/Notification"] = [
{
label: "Notification",
url: "https://frappe.github.io/erpnext/user/manual/en/setting-up/email/email-alerts",
url: "https://docs.erpnext.com/docs/user/manual/en/notifications",
},
];
frappe.help.help_links["Form/Print Settings"] = [
{
label: "Print Settings",
url: "https://frappe.github.io/erpnext/user/manual/en/setting-up/print/print-settings",
url: "https://docs.erpnext.com/docs/user/manual/en/print-settings",
},
];
frappe.help.help_links["print-format-builder"] = [
{
label: "Print Format Builder",
url: "https://frappe.github.io/erpnext/user/manual/en/setting-up/print/print-format-builder",
url: "https://docs.erpnext.com/docs/user/manual/en/print-format-builder",
},
];

View file

@ -414,7 +414,9 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList {
.then((settings) => {
frappe.dom.eval(settings.script || "");
frappe.after_ajax(() => {
this.report_settings = this.get_local_report_settings();
this.report_settings = this.get_local_report_settings(
settings.custom_report_name
);
this.report_settings.html_format = settings.html_format;
this.report_settings.execution_time = settings.execution_time || 0;
frappe.query_reports[this.report_name] = this.report_settings;
@ -432,10 +434,12 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList {
});
}
get_local_report_settings() {
get_local_report_settings(custom_report_name) {
let report_script_name =
this.report_doc.report_type === "Custom Report"
? this.report_doc.reference_report
? custom_report_name
? custom_report_name
: this.report_doc.reference_report
: this.report_name;
return frappe.query_reports[report_script_name] || {};
}

View file

@ -11,11 +11,11 @@ frappe.ui.OnboardingTour = class OnboardingTour {
allowClose: false,
padding: 10,
overlayClickNext: false,
keyboardControl: true,
keyboardControl: false,
nextBtnText: __("Next"),
prevBtnText: __("Previous"),
doneBtnText: __("Done"),
closeBtnText: __("Close"),
closeBtnText: __("Skip"),
opacity: 0.5,
onHighlighted: (step) => {
frappe.ui.next_form_tour = step.options.step_info?.next_form_tour;

View file

@ -125,14 +125,8 @@ export const useStore = defineStore("workflow-builder-store", () => {
let docfield = "Workflow Document State";
let df = frappe.model.get_new_doc(docfield);
df.name = frappe.utils.get_random(8);
df.state = data.state;
Object.assign(df, data);
df.doc_status = doc_status_map[data.doc_status];
df.allow_edit = data.allow_edit;
df.update_field = data.update_field;
df.update_value = data.update_value;
df.is_optional_state = data.is_optional_state;
df.next_action_email_template = data.next_action_email_template;
df.message = data.message;
return df;
}
@ -146,14 +140,11 @@ export const useStore = defineStore("workflow-builder-store", () => {
return states;
}
function get_transition_df({ state, action, next_state, allowed }) {
function get_transition_df(data) {
let docfield = "Workflow Transition";
let df = frappe.model.get_new_doc(docfield);
df.name = frappe.utils.get_random(8);
df.state = state;
df.action = action;
df.next_state = next_state;
df.allowed = allowed;
Object.assign(df, data);
return df;
}
@ -180,10 +171,9 @@ export const useStore = defineStore("workflow-builder-store", () => {
}
transitions.push(
get_transition_df({
...action.data,
state: action.data.from,
action: action.data.action,
next_state: action.data.to,
allowed: action.data.allowed,
})
);
});

View file

@ -149,9 +149,19 @@ select.form-control {
border-radius: var(--border-radius);
font-size: var(--text-sm);
word-wrap: break-word;
position: relative;
p:last-child {
margin-bottom: 0;
}
.edit-btn {
position: absolute;
top: 5px;
right: 5px;
display: flex;
justify-content: center;
align-items: center;
padding: var(--padding-sm);
}
}
.action-btn {
position: absolute;

View file

@ -205,4 +205,10 @@
margin-left: calc(-1 * var(--margin-sm));
}
}
&:hover.overlap {
.avatar:not(:first-child) {
margin-left: var(--margin-xs);
}
}
}

View file

@ -58,6 +58,19 @@
}
}
.tree-link .file-doc-link {
opacity: 0;
}
.tree-link:hover .file-doc-link {
opacity: 0.4;
}
.tree-link .file-doc-link:hover {
transform: scale(1.1);
opacity: 0.5;
}
.tree-hover {
background-color: var(--highlight-color);
min-height: 25px;

View file

@ -56,15 +56,14 @@ class RateLimiter:
raise frappe.TooManyRequestsError
def update(self):
self.end = datetime.utcnow()
self.duration = int((self.end - self.start).total_seconds() * 1000000)
self.record_request_end()
pipeline = frappe.cache.pipeline()
pipeline.incrby(self.key, self.duration)
pipeline.expire(self.key, self.window)
pipeline.execute()
def headers(self):
self.record_request_end()
headers = {
"X-RateLimit-Reset": self.reset,
"X-RateLimit-Limit": self.limit,
@ -77,6 +76,12 @@ class RateLimiter:
return headers
def record_request_end(self):
if self.end is not None:
return
self.end = datetime.utcnow()
self.duration = int((self.end - self.start).total_seconds() * 1000000)
def respond(self):
if self.rejected:
return Response(_("Too Many Requests"), status=429)

View file

@ -1,2 +1,2 @@
<input type="text" autocomplete="off" class="search-field" data-fieldtype="Text"
data-fieldname="feedback_comments" placeholder="Search {{ title }}" spellcheck="false"></input>
data-fieldname="feedback_comments" placeholder="Search {{ title }}" spellcheck="false">

View file

@ -43,7 +43,7 @@
</td>
{% endif %}
{% endfor %}
</td>
</tr>
{% endfor %}
</tbody>
</table>

View file

@ -1,6 +1,6 @@
<p>{{_("Dear User,")}}</p>
<p>{{_("We have received a request for deletion of {0} data associated with: {1}").format(host_name, email)}}.</p>
<p>{{_("This will permanently remove your data.")}}</b>
<p>{{_("This will permanently remove your data.")}}</p>
<p>{{_("Click on the link below to verify your request")}}.</p>
<p style="margin: 30px 0px;">

View file

@ -6,7 +6,6 @@
class="avatar-frame standard-image"
src="{{ image or user_info.image }}"
title="{{ full_name or user_info.name }}">
</span>
{% else %}
<span
class="avatar-frame standard-image"

View file

@ -6,7 +6,7 @@
{% set count = (parents | length) + 1 %}
{% for parent in parents %}
<li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem" class="breadcrumb-item">
<a itemprop="item" href="{{ url_prefix }}{{ parent.route | abs_url }}" itemprop="url">
<a itemprop="item" href="{{ url_prefix }}{{ parent.route | abs_url }}">
<span itemprop="name">{{ parent.title or parent.label or parent.name or "" }}</span>
<meta itemprop="position" content="{{ loop.index }}" />
</a>

View file

@ -2,7 +2,7 @@
{%- for name in metatags %}
{%- set content = metatags.get(name, '') -%}
{%- if content -%}
<meta {% if name.startswith('og:') %}property="{{ name }}"{% else %}name="{{ name }}"{% endif %} content="{{ content | striptags | escape }}">
<meta {% if name.startswith('og:') %}property="{{ name }}" {% else %}name="{{ name }}"{% endif %} content="{{ content | striptags | escape }}">
{%- endif -%}
{%- endfor -%}
{%- endif -%}

View file

@ -3,7 +3,7 @@
<form action='/search'>
<input name='q' class='form-control navbar-search' type='text'
value='{{ frappe.form_dict.q|e if frappe.form_dict.q else ''}}'
{% if not frappe.form_dict.q%}placeholder="{{ _("Search...") }}"{% endif %}>
{% if not frappe.form_dict.q %}placeholder="{{ _("Search...") }}"{% endif %}>
</form>
</li>
{% endif %}

View file

@ -20,7 +20,7 @@
{{- frappe.format(row[col.fieldname], col, row) -}}
</td>
{% endfor %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</table>

View file

@ -28,7 +28,7 @@
</div>
</div>
{% if frappe.form_dict.scope %}
<input type="text" hidden name="scope" value="{{ frappe.sanitize_html(frappe.form_dict.scope) }}">
<input type="text" hidden name="scope" value="{{ frappe.utils.escape_html(frappe.form_dict.scope) }}">
{% endif %}
</form>
</div>

View file

@ -138,7 +138,7 @@ data-fieldname="{{ df.fieldname }}" data-fieldtype="{{ df.fieldtype }}"
fill="transparent" stroke="#1F272E" stroke-width="2"
xmlns="http://www.w3.org/2000/svg" id="icon-tick"
style="width: 12px; height: 12px; margin-top: 5px;">
<path d="M2 9.66667L5.33333 13L14 3" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M2 9.66667L5.33333 13L14 3" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
{% elif df.fieldtype=="Check" and not doc[df.fieldname] %}
<!-- empty -->

View file

@ -1,3 +1,4 @@
import json
import sys
from contextlib import contextmanager
from random import choice
@ -6,13 +7,14 @@ from time import time
from unittest.mock import patch
import requests
from filetype import guess_mime
from semantic_version import Version
from werkzeug.test import TestResponse
import frappe
from frappe.installer import update_site_config
from frappe.tests.utils import FrappeTestCase, patch_hooks
from frappe.utils import get_site_url, get_test_client
from frappe.utils import cint, get_site_url, get_test_client
try:
_site = frappe.local.site
@ -325,3 +327,44 @@ def before_request(*args, **kwargs):
def after_request(*args, **kwargs):
_test_REQ_HOOK["after_request"] = time()
class TestResponse(FrappeAPITestCase):
def test_generate_pdf(self):
response = self.get(
f"/api/method/frappe.utils.print_format.download_pdf",
{"sid": self.sid, "doctype": "User", "name": "Guest"},
)
self.assertEqual(response.status_code, 200)
self.assertEqual(response.headers["content-type"], "application/pdf")
self.assertGreater(cint(response.headers["content-length"]), 0)
self.assertEqual(guess_mime(response.data), "application/pdf")
def test_binary_and_csv_response(self):
def download_template(file_type):
filters = json.dumps({})
fields = json.dumps({"User": ["name"]})
return self.post(
"/api/method/frappe.core.doctype.data_import.data_import.download_template",
{
"sid": self.sid,
"doctype": "User",
"export_fields": fields,
"export_filters": filters,
"file_type": file_type,
},
)
response = download_template("Excel")
self.assertEqual(response.status_code, 200)
self.assertEqual(response.headers["content-type"], "application/octet-stream")
self.assertGreater(cint(response.headers["content-length"]), 0)
self.assertEqual(
guess_mime(response.data), "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
)
response = download_template("CSV")
self.assertEqual(response.status_code, 200)
self.assertIn("text/csv", response.headers["content-type"])
self.assertGreater(cint(response.headers["content-length"]), 0)

View file

@ -252,7 +252,7 @@ def get_dashboard_for_test_doctype_a_with_test_child_table_with_link_to_doctype_
data = {
"fieldname": "test_doctype_a_with_test_child_table_with_link_to_doctype_b",
"internal_links": {
"internal_and_external_links": {
"Test Doctype B With Child Table With Link To Doctype A": [
"child_table",
"test_doctype_b_with_test_child_table_with_link_to_doctype_a",
@ -264,7 +264,7 @@ def get_dashboard_for_test_doctype_a_with_test_child_table_with_link_to_doctype_
}
dashboard.fieldname = data["fieldname"]
dashboard.internal_links = data["internal_links"]
dashboard.internal_and_external_links = data["internal_and_external_links"]
dashboard.transactions = data["transactions"]
return dashboard

View file

@ -936,7 +936,7 @@ class TestTransactionManagement(FrappeTestCase):
# Treat same DB as replica for tests, a separate connection will be opened
class TestReplicaConnections(FrappeTestCase):
def test_switching_to_replica(self):
with patch.dict(frappe.local.conf, {"read_from_replica": 1, "replica_host": "localhost"}):
with patch.dict(frappe.local.conf, {"read_from_replica": 1, "replica_host": "127.0.0.1"}):
def db_id():
return id(frappe.local.db)

View file

@ -8,7 +8,7 @@ from contextlib import contextmanager
from unittest.mock import patch
import frappe
from frappe.model.base_document import BaseDocument
from frappe.model.base_document import BaseDocument, get_controller
from frappe.utils import cint
datetime_like_types = (datetime.datetime, datetime.date, datetime.time, datetime.timedelta)
@ -77,6 +77,12 @@ class FrappeTestCase(unittest.TestCase):
else:
self.assertEqual(expected, actual, msg=msg)
def normalize_html(self, code: str) -> str:
"""Formats HTML consistently so simple string comparisons can work on them."""
from bs4 import BeautifulSoup
return BeautifulSoup(code, "html.parser").prettify(formatter=None)
@contextmanager
def assertQueryCount(self, count):
queries = []
@ -247,3 +253,21 @@ def patch_hooks(overridden_hoooks):
with patch.object(frappe, "get_hooks", patched_hooks):
yield
def check_orpahned_doctypes():
"""Check that all doctypes in DB actually exist after patch test"""
doctypes = frappe.get_all("DocType", {"custom": 0}, pluck="name")
orpahned_doctypes = []
for doctype in doctypes:
try:
get_controller(doctype)
except ImportError:
orpahned_doctypes.append(doctype)
if orpahned_doctypes:
frappe.throw(
"Following doctypes exist in DB without controller.\n {}".format("\n".join(orpahned_doctypes))
)

View file

@ -9,7 +9,6 @@ Action,aksie,
Actions,aksies,
Active,aktiewe,
Add,Voeg,
Add Comment,Voeg kommentaar by,
Add Row,Voeg ry by,
Address,adres,
Address Line 2,Adreslyn 2,
@ -144,7 +143,6 @@ Monday,Maandag,
Monthly,maandelikse,
More,meer,
More Information,Meer inligting,
More...,Meer ...,
Move,skuif,
My Account,My rekening,
New Address,Nuwe adres,
@ -157,7 +155,6 @@ No items found.,Geen items gevind nie.,
None,Geen,
Not Permitted,Nie toegelaat,
Not active,Nie aktief nie,
Notes,notas,
Number,aantal,
Online,Online,
Operation,operasie,
@ -167,17 +164,12 @@ Owner,Eienaar,
Page Missing or Moved,Bladsy ontbreek of verskuif,
Parameter,parameter,
Password,wagwoord,
Payment Gateway,Betaling Gateway,
Payment Gateway Name,Betaling Gateway Naam,
Payments,betalings,
Period,tydperk,
Pincode,PIN-kode,
Plan Name,Plan Naam,
Please enable pop-ups,Aktiveer pop-ups,
Please select Company,Kies asseblief Maatskappy,
Please select {0},Kies asseblief {0},
Please set Email Address,Stel asseblief e-pos adres in,
Portal,portaal,
Portal Settings,Portal instellings,
Preview,voorskou,
Primary,primêre,
@ -222,7 +214,6 @@ Salutation,Salueer,
Sample,monster,
Saturday,Saterdag,
Saved,gered,
Scan Barcode,Skandeer strepieskode,
Scheduled,geskeduleer,
Search,Soek,
Secret Key,Geheime Sleutel,
@ -237,7 +228,6 @@ Settings,instellings,
Shipping,Gestuur,
Short Name,Kort naam,
Slideshow,skyfievertoning,
Some information is missing,Sommige inligting ontbreek,
Source,Bron,
Source Name,Bron Naam,
Standard,Standard,
@ -247,7 +237,6 @@ State,staat,
Stopped,gestop,
Subject,Onderwerp,
Submit,Indien,
Successful,Suksesvol,
Summary,opsomming,
Sunday,Sondag,
System Manager,Stelselbestuurder,
@ -260,11 +249,9 @@ The page you are looking for is missing. This could be because it is moved or th
Timespan,Tydsverloop,
To,om,
To Date,Tot op hede,
Tools,gereedskap,
Traceback,Spoor terug,
URL,URL,
Unsubscribed,uitgeteken,
Use Sandbox,Gebruik Sandbox,
User,gebruiker,
User ID,Gebruikers-ID,
Users,gebruikers,
@ -569,7 +556,6 @@ Bulk Delete,Grootmaatverwydering,
Bulk Edit {0},Grootmaat wysig {0},
Bulk Rename,Bulk Hernoem,
Bulk Update,Grootmaat Update,
Busy,Besig,
Button,Button,
Button Help,Knoppie Hulp,
Button Label,Knoppie,
@ -706,7 +692,6 @@ Compiled Successfully,Suksesvol saamgestel,
Complete By,Voltooi By,
Complete Registration,Voltooi Registrasie,
Complete Setup,Voltooi instellings,
Completed By,Voltooi deur,
Compose Email,Stel e-pos saam,
Condition Detail,Toestanddetail,
Conditions,voorwaardes,
@ -1691,7 +1676,7 @@ Not a valid user,Nie &#39;n geldige gebruiker nie,
Not a zip file,Nie &#39;n zip-lêer nie,
Not allowed for {0}: {1},Nie toegelaat vir {0}: {1},
"You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4}","Nie toegelaat om {0} toegang te kry nie omdat dit gekoppel is aan {1} &#39;{2}&#39; in ry {3}, velde {4}",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},"Nie toegelaat om hierdie {0} rekord toegang te kry nie omdat dit gekoppel is aan {1} &#39;{2}&#39; in velde {3}",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},Nie toegelaat om hierdie {0} rekord toegang te kry nie omdat dit gekoppel is aan {1} &#39;{2}&#39; in velde {3},
Not allowed to Import,Nie toegelaat om in te voer nie,
Not allowed to change {0} after submission,Nie toegelaat om {0} te verander na indiening nie,
Not allowed to print cancelled documents,Nie toegelaat om gekanselleerde dokumente te druk nie,
@ -1819,7 +1804,6 @@ Path to private Key File,Pad na privaat sleutellêer,
PayPal Settings,PayPal-instellings,
PayPal payment gateway settings,PayPal-betaling gateway instellings,
Payment Cancelled,Betaling gekanselleer,
Payment Failed,Betaling misluk,
Payment Success,Betaal Sukses,
Pending Approval,Hangende goedkeuring,
Pending Verification,Hangende verifikasie,
@ -3216,7 +3200,6 @@ Click on the link below to approve the request,Klik op die skakel hieronder om d
Click on the lock icon to toggle public/private,Klik op die slotikoon om publiek / privaat te skakel,
Click on {0} to generate Refresh Token.,Klik op {0} om Refresh Token te genereer.,
Close Condition,Gesonde toestand,
Column {0},Kolom {0},
Columns / Fields,Kolomme / velde,
"Configure notifications for mentions, assignments, energy points and more.","Stel kennisgewings op vir melding, opdragte, energiepunte en meer.",
Contact Email,Kontak e-pos,
@ -3298,7 +3281,6 @@ Failed to create an Event Consumer or an Event Consumer for the current site is
Failure,mislukking,
Fetching default Global Search documents.,Haal standaard Global Search-dokumente op.,
Fetching posts...,Haal plasings uit ...,
Field Mapping,Veldkartering,
Field To Check,Veld om na te gaan,
File Information,Lêerinligting,
Filter By,Filter By,
@ -3453,7 +3435,6 @@ No posts yet,Nog geen plasings nie,
No records will be exported,Geen rekords sal uitgevoer word nie,
No results found for {0} in Global Search,Geen resultate vir {0} in Global Search gevind nie,
No user found,Geen gebruiker gevind nie,
Not Specified,Nie gespesifiseer nie,
Notification Log,Kennisgewinglogboek,
Notification Settings,Kennisgewinginstellings,
Notification Subscribed Document,Kennisgewing ingeteken dokument,
@ -3609,7 +3590,6 @@ Untitled Column,Ongetitelde kolom,
Untranslated,onvertaalde,
Upcoming Events,komende gebeure,
Update Existing Records,Bestaande rekords opdateer,
Update Type,Opdateringstipe,
Updated To A New Version 🎉,Opgedateer na &#39;n nuwe weergawe 🎉,
"Updating {0} of {1}, {2}","Dateer {0} van {1}, {2} op",
Upload file,Laai leêr op,
@ -3716,19 +3696,16 @@ Designation,aanwysing,
Disabled,gestremde,
Doctype,DOCTYPE,
Download Template,Laai sjabloon af,
Dr,Dr,
Due Date,Vervaldatum,
Duplicate,Dupliseer,
Edit Profile,Wysig profiel,
Email,EMail,
End Time,Eindtyd,
Enter Value,Voer waarde in,
Entity Type,Entiteitstipe,
Error,fout,
Expired,verstryk,
Export,uitvoer,
Export not allowed. You need {0} role to export.,Uitvoer nie toegelaat nie. Jy benodig {0} rol om te eksporteer.,
Fetching...,Haal ...,
Field,veld,
File Manager,Lêer bestuurder,
Filters,filters,
@ -3743,11 +3720,8 @@ Import Data from CSV / Excel files.,Voer data uit CSV / Excel-lêers in.,
In Progress,In Progress,
Intermediate,Intermediêre,
Invite as User,Nooi as gebruiker,
"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Dit lyk asof daar &#39;n probleem met die bediener se streepkonfigurasie is. In geval van versuim, sal die bedrag terugbetaal word na u rekening.",
Loading...,Laai ...,
Location,plek,
Looks like someone sent you to an incomplete URL. Please ask them to look into it.,Dit lyk of iemand jou na &#39;n onvolledige URL gestuur het. Vra hulle asseblief om dit te ondersoek.,
Master,meester,
Message,boodskap,
Missing Values Required,Ontbrekende waardes word vereis,
Mobile No,Mobiele nommer,
@ -3759,7 +3733,6 @@ Note,nota,
Offline,op die regte pad,
Open,oop,
Page {0} of {1},Bladsy {0} van {1},
Pay,betaal,
Pending,hangende,
Phone,Foon,
Please click on the following link to set your new password,Klik asseblief op die volgende skakel om u nuwe wagwoord te stel,
@ -3809,7 +3782,6 @@ Welcome to {0},Welkom by {0},
Year,Jaar,
Yearly,jaarlikse,
You,jy,
You can also copy-paste this link in your browser,U kan hierdie skakel ook kopieer in u blaaier,
and,en,
{0} Name,{0} Naam,
{0} is required,{0} is nodig,
@ -4113,7 +4085,6 @@ Custom SCSS,Pasgemaakte SCSS,
Navbar,Navbar,
Source Message,Bronboodskap,
Translated Message,Vertaalde boodskap,
Verified By,Verified By,
Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand.,"As u hierdie konsole gebruik, kan aanvallers u naboots en u inligting steel. Moenie kode invoer of plak wat u nie verstaan nie.",
{0} m,{0} m,
{0} h,{0} u,
@ -4146,7 +4117,6 @@ Collapse,Inval,
{0} is not a valid Name,{0} is nie &#39;n geldige naam nie,
Your system is being updated. Please refresh again after a few moments.,U stelsel word tans opgedateer. Verfris asseblief weer na &#39;n paar oomblikke.,
{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first.,{0} {1}: Die ingediende rekord kan nie uitgevee word nie. U moet dit eers {2} kanselleer {3}.,
Invalid naming series (. missing) for {0},Ongeldige naamreeks (. Ontbreek) vir {0},
Error has occurred in {0},Fout het voorgekom in {0},
Status Updated,Status opgedateer,
You can also copy-paste this {0} to your browser,U kan hierdie {0} ook in u blaaier kopie-plak,
@ -4168,14 +4138,11 @@ Is Billing Contact,Is faktureringskontak,
Address And Contacts,Adres en kontakte,
Lead Conversion Time,Lood Gesprek Tyd,
Due Date Based On,Vervaldatum gebaseer op,
Phone Number,Telefoon nommer,
Linked Documents,Gekoppelde dokumente,
Account SID,Rekening SID,
Steps,Stappe,
email,e-pos,
Component,komponent,
Subtitle,Subtitle,
Global Defaults,Globale verstek,
Prefix,voorvoegsel,
Is Public,Is publiek,
This chart will be available to all Users if this is set,Hierdie grafiek sal beskikbaar wees vir alle gebruikers as dit ingestel is,
@ -4362,7 +4329,6 @@ Dynamic Filters Section,Afdeling Dinamiese filters,
Please create Card first,Skep eers die kaart,
Onboarding Permission,Toestemming aan boord,
Onboarding Step,Stap aan boord,
Is Mandatory,Is verpligtend,
Is Skipped,Word oorgeslaan,
Create Entry,Skep inskrywing,
Update Settings,Dateer instellings op,
@ -4400,7 +4366,6 @@ Message (HTML),Boodskap (HTML),
Send Attachments,Stuur aanhangsels,
Testing,Toets,
System Notification,Stelselkennisgewing,
WhatsApp,WhatsApp,
Twilio Number,Twilio-nommer,
"To use WhatsApp for Business, initialize <a href=""#Form/Twilio Settings"">Twilio Settings</a>.","Initialiseer <a href=""#Form/Twilio Settings"">Twilio-instellings</a> om WhatsApp for Business te gebruik.",
"To use Slack Channel, add a <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL</a>.","Voeg &#39;n <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL</a> by om Slack Channel te gebruik.",
@ -4535,7 +4500,6 @@ Add to ToDo,Voeg by ToDo,
{0} are currently {1},{0} is tans {1},
Currently Replying,Antwoord tans,
created {0},het {0} geskep,
Make a call,Maak &#39;n oproep,
Change,Verander,Coins
Too Many Requests,Te veel versoeke,
"Invalid Authorization headers, add a token with a prefix from one of the following: {0}.","Ongeldige magtigingsopskrifte, voeg &#39;n teken met &#39;n voorvoegsel by uit een van die volgende: {0}.",
@ -4700,3 +4664,135 @@ Value cannot be negative for {0}: {1},Waarde kan nie negatief wees vir {0}: {1},
Negative Value,Negatiewe waarde,
Authentication failed while receiving emails from Email Account: {0}.,Stawing het misluk tydens die ontvangs van e-posse vanaf die e-posrekening: {0}.,
Message from server: {0},Boodskap vanaf bediener: {0},
Add Row,Voeg ry by,
Analytics,Analytics,
Anonymous,Anoniem,
Author,skrywer,
Basic,basiese,
Billing,Rekening,
Contact Details,Kontakbesonderhede,
Datetime,Datum Tyd,
Enable,in staat te stel,
Event,gebeurtenis,
Full,volle,
Insert,insetsel,
Interests,Belange,
Language Name,Taal Naam,
License,lisensie,
Limit,limiet,
Log,Meld,
Meeting,Ontmoet,
My Account,My rekening,
Newsletters,nuusbriewe,
Password,wagwoord,
Pincode,PIN-kode,
Please select prefix first,Kies asseblief voorvoegsel eerste,
Please set Email Address,Stel asseblief e-pos adres in,
Please set the series to be used.,Stel asseblief die reeks in wat gebruik gaan word.,
Portal Settings,Portal instellings,
Reference Owner,Verwysings Eienaar,
Region,streek,
Report Builder,Rapport Bouer,
Sample,monster,
Saved,gered,
Series {0} already used in {1},Reeks {0} wat reeds in {1} gebruik word,
Set as Default,Stel as standaard,
Shipping,Gestuur,
Standard,Standard,
Test,toets,
Traceback,Spoor terug,
Unable to find DocType {0},Kan nie DocType {0} vind nie,
Weekdays,weeksdae,
Workflow,Workflow,
You need to be logged in to access this page,Jy moet ingeteken wees om toegang tot hierdie bladsy te kry,
County,County,
Images,beelde,
Office,kantoor,
Passive,passiewe,
Permanent,permanente,
Plant,plant,
Postal,Postal,
Previous,vorige,
Shop,Winkel,
Subsidiary,filiaal,
There is some problem with the file url: {0},Daar is &#39;n probleem met die lêer url: {0},
"Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}","Spesiale karakters behalwe &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; En &quot;}}&quot; word nie toegelaat in die naamreekse nie {0}",
Export Type,Uitvoer Tipe,
Last Sync On,Laaste sinchroniseer op,
Webhook Secret,Webhook Secret,
Back to Home,Terug huistoe,
Customize,pas,
Edit Profile,Wysig profiel,
File Manager,Lêer bestuurder,
Invite as User,Nooi as gebruiker,
Newsletter,nuusbrief,
Printing,druk,
Publish,publiseer,
Refreshing,verfrissende,
Select All,Kies Alles,
Set,stel,
Setup Wizard,Opstelassistent,
Update Details,Dateer besonderhede op,
You,jy,
{0} Name,{0} Naam,
Bold,vet,
Center,Sentrum,
Comment,kommentaar,
Not Found,Nie gevind nie,
User Id,Gebruikers-ID,
Position,posisie,
Crop,oes,
Topic,onderwerp,
Public Transport,Publieke vervoer,
Request Data,Versoek data,
Steps,Stappe,
Reference DocType,Verwysingsdokumenttipe,
Select Transaction,Kies transaksie,
Help HTML,Help HTML,
Series List for this Transaction,Reekslys vir hierdie transaksie,
User must always select,Gebruiker moet altyd kies,
Check this if you want to force the user to select a series before saving. There will be no default if you check this.,Kontroleer dit as u die gebruiker wil dwing om &#39;n reeks te kies voordat u dit stoor. Daar sal geen standaard wees as u dit kontroleer nie.,
Prefix,voorvoegsel,
This is the number of the last created transaction with this prefix,Dit is die nommer van die laaste geskep transaksie met hierdie voorvoegsel,
Update Series Number,Werk reeksnommer,
Validation Error,Validasiefout,
Andaman and Nicobar Islands,Andaman- en Nicobar-eilande,
Andhra Pradesh,Andhra Pradesh,
Arunachal Pradesh,Arunachal Pradesh,
Assam,Assam,
Bihar,Bihar,
Chandigarh,Chandigarh,
Chhattisgarh,Chhattisgarh,
Dadra and Nagar Haveli,Dadra en Nagar Haveli,
Daman and Diu,Daman en Diu,
Delhi,Delhi,
Goa,Goa,
Gujarat,Gujarat,
Haryana,Haryana,
Himachal Pradesh,Himachal Pradesh,
Jammu and Kashmir,Jammu en Kasjmir,
Jharkhand,Jharkhand,
Karnataka,Karnataka,
Kerala,Kerala,
Lakshadweep Islands,Lakshadweep-eilande,
Madhya Pradesh,Madhya Pradesh,
Maharashtra,Maharashtra,
Manipur,Manipur,
Meghalaya,Meghalaya,
Mizoram,Mizoram,
Nagaland,Nagaland,
Odisha,Odisha,
Other Territory,Ander gebied,
Pondicherry,Pondicherry,
Punjab,Punjab,
Rajasthan,Rajasthan,
Sikkim,Sikkim,
Tamil Nadu,Tamil Nadu,
Telangana,Telangana,
Tripura,Tripura,
Uttar Pradesh,Uttar Pradesh,
Uttarakhand,Uttarakhand,
West Bengal,Wes-Bengale,
Published on,Gepubliseer op,
Bottom,Onder,
Top,Top,

1 A4 A4
9 Actions aksies
10 Active aktiewe
11 Add Voeg
Add Comment Voeg kommentaar by
12 Add Row Voeg ry by
13 Address adres
14 Address Line 2 Adreslyn 2
143 Monthly maandelikse
144 More meer
145 More Information Meer inligting
More... Meer ...
146 Move skuif
147 My Account My rekening
148 New Address Nuwe adres
155 None Geen
156 Not Permitted Nie toegelaat
157 Not active Nie aktief nie
Notes notas
158 Number aantal
159 Online Online
160 Operation operasie
164 Page Missing or Moved Bladsy ontbreek of verskuif
165 Parameter parameter
166 Password wagwoord
Payment Gateway Betaling Gateway
Payment Gateway Name Betaling Gateway Naam
Payments betalings
167 Period tydperk
168 Pincode PIN-kode
Plan Name Plan Naam
169 Please enable pop-ups Aktiveer pop-ups
170 Please select Company Kies asseblief Maatskappy
171 Please select {0} Kies asseblief {0}
172 Please set Email Address Stel asseblief e-pos adres in
Portal portaal
173 Portal Settings Portal instellings
174 Preview voorskou
175 Primary primêre
214 Sample monster
215 Saturday Saterdag
216 Saved gered
Scan Barcode Skandeer strepieskode
217 Scheduled geskeduleer
218 Search Soek
219 Secret Key Geheime Sleutel
228 Shipping Gestuur
229 Short Name Kort naam
230 Slideshow skyfievertoning
Some information is missing Sommige inligting ontbreek
231 Source Bron
232 Source Name Bron Naam
233 Standard Standard
237 Stopped gestop
238 Subject Onderwerp
239 Submit Indien
Successful Suksesvol
240 Summary opsomming
241 Sunday Sondag
242 System Manager Stelselbestuurder
249 Timespan Tydsverloop
250 To om
251 To Date Tot op hede
Tools gereedskap
252 Traceback Spoor terug
253 URL URL
254 Unsubscribed uitgeteken
Use Sandbox Gebruik Sandbox
255 User gebruiker
256 User ID Gebruikers-ID
257 Users gebruikers
556 Bulk Edit {0} Grootmaat wysig {0}
557 Bulk Rename Bulk Hernoem
558 Bulk Update Grootmaat Update
Busy Besig
559 Button Button
560 Button Help Knoppie Hulp
561 Button Label Knoppie
692 Complete By Voltooi By
693 Complete Registration Voltooi Registrasie
694 Complete Setup Voltooi instellings
Completed By Voltooi deur
695 Compose Email Stel e-pos saam
696 Condition Detail Toestanddetail
697 Conditions voorwaardes
1676 Not a zip file Nie &#39;n zip-lêer nie
1677 Not allowed for {0}: {1} Nie toegelaat vir {0}: {1}
1678 You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4} Nie toegelaat om {0} toegang te kry nie omdat dit gekoppel is aan {1} &#39;{2}&#39; in ry {3}, velde {4}
1679 You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3} Nie toegelaat om hierdie {0} rekord toegang te kry nie omdat dit gekoppel is aan {1} &#39;{2}&#39; in velde {3}
1680 Not allowed to Import Nie toegelaat om in te voer nie
1681 Not allowed to change {0} after submission Nie toegelaat om {0} te verander na indiening nie
1682 Not allowed to print cancelled documents Nie toegelaat om gekanselleerde dokumente te druk nie
1804 PayPal Settings PayPal-instellings
1805 PayPal payment gateway settings PayPal-betaling gateway instellings
1806 Payment Cancelled Betaling gekanselleer
Payment Failed Betaling misluk
1807 Payment Success Betaal Sukses
1808 Pending Approval Hangende goedkeuring
1809 Pending Verification Hangende verifikasie
3200 Click on the lock icon to toggle public/private Klik op die slotikoon om publiek / privaat te skakel
3201 Click on {0} to generate Refresh Token. Klik op {0} om Refresh Token te genereer.
3202 Close Condition Gesonde toestand
Column {0} Kolom {0}
3203 Columns / Fields Kolomme / velde
3204 Configure notifications for mentions, assignments, energy points and more. Stel kennisgewings op vir melding, opdragte, energiepunte en meer.
3205 Contact Email Kontak e-pos
3281 Failure mislukking
3282 Fetching default Global Search documents. Haal standaard Global Search-dokumente op.
3283 Fetching posts... Haal plasings uit ...
Field Mapping Veldkartering
3284 Field To Check Veld om na te gaan
3285 File Information Lêerinligting
3286 Filter By Filter By
3435 No records will be exported Geen rekords sal uitgevoer word nie
3436 No results found for {0} in Global Search Geen resultate vir {0} in Global Search gevind nie
3437 No user found Geen gebruiker gevind nie
Not Specified Nie gespesifiseer nie
3438 Notification Log Kennisgewinglogboek
3439 Notification Settings Kennisgewinginstellings
3440 Notification Subscribed Document Kennisgewing ingeteken dokument
3590 Untranslated onvertaalde
3591 Upcoming Events komende gebeure
3592 Update Existing Records Bestaande rekords opdateer
Update Type Opdateringstipe
3593 Updated To A New Version 🎉 Opgedateer na &#39;n nuwe weergawe 🎉
3594 Updating {0} of {1}, {2} Dateer {0} van {1}, {2} op
3595 Upload file Laai leêr op
3696 Disabled gestremde
3697 Doctype DOCTYPE
3698 Download Template Laai sjabloon af
Dr Dr
3699 Due Date Vervaldatum
3700 Duplicate Dupliseer
3701 Edit Profile Wysig profiel
3702 Email EMail
End Time Eindtyd
3703 Enter Value Voer waarde in
3704 Entity Type Entiteitstipe
3705 Error fout
3706 Expired verstryk
3707 Export uitvoer
3708 Export not allowed. You need {0} role to export. Uitvoer nie toegelaat nie. Jy benodig {0} rol om te eksporteer.
Fetching... Haal ...
3709 Field veld
3710 File Manager Lêer bestuurder
3711 Filters filters
3720 In Progress In Progress
3721 Intermediate Intermediêre
3722 Invite as User Nooi as gebruiker
It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account. Dit lyk asof daar &#39;n probleem met die bediener se streepkonfigurasie is. In geval van versuim, sal die bedrag terugbetaal word na u rekening.
3723 Loading... Laai ...
3724 Location plek
Looks like someone sent you to an incomplete URL. Please ask them to look into it. Dit lyk of iemand jou na &#39;n onvolledige URL gestuur het. Vra hulle asseblief om dit te ondersoek.
Master meester
3725 Message boodskap
3726 Missing Values Required Ontbrekende waardes word vereis
3727 Mobile No Mobiele nommer
3733 Offline op die regte pad
3734 Open oop
3735 Page {0} of {1} Bladsy {0} van {1}
Pay betaal
3736 Pending hangende
3737 Phone Foon
3738 Please click on the following link to set your new password Klik asseblief op die volgende skakel om u nuwe wagwoord te stel
3782 Year Jaar
3783 Yearly jaarlikse
3784 You jy
You can also copy-paste this link in your browser U kan hierdie skakel ook kopieer in u blaaier
3785 and en
3786 {0} Name {0} Naam
3787 {0} is required {0} is nodig
4085 Navbar Navbar
4086 Source Message Bronboodskap
4087 Translated Message Vertaalde boodskap
Verified By Verified By
4088 Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand. As u hierdie konsole gebruik, kan aanvallers u naboots en u inligting steel. Moenie kode invoer of plak wat u nie verstaan nie.
4089 {0} m {0} m
4090 {0} h {0} u
4117 {0} is not a valid Name {0} is nie &#39;n geldige naam nie
4118 Your system is being updated. Please refresh again after a few moments. U stelsel word tans opgedateer. Verfris asseblief weer na &#39;n paar oomblikke.
4119 {0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first. {0} {1}: Die ingediende rekord kan nie uitgevee word nie. U moet dit eers {2} kanselleer {3}.
Invalid naming series (. missing) for {0} Ongeldige naamreeks (. Ontbreek) vir {0}
4120 Error has occurred in {0} Fout het voorgekom in {0}
4121 Status Updated Status opgedateer
4122 You can also copy-paste this {0} to your browser U kan hierdie {0} ook in u blaaier kopie-plak
4138 Address And Contacts Adres en kontakte
4139 Lead Conversion Time Lood Gesprek Tyd
4140 Due Date Based On Vervaldatum gebaseer op
Phone Number Telefoon nommer
4141 Linked Documents Gekoppelde dokumente
Account SID Rekening SID
4142 Steps Stappe
4143 email e-pos
4144 Component komponent
4145 Subtitle Subtitle
Global Defaults Globale verstek
4146 Prefix voorvoegsel
4147 Is Public Is publiek
4148 This chart will be available to all Users if this is set Hierdie grafiek sal beskikbaar wees vir alle gebruikers as dit ingestel is
4329 Please create Card first Skep eers die kaart
4330 Onboarding Permission Toestemming aan boord
4331 Onboarding Step Stap aan boord
Is Mandatory Is verpligtend
4332 Is Skipped Word oorgeslaan
4333 Create Entry Skep inskrywing
4334 Update Settings Dateer instellings op
4366 Send Attachments Stuur aanhangsels
4367 Testing Toets
4368 System Notification Stelselkennisgewing
WhatsApp WhatsApp
4369 Twilio Number Twilio-nommer
4370 To use WhatsApp for Business, initialize <a href="#Form/Twilio Settings">Twilio Settings</a>. Initialiseer <a href="#Form/Twilio Settings">Twilio-instellings</a> om WhatsApp for Business te gebruik.
4371 To use Slack Channel, add a <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook URL</a>. Voeg &#39;n <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook URL</a> by om Slack Channel te gebruik.
4500 {0} are currently {1} {0} is tans {1}
4501 Currently Replying Antwoord tans
4502 created {0} het {0} geskep
Make a call Maak &#39;n oproep
4503 Change Verander Coins
4504 Too Many Requests Te veel versoeke
4505 Invalid Authorization headers, add a token with a prefix from one of the following: {0}. Ongeldige magtigingsopskrifte, voeg &#39;n teken met &#39;n voorvoegsel by uit een van die volgende: {0}.
4664 Negative Value Negatiewe waarde
4665 Authentication failed while receiving emails from Email Account: {0}. Stawing het misluk tydens die ontvangs van e-posse vanaf die e-posrekening: {0}.
4666 Message from server: {0} Boodskap vanaf bediener: {0}
4667 Add Row Voeg ry by
4668 Analytics Analytics
4669 Anonymous Anoniem
4670 Author skrywer
4671 Basic basiese
4672 Billing Rekening
4673 Contact Details Kontakbesonderhede
4674 Datetime Datum Tyd
4675 Enable in staat te stel
4676 Event gebeurtenis
4677 Full volle
4678 Insert insetsel
4679 Interests Belange
4680 Language Name Taal Naam
4681 License lisensie
4682 Limit limiet
4683 Log Meld
4684 Meeting Ontmoet
4685 My Account My rekening
4686 Newsletters nuusbriewe
4687 Password wagwoord
4688 Pincode PIN-kode
4689 Please select prefix first Kies asseblief voorvoegsel eerste
4690 Please set Email Address Stel asseblief e-pos adres in
4691 Please set the series to be used. Stel asseblief die reeks in wat gebruik gaan word.
4692 Portal Settings Portal instellings
4693 Reference Owner Verwysings Eienaar
4694 Region streek
4695 Report Builder Rapport Bouer
4696 Sample monster
4697 Saved gered
4698 Series {0} already used in {1} Reeks {0} wat reeds in {1} gebruik word
4699 Set as Default Stel as standaard
4700 Shipping Gestuur
4701 Standard Standard
4702 Test toets
4703 Traceback Spoor terug
4704 Unable to find DocType {0} Kan nie DocType {0} vind nie
4705 Weekdays weeksdae
4706 Workflow Workflow
4707 You need to be logged in to access this page Jy moet ingeteken wees om toegang tot hierdie bladsy te kry
4708 County County
4709 Images beelde
4710 Office kantoor
4711 Passive passiewe
4712 Permanent permanente
4713 Plant plant
4714 Postal Postal
4715 Previous vorige
4716 Shop Winkel
4717 Subsidiary filiaal
4718 There is some problem with the file url: {0} Daar is &#39;n probleem met die lêer url: {0}
4719 Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0} Spesiale karakters behalwe &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; En &quot;}}&quot; word nie toegelaat in die naamreekse nie {0}
4720 Export Type Uitvoer Tipe
4721 Last Sync On Laaste sinchroniseer op
4722 Webhook Secret Webhook Secret
4723 Back to Home Terug huistoe
4724 Customize pas
4725 Edit Profile Wysig profiel
4726 File Manager Lêer bestuurder
4727 Invite as User Nooi as gebruiker
4728 Newsletter nuusbrief
4729 Printing druk
4730 Publish publiseer
4731 Refreshing verfrissende
4732 Select All Kies Alles
4733 Set stel
4734 Setup Wizard Opstelassistent
4735 Update Details Dateer besonderhede op
4736 You jy
4737 {0} Name {0} Naam
4738 Bold vet
4739 Center Sentrum
4740 Comment kommentaar
4741 Not Found Nie gevind nie
4742 User Id Gebruikers-ID
4743 Position posisie
4744 Crop oes
4745 Topic onderwerp
4746 Public Transport Publieke vervoer
4747 Request Data Versoek data
4748 Steps Stappe
4749 Reference DocType Verwysingsdokumenttipe
4750 Select Transaction Kies transaksie
4751 Help HTML Help HTML
4752 Series List for this Transaction Reekslys vir hierdie transaksie
4753 User must always select Gebruiker moet altyd kies
4754 Check this if you want to force the user to select a series before saving. There will be no default if you check this. Kontroleer dit as u die gebruiker wil dwing om &#39;n reeks te kies voordat u dit stoor. Daar sal geen standaard wees as u dit kontroleer nie.
4755 Prefix voorvoegsel
4756 This is the number of the last created transaction with this prefix Dit is die nommer van die laaste geskep transaksie met hierdie voorvoegsel
4757 Update Series Number Werk reeksnommer
4758 Validation Error Validasiefout
4759 Andaman and Nicobar Islands Andaman- en Nicobar-eilande
4760 Andhra Pradesh Andhra Pradesh
4761 Arunachal Pradesh Arunachal Pradesh
4762 Assam Assam
4763 Bihar Bihar
4764 Chandigarh Chandigarh
4765 Chhattisgarh Chhattisgarh
4766 Dadra and Nagar Haveli Dadra en Nagar Haveli
4767 Daman and Diu Daman en Diu
4768 Delhi Delhi
4769 Goa Goa
4770 Gujarat Gujarat
4771 Haryana Haryana
4772 Himachal Pradesh Himachal Pradesh
4773 Jammu and Kashmir Jammu en Kasjmir
4774 Jharkhand Jharkhand
4775 Karnataka Karnataka
4776 Kerala Kerala
4777 Lakshadweep Islands Lakshadweep-eilande
4778 Madhya Pradesh Madhya Pradesh
4779 Maharashtra Maharashtra
4780 Manipur Manipur
4781 Meghalaya Meghalaya
4782 Mizoram Mizoram
4783 Nagaland Nagaland
4784 Odisha Odisha
4785 Other Territory Ander gebied
4786 Pondicherry Pondicherry
4787 Punjab Punjab
4788 Rajasthan Rajasthan
4789 Sikkim Sikkim
4790 Tamil Nadu Tamil Nadu
4791 Telangana Telangana
4792 Tripura Tripura
4793 Uttar Pradesh Uttar Pradesh
4794 Uttarakhand Uttarakhand
4795 West Bengal Wes-Bengale
4796 Published on Gepubliseer op
4797 Bottom Onder
4798 Top Top

View file

@ -9,7 +9,6 @@ Action,እርምጃ,
Actions,እርምጃዎች,
Active,ገቢር,
Add,አክል,
Add Comment,አስተያየት ያክሉ,
Add Row,ረድፍ አክል,
Address,አድራሻ,
Address Line 2,የአድራሻ መስመር 2,
@ -144,7 +143,6 @@ Monday,ሰኞ,
Monthly,ወርሃዊ,
More,ይበልጥ,
More Information,ተጨማሪ መረጃ,
More...,ተጨማሪ ...,
Move,ተንቀሳቀሰ,
My Account,አካውንቴ,
New Address,አዲስ አድራሻ,
@ -157,7 +155,6 @@ No items found.,ምንም ንጥሎች አልተገኙም.,
None,ምንም,
Not Permitted,አይፈቀድም,
Not active,ገባሪ አይደለም,
Notes,ማስታወሻዎች,
Number,ቁጥር,
Online,የመስመር ላይ,
Operation,ቀዶ ጥገና,
@ -167,17 +164,12 @@ Owner,ባለቤት,
Page Missing or Moved,የጠፋ ወይም ተንቀሳቅሷል ገጽ,
Parameter,የልኬት,
Password,የይለፍ ቃል,
Payment Gateway,የክፍያ ጌትዌይ,
Payment Gateway Name,የክፍያ በርዕስ ስም,
Payments,ክፍያዎች,
Period,ወቅት,
Pincode,ፒን ኮድ,
Plan Name,የዕቅድ ስም,
Please enable pop-ups,ብቅ-ባዮችን ለማንቃት እባክዎ,
Please select Company,ኩባንያ ይምረጡ,
Please select {0},እባክዎ ይምረጡ {0},
Please set Email Address,የኢሜይል አድራሻ ማዘጋጀት እባክዎ,
Portal,ፖርታል,
Portal Settings,ፖርታል ቅንብሮች,
Preview,ቅድመ-እይታ,
Primary,የመጀመሪያ,
@ -222,7 +214,6 @@ Salutation,ሰላምታ,
Sample,ናሙና,
Saturday,ቅዳሜ,
Saved,ተቀምጧል,
Scan Barcode,ባርኮድ ቅኝት,
Scheduled,የተያዘለት,
Search,ፍለጋ,
Secret Key,ምስጢር ቁልፍ,
@ -237,7 +228,6 @@ Settings,ቅንብሮች,
Shipping,መላኪያ,
Short Name,አጭር ስም,
Slideshow,የተንሸራታች ትዕይንት,
Some information is missing,አንዳንድ መረጃ ይጎድለዋል,
Source,ምንጭ,
Source Name,ምንጭ ስም,
Standard,መለኪያ,
@ -247,7 +237,6 @@ State,ግዛት,
Stopped,አቁሟል,
Subject,ትምህርት,
Submit,አስገባ,
Successful,ስኬታማ,
Summary,ማጠቃለያ,
Sunday,እሁድ,
System Manager,የስርዓት አስተዳዳሪ,
@ -260,11 +249,9 @@ The page you are looking for is missing. This could be because it is moved or th
Timespan,የጊዜ ወሰን,
To,,
To Date,ቀን ወደ,
Tools,መሣሪያዎች,
Traceback,Traceback,
URL,ዩ አር ኤል,
Unsubscribed,ያልተመዘገበ,
Use Sandbox,ይጠቀሙ ማጠሪያ,
User,ተጠቃሚው,
User ID,የተጠቃሚው መለያ,
Users,ተጠቃሚዎች,
@ -569,7 +556,6 @@ Bulk Delete,የጅምላ ሰርዝ,
Bulk Edit {0},የጅምላ አርትዕ {0},
Bulk Rename,የጅምላ ይቀየር,
Bulk Update,የጅምላ ዝማኔ,
Busy,ስራ የሚበዛበት,
Button,ቁልፍ,
Button Help,የአዝራር እገዛ,
Button Label,የአዝራር መለያ ስም,
@ -706,7 +692,6 @@ Compiled Successfully,በተሳካ ሁኔታ ተቀድቷል።,
Complete By,በ ተጠናቅቋል,
Complete Registration,ሙሉ ምዝገባ,
Complete Setup,ተጠናቋል,
Completed By,ተጠናቅቋል,
Compose Email,ኢሜይል ፃፍ,
Condition Detail,የሁኔታዎች ዝርዝር ሁኔታ,
Conditions,ሁኔታዎች,
@ -1690,8 +1675,8 @@ Not a valid Workflow Action,ልክ የሆነ የስራ ፍሰት እርምጃ
Not a valid user,ትክክለኛ ተጠቃሚ,
Not a zip file,አይደለም ዚፕ ፋይል,
Not allowed for {0}: {1},ለ {0} አልተፈቀደም: {1},
"You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4}","ከሰሌዳ {3} ውስጥ በታች የተገናኘው {1} '{2}' የሚገኙት በ {0} ውስጥ መግባት አይፈቀድም",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},"ከሰሌዳ {3} ውስጥ በታች የተገናኘው {1} '{2}' የሚገኙት በ {0} ውስጥ መግባት አይፈቀድም",
"You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4}",ከሰሌዳ {3} ውስጥ በታች የተገናኘው {1} '{2}' የሚገኙት በ {0} ውስጥ መግባት አይፈቀድም,
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},ከሰሌዳ {3} ውስጥ በታች የተገናኘው {1} '{2}' የሚገኙት በ {0} ውስጥ መግባት አይፈቀድም,
Not allowed to Import,ያስመጡ አልተፈቀደልህም,
Not allowed to change {0} after submission,ከገባ በኋላ {0} መቀየር አይፈቀድም,
Not allowed to print cancelled documents,አይደለም የተሰረዙ ሰነዶችን ማተም አይፈቀድም,
@ -1819,7 +1804,6 @@ Path to private Key File,ወደ የግል ቁልፍ ፋይል ዱካ።,
PayPal Settings,የ PayPal ቅንብሮች,
PayPal payment gateway settings,የ PayPal ክፍያ ፍኖት ቅንብሮች,
Payment Cancelled,ክፍያ ተሰርዟል,
Payment Failed,ክፍያ አልተሳካም,
Payment Success,የክፍያ ስኬት,
Pending Approval,መጽደቅን በመጠባበቅ ላይ,
Pending Verification,ማረጋገጫ በመጠባበቅ ላይ።,
@ -3216,7 +3200,6 @@ Click on the link below to approve the request,ጥያቄውን ለማፅደቅ
Click on the lock icon to toggle public/private,ሕዝባዊ / የግልን ለመቀየር የቁልፍ አዶው ላይ ጠቅ ያድርጉ።,
Click on {0} to generate Refresh Token.,Refresh Token ን ለማመንጨት {0} ላይ ጠቅ ያድርጉ።,
Close Condition,ሁኔታን ዝጋ።,
Column {0},አምድ {0},
Columns / Fields,አምዶች / እርሻዎች።,
"Configure notifications for mentions, assignments, energy points and more.",ለመጥቀሻዎች ፣ ምደባዎች ፣ የኃይል ነጥቦች እና ሌሎችን በተመለከተ ማሳወቂያዎችን ያዋቅሩ።,
Contact Email,የዕውቂያ ኢሜይል,
@ -3298,7 +3281,6 @@ Failed to create an Event Consumer or an Event Consumer for the current site is
Failure,አለመሳካት።,
Fetching default Global Search documents.,ነባሪ የአለም አቀፍ ፍለጋ ሰነዶችን በማምጣት ላይ።,
Fetching posts...,ልጥፎችን በማምጣት ላይ ...,
Field Mapping,የመስክ ካርታ,
Field To Check,ለማጣራት መስክ,
File Information,ፋይል መረጃ,
Filter By,አጣራ በ,
@ -3453,7 +3435,6 @@ No posts yet,እስካሁን ምንም ልጥፎች የሉም።,
No records will be exported,ምንም መዝገቦች አይላኩም።,
No results found for {0} in Global Search,በ {0} በአለም ፍለጋ ውስጥ ምንም ውጤቶች አልተገኙም,
No user found,ምንም ተጠቃሚ አልተገኘም።,
Not Specified,አልተገለጸም ፡፡,
Notification Log,የማሳወቂያ ምዝግብ ማስታወሻ,
Notification Settings,የማሳወቂያ ቅንብሮች,
Notification Subscribed Document,ማስታወቂያ የተመዘገበ ሰነድ,
@ -3609,7 +3590,6 @@ Untitled Column,ርዕስ አልባ ዓምድ።,
Untranslated,ያልተተረጎመ,
Upcoming Events,መጪ ክስተቶች,
Update Existing Records,ነባር መዛግብቶችን ያዘምኑ።,
Update Type,የዘመኑ ዓይነት,
Updated To A New Version 🎉,ወደ አዲስ ስሪት Updated ተዘምኗል,
"Updating {0} of {1}, {2}",{0} ከ {1} ፣ {2} ማዘመን,
Upload file,ፋይል ስቀል,
@ -3716,19 +3696,16 @@ Designation,ስያሜ,
Disabled,ተሰናክሏል,
Doctype,DocType,
Download Template,አውርድ አብነት,
Dr,,
Due Date,የመጨረሻ ማስረከቢያ ቀን,
Duplicate,የተባዛ ነገር,
Edit Profile,አርትዕ መገለጫ,
Email,ኢሚል,
End Time,መጨረሻ ሰዓት,
Enter Value,እሴት ያስገቡ,
Entity Type,የህጋዊ አካል ዓይነት,
Error,ስሕተት,
Expired,ጊዜው አልፎበታል,
Export,ወደ ውጪ ላክ,
Export not allowed. You need {0} role to export.,ወደ ውጪ ላክ አይፈቀድም. እርስዎ ወደ ውጪ ወደ {0} ሚና ያስፈልገናል.,
Fetching...,በማምጣት ላይ ...,
Field,መስክ,
File Manager,የፋይል አቀናባሪ,
Filters,ማጣሪያዎች,
@ -3743,11 +3720,8 @@ Import Data from CSV / Excel files.,ውሂብ ከ CSV / Excel ፋይሎች ያ
In Progress,በሂደት ላይ,
Intermediate,መካከለኛ,
Invite as User,የተጠቃሚ እንደ ጋብዝ,
"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","በአገልጋዩ የሽቦ ውቅር ላይ ችግር ያለ ይመስላል. ካልተሳካ, ገንዘቡ ወደ ሂሳብዎ ተመላሽ ይደረጋል.",
Loading...,በመጫን ላይ ...,
Location,አካባቢ,
Looks like someone sent you to an incomplete URL. Please ask them to look into it.,አንድ ሰው ያልተሟላ ዩ አር ኤል ወደ እናንተ ላከ ይመስላል. ወደ ለማየት ጠይቃቸው.,
Master,ባለቤት,
Message,መልእክት,
Missing Values Required,የሚጎድሉ እሴቶች የሚያስፈልግ,
Mobile No,የተንቀሳቃሽ ስልክ የለም,
@ -3759,7 +3733,6 @@ Note,ማስታወሻ,
Offline,ከመስመር ውጭ,
Open,ክፈት,
Page {0} of {1},ገጽ {0} ከ {1},
Pay,ይክፈሉ,
Pending,በመጠባበቅ ላይ,
Phone,ስልክ,
Please click on the following link to set your new password,አዲሱን የይለፍ ቃል ለማዘጋጀት በሚከተለው አገናኝ ላይ ጠቅ ያድርጉ,
@ -3809,7 +3782,6 @@ Welcome to {0},እንኳን በደህና መጡ {0},
Year,አመት,
Yearly,በየአመቱ,
You,አንተ,
You can also copy-paste this link in your browser,በተጨማሪም በአሳሽዎ ውስጥ ይህን አገናኝ መቅዳት-መለጠፍ ይችላሉ,
and,,
{0} Name,{0} ስም,
{0} is required,{0} ያስፈልጋል,
@ -4113,7 +4085,6 @@ Custom SCSS,ብጁ SCSS,
Navbar,ናቫባር,
Source Message,ምንጭ መልእክት,
Translated Message,የተተረጎመ መልእክት,
Verified By,በ የተረጋገጡ,
Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand.,ይህንን ኮንሶል መጠቀም አጥቂዎች እርስዎን ለመምሰል እና መረጃዎን ለመስረቅ ሊፈቅድላቸው ይችላል። ያልገባዎትን ኮድ አያስገቡ ወይም አይለጥፉ።,
{0} m,{0} ሜ,
{0} h,{0} ሰዓት,
@ -4146,7 +4117,6 @@ Collapse,ሰብስብ,
{0} is not a valid Name,{0} ትክክለኛ ስም አይደለም,
Your system is being updated. Please refresh again after a few moments.,ስርዓትዎ እየተዘመነ ነው። ከጥቂት ደቂቃዎች በኋላ እባክዎ እንደገና ያድሱ።,
{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first.,{0} {1}: የቀረበው መዝገብ ሊሰረዝ አይችልም። መጀመሪያ እሱን {2} መሰረዝ {3} አለብዎት።,
Invalid naming series (. missing) for {0},ለ {0} ልክ ያልሆነ የስም ዝርዝር ((የጠፋ)),
Error has occurred in {0},ስህተት በ {0} ውስጥ ተከስቷል,
Status Updated,ሁኔታ ተዘምኗል,
You can also copy-paste this {0} to your browser,እንዲሁም ይህንን {0} በአሳሽዎ ላይ መገልበጥ-መለጠፍ ይችላሉ,
@ -4168,14 +4138,11 @@ Is Billing Contact,የሂሳብ አከፋፈል ዕውቂያ ነው,
Address And Contacts,አድራሻ እና አድራሻዎች,
Lead Conversion Time,መሪነት የተቀየረበት ጊዜ,
Due Date Based On,በመነሻ ላይ የተመሠረተ ቀን,
Phone Number,ስልክ ቁጥር,
Linked Documents,የተገናኙ ሰነዶች,
Account SID,መለያ SID።,
Steps,ደረጃዎች,
email,ኢሜል,
Component,ክፍል,
Subtitle,ንዑስ ርዕስ,
Global Defaults,ዓለም አቀፍ ነባሪዎች,
Prefix,ባዕድ መነሻ,
Is Public,ይፋዊ ነው,
This chart will be available to all Users if this is set,ይህ ሰንጠረዥ ይህ ከተዋቀረ ለሁሉም ተጠቃሚዎች ይገኛል,
@ -4362,7 +4329,6 @@ Dynamic Filters Section,ተለዋዋጭ የማጣሪያዎች ክፍል,
Please create Card first,እባክዎ መጀመሪያ ካርድ ይፍጠሩ,
Onboarding Permission,የመሳፈሪያ ፈቃድ,
Onboarding Step,የመሳፈሪያ ደረጃ,
Is Mandatory,አስገዳጅ ነው,
Is Skipped,ተዘሏል,
Create Entry,መግቢያ ፍጠር,
Update Settings,ቅንብሮችን ያዘምኑ,
@ -4400,7 +4366,6 @@ Message (HTML),መልእክት (HTML),
Send Attachments,አባሪዎችን ይላኩ,
Testing,በመሞከር ላይ,
System Notification,የስርዓት ማስታወቂያ,
WhatsApp,ዋትስአፕ,
Twilio Number,Twilio ቁጥር,
"To use WhatsApp for Business, initialize <a href=""#Form/Twilio Settings"">Twilio Settings</a>.","ዋትስአፕን ለቢዝነስ ለመጠቀም የ <a href=""#Form/Twilio Settings"">Twilio ቅንጅቶችን ያስጀምሩ</a> ፡፡",
"To use Slack Channel, add a <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL</a>.","Slack Channel ን ለመጠቀም ፣ <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL</a> ያክሉ።",
@ -4535,7 +4500,6 @@ Add to ToDo,ወደ ToDo ያክሉ,
{0} are currently {1},{0} በአሁኑ ጊዜ {1} ናቸው,
Currently Replying,በአሁኑ ጊዜ ምላሽ በመስጠት ላይ,
created {0},የተፈጠረው {0},
Make a call,ደውል,
Change,ለውጥ,Coins
Too Many Requests,በጣም ብዙ ጥያቄዎች,
"Invalid Authorization headers, add a token with a prefix from one of the following: {0}.",ልክ ያልሆነ የፈቃድ ራስጌዎች ፣ ከሚከተሉት በአንዱ ቅድመ ቅጥያ ያለው ማስመሰያ ያክሉ ፦ {0}።,
@ -4700,3 +4664,135 @@ Value cannot be negative for {0}: {1},እሴት ለ {0} አሉታዊ ሊሆን
Negative Value,አሉታዊ እሴት,
Authentication failed while receiving emails from Email Account: {0}.,ከኢሜል መለያ ኢሜሎችን በሚቀበሉበት ጊዜ ማረጋገጥ አልተሳካም ፦ {0}።,
Message from server: {0},መልእክት ከአገልጋይ: {0},
Add Row,ረድፍ አክል,
Analytics,ትንታኔ,
Anonymous,ስም የለሽ,
Author,ደራሲ,
Basic,መሠረታዊ,
Billing,አከፋፈል,
Contact Details,የእውቅያ ዝርዝሮች,
Datetime,DATETIME,
Enable,አንቃ,
Event,ድርጊት,
Full,ሙሉ,
Insert,አስገባ,
Interests,ፍላጎቶች,
Language Name,የቋንቋ ስም,
License,ፈቃድ,
Limit,ወሰን,
Log,ምዝግብ ማስታወሻ,
Meeting,ስብሰባ,
My Account,አካውንቴ,
Newsletters,ጋዜጣዎች,
Password,የይለፍ ቃል,
Pincode,ፒን ኮድ,
Please select prefix first,መጀመሪያ ቅድመ ቅጥያ ይምረጡ,
Please set Email Address,የኢሜይል አድራሻ ማዘጋጀት እባክዎ,
Please set the series to be used.,እባክዎ ጥቅም ላይ የሚውሉትን ስብስቦች ያዘጋጁ.,
Portal Settings,ፖርታል ቅንብሮች,
Reference Owner,የማጣቀሻ ባለቤት,
Region,ክልል,
Report Builder,ሪፖርት ገንቢ,
Sample,ናሙና,
Saved,ተቀምጧል,
Series {0} already used in {1},ቀደም ሲል ጥቅም ላይ ተከታታይ {0} {1},
Set as Default,እንደ ነባሪ አዘጋጅ,
Shipping,መላኪያ,
Standard,መለኪያ,
Test,ሙከራ,
Traceback,Traceback,
Unable to find DocType {0},DocType {0} ማግኘት አልተቻለም.,
Weekdays,የሳምንቱ ቀናት,
Workflow,የስራ ፍሰት,
You need to be logged in to access this page,ይህን ገጽ ለመድረስ መግባት አለብዎት,
County,ካውንቲ,
Images,ሥዕሎች,
Office,ቢሮ,
Passive,የማይሠራ,
Permanent,ቋሚ,
Plant,ተክል,
Postal,የፖስታ,
Previous,ቀዳሚ,
Shop,ሱቅ,
Subsidiary,ተጪማሪ,
There is some problem with the file url: {0},ፋይል ዩ አር ኤል ጋር አንድ ችግር አለ: {0},
"Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}",ከ &quot;-&quot; ፣ &quot;#&quot; ፣ &quot;፣&quot; ፣ &quot;/&quot; ፣ &quot;{{&quot; እና &quot;}}&quot; በስተቀር ልዩ ቁምፊዎች ከመለያ መሰየሚያ አይፈቀድም {0},
Export Type,ወደ ውጪ ላክ,
Last Sync On,የመጨረሻው አስምር በርቷል,
Webhook Secret,Webhook ምስጢር,
Back to Home,ወደ ቤት መመለስ,
Customize,አብጅ,
Edit Profile,አርትዕ መገለጫ,
File Manager,የፋይል አቀናባሪ,
Invite as User,የተጠቃሚ እንደ ጋብዝ,
Newsletter,በራሪ ጽሑፍ,
Printing,ማተም,
Publish,አትም,
Refreshing,በማደስ ላይ,
Select All,ሁሉንም ምረጥ,
Set,አዘጋጅ,
Setup Wizard,የውቅር አዋቂ,
Update Details,ዝርዝሮችን አዘምን,
You,አንተ,
{0} Name,{0} ስም,
Bold,ደማቅ,
Center,መሃል,
Comment,አስተያየት,
Not Found,አልተገኘም,
User Id,የተጠቃሚው መለያ,
Position,ቦታ,
Crop,ከርክም,
Topic,አርእስት,
Public Transport,የሕዝብ ማመላለሻ,
Request Data,የጥያቄ ውሂብ,
Steps,ደረጃዎች,
Reference DocType,የማጣቀሻ ሰነድ ዓይነት,
Select Transaction,ይምረጡ የግብይት,
Help HTML,የእገዛ ኤችቲኤምኤል,
Series List for this Transaction,ለዚህ ግብይት ተከታታይ ዝርዝር,
User must always select,ተጠቃሚው ሁልጊዜ መምረጥ አለብዎ,
Check this if you want to force the user to select a series before saving. There will be no default if you check this.,ሳያስቀምጡ በፊት ተከታታይ ለመምረጥ ተጠቃሚው ለማስገደድ የሚፈልጉ ከሆነ ይህን ምልክት ያድርጉ. ይህን ለማረጋገጥ ከሆነ ምንም ነባሪ ይሆናል.,
Prefix,ባዕድ መነሻ,
This is the number of the last created transaction with this prefix,ይህ የዚህ ቅጥያ ጋር የመጨረሻ የፈጠረው የግብይት ቁጥር ነው,
Update Series Number,አዘምን ተከታታይ ቁጥር,
Validation Error,የማረጋገጫ ስህተት,
Andaman and Nicobar Islands,አንዳማን እና ኒኮባር ደሴቶች,
Andhra Pradesh,አንድራ ፕራዴሽ,
Arunachal Pradesh,አሩናቻል ፕራዴሽ,
Assam,አሳም,
Bihar,ቢሃር,
Chandigarh,ቻንዲጋር,
Chhattisgarh,ቼቲስጋርህ,
Dadra and Nagar Haveli,ዳድራ እና ናጋራ ሀድሊ,
Daman and Diu,ዳማን እና ዲዩ,
Delhi,ዴልሂ,
Goa,ጎዋ,
Gujarat,ጉጃራት,
Haryana,ሀሪያና,
Himachal Pradesh,ሂማሃል ፕራዴሽ,
Jammu and Kashmir,ጃሙ እና ካሽሚር,
Jharkhand,ጃሃርሃንድ,
Karnataka,ካርናታካ,
Kerala,ኬራላ,
Lakshadweep Islands,የላክሻድዌፕ ደሴቶች,
Madhya Pradesh,ማድያ ፕራዴሽ,
Maharashtra,ማሃራሽትራ,
Manipur,ማኒpር,
Meghalaya,Meghalaya,
Mizoram,ሚዞራም,
Nagaland,ናጋላንድ,
Odisha,ኦዲሻ,
Other Territory,ሌላ ክልል,
Pondicherry,የውሃ ወለሎች,
Punjab,Punንጃብ,
Rajasthan,ራጃስታን,
Sikkim,ሲክኪም,
Tamil Nadu,ታሚል ናዱ,
Telangana,ተላንጋና,
Tripura,ትራuraራ,
Uttar Pradesh,ኡታር ፕራዴሽ,
Uttarakhand,Uttarakhand,
West Bengal,ምዕራብ ቤንጋል,
Published on,ታትሟል,
Bottom,ታች,
Top,ከላይ,

1 A4 A4
9 Actions እርምጃዎች
10 Active ገቢር
11 Add አክል
Add Comment አስተያየት ያክሉ
12 Add Row ረድፍ አክል
13 Address አድራሻ
14 Address Line 2 የአድራሻ መስመር 2
143 Monthly ወርሃዊ
144 More ይበልጥ
145 More Information ተጨማሪ መረጃ
More... ተጨማሪ ...
146 Move ተንቀሳቀሰ
147 My Account አካውንቴ
148 New Address አዲስ አድራሻ
155 None ምንም
156 Not Permitted አይፈቀድም
157 Not active ገባሪ አይደለም
Notes ማስታወሻዎች
158 Number ቁጥር
159 Online የመስመር ላይ
160 Operation ቀዶ ጥገና
164 Page Missing or Moved የጠፋ ወይም ተንቀሳቅሷል ገጽ
165 Parameter የልኬት
166 Password የይለፍ ቃል
Payment Gateway የክፍያ ጌትዌይ
Payment Gateway Name የክፍያ በርዕስ ስም
Payments ክፍያዎች
167 Period ወቅት
168 Pincode ፒን ኮድ
Plan Name የዕቅድ ስም
169 Please enable pop-ups ብቅ-ባዮችን ለማንቃት እባክዎ
170 Please select Company ኩባንያ ይምረጡ
171 Please select {0} እባክዎ ይምረጡ {0}
172 Please set Email Address የኢሜይል አድራሻ ማዘጋጀት እባክዎ
Portal ፖርታል
173 Portal Settings ፖርታል ቅንብሮች
174 Preview ቅድመ-እይታ
175 Primary የመጀመሪያ
214 Sample ናሙና
215 Saturday ቅዳሜ
216 Saved ተቀምጧል
Scan Barcode ባርኮድ ቅኝት
217 Scheduled የተያዘለት
218 Search ፍለጋ
219 Secret Key ምስጢር ቁልፍ
228 Shipping መላኪያ
229 Short Name አጭር ስም
230 Slideshow የተንሸራታች ትዕይንት
Some information is missing አንዳንድ መረጃ ይጎድለዋል
231 Source ምንጭ
232 Source Name ምንጭ ስም
233 Standard መለኪያ
237 Stopped አቁሟል
238 Subject ትምህርት
239 Submit አስገባ
Successful ስኬታማ
240 Summary ማጠቃለያ
241 Sunday እሁድ
242 System Manager የስርዓት አስተዳዳሪ
249 Timespan የጊዜ ወሰን
250 To
251 To Date ቀን ወደ
Tools መሣሪያዎች
252 Traceback Traceback
253 URL ዩ አር ኤል
254 Unsubscribed ያልተመዘገበ
Use Sandbox ይጠቀሙ ማጠሪያ
255 User ተጠቃሚው
256 User ID የተጠቃሚው መለያ
257 Users ተጠቃሚዎች
556 Bulk Edit {0} የጅምላ አርትዕ {0}
557 Bulk Rename የጅምላ ይቀየር
558 Bulk Update የጅምላ ዝማኔ
Busy ስራ የሚበዛበት
559 Button ቁልፍ
560 Button Help የአዝራር እገዛ
561 Button Label የአዝራር መለያ ስም
692 Complete By በ ተጠናቅቋል
693 Complete Registration ሙሉ ምዝገባ
694 Complete Setup ተጠናቋል
Completed By ተጠናቅቋል
695 Compose Email ኢሜይል ፃፍ
696 Condition Detail የሁኔታዎች ዝርዝር ሁኔታ
697 Conditions ሁኔታዎች
1675 Not a valid user ትክክለኛ ተጠቃሚ
1676 Not a zip file አይደለም ዚፕ ፋይል
1677 Not allowed for {0}: {1} ለ {0} አልተፈቀደም: {1}
1678 You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4} ከሰሌዳ {3} ውስጥ በታች የተገናኘው {1} '{2}' የሚገኙት በ {0} ውስጥ መግባት አይፈቀድም
1679 You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3} ከሰሌዳ {3} ውስጥ በታች የተገናኘው {1} '{2}' የሚገኙት በ {0} ውስጥ መግባት አይፈቀድም
1680 Not allowed to Import ያስመጡ አልተፈቀደልህም
1681 Not allowed to change {0} after submission ከገባ በኋላ {0} መቀየር አይፈቀድም
1682 Not allowed to print cancelled documents አይደለም የተሰረዙ ሰነዶችን ማተም አይፈቀድም
1804 PayPal Settings የ PayPal ቅንብሮች
1805 PayPal payment gateway settings የ PayPal ክፍያ ፍኖት ቅንብሮች
1806 Payment Cancelled ክፍያ ተሰርዟል
Payment Failed ክፍያ አልተሳካም
1807 Payment Success የክፍያ ስኬት
1808 Pending Approval መጽደቅን በመጠባበቅ ላይ
1809 Pending Verification ማረጋገጫ በመጠባበቅ ላይ።
3200 Click on the lock icon to toggle public/private ሕዝባዊ / የግልን ለመቀየር የቁልፍ አዶው ላይ ጠቅ ያድርጉ።
3201 Click on {0} to generate Refresh Token. Refresh Token ን ለማመንጨት {0} ላይ ጠቅ ያድርጉ።
3202 Close Condition ሁኔታን ዝጋ።
Column {0} አምድ {0}
3203 Columns / Fields አምዶች / እርሻዎች።
3204 Configure notifications for mentions, assignments, energy points and more. ለመጥቀሻዎች ፣ ምደባዎች ፣ የኃይል ነጥቦች እና ሌሎችን በተመለከተ ማሳወቂያዎችን ያዋቅሩ።
3205 Contact Email የዕውቂያ ኢሜይል
3281 Failure አለመሳካት።
3282 Fetching default Global Search documents. ነባሪ የአለም አቀፍ ፍለጋ ሰነዶችን በማምጣት ላይ።
3283 Fetching posts... ልጥፎችን በማምጣት ላይ ...
Field Mapping የመስክ ካርታ
3284 Field To Check ለማጣራት መስክ
3285 File Information ፋይል መረጃ
3286 Filter By አጣራ በ
3435 No records will be exported ምንም መዝገቦች አይላኩም።
3436 No results found for {0} in Global Search በ {0} በአለም ፍለጋ ውስጥ ምንም ውጤቶች አልተገኙም
3437 No user found ምንም ተጠቃሚ አልተገኘም።
Not Specified አልተገለጸም ፡፡
3438 Notification Log የማሳወቂያ ምዝግብ ማስታወሻ
3439 Notification Settings የማሳወቂያ ቅንብሮች
3440 Notification Subscribed Document ማስታወቂያ የተመዘገበ ሰነድ
3590 Untranslated ያልተተረጎመ
3591 Upcoming Events መጪ ክስተቶች
3592 Update Existing Records ነባር መዛግብቶችን ያዘምኑ።
Update Type የዘመኑ ዓይነት
3593 Updated To A New Version 🎉 ወደ አዲስ ስሪት Updated ተዘምኗል
3594 Updating {0} of {1}, {2} {0} ከ {1} ፣ {2} ማዘመን
3595 Upload file ፋይል ስቀል
3696 Disabled ተሰናክሏል
3697 Doctype DocType
3698 Download Template አውርድ አብነት
Dr
3699 Due Date የመጨረሻ ማስረከቢያ ቀን
3700 Duplicate የተባዛ ነገር
3701 Edit Profile አርትዕ መገለጫ
3702 Email ኢሚል
End Time መጨረሻ ሰዓት
3703 Enter Value እሴት ያስገቡ
3704 Entity Type የህጋዊ አካል ዓይነት
3705 Error ስሕተት
3706 Expired ጊዜው አልፎበታል
3707 Export ወደ ውጪ ላክ
3708 Export not allowed. You need {0} role to export. ወደ ውጪ ላክ አይፈቀድም. እርስዎ ወደ ውጪ ወደ {0} ሚና ያስፈልገናል.
Fetching... በማምጣት ላይ ...
3709 Field መስክ
3710 File Manager የፋይል አቀናባሪ
3711 Filters ማጣሪያዎች
3720 In Progress በሂደት ላይ
3721 Intermediate መካከለኛ
3722 Invite as User የተጠቃሚ እንደ ጋብዝ
It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account. በአገልጋዩ የሽቦ ውቅር ላይ ችግር ያለ ይመስላል. ካልተሳካ, ገንዘቡ ወደ ሂሳብዎ ተመላሽ ይደረጋል.
3723 Loading... በመጫን ላይ ...
3724 Location አካባቢ
Looks like someone sent you to an incomplete URL. Please ask them to look into it. አንድ ሰው ያልተሟላ ዩ አር ኤል ወደ እናንተ ላከ ይመስላል. ወደ ለማየት ጠይቃቸው.
Master ባለቤት
3725 Message መልእክት
3726 Missing Values Required የሚጎድሉ እሴቶች የሚያስፈልግ
3727 Mobile No የተንቀሳቃሽ ስልክ የለም
3733 Offline ከመስመር ውጭ
3734 Open ክፈት
3735 Page {0} of {1} ገጽ {0} ከ {1}
Pay ይክፈሉ
3736 Pending በመጠባበቅ ላይ
3737 Phone ስልክ
3738 Please click on the following link to set your new password አዲሱን የይለፍ ቃል ለማዘጋጀት በሚከተለው አገናኝ ላይ ጠቅ ያድርጉ
3782 Year አመት
3783 Yearly በየአመቱ
3784 You አንተ
You can also copy-paste this link in your browser በተጨማሪም በአሳሽዎ ውስጥ ይህን አገናኝ መቅዳት-መለጠፍ ይችላሉ
3785 and
3786 {0} Name {0} ስም
3787 {0} is required {0} ያስፈልጋል
4085 Navbar ናቫባር
4086 Source Message ምንጭ መልእክት
4087 Translated Message የተተረጎመ መልእክት
Verified By በ የተረጋገጡ
4088 Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand. ይህንን ኮንሶል መጠቀም አጥቂዎች እርስዎን ለመምሰል እና መረጃዎን ለመስረቅ ሊፈቅድላቸው ይችላል። ያልገባዎትን ኮድ አያስገቡ ወይም አይለጥፉ።
4089 {0} m {0} ሜ
4090 {0} h {0} ሰዓት
4117 {0} is not a valid Name {0} ትክክለኛ ስም አይደለም
4118 Your system is being updated. Please refresh again after a few moments. ስርዓትዎ እየተዘመነ ነው። ከጥቂት ደቂቃዎች በኋላ እባክዎ እንደገና ያድሱ።
4119 {0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first. {0} {1}: የቀረበው መዝገብ ሊሰረዝ አይችልም። መጀመሪያ እሱን {2} መሰረዝ {3} አለብዎት።
Invalid naming series (. missing) for {0} ለ {0} ልክ ያልሆነ የስም ዝርዝር ((የጠፋ))
4120 Error has occurred in {0} ስህተት በ {0} ውስጥ ተከስቷል
4121 Status Updated ሁኔታ ተዘምኗል
4122 You can also copy-paste this {0} to your browser እንዲሁም ይህንን {0} በአሳሽዎ ላይ መገልበጥ-መለጠፍ ይችላሉ
4138 Address And Contacts አድራሻ እና አድራሻዎች
4139 Lead Conversion Time መሪነት የተቀየረበት ጊዜ
4140 Due Date Based On በመነሻ ላይ የተመሠረተ ቀን
Phone Number ስልክ ቁጥር
4141 Linked Documents የተገናኙ ሰነዶች
Account SID መለያ SID።
4142 Steps ደረጃዎች
4143 email ኢሜል
4144 Component ክፍል
4145 Subtitle ንዑስ ርዕስ
Global Defaults ዓለም አቀፍ ነባሪዎች
4146 Prefix ባዕድ መነሻ
4147 Is Public ይፋዊ ነው
4148 This chart will be available to all Users if this is set ይህ ሰንጠረዥ ይህ ከተዋቀረ ለሁሉም ተጠቃሚዎች ይገኛል
4329 Please create Card first እባክዎ መጀመሪያ ካርድ ይፍጠሩ
4330 Onboarding Permission የመሳፈሪያ ፈቃድ
4331 Onboarding Step የመሳፈሪያ ደረጃ
Is Mandatory አስገዳጅ ነው
4332 Is Skipped ተዘሏል
4333 Create Entry መግቢያ ፍጠር
4334 Update Settings ቅንብሮችን ያዘምኑ
4366 Send Attachments አባሪዎችን ይላኩ
4367 Testing በመሞከር ላይ
4368 System Notification የስርዓት ማስታወቂያ
WhatsApp ዋትስአፕ
4369 Twilio Number Twilio ቁጥር
4370 To use WhatsApp for Business, initialize <a href="#Form/Twilio Settings">Twilio Settings</a>. ዋትስአፕን ለቢዝነስ ለመጠቀም የ <a href="#Form/Twilio Settings">Twilio ቅንጅቶችን ያስጀምሩ</a> ፡፡
4371 To use Slack Channel, add a <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook URL</a>. Slack Channel ን ለመጠቀም ፣ <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook URL</a> ያክሉ።
4500 {0} are currently {1} {0} በአሁኑ ጊዜ {1} ናቸው
4501 Currently Replying በአሁኑ ጊዜ ምላሽ በመስጠት ላይ
4502 created {0} የተፈጠረው {0}
Make a call ደውል
4503 Change ለውጥ Coins
4504 Too Many Requests በጣም ብዙ ጥያቄዎች
4505 Invalid Authorization headers, add a token with a prefix from one of the following: {0}. ልክ ያልሆነ የፈቃድ ራስጌዎች ፣ ከሚከተሉት በአንዱ ቅድመ ቅጥያ ያለው ማስመሰያ ያክሉ ፦ {0}።
4664 Negative Value አሉታዊ እሴት
4665 Authentication failed while receiving emails from Email Account: {0}. ከኢሜል መለያ ኢሜሎችን በሚቀበሉበት ጊዜ ማረጋገጥ አልተሳካም ፦ {0}።
4666 Message from server: {0} መልእክት ከአገልጋይ: {0}
4667 Add Row ረድፍ አክል
4668 Analytics ትንታኔ
4669 Anonymous ስም የለሽ
4670 Author ደራሲ
4671 Basic መሠረታዊ
4672 Billing አከፋፈል
4673 Contact Details የእውቅያ ዝርዝሮች
4674 Datetime DATETIME
4675 Enable አንቃ
4676 Event ድርጊት
4677 Full ሙሉ
4678 Insert አስገባ
4679 Interests ፍላጎቶች
4680 Language Name የቋንቋ ስም
4681 License ፈቃድ
4682 Limit ወሰን
4683 Log ምዝግብ ማስታወሻ
4684 Meeting ስብሰባ
4685 My Account አካውንቴ
4686 Newsletters ጋዜጣዎች
4687 Password የይለፍ ቃል
4688 Pincode ፒን ኮድ
4689 Please select prefix first መጀመሪያ ቅድመ ቅጥያ ይምረጡ
4690 Please set Email Address የኢሜይል አድራሻ ማዘጋጀት እባክዎ
4691 Please set the series to be used. እባክዎ ጥቅም ላይ የሚውሉትን ስብስቦች ያዘጋጁ.
4692 Portal Settings ፖርታል ቅንብሮች
4693 Reference Owner የማጣቀሻ ባለቤት
4694 Region ክልል
4695 Report Builder ሪፖርት ገንቢ
4696 Sample ናሙና
4697 Saved ተቀምጧል
4698 Series {0} already used in {1} ቀደም ሲል ጥቅም ላይ ተከታታይ {0} {1}
4699 Set as Default እንደ ነባሪ አዘጋጅ
4700 Shipping መላኪያ
4701 Standard መለኪያ
4702 Test ሙከራ
4703 Traceback Traceback
4704 Unable to find DocType {0} DocType {0} ማግኘት አልተቻለም.
4705 Weekdays የሳምንቱ ቀናት
4706 Workflow የስራ ፍሰት
4707 You need to be logged in to access this page ይህን ገጽ ለመድረስ መግባት አለብዎት
4708 County ካውንቲ
4709 Images ሥዕሎች
4710 Office ቢሮ
4711 Passive የማይሠራ
4712 Permanent ቋሚ
4713 Plant ተክል
4714 Postal የፖስታ
4715 Previous ቀዳሚ
4716 Shop ሱቅ
4717 Subsidiary ተጪማሪ
4718 There is some problem with the file url: {0} ፋይል ዩ አር ኤል ጋር አንድ ችግር አለ: {0}
4719 Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0} ከ &quot;-&quot; ፣ &quot;#&quot; ፣ &quot;፣&quot; ፣ &quot;/&quot; ፣ &quot;{{&quot; እና &quot;}}&quot; በስተቀር ልዩ ቁምፊዎች ከመለያ መሰየሚያ አይፈቀድም {0}
4720 Export Type ወደ ውጪ ላክ
4721 Last Sync On የመጨረሻው አስምር በርቷል
4722 Webhook Secret Webhook ምስጢር
4723 Back to Home ወደ ቤት መመለስ
4724 Customize አብጅ
4725 Edit Profile አርትዕ መገለጫ
4726 File Manager የፋይል አቀናባሪ
4727 Invite as User የተጠቃሚ እንደ ጋብዝ
4728 Newsletter በራሪ ጽሑፍ
4729 Printing ማተም
4730 Publish አትም
4731 Refreshing በማደስ ላይ
4732 Select All ሁሉንም ምረጥ
4733 Set አዘጋጅ
4734 Setup Wizard የውቅር አዋቂ
4735 Update Details ዝርዝሮችን አዘምን
4736 You አንተ
4737 {0} Name {0} ስም
4738 Bold ደማቅ
4739 Center መሃል
4740 Comment አስተያየት
4741 Not Found አልተገኘም
4742 User Id የተጠቃሚው መለያ
4743 Position ቦታ
4744 Crop ከርክም
4745 Topic አርእስት
4746 Public Transport የሕዝብ ማመላለሻ
4747 Request Data የጥያቄ ውሂብ
4748 Steps ደረጃዎች
4749 Reference DocType የማጣቀሻ ሰነድ ዓይነት
4750 Select Transaction ይምረጡ የግብይት
4751 Help HTML የእገዛ ኤችቲኤምኤል
4752 Series List for this Transaction ለዚህ ግብይት ተከታታይ ዝርዝር
4753 User must always select ተጠቃሚው ሁልጊዜ መምረጥ አለብዎ
4754 Check this if you want to force the user to select a series before saving. There will be no default if you check this. ሳያስቀምጡ በፊት ተከታታይ ለመምረጥ ተጠቃሚው ለማስገደድ የሚፈልጉ ከሆነ ይህን ምልክት ያድርጉ. ይህን ለማረጋገጥ ከሆነ ምንም ነባሪ ይሆናል.
4755 Prefix ባዕድ መነሻ
4756 This is the number of the last created transaction with this prefix ይህ የዚህ ቅጥያ ጋር የመጨረሻ የፈጠረው የግብይት ቁጥር ነው
4757 Update Series Number አዘምን ተከታታይ ቁጥር
4758 Validation Error የማረጋገጫ ስህተት
4759 Andaman and Nicobar Islands አንዳማን እና ኒኮባር ደሴቶች
4760 Andhra Pradesh አንድራ ፕራዴሽ
4761 Arunachal Pradesh አሩናቻል ፕራዴሽ
4762 Assam አሳም
4763 Bihar ቢሃር
4764 Chandigarh ቻንዲጋር
4765 Chhattisgarh ቼቲስጋርህ
4766 Dadra and Nagar Haveli ዳድራ እና ናጋራ ሀድሊ
4767 Daman and Diu ዳማን እና ዲዩ
4768 Delhi ዴልሂ
4769 Goa ጎዋ
4770 Gujarat ጉጃራት
4771 Haryana ሀሪያና
4772 Himachal Pradesh ሂማሃል ፕራዴሽ
4773 Jammu and Kashmir ጃሙ እና ካሽሚር
4774 Jharkhand ጃሃርሃንድ
4775 Karnataka ካርናታካ
4776 Kerala ኬራላ
4777 Lakshadweep Islands የላክሻድዌፕ ደሴቶች
4778 Madhya Pradesh ማድያ ፕራዴሽ
4779 Maharashtra ማሃራሽትራ
4780 Manipur ማኒpር
4781 Meghalaya Meghalaya
4782 Mizoram ሚዞራም
4783 Nagaland ናጋላንድ
4784 Odisha ኦዲሻ
4785 Other Territory ሌላ ክልል
4786 Pondicherry የውሃ ወለሎች
4787 Punjab Punንጃብ
4788 Rajasthan ራጃስታን
4789 Sikkim ሲክኪም
4790 Tamil Nadu ታሚል ናዱ
4791 Telangana ተላንጋና
4792 Tripura ትራuraራ
4793 Uttar Pradesh ኡታር ፕራዴሽ
4794 Uttarakhand Uttarakhand
4795 West Bengal ምዕራብ ቤንጋል
4796 Published on ታትሟል
4797 Bottom ታች
4798 Top ከላይ

View file

@ -9,7 +9,6 @@ Action,حدث,
Actions,الإجراءات,
Active,نشط,
Add,إضافة,
Add Comment,أضف تعليق,
Add Row,اضف سطر,
Address,عنوان,
Address Line 2,العنوان سطر 2,
@ -144,7 +143,6 @@ Monday,يوم الاثنين,
Monthly,شهريا,
More,أكثر,
More Information,المزيد من المعلومات,
More...,المزيد...,
Move,حرك,
My Account,حسابي,
New Address,عنوان جديد,
@ -157,7 +155,6 @@ No items found.,لم يتم العثور على العناصر.,
None,لا شيء,
Not Permitted,لا يسمح,
Not active,غير نشطة,
Notes,ملاحظات,
Number,رقم,
Online,متصل بالإنترنت,
Operation,عملية,
@ -167,17 +164,12 @@ Owner,مالك,
Page Missing or Moved,الصفحة مفقودة أو تم نقلها,
Parameter,المعلمة,
Password,كلمة السر,
Payment Gateway,بوابة الدفع,
Payment Gateway Name,اسم بوابة الدفع,
Payments,المدفوعات,
Period,فترة,
Pincode,رمز Pin,
Plan Name,اسم الخطة,
Please enable pop-ups,يرجى تمكين النوافذ المنبثقة,
Please select Company,الرجاء اختيار شركة \n<br>\nPlease select Company,
Please select {0},الرجاء اختيار {0},
Please set Email Address,يرجى وضع عنوان البريد الإلكتروني,
Portal,بوابة,
Portal Settings,إعدادات البوابة,
Preview,معاينة,
Primary,أساسي,
@ -222,7 +214,6 @@ Salutation,اللقب,
Sample,عينة,
Saturday,السبت,
Saved,حفظ,
Scan Barcode,مسح الباركود,
Scheduled,من المقرر,
Search,البحث,
Secret Key,المفتاح السري,
@ -237,7 +228,6 @@ Settings,إعدادات,
Shipping,الشحن,
Short Name,الاسم المختصر,
Slideshow,عرض الشرائح,
Some information is missing,بعض المعلومات مفقود,
Source,المصدر,
Source Name,اسم المصدر,
Standard,اساسي,
@ -247,7 +237,6 @@ State,حالة,
Stopped,توقف,
Subject,موضوع,
Submit,تسجيل,
Successful,ناجح,
Summary,ملخص,
Sunday,الأحد,
System Manager,مدير النظام,
@ -260,11 +249,9 @@ The page you are looking for is missing. This could be because it is moved or th
Timespan,الفترة الزمنية,
To,إلى,
To Date,إلى تاريخ,
Tools,أدوات,
Traceback,Traceback,
URL,رابط الانترنت,
Unsubscribed,إلغاء اشتراكك,
Use Sandbox,استخدام ساندبوكس,
User,المستعمل,
User ID,تعريف المستخدم,
Users,المستخدمين,
@ -569,7 +556,6 @@ Bulk Delete,حذف بالجملة,
Bulk Edit {0},تعديل بالجمله {0},
Bulk Rename,إعادة تسمية بالجمله,
Bulk Update,تحديث بالجمله,
Busy,مشغول,
Button,زر,
Button Help,زر المساعدة,
Button Label,زر ملصق,
@ -706,7 +692,6 @@ Compiled Successfully,جمعت بنجاح,
Complete By,الكامل من جانب,
Complete Registration,أكمال التسجيل,
Complete Setup,أكمال الإعداد,
Completed By,اكتمل بواسطة,
Compose Email,كتابة رسالة الكترونية,
Condition Detail,حالة التفاصيل,
Conditions,الظروف,
@ -1690,8 +1675,8 @@ Not a valid Workflow Action,ليس إجراء سير عمل صالح,
Not a valid user,غير مستخدم صالح,
Not a zip file,ليس ملف مضغوط,
Not allowed for {0}: {1},غير مسموح لـ {0}: {1},
"You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4}","لا يسمح لك بالوصول إلى {0} لأنه مرتبط بـ {1} '{2}' في الصف {3}، حقل {4}",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},"لا يسمح لك بالوصول إلى هذا السجل {0} لأنه مرتبط بـ {1} '{2}' في الحقل {3}",
"You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4}",لا يسمح لك بالوصول إلى {0} لأنه مرتبط بـ {1} '{2}' في الصف {3}، حقل {4},
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},لا يسمح لك بالوصول إلى هذا السجل {0} لأنه مرتبط بـ {1} '{2}' في الحقل {3},
Not allowed to Import,لا يسمح ل استيراد,
Not allowed to change {0} after submission,لا يسمح لتغيير {0} بعد تقديم,
Not allowed to print cancelled documents,لا يسمح لطباعة الوثائق الملغاة,
@ -1819,7 +1804,6 @@ Path to private Key File,الطريق إلى ملف مفتاح خاص,
PayPal Settings,اعدادات PayPal,
PayPal payment gateway settings,إعدادات بوابة الدفع باي بال,
Payment Cancelled,تم إلغاء الدفعة,
Payment Failed,عملية الدفع فشلت,
Payment Success,دفع النجاح,
Pending Approval,ما زال يحتاج بتصدير,
Pending Verification,في انتظار التحقق,
@ -3216,7 +3200,6 @@ Click on the link below to approve the request,انقر على الرابط أد
Click on the lock icon to toggle public/private,انقر على أيقونة القفل للتبديل بين القطاعين العام والخاص,
Click on {0} to generate Refresh Token.,انقر فوق {0} لإنشاء تحديث الرمز المميز.,
Close Condition,أغلق الشرط,
Column {0},العمود {0},
Columns / Fields,الأعمدة / الحقول,
"Configure notifications for mentions, assignments, energy points and more.",قم بتكوين الإشعارات الخاصة بالإشارات والتعيينات ونقاط الطاقة والمزيد.,
Contact Email,عنوان البريد الإلكتروني,
@ -3298,7 +3281,6 @@ Failed to create an Event Consumer or an Event Consumer for the current site is
Failure,بالفشل,
Fetching default Global Search documents.,جلب مستندات البحث العالمي الافتراضية.,
Fetching posts...,جارٍ جلب المشاركات ...,
Field Mapping,رسم الخرائط الميدانية,
Field To Check,حقل للتحقق,
File Information,معلومات الملف,
Filter By,مصنف بواسطة,
@ -3453,7 +3435,6 @@ No posts yet,لا توجد مشاركات حتى الآن,
No records will be exported,لن يتم تصدير سجلات,
No results found for {0} in Global Search,لم يتم العثور على نتائج لـ {0} في Global Search,
No user found,لم يتم العثور على المستخدم,
Not Specified,غير محدد,
Notification Log,سجل الإخطار,
Notification Settings,إعدادات الإشعار,
Notification Subscribed Document,وثيقة الاشتراك المكتوبة,
@ -3609,7 +3590,6 @@ Untitled Column,عمود بلا عنوان,
Untranslated,غير مترجم,
Upcoming Events,الأحداث القادمة,
Update Existing Records,تحديث السجلات الموجودة,
Update Type,نوع التحديث,
Updated To A New Version 🎉,تم التحديث إلى إصدار جديد 🎉,
"Updating {0} of {1}, {2}",تحديث {0} من {1} ، {2},
Upload file,رفع ملف,
@ -3716,19 +3696,16 @@ Designation,تعيين,
Disabled,معطل,
Doctype,DOCTYPE,
Download Template,تحميل الوثيقة,
Dr,Dr,
Due Date,بسبب تاريخ,
Duplicate,مكررة,
Edit Profile,تعديل الملف الشخصي,
Email,البريد الإلكتروني,
End Time,وقت الانتهاء,
Enter Value,أدخل القيمة,
Entity Type,نوع الكيان,
Error,خطأ,
Expired,انتهى,
Export,تصدير,
Export not allowed. You need {0} role to export.,الصادرات غير مسموح به. تحتاج {0} صلاحية التصدير.,
Fetching...,جلب ...,
Field,حقل,
File Manager,مدير الملفات,
Filters,فلاتر,
@ -3743,11 +3720,8 @@ Import Data from CSV / Excel files.,استيراد البيانات من ملف
In Progress,في تَقَدم,
Intermediate,متوسط,
Invite as User,دعوة كمستخدم,
"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.",يبدو أن هناك مشكلة في تكوين شريطية للخادم. في حالة الفشل ، سيتم رد المبلغ إلى حسابك.,
Loading...,تحميل ...,
Location,الموقع,
Looks like someone sent you to an incomplete URL. Please ask them to look into it.,يبدو مثل شخص أرسل لك إلى عنوان URL غير مكتمل. من فضلك اطلب منهم للنظر في ذلك.,
Master,سيد,
Message,رسالة,
Missing Values Required,قيم مفقودة مطلوبة,
Mobile No,رقم الجوال,
@ -3759,7 +3733,6 @@ Note,ملاحظات,
Offline,غير متصل بالإنترنت,
Open,فتح,
Page {0} of {1},الصفحة {0} من {1},
Pay,دفع,
Pending,معلق,
Phone,هاتف,
Please click on the following link to set your new password,الرجاء الضغط على الرابط التالي لتعيين كلمة المرور الجديدة,
@ -3809,7 +3782,6 @@ Welcome to {0},أهلا وسهلا بك إلى {0},
Year,عام,
Yearly,سنويا,
You,أنت,
You can also copy-paste this link in your browser,يمكنك أيضا نسخ - لصق هذا الرابط في متصفحك,
and,و,
{0} Name,{0} الاسم,
{0} is required,{0} مطلوب,
@ -4113,7 +4085,6 @@ Custom SCSS,SCSS مخصص,
Navbar,نافبار,
Source Message,رسالة المصدر,
Translated Message,رسالة مترجمة,
Verified By,التحقق من,
Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand.,قد يسمح استخدام وحدة التحكم هذه للمهاجمين بانتحال هويتك وسرقة معلوماتك. لا تدخل أو تلصق رمزًا لا تفهمه.,
{0} m,{0} م,
{0} h,{0} ح,
@ -4146,7 +4117,6 @@ Collapse,انهيار,
{0} is not a valid Name,{0} ليس اسمًا صالحًا,
Your system is being updated. Please refresh again after a few moments.,يتم تحديث نظامك. يرجى التحديث مرة أخرى بعد لحظات قليلة.,
{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first.,{0} {1}: لا يمكن حذف السجل المقدم. يجب عليك {2} إلغاء {3} أولاً.,
Invalid naming series (. missing) for {0},سلسلة تسمية غير صالحة (. مفقود) لـ {0},
Error has occurred in {0},حدث خطأ في {0},
Status Updated,تم تحديث الحالة,
You can also copy-paste this {0} to your browser,يمكنك أيضًا نسخ {0} هذا ولصقه في متصفحك,
@ -4168,14 +4138,11 @@ Is Billing Contact,هو جهة اتصال الفوترة,
Address And Contacts,العنوان وجهات الاتصال,
Lead Conversion Time,وقت تحويل الزبون المحتمل,
Due Date Based On,تاريخ الاستحقاق بناء على,
Phone Number,رقم الهاتف,
Linked Documents,المستندات المرتبطة,
Account SID,حساب SID,
Steps,خطوات,
email,البريد الإلكتروني,
Component,مكون,
Subtitle,عنوان فرعي,
Global Defaults,افتراضيات العالمية,
Prefix,بادئة,
Is Public,عام,
This chart will be available to all Users if this is set,سيكون هذا المخطط متاحًا لجميع المستخدمين إذا تم تعيين هذا,
@ -4362,7 +4329,6 @@ Dynamic Filters Section,قسم المرشحات الديناميكية,
Please create Card first,الرجاء إنشاء البطاقة أولاً,
Onboarding Permission,إذن على متن الطائرة,
Onboarding Step,خطوة Onboarding,
Is Mandatory,إلزامي,
Is Skipped,تم تخطي,
Create Entry,إنشاء الدخول,
Update Settings,إعدادات التحديث,
@ -4400,7 +4366,6 @@ Message (HTML),الرسالة (HTML),
Send Attachments,إرسال المرفقات,
Testing,اختبارات,
System Notification,إعلام النظام,
WhatsApp,ال WhatsApp,
Twilio Number,رقم تويليو,
"To use WhatsApp for Business, initialize <a href=""#Form/Twilio Settings"">Twilio Settings</a>.","لاستخدام WhatsApp for Business ، قم بتهيئة <a href=""#Form/Twilio Settings"">Twilio Settings</a> .",
"To use Slack Channel, add a <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL</a>.","لاستخدام قناة Slack ، أضف <a href=""#List/Slack%20Webhook%20URL/List"">عنوان URL لـ Slack Webhook</a> .",
@ -4535,7 +4500,6 @@ Add to ToDo,أضف إلى ToDo,
{0} are currently {1},{0} حاليًا {1},
Currently Replying,الرد حاليا,
created {0},تم إنشاء {0},
Make a call,إجراء مكالمة,
Change,يتغيرون,Coins
Too Many Requests,طلبات كثيرة جدا,
"Invalid Authorization headers, add a token with a prefix from one of the following: {0}.",رؤوس المصادقة غير صالحة ، أضف رمزًا مميزًا ببادئة من أحد الخيارات التالية: {0}.,
@ -4700,3 +4664,135 @@ Value cannot be negative for {0}: {1},لا يمكن أن تكون القيمة
Negative Value,قيمة سالبة,
Authentication failed while receiving emails from Email Account: {0}.,فشلت المصادقة أثناء تلقي رسائل البريد الإلكتروني من حساب البريد الإلكتروني: {0}.,
Message from server: {0},رسالة من الخادم: {0},
Add Row,اضف سطر,
Analytics,التحليلات,
Anonymous,مجهول,
Author,مؤلف,
Basic,الأساسي,
Billing,الفواتير,
Contact Details,تفاصيل الاتصال,
Datetime,التاريخ والوقت,
Enable,تمكين,
Event,حدث,
Full,ممتلئ,
Insert,إدراج,
Interests,الإهتمامات او الفوائد,
Language Name,اسم اللغة,
License,رخصة,
Limit,حد,
Log,سجل,
Meeting,لقاء,
My Account,حسابي,
Newsletters,النشرات الإخبارية,
Password,كلمة السر,
Pincode,رمز Pin,
Please select prefix first,الرجاء اختيار البادئة اولا,
Please set Email Address,يرجى وضع عنوان البريد الإلكتروني,
Please set the series to be used.,يرجى ضبط المسلسل ليتم استخدامه.,
Portal Settings,إعدادات البوابة,
Reference Owner,إشارة المالك,
Region,منطقة,
Report Builder,تقرير منشئ,
Sample,عينة,
Saved,حفظ,
Series {0} already used in {1},الترقيم المتسلسل {0} مستخدم بالفعل في {1},
Set as Default,تعيين كافتراضي,
Shipping,الشحن,
Standard,اساسي,
Test,اختبار,
Traceback,Traceback,
Unable to find DocType {0},تعذر العثور على نوع الملف {0},
Weekdays,أيام الأسبوع,
Workflow,سير العمل,
You need to be logged in to access this page,تحتاج إلى تسجيل الدخول للوصول إلى هذه الصفحة,
County,مقاطعة,
Images,صور,
Office,مكتب,
Passive,غير فعال,
Permanent,دائم,
Plant,مصنع,
Postal,بريدي,
Previous,سابق,
Shop,تسوق,
Subsidiary,شركة فرعية,
There is some problem with the file url: {0},هناك بعض المشاكل مع رابط الملف: {0},
"Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}",{0} الأحرف الخاصة باستثناء &quot;-&quot; ، &quot;#&quot; ، &quot;.&quot; ، &quot;/&quot; ، &quot;{{&quot; و &quot;}}&quot; غير مسموح في سلسلة التسمية,
Export Type,نوع التصدير,
Last Sync On,آخر مزامنة تشغيل,
Webhook Secret,Webhook Secret,
Back to Home,العودة إلى المنزل,
Customize,تخصيص,
Edit Profile,تعديل الملف الشخصي,
File Manager,مدير الملفات,
Invite as User,دعوة كمستخدم,
Newsletter,النشرة الإخبارية,
Printing,طبع,
Publish,نشر,
Refreshing,جاري التحديث,
Select All,تحديد الكل,
Set,مجموعة,
Setup Wizard,معالج الإعدادات,
Update Details,تحديث التفاصيل,
You,أنت,
{0} Name,{0} الاسم,
Bold,بالخط العريض,
Center,مركز,
Comment,تعليق,
Not Found,لم يتم العثور على,
User Id,تعريف المستخدم,
Position,موضع,
Crop,محصول,
Topic,موضوع,
Public Transport,النقل العام,
Request Data,طلب البيانات,
Steps,خطوات,
Reference DocType,مرجع DOCTYPE,
Select Transaction,حدد المعاملات,
Help HTML,مساعدة HTML,
Series List for this Transaction,قائمة متسلسلة لهذه العملية,
User must always select,يجب دائما مستخدم تحديد,
Check this if you want to force the user to select a series before saving. There will be no default if you check this.,التحقق من ذلك إذا كنت تريد لإجبار المستخدم لتحديد سلسلة قبل الحفظ. لن يكون هناك الافتراضي إذا قمت بتحديد هذا.,
Prefix,بادئة,
This is the number of the last created transaction with this prefix,هذا هو عدد المعاملات التي تم إنشاؤها باستخدام مشاركة هذه البادئة,
Update Series Number,تحديث الرقم المتسلسل,
Validation Error,خطئ في التحقق,
Andaman and Nicobar Islands,جزر أندامان ونيكوبار,
Andhra Pradesh,ولاية اندرا براديش,
Arunachal Pradesh,اروناتشال براديش,
Assam,آسام,
Bihar,بيهار,
Chandigarh,شانديغار,
Chhattisgarh,تشهاتيسجاره,
Dadra and Nagar Haveli,دادرا وناغار هافيلي,
Daman and Diu,دامان وديو,
Delhi,دلهي,
Goa,غوا,
Gujarat,ولاية غوجارات,
Haryana,هاريانا,
Himachal Pradesh,هيماشال براديش,
Jammu and Kashmir,جامو وكشمير,
Jharkhand,جهارخاند,
Karnataka,كارناتاكا,
Kerala,ولاية كيرالا,
Lakshadweep Islands,جزر لاكشادويب,
Madhya Pradesh,ماديا براديش,
Maharashtra,ماهاراشترا,
Manipur,مانيبور,
Meghalaya,ميغالايا,
Mizoram,ميزورام,
Nagaland,ناجالاند,
Odisha,أوديشا,
Other Territory,إقليم آخر,
Pondicherry,بونديشيري,
Punjab,البنجاب,
Rajasthan,راجستان,
Sikkim,سيكيم,
Tamil Nadu,تاميل نادو,
Telangana,تيلانجانا,
Tripura,تريبورا,
Uttar Pradesh,ولاية أوتار براديش,
Uttarakhand,أوتارانتشال,
West Bengal,ولاية البنغال الغربية,
Published on,نشرت في,
Bottom,الأسفل,
Top,أعلى,

1 A4 A4
9 Actions الإجراءات
10 Active نشط
11 Add إضافة
Add Comment أضف تعليق
12 Add Row اضف سطر
13 Address عنوان
14 Address Line 2 العنوان سطر 2
143 Monthly شهريا
144 More أكثر
145 More Information المزيد من المعلومات
More... المزيد...
146 Move حرك
147 My Account حسابي
148 New Address عنوان جديد
155 None لا شيء
156 Not Permitted لا يسمح
157 Not active غير نشطة
Notes ملاحظات
158 Number رقم
159 Online متصل بالإنترنت
160 Operation عملية
164 Page Missing or Moved الصفحة مفقودة أو تم نقلها
165 Parameter المعلمة
166 Password كلمة السر
Payment Gateway بوابة الدفع
Payment Gateway Name اسم بوابة الدفع
Payments المدفوعات
167 Period فترة
168 Pincode رمز Pin
Plan Name اسم الخطة
169 Please enable pop-ups يرجى تمكين النوافذ المنبثقة
170 Please select Company الرجاء اختيار شركة \n<br>\nPlease select Company
171 Please select {0} الرجاء اختيار {0}
172 Please set Email Address يرجى وضع عنوان البريد الإلكتروني
Portal بوابة
173 Portal Settings إعدادات البوابة
174 Preview معاينة
175 Primary أساسي
214 Sample عينة
215 Saturday السبت
216 Saved حفظ
Scan Barcode مسح الباركود
217 Scheduled من المقرر
218 Search البحث
219 Secret Key المفتاح السري
228 Shipping الشحن
229 Short Name الاسم المختصر
230 Slideshow عرض الشرائح
Some information is missing بعض المعلومات مفقود
231 Source المصدر
232 Source Name اسم المصدر
233 Standard اساسي
237 Stopped توقف
238 Subject موضوع
239 Submit تسجيل
Successful ناجح
240 Summary ملخص
241 Sunday الأحد
242 System Manager مدير النظام
249 Timespan الفترة الزمنية
250 To إلى
251 To Date إلى تاريخ
Tools أدوات
252 Traceback Traceback
253 URL رابط الانترنت
254 Unsubscribed إلغاء اشتراكك
Use Sandbox استخدام ساندبوكس
255 User المستعمل
256 User ID تعريف المستخدم
257 Users المستخدمين
556 Bulk Edit {0} تعديل بالجمله {0}
557 Bulk Rename إعادة تسمية بالجمله
558 Bulk Update تحديث بالجمله
Busy مشغول
559 Button زر
560 Button Help زر المساعدة
561 Button Label زر ملصق
692 Complete By الكامل من جانب
693 Complete Registration أكمال التسجيل
694 Complete Setup أكمال الإعداد
Completed By اكتمل بواسطة
695 Compose Email كتابة رسالة الكترونية
696 Condition Detail حالة التفاصيل
697 Conditions الظروف
1675 Not a valid user غير مستخدم صالح
1676 Not a zip file ليس ملف مضغوط
1677 Not allowed for {0}: {1} غير مسموح لـ {0}: {1}
1678 You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4} لا يسمح لك بالوصول إلى {0} لأنه مرتبط بـ {1} '{2}' في الصف {3}، حقل {4}
1679 You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3} لا يسمح لك بالوصول إلى هذا السجل {0} لأنه مرتبط بـ {1} '{2}' في الحقل {3}
1680 Not allowed to Import لا يسمح ل استيراد
1681 Not allowed to change {0} after submission لا يسمح لتغيير {0} بعد تقديم
1682 Not allowed to print cancelled documents لا يسمح لطباعة الوثائق الملغاة
1804 PayPal Settings اعدادات PayPal
1805 PayPal payment gateway settings إعدادات بوابة الدفع باي بال
1806 Payment Cancelled تم إلغاء الدفعة
Payment Failed عملية الدفع فشلت
1807 Payment Success دفع النجاح
1808 Pending Approval ما زال يحتاج بتصدير
1809 Pending Verification في انتظار التحقق
3200 Click on the lock icon to toggle public/private انقر على أيقونة القفل للتبديل بين القطاعين العام والخاص
3201 Click on {0} to generate Refresh Token. انقر فوق {0} لإنشاء تحديث الرمز المميز.
3202 Close Condition أغلق الشرط
Column {0} العمود {0}
3203 Columns / Fields الأعمدة / الحقول
3204 Configure notifications for mentions, assignments, energy points and more. قم بتكوين الإشعارات الخاصة بالإشارات والتعيينات ونقاط الطاقة والمزيد.
3205 Contact Email عنوان البريد الإلكتروني
3281 Failure بالفشل
3282 Fetching default Global Search documents. جلب مستندات البحث العالمي الافتراضية.
3283 Fetching posts... جارٍ جلب المشاركات ...
Field Mapping رسم الخرائط الميدانية
3284 Field To Check حقل للتحقق
3285 File Information معلومات الملف
3286 Filter By مصنف بواسطة
3435 No records will be exported لن يتم تصدير سجلات
3436 No results found for {0} in Global Search لم يتم العثور على نتائج لـ {0} في Global Search
3437 No user found لم يتم العثور على المستخدم
Not Specified غير محدد
3438 Notification Log سجل الإخطار
3439 Notification Settings إعدادات الإشعار
3440 Notification Subscribed Document وثيقة الاشتراك المكتوبة
3590 Untranslated غير مترجم
3591 Upcoming Events الأحداث القادمة
3592 Update Existing Records تحديث السجلات الموجودة
Update Type نوع التحديث
3593 Updated To A New Version 🎉 تم التحديث إلى إصدار جديد 🎉
3594 Updating {0} of {1}, {2} تحديث {0} من {1} ، {2}
3595 Upload file رفع ملف
3696 Disabled معطل
3697 Doctype DOCTYPE
3698 Download Template تحميل الوثيقة
Dr Dr
3699 Due Date بسبب تاريخ
3700 Duplicate مكررة
3701 Edit Profile تعديل الملف الشخصي
3702 Email البريد الإلكتروني
End Time وقت الانتهاء
3703 Enter Value أدخل القيمة
3704 Entity Type نوع الكيان
3705 Error خطأ
3706 Expired انتهى
3707 Export تصدير
3708 Export not allowed. You need {0} role to export. الصادرات غير مسموح به. تحتاج {0} صلاحية التصدير.
Fetching... جلب ...
3709 Field حقل
3710 File Manager مدير الملفات
3711 Filters فلاتر
3720 In Progress في تَقَدم
3721 Intermediate متوسط
3722 Invite as User دعوة كمستخدم
It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account. يبدو أن هناك مشكلة في تكوين شريطية للخادم. في حالة الفشل ، سيتم رد المبلغ إلى حسابك.
3723 Loading... تحميل ...
3724 Location الموقع
Looks like someone sent you to an incomplete URL. Please ask them to look into it. يبدو مثل شخص أرسل لك إلى عنوان URL غير مكتمل. من فضلك اطلب منهم للنظر في ذلك.
Master سيد
3725 Message رسالة
3726 Missing Values Required قيم مفقودة مطلوبة
3727 Mobile No رقم الجوال
3733 Offline غير متصل بالإنترنت
3734 Open فتح
3735 Page {0} of {1} الصفحة {0} من {1}
Pay دفع
3736 Pending معلق
3737 Phone هاتف
3738 Please click on the following link to set your new password الرجاء الضغط على الرابط التالي لتعيين كلمة المرور الجديدة
3782 Year عام
3783 Yearly سنويا
3784 You أنت
You can also copy-paste this link in your browser يمكنك أيضا نسخ - لصق هذا الرابط في متصفحك
3785 and و
3786 {0} Name {0} الاسم
3787 {0} is required {0} مطلوب
4085 Navbar نافبار
4086 Source Message رسالة المصدر
4087 Translated Message رسالة مترجمة
Verified By التحقق من
4088 Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand. قد يسمح استخدام وحدة التحكم هذه للمهاجمين بانتحال هويتك وسرقة معلوماتك. لا تدخل أو تلصق رمزًا لا تفهمه.
4089 {0} m {0} م
4090 {0} h {0} ح
4117 {0} is not a valid Name {0} ليس اسمًا صالحًا
4118 Your system is being updated. Please refresh again after a few moments. يتم تحديث نظامك. يرجى التحديث مرة أخرى بعد لحظات قليلة.
4119 {0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first. {0} {1}: لا يمكن حذف السجل المقدم. يجب عليك {2} إلغاء {3} أولاً.
Invalid naming series (. missing) for {0} سلسلة تسمية غير صالحة (. مفقود) لـ {0}
4120 Error has occurred in {0} حدث خطأ في {0}
4121 Status Updated تم تحديث الحالة
4122 You can also copy-paste this {0} to your browser يمكنك أيضًا نسخ {0} هذا ولصقه في متصفحك
4138 Address And Contacts العنوان وجهات الاتصال
4139 Lead Conversion Time وقت تحويل الزبون المحتمل
4140 Due Date Based On تاريخ الاستحقاق بناء على
Phone Number رقم الهاتف
4141 Linked Documents المستندات المرتبطة
Account SID حساب SID
4142 Steps خطوات
4143 email البريد الإلكتروني
4144 Component مكون
4145 Subtitle عنوان فرعي
Global Defaults افتراضيات العالمية
4146 Prefix بادئة
4147 Is Public عام
4148 This chart will be available to all Users if this is set سيكون هذا المخطط متاحًا لجميع المستخدمين إذا تم تعيين هذا
4329 Please create Card first الرجاء إنشاء البطاقة أولاً
4330 Onboarding Permission إذن على متن الطائرة
4331 Onboarding Step خطوة Onboarding
Is Mandatory إلزامي
4332 Is Skipped تم تخطي
4333 Create Entry إنشاء الدخول
4334 Update Settings إعدادات التحديث
4366 Send Attachments إرسال المرفقات
4367 Testing اختبارات
4368 System Notification إعلام النظام
WhatsApp ال WhatsApp
4369 Twilio Number رقم تويليو
4370 To use WhatsApp for Business, initialize <a href="#Form/Twilio Settings">Twilio Settings</a>. لاستخدام WhatsApp for Business ، قم بتهيئة <a href="#Form/Twilio Settings">Twilio Settings</a> .
4371 To use Slack Channel, add a <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook URL</a>. لاستخدام قناة Slack ، أضف <a href="#List/Slack%20Webhook%20URL/List">عنوان URL لـ Slack Webhook</a> .
4500 {0} are currently {1} {0} حاليًا {1}
4501 Currently Replying الرد حاليا
4502 created {0} تم إنشاء {0}
Make a call إجراء مكالمة
4503 Change يتغيرون Coins
4504 Too Many Requests طلبات كثيرة جدا
4505 Invalid Authorization headers, add a token with a prefix from one of the following: {0}. رؤوس المصادقة غير صالحة ، أضف رمزًا مميزًا ببادئة من أحد الخيارات التالية: {0}.
4664 Negative Value قيمة سالبة
4665 Authentication failed while receiving emails from Email Account: {0}. فشلت المصادقة أثناء تلقي رسائل البريد الإلكتروني من حساب البريد الإلكتروني: {0}.
4666 Message from server: {0} رسالة من الخادم: {0}
4667 Add Row اضف سطر
4668 Analytics التحليلات
4669 Anonymous مجهول
4670 Author مؤلف
4671 Basic الأساسي
4672 Billing الفواتير
4673 Contact Details تفاصيل الاتصال
4674 Datetime التاريخ والوقت
4675 Enable تمكين
4676 Event حدث
4677 Full ممتلئ
4678 Insert إدراج
4679 Interests الإهتمامات او الفوائد
4680 Language Name اسم اللغة
4681 License رخصة
4682 Limit حد
4683 Log سجل
4684 Meeting لقاء
4685 My Account حسابي
4686 Newsletters النشرات الإخبارية
4687 Password كلمة السر
4688 Pincode رمز Pin
4689 Please select prefix first الرجاء اختيار البادئة اولا
4690 Please set Email Address يرجى وضع عنوان البريد الإلكتروني
4691 Please set the series to be used. يرجى ضبط المسلسل ليتم استخدامه.
4692 Portal Settings إعدادات البوابة
4693 Reference Owner إشارة المالك
4694 Region منطقة
4695 Report Builder تقرير منشئ
4696 Sample عينة
4697 Saved حفظ
4698 Series {0} already used in {1} الترقيم المتسلسل {0} مستخدم بالفعل في {1}
4699 Set as Default تعيين كافتراضي
4700 Shipping الشحن
4701 Standard اساسي
4702 Test اختبار
4703 Traceback Traceback
4704 Unable to find DocType {0} تعذر العثور على نوع الملف {0}
4705 Weekdays أيام الأسبوع
4706 Workflow سير العمل
4707 You need to be logged in to access this page تحتاج إلى تسجيل الدخول للوصول إلى هذه الصفحة
4708 County مقاطعة
4709 Images صور
4710 Office مكتب
4711 Passive غير فعال
4712 Permanent دائم
4713 Plant مصنع
4714 Postal بريدي
4715 Previous سابق
4716 Shop تسوق
4717 Subsidiary شركة فرعية
4718 There is some problem with the file url: {0} هناك بعض المشاكل مع رابط الملف: {0}
4719 Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0} {0} الأحرف الخاصة باستثناء &quot;-&quot; ، &quot;#&quot; ، &quot;.&quot; ، &quot;/&quot; ، &quot;{{&quot; و &quot;}}&quot; غير مسموح في سلسلة التسمية
4720 Export Type نوع التصدير
4721 Last Sync On آخر مزامنة تشغيل
4722 Webhook Secret Webhook Secret
4723 Back to Home العودة إلى المنزل
4724 Customize تخصيص
4725 Edit Profile تعديل الملف الشخصي
4726 File Manager مدير الملفات
4727 Invite as User دعوة كمستخدم
4728 Newsletter النشرة الإخبارية
4729 Printing طبع
4730 Publish نشر
4731 Refreshing جاري التحديث
4732 Select All تحديد الكل
4733 Set مجموعة
4734 Setup Wizard معالج الإعدادات
4735 Update Details تحديث التفاصيل
4736 You أنت
4737 {0} Name {0} الاسم
4738 Bold بالخط العريض
4739 Center مركز
4740 Comment تعليق
4741 Not Found لم يتم العثور على
4742 User Id تعريف المستخدم
4743 Position موضع
4744 Crop محصول
4745 Topic موضوع
4746 Public Transport النقل العام
4747 Request Data طلب البيانات
4748 Steps خطوات
4749 Reference DocType مرجع DOCTYPE
4750 Select Transaction حدد المعاملات
4751 Help HTML مساعدة HTML
4752 Series List for this Transaction قائمة متسلسلة لهذه العملية
4753 User must always select يجب دائما مستخدم تحديد
4754 Check this if you want to force the user to select a series before saving. There will be no default if you check this. التحقق من ذلك إذا كنت تريد لإجبار المستخدم لتحديد سلسلة قبل الحفظ. لن يكون هناك الافتراضي إذا قمت بتحديد هذا.
4755 Prefix بادئة
4756 This is the number of the last created transaction with this prefix هذا هو عدد المعاملات التي تم إنشاؤها باستخدام مشاركة هذه البادئة
4757 Update Series Number تحديث الرقم المتسلسل
4758 Validation Error خطئ في التحقق
4759 Andaman and Nicobar Islands جزر أندامان ونيكوبار
4760 Andhra Pradesh ولاية اندرا براديش
4761 Arunachal Pradesh اروناتشال براديش
4762 Assam آسام
4763 Bihar بيهار
4764 Chandigarh شانديغار
4765 Chhattisgarh تشهاتيسجاره
4766 Dadra and Nagar Haveli دادرا وناغار هافيلي
4767 Daman and Diu دامان وديو
4768 Delhi دلهي
4769 Goa غوا
4770 Gujarat ولاية غوجارات
4771 Haryana هاريانا
4772 Himachal Pradesh هيماشال براديش
4773 Jammu and Kashmir جامو وكشمير
4774 Jharkhand جهارخاند
4775 Karnataka كارناتاكا
4776 Kerala ولاية كيرالا
4777 Lakshadweep Islands جزر لاكشادويب
4778 Madhya Pradesh ماديا براديش
4779 Maharashtra ماهاراشترا
4780 Manipur مانيبور
4781 Meghalaya ميغالايا
4782 Mizoram ميزورام
4783 Nagaland ناجالاند
4784 Odisha أوديشا
4785 Other Territory إقليم آخر
4786 Pondicherry بونديشيري
4787 Punjab البنجاب
4788 Rajasthan راجستان
4789 Sikkim سيكيم
4790 Tamil Nadu تاميل نادو
4791 Telangana تيلانجانا
4792 Tripura تريبورا
4793 Uttar Pradesh ولاية أوتار براديش
4794 Uttarakhand أوتارانتشال
4795 West Bengal ولاية البنغال الغربية
4796 Published on نشرت في
4797 Bottom الأسفل
4798 Top أعلى

View file

@ -9,7 +9,6 @@ Action,Действие,
Actions,Действия,
Active,Активен,
Add,Добави,
Add Comment,Добави коментар,
Add Row,Добави ред,
Address,Адрес,
Address Line 2,Адрес - Ред 2,
@ -144,7 +143,6 @@ Monday,Понеделник,
Monthly,Месечно,
More,Още,
More Information,Повече информация,
More...,Повече...,
Move,Ход,
My Account,Моят Профил,
New Address,Нов адрес,
@ -157,7 +155,6 @@ No items found.,Няма намерени елементи.,
None,Нито един,
Not Permitted,Не е разрешен,
Not active,Не е активна,
Notes,Бележки,
Number,номер,
Online,На линия,
Operation,Операция,
@ -167,17 +164,12 @@ Owner,Собственик,
Page Missing or Moved,Страницата липсва или е преместена,
Parameter,Параметър,
Password,Парола,
Payment Gateway,Портал за плащания,
Payment Gateway Name,Име на платежния шлюз,
Payments,Плащания,
Period,Период,
Pincode,ПИН код,
Plan Name,Име на плана,
Please enable pop-ups,"Моля, разрешете изскачащи прозорци",
Please select Company,Моля изберете фирма,
Please select {0},Моля изберете {0},
Please set Email Address,"Моля, задайте имейл адрес",
Portal,Портал,
Portal Settings,Portal Settings,
Preview,Предварителен преглед,
Primary,Първичен,
@ -222,7 +214,6 @@ Salutation,Поздрав,
Sample,Проба,
Saturday,Събота,
Saved,Запазен,
Scan Barcode,Сканиране на баркод,
Scheduled,Планиран,
Search,Търсене,
Secret Key,Тайната ключ,
@ -237,7 +228,6 @@ Settings,Настройки,
Shipping,Доставки,
Short Name,Кратко Име,
Slideshow,Slideshow,
Some information is missing,Част от информацията липсва,
Source,Източник,
Source Name,Източник Име,
Standard,Стандарт,
@ -247,7 +237,6 @@ State,Състояние,
Stopped,Спряно,
Subject,Предмет,
Submit,Изпрати,
Successful,Успешен,
Summary,резюме,
Sunday,Неделя,
System Manager,Мениджър на система,
@ -260,11 +249,9 @@ The page you are looking for is missing. This could be because it is moved or th
Timespan,Период от време,
To,Да се,
To Date,Към Дата,
Tools,Инструменти,
Traceback,Проследи,
URL,URL,
Unsubscribed,Отписахте,
Use Sandbox,Използвайте Sandbox,
User,потребител,
User ID,User ID,
Users,Потребители,
@ -569,7 +556,6 @@ Bulk Delete,Групово изтриване,
Bulk Edit {0},Масова редакция {0},
Bulk Rename,Масово преименуване,
Bulk Update,Масова актуализация,
Busy,Зает,
Button,Бутон,
Button Help,Бутон Помощ,
Button Label,Текст на Бутон,
@ -706,7 +692,6 @@ Compiled Successfully,Компилиран успешно,
Complete By,Завършен от,
Complete Registration,Пълна Регистрация,
Complete Setup,Пълна Setup,
Completed By,Завършено от,
Compose Email,Ново имейл съобщение,
Condition Detail,Подробно състояние,
Conditions,условия,
@ -1819,7 +1804,6 @@ Path to private Key File,Път към частния файл с ключове
PayPal Settings,Настройки PayPal,
PayPal payment gateway settings,PayPal настройки за плащане - шлюз,
Payment Cancelled,Плащането е отменено,
Payment Failed,Неуспешно плащане,
Payment Success,Успешно плащане,
Pending Approval,Изчакване на потвърждение,
Pending Verification,Предстои потвърждение,
@ -3216,7 +3200,6 @@ Click on the link below to approve the request,"Кликнете върху вр
Click on the lock icon to toggle public/private,"Кликнете върху иконата за заключване, за да превключвате публично / частно",
Click on {0} to generate Refresh Token.,"Кликнете върху {0}, за да генерирате Refresh Token.",
Close Condition,Затвори Условието,
Column {0},Колона {0},
Columns / Fields,Колони / полета,
"Configure notifications for mentions, assignments, energy points and more.","Конфигурирайте известия за споменавания, задания, енергийни точки и други.",
Contact Email,Контакт Email,
@ -3298,7 +3281,6 @@ Failed to create an Event Consumer or an Event Consumer for the current site is
Failure,неуспех,
Fetching default Global Search documents.,Извличане на документи за глобално търсене по подразбиране.,
Fetching posts...,Извличане на публикации ...,
Field Mapping,Картографиране на полето,
Field To Check,Поле за проверка,
File Information,Информация за файла,
Filter By,Филтриране по,
@ -3453,7 +3435,6 @@ No posts yet,Все още няма публикации,
No records will be exported,Няма да се експортират записи,
No results found for {0} in Global Search,Няма резултати за {0} в глобалното търсене,
No user found,Не е намерен потребител,
Not Specified,Неопределено,
Notification Log,Дневник на известията,
Notification Settings,Настройки за известията,
Notification Subscribed Document,Известие Абониран документ,
@ -3609,7 +3590,6 @@ Untitled Column,Без заглавие колона,
Untranslated,Нетранслираният,
Upcoming Events,Предстоящи събития,
Update Existing Records,Актуализиране на съществуващи записи,
Update Type,Тип актуализация,
Updated To A New Version 🎉,Актуализирана до нова версия 🎉,
"Updating {0} of {1}, {2}","Актуализиране на {0} от {1}, {2}",
Upload file,Качи файл,
@ -3716,19 +3696,16 @@ Designation,Предназначение,
Disabled,Неактивен,
Doctype,Doctype,
Download Template,Изтеглете шаблони,
Dr,Dr,
Due Date,Срок за плащане,
Duplicate,Дубликат,
Edit Profile,Редактирай профил,
Email,електронна поща,
End Time,Край (време),
Enter Value,Въведете стойност,
Entity Type,Тип обект,
Error,Грешка,
Expired,Изтекъл,
Export,Експорт,
Export not allowed. You need {0} role to export.,Износът не оставя. Трябва {0} роля за износ.,
Fetching...,Извлича се ...,
Field,поле,
File Manager,Файлов мениджър,
Filters,Филтри,
@ -3743,11 +3720,8 @@ Import Data from CSV / Excel files.,Импортиране на данни от
In Progress,Напред,
Intermediate,Междинен,
Invite as User,Покани като Потребител,
"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Изглежда, че има проблем с конфигурацията на лентата на сървъра. В случай на неуспех, сумата ще бъде възстановена в профила Ви.",
Loading...,Зарежда се ...,
Location,Местоположение,
Looks like someone sent you to an incomplete URL. Please ask them to look into it.,"Изглежда, че някой ви е изпратил непълен URL. Моля, попитайте ги да го потвърдят.",
Master,Майстор,
Message,съобщение,
Missing Values Required,Липсват задължителни стойности,
Mobile No,Мобилен номер,
@ -3759,7 +3733,6 @@ Note,Забележка,
Offline,Извън линия,
Open,Отворено,
Page {0} of {1},Стр. {0} от {1},
Pay,Плащане,
Pending,В очакване на,
Phone,Телефон,
Please click on the following link to set your new password,"Моля, кликнете върху следния линк, за да зададете нова парола",
@ -3809,7 +3782,6 @@ Welcome to {0},Добре дошли {0},
Year,Година,
Yearly,Годишно,
You,Ти,
You can also copy-paste this link in your browser,Можете също да копирате-постави този линк в браузъра си,
and,и,
{0} Name,{0} Име,
{0} is required,{0} е задължително,
@ -4113,7 +4085,6 @@ Custom SCSS,Персонализиран SCSS,
Navbar,Navbar,
Source Message,Източник Съобщение,
Translated Message,Преведено съобщение,
Verified By,Проверени от,
Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand.,"Използването на тази конзола може да позволи на хакерите да се представят за вас и да откраднат вашата информация. Не въвеждайте и не поставяйте код, който не разбирате.",
{0} m,{0} м,
{0} h,{0} ч,
@ -4146,7 +4117,6 @@ Collapse,Свиване,
{0} is not a valid Name,{0} не е валидно име,
Your system is being updated. Please refresh again after a few moments.,"Вашата система се актуализира. Моля, опреснете отново след няколко минути.",
{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first.,{0} {1}: Изпратеният запис не може да бъде изтрит. Първо трябва да го {2} анулирате {3}.,
Invalid naming series (. missing) for {0},Невалидна поредица от имена (. Липсва) за {0},
Error has occurred in {0},Възникна грешка в {0},
Status Updated,Състоянието е актуализирано,
You can also copy-paste this {0} to your browser,Можете също да копирате и поставите това {0} в браузъра си,
@ -4168,14 +4138,11 @@ Is Billing Contact,Контакт за фактуриране,
Address And Contacts,Адрес и контакти,
Lead Conversion Time,Водещо време за реализация,
Due Date Based On,Базисна дата на базата на,
Phone Number,Телефонен номер,
Linked Documents,Свързани документи,
Account SID,SID на акаунта,
Steps,Стъпки,
email,електронна поща,
Component,Компонент,
Subtitle,подзаглавие,
Global Defaults,Глобални настройки по подразбиране,
Prefix,Префикс,
Is Public,Е публичен,
This chart will be available to all Users if this is set,"Тази диаграма ще бъде достъпна за всички потребители, ако това е зададено",
@ -4362,7 +4329,6 @@ Dynamic Filters Section,Раздел за динамични филтри,
Please create Card first,"Моля, първо създайте карта",
Onboarding Permission,Разрешение за включване,
Onboarding Step,Включване стъпка,
Is Mandatory,Задължително,
Is Skipped,Пропуска се,
Create Entry,Създаване на запис,
Update Settings,Настройки за актуализиране,
@ -4400,7 +4366,6 @@ Message (HTML),Съобщение (HTML),
Send Attachments,Изпращане на прикачени файлове,
Testing,Тестване,
System Notification,Известие за системата,
WhatsApp,WhatsApp,
Twilio Number,Номер Twilio,
"To use WhatsApp for Business, initialize <a href=""#Form/Twilio Settings"">Twilio Settings</a>.","За да използвате WhatsApp за бизнеса, инициализирайте <a href=""#Form/Twilio Settings"">настройките на Twilio</a> .",
"To use Slack Channel, add a <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL</a>.","За да използвате Slack Channel, добавете <a href=""#List/Slack%20Webhook%20URL/List"">URL адрес</a> на <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook</a> .",
@ -4535,7 +4500,6 @@ Add to ToDo,Добавяне към ToDo,
{0} are currently {1},{0} в момента са {1},
Currently Replying,В момента отговаряте,
created {0},създаден {0},
Make a call,Обадете се,
Change,Промяна,Coins
Too Many Requests,Твърде много искания,
"Invalid Authorization headers, add a token with a prefix from one of the following: {0}.","Невалидни заглавки за упълномощаване, добавете маркер с префикс от едно от следните: {0}.",
@ -4700,3 +4664,135 @@ Value cannot be negative for {0}: {1},Стойността не може да б
Negative Value,Отрицателна стойност,
Authentication failed while receiving emails from Email Account: {0}.,Удостоверяването не бе успешно при получаване на имейли от имейл акаунт: {0}.,
Message from server: {0},Съобщение от сървъра: {0},
Add Row,Добави ред,
Analytics,анализ,
Anonymous,анонимен,
Author,автор,
Basic,Основен,
Billing,Фактуриране,
Contact Details,Данни за контакт,
Datetime,Дата/час,
Enable,Активиране,
Event,Събитие,
Full,пълен,
Insert,Вмъкни,
Interests,Интереси,
Language Name,Език - Име,
License,Разрешително,
Limit,лимит,
Log,Журнал,
Meeting,среща,
My Account,Моят Профил,
Newsletters,Бютелини с новини,
Password,Парола,
Pincode,ПИН код,
Please select prefix first,Моля изберете префикс първо,
Please set Email Address,"Моля, задайте имейл адрес",
Please set the series to be used.,"Моля, задайте серията, която да се използва.",
Portal Settings,Portal Settings,
Reference Owner,Референтен Собственик,
Region,Област,
Report Builder,Report Builder,
Sample,Проба,
Saved,Запазен,
Series {0} already used in {1},Номерация {0} вече се използва в {1},
Set as Default,По подразбиране,
Shipping,Доставки,
Standard,Стандарт,
Test,Тест,
Traceback,Проследи,
Unable to find DocType {0},DocType не може да се намери {0},
Weekdays,делници,
Workflow,Workflow,
You need to be logged in to access this page,"Трябва да сте влезли, за да получите достъп до тази страница",
County,Окръг,
Images,Снимки,
Office,Офис,
Passive,Пасивен,
Permanent,постоянен,
Plant,Завод,
Postal,Пощенски,
Previous,Предишен,
Shop,Магазин,
Subsidiary,Филиал,
There is some problem with the file url: {0},Има някакъв проблем с адреса на файл: {0},
"Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}","Специални символи, с изключение на &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; И &quot;}}&quot; не са позволени в именуването на серии {0}",
Export Type,Тип експорт,
Last Sync On,Последно синхронизиране на,
Webhook Secret,Webhook Secret,
Back to Home,Обратно в къщи,
Customize,Персонализирай,
Edit Profile,Редактирай профил,
File Manager,Файлов мениджър,
Invite as User,Покани като Потребител,
Newsletter,Бютелин с новини,
Printing,Печатане,
Publish,публикувам,
Refreshing,Обновяване,
Select All,Избери всички,
Set,Определете,
Setup Wizard,Помощник за инсталиране,
Update Details,Актуализиране на подробности,
You,Ти,
{0} Name,{0} Име,
Bold,смел,
Center,Център,
Comment,коментар,
Not Found,Не е намерен,
User Id,Потребителски идентификатор,
Position,позиция,
Crop,Реколта,
Topic,Тема,
Public Transport,Обществен транспорт,
Request Data,Поискайте данни,
Steps,Стъпки,
Reference DocType,Референтен DocType,
Select Transaction,Изберете транзакция,
Help HTML,Помощ HTML,
Series List for this Transaction,Списък с номерации за тази транзакция,
User must always select,Потребителят трябва винаги да избере,
Check this if you want to force the user to select a series before saving. There will be no default if you check this.,"Маркирайте това, ако искате да задължите потребителя да избере серия преди да запише. Няма да има по подразбиране, ако маркирате това.",
Prefix,Префикс,
This is the number of the last created transaction with this prefix,Това е поредният номер на последната създадена сделката с този префикс,
Update Series Number,Актуализация на номер за номериране,
Validation Error,Грешка при проверка,
Andaman and Nicobar Islands,Андамански и Никобарски острови,
Andhra Pradesh,Андра Прадеш,
Arunachal Pradesh,Аруначал Прадеш,
Assam,Асам,
Bihar,Бихар,
Chandigarh,Чандигарх,
Chhattisgarh,Чхатисгарх,
Dadra and Nagar Haveli,Дадра и Нагар Хавели,
Daman and Diu,Даман и Диу,
Delhi,Делхи,
Goa,Гоа,
Gujarat,Гуджарат,
Haryana,Харяна,
Himachal Pradesh,Химачал Прадеш,
Jammu and Kashmir,Джаму и Кашмир,
Jharkhand,Джаркханд,
Karnataka,Карнатака,
Kerala,Керала,
Lakshadweep Islands,Острови Лакшадуип,
Madhya Pradesh,Мадхя Прадеш,
Maharashtra,Махаращра,
Manipur,Манипур,
Meghalaya,Мегхалая,
Mizoram,Мизорам,
Nagaland,Нагаланд,
Odisha,Одиша,
Other Territory,Друга територия,
Pondicherry,Пондичери,
Punjab,Пенджаб,
Rajasthan,Раджастан,
Sikkim,Сиким,
Tamil Nadu,Тамил Наду,
Telangana,Телангана,
Tripura,Трипура,
Uttar Pradesh,Утар Прадеш,
Uttarakhand,Утаракханд,
West Bengal,Западна Бенгалия,
Published on,Публикувано на,
Bottom,Отдолу,
Top,Горна част,

1 A4 A4
9 Actions Действия
10 Active Активен
11 Add Добави
Add Comment Добави коментар
12 Add Row Добави ред
13 Address Адрес
14 Address Line 2 Адрес - Ред 2
143 Monthly Месечно
144 More Още
145 More Information Повече информация
More... Повече...
146 Move Ход
147 My Account Моят Профил
148 New Address Нов адрес
155 None Нито един
156 Not Permitted Не е разрешен
157 Not active Не е активна
Notes Бележки
158 Number номер
159 Online На линия
160 Operation Операция
164 Page Missing or Moved Страницата липсва или е преместена
165 Parameter Параметър
166 Password Парола
Payment Gateway Портал за плащания
Payment Gateway Name Име на платежния шлюз
Payments Плащания
167 Period Период
168 Pincode ПИН код
Plan Name Име на плана
169 Please enable pop-ups Моля, разрешете изскачащи прозорци
170 Please select Company Моля изберете фирма
171 Please select {0} Моля изберете {0}
172 Please set Email Address Моля, задайте имейл адрес
Portal Портал
173 Portal Settings Portal Settings
174 Preview Предварителен преглед
175 Primary Първичен
214 Sample Проба
215 Saturday Събота
216 Saved Запазен
Scan Barcode Сканиране на баркод
217 Scheduled Планиран
218 Search Търсене
219 Secret Key Тайната ключ
228 Shipping Доставки
229 Short Name Кратко Име
230 Slideshow Slideshow
Some information is missing Част от информацията липсва
231 Source Източник
232 Source Name Източник Име
233 Standard Стандарт
237 Stopped Спряно
238 Subject Предмет
239 Submit Изпрати
Successful Успешен
240 Summary резюме
241 Sunday Неделя
242 System Manager Мениджър на система
249 Timespan Период от време
250 To Да се
251 To Date Към Дата
Tools Инструменти
252 Traceback Проследи
253 URL URL
254 Unsubscribed Отписахте
Use Sandbox Използвайте Sandbox
255 User потребител
256 User ID User ID
257 Users Потребители
556 Bulk Edit {0} Масова редакция {0}
557 Bulk Rename Масово преименуване
558 Bulk Update Масова актуализация
Busy Зает
559 Button Бутон
560 Button Help Бутон Помощ
561 Button Label Текст на Бутон
692 Complete By Завършен от
693 Complete Registration Пълна Регистрация
694 Complete Setup Пълна Setup
Completed By Завършено от
695 Compose Email Ново имейл съобщение
696 Condition Detail Подробно състояние
697 Conditions условия
1804 PayPal Settings Настройки PayPal
1805 PayPal payment gateway settings PayPal настройки за плащане - шлюз
1806 Payment Cancelled Плащането е отменено
Payment Failed Неуспешно плащане
1807 Payment Success Успешно плащане
1808 Pending Approval Изчакване на потвърждение
1809 Pending Verification Предстои потвърждение
3200 Click on the lock icon to toggle public/private Кликнете върху иконата за заключване, за да превключвате публично / частно
3201 Click on {0} to generate Refresh Token. Кликнете върху {0}, за да генерирате Refresh Token.
3202 Close Condition Затвори Условието
Column {0} Колона {0}
3203 Columns / Fields Колони / полета
3204 Configure notifications for mentions, assignments, energy points and more. Конфигурирайте известия за споменавания, задания, енергийни точки и други.
3205 Contact Email Контакт Email
3281 Failure неуспех
3282 Fetching default Global Search documents. Извличане на документи за глобално търсене по подразбиране.
3283 Fetching posts... Извличане на публикации ...
Field Mapping Картографиране на полето
3284 Field To Check Поле за проверка
3285 File Information Информация за файла
3286 Filter By Филтриране по
3435 No records will be exported Няма да се експортират записи
3436 No results found for {0} in Global Search Няма резултати за {0} в глобалното търсене
3437 No user found Не е намерен потребител
Not Specified Неопределено
3438 Notification Log Дневник на известията
3439 Notification Settings Настройки за известията
3440 Notification Subscribed Document Известие Абониран документ
3590 Untranslated Нетранслираният
3591 Upcoming Events Предстоящи събития
3592 Update Existing Records Актуализиране на съществуващи записи
Update Type Тип актуализация
3593 Updated To A New Version 🎉 Актуализирана до нова версия 🎉
3594 Updating {0} of {1}, {2} Актуализиране на {0} от {1}, {2}
3595 Upload file Качи файл
3696 Disabled Неактивен
3697 Doctype Doctype
3698 Download Template Изтеглете шаблони
Dr Dr
3699 Due Date Срок за плащане
3700 Duplicate Дубликат
3701 Edit Profile Редактирай профил
3702 Email електронна поща
End Time Край (време)
3703 Enter Value Въведете стойност
3704 Entity Type Тип обект
3705 Error Грешка
3706 Expired Изтекъл
3707 Export Експорт
3708 Export not allowed. You need {0} role to export. Износът не оставя. Трябва {0} роля за износ.
Fetching... Извлича се ...
3709 Field поле
3710 File Manager Файлов мениджър
3711 Filters Филтри
3720 In Progress Напред
3721 Intermediate Междинен
3722 Invite as User Покани като Потребител
It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account. Изглежда, че има проблем с конфигурацията на лентата на сървъра. В случай на неуспех, сумата ще бъде възстановена в профила Ви.
3723 Loading... Зарежда се ...
3724 Location Местоположение
Looks like someone sent you to an incomplete URL. Please ask them to look into it. Изглежда, че някой ви е изпратил непълен URL. Моля, попитайте ги да го потвърдят.
Master Майстор
3725 Message съобщение
3726 Missing Values Required Липсват задължителни стойности
3727 Mobile No Мобилен номер
3733 Offline Извън линия
3734 Open Отворено
3735 Page {0} of {1} Стр. {0} от {1}
Pay Плащане
3736 Pending В очакване на
3737 Phone Телефон
3738 Please click on the following link to set your new password Моля, кликнете върху следния линк, за да зададете нова парола
3782 Year Година
3783 Yearly Годишно
3784 You Ти
You can also copy-paste this link in your browser Можете също да копирате-постави този линк в браузъра си
3785 and и
3786 {0} Name {0} Име
3787 {0} is required {0} е задължително
4085 Navbar Navbar
4086 Source Message Източник Съобщение
4087 Translated Message Преведено съобщение
Verified By Проверени от
4088 Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand. Използването на тази конзола може да позволи на хакерите да се представят за вас и да откраднат вашата информация. Не въвеждайте и не поставяйте код, който не разбирате.
4089 {0} m {0} м
4090 {0} h {0} ч
4117 {0} is not a valid Name {0} не е валидно име
4118 Your system is being updated. Please refresh again after a few moments. Вашата система се актуализира. Моля, опреснете отново след няколко минути.
4119 {0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first. {0} {1}: Изпратеният запис не може да бъде изтрит. Първо трябва да го {2} анулирате {3}.
Invalid naming series (. missing) for {0} Невалидна поредица от имена (. Липсва) за {0}
4120 Error has occurred in {0} Възникна грешка в {0}
4121 Status Updated Състоянието е актуализирано
4122 You can also copy-paste this {0} to your browser Можете също да копирате и поставите това {0} в браузъра си
4138 Address And Contacts Адрес и контакти
4139 Lead Conversion Time Водещо време за реализация
4140 Due Date Based On Базисна дата на базата на
Phone Number Телефонен номер
4141 Linked Documents Свързани документи
Account SID SID на акаунта
4142 Steps Стъпки
4143 email електронна поща
4144 Component Компонент
4145 Subtitle подзаглавие
Global Defaults Глобални настройки по подразбиране
4146 Prefix Префикс
4147 Is Public Е публичен
4148 This chart will be available to all Users if this is set Тази диаграма ще бъде достъпна за всички потребители, ако това е зададено
4329 Please create Card first Моля, първо създайте карта
4330 Onboarding Permission Разрешение за включване
4331 Onboarding Step Включване стъпка
Is Mandatory Задължително
4332 Is Skipped Пропуска се
4333 Create Entry Създаване на запис
4334 Update Settings Настройки за актуализиране
4366 Send Attachments Изпращане на прикачени файлове
4367 Testing Тестване
4368 System Notification Известие за системата
WhatsApp WhatsApp
4369 Twilio Number Номер Twilio
4370 To use WhatsApp for Business, initialize <a href="#Form/Twilio Settings">Twilio Settings</a>. За да използвате WhatsApp за бизнеса, инициализирайте <a href="#Form/Twilio Settings">настройките на Twilio</a> .
4371 To use Slack Channel, add a <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook URL</a>. За да използвате Slack Channel, добавете <a href="#List/Slack%20Webhook%20URL/List">URL адрес</a> на <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook</a> .
4500 {0} are currently {1} {0} в момента са {1}
4501 Currently Replying В момента отговаряте
4502 created {0} създаден {0}
Make a call Обадете се
4503 Change Промяна Coins
4504 Too Many Requests Твърде много искания
4505 Invalid Authorization headers, add a token with a prefix from one of the following: {0}. Невалидни заглавки за упълномощаване, добавете маркер с префикс от едно от следните: {0}.
4664 Negative Value Отрицателна стойност
4665 Authentication failed while receiving emails from Email Account: {0}. Удостоверяването не бе успешно при получаване на имейли от имейл акаунт: {0}.
4666 Message from server: {0} Съобщение от сървъра: {0}
4667 Add Row Добави ред
4668 Analytics анализ
4669 Anonymous анонимен
4670 Author автор
4671 Basic Основен
4672 Billing Фактуриране
4673 Contact Details Данни за контакт
4674 Datetime Дата/час
4675 Enable Активиране
4676 Event Събитие
4677 Full пълен
4678 Insert Вмъкни
4679 Interests Интереси
4680 Language Name Език - Име
4681 License Разрешително
4682 Limit лимит
4683 Log Журнал
4684 Meeting среща
4685 My Account Моят Профил
4686 Newsletters Бютелини с новини
4687 Password Парола
4688 Pincode ПИН код
4689 Please select prefix first Моля изберете префикс първо
4690 Please set Email Address Моля, задайте имейл адрес
4691 Please set the series to be used. Моля, задайте серията, която да се използва.
4692 Portal Settings Portal Settings
4693 Reference Owner Референтен Собственик
4694 Region Област
4695 Report Builder Report Builder
4696 Sample Проба
4697 Saved Запазен
4698 Series {0} already used in {1} Номерация {0} вече се използва в {1}
4699 Set as Default По подразбиране
4700 Shipping Доставки
4701 Standard Стандарт
4702 Test Тест
4703 Traceback Проследи
4704 Unable to find DocType {0} DocType не може да се намери {0}
4705 Weekdays делници
4706 Workflow Workflow
4707 You need to be logged in to access this page Трябва да сте влезли, за да получите достъп до тази страница
4708 County Окръг
4709 Images Снимки
4710 Office Офис
4711 Passive Пасивен
4712 Permanent постоянен
4713 Plant Завод
4714 Postal Пощенски
4715 Previous Предишен
4716 Shop Магазин
4717 Subsidiary Филиал
4718 There is some problem with the file url: {0} Има някакъв проблем с адреса на файл: {0}
4719 Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0} Специални символи, с изключение на &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; И &quot;}}&quot; не са позволени в именуването на серии {0}
4720 Export Type Тип експорт
4721 Last Sync On Последно синхронизиране на
4722 Webhook Secret Webhook Secret
4723 Back to Home Обратно в къщи
4724 Customize Персонализирай
4725 Edit Profile Редактирай профил
4726 File Manager Файлов мениджър
4727 Invite as User Покани като Потребител
4728 Newsletter Бютелин с новини
4729 Printing Печатане
4730 Publish публикувам
4731 Refreshing Обновяване
4732 Select All Избери всички
4733 Set Определете
4734 Setup Wizard Помощник за инсталиране
4735 Update Details Актуализиране на подробности
4736 You Ти
4737 {0} Name {0} Име
4738 Bold смел
4739 Center Център
4740 Comment коментар
4741 Not Found Не е намерен
4742 User Id Потребителски идентификатор
4743 Position позиция
4744 Crop Реколта
4745 Topic Тема
4746 Public Transport Обществен транспорт
4747 Request Data Поискайте данни
4748 Steps Стъпки
4749 Reference DocType Референтен DocType
4750 Select Transaction Изберете транзакция
4751 Help HTML Помощ HTML
4752 Series List for this Transaction Списък с номерации за тази транзакция
4753 User must always select Потребителят трябва винаги да избере
4754 Check this if you want to force the user to select a series before saving. There will be no default if you check this. Маркирайте това, ако искате да задължите потребителя да избере серия преди да запише. Няма да има по подразбиране, ако маркирате това.
4755 Prefix Префикс
4756 This is the number of the last created transaction with this prefix Това е поредният номер на последната създадена сделката с този префикс
4757 Update Series Number Актуализация на номер за номериране
4758 Validation Error Грешка при проверка
4759 Andaman and Nicobar Islands Андамански и Никобарски острови
4760 Andhra Pradesh Андра Прадеш
4761 Arunachal Pradesh Аруначал Прадеш
4762 Assam Асам
4763 Bihar Бихар
4764 Chandigarh Чандигарх
4765 Chhattisgarh Чхатисгарх
4766 Dadra and Nagar Haveli Дадра и Нагар Хавели
4767 Daman and Diu Даман и Диу
4768 Delhi Делхи
4769 Goa Гоа
4770 Gujarat Гуджарат
4771 Haryana Харяна
4772 Himachal Pradesh Химачал Прадеш
4773 Jammu and Kashmir Джаму и Кашмир
4774 Jharkhand Джаркханд
4775 Karnataka Карнатака
4776 Kerala Керала
4777 Lakshadweep Islands Острови Лакшадуип
4778 Madhya Pradesh Мадхя Прадеш
4779 Maharashtra Махаращра
4780 Manipur Манипур
4781 Meghalaya Мегхалая
4782 Mizoram Мизорам
4783 Nagaland Нагаланд
4784 Odisha Одиша
4785 Other Territory Друга територия
4786 Pondicherry Пондичери
4787 Punjab Пенджаб
4788 Rajasthan Раджастан
4789 Sikkim Сиким
4790 Tamil Nadu Тамил Наду
4791 Telangana Телангана
4792 Tripura Трипура
4793 Uttar Pradesh Утар Прадеш
4794 Uttarakhand Утаракханд
4795 West Bengal Западна Бенгалия
4796 Published on Публикувано на
4797 Bottom Отдолу
4798 Top Горна част

View file

@ -9,7 +9,6 @@ Action,কর্ম,
Actions,পদক্ষেপ,
Active,সক্রিয়,
Add,যোগ,
Add Comment,মন্তব্য যোগ করুন,
Add Row,সারি যোগ করুন,
Address,ঠিকানা,
Address Line 2,ঠিকানা লাইন ২,
@ -144,7 +143,6 @@ Monday,সোমবার,
Monthly,মাসিক,
More,অধিক,
More Information,অধিক তথ্য,
More...,আরো ...,
Move,পদক্ষেপ,
My Account,আমার অ্যাকাউন্ট,
New Address,নতুন ঠিকানা,
@ -157,7 +155,6 @@ No items found.,কোন আইটেম খুঁজে পাওয়া য
None,না,
Not Permitted,অননুমোদিত,
Not active,সক্রিয় নয়,
Notes,নোট,
Number,সংখ্যা,
Online,অনলাইন,
Operation,অপারেশন,
@ -167,17 +164,12 @@ Owner,মালিক,
Page Missing or Moved,অনুপস্থিত বা সরানো পৃষ্ঠা,
Parameter,স্থিতিমাপ,
Password,পাসওয়ার্ড,
Payment Gateway,পেমেন্ট গেটওয়ে,
Payment Gateway Name,পেমেন্ট গেটওয়ে নাম,
Payments,পেমেন্টস্,
Period,কাল,
Pincode,পিনকোড,
Plan Name,পরিকল্পনা নাম,
Please enable pop-ups,পপ-আপগুলি সচল করুন,
Please select Company,কোম্পানি নির্বাচন করুন,
Please select {0},দয়া করে নির্বাচন করুন {0},
Please set Email Address,ইমেল ঠিকানা নির্ধারণ করুন,
Portal,পোর্টাল,
Portal Settings,পোর্টাল সেটিংস,
Preview,সম্পূর্ণ বিবরণের পূর্বরূপ দেখুন,
Primary,প্রাথমিক,
@ -222,7 +214,6 @@ Salutation,অভিবাদন,
Sample,নমুনা,
Saturday,শনিবার,
Saved,সংরক্ষিত,
Scan Barcode,বারকোড স্ক্যান করুন,
Scheduled,তালিকাভুক্ত,
Search,অনুসন্ধান,
Secret Key,গোপন চাবি,
@ -237,7 +228,6 @@ Settings,সেটিংস,
Shipping,পরিবহন,
Short Name,সংক্ষিপ্ত নাম,
Slideshow,ছবি,
Some information is missing,কিছু তথ্য অনুপস্থিত,
Source,উত্স,
Source Name,উত্স নাম,
Standard,মান,
@ -247,7 +237,6 @@ State,রাষ্ট্র,
Stopped,বন্ধ,
Subject,বিষয়,
Submit,জমা দিন,
Successful,সফল,
Summary,সারাংশ,
Sunday,রবিবার,
System Manager,সিস্টেম ম্যানেজার,
@ -260,11 +249,9 @@ The page you are looking for is missing. This could be because it is moved or th
Timespan,Timespan,
To,থেকে,
To Date,এখন পর্যন্ত,
Tools,সরঞ্জাম,
Traceback,ট্রেসব্যাক,
URL,URL টি,
Unsubscribed,সদস্যতামুক্তি,
Use Sandbox,ব্যবহারের স্যান্ডবক্স,
User,ব্যবহারকারী,
User ID,ব্যবহারকারী আইডি,
Users,ব্যবহারকারী,
@ -569,7 +556,6 @@ Bulk Delete,বাল্ক মুছুন,
Bulk Edit {0},বাল্ক সম্পাদনা {0},
Bulk Rename,বাল্ক পুনঃনামকরণ,
Bulk Update,প্রচুর আপডেট,
Busy,ব্যস্ত,
Button,বোতাম,
Button Help,বোতাম সাহায্য,
Button Label,বোতাম ট্যাগ,
@ -706,7 +692,6 @@ Compiled Successfully,সফলভাবে সংকলিত,
Complete By,দ্বারা সম্পূর্ণ,
Complete Registration,সম্পূর্ণ নিবন্ধন,
Complete Setup,সম্পূর্ণ সেটআপ,
Completed By,দ্বারা সম্পন্ন,
Compose Email,ইমেল রচনা,
Condition Detail,শর্ত বিস্তারিত,
Conditions,পরিবেশ,
@ -1691,7 +1676,7 @@ Not a valid user,একটি বৈধ ব্যবহারকারী,
Not a zip file,না একটি জিপ ফাইল,
Not allowed for {0}: {1},{0} এর জন্য অনুমোদিত নয়: {1},
"You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4}","আপনি অনুমতি নেই প্রবেশ {0} কারণ এটি লিঙ্ক করা হয়েছে {1} &#39;{2}&#39; সারিতে {3}, ক্ষেত্র {4}",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},"আপনি অনুমতি নেই এই প্রবেশ {0} রেকর্ড কারণ এটি লিঙ্ক করা হয়েছে {1} &#39;{2}&#39; ক্ষেত্র {3}",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},আপনি অনুমতি নেই এই প্রবেশ {0} রেকর্ড কারণ এটি লিঙ্ক করা হয়েছে {1} &#39;{2}&#39; ক্ষেত্র {3},
Not allowed to Import,আমদানি করার অনুমতি দেওয়া হয়নি,
Not allowed to change {0} after submission,জমা দেওয়ার পর {0} পরিবর্তন করার অনুমতি নেই,
Not allowed to print cancelled documents,বাতিল নথি প্রিন্ট করতে পারবেন না,
@ -1819,7 +1804,6 @@ Path to private Key File,ব্যক্তিগত কী ফাইলের
PayPal Settings,PayPal এর সেটিং,
PayPal payment gateway settings,পেপ্যাল পেমেন্ট গেটওয়ে সেটিংস,
Payment Cancelled,পেমেন্ট বাতিল,
Payment Failed,পেমেন্ট ব্যর্থ হয়েছে,
Payment Success,পেমেন্ট সাফল্য,
Pending Approval,অনুমোদন অপেক্ষারত,
Pending Verification,অপেক্ষারত যাচাই,
@ -3216,7 +3200,6 @@ Click on the link below to approve the request,অনুরোধ অনুম
Click on the lock icon to toggle public/private,সরকারী / ব্যক্তিগত টগল করতে লক আইকনে ক্লিক করুন on,
Click on {0} to generate Refresh Token.,রিফ্রেশ টোকেন তৈরি করতে {0 on ক্লিক করুন।,
Close Condition,শর্ত বন্ধ,
Column {0},কলাম {0},
Columns / Fields,কলাম / ক্ষেত্রসমূহ,
"Configure notifications for mentions, assignments, energy points and more.","উল্লেখ, অ্যাসাইনমেন্ট, শক্তি পয়েন্ট এবং আরও অনেক কিছুর জন্য বিজ্ঞপ্তিগুলি কনফিগার করুন।",
Contact Email,যোগাযোগের ই - মেইল,
@ -3298,7 +3281,6 @@ Failed to create an Event Consumer or an Event Consumer for the current site is
Failure,ব্যর্থতা,
Fetching default Global Search documents.,ডিফল্ট গ্লোবাল অনুসন্ধান নথি আনছে।,
Fetching posts...,পোস্টগুলি আনছে ...,
Field Mapping,ফিল্ড ম্যাপিং,
Field To Check,ফিল্ড চেক,
File Information,ফাইল তথ্য,
Filter By,দ্বারা ফিল্টার,
@ -3453,7 +3435,6 @@ No posts yet,এখনও পযন্ত কোন পোষ্ট নাই,
No records will be exported,কোনও রেকর্ড রফতানি হবে না,
No results found for {0} in Global Search,গ্লোবাল অনুসন্ধানে {0} এর জন্য কোনও ফলাফল পাওয়া যায় নি,
No user found,কোন ব্যবহারকারী পাওয়া যায় নি,
Not Specified,উল্লিখিত না,
Notification Log,বিজ্ঞপ্তি লগ,
Notification Settings,বিজ্ঞপ্তি সেটিংস,
Notification Subscribed Document,বিজ্ঞপ্তি সাবস্ক্রাইব করা ডকুমেন্ট,
@ -3609,7 +3590,6 @@ Untitled Column,শিরোনামহীন কলাম,
Untranslated,অ-অনুবাদিত,
Upcoming Events,আসন্ন ঘটনাবলী,
Update Existing Records,বিদ্যমান রেকর্ড আপডেট করুন,
Update Type,আপডেট প্রকার,
Updated To A New Version 🎉,নতুন সংস্করণে আপডেট হয়েছে 🎉,
"Updating {0} of {1}, {2}","{1}, {2} এর {0} আপডেট করা হচ্ছে",
Upload file,ফাইল আপলোড করুন,
@ -3716,19 +3696,16 @@ Designation,উপাধি,
Disabled,অক্ষম,
Doctype,DOCTYPE,
Download Template,ডাউনলোড টেমপ্লেট,
Dr,ডাঃ,
Due Date,নির্দিষ্ট তারিখ,
Duplicate,নকল,
Edit Profile,জীবন বৃত্তান্ত সম্পাদনা,
Email,EMail,
End Time,শেষ সময়,
Enter Value,মান লিখুন,
Entity Type,সত্তা টাইপ,
Error,ভুল,
Expired,মেয়াদউত্তীর্ণ,
Export,রপ্তানি,
Export not allowed. You need {0} role to export.,রপ্তানি অনুমোদিত নয়. আপনি এক্সপোর্ট করতে {0} ভূমিকা প্রয়োজন.,
Fetching...,আনা হচ্ছে ...,
Field,ক্ষেত্র,
File Manager,নথি ব্যবস্থাপক,
Filters,ফিল্টার,
@ -3743,11 +3720,8 @@ Import Data from CSV / Excel files.,CSV / Excel ফাইলগুলি থে
In Progress,চলমান,
Intermediate,অন্তর্বর্তী,
Invite as User,ব্যবহারকারী হিসেবে আমন্ত্রণ,
"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","মনে হচ্ছে যে সার্ভারের স্ট্রাপ কনফিগারেশনের সাথে একটি সমস্যা আছে ব্যর্থতার ক্ষেত্রে, এই পরিমাণটি আপনার অ্যাকাউন্টে ফেরত পাঠানো হবে।",
Loading...,লোড হচ্ছে ...,
Location,অবস্থান,
Looks like someone sent you to an incomplete URL. Please ask them to look into it.,মত কেউ একটি অসম্পূর্ণ URL এ আপনি পাঠানো হচ্ছে. তাদের তা দেখব জিজ্ঞাসা করুন.,
Master,গুরু,
Message,বার্তা,
Missing Values Required,অনুপস্থিত মানের প্রয়োজনীয়,
Mobile No,মোবাইল নাম্বার,
@ -3759,7 +3733,6 @@ Note,বিঃদ্রঃ,
Offline,অফলাইন,
Open,খোলা,
Page {0} of {1},পাতা {0} এর {1},
Pay,বেতন,
Pending,বিচারাধীন,
Phone,ফোন,
Please click on the following link to set your new password,আপনার নতুন পাসওয়ার্ড সেট করতে নিচের লিঙ্কে ক্লিক করুন,
@ -3809,7 +3782,6 @@ Welcome to {0},স্বাগতম {0},
Year,বছর,
Yearly,বাত্সরিক,
You,আপনি,
You can also copy-paste this link in your browser,এছাড়াও আপনি আপনার ব্রাউজারে এই লিঙ্কটি কপি-পেস্ট করতে পারেন,
and,এবং,
{0} Name,{0} নাম,
{0} is required,{0} প্রয়োজন,
@ -4113,7 +4085,6 @@ Custom SCSS,কাস্টম এসসিএসএস,
Navbar,নববার,
Source Message,উত্স বার্তা,
Translated Message,অনুবাদকৃত বার্তা,
Verified By,কর্তৃক যাচাইকৃত,
Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand.,এই কনসোলটি ব্যবহার করা আক্রমণকারীদের আপনার ছদ্মবেশ তৈরি করতে এবং আপনার তথ্য চুরি করতে পারে। আপনি বুঝতে পারেন না এমন কোড প্রবেশ করুন বা পেস্ট করবেন না।,
{0} m,{0} মি,
{0} h,{0} এইচ,
@ -4146,7 +4117,6 @@ Collapse,সঙ্কুচিত,
{0} is not a valid Name,{0 a একটি বৈধ নাম নয়,
Your system is being updated. Please refresh again after a few moments.,আপনার সিস্টেম আপডেট করা হচ্ছে। কয়েক মুহুর্ত পরে আবার রিফ্রেশ করুন।,
{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first.,{0} {1}: জমা দেওয়া রেকর্ড মোছা যাবে না। আপনাকে অবশ্যই এটি প্রথমে {2} বাতিল {3} করতে হবে।,
Invalid naming series (. missing) for {0},Invalid 0 for এর জন্য অবৈধ নামকরণ সিরিজ (। নিখোঁজ),
Error has occurred in {0},Error 0 in এ ত্রুটি ঘটেছে,
Status Updated,স্থিতি আপডেট হয়েছে,
You can also copy-paste this {0} to your browser,আপনি এই ব্রাউজারেও এই {0 copy অনুলিপি করতে পারেন,
@ -4168,14 +4138,11 @@ Is Billing Contact,বিলিং যোগাযোগ,
Address And Contacts,ঠিকানা এবং পরিচিতি,
Lead Conversion Time,লিড রূপান্তর সময়,
Due Date Based On,দরুন উপর ভিত্তি করে তারিখ,
Phone Number,ফোন নম্বর,
Linked Documents,লিঙ্কযুক্ত নথি,
Account SID,অ্যাকাউন্ট এসআইডি,
Steps,পদক্ষেপ,
email,ইমেল,
Component,উপাদান,
Subtitle,বাড়তি নাম,
Global Defaults,আন্তর্জাতিক ডিফল্ট,
Prefix,উপসর্গ,
Is Public,ইজ পাবলিক,
This chart will be available to all Users if this is set,এটি সেট করা থাকলে এই চার্টটি সমস্ত ব্যবহারকারীর জন্য উপলব্ধ হবে,
@ -4362,7 +4329,6 @@ Dynamic Filters Section,গতিশীল ফিল্টার বিভাগ
Please create Card first,দয়া করে প্রথমে কার্ড তৈরি করুন,
Onboarding Permission,বোর্ডিং অনুমতি,
Onboarding Step,বোর্ডিং স্টেপ,
Is Mandatory,আবশ্যক,
Is Skipped,স্কিপড,
Create Entry,এন্ট্রি তৈরি করুন,
Update Settings,সেটিংস আপডেট করুন,
@ -4400,7 +4366,6 @@ Message (HTML),বার্তা (এইচটিএমএল),
Send Attachments,সংযুক্তি প্রেরণ করুন,
Testing,পরীক্ষামূলক,
System Notification,সিস্টেম বিজ্ঞপ্তি,
WhatsApp,হোয়াটসঅ্যাপ,
Twilio Number,টিভিলিও নম্বর,
"To use WhatsApp for Business, initialize <a href=""#Form/Twilio Settings"">Twilio Settings</a>.","ব্যবসায়ের জন্য হোয়াটসঅ্যাপ ব্যবহার করতে, <a href=""#Form/Twilio Settings"">টোলিও সেটিংস শুরু করুন</a> ।",
"To use Slack Channel, add a <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL</a>.","স্ল্যাক চ্যানেল ব্যবহার করতে, একটি <a href=""#List/Slack%20Webhook%20URL/List"">স্ল্যাক ওয়েবহুক ইউআরএল যুক্ত করুন</a> ।",
@ -4535,7 +4500,6 @@ Add to ToDo,টুডোতে যুক্ত করুন,
{0} are currently {1},{0 বর্তমানে {1},
Currently Replying,বর্তমানে উত্তর,
created {0},তৈরি {0},
Make a call,ফোন করুন,
Change,পরিবর্তন,Coins
Too Many Requests,অনেক অনুরোধ,
"Invalid Authorization headers, add a token with a prefix from one of the following: {0}.","অবৈধ অনুমোদনের শিরোনাম, নিম্নলিখিতগুলির একটি থেকে উপসর্গ সহ একটি টোকেন যুক্ত করুন: {0}}",
@ -4700,3 +4664,135 @@ Value cannot be negative for {0}: {1},মান {0} এর জন্য নে
Negative Value,নেতিবাচক মান,
Authentication failed while receiving emails from Email Account: {0}.,ইমেল অ্যাকাউন্ট থেকে ইমেলগুলি গ্রহণের সময় প্রমাণীকরণ ব্যর্থ হয়েছিল: {0}},
Message from server: {0},সার্ভার থেকে বার্তা: {0},
Add Row,সারি যোগ করুন,
Analytics,বৈশ্লেষিক ন্যায়,
Anonymous,নামবিহীন,
Author,লেখক,
Basic,মৌলিক,
Billing,বিলিং,
Contact Details,যোগাযোগের ঠিকানা,
Datetime,তারিখ সময়,
Enable,সক্ষম করা,
Event,ঘটনা,
Full,সম্পূর্ণ,
Insert,সন্নিবেশ,
Interests,রুচি,
Language Name,ভাষার নাম,
License,লাইসেন্স,
Limit,সীমা,
Log,লগিন,
Meeting,সাক্ষাৎ,
My Account,আমার অ্যাকাউন্ট,
Newsletters,নিউজ লেটার,
Password,পাসওয়ার্ড,
Pincode,পিনকোড,
Please select prefix first,প্রথম উপসর্গ নির্বাচন করুন,
Please set Email Address,ইমেল ঠিকানা নির্ধারণ করুন,
Please set the series to be used.,ব্যবহার করা সিরিজ সেট করুন দয়া করে।,
Portal Settings,পোর্টাল সেটিংস,
Reference Owner,রেফারেন্স মালিক,
Region,এলাকা,
Report Builder,প্রতিবেদন নির্মাতা,
Sample,নমুনা,
Saved,সংরক্ষিত,
Series {0} already used in {1},ইতিমধ্যে ব্যবহৃত সিরিজ {0} {1},
Set as Default,ডিফল্ট হিসেবে সেট করুন,
Shipping,পরিবহন,
Standard,মান,
Test,পরীক্ষা,
Traceback,ট্রেসব্যাক,
Unable to find DocType {0},ডক টাইপ {0} খুঁজে পাওয়া যায়নি,
Weekdays,কাজের,
Workflow,কর্মপ্রবাহ,
You need to be logged in to access this page,আপনি এই পৃষ্ঠায় যাওয়ার জন্য লগ ইন করতে হবে,
County,বিভাগ,
Images,চিত্র,
Office,অফিস,
Passive,নিষ্ক্রিয়,
Permanent,স্থায়ী,
Plant,উদ্ভিদ,
Postal,ঠিকানা,
Previous,পূর্ববর্তী,
Shop,দোকান,
Subsidiary,সহায়ক,
There is some problem with the file url: {0},ফাইলের URL সঙ্গে কিছু সমস্যা আছে: {0},
"Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}","নামকরণ সিরিজে &quot;-&quot;, &quot;#&quot;, &quot;।&quot;, &quot;/&quot;, &quot;{{&quot; এবং &quot;}}&quot; ব্যতীত বিশেষ অক্ষর অনুমোদিত নয় {0}",
Export Type,রপ্তানি প্রকার,
Last Sync On,শেষ সিঙ্ক অন,
Webhook Secret,ওয়েবহুক সিক্রেট,
Back to Home,বাড়িতে ফিরে যাও,
Customize,কাস্টমাইজ করুন,
Edit Profile,জীবন বৃত্তান্ত সম্পাদনা,
File Manager,নথি ব্যবস্থাপক,
Invite as User,ব্যবহারকারী হিসেবে আমন্ত্রণ,
Newsletter,নিউজলেটার,
Printing,মুদ্রণ,
Publish,প্রকাশ করা,
Refreshing,সতেজকারক,
Select All,সবগুলো নির্বাচন করা,
Set,সেট,
Setup Wizard,সেটআপ উইজার্ড,
Update Details,আপডেট আপডেট,
You,আপনি,
{0} Name,{0} নাম,
Bold,সাহসী,
Center,কেন্দ্র,
Comment,মন্তব্য,
Not Found,খুঁজে পাওয়া যাচ্ছে না,
User Id,ব্যবহারকারীর প্রমানপত্র,
Position,অবস্থান,
Crop,ফসল,
Topic,বিষয়,
Public Transport,পাবলিক ট্রান্সপোর্ট,
Request Data,ডেটা অনুরোধ,
Steps,পদক্ষেপ,
Reference DocType,রেফারেন্স ডকটাইপ,
Select Transaction,নির্বাচন লেনদেন,
Help HTML,হেল্প এইচটিএমএল,
Series List for this Transaction,এই লেনদেনে সিরিজ তালিকা,
User must always select,ব্যবহারকারী সবসময় নির্বাচন করতে হবে,
Check this if you want to force the user to select a series before saving. There will be no default if you check this.,আপনি সংরক্ষণের আগে একটি সিরিজ নির্বাচন করুন ব্যবহারকারীর বাধ্য করতে চান তাহলে এই পরীক্ষা. আপনি এই পরীক্ষা যদি কোন ডিফল্ট থাকবে.,
Prefix,উপসর্গ,
This is the number of the last created transaction with this prefix,এই উপসর্গবিশিষ্ট সর্বশেষ নির্মিত লেনদেনের সংখ্যা,
Update Series Number,আপডেট সিরিজ সংখ্যা,
Validation Error,বৈধতা ত্রুটি,
Andaman and Nicobar Islands,আন্দামান এবং নিকোবর দ্বীপপুঞ্জ,
Andhra Pradesh,অন্ধ্র প্রদেশ,
Arunachal Pradesh,অরুণাচল প্রদেশ,
Assam,আসাম,
Bihar,বিহার,
Chandigarh,চণ্ডীগড়,
Chhattisgarh,ছত্তীসগ .়,
Dadra and Nagar Haveli,দাদরা ও নগর হাভেলি,
Daman and Diu,দামান ও দিউ,
Delhi,দিল্লি,
Goa,গোয়া,
Gujarat,গুজরাট,
Haryana,হরিয়ানা,
Himachal Pradesh,হিমাচল প্রদেশ,
Jammu and Kashmir,জম্মু ও কাশ্মীর,
Jharkhand,ঝাড়খণ্ড,
Karnataka,কর্ণাটক,
Kerala,কেরালা,
Lakshadweep Islands,লক্ষদ্বীপ দ্বীপপুঞ্জ,
Madhya Pradesh,মধ্য প্রদেশ,
Maharashtra,মহারাষ্ট্র,
Manipur,মণিপুর,
Meghalaya,মেঘালয়,
Mizoram,মিজোরাম,
Nagaland,নাগাল্যান্ড,
Odisha,ওড়িশা,
Other Territory,অন্যান্য অঞ্চল,
Pondicherry,পন্ডিচেরি,
Punjab,পাঞ্জাব,
Rajasthan,রাজস্থান,
Sikkim,সিকিম,
Tamil Nadu,তামিলনাড়ু,
Telangana,তেলঙ্গানা,
Tripura,ত্রিপুরা,
Uttar Pradesh,উত্তর প্রদেশ,
Uttarakhand,উত্তরাখণ্ড,
West Bengal,পশ্চিমবঙ্গ,
Published on,প্রকাশিত,
Bottom,নীচে,
Top,শীর্ষ,

1 A4 A4
9 Actions পদক্ষেপ
10 Active সক্রিয়
11 Add যোগ
Add Comment মন্তব্য যোগ করুন
12 Add Row সারি যোগ করুন
13 Address ঠিকানা
14 Address Line 2 ঠিকানা লাইন ২
143 Monthly মাসিক
144 More অধিক
145 More Information অধিক তথ্য
More... আরো ...
146 Move পদক্ষেপ
147 My Account আমার অ্যাকাউন্ট
148 New Address নতুন ঠিকানা
155 None না
156 Not Permitted অননুমোদিত
157 Not active সক্রিয় নয়
Notes নোট
158 Number সংখ্যা
159 Online অনলাইন
160 Operation অপারেশন
164 Page Missing or Moved অনুপস্থিত বা সরানো পৃষ্ঠা
165 Parameter স্থিতিমাপ
166 Password পাসওয়ার্ড
Payment Gateway পেমেন্ট গেটওয়ে
Payment Gateway Name পেমেন্ট গেটওয়ে নাম
Payments পেমেন্টস্
167 Period কাল
168 Pincode পিনকোড
Plan Name পরিকল্পনা নাম
169 Please enable pop-ups পপ-আপগুলি সচল করুন
170 Please select Company কোম্পানি নির্বাচন করুন
171 Please select {0} দয়া করে নির্বাচন করুন {0}
172 Please set Email Address ইমেল ঠিকানা নির্ধারণ করুন
Portal পোর্টাল
173 Portal Settings পোর্টাল সেটিংস
174 Preview সম্পূর্ণ বিবরণের পূর্বরূপ দেখুন
175 Primary প্রাথমিক
214 Sample নমুনা
215 Saturday শনিবার
216 Saved সংরক্ষিত
Scan Barcode বারকোড স্ক্যান করুন
217 Scheduled তালিকাভুক্ত
218 Search অনুসন্ধান
219 Secret Key গোপন চাবি
228 Shipping পরিবহন
229 Short Name সংক্ষিপ্ত নাম
230 Slideshow ছবি
Some information is missing কিছু তথ্য অনুপস্থিত
231 Source উত্স
232 Source Name উত্স নাম
233 Standard মান
237 Stopped বন্ধ
238 Subject বিষয়
239 Submit জমা দিন
Successful সফল
240 Summary সারাংশ
241 Sunday রবিবার
242 System Manager সিস্টেম ম্যানেজার
249 Timespan Timespan
250 To থেকে
251 To Date এখন পর্যন্ত
Tools সরঞ্জাম
252 Traceback ট্রেসব্যাক
253 URL URL টি
254 Unsubscribed সদস্যতামুক্তি
Use Sandbox ব্যবহারের স্যান্ডবক্স
255 User ব্যবহারকারী
256 User ID ব্যবহারকারী আইডি
257 Users ব্যবহারকারী
556 Bulk Edit {0} বাল্ক সম্পাদনা {0}
557 Bulk Rename বাল্ক পুনঃনামকরণ
558 Bulk Update প্রচুর আপডেট
Busy ব্যস্ত
559 Button বোতাম
560 Button Help বোতাম সাহায্য
561 Button Label বোতাম ট্যাগ
692 Complete By দ্বারা সম্পূর্ণ
693 Complete Registration সম্পূর্ণ নিবন্ধন
694 Complete Setup সম্পূর্ণ সেটআপ
Completed By দ্বারা সম্পন্ন
695 Compose Email ইমেল রচনা
696 Condition Detail শর্ত বিস্তারিত
697 Conditions পরিবেশ
1676 Not a zip file না একটি জিপ ফাইল
1677 Not allowed for {0}: {1} {0} এর জন্য অনুমোদিত নয়: {1}
1678 You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4} আপনি অনুমতি নেই প্রবেশ {0} কারণ এটি লিঙ্ক করা হয়েছে {1} &#39;{2}&#39; সারিতে {3}, ক্ষেত্র {4}
1679 You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3} আপনি অনুমতি নেই এই প্রবেশ {0} রেকর্ড কারণ এটি লিঙ্ক করা হয়েছে {1} &#39;{2}&#39; ক্ষেত্র {3}
1680 Not allowed to Import আমদানি করার অনুমতি দেওয়া হয়নি
1681 Not allowed to change {0} after submission জমা দেওয়ার পর {0} পরিবর্তন করার অনুমতি নেই
1682 Not allowed to print cancelled documents বাতিল নথি প্রিন্ট করতে পারবেন না
1804 PayPal Settings PayPal এর সেটিং
1805 PayPal payment gateway settings পেপ্যাল পেমেন্ট গেটওয়ে সেটিংস
1806 Payment Cancelled পেমেন্ট বাতিল
Payment Failed পেমেন্ট ব্যর্থ হয়েছে
1807 Payment Success পেমেন্ট সাফল্য
1808 Pending Approval অনুমোদন অপেক্ষারত
1809 Pending Verification অপেক্ষারত যাচাই
3200 Click on the lock icon to toggle public/private সরকারী / ব্যক্তিগত টগল করতে লক আইকনে ক্লিক করুন on
3201 Click on {0} to generate Refresh Token. রিফ্রেশ টোকেন তৈরি করতে {0 on ক্লিক করুন।
3202 Close Condition শর্ত বন্ধ
Column {0} কলাম {0}
3203 Columns / Fields কলাম / ক্ষেত্রসমূহ
3204 Configure notifications for mentions, assignments, energy points and more. উল্লেখ, অ্যাসাইনমেন্ট, শক্তি পয়েন্ট এবং আরও অনেক কিছুর জন্য বিজ্ঞপ্তিগুলি কনফিগার করুন।
3205 Contact Email যোগাযোগের ই - মেইল
3281 Failure ব্যর্থতা
3282 Fetching default Global Search documents. ডিফল্ট গ্লোবাল অনুসন্ধান নথি আনছে।
3283 Fetching posts... পোস্টগুলি আনছে ...
Field Mapping ফিল্ড ম্যাপিং
3284 Field To Check ফিল্ড চেক
3285 File Information ফাইল তথ্য
3286 Filter By দ্বারা ফিল্টার
3435 No records will be exported কোনও রেকর্ড রফতানি হবে না
3436 No results found for {0} in Global Search গ্লোবাল অনুসন্ধানে {0} এর জন্য কোনও ফলাফল পাওয়া যায় নি
3437 No user found কোন ব্যবহারকারী পাওয়া যায় নি
Not Specified উল্লিখিত না
3438 Notification Log বিজ্ঞপ্তি লগ
3439 Notification Settings বিজ্ঞপ্তি সেটিংস
3440 Notification Subscribed Document বিজ্ঞপ্তি সাবস্ক্রাইব করা ডকুমেন্ট
3590 Untranslated অ-অনুবাদিত
3591 Upcoming Events আসন্ন ঘটনাবলী
3592 Update Existing Records বিদ্যমান রেকর্ড আপডেট করুন
Update Type আপডেট প্রকার
3593 Updated To A New Version 🎉 নতুন সংস্করণে আপডেট হয়েছে 🎉
3594 Updating {0} of {1}, {2} {1}, {2} এর {0} আপডেট করা হচ্ছে
3595 Upload file ফাইল আপলোড করুন
3696 Disabled অক্ষম
3697 Doctype DOCTYPE
3698 Download Template ডাউনলোড টেমপ্লেট
Dr ডাঃ
3699 Due Date নির্দিষ্ট তারিখ
3700 Duplicate নকল
3701 Edit Profile জীবন বৃত্তান্ত সম্পাদনা
3702 Email EMail
End Time শেষ সময়
3703 Enter Value মান লিখুন
3704 Entity Type সত্তা টাইপ
3705 Error ভুল
3706 Expired মেয়াদউত্তীর্ণ
3707 Export রপ্তানি
3708 Export not allowed. You need {0} role to export. রপ্তানি অনুমোদিত নয়. আপনি এক্সপোর্ট করতে {0} ভূমিকা প্রয়োজন.
Fetching... আনা হচ্ছে ...
3709 Field ক্ষেত্র
3710 File Manager নথি ব্যবস্থাপক
3711 Filters ফিল্টার
3720 In Progress চলমান
3721 Intermediate অন্তর্বর্তী
3722 Invite as User ব্যবহারকারী হিসেবে আমন্ত্রণ
It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account. মনে হচ্ছে যে সার্ভারের স্ট্রাপ কনফিগারেশনের সাথে একটি সমস্যা আছে ব্যর্থতার ক্ষেত্রে, এই পরিমাণটি আপনার অ্যাকাউন্টে ফেরত পাঠানো হবে।
3723 Loading... লোড হচ্ছে ...
3724 Location অবস্থান
Looks like someone sent you to an incomplete URL. Please ask them to look into it. মত কেউ একটি অসম্পূর্ণ URL এ আপনি পাঠানো হচ্ছে. তাদের তা দেখব জিজ্ঞাসা করুন.
Master গুরু
3725 Message বার্তা
3726 Missing Values Required অনুপস্থিত মানের প্রয়োজনীয়
3727 Mobile No মোবাইল নাম্বার
3733 Offline অফলাইন
3734 Open খোলা
3735 Page {0} of {1} পাতা {0} এর {1}
Pay বেতন
3736 Pending বিচারাধীন
3737 Phone ফোন
3738 Please click on the following link to set your new password আপনার নতুন পাসওয়ার্ড সেট করতে নিচের লিঙ্কে ক্লিক করুন
3782 Year বছর
3783 Yearly বাত্সরিক
3784 You আপনি
You can also copy-paste this link in your browser এছাড়াও আপনি আপনার ব্রাউজারে এই লিঙ্কটি কপি-পেস্ট করতে পারেন
3785 and এবং
3786 {0} Name {0} নাম
3787 {0} is required {0} প্রয়োজন
4085 Navbar নববার
4086 Source Message উত্স বার্তা
4087 Translated Message অনুবাদকৃত বার্তা
Verified By কর্তৃক যাচাইকৃত
4088 Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand. এই কনসোলটি ব্যবহার করা আক্রমণকারীদের আপনার ছদ্মবেশ তৈরি করতে এবং আপনার তথ্য চুরি করতে পারে। আপনি বুঝতে পারেন না এমন কোড প্রবেশ করুন বা পেস্ট করবেন না।
4089 {0} m {0} মি
4090 {0} h {0} এইচ
4117 {0} is not a valid Name {0 a একটি বৈধ নাম নয়
4118 Your system is being updated. Please refresh again after a few moments. আপনার সিস্টেম আপডেট করা হচ্ছে। কয়েক মুহুর্ত পরে আবার রিফ্রেশ করুন।
4119 {0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first. {0} {1}: জমা দেওয়া রেকর্ড মোছা যাবে না। আপনাকে অবশ্যই এটি প্রথমে {2} বাতিল {3} করতে হবে।
Invalid naming series (. missing) for {0} Invalid 0 for এর জন্য অবৈধ নামকরণ সিরিজ (। নিখোঁজ)
4120 Error has occurred in {0} Error 0 in এ ত্রুটি ঘটেছে
4121 Status Updated স্থিতি আপডেট হয়েছে
4122 You can also copy-paste this {0} to your browser আপনি এই ব্রাউজারেও এই {0 copy অনুলিপি করতে পারেন
4138 Address And Contacts ঠিকানা এবং পরিচিতি
4139 Lead Conversion Time লিড রূপান্তর সময়
4140 Due Date Based On দরুন উপর ভিত্তি করে তারিখ
Phone Number ফোন নম্বর
4141 Linked Documents লিঙ্কযুক্ত নথি
Account SID অ্যাকাউন্ট এসআইডি
4142 Steps পদক্ষেপ
4143 email ইমেল
4144 Component উপাদান
4145 Subtitle বাড়তি নাম
Global Defaults আন্তর্জাতিক ডিফল্ট
4146 Prefix উপসর্গ
4147 Is Public ইজ পাবলিক
4148 This chart will be available to all Users if this is set এটি সেট করা থাকলে এই চার্টটি সমস্ত ব্যবহারকারীর জন্য উপলব্ধ হবে
4329 Please create Card first দয়া করে প্রথমে কার্ড তৈরি করুন
4330 Onboarding Permission বোর্ডিং অনুমতি
4331 Onboarding Step বোর্ডিং স্টেপ
Is Mandatory আবশ্যক
4332 Is Skipped স্কিপড
4333 Create Entry এন্ট্রি তৈরি করুন
4334 Update Settings সেটিংস আপডেট করুন
4366 Send Attachments সংযুক্তি প্রেরণ করুন
4367 Testing পরীক্ষামূলক
4368 System Notification সিস্টেম বিজ্ঞপ্তি
WhatsApp হোয়াটসঅ্যাপ
4369 Twilio Number টিভিলিও নম্বর
4370 To use WhatsApp for Business, initialize <a href="#Form/Twilio Settings">Twilio Settings</a>. ব্যবসায়ের জন্য হোয়াটসঅ্যাপ ব্যবহার করতে, <a href="#Form/Twilio Settings">টোলিও সেটিংস শুরু করুন</a> ।
4371 To use Slack Channel, add a <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook URL</a>. স্ল্যাক চ্যানেল ব্যবহার করতে, একটি <a href="#List/Slack%20Webhook%20URL/List">স্ল্যাক ওয়েবহুক ইউআরএল যুক্ত করুন</a> ।
4500 {0} are currently {1} {0 বর্তমানে {1}
4501 Currently Replying বর্তমানে উত্তর
4502 created {0} তৈরি {0}
Make a call ফোন করুন
4503 Change পরিবর্তন Coins
4504 Too Many Requests অনেক অনুরোধ
4505 Invalid Authorization headers, add a token with a prefix from one of the following: {0}. অবৈধ অনুমোদনের শিরোনাম, নিম্নলিখিতগুলির একটি থেকে উপসর্গ সহ একটি টোকেন যুক্ত করুন: {0}}
4664 Negative Value নেতিবাচক মান
4665 Authentication failed while receiving emails from Email Account: {0}. ইমেল অ্যাকাউন্ট থেকে ইমেলগুলি গ্রহণের সময় প্রমাণীকরণ ব্যর্থ হয়েছিল: {0}}
4666 Message from server: {0} সার্ভার থেকে বার্তা: {0}
4667 Add Row সারি যোগ করুন
4668 Analytics বৈশ্লেষিক ন্যায়
4669 Anonymous নামবিহীন
4670 Author লেখক
4671 Basic মৌলিক
4672 Billing বিলিং
4673 Contact Details যোগাযোগের ঠিকানা
4674 Datetime তারিখ সময়
4675 Enable সক্ষম করা
4676 Event ঘটনা
4677 Full সম্পূর্ণ
4678 Insert সন্নিবেশ
4679 Interests রুচি
4680 Language Name ভাষার নাম
4681 License লাইসেন্স
4682 Limit সীমা
4683 Log লগিন
4684 Meeting সাক্ষাৎ
4685 My Account আমার অ্যাকাউন্ট
4686 Newsletters নিউজ লেটার
4687 Password পাসওয়ার্ড
4688 Pincode পিনকোড
4689 Please select prefix first প্রথম উপসর্গ নির্বাচন করুন
4690 Please set Email Address ইমেল ঠিকানা নির্ধারণ করুন
4691 Please set the series to be used. ব্যবহার করা সিরিজ সেট করুন দয়া করে।
4692 Portal Settings পোর্টাল সেটিংস
4693 Reference Owner রেফারেন্স মালিক
4694 Region এলাকা
4695 Report Builder প্রতিবেদন নির্মাতা
4696 Sample নমুনা
4697 Saved সংরক্ষিত
4698 Series {0} already used in {1} ইতিমধ্যে ব্যবহৃত সিরিজ {0} {1}
4699 Set as Default ডিফল্ট হিসেবে সেট করুন
4700 Shipping পরিবহন
4701 Standard মান
4702 Test পরীক্ষা
4703 Traceback ট্রেসব্যাক
4704 Unable to find DocType {0} ডক টাইপ {0} খুঁজে পাওয়া যায়নি
4705 Weekdays কাজের
4706 Workflow কর্মপ্রবাহ
4707 You need to be logged in to access this page আপনি এই পৃষ্ঠায় যাওয়ার জন্য লগ ইন করতে হবে
4708 County বিভাগ
4709 Images চিত্র
4710 Office অফিস
4711 Passive নিষ্ক্রিয়
4712 Permanent স্থায়ী
4713 Plant উদ্ভিদ
4714 Postal ঠিকানা
4715 Previous পূর্ববর্তী
4716 Shop দোকান
4717 Subsidiary সহায়ক
4718 There is some problem with the file url: {0} ফাইলের URL সঙ্গে কিছু সমস্যা আছে: {0}
4719 Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0} নামকরণ সিরিজে &quot;-&quot;, &quot;#&quot;, &quot;।&quot;, &quot;/&quot;, &quot;{{&quot; এবং &quot;}}&quot; ব্যতীত বিশেষ অক্ষর অনুমোদিত নয় {0}
4720 Export Type রপ্তানি প্রকার
4721 Last Sync On শেষ সিঙ্ক অন
4722 Webhook Secret ওয়েবহুক সিক্রেট
4723 Back to Home বাড়িতে ফিরে যাও
4724 Customize কাস্টমাইজ করুন
4725 Edit Profile জীবন বৃত্তান্ত সম্পাদনা
4726 File Manager নথি ব্যবস্থাপক
4727 Invite as User ব্যবহারকারী হিসেবে আমন্ত্রণ
4728 Newsletter নিউজলেটার
4729 Printing মুদ্রণ
4730 Publish প্রকাশ করা
4731 Refreshing সতেজকারক
4732 Select All সবগুলো নির্বাচন করা
4733 Set সেট
4734 Setup Wizard সেটআপ উইজার্ড
4735 Update Details আপডেট আপডেট
4736 You আপনি
4737 {0} Name {0} নাম
4738 Bold সাহসী
4739 Center কেন্দ্র
4740 Comment মন্তব্য
4741 Not Found খুঁজে পাওয়া যাচ্ছে না
4742 User Id ব্যবহারকারীর প্রমানপত্র
4743 Position অবস্থান
4744 Crop ফসল
4745 Topic বিষয়
4746 Public Transport পাবলিক ট্রান্সপোর্ট
4747 Request Data ডেটা অনুরোধ
4748 Steps পদক্ষেপ
4749 Reference DocType রেফারেন্স ডকটাইপ
4750 Select Transaction নির্বাচন লেনদেন
4751 Help HTML হেল্প এইচটিএমএল
4752 Series List for this Transaction এই লেনদেনে সিরিজ তালিকা
4753 User must always select ব্যবহারকারী সবসময় নির্বাচন করতে হবে
4754 Check this if you want to force the user to select a series before saving. There will be no default if you check this. আপনি সংরক্ষণের আগে একটি সিরিজ নির্বাচন করুন ব্যবহারকারীর বাধ্য করতে চান তাহলে এই পরীক্ষা. আপনি এই পরীক্ষা যদি কোন ডিফল্ট থাকবে.
4755 Prefix উপসর্গ
4756 This is the number of the last created transaction with this prefix এই উপসর্গবিশিষ্ট সর্বশেষ নির্মিত লেনদেনের সংখ্যা
4757 Update Series Number আপডেট সিরিজ সংখ্যা
4758 Validation Error বৈধতা ত্রুটি
4759 Andaman and Nicobar Islands আন্দামান এবং নিকোবর দ্বীপপুঞ্জ
4760 Andhra Pradesh অন্ধ্র প্রদেশ
4761 Arunachal Pradesh অরুণাচল প্রদেশ
4762 Assam আসাম
4763 Bihar বিহার
4764 Chandigarh চণ্ডীগড়
4765 Chhattisgarh ছত্তীসগ .়
4766 Dadra and Nagar Haveli দাদরা ও নগর হাভেলি
4767 Daman and Diu দামান ও দিউ
4768 Delhi দিল্লি
4769 Goa গোয়া
4770 Gujarat গুজরাট
4771 Haryana হরিয়ানা
4772 Himachal Pradesh হিমাচল প্রদেশ
4773 Jammu and Kashmir জম্মু ও কাশ্মীর
4774 Jharkhand ঝাড়খণ্ড
4775 Karnataka কর্ণাটক
4776 Kerala কেরালা
4777 Lakshadweep Islands লক্ষদ্বীপ দ্বীপপুঞ্জ
4778 Madhya Pradesh মধ্য প্রদেশ
4779 Maharashtra মহারাষ্ট্র
4780 Manipur মণিপুর
4781 Meghalaya মেঘালয়
4782 Mizoram মিজোরাম
4783 Nagaland নাগাল্যান্ড
4784 Odisha ওড়িশা
4785 Other Territory অন্যান্য অঞ্চল
4786 Pondicherry পন্ডিচেরি
4787 Punjab পাঞ্জাব
4788 Rajasthan রাজস্থান
4789 Sikkim সিকিম
4790 Tamil Nadu তামিলনাড়ু
4791 Telangana তেলঙ্গানা
4792 Tripura ত্রিপুরা
4793 Uttar Pradesh উত্তর প্রদেশ
4794 Uttarakhand উত্তরাখণ্ড
4795 West Bengal পশ্চিমবঙ্গ
4796 Published on প্রকাশিত
4797 Bottom নীচে
4798 Top শীর্ষ

View file

@ -9,7 +9,6 @@ Action,Akcija,
Actions,Akcije,
Active,Aktivan,
Add,Dodaj,
Add Comment,Dodaj komentar,
Add Row,Dodaj Row,
Address,Adresa,
Address Line 2,Adresa - linija 2,
@ -144,7 +143,6 @@ Monday,Ponedjeljak,
Monthly,Mjesečno,
More,Više,
More Information,Više informacija,
More...,Više ...,
Move,Potez,
My Account,Moj račun,
New Address,Nova adresa,
@ -157,7 +155,6 @@ No items found.,Nema pronađenih stavki.,
None,Ništa,
Not Permitted,Ne Dozvoljena,
Not active,Ne aktivna,
Notes,Bilješke,
Number,Broj,
Online,online,
Operation,Operacija,
@ -167,17 +164,12 @@ Owner,vlasnik,
Page Missing or Moved,Page nedostaju ili preselili,
Parameter,Parametar,
Password,Lozinka,
Payment Gateway,Payment Gateway,
Payment Gateway Name,Naziv Gateway Gateway-a,
Payments,Plaćanja,
Period,Period,
Pincode,Poštanski broj,
Plan Name,Ime plana,
Please enable pop-ups,Molimo omogućite pop-up prozora,
Please select Company,Molimo odaberite Company,
Please select {0},Odaberite {0},
Please set Email Address,Molimo podesite e-mail adresa,
Portal,Portal,
Portal Settings,portal Postavke,
Preview,Pregled,
Primary,Osnovni,
@ -222,7 +214,6 @@ Salutation,Pozdrav,
Sample,Uzorak,
Saturday,Subota,
Saved,Sačuvane,
Scan Barcode,Skenirajte bar kod,
Scheduled,Planirano,
Search,Pretraga,
Secret Key,tajni ključ,
@ -237,7 +228,6 @@ Settings,Podešavanja,
Shipping,Transport,
Short Name,Kratki naziv,
Slideshow,Slideshow,
Some information is missing,Neke informacije nedostaju,
Source,Izvor,
Source Name,izvor ime,
Standard,Standard,
@ -247,7 +237,6 @@ State,State,
Stopped,Zaustavljen,
Subject,Predmet,
Submit,Potvrdi,
Successful,Uspešno,
Summary,Sažetak,
Sunday,Nedjelja,
System Manager,System Manager,
@ -260,11 +249,9 @@ The page you are looking for is missing. This could be because it is moved or th
Timespan,Vremenski razmak,
To,To,
To Date,Za datum,
Tools,Alati,
Traceback,Traceback,
URL,URL,
Unsubscribed,Pretplatu,
Use Sandbox,Koristite Sandbox,
User,User,
User ID,Korisnički ID,
Users,Korisnici,
@ -569,7 +556,6 @@ Bulk Delete,Skupno brisanje,
Bulk Edit {0},Bulk Edit {0},
Bulk Rename,Bulk Rename,
Bulk Update,Bulk Update,
Busy,Zauzeto,
Button,Dugme,
Button Help,Button Pomoć,
Button Label,Button Label,
@ -706,7 +692,6 @@ Compiled Successfully,Sastavljeno uspešno,
Complete By,Zavrsetak do,
Complete Registration,Kompletna Registracija,
Complete Setup,kompletan Setup,
Completed By,Završio,
Compose Email,Sastavi-mail,
Condition Detail,Detalji detalja,
Conditions,Uslovi,
@ -1691,7 +1676,7 @@ Not a valid user,Nije važeći korisnik,
Not a zip file,Nije zip datoteku,
Not allowed for {0}: {1},Nije dozvoljeno za {0}: {1},
"You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4}","Nije vam dozvoljeno pristupiti {0} jer je povezan {1} '{2}' u redu {3}, polje {4}",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},"Nije vam dozvoljeno pristupiti ovom {0} zapis jer je povezan {1} '{2}' u pol",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},Nije vam dozvoljeno pristupiti ovom {0} zapis jer je povezan {1} '{2}' u pol,
Not allowed to Import,Nije dopušteno uvoziti,
Not allowed to change {0} after submission,Nije dopušteno mijenjati {0} nakon dostavljanja,
Not allowed to print cancelled documents,Nije dozvoljeno da se ispis otkazan dokumentima,
@ -1819,7 +1804,6 @@ Path to private Key File,Put do privatne datoteke s ključevima,
PayPal Settings,PayPal Postavke,
PayPal payment gateway settings,PayPal postavke payment gateway,
Payment Cancelled,plaćanje Otkazano,
Payment Failed,plaćanje nije uspjelo,
Payment Success,plaćanje Uspjeh,
Pending Approval,Čeka odobrenje,
Pending Verification,Čeka se verifikacija,
@ -3216,7 +3200,6 @@ Click on the link below to approve the request,Kliknite na donju vezu kako biste
Click on the lock icon to toggle public/private,Kliknite na ikonu zaključavanja kako biste prebacili javnu / privatnu,
Click on {0} to generate Refresh Token.,Kliknite na {0} da biste generirali Refresh Token.,
Close Condition,Zatvori stanje,
Column {0},Stupac {0},
Columns / Fields,Stupci / polja,
"Configure notifications for mentions, assignments, energy points and more.","Konfigurišite obavijesti za spomene, zadatke, energetske bodove i još mnogo toga.",
Contact Email,Kontakt email,
@ -3298,7 +3281,6 @@ Failed to create an Event Consumer or an Event Consumer for the current site is
Failure,Neuspjeh,
Fetching default Global Search documents.,Dohvaćanje zadanih dokumenata Globalne pretrage.,
Fetching posts...,Dohvaćanje postova ...,
Field Mapping,Mapiranje polja,
Field To Check,Polje za provjeru,
File Information,Informacije o datoteci,
Filter By,Filter by,
@ -3453,7 +3435,6 @@ No posts yet,Još nema poruka,
No records will be exported,Nijedna evidencija neće biti izvezena,
No results found for {0} in Global Search,Nema rezultata za {0} u Globalnoj pretraživanju,
No user found,Nije pronađen nijedan korisnik,
Not Specified,Nije određeno,
Notification Log,Dnevnik obavijesti,
Notification Settings,Podešavanja obavijesti,
Notification Subscribed Document,Obavijest pretplaćeni dokument,
@ -3609,7 +3590,6 @@ Untitled Column,Kolona bez naslova,
Untranslated,Neprevedeno,
Upcoming Events,Najave događaja,
Update Existing Records,Ažuriranje postojećih zapisa,
Update Type,Tip ažuriranja,
Updated To A New Version 🎉,Ažurirano na novu verziju 🎉,
"Updating {0} of {1}, {2}","Ažuriranje {0} od {1}, {2}",
Upload file,Pošaljite datoteku,
@ -3716,19 +3696,16 @@ Designation,Oznaka,
Disabled,Ugašeno,
Doctype,Vrsta dokumenta,
Download Template,Preuzmite predložak,
Dr,Doktor,
Due Date,Datum dospijeća,
Duplicate,Duplikat,
Edit Profile,Uredi profil,
Email,Email,
End Time,End Time,
Enter Value,Unesite vrijednost,
Entity Type,Tip entiteta,
Error,Pogreška,
Expired,Istekla,
Export,Izvoz,
Export not allowed. You need {0} role to export.,Izvoz nisu dopušteni . Trebate {0} ulogu za izvoz .,
Fetching...,Dohvaćanje ...,
Field,polje,
File Manager,File Manager,
Filters,Filteri,
@ -3743,11 +3720,8 @@ Import Data from CSV / Excel files.,Uvoz podataka iz datoteka CSV / Excel.,
In Progress,U toku,
Intermediate,srednji,
Invite as User,Pozovi kao korisnika,
"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Čini se da postoji problem sa konfiguracijom trake servera. U slučaju neuspeha, iznos će biti vraćen na vaš račun.",
Loading...,Učitavanje ...,
Location,Lokacija,
Looks like someone sent you to an incomplete URL. Please ask them to look into it.,Izgleda kao da je neko poslao na nepotpune URL. Zamolite ih da pogleda u nju.,
Master,Majstor,
Message,Poruka,
Missing Values Required,Nedostaje vrijednosti potrebne,
Mobile No,Br. mobilnog telefona,
@ -3759,7 +3733,6 @@ Note,Biljeske,
Offline,Offline,
Open,Otvoreno,
Page {0} of {1},Strana {0} od {1},
Pay,Platiti,
Pending,Čekanje,
Phone,Telefon,
Please click on the following link to set your new password,Molimo kliknite na sljedeći link i postaviti novu lozinku,
@ -3809,7 +3782,6 @@ Welcome to {0},Dobrodošli na {0},
Year,Godina,
Yearly,Godišnji,
You,Vi,
You can also copy-paste this link in your browser,Također možete copy-paste ovaj link u vašem pregledniku,
and,i,
{0} Name,{0} Ime,
{0} is required,{0} je potrebno,
@ -4113,7 +4085,6 @@ Custom SCSS,Prilagođeni SCSS,
Navbar,Navbar,
Source Message,Izvorna poruka,
Translated Message,Prevedena poruka,
Verified By,Ovjeren od strane,
Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand.,Korištenje ove konzole može omogućiti napadačima da se lažno predstavljaju i kradu vaše podatke. Ne unosite i ne lijepite kod koji ne razumijete.,
{0} m,{0} m,
{0} h,{0} h,
@ -4146,7 +4117,6 @@ Collapse,Kolaps,
{0} is not a valid Name,{0} nije važeće ime,
Your system is being updated. Please refresh again after a few moments.,Vaš sistem se ažurira. Osvježite ponovo nakon nekoliko trenutaka.,
{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first.,{0} {1}: Predani zapis se ne može izbrisati. Prvo ga morate {2} otkazati {3}.,
Invalid naming series (. missing) for {0},Nevažeća serija imenovanja (. Nedostaje) za {0},
Error has occurred in {0},Dogodila se greška u {0},
Status Updated,Status ažuriran,
You can also copy-paste this {0} to your browser,Možete i kopirati-zalijepiti ovo {0} u svoj preglednik,
@ -4168,14 +4138,11 @@ Is Billing Contact,Je kontakt za naplatu,
Address And Contacts,Adresa i kontakti,
Lead Conversion Time,Vrijeme konverzije vode,
Due Date Based On,Due Date Based On,
Phone Number,Telefonski broj,
Linked Documents,Povezani dokumenti,
Account SID,SID računa,
Steps,Koraci,
email,e-mail,
Component,sastavni,
Subtitle,Podnaslov,
Global Defaults,Globalne zadane postavke,
Prefix,Prefiks,
Is Public,Javno je,
This chart will be available to all Users if this is set,"Ako je postavljeno, ovaj će grafikon biti dostupan svim korisnicima",
@ -4362,7 +4329,6 @@ Dynamic Filters Section,Odjeljak za dinamičke filtere,
Please create Card first,Prvo kreirajte karticu,
Onboarding Permission,Dozvola za ukrcavanje,
Onboarding Step,Onboarding Step,
Is Mandatory,Je obavezna,
Is Skipped,Preskočeno je,
Create Entry,Napravite unos,
Update Settings,Ažuriranje postavki,
@ -4400,7 +4366,6 @@ Message (HTML),Poruka (HTML),
Send Attachments,Pošaljite priloge,
Testing,Testiranje,
System Notification,Obavijest o sistemu,
WhatsApp,WhatsApp,
Twilio Number,Twilio Number,
"To use WhatsApp for Business, initialize <a href=""#Form/Twilio Settings"">Twilio Settings</a>.","Da biste koristili WhatsApp za posao, inicijalizirajte <a href=""#Form/Twilio Settings"">Twilio Settings</a> .",
"To use Slack Channel, add a <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL</a>.","Da biste koristili Slack Channel, dodajte <a href=""#List/Slack%20Webhook%20URL/List"">URL Slack Webhook-a</a> .",
@ -4535,7 +4500,6 @@ Add to ToDo,Dodaj u ToDo,
{0} are currently {1},{0} su trenutno {1},
Currently Replying,Trenutno odgovaram,
created {0},kreirano {0},
Make a call,Pozovite,
Change,Promjena,Coins
Too Many Requests,Previše zahtjeva,
"Invalid Authorization headers, add a token with a prefix from one of the following: {0}.","Nevažeća zaglavlja autorizacije, dodajte žeton s prefiksom jednog od sljedećeg: {0}.",
@ -4700,3 +4664,135 @@ Value cannot be negative for {0}: {1},Vrijednost ne može biti negativna za {0}:
Negative Value,Negativna vrijednost,
Authentication failed while receiving emails from Email Account: {0}.,Autentifikacija nije uspjela tijekom primanja e-pošte s računa e-pošte: {0}.,
Message from server: {0},Poruka od servera: {0},
Add Row,Dodaj Row,
Analytics,Analitika,
Anonymous,Anonimno,
Author,autor,
Basic,Osnovni,
Billing,Naplata,
Contact Details,Kontakt podaci,
Datetime,Datum i vrijeme,
Enable,omogućiti,
Event,Događaj,
Full,Pun,
Insert,Insert,
Interests,Interesi,
Language Name,Jezik,
License,Licenca,
Limit,granica,
Log,Prijavite,
Meeting,Sastanak,
My Account,Moj račun,
Newsletters,Newsletteri,
Password,Lozinka,
Pincode,Poštanski broj,
Please select prefix first,Odaberite prefiks prvi,
Please set Email Address,Molimo podesite e-mail adresa,
Please set the series to be used.,Molimo postavite seriju koja će se koristiti.,
Portal Settings,portal Postavke,
Reference Owner,referentni Vlasnik,
Region,Regija,
Report Builder,Generator izvjestaja,
Sample,Uzorak,
Saved,Sačuvane,
Series {0} already used in {1},Serija {0} već koristi u {1},
Set as Default,Postavi kao podrazumjevano,
Shipping,Transport,
Standard,Standard,
Test,Test,
Traceback,Traceback,
Unable to find DocType {0},Nije moguće pronaći DocType {0},
Weekdays,Radnim danima,
Workflow,Hodogram,
You need to be logged in to access this page,Morate biti prijavljeni da pristupite ovoj stranici,
County,okrug,
Images,Slike,
Office,Ured,
Passive,Pasiva,
Permanent,trajan,
Plant,Biljka,
Postal,Poštanski,
Previous,prijašnji,
Shop,Prodavnica,
Subsidiary,Podružnica,
There is some problem with the file url: {0},Postoji neki problem sa URL datoteku: {0},
"Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}","Posebni znakovi osim &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; I &quot;}}&quot; nisu dozvoljeni u imenovanju serija {0}",
Export Type,Tip izvoza,
Last Sync On,Poslednja sinhronizacija uključena,
Webhook Secret,Webhook Secret,
Back to Home,Povratak na početnu,
Customize,Prilagodite,
Edit Profile,Uredi profil,
File Manager,File Manager,
Invite as User,Pozovi kao korisnika,
Newsletter,Newsletter,
Printing,Štampanje,
Publish,Objavite,
Refreshing,Osvežavajuće,
Select All,Odaberite sve,
Set,Set,
Setup Wizard,Čarobnjak za postavljanje,
Update Details,Ažurirajte detalje,
You,Vi,
{0} Name,{0} Ime,
Bold,Hrabro,
Center,Centar,
Comment,Komentiraj,
Not Found,Not found,
User Id,Korisnički broj,
Position,Pozicija,
Crop,Rezati,
Topic,tema,
Public Transport,Javni prijevoz,
Request Data,Zahtevajte podatke,
Steps,Koraci,
Reference DocType,Referenca DocType,
Select Transaction,Odaberite transakciju,
Help HTML,HTML pomoć,
Series List for this Transaction,Serija Popis za ovu transakciju,
User must always select,Korisničko uvijek mora odabrati,
Check this if you want to force the user to select a series before saving. There will be no default if you check this.,Označite ovo ako želite prisiliti korisniku odabir seriju prije spremanja. Tu će biti zadana ako to provjerili.,
Prefix,Prefiks,
This is the number of the last created transaction with this prefix,To je broj zadnjeg stvorio transakcije s ovim prefiksom,
Update Series Number,Update serije Broj,
Validation Error,Pogreška provjere,
Andaman and Nicobar Islands,Andamanska i Nikobarska ostrva,
Andhra Pradesh,Andhra Pradesh,
Arunachal Pradesh,Arunachal Pradesh,
Assam,Assam,
Bihar,Bihar,
Chandigarh,Chandigarh,
Chhattisgarh,Chhattisgarh,
Dadra and Nagar Haveli,Dadra i Nagar Haveli,
Daman and Diu,Daman i Diu,
Delhi,Delhi,
Goa,Goa,
Gujarat,Gujarat,
Haryana,Haryana,
Himachal Pradesh,Himachal Pradesh,
Jammu and Kashmir,Džamu i Kašmir,
Jharkhand,Jharkhand,
Karnataka,Karnataka,
Kerala,Kerala,
Lakshadweep Islands,Ostrva Lakshadweep,
Madhya Pradesh,Madhya Pradesh,
Maharashtra,Maharashtra,
Manipur,Manipur,
Meghalaya,Meghalaya,
Mizoram,Mizoram,
Nagaland,Nagaland,
Odisha,Odisha,
Other Territory,Ostala teritorija,
Pondicherry,Pondicherry,
Punjab,Punjab,
Rajasthan,Rajasthan,
Sikkim,Sikkim,
Tamil Nadu,Tamil Nadu,
Telangana,Telangana,
Tripura,Tripura,
Uttar Pradesh,Uttar Pradesh,
Uttarakhand,Uttarakhand,
West Bengal,Zapadni Bengal,
Published on,Objavljeno,
Bottom,Dno,
Top,Vrh,

1 A4 A4
9 Actions Akcije
10 Active Aktivan
11 Add Dodaj
Add Comment Dodaj komentar
12 Add Row Dodaj Row
13 Address Adresa
14 Address Line 2 Adresa - linija 2
143 Monthly Mjesečno
144 More Više
145 More Information Više informacija
More... Više ...
146 Move Potez
147 My Account Moj račun
148 New Address Nova adresa
155 None Ništa
156 Not Permitted Ne Dozvoljena
157 Not active Ne aktivna
Notes Bilješke
158 Number Broj
159 Online online
160 Operation Operacija
164 Page Missing or Moved Page nedostaju ili preselili
165 Parameter Parametar
166 Password Lozinka
Payment Gateway Payment Gateway
Payment Gateway Name Naziv Gateway Gateway-a
Payments Plaćanja
167 Period Period
168 Pincode Poštanski broj
Plan Name Ime plana
169 Please enable pop-ups Molimo omogućite pop-up prozora
170 Please select Company Molimo odaberite Company
171 Please select {0} Odaberite {0}
172 Please set Email Address Molimo podesite e-mail adresa
Portal Portal
173 Portal Settings portal Postavke
174 Preview Pregled
175 Primary Osnovni
214 Sample Uzorak
215 Saturday Subota
216 Saved Sačuvane
Scan Barcode Skenirajte bar kod
217 Scheduled Planirano
218 Search Pretraga
219 Secret Key tajni ključ
228 Shipping Transport
229 Short Name Kratki naziv
230 Slideshow Slideshow
Some information is missing Neke informacije nedostaju
231 Source Izvor
232 Source Name izvor ime
233 Standard Standard
237 Stopped Zaustavljen
238 Subject Predmet
239 Submit Potvrdi
Successful Uspešno
240 Summary Sažetak
241 Sunday Nedjelja
242 System Manager System Manager
249 Timespan Vremenski razmak
250 To To
251 To Date Za datum
Tools Alati
252 Traceback Traceback
253 URL URL
254 Unsubscribed Pretplatu
Use Sandbox Koristite Sandbox
255 User User
256 User ID Korisnički ID
257 Users Korisnici
556 Bulk Edit {0} Bulk Edit {0}
557 Bulk Rename Bulk Rename
558 Bulk Update Bulk Update
Busy Zauzeto
559 Button Dugme
560 Button Help Button Pomoć
561 Button Label Button Label
692 Complete By Zavrsetak do
693 Complete Registration Kompletna Registracija
694 Complete Setup kompletan Setup
Completed By Završio
695 Compose Email Sastavi-mail
696 Condition Detail Detalji detalja
697 Conditions Uslovi
1676 Not a zip file Nije zip datoteku
1677 Not allowed for {0}: {1} Nije dozvoljeno za {0}: {1}
1678 You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4} Nije vam dozvoljeno pristupiti {0} jer je povezan {1} '{2}' u redu {3}, polje {4}
1679 You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3} Nije vam dozvoljeno pristupiti ovom {0} zapis jer je povezan {1} '{2}' u pol
1680 Not allowed to Import Nije dopušteno uvoziti
1681 Not allowed to change {0} after submission Nije dopušteno mijenjati {0} nakon dostavljanja
1682 Not allowed to print cancelled documents Nije dozvoljeno da se ispis otkazan dokumentima
1804 PayPal Settings PayPal Postavke
1805 PayPal payment gateway settings PayPal postavke payment gateway
1806 Payment Cancelled plaćanje Otkazano
Payment Failed plaćanje nije uspjelo
1807 Payment Success plaćanje Uspjeh
1808 Pending Approval Čeka odobrenje
1809 Pending Verification Čeka se verifikacija
3200 Click on the lock icon to toggle public/private Kliknite na ikonu zaključavanja kako biste prebacili javnu / privatnu
3201 Click on {0} to generate Refresh Token. Kliknite na {0} da biste generirali Refresh Token.
3202 Close Condition Zatvori stanje
Column {0} Stupac {0}
3203 Columns / Fields Stupci / polja
3204 Configure notifications for mentions, assignments, energy points and more. Konfigurišite obavijesti za spomene, zadatke, energetske bodove i još mnogo toga.
3205 Contact Email Kontakt email
3281 Failure Neuspjeh
3282 Fetching default Global Search documents. Dohvaćanje zadanih dokumenata Globalne pretrage.
3283 Fetching posts... Dohvaćanje postova ...
Field Mapping Mapiranje polja
3284 Field To Check Polje za provjeru
3285 File Information Informacije o datoteci
3286 Filter By Filter by
3435 No records will be exported Nijedna evidencija neće biti izvezena
3436 No results found for {0} in Global Search Nema rezultata za {0} u Globalnoj pretraživanju
3437 No user found Nije pronađen nijedan korisnik
Not Specified Nije određeno
3438 Notification Log Dnevnik obavijesti
3439 Notification Settings Podešavanja obavijesti
3440 Notification Subscribed Document Obavijest pretplaćeni dokument
3590 Untranslated Neprevedeno
3591 Upcoming Events Najave događaja
3592 Update Existing Records Ažuriranje postojećih zapisa
Update Type Tip ažuriranja
3593 Updated To A New Version 🎉 Ažurirano na novu verziju 🎉
3594 Updating {0} of {1}, {2} Ažuriranje {0} od {1}, {2}
3595 Upload file Pošaljite datoteku
3696 Disabled Ugašeno
3697 Doctype Vrsta dokumenta
3698 Download Template Preuzmite predložak
Dr Doktor
3699 Due Date Datum dospijeća
3700 Duplicate Duplikat
3701 Edit Profile Uredi profil
3702 Email Email
End Time End Time
3703 Enter Value Unesite vrijednost
3704 Entity Type Tip entiteta
3705 Error Pogreška
3706 Expired Istekla
3707 Export Izvoz
3708 Export not allowed. You need {0} role to export. Izvoz nisu dopušteni . Trebate {0} ulogu za izvoz .
Fetching... Dohvaćanje ...
3709 Field polje
3710 File Manager File Manager
3711 Filters Filteri
3720 In Progress U toku
3721 Intermediate srednji
3722 Invite as User Pozovi kao korisnika
It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account. Čini se da postoji problem sa konfiguracijom trake servera. U slučaju neuspeha, iznos će biti vraćen na vaš račun.
3723 Loading... Učitavanje ...
3724 Location Lokacija
Looks like someone sent you to an incomplete URL. Please ask them to look into it. Izgleda kao da je neko poslao na nepotpune URL. Zamolite ih da pogleda u nju.
Master Majstor
3725 Message Poruka
3726 Missing Values Required Nedostaje vrijednosti potrebne
3727 Mobile No Br. mobilnog telefona
3733 Offline Offline
3734 Open Otvoreno
3735 Page {0} of {1} Strana {0} od {1}
Pay Platiti
3736 Pending Čekanje
3737 Phone Telefon
3738 Please click on the following link to set your new password Molimo kliknite na sljedeći link i postaviti novu lozinku
3782 Year Godina
3783 Yearly Godišnji
3784 You Vi
You can also copy-paste this link in your browser Također možete copy-paste ovaj link u vašem pregledniku
3785 and i
3786 {0} Name {0} Ime
3787 {0} is required {0} je potrebno
4085 Navbar Navbar
4086 Source Message Izvorna poruka
4087 Translated Message Prevedena poruka
Verified By Ovjeren od strane
4088 Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand. Korištenje ove konzole može omogućiti napadačima da se lažno predstavljaju i kradu vaše podatke. Ne unosite i ne lijepite kod koji ne razumijete.
4089 {0} m {0} m
4090 {0} h {0} h
4117 {0} is not a valid Name {0} nije važeće ime
4118 Your system is being updated. Please refresh again after a few moments. Vaš sistem se ažurira. Osvježite ponovo nakon nekoliko trenutaka.
4119 {0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first. {0} {1}: Predani zapis se ne može izbrisati. Prvo ga morate {2} otkazati {3}.
Invalid naming series (. missing) for {0} Nevažeća serija imenovanja (. Nedostaje) za {0}
4120 Error has occurred in {0} Dogodila se greška u {0}
4121 Status Updated Status ažuriran
4122 You can also copy-paste this {0} to your browser Možete i kopirati-zalijepiti ovo {0} u svoj preglednik
4138 Address And Contacts Adresa i kontakti
4139 Lead Conversion Time Vrijeme konverzije vode
4140 Due Date Based On Due Date Based On
Phone Number Telefonski broj
4141 Linked Documents Povezani dokumenti
Account SID SID računa
4142 Steps Koraci
4143 email e-mail
4144 Component sastavni
4145 Subtitle Podnaslov
Global Defaults Globalne zadane postavke
4146 Prefix Prefiks
4147 Is Public Javno je
4148 This chart will be available to all Users if this is set Ako je postavljeno, ovaj će grafikon biti dostupan svim korisnicima
4329 Please create Card first Prvo kreirajte karticu
4330 Onboarding Permission Dozvola za ukrcavanje
4331 Onboarding Step Onboarding Step
Is Mandatory Je obavezna
4332 Is Skipped Preskočeno je
4333 Create Entry Napravite unos
4334 Update Settings Ažuriranje postavki
4366 Send Attachments Pošaljite priloge
4367 Testing Testiranje
4368 System Notification Obavijest o sistemu
WhatsApp WhatsApp
4369 Twilio Number Twilio Number
4370 To use WhatsApp for Business, initialize <a href="#Form/Twilio Settings">Twilio Settings</a>. Da biste koristili WhatsApp za posao, inicijalizirajte <a href="#Form/Twilio Settings">Twilio Settings</a> .
4371 To use Slack Channel, add a <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook URL</a>. Da biste koristili Slack Channel, dodajte <a href="#List/Slack%20Webhook%20URL/List">URL Slack Webhook-a</a> .
4500 {0} are currently {1} {0} su trenutno {1}
4501 Currently Replying Trenutno odgovaram
4502 created {0} kreirano {0}
Make a call Pozovite
4503 Change Promjena Coins
4504 Too Many Requests Previše zahtjeva
4505 Invalid Authorization headers, add a token with a prefix from one of the following: {0}. Nevažeća zaglavlja autorizacije, dodajte žeton s prefiksom jednog od sljedećeg: {0}.
4664 Negative Value Negativna vrijednost
4665 Authentication failed while receiving emails from Email Account: {0}. Autentifikacija nije uspjela tijekom primanja e-pošte s računa e-pošte: {0}.
4666 Message from server: {0} Poruka od servera: {0}
4667 Add Row Dodaj Row
4668 Analytics Analitika
4669 Anonymous Anonimno
4670 Author autor
4671 Basic Osnovni
4672 Billing Naplata
4673 Contact Details Kontakt podaci
4674 Datetime Datum i vrijeme
4675 Enable omogućiti
4676 Event Događaj
4677 Full Pun
4678 Insert Insert
4679 Interests Interesi
4680 Language Name Jezik
4681 License Licenca
4682 Limit granica
4683 Log Prijavite
4684 Meeting Sastanak
4685 My Account Moj račun
4686 Newsletters Newsletteri
4687 Password Lozinka
4688 Pincode Poštanski broj
4689 Please select prefix first Odaberite prefiks prvi
4690 Please set Email Address Molimo podesite e-mail adresa
4691 Please set the series to be used. Molimo postavite seriju koja će se koristiti.
4692 Portal Settings portal Postavke
4693 Reference Owner referentni Vlasnik
4694 Region Regija
4695 Report Builder Generator izvjestaja
4696 Sample Uzorak
4697 Saved Sačuvane
4698 Series {0} already used in {1} Serija {0} već koristi u {1}
4699 Set as Default Postavi kao podrazumjevano
4700 Shipping Transport
4701 Standard Standard
4702 Test Test
4703 Traceback Traceback
4704 Unable to find DocType {0} Nije moguće pronaći DocType {0}
4705 Weekdays Radnim danima
4706 Workflow Hodogram
4707 You need to be logged in to access this page Morate biti prijavljeni da pristupite ovoj stranici
4708 County okrug
4709 Images Slike
4710 Office Ured
4711 Passive Pasiva
4712 Permanent trajan
4713 Plant Biljka
4714 Postal Poštanski
4715 Previous prijašnji
4716 Shop Prodavnica
4717 Subsidiary Podružnica
4718 There is some problem with the file url: {0} Postoji neki problem sa URL datoteku: {0}
4719 Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0} Posebni znakovi osim &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; I &quot;}}&quot; nisu dozvoljeni u imenovanju serija {0}
4720 Export Type Tip izvoza
4721 Last Sync On Poslednja sinhronizacija uključena
4722 Webhook Secret Webhook Secret
4723 Back to Home Povratak na početnu
4724 Customize Prilagodite
4725 Edit Profile Uredi profil
4726 File Manager File Manager
4727 Invite as User Pozovi kao korisnika
4728 Newsletter Newsletter
4729 Printing Štampanje
4730 Publish Objavite
4731 Refreshing Osvežavajuće
4732 Select All Odaberite sve
4733 Set Set
4734 Setup Wizard Čarobnjak za postavljanje
4735 Update Details Ažurirajte detalje
4736 You Vi
4737 {0} Name {0} Ime
4738 Bold Hrabro
4739 Center Centar
4740 Comment Komentiraj
4741 Not Found Not found
4742 User Id Korisnički broj
4743 Position Pozicija
4744 Crop Rezati
4745 Topic tema
4746 Public Transport Javni prijevoz
4747 Request Data Zahtevajte podatke
4748 Steps Koraci
4749 Reference DocType Referenca DocType
4750 Select Transaction Odaberite transakciju
4751 Help HTML HTML pomoć
4752 Series List for this Transaction Serija Popis za ovu transakciju
4753 User must always select Korisničko uvijek mora odabrati
4754 Check this if you want to force the user to select a series before saving. There will be no default if you check this. Označite ovo ako želite prisiliti korisniku odabir seriju prije spremanja. Tu će biti zadana ako to provjerili.
4755 Prefix Prefiks
4756 This is the number of the last created transaction with this prefix To je broj zadnjeg stvorio transakcije s ovim prefiksom
4757 Update Series Number Update serije Broj
4758 Validation Error Pogreška provjere
4759 Andaman and Nicobar Islands Andamanska i Nikobarska ostrva
4760 Andhra Pradesh Andhra Pradesh
4761 Arunachal Pradesh Arunachal Pradesh
4762 Assam Assam
4763 Bihar Bihar
4764 Chandigarh Chandigarh
4765 Chhattisgarh Chhattisgarh
4766 Dadra and Nagar Haveli Dadra i Nagar Haveli
4767 Daman and Diu Daman i Diu
4768 Delhi Delhi
4769 Goa Goa
4770 Gujarat Gujarat
4771 Haryana Haryana
4772 Himachal Pradesh Himachal Pradesh
4773 Jammu and Kashmir Džamu i Kašmir
4774 Jharkhand Jharkhand
4775 Karnataka Karnataka
4776 Kerala Kerala
4777 Lakshadweep Islands Ostrva Lakshadweep
4778 Madhya Pradesh Madhya Pradesh
4779 Maharashtra Maharashtra
4780 Manipur Manipur
4781 Meghalaya Meghalaya
4782 Mizoram Mizoram
4783 Nagaland Nagaland
4784 Odisha Odisha
4785 Other Territory Ostala teritorija
4786 Pondicherry Pondicherry
4787 Punjab Punjab
4788 Rajasthan Rajasthan
4789 Sikkim Sikkim
4790 Tamil Nadu Tamil Nadu
4791 Telangana Telangana
4792 Tripura Tripura
4793 Uttar Pradesh Uttar Pradesh
4794 Uttarakhand Uttarakhand
4795 West Bengal Zapadni Bengal
4796 Published on Objavljeno
4797 Bottom Dno
4798 Top Vrh

View file

@ -9,7 +9,6 @@ Action,Acció,
Actions,Accions,
Active,Actiu,
Add,Afegir,
Add Comment,Afegir comentari,
Add Row,Afegir fila,
Address,Adreça,
Address Line 2,Adreça Línia 2,
@ -144,7 +143,6 @@ Monday,Dilluns,
Monthly,Mensual,
More,Més,
More Information,Més informació,
More...,Més ...,
Move,moviment,
My Account,El meu compte,
New Address,Nova adreça,
@ -157,7 +155,6 @@ No items found.,No sha trobat cap element.,
None,Cap,
Not Permitted,No permès,
Not active,No actiu,
Notes,Notes,
Number,Número,
Online,en línia,
Operation,Operació,
@ -167,17 +164,12 @@ Owner,Propietari,
Page Missing or Moved,Pàgina falta o traslladat,
Parameter,Paràmetre,
Password,Contrasenya,
Payment Gateway,Passarel·la de Pagament,
Payment Gateway Name,Nom de la passarel·la de pagament,
Payments,Pagaments,
Period,Període,
Pincode,Codi PIN,
Plan Name,Nom del pla,
Please enable pop-ups,"Si us plau, activa elements emergents",
Please select Company,Seleccioneu de l&#39;empresa,
Please select {0},Seleccioneu {0},
Please set Email Address,"Si us plau, estableix Adreça de correu electrònic",
Portal,Portal,
Portal Settings,Característiques del portal,
Preview,Preestrena,
Primary,Primari,
@ -222,7 +214,6 @@ Salutation,Salutació,
Sample,Mostra,
Saturday,Dissabte,
Saved,Saved,
Scan Barcode,Escanejar codi de barres,
Scheduled,Programat,
Search,Cerca,
Secret Key,clau secreta,
@ -237,7 +228,6 @@ Settings,Ajustos,
Shipping,Enviament,
Short Name,Nom curt,
Slideshow,Slideshow,
Some information is missing,falta informació,
Source,Font,
Source Name,font Nom,
Standard,Estàndard,
@ -247,7 +237,6 @@ State,Estat,
Stopped,Detingut,
Subject,Subjecte,
Submit,Presentar,
Successful,Èxit,
Summary,Resum,
Sunday,Diumenge,
System Manager,Administrador del sistema,
@ -260,11 +249,9 @@ The page you are looking for is missing. This could be because it is moved or th
Timespan,Lapse de temps,
To,A,
To Date,Fins La Data,
Tools,Instruments,
Traceback,Rastrejar,
URL,URL,
Unsubscribed,No subscriure,
Use Sandbox,ús Sandbox,
User,Usuari,
User ID,ID d'usuari,
Users,Usuaris,
@ -569,7 +556,6 @@ Bulk Delete,Suprimeix a granel,
Bulk Edit {0},Edita granel {0},
Bulk Rename,Bulk Rename,
Bulk Update,actualització massiva,
Busy,Ocupada,
Button,Botó,
Button Help,El botó d&#39;ajuda,
Button Label,Etiqueta de botó,
@ -706,7 +692,6 @@ Compiled Successfully,Recopilada amb èxit,
Complete By,Completat per,
Complete Registration,Completar el registre,
Complete Setup,Instal·lació completa,
Completed By,Completat amb,
Compose Email,redactar correu electrònic,
Condition Detail,Detall d&#39;estat,
Conditions,Condicions,
@ -1691,7 +1676,7 @@ Not a valid user,No és un usuari vàlid,
Not a zip file,No és un fitxer zip,
Not allowed for {0}: {1},No està permès per a {0}: {1},
"You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4}","No es permet accedir a {0} perquè està vinculat a {1} '{2}' a la fila {3}, camp {4}",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},"No es permet accedir a aquest registre {0} perquè està vinculat a {1} '{2}' al camp {3}",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},No es permet accedir a aquest registre {0} perquè està vinculat a {1} '{2}' al camp {3},
Not allowed to Import,No es permet importar,
Not allowed to change {0} after submission,No es pot canviar {0} després de ser presentat,
Not allowed to print cancelled documents,No es permet imprimir documents cancel·lats,
@ -1819,7 +1804,6 @@ Path to private Key File,Ruta al fitxer de clau privat,
PayPal Settings,Ajustos de PayPal,
PayPal payment gateway settings,configuració de la passarel·la de pagament de PayPal,
Payment Cancelled,pagament cancel·lat,
Payment Failed,Error en el pagament,
Payment Success,L&#39;èxit de pagament,
Pending Approval,Pendent d&#39;aprovació,
Pending Verification,Pendent de verificar,
@ -3216,7 +3200,6 @@ Click on the link below to approve the request,Feu clic a lenllaç següent p
Click on the lock icon to toggle public/private,Feu clic a la icona de bloqueig per alternar públic / privat,
Click on {0} to generate Refresh Token.,Feu clic a {0} per generar un token dactualització.,
Close Condition,Estat de tancament,
Column {0},Columna {0},
Columns / Fields,Columnes / Camps,
"Configure notifications for mentions, assignments, energy points and more.","Configureu les notificacions per a mencions, assignacions, punts d&#39;energia i molt més.",
Contact Email,Correu electrònic de contacte,
@ -3298,7 +3281,6 @@ Failed to create an Event Consumer or an Event Consumer for the current site is
Failure,Fracàs,
Fetching default Global Search documents.,Obtenció de documents de cerca global per defecte.,
Fetching posts...,S&#39;obtenen publicacions ...,
Field Mapping,Cartografia de camp,
Field To Check,Camp per comprovar,
File Information,Informació del fitxer,
Filter By,Filtra per,
@ -3453,7 +3435,6 @@ No posts yet,No hi ha publicacions,
No records will be exported,No sexportaran registres,
No results found for {0} in Global Search,No s&#39;han trobat resultats per a {0} a la cerca global,
No user found,No s&#39;ha trobat cap usuari,
Not Specified,Sense especificar,
Notification Log,Registre de notificacions,
Notification Settings,Configuració de notificació,
Notification Subscribed Document,Notificació Document subscrit,
@ -3609,7 +3590,6 @@ Untitled Column,Columna sense títol,
Untranslated,Sense traduir,
Upcoming Events,Pròxims esdeveniments,
Update Existing Records,Actualitzar els registres existents,
Update Type,Tipus dactualització,
Updated To A New Version 🎉,S&#39;ha actualitzat a una nova versió 🎉,
"Updating {0} of {1}, {2}","Actualitzant {0} de {1}, {2}",
Upload file,Penja el document,
@ -3716,19 +3696,16 @@ Designation,Designació,
Disabled,Deshabilitat,
Doctype,DocType,
Download Template,Descarregar plantilla,
Dr,Dr,
Due Date,Data De Venciment,
Duplicate,Duplicar,
Edit Profile,Edita el perfil,
Email,Correu electrònic,
End Time,Hora de finalització,
Enter Value,Introduir valor,
Entity Type,Tipus d&#39;entitat,
Error,Error,
Expired,Caducat,
Export,Exportació,
Export not allowed. You need {0} role to export.,No es pot exportar. Cal el rol {0} per a exportar.,
Fetching...,S&#39;obté ...,
Field,camp,
File Manager,Gestor de fitxers,
Filters,Filtres,
@ -3743,11 +3720,8 @@ Import Data from CSV / Excel files.,Importar dades des de fitxers CSV / Excel.,
In Progress,En progrés,
Intermediate,intermedi,
Invite as User,Convida com usuari,
"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Sembla que hi ha un problema amb la configuració de la xarxa del servidor. En cas de fracàs, l&#39;import es reemborsarà al vostre compte.",
Loading...,Carregant ...,
Location,Ubicació,
Looks like someone sent you to an incomplete URL. Please ask them to look into it.,"Sembla que algú li va enviar a un URL incompleta. Si us plau, demanar-los que mirar-hi.",
Master,Mestre,
Message,Missatge,
Missing Values Required,Camps Obligatoris,
Mobile No,Número de Mòbil,
@ -3759,7 +3733,6 @@ Note,Nota,
Offline,desconnectat,
Open,Obert,
Page {0} of {1},Pàgina {0} de {1},
Pay,Pagar,
Pending,Pendent,
Phone,Telèfon,
Please click on the following link to set your new password,"Si us plau, feu clic al següent enllaç per configurar la nova contrasenya",
@ -3809,7 +3782,6 @@ Welcome to {0},Benvingut a {0},
Year,Any,
Yearly,Anual,
You,Vostè,
You can also copy-paste this link in your browser,També podeu copiar i enganxar aquest enllaç al teu navegador,
and,i,
{0} Name,{0} Nom,
{0} is required,{0} és necessari,
@ -4113,7 +4085,6 @@ Custom SCSS,SCSS personalitzat,
Navbar,Barra de navegació,
Source Message,Missatge font,
Translated Message,Missatge traduït,
Verified By,Verified Per,
Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand.,L&#39;ús d&#39;aquesta consola pot permetre que els atacants us supliquin la identitat i us robin la informació. No introduïu ni enganxeu codi que no entengueu.,
{0} m,{0} m,
{0} h,{0} h,
@ -4146,7 +4117,6 @@ Collapse,Replega,
{0} is not a valid Name,{0} no és un nom vàlid,
Your system is being updated. Please refresh again after a few moments.,El vostre sistema s&#39;està actualitzant. Actualitzeu de nou després duns instants.,
{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first.,{0} {1}: el registre enviat no es pot suprimir. Primer heu de {2} cancel·lar-la {3}.,
Invalid naming series (. missing) for {0},Sèrie de noms no vàlida (. Falta) per a {0},
Error has occurred in {0},S&#39;ha produït un error a {0},
Status Updated,Estat actualitzat,
You can also copy-paste this {0} to your browser,També podeu copiar-enganxar {0} al vostre navegador,
@ -4168,14 +4138,11 @@ Is Billing Contact,És el contacte de facturació,
Address And Contacts,Adreça i contactes,
Lead Conversion Time,Temps de conversió del plom,
Due Date Based On,Data de venciment basada,
Phone Number,Número de telèfon,
Linked Documents,Documents enllaçats,
Account SID,Compte SID,
Steps,Passos,
email,correu electrònic,
Component,component,
Subtitle,Subtítol,
Global Defaults,Valors per defecte globals,
Prefix,Prefix,
Is Public,És públic,
This chart will be available to all Users if this is set,Aquest gràfic estarà disponible per a tots els usuaris si està establert,
@ -4362,7 +4329,6 @@ Dynamic Filters Section,Secció de filtres dinàmics,
Please create Card first,"En primer lloc, creeu la targeta",
Onboarding Permission,Permís d&#39;incorporació,
Onboarding Step,Pas dincorporació,
Is Mandatory,És obligatori,
Is Skipped,S&#39;omet,
Create Entry,Crea una entrada,
Update Settings,Actualitza la configuració,
@ -4400,7 +4366,6 @@ Message (HTML),Missatge (HTML),
Send Attachments,Envia fitxers adjunts,
Testing,Proves,
System Notification,Notificació del sistema,
WhatsApp,Què tal,
Twilio Number,Número Twilio,
"To use WhatsApp for Business, initialize <a href=""#Form/Twilio Settings"">Twilio Settings</a>.","Per utilitzar WhatsApp per a empreses, inicialitzeu la <a href=""#Form/Twilio Settings"">configuració de Twilio</a> .",
"To use Slack Channel, add a <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL</a>.","Per utilitzar Slack Channel, afegiu un <a href=""#List/Slack%20Webhook%20URL/List"">URL de Slack Webhook</a> .",
@ -4535,7 +4500,6 @@ Add to ToDo,Afegeix a ToDo,
{0} are currently {1},{0} actualment són {1},
Currently Replying,Actualment respon,
created {0},creat {0},
Make a call,Fer una trucada,
Change,Canvi,Coins
Too Many Requests,Hi ha massa sol·licituds,
"Invalid Authorization headers, add a token with a prefix from one of the following: {0}.",Les capçaleres d&#39;autorització no són vàlides; afegiu un testimoni amb un prefix d&#39;un dels següents: {0}.,
@ -4700,3 +4664,135 @@ Value cannot be negative for {0}: {1},El valor no pot ser negatiu per a {0}: {1}
Negative Value,Valor negatiu,
Authentication failed while receiving emails from Email Account: {0}.,L&#39;autenticació ha fallat en rebre correus electrònics del compte de correu electrònic: {0}.,
Message from server: {0},Missatge del servidor: {0},
Add Row,Afegir fila,
Analytics,analítica,
Anonymous,Anònim,
Author,autor,
Basic,Bàsic,
Billing,Facturació,
Contact Details,Detalls de contacte,
Datetime,Data i hora,
Enable,Permetre,
Event,Esdeveniment,
Full,Complet,
Insert,Insereix,
Interests,interessos,
Language Name,Nom d&#39;idioma,
License,Llicència,
Limit,límit,
Log,Sessió,
Meeting,Reunió,
My Account,El meu compte,
Newsletters,Butlletins,
Password,Contrasenya,
Pincode,Codi PIN,
Please select prefix first,Seleccioneu el prefix primer,
Please set Email Address,"Si us plau, estableix Adreça de correu electrònic",
Please set the series to be used.,Estableix la sèrie a utilitzar.,
Portal Settings,Característiques del portal,
Reference Owner,referència propietari,
Region,Regió,
Report Builder,Generador d'informes,
Sample,Mostra,
Saved,Saved,
Series {0} already used in {1},La sèrie {0} ja s'utilitza a {1},
Set as Default,Estableix com a predeterminat,
Shipping,Enviament,
Standard,Estàndard,
Test,Prova,
Traceback,Rastrejar,
Unable to find DocType {0},No es pot trobar DocType {0},
Weekdays,Dies laborables,
Workflow,Workflow,
You need to be logged in to access this page,Ha d&#39;estar registrat per accedir a aquesta pàgina,
County,comtat,
Images,imatges,
Office,Oficina,
Passive,Passiu,
Permanent,permanent,
Plant,Planta,
Postal,Postal,
Previous,Anterior,
Shop,Botiga,
Subsidiary,Filial,
There is some problem with the file url: {0},Hi ha una mica de problema amb la url de l&#39;arxiu: {0},
"Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}","Caràcters especials, excepte &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; I &quot;}}&quot; no estan permesos en nomenar sèries {0}",
Export Type,Tipus d&#39;exportació,
Last Sync On,Última sincronització activada,
Webhook Secret,Secret del webhook,
Back to Home,De tornada a casa,
Customize,Personalitza,
Edit Profile,Edita el perfil,
File Manager,Gestor de fitxers,
Invite as User,Convida com usuari,
Newsletter,Newsletter,
Printing,Impressió,
Publish,Publica,
Refreshing,Refrescant,
Select All,Selecciona tot,
Set,Setembre,
Setup Wizard,Assistent de configuració,
Update Details,Detalls dactualització,
You,Vostè,
{0} Name,{0} Nom,
Bold,Negre,
Center,Centre,
Comment,Comentar,
Not Found,Extraviat,
User Id,ID d&#39;usuari,
Position,Posició,
Crop,Cultiu,
Topic,tema,
Public Transport,Transport públic,
Request Data,Sol·licitud de dades,
Steps,Passos,
Reference DocType,DocType de referència,
Select Transaction,Seleccionar Transacció,
Help HTML,Ajuda HTML,
Series List for this Transaction,Llista de Sèries per a aquesta transacció,
User must always select,Usuari sempre ha de seleccionar,
Check this if you want to force the user to select a series before saving. There will be no default if you check this.,Seleccioneu aquesta opció si voleu obligar l'usuari a seleccionar una sèrie abans de desar. No hi haurà cap valor per defecte si marca aquesta.,
Prefix,Prefix,
This is the number of the last created transaction with this prefix,Aquest és el nombre de l'última transacció creat amb aquest prefix,
Update Series Number,Actualització Nombre Sèries,
Validation Error,Error de validació,
Andaman and Nicobar Islands,Illes Andaman i Nicobar,
Andhra Pradesh,Andhra Pradesh,
Arunachal Pradesh,Arunachal Pradesh,
Assam,Assam,
Bihar,Bihar,
Chandigarh,Chandigarh,
Chhattisgarh,Chhattisgarh,
Dadra and Nagar Haveli,Dadra i Nagar Haveli,
Daman and Diu,Daman i Diu,
Delhi,Delhi,
Goa,Goa,
Gujarat,Gujarat,
Haryana,Hariana,
Himachal Pradesh,Himachal Pradesh,
Jammu and Kashmir,Jammu i Caixmir,
Jharkhand,Jharkhand,
Karnataka,Karnataka,
Kerala,Kerala,
Lakshadweep Islands,Illes Lakshadweep,
Madhya Pradesh,Madhya Pradesh,
Maharashtra,Maharashtra,
Manipur,Manipur,
Meghalaya,Meghalaya,
Mizoram,Mizoram,
Nagaland,Nagaland,
Odisha,Odisha,
Other Territory,Un altre territori,
Pondicherry,Pondicherry,
Punjab,Punjab,
Rajasthan,Rajasthan,
Sikkim,Sikkim,
Tamil Nadu,Tamil Nadu,
Telangana,Telangana,
Tripura,Tripura,
Uttar Pradesh,Uttar Pradesh,
Uttarakhand,Uttarakhand,
West Bengal,Bengala Occidental,
Published on,Publicat el,
Bottom,Part inferior,
Top,Superior,

1 A4 A4
9 Actions Accions
10 Active Actiu
11 Add Afegir
Add Comment Afegir comentari
12 Add Row Afegir fila
13 Address Adreça
14 Address Line 2 Adreça Línia 2
143 Monthly Mensual
144 More Més
145 More Information Més informació
More... Més ...
146 Move moviment
147 My Account El meu compte
148 New Address Nova adreça
155 None Cap
156 Not Permitted No permès
157 Not active No actiu
Notes Notes
158 Number Número
159 Online en línia
160 Operation Operació
164 Page Missing or Moved Pàgina falta o traslladat
165 Parameter Paràmetre
166 Password Contrasenya
Payment Gateway Passarel·la de Pagament
Payment Gateway Name Nom de la passarel·la de pagament
Payments Pagaments
167 Period Període
168 Pincode Codi PIN
Plan Name Nom del pla
169 Please enable pop-ups Si us plau, activa elements emergents
170 Please select Company Seleccioneu de l&#39;empresa
171 Please select {0} Seleccioneu {0}
172 Please set Email Address Si us plau, estableix Adreça de correu electrònic
Portal Portal
173 Portal Settings Característiques del portal
174 Preview Preestrena
175 Primary Primari
214 Sample Mostra
215 Saturday Dissabte
216 Saved Saved
Scan Barcode Escanejar codi de barres
217 Scheduled Programat
218 Search Cerca
219 Secret Key clau secreta
228 Shipping Enviament
229 Short Name Nom curt
230 Slideshow Slideshow
Some information is missing falta informació
231 Source Font
232 Source Name font Nom
233 Standard Estàndard
237 Stopped Detingut
238 Subject Subjecte
239 Submit Presentar
Successful Èxit
240 Summary Resum
241 Sunday Diumenge
242 System Manager Administrador del sistema
249 Timespan Lapse de temps
250 To A
251 To Date Fins La Data
Tools Instruments
252 Traceback Rastrejar
253 URL URL
254 Unsubscribed No subscriure
Use Sandbox ús Sandbox
255 User Usuari
256 User ID ID d'usuari
257 Users Usuaris
556 Bulk Edit {0} Edita granel {0}
557 Bulk Rename Bulk Rename
558 Bulk Update actualització massiva
Busy Ocupada
559 Button Botó
560 Button Help El botó d&#39;ajuda
561 Button Label Etiqueta de botó
692 Complete By Completat per
693 Complete Registration Completar el registre
694 Complete Setup Instal·lació completa
Completed By Completat amb
695 Compose Email redactar correu electrònic
696 Condition Detail Detall d&#39;estat
697 Conditions Condicions
1676 Not a zip file No és un fitxer zip
1677 Not allowed for {0}: {1} No està permès per a {0}: {1}
1678 You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4} No es permet accedir a {0} perquè està vinculat a {1} '{2}' a la fila {3}, camp {4}
1679 You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3} No es permet accedir a aquest registre {0} perquè està vinculat a {1} '{2}' al camp {3}
1680 Not allowed to Import No es permet importar
1681 Not allowed to change {0} after submission No es pot canviar {0} després de ser presentat
1682 Not allowed to print cancelled documents No es permet imprimir documents cancel·lats
1804 PayPal Settings Ajustos de PayPal
1805 PayPal payment gateway settings configuració de la passarel·la de pagament de PayPal
1806 Payment Cancelled pagament cancel·lat
Payment Failed Error en el pagament
1807 Payment Success L&#39;èxit de pagament
1808 Pending Approval Pendent d&#39;aprovació
1809 Pending Verification Pendent de verificar
3200 Click on the lock icon to toggle public/private Feu clic a la icona de bloqueig per alternar públic / privat
3201 Click on {0} to generate Refresh Token. Feu clic a {0} per generar un token d’actualització.
3202 Close Condition Estat de tancament
Column {0} Columna {0}
3203 Columns / Fields Columnes / Camps
3204 Configure notifications for mentions, assignments, energy points and more. Configureu les notificacions per a mencions, assignacions, punts d&#39;energia i molt més.
3205 Contact Email Correu electrònic de contacte
3281 Failure Fracàs
3282 Fetching default Global Search documents. Obtenció de documents de cerca global per defecte.
3283 Fetching posts... S&#39;obtenen publicacions ...
Field Mapping Cartografia de camp
3284 Field To Check Camp per comprovar
3285 File Information Informació del fitxer
3286 Filter By Filtra per
3435 No records will be exported No s’exportaran registres
3436 No results found for {0} in Global Search No s&#39;han trobat resultats per a {0} a la cerca global
3437 No user found No s&#39;ha trobat cap usuari
Not Specified Sense especificar
3438 Notification Log Registre de notificacions
3439 Notification Settings Configuració de notificació
3440 Notification Subscribed Document Notificació Document subscrit
3590 Untranslated Sense traduir
3591 Upcoming Events Pròxims esdeveniments
3592 Update Existing Records Actualitzar els registres existents
Update Type Tipus d’actualització
3593 Updated To A New Version 🎉 S&#39;ha actualitzat a una nova versió 🎉
3594 Updating {0} of {1}, {2} Actualitzant {0} de {1}, {2}
3595 Upload file Penja el document
3696 Disabled Deshabilitat
3697 Doctype DocType
3698 Download Template Descarregar plantilla
Dr Dr
3699 Due Date Data De Venciment
3700 Duplicate Duplicar
3701 Edit Profile Edita el perfil
3702 Email Correu electrònic
End Time Hora de finalització
3703 Enter Value Introduir valor
3704 Entity Type Tipus d&#39;entitat
3705 Error Error
3706 Expired Caducat
3707 Export Exportació
3708 Export not allowed. You need {0} role to export. No es pot exportar. Cal el rol {0} per a exportar.
Fetching... S&#39;obté ...
3709 Field camp
3710 File Manager Gestor de fitxers
3711 Filters Filtres
3720 In Progress En progrés
3721 Intermediate intermedi
3722 Invite as User Convida com usuari
It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account. Sembla que hi ha un problema amb la configuració de la xarxa del servidor. En cas de fracàs, l&#39;import es reemborsarà al vostre compte.
3723 Loading... Carregant ...
3724 Location Ubicació
Looks like someone sent you to an incomplete URL. Please ask them to look into it. Sembla que algú li va enviar a un URL incompleta. Si us plau, demanar-los que mirar-hi.
Master Mestre
3725 Message Missatge
3726 Missing Values Required Camps Obligatoris
3727 Mobile No Número de Mòbil
3733 Offline desconnectat
3734 Open Obert
3735 Page {0} of {1} Pàgina {0} de {1}
Pay Pagar
3736 Pending Pendent
3737 Phone Telèfon
3738 Please click on the following link to set your new password Si us plau, feu clic al següent enllaç per configurar la nova contrasenya
3782 Year Any
3783 Yearly Anual
3784 You Vostè
You can also copy-paste this link in your browser També podeu copiar i enganxar aquest enllaç al teu navegador
3785 and i
3786 {0} Name {0} Nom
3787 {0} is required {0} és necessari
4085 Navbar Barra de navegació
4086 Source Message Missatge font
4087 Translated Message Missatge traduït
Verified By Verified Per
4088 Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand. L&#39;ús d&#39;aquesta consola pot permetre que els atacants us supliquin la identitat i us robin la informació. No introduïu ni enganxeu codi que no entengueu.
4089 {0} m {0} m
4090 {0} h {0} h
4117 {0} is not a valid Name {0} no és un nom vàlid
4118 Your system is being updated. Please refresh again after a few moments. El vostre sistema s&#39;està actualitzant. Actualitzeu de nou després d’uns instants.
4119 {0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first. {0} {1}: el registre enviat no es pot suprimir. Primer heu de {2} cancel·lar-la {3}.
Invalid naming series (. missing) for {0} Sèrie de noms no vàlida (. Falta) per a {0}
4120 Error has occurred in {0} S&#39;ha produït un error a {0}
4121 Status Updated Estat actualitzat
4122 You can also copy-paste this {0} to your browser També podeu copiar-enganxar {0} al vostre navegador
4138 Address And Contacts Adreça i contactes
4139 Lead Conversion Time Temps de conversió del plom
4140 Due Date Based On Data de venciment basada
Phone Number Número de telèfon
4141 Linked Documents Documents enllaçats
Account SID Compte SID
4142 Steps Passos
4143 email correu electrònic
4144 Component component
4145 Subtitle Subtítol
Global Defaults Valors per defecte globals
4146 Prefix Prefix
4147 Is Public És públic
4148 This chart will be available to all Users if this is set Aquest gràfic estarà disponible per a tots els usuaris si està establert
4329 Please create Card first En primer lloc, creeu la targeta
4330 Onboarding Permission Permís d&#39;incorporació
4331 Onboarding Step Pas d’incorporació
Is Mandatory És obligatori
4332 Is Skipped S&#39;omet
4333 Create Entry Crea una entrada
4334 Update Settings Actualitza la configuració
4366 Send Attachments Envia fitxers adjunts
4367 Testing Proves
4368 System Notification Notificació del sistema
WhatsApp Què tal
4369 Twilio Number Número Twilio
4370 To use WhatsApp for Business, initialize <a href="#Form/Twilio Settings">Twilio Settings</a>. Per utilitzar WhatsApp per a empreses, inicialitzeu la <a href="#Form/Twilio Settings">configuració de Twilio</a> .
4371 To use Slack Channel, add a <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook URL</a>. Per utilitzar Slack Channel, afegiu un <a href="#List/Slack%20Webhook%20URL/List">URL de Slack Webhook</a> .
4500 {0} are currently {1} {0} actualment són {1}
4501 Currently Replying Actualment respon
4502 created {0} creat {0}
Make a call Fer una trucada
4503 Change Canvi Coins
4504 Too Many Requests Hi ha massa sol·licituds
4505 Invalid Authorization headers, add a token with a prefix from one of the following: {0}. Les capçaleres d&#39;autorització no són vàlides; afegiu un testimoni amb un prefix d&#39;un dels següents: {0}.
4664 Negative Value Valor negatiu
4665 Authentication failed while receiving emails from Email Account: {0}. L&#39;autenticació ha fallat en rebre correus electrònics del compte de correu electrònic: {0}.
4666 Message from server: {0} Missatge del servidor: {0}
4667 Add Row Afegir fila
4668 Analytics analítica
4669 Anonymous Anònim
4670 Author autor
4671 Basic Bàsic
4672 Billing Facturació
4673 Contact Details Detalls de contacte
4674 Datetime Data i hora
4675 Enable Permetre
4676 Event Esdeveniment
4677 Full Complet
4678 Insert Insereix
4679 Interests interessos
4680 Language Name Nom d&#39;idioma
4681 License Llicència
4682 Limit límit
4683 Log Sessió
4684 Meeting Reunió
4685 My Account El meu compte
4686 Newsletters Butlletins
4687 Password Contrasenya
4688 Pincode Codi PIN
4689 Please select prefix first Seleccioneu el prefix primer
4690 Please set Email Address Si us plau, estableix Adreça de correu electrònic
4691 Please set the series to be used. Estableix la sèrie a utilitzar.
4692 Portal Settings Característiques del portal
4693 Reference Owner referència propietari
4694 Region Regió
4695 Report Builder Generador d'informes
4696 Sample Mostra
4697 Saved Saved
4698 Series {0} already used in {1} La sèrie {0} ja s'utilitza a {1}
4699 Set as Default Estableix com a predeterminat
4700 Shipping Enviament
4701 Standard Estàndard
4702 Test Prova
4703 Traceback Rastrejar
4704 Unable to find DocType {0} No es pot trobar DocType {0}
4705 Weekdays Dies laborables
4706 Workflow Workflow
4707 You need to be logged in to access this page Ha d&#39;estar registrat per accedir a aquesta pàgina
4708 County comtat
4709 Images imatges
4710 Office Oficina
4711 Passive Passiu
4712 Permanent permanent
4713 Plant Planta
4714 Postal Postal
4715 Previous Anterior
4716 Shop Botiga
4717 Subsidiary Filial
4718 There is some problem with the file url: {0} Hi ha una mica de problema amb la url de l&#39;arxiu: {0}
4719 Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0} Caràcters especials, excepte &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; I &quot;}}&quot; no estan permesos en nomenar sèries {0}
4720 Export Type Tipus d&#39;exportació
4721 Last Sync On Última sincronització activada
4722 Webhook Secret Secret del webhook
4723 Back to Home De tornada a casa
4724 Customize Personalitza
4725 Edit Profile Edita el perfil
4726 File Manager Gestor de fitxers
4727 Invite as User Convida com usuari
4728 Newsletter Newsletter
4729 Printing Impressió
4730 Publish Publica
4731 Refreshing Refrescant
4732 Select All Selecciona tot
4733 Set Setembre
4734 Setup Wizard Assistent de configuració
4735 Update Details Detalls d’actualització
4736 You Vostè
4737 {0} Name {0} Nom
4738 Bold Negre
4739 Center Centre
4740 Comment Comentar
4741 Not Found Extraviat
4742 User Id ID d&#39;usuari
4743 Position Posició
4744 Crop Cultiu
4745 Topic tema
4746 Public Transport Transport públic
4747 Request Data Sol·licitud de dades
4748 Steps Passos
4749 Reference DocType DocType de referència
4750 Select Transaction Seleccionar Transacció
4751 Help HTML Ajuda HTML
4752 Series List for this Transaction Llista de Sèries per a aquesta transacció
4753 User must always select Usuari sempre ha de seleccionar
4754 Check this if you want to force the user to select a series before saving. There will be no default if you check this. Seleccioneu aquesta opció si voleu obligar l'usuari a seleccionar una sèrie abans de desar. No hi haurà cap valor per defecte si marca aquesta.
4755 Prefix Prefix
4756 This is the number of the last created transaction with this prefix Aquest és el nombre de l'última transacció creat amb aquest prefix
4757 Update Series Number Actualització Nombre Sèries
4758 Validation Error Error de validació
4759 Andaman and Nicobar Islands Illes Andaman i Nicobar
4760 Andhra Pradesh Andhra Pradesh
4761 Arunachal Pradesh Arunachal Pradesh
4762 Assam Assam
4763 Bihar Bihar
4764 Chandigarh Chandigarh
4765 Chhattisgarh Chhattisgarh
4766 Dadra and Nagar Haveli Dadra i Nagar Haveli
4767 Daman and Diu Daman i Diu
4768 Delhi Delhi
4769 Goa Goa
4770 Gujarat Gujarat
4771 Haryana Hariana
4772 Himachal Pradesh Himachal Pradesh
4773 Jammu and Kashmir Jammu i Caixmir
4774 Jharkhand Jharkhand
4775 Karnataka Karnataka
4776 Kerala Kerala
4777 Lakshadweep Islands Illes Lakshadweep
4778 Madhya Pradesh Madhya Pradesh
4779 Maharashtra Maharashtra
4780 Manipur Manipur
4781 Meghalaya Meghalaya
4782 Mizoram Mizoram
4783 Nagaland Nagaland
4784 Odisha Odisha
4785 Other Territory Un altre territori
4786 Pondicherry Pondicherry
4787 Punjab Punjab
4788 Rajasthan Rajasthan
4789 Sikkim Sikkim
4790 Tamil Nadu Tamil Nadu
4791 Telangana Telangana
4792 Tripura Tripura
4793 Uttar Pradesh Uttar Pradesh
4794 Uttarakhand Uttarakhand
4795 West Bengal Bengala Occidental
4796 Published on Publicat el
4797 Bottom Part inferior
4798 Top Superior

View file

@ -9,7 +9,6 @@ Action,Akce,
Actions,Akce,
Active,Aktivní,
Add,Přidat,
Add Comment,Přidat komentář,
Add Row,Přidat řádek,
Address,Adresa,
Address Line 2,Adresní řádek 2,
@ -144,7 +143,6 @@ Monday,Pondělí,
Monthly,Měsíčně,
More,Více,
More Information,Víc informací,
More...,Více...,
Move,Stěhovat,
My Account,Můj Účet,
New Address,Nová adresa,
@ -157,7 +155,6 @@ No items found.,Žádné předměty nenalezeny.,
None,Žádný,
Not Permitted,Není povoleno,
Not active,Neaktivní,
Notes,Poznámky,
Number,Číslo,
Online,Online,
Operation,Operace,
@ -167,17 +164,12 @@ Owner,Majitel,
Page Missing or Moved,Stránka chybí nebo byla přesunuta,
Parameter,Parametr,
Password,Heslo,
Payment Gateway,Platební brána,
Payment Gateway Name,Název platební brány,
Payments,Platby,
Period,Období,
Pincode,PSČ,
Plan Name,Název plánu,
Please enable pop-ups,Prosím povolte vyskakovací okna,
Please select Company,"Prosím, vyberte Company",
Please select {0},"Prosím, vyberte {0}",
Please set Email Address,Prosím nastavte e-mailovou adresu,
Portal,Portál,
Portal Settings,Portál Nastavení,
Preview,Preview,
Primary,Primární,
@ -222,7 +214,6 @@ Salutation,Oslovení,
Sample,Vzorek,
Saturday,Sobota,
Saved,Uloženo,
Scan Barcode,Naskenujte čárový kód,
Scheduled,Plánované,
Search,Hledat,
Secret Key,Tajný klíč,
@ -237,7 +228,6 @@ Settings,Nastavení,
Shipping,Doprava,
Short Name,Zkrácené jméno,
Slideshow,Promítání obrázků,
Some information is missing,Některé informace chybí,
Source,Zdroj,
Source Name,Název zdroje,
Standard,Standard,
@ -247,7 +237,6 @@ State,Stát,
Stopped,Zastaveno,
Subject,Předmět,
Submit,Odeslat,
Successful,Úspěšný,
Summary,souhrn,
Sunday,Neděle,
System Manager,Správce systému,
@ -260,11 +249,9 @@ The page you are looking for is missing. This could be because it is moved or th
Timespan,Časové rozpětí,
To,Na,
To Date,To Date,
Tools,Nástroje,
Traceback,Vystopovat,
URL,URL,
Unsubscribed,Odhlášen z odběru,
Use Sandbox,použití Sandbox,
User,Uživatel,
User ID,User ID,
Users,Uživatelé,
@ -569,7 +556,6 @@ Bulk Delete,Hromadné odstranění,
Bulk Edit {0},Hromadná Upravit {0},
Bulk Rename,Hromadné přejmenování,
Bulk Update,Hromadná aktualizace,
Busy,Zaneprázdněný,
Button,Tlačítko,
Button Help,tlačítko Nápověda,
Button Label,tlačítko Label,
@ -706,7 +692,6 @@ Compiled Successfully,Kompilace úspěšně,
Complete By,Splnit do,
Complete Registration,Dokončit registraci,
Complete Setup,Kompletní nastavení,
Completed By,Dokončeno,
Compose Email,skládat e-mail,
Condition Detail,Podrobnosti o stavu,
Conditions,Podmínky,
@ -1819,7 +1804,6 @@ Path to private Key File,Cesta k souboru soukromého klíče,
PayPal Settings,Nastavení PayPal,
PayPal payment gateway settings,PayPal nastavení platební brána,
Payment Cancelled,platba byla zrušena,
Payment Failed,Platba selhala,
Payment Success,platba Úspěch,
Pending Approval,Čeká na schválení,
Pending Verification,Čeká na ověření,
@ -3216,7 +3200,6 @@ Click on the link below to approve the request,Kliknutím na níže uvedený odk
Click on the lock icon to toggle public/private,Klepnutím na ikonu zámku přepnete mezi veřejným / soukromým,
Click on {0} to generate Refresh Token.,Kliknutím na {0} vygenerujete Refresh Token.,
Close Condition,Zavřít podmínku,
Column {0},Sloupec {0},
Columns / Fields,Sloupce / pole,
"Configure notifications for mentions, assignments, energy points and more.","Nakonfigurujte oznámení pro zmínky, přiřazení, energetické body a další.",
Contact Email,Kontaktní e-mail,
@ -3298,7 +3281,6 @@ Failed to create an Event Consumer or an Event Consumer for the current site is
Failure,Selhání,
Fetching default Global Search documents.,Načítání výchozích dokumentů globálního vyhledávání.,
Fetching posts...,Načítání příspěvků ...,
Field Mapping,Polní mapování,
Field To Check,Pole ke kontrole,
File Information,Informace o souboru,
Filter By,Filtrovat podle,
@ -3453,7 +3435,6 @@ No posts yet,Zatím žádné příspěvky,
No records will be exported,Žádné záznamy nebudou exportovány,
No results found for {0} in Global Search,Pro globální vyhledávání nebyly nalezeny žádné výsledky pro {0},
No user found,Nebyl nalezen žádný uživatel,
Not Specified,Nespecifikováno,
Notification Log,Protokol oznámení,
Notification Settings,Nastavení upozornění,
Notification Subscribed Document,Dokument předplatného oznámení,
@ -3609,7 +3590,6 @@ Untitled Column,Sloupec bez názvu,
Untranslated,Nepřekládaný,
Upcoming Events,Připravované akce,
Update Existing Records,Aktualizace existujících záznamů,
Update Type,Typ aktualizace,
Updated To A New Version 🎉,Aktualizováno na novou verzi 🎉,
"Updating {0} of {1}, {2}","Aktualizace {0} z {1}, {2}",
Upload file,Nahrát soubor,
@ -3716,19 +3696,16 @@ Designation,Označení,
Disabled,Vypnuto,
Doctype,Doctype,
Download Template,Stáhnout šablonu,
Dr,Dr,
Due Date,Datum splatnosti,
Duplicate,Duplikát,
Edit Profile,Editovat profil,
Email,E-mailem,
End Time,End Time,
Enter Value,Zadejte hodnotu,
Entity Type,Typ entity,
Error,Chyba,
Expired,Vypršela,
Export,Exportovat,
Export not allowed. You need {0} role to export.,Export není povolen. Potřebujete roli {0} pro exportování.,
Fetching...,Okouzlující...,
Field,Pole,
File Manager,Správce souborů,
Filters,Filtry,
@ -3743,11 +3720,8 @@ Import Data from CSV / Excel files.,Import dat z souborů CSV / Excel.,
In Progress,Pokrok,
Intermediate,přechodný,
Invite as User,Pozvat jako Uživatel,
"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Zdá se, že je problém s konfigurací proužku serveru. V případě selhání bude částka vrácena na váš účet.",
Loading...,Nahrávám...,
Location,Místo,
Looks like someone sent you to an incomplete URL. Please ask them to look into it.,"Vypadá to, že vám někdo zaslal neúplnémý URL. Požádejte ho, aby to zkontroloval.",
Master,Hlavní,
Message,Zpráva,
Missing Values Required,Chybějící hodnoty vyžadovány,
Mobile No,Mobile No,
@ -3759,7 +3733,6 @@ Note,Poznámka,
Offline,Offline,
Open,Otevřít,
Page {0} of {1},Strana {0} z {1},
Pay,Zaplatit,
Pending,Až do,
Phone,Telefon,
Please click on the following link to set your new password,"Prosím klikněte na následující odkaz, pro nastavení nového hesla",
@ -3809,7 +3782,6 @@ Welcome to {0},Vítejte v {0},
Year,Rok,
Yearly,Ročně,
You,Vy,
You can also copy-paste this link in your browser,Můžete také kopírovat - vložit tento odkaz do Vašeho prohlížeče,
and,a,
{0} Name,{0} Name,
{0} is required,{0} je vyžadováno,
@ -4113,7 +4085,6 @@ Custom SCSS,Vlastní SCSS,
Navbar,Navbar,
Source Message,Zdrojová zpráva,
Translated Message,Přeložená zpráva,
Verified By,Verified By,
Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand.,"Používání této konzoly může útočníkům umožnit vydávat se za vás a ukrást vaše informace. Nezadávejte ani nevkládejte kód, kterému nerozumíte.",
{0} m,{0} m,
{0} h,{0} h,
@ -4146,7 +4117,6 @@ Collapse,Kolaps,
{0} is not a valid Name,{0} není platné jméno,
Your system is being updated. Please refresh again after a few moments.,Váš systém se aktualizuje. Po několika okamžicích znovu obnovte.,
{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first.,{0} {1}: Odeslaný záznam nelze smazat. Nejprve to musíte {2} zrušit {3}.,
Invalid naming series (. missing) for {0},Neplatná pojmenovací řada (. Chybí) pro {0},
Error has occurred in {0},Došlo k chybě v {0},
Status Updated,Stav aktualizován,
You can also copy-paste this {0} to your browser,Toto {0} můžete také zkopírovat a vložit do svého prohlížeče,
@ -4168,14 +4138,11 @@ Is Billing Contact,Je fakturační kontakt,
Address And Contacts,Adresa a kontakty,
Lead Conversion Time,Lead Conversion Time,
Due Date Based On,Datum splatnosti založeno na,
Phone Number,Telefonní číslo,
Linked Documents,Propojené dokumenty,
Account SID,SID účtu,
Steps,Kroky,
email,e-mailem,
Component,Komponent,
Subtitle,Titulky,
Global Defaults,Globální Výchozí,
Prefix,Prefix,
Is Public,Je veřejné,
This chart will be available to all Users if this is set,"Pokud je tato tabulka nastavena, bude tato tabulka k dispozici všem uživatelům",
@ -4362,7 +4329,6 @@ Dynamic Filters Section,Sekce dynamických filtrů,
Please create Card first,Nejprve si prosím vytvořte kartu,
Onboarding Permission,Registrace povolení,
Onboarding Step,Krok přihlášení,
Is Mandatory,Je povinná,
Is Skipped,Je přeskočeno,
Create Entry,Vytvořit záznam,
Update Settings,Aktualizovat nastavení,
@ -4400,7 +4366,6 @@ Message (HTML),Zpráva (HTML),
Send Attachments,Odeslat přílohy,
Testing,Testování,
System Notification,Oznámení systému,
WhatsApp,WhatsApp,
Twilio Number,Twilio číslo,
"To use WhatsApp for Business, initialize <a href=""#Form/Twilio Settings"">Twilio Settings</a>.","Chcete-li použít WhatsApp pro firmy, inicializujte <a href=""#Form/Twilio Settings"">nastavení Twilio</a> .",
"To use Slack Channel, add a <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL</a>.","Chcete-li použít Slack Channel, přidejte <a href=""#List/Slack%20Webhook%20URL/List"">URL Slack Webhook</a> .",
@ -4535,7 +4500,6 @@ Add to ToDo,Přidat do úkolů,
{0} are currently {1},{0} jsou aktuálně {1},
Currently Replying,Právě odpovídá,
created {0},vytvořeno {0},
Make a call,Zavolat,
Change,Změna,Coins
Too Many Requests,Příliš mnoho požadavků,
"Invalid Authorization headers, add a token with a prefix from one of the following: {0}.","Neplatná záhlaví autorizace, přidejte token s předponou z jedné z následujících možností: {0}.",
@ -4700,3 +4664,135 @@ Value cannot be negative for {0}: {1},Hodnota nemůže být záporná pro {0}: {
Negative Value,Záporná hodnota,
Authentication failed while receiving emails from Email Account: {0}.,Při přijímání e-mailů z e-mailového účtu se nezdařilo ověření: {0}.,
Message from server: {0},Zpráva ze serveru: {0},
Add Row,Přidat řádek,
Analytics,analytika,
Anonymous,Anonymní,
Author,Autor,
Basic,Základní,
Billing,Fakturace,
Contact Details,Kontaktní údaje,
Datetime,Datum a čas,
Enable,Zapnout,
Event,Událost,
Full,Plný,
Insert,Vložit,
Interests,zájmy,
Language Name,Název jazyka,
License,Licence,
Limit,Omezit,
Log,Log,
Meeting,Setkání,
My Account,Můj Účet,
Newsletters,Zpravodaje,
Password,Heslo,
Pincode,PSČ,
Please select prefix first,"Prosím, vyberte první prefix",
Please set Email Address,Prosím nastavte e-mailovou adresu,
Please set the series to be used.,"Nastavte prosím řadu, kterou chcete použít.",
Portal Settings,Portál Nastavení,
Reference Owner,referenční Vlastník,
Region,Kraj,
Report Builder,Konfigurátor Reportu,
Sample,Vzorek,
Saved,Uloženo,
Series {0} already used in {1},Série {0} jsou již použity v {1},
Set as Default,Nastavit jako výchozí,
Shipping,Doprava,
Standard,Standard,
Test,Test,
Traceback,Vystopovat,
Unable to find DocType {0},Nelze najít DocType {0},
Weekdays,V pracovní dny,
Workflow,Toky (workflow),
You need to be logged in to access this page,Musíte být přihlášen k přístupu na tuto stránku,
County,Hrabství,
Images,snímky,
Office,Kancelář,
Passive,Pasivní,
Permanent,Trvalý,
Plant,Rostlina,
Postal,Poštovní,
Previous,Předchozí,
Shop,Obchod,
Subsidiary,Dceřiný,
There is some problem with the file url: {0},Tam je nějaký problém s URL souboru: {0},
"Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}","Zvláštní znaky kromě &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; A &quot;}}&quot; nejsou v názvových řadách povoleny {0}",
Export Type,Typ exportu,
Last Sync On,Poslední synchronizace je zapnutá,
Webhook Secret,Webhook Secret,
Back to Home,Zpátky domů,
Customize,Přizpůsobit,
Edit Profile,Editovat profil,
File Manager,Správce souborů,
Invite as User,Pozvat jako Uživatel,
Newsletter,Newsletter,
Printing,Tisk,
Publish,Publikovat,
Refreshing,Osvěžující,
Select All,Vybrat vše,
Set,Nastavit,
Setup Wizard,Průvodce nastavením,
Update Details,Aktualizujte podrobnosti,
You,Vy,
{0} Name,{0} Name,
Bold,tučně,
Center,Střed,
Comment,Komentář,
Not Found,Nenalezeno,
User Id,Uživatelské ID,
Position,Pozice,
Crop,Oříznutí,
Topic,Téma,
Public Transport,Veřejná doprava,
Request Data,Žádost o údaje,
Steps,Kroky,
Reference DocType,Referenční DocType,
Select Transaction,Vybrat Transaction,
Help HTML,Nápověda HTML,
Series List for this Transaction,Řada seznam pro tuto transakci,
User must always select,Uživatel musí vždy vybrat,
Check this if you want to force the user to select a series before saving. There will be no default if you check this.,"Zaškrtněte, pokud chcete, aby uživateli vybrat sérii před uložením. Tam bude žádná výchozí nastavení, pokud jste zkontrolovat.",
Prefix,Prefix,
This is the number of the last created transaction with this prefix,To je číslo poslední vytvořené transakci s tímto prefixem,
Update Series Number,Aktualizace Series Number,
Validation Error,Chyba ověření,
Andaman and Nicobar Islands,Andamanské a Nikobarské ostrovy,
Andhra Pradesh,Andhra Pradesh,
Arunachal Pradesh,Arunáčalpradéš,
Assam,Assam,
Bihar,Bihar,
Chandigarh,Chandigarh,
Chhattisgarh,Chhattisgarh,
Dadra and Nagar Haveli,Dadra a Nagar Haveli,
Daman and Diu,Daman a Diu,
Delhi,Dillí,
Goa,Goa,
Gujarat,Gudžarát,
Haryana,Haryana,
Himachal Pradesh,Himáčalpradéš,
Jammu and Kashmir,Džammú a Kašmír,
Jharkhand,Jharkhand,
Karnataka,Karnataka,
Kerala,Kerala,
Lakshadweep Islands,Ostrovy Lakshadweep,
Madhya Pradesh,Madhya Pradesh,
Maharashtra,Maharashtra,
Manipur,Manipur,
Meghalaya,Meghalaya,
Mizoram,Mizoram,
Nagaland,Nagaland,
Odisha,Urísa,
Other Territory,Jiné území,
Pondicherry,Pondicherry,
Punjab,Paňdžáb,
Rajasthan,Rádžasthán,
Sikkim,Sikkim,
Tamil Nadu,Tamil Nadu,
Telangana,Telangana,
Tripura,Tripura,
Uttar Pradesh,Uttarpradéš,
Uttarakhand,Uttarakhand,
West Bengal,Západní Bengálsko,
Published on,Publikováno dne,
Bottom,Dno,
Top,Horní,

Can't render this file because it has a wrong number of fields in line 1678.

View file

@ -9,7 +9,6 @@ Action,Handling,
Actions,Handlinger,
Active,Aktiv,
Add,Tilføj,
Add Comment,Tilføj kommentar,
Add Row,Tilføj række,
Address,Adresse,
Address Line 2,Adresse 2,
@ -144,7 +143,6 @@ Monday,Mandag,
Monthly,Månedlig,
More,Mere,
More Information,Mere information,
More...,Mere...,
Move,flytte,
My Account,Min konto,
New Address,Ny adresse,
@ -157,7 +155,6 @@ No items found.,Ingen emner fundet.,
None,Ingen,
Not Permitted,Ikke Tilladt,
Not active,Ikke aktiv,
Notes,Noter,
Number,Nummer,
Online,Online,
Operation,Operation,
@ -167,17 +164,12 @@ Owner,Ejer,
Page Missing or Moved,Side mangler eller er flyttet,
Parameter,Parameter,
Password,Adgangskode,
Payment Gateway,Betaling Gateway,
Payment Gateway Name,Betalings gateway navn,
Payments,Betalinger,
Period,Periode,
Pincode,Pinkode,
Plan Name,Plan navn,
Please enable pop-ups,Slå pop-ups til,
Please select Company,Vælg firma,
Please select {0},Vælg {0},
Please set Email Address,Angiv e-mail adresse,
Portal,Portal,
Portal Settings,Portal Indstillinger,
Preview,Eksempel,
Primary,Primær,
@ -222,7 +214,6 @@ Salutation,Titel,
Sample,Prøve,
Saturday,Lørdag,
Saved,Gemt,
Scan Barcode,Scan stregkode,
Scheduled,Planlagt,
Search,Søg,
Secret Key,Secret Key,
@ -237,7 +228,6 @@ Settings,Indstillinger,
Shipping,Forsendelse,
Short Name,Kort navn,
Slideshow,Slideshow,
Some information is missing,Der mangler nogle oplysninger,
Source,Kilde,
Source Name,Kilde Navn,
Standard,Standard,
@ -247,7 +237,6 @@ State,Stat,
Stopped,Stoppet,
Subject,Emne,
Submit,Godkend,
Successful,Vellykket,
Summary,Resumé,
Sunday,Søndag,
System Manager,System Manager,
@ -260,11 +249,9 @@ The page you are looking for is missing. This could be because it is moved or th
Timespan,Tidsperiode,
To,Til,
To Date,Til dato,
Tools,Værktøj,
Traceback,Spore tilbage,
URL,URL,
Unsubscribed,Afmeldt,
Use Sandbox,Brug Sandbox,
User,Bruger,
User ID,Bruger-id,
Users,Brugere,
@ -569,7 +556,6 @@ Bulk Delete,Sletning,
Bulk Edit {0},Bulk Edit {0},
Bulk Rename,Bulk Omdøb,
Bulk Update,Bundtopdatering,
Busy,Travl,
Button,Knap,
Button Help,Knappen Hjælp,
Button Label,Button Label,
@ -706,7 +692,6 @@ Compiled Successfully,Kompileret med succes,
Complete By,Færdiggjort af,
Complete Registration,Komplet Registrering,
Complete Setup,Komplet opsætning,
Completed By,Færdiggjort af,
Compose Email,Compose Email,
Condition Detail,Tilstand detaljer,
Conditions,Betingelser,
@ -1691,7 +1676,7 @@ Not a valid user,Ikke en gyldig bruger,
Not a zip file,Ikke en zip-fil,
Not allowed for {0}: {1},Ikke tilladt for {0}: {1},
"You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4}","Du har ikke tilladelse til at få adgang til {0} fordi det er knyttet til {1} '{2}' i række {3}, felt {4}",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},"Du har ikke tilladelse til at få adgang til denne {0} post fordi den er knyttet til {1} '{2}' i feltet {3}",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},Du har ikke tilladelse til at få adgang til denne {0} post fordi den er knyttet til {1} '{2}' i feltet {3},
Not allowed to Import,Ikke tilladt at importere,
Not allowed to change {0} after submission,Ikke tilladt at ændre {0} efter indsendelse,
Not allowed to print cancelled documents,Ikke tilladt at udskrive annullerede dokumenter,
@ -1819,7 +1804,6 @@ Path to private Key File,Sti til privat nøglefil,
PayPal Settings,PayPal-indstillinger,
PayPal payment gateway settings,PayPal betaling gateway indstillinger,
Payment Cancelled,Betaling annulleret,
Payment Failed,Betaling mislykkedes,
Payment Success,Betaling gennemført,
Pending Approval,Afventer godkendelse,
Pending Verification,Venter på verifikation,
@ -3216,7 +3200,6 @@ Click on the link below to approve the request,Klik på linket herunder for at g
Click on the lock icon to toggle public/private,Klik på låseikonet for at skifte offentlig / privat,
Click on {0} to generate Refresh Token.,Klik på {0} for at generere Refresh Token.,
Close Condition,Luk tilstand,
Column {0},Kolonne {0},
Columns / Fields,Kolonner / felter,
"Configure notifications for mentions, assignments, energy points and more.","Konfigurer underretninger til omtaler, opgaver, energipunkter og mere.",
Contact Email,Kontakt e-mail,
@ -3298,7 +3281,6 @@ Failed to create an Event Consumer or an Event Consumer for the current site is
Failure,Fiasko,
Fetching default Global Search documents.,Henter standard Global Search-dokumenter.,
Fetching posts...,Henter indlæg ...,
Field Mapping,Feltkortlægning,
Field To Check,"Felt, der skal kontrolleres",
File Information,Filoplysninger,
Filter By,Sorter efter,
@ -3453,7 +3435,6 @@ No posts yet,Der er endnu ingen indlæg,
No records will be exported,Ingen poster vil blive eksporteret,
No results found for {0} in Global Search,Ingen resultater fundet for {0} i global søgning,
No user found,Ingen bruger fundet,
Not Specified,Ikke specificeret,
Notification Log,Underretningslog,
Notification Settings,Underretningsindstillinger,
Notification Subscribed Document,Undertegnet abonneret dokument,
@ -3609,7 +3590,6 @@ Untitled Column,Unavngivet søjle,
Untranslated,Untranslated,
Upcoming Events,Kommende begivenheder,
Update Existing Records,Opdater eksisterende poster,
Update Type,Opdateringstype,
Updated To A New Version 🎉,Opdateret til en ny version 🎉,
"Updating {0} of {1}, {2}","Opdaterer {0} af {1}, {2}",
Upload file,Upload fil,
@ -3716,19 +3696,16 @@ Designation,Betegnelse,
Disabled,Deaktiveret,
Doctype,doctype,
Download Template,Hent skabelon,
Dr,Dr.,
Due Date,Forfaldsdato,
Duplicate,Duplikér,
Edit Profile,Rediger profil,
Email,EMail,
End Time,End Time,
Enter Value,Indtast værdi,
Entity Type,Entity Type,
Error,Fejl,
Expired,Udløbet,
Export,Udlæs,
Export not allowed. You need {0} role to export.,Udlæsning er ikke tilladt. Du har brug for {0} rolle for at kunne udlæse.,
Fetching...,Henter ...,
Field,Felt,
File Manager,Filadministrator,
Filters,Filtre,
@ -3743,11 +3720,8 @@ Import Data from CSV / Excel files.,Importer data fra CSV / Excel-filer.,
In Progress,I gang,
Intermediate,mellemniveau,
Invite as User,Inviter som Bruger,
"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.",Det ser ud som om der er et problem med serverens stribekonfiguration. I tilfælde af fejl bliver beløbet refunderet til din konto.,
Loading...,Indlæser ...,
Location,Lokation,
Looks like someone sent you to an incomplete URL. Please ask them to look into it.,Ligner nogen har sendt dig til en ufuldstændig webadresse. Spørg dem om at se på det.,
Master,Master,
Message,Besked,
Missing Values Required,Manglende værdier skal angives,
Mobile No,Mobiltelefonnr.,
@ -3759,7 +3733,6 @@ Note,Bemærk,
Offline,Offline,
Open,Åbne,
Page {0} of {1},Side {0} af {1},
Pay,Betale,
Pending,Afventer,
Phone,Telefonnr.,
Please click on the following link to set your new password,Klik på følgende link for at indstille din nye adgangskode,
@ -3809,7 +3782,6 @@ Welcome to {0},Velkommen til {0},
Year,År,
Yearly,Årlig,
You,Du,
You can also copy-paste this link in your browser,Du kan også kopiere-indsætte dette link i din browser,
and,og,
{0} Name,{0} Navn,
{0} is required,{0} er påkrævet,
@ -4113,7 +4085,6 @@ Custom SCSS,Brugerdefineret SCSS,
Navbar,Navbar,
Source Message,Kildemeddelelse,
Translated Message,Oversat besked,
Verified By,Bekræftet af,
Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand.,"Brug af denne konsol kan muligvis gøre det muligt for angribere at efterligne dig og stjæle dine oplysninger. Indtast eller indsæt ikke kode, som du ikke forstår.",
{0} m,{0} m,
{0} h,{0} t,
@ -4146,7 +4117,6 @@ Collapse,Bryder sammen,
{0} is not a valid Name,{0] er ikke et gyldigt navn,
Your system is being updated. Please refresh again after a few moments.,Dit system opdateres. Opdater igen efter et øjeblik.,
{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first.,{0} {1}: Den indsendte post kan ikke slettes. Du skal {2} annullere {3} det først.,
Invalid naming series (. missing) for {0},Ugyldig navneserie (. Mangler) for {0},
Error has occurred in {0},En fejl er opstået i {0},
Status Updated,Status opdateret,
You can also copy-paste this {0} to your browser,Du kan også kopiere og indsætte denne {0} i din browser,
@ -4168,14 +4138,11 @@ Is Billing Contact,Er faktureringskontakt,
Address And Contacts,Adresse og kontakter,
Lead Conversion Time,Lead Conversion Time,
Due Date Based On,Forfaldsdato baseret på,
Phone Number,Telefonnummer,
Linked Documents,Koblede dokumenter,
Account SID,Konto SID,
Steps,Trin,
email,e-mail,
Component,Lønart,
Subtitle,Undertekst,
Global Defaults,Globale indstillinger,
Prefix,Præfiks,
Is Public,Er offentlig,
This chart will be available to all Users if this is set,"Dette diagram vil være tilgængeligt for alle brugere, hvis dette er indstillet",
@ -4362,7 +4329,6 @@ Dynamic Filters Section,Sektionen for dynamiske filtre,
Please create Card first,Opret kort først,
Onboarding Permission,Ombord tilladelse,
Onboarding Step,Ombordstigningstrin,
Is Mandatory,Er obligatorisk,
Is Skipped,Springes over,
Create Entry,Opret post,
Update Settings,Opdater indstillinger,
@ -4400,7 +4366,6 @@ Message (HTML),Besked (HTML),
Send Attachments,Send vedhæftede filer,
Testing,Testning,
System Notification,Systemmeddelelse,
WhatsApp,WhatsApp,
Twilio Number,Twilio-nummer,
"To use WhatsApp for Business, initialize <a href=""#Form/Twilio Settings"">Twilio Settings</a>.","For at bruge WhatsApp for Business skal du initialisere <a href=""#Form/Twilio Settings"">Twilio-indstillinger</a> .",
"To use Slack Channel, add a <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL</a>.","For at bruge Slack Channel skal du tilføje en <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL</a> .",
@ -4535,7 +4500,6 @@ Add to ToDo,Føj til ToDo,
{0} are currently {1},{0} er i øjeblikket {1},
Currently Replying,Besvarer i øjeblikket,
created {0},oprettet {0},
Make a call,Ringe,
Change,Lave om,Coins
Too Many Requests,For mange anmodninger,
"Invalid Authorization headers, add a token with a prefix from one of the following: {0}.","Ugyldige autorisationsoverskrifter, tilføj et token med et præfiks fra et af følgende: {0}.",
@ -4700,3 +4664,135 @@ Value cannot be negative for {0}: {1},Værdien kan ikke være negativ for {0}: {
Negative Value,Negativ værdi,
Authentication failed while receiving emails from Email Account: {0}.,Godkendelse mislykkedes under modtagelse af e-mails fra e-mail-konto: {0}.,
Message from server: {0},Meddelelse fra server: {0},
Add Row,Tilføj række,
Analytics,Analyser,
Anonymous,Anonym,
Author,Forfatter,
Basic,Grundlæggende,
Billing,Fakturering,
Contact Details,Kontaktoplysninger,
Datetime,Datetime,
Enable,Aktiver,
Event,Begivenhed,
Full,Fuld,
Insert,Indsæt,
Interests,Interesser,
Language Name,Sprognavn,
License,Licens,
Limit,Begrænse,
Log,Log,
Meeting,Møde,
My Account,Min konto,
Newsletters,Nyhedsbreve,
Password,Adgangskode,
Pincode,Pinkode,
Please select prefix first,Vælg venligst præfiks først,
Please set Email Address,Angiv e-mail adresse,
Please set the series to be used.,"Indstil den serie, der skal bruges.",
Portal Settings,Portal Indstillinger,
Reference Owner,henvisning Ejer,
Region,Region,
Report Builder,Rapportgenerator,
Sample,Prøve,
Saved,Gemt,
Series {0} already used in {1},Serien {0} allerede anvendes i {1},
Set as Default,Indstil som standard,
Shipping,Forsendelse,
Standard,Standard,
Test,Prøve,
Traceback,Spore tilbage,
Unable to find DocType {0},Kunne ikke finde DocType {0},
Weekdays,Hverdage,
Workflow,Workflow,
You need to be logged in to access this page,Du skal være logget ind for at få adgang til denne side,
County,Anvendes ikke,
Images,Billeder,
Office,Kontor,
Passive,Inaktiv,
Permanent,Permanent,
Plant,Plant,
Postal,Postal,
Previous,Forrige,
Shop,Butik,
Subsidiary,Datterselskab,
There is some problem with the file url: {0},Der er nogle problemer med filen url: {0},
"Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}","Specialtegn undtagen &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; Og &quot;}}&quot; er ikke tilladt i navngivningsserier {0}",
Export Type,Eksporttype,
Last Sync On,Sidste synkronisering,
Webhook Secret,Webhook Secret,
Back to Home,Tilbage til hjemmet,
Customize,Tilpas,
Edit Profile,Rediger profil,
File Manager,Filadministrator,
Invite as User,Inviter som Bruger,
Newsletter,Nyhedsbrev,
Printing,Udskrivning,
Publish,Offentliggøre,
Refreshing,Opfrisker,
Select All,Vælg alt,
Set,Sæt,
Setup Wizard,Opsætningsassistent,
Update Details,Opdater detaljer,
You,Du,
{0} Name,{0} Navn,
Bold,Fremhævet,
Center,Centrer,
Comment,Kommentar,
Not Found,Ikke fundet,
User Id,Bruger ID,
Position,Position,
Crop,Afgrøde,
Topic,Emne,
Public Transport,Offentlig transport,
Request Data,Forespørgselsdata,
Steps,Trin,
Reference DocType,Reference DocType,
Select Transaction,Vælg Transaktion,
Help HTML,Hjælp HTML,
Series List for this Transaction,Serie Liste for denne transaktion,
User must always select,Brugeren skal altid vælge,
Check this if you want to force the user to select a series before saving. There will be no default if you check this.,"Markér dette hvis du ønsker at tvinge brugeren til at vælge en serie før du gemmer. Der vil ikke være standard, hvis du markerer dette.",
Prefix,Præfiks,
This is the number of the last created transaction with this prefix,Dette er antallet af sidste skabte transaktionen med dette præfiks,
Update Series Number,Opdatering Series Number,
Validation Error,Valideringsfejl,
Andaman and Nicobar Islands,Andaman- og Nicobarøerne,
Andhra Pradesh,Andhra Pradesh,
Arunachal Pradesh,Arunachal Pradesh,
Assam,Assam,
Bihar,Bihar,
Chandigarh,Chandigarh,
Chhattisgarh,Chhattisgarh,
Dadra and Nagar Haveli,Dadra og Nagar Haveli,
Daman and Diu,Daman og Diu,
Delhi,Delhi,
Goa,Goa,
Gujarat,Gujarat,
Haryana,Haryana,
Himachal Pradesh,Himachal Pradesh,
Jammu and Kashmir,Jammu og Kashmir,
Jharkhand,Jharkhand,
Karnataka,Karnataka,
Kerala,Kerala,
Lakshadweep Islands,Lakshadweep Islands,
Madhya Pradesh,Madhya Pradesh,
Maharashtra,Maharashtra,
Manipur,Manipur,
Meghalaya,Meghalaya,
Mizoram,Mizoram,
Nagaland,Nagaland,
Odisha,Odisha,
Other Territory,Andet territorium,
Pondicherry,Pondicherry,
Punjab,Punjab,
Rajasthan,Rajasthan,
Sikkim,Sikkim,
Tamil Nadu,Tamil Nadu,
Telangana,Telangana,
Tripura,Tripura,
Uttar Pradesh,Uttar Pradesh,
Uttarakhand,Uttarakhand,
West Bengal,Vestbengalen,
Published on,Udgivet den,
Bottom,Bund,
Top,Top,

1 A4 A4
9 Actions Handlinger
10 Active Aktiv
11 Add Tilføj
Add Comment Tilføj kommentar
12 Add Row Tilføj række
13 Address Adresse
14 Address Line 2 Adresse 2
143 Monthly Månedlig
144 More Mere
145 More Information Mere information
More... Mere...
146 Move flytte
147 My Account Min konto
148 New Address Ny adresse
155 None Ingen
156 Not Permitted Ikke Tilladt
157 Not active Ikke aktiv
Notes Noter
158 Number Nummer
159 Online Online
160 Operation Operation
164 Page Missing or Moved Side mangler eller er flyttet
165 Parameter Parameter
166 Password Adgangskode
Payment Gateway Betaling Gateway
Payment Gateway Name Betalings gateway navn
Payments Betalinger
167 Period Periode
168 Pincode Pinkode
Plan Name Plan navn
169 Please enable pop-ups Slå pop-ups til
170 Please select Company Vælg firma
171 Please select {0} Vælg {0}
172 Please set Email Address Angiv e-mail adresse
Portal Portal
173 Portal Settings Portal Indstillinger
174 Preview Eksempel
175 Primary Primær
214 Sample Prøve
215 Saturday Lørdag
216 Saved Gemt
Scan Barcode Scan stregkode
217 Scheduled Planlagt
218 Search Søg
219 Secret Key Secret Key
228 Shipping Forsendelse
229 Short Name Kort navn
230 Slideshow Slideshow
Some information is missing Der mangler nogle oplysninger
231 Source Kilde
232 Source Name Kilde Navn
233 Standard Standard
237 Stopped Stoppet
238 Subject Emne
239 Submit Godkend
Successful Vellykket
240 Summary Resumé
241 Sunday Søndag
242 System Manager System Manager
249 Timespan Tidsperiode
250 To Til
251 To Date Til dato
Tools Værktøj
252 Traceback Spore tilbage
253 URL URL
254 Unsubscribed Afmeldt
Use Sandbox Brug Sandbox
255 User Bruger
256 User ID Bruger-id
257 Users Brugere
556 Bulk Edit {0} Bulk Edit {0}
557 Bulk Rename Bulk Omdøb
558 Bulk Update Bundtopdatering
Busy Travl
559 Button Knap
560 Button Help Knappen Hjælp
561 Button Label Button Label
692 Complete By Færdiggjort af
693 Complete Registration Komplet Registrering
694 Complete Setup Komplet opsætning
Completed By Færdiggjort af
695 Compose Email Compose Email
696 Condition Detail Tilstand detaljer
697 Conditions Betingelser
1676 Not a zip file Ikke en zip-fil
1677 Not allowed for {0}: {1} Ikke tilladt for {0}: {1}
1678 You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4} Du har ikke tilladelse til at få adgang til {0} fordi det er knyttet til {1} '{2}' i række {3}, felt {4}
1679 You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3} Du har ikke tilladelse til at få adgang til denne {0} post fordi den er knyttet til {1} '{2}' i feltet {3}
1680 Not allowed to Import Ikke tilladt at importere
1681 Not allowed to change {0} after submission Ikke tilladt at ændre {0} efter indsendelse
1682 Not allowed to print cancelled documents Ikke tilladt at udskrive annullerede dokumenter
1804 PayPal Settings PayPal-indstillinger
1805 PayPal payment gateway settings PayPal betaling gateway indstillinger
1806 Payment Cancelled Betaling annulleret
Payment Failed Betaling mislykkedes
1807 Payment Success Betaling gennemført
1808 Pending Approval Afventer godkendelse
1809 Pending Verification Venter på verifikation
3200 Click on the lock icon to toggle public/private Klik på låseikonet for at skifte offentlig / privat
3201 Click on {0} to generate Refresh Token. Klik på {0} for at generere Refresh Token.
3202 Close Condition Luk tilstand
Column {0} Kolonne {0}
3203 Columns / Fields Kolonner / felter
3204 Configure notifications for mentions, assignments, energy points and more. Konfigurer underretninger til omtaler, opgaver, energipunkter og mere.
3205 Contact Email Kontakt e-mail
3281 Failure Fiasko
3282 Fetching default Global Search documents. Henter standard Global Search-dokumenter.
3283 Fetching posts... Henter indlæg ...
Field Mapping Feltkortlægning
3284 Field To Check Felt, der skal kontrolleres
3285 File Information Filoplysninger
3286 Filter By Sorter efter
3435 No records will be exported Ingen poster vil blive eksporteret
3436 No results found for {0} in Global Search Ingen resultater fundet for {0} i global søgning
3437 No user found Ingen bruger fundet
Not Specified Ikke specificeret
3438 Notification Log Underretningslog
3439 Notification Settings Underretningsindstillinger
3440 Notification Subscribed Document Undertegnet abonneret dokument
3590 Untranslated Untranslated
3591 Upcoming Events Kommende begivenheder
3592 Update Existing Records Opdater eksisterende poster
Update Type Opdateringstype
3593 Updated To A New Version 🎉 Opdateret til en ny version 🎉
3594 Updating {0} of {1}, {2} Opdaterer {0} af {1}, {2}
3595 Upload file Upload fil
3696 Disabled Deaktiveret
3697 Doctype doctype
3698 Download Template Hent skabelon
Dr Dr.
3699 Due Date Forfaldsdato
3700 Duplicate Duplikér
3701 Edit Profile Rediger profil
3702 Email EMail
End Time End Time
3703 Enter Value Indtast værdi
3704 Entity Type Entity Type
3705 Error Fejl
3706 Expired Udløbet
3707 Export Udlæs
3708 Export not allowed. You need {0} role to export. Udlæsning er ikke tilladt. Du har brug for {0} rolle for at kunne udlæse.
Fetching... Henter ...
3709 Field Felt
3710 File Manager Filadministrator
3711 Filters Filtre
3720 In Progress I gang
3721 Intermediate mellemniveau
3722 Invite as User Inviter som Bruger
It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account. Det ser ud som om der er et problem med serverens stribekonfiguration. I tilfælde af fejl bliver beløbet refunderet til din konto.
3723 Loading... Indlæser ...
3724 Location Lokation
Looks like someone sent you to an incomplete URL. Please ask them to look into it. Ligner nogen har sendt dig til en ufuldstændig webadresse. Spørg dem om at se på det.
Master Master
3725 Message Besked
3726 Missing Values Required Manglende værdier skal angives
3727 Mobile No Mobiltelefonnr.
3733 Offline Offline
3734 Open Åbne
3735 Page {0} of {1} Side {0} af {1}
Pay Betale
3736 Pending Afventer
3737 Phone Telefonnr.
3738 Please click on the following link to set your new password Klik på følgende link for at indstille din nye adgangskode
3782 Year År
3783 Yearly Årlig
3784 You Du
You can also copy-paste this link in your browser Du kan også kopiere-indsætte dette link i din browser
3785 and og
3786 {0} Name {0} Navn
3787 {0} is required {0} er påkrævet
4085 Navbar Navbar
4086 Source Message Kildemeddelelse
4087 Translated Message Oversat besked
Verified By Bekræftet af
4088 Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand. Brug af denne konsol kan muligvis gøre det muligt for angribere at efterligne dig og stjæle dine oplysninger. Indtast eller indsæt ikke kode, som du ikke forstår.
4089 {0} m {0} m
4090 {0} h {0} t
4117 {0} is not a valid Name {0] er ikke et gyldigt navn
4118 Your system is being updated. Please refresh again after a few moments. Dit system opdateres. Opdater igen efter et øjeblik.
4119 {0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first. {0} {1}: Den indsendte post kan ikke slettes. Du skal {2} annullere {3} det først.
Invalid naming series (. missing) for {0} Ugyldig navneserie (. Mangler) for {0}
4120 Error has occurred in {0} En fejl er opstået i {0}
4121 Status Updated Status opdateret
4122 You can also copy-paste this {0} to your browser Du kan også kopiere og indsætte denne {0} i din browser
4138 Address And Contacts Adresse og kontakter
4139 Lead Conversion Time Lead Conversion Time
4140 Due Date Based On Forfaldsdato baseret på
Phone Number Telefonnummer
4141 Linked Documents Koblede dokumenter
Account SID Konto SID
4142 Steps Trin
4143 email e-mail
4144 Component Lønart
4145 Subtitle Undertekst
Global Defaults Globale indstillinger
4146 Prefix Præfiks
4147 Is Public Er offentlig
4148 This chart will be available to all Users if this is set Dette diagram vil være tilgængeligt for alle brugere, hvis dette er indstillet
4329 Please create Card first Opret kort først
4330 Onboarding Permission Ombord tilladelse
4331 Onboarding Step Ombordstigningstrin
Is Mandatory Er obligatorisk
4332 Is Skipped Springes over
4333 Create Entry Opret post
4334 Update Settings Opdater indstillinger
4366 Send Attachments Send vedhæftede filer
4367 Testing Testning
4368 System Notification Systemmeddelelse
WhatsApp WhatsApp
4369 Twilio Number Twilio-nummer
4370 To use WhatsApp for Business, initialize <a href="#Form/Twilio Settings">Twilio Settings</a>. For at bruge WhatsApp for Business skal du initialisere <a href="#Form/Twilio Settings">Twilio-indstillinger</a> .
4371 To use Slack Channel, add a <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook URL</a>. For at bruge Slack Channel skal du tilføje en <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook URL</a> .
4500 {0} are currently {1} {0} er i øjeblikket {1}
4501 Currently Replying Besvarer i øjeblikket
4502 created {0} oprettet {0}
Make a call Ringe
4503 Change Lave om Coins
4504 Too Many Requests For mange anmodninger
4505 Invalid Authorization headers, add a token with a prefix from one of the following: {0}. Ugyldige autorisationsoverskrifter, tilføj et token med et præfiks fra et af følgende: {0}.
4664 Negative Value Negativ værdi
4665 Authentication failed while receiving emails from Email Account: {0}. Godkendelse mislykkedes under modtagelse af e-mails fra e-mail-konto: {0}.
4666 Message from server: {0} Meddelelse fra server: {0}
4667 Add Row Tilføj række
4668 Analytics Analyser
4669 Anonymous Anonym
4670 Author Forfatter
4671 Basic Grundlæggende
4672 Billing Fakturering
4673 Contact Details Kontaktoplysninger
4674 Datetime Datetime
4675 Enable Aktiver
4676 Event Begivenhed
4677 Full Fuld
4678 Insert Indsæt
4679 Interests Interesser
4680 Language Name Sprognavn
4681 License Licens
4682 Limit Begrænse
4683 Log Log
4684 Meeting Møde
4685 My Account Min konto
4686 Newsletters Nyhedsbreve
4687 Password Adgangskode
4688 Pincode Pinkode
4689 Please select prefix first Vælg venligst præfiks først
4690 Please set Email Address Angiv e-mail adresse
4691 Please set the series to be used. Indstil den serie, der skal bruges.
4692 Portal Settings Portal Indstillinger
4693 Reference Owner henvisning Ejer
4694 Region Region
4695 Report Builder Rapportgenerator
4696 Sample Prøve
4697 Saved Gemt
4698 Series {0} already used in {1} Serien {0} allerede anvendes i {1}
4699 Set as Default Indstil som standard
4700 Shipping Forsendelse
4701 Standard Standard
4702 Test Prøve
4703 Traceback Spore tilbage
4704 Unable to find DocType {0} Kunne ikke finde DocType {0}
4705 Weekdays Hverdage
4706 Workflow Workflow
4707 You need to be logged in to access this page Du skal være logget ind for at få adgang til denne side
4708 County Anvendes ikke
4709 Images Billeder
4710 Office Kontor
4711 Passive Inaktiv
4712 Permanent Permanent
4713 Plant Plant
4714 Postal Postal
4715 Previous Forrige
4716 Shop Butik
4717 Subsidiary Datterselskab
4718 There is some problem with the file url: {0} Der er nogle problemer med filen url: {0}
4719 Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0} Specialtegn undtagen &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; Og &quot;}}&quot; er ikke tilladt i navngivningsserier {0}
4720 Export Type Eksporttype
4721 Last Sync On Sidste synkronisering
4722 Webhook Secret Webhook Secret
4723 Back to Home Tilbage til hjemmet
4724 Customize Tilpas
4725 Edit Profile Rediger profil
4726 File Manager Filadministrator
4727 Invite as User Inviter som Bruger
4728 Newsletter Nyhedsbrev
4729 Printing Udskrivning
4730 Publish Offentliggøre
4731 Refreshing Opfrisker
4732 Select All Vælg alt
4733 Set Sæt
4734 Setup Wizard Opsætningsassistent
4735 Update Details Opdater detaljer
4736 You Du
4737 {0} Name {0} Navn
4738 Bold Fremhævet
4739 Center Centrer
4740 Comment Kommentar
4741 Not Found Ikke fundet
4742 User Id Bruger ID
4743 Position Position
4744 Crop Afgrøde
4745 Topic Emne
4746 Public Transport Offentlig transport
4747 Request Data Forespørgselsdata
4748 Steps Trin
4749 Reference DocType Reference DocType
4750 Select Transaction Vælg Transaktion
4751 Help HTML Hjælp HTML
4752 Series List for this Transaction Serie Liste for denne transaktion
4753 User must always select Brugeren skal altid vælge
4754 Check this if you want to force the user to select a series before saving. There will be no default if you check this. Markér dette hvis du ønsker at tvinge brugeren til at vælge en serie før du gemmer. Der vil ikke være standard, hvis du markerer dette.
4755 Prefix Præfiks
4756 This is the number of the last created transaction with this prefix Dette er antallet af sidste skabte transaktionen med dette præfiks
4757 Update Series Number Opdatering Series Number
4758 Validation Error Valideringsfejl
4759 Andaman and Nicobar Islands Andaman- og Nicobarøerne
4760 Andhra Pradesh Andhra Pradesh
4761 Arunachal Pradesh Arunachal Pradesh
4762 Assam Assam
4763 Bihar Bihar
4764 Chandigarh Chandigarh
4765 Chhattisgarh Chhattisgarh
4766 Dadra and Nagar Haveli Dadra og Nagar Haveli
4767 Daman and Diu Daman og Diu
4768 Delhi Delhi
4769 Goa Goa
4770 Gujarat Gujarat
4771 Haryana Haryana
4772 Himachal Pradesh Himachal Pradesh
4773 Jammu and Kashmir Jammu og Kashmir
4774 Jharkhand Jharkhand
4775 Karnataka Karnataka
4776 Kerala Kerala
4777 Lakshadweep Islands Lakshadweep Islands
4778 Madhya Pradesh Madhya Pradesh
4779 Maharashtra Maharashtra
4780 Manipur Manipur
4781 Meghalaya Meghalaya
4782 Mizoram Mizoram
4783 Nagaland Nagaland
4784 Odisha Odisha
4785 Other Territory Andet territorium
4786 Pondicherry Pondicherry
4787 Punjab Punjab
4788 Rajasthan Rajasthan
4789 Sikkim Sikkim
4790 Tamil Nadu Tamil Nadu
4791 Telangana Telangana
4792 Tripura Tripura
4793 Uttar Pradesh Uttar Pradesh
4794 Uttarakhand Uttarakhand
4795 West Bengal Vestbengalen
4796 Published on Udgivet den
4797 Bottom Bund
4798 Top Top

View file

@ -9,7 +9,6 @@ Action,Aktion,
Actions,Aktionen,
Active,Aktiv,
Add,Hinzufügen,
Add Comment,Kommentar hinzufügen,
Add Row,Zeile hinzufügen,
Address,Adresse,
Address Line 2,Adresse Zeile 2,
@ -147,7 +146,6 @@ Monday,Montag,
Monthly,Monatlich,
More,Weiter,
More Information,Mehr Informationen,
More...,Mehr...,
Move,Verschieben,
My Account,Mein Konto,
My Profile,Mein Profil,
@ -163,7 +161,6 @@ No items found.,Keine Elemente gefunden.,
None,Keine,
Not Permitted,Nicht zulässig,
Not active,Nicht aktiv,
Notes,Hinweise,
Number,Nummer,
Online,Online,
Operation,Arbeitsgang,
@ -173,17 +170,12 @@ Owner,Besitzer,
Page Missing or Moved,Seite fehlt oder befindet sich an einem neuen Ort,
Parameter,Parameter,
Password,Passwort,
Payment Gateway,Zahlungs-Gateways,
Payment Gateway Name,Name des Zahlungsgateways,
Payments,Zahlungen,
Period,Periode,
Pincode,Postleitzahl,
Plan Name,Planname,
Please enable pop-ups,Bitte Pop-ups aktivieren,
Please select Company,Bitte Unternehmen auswählen,
Please select {0},Bitte {0} auswählen,
Please set Email Address,Bitte setzen Sie E-Mail-Adresse,
Portal,Portal,
Portal Settings,Portaleinstellungen,
Preview,Vorschau,
Primary,Primär,
@ -228,7 +220,6 @@ Salutation,Anrede,
Sample,Beispiel,
Saturday,Samstag,
Saved,Gespeichert,
Scan Barcode,Barcode scannen,
Scheduled,Geplant,
Search,Suchen,
Secret Key,Geheimer Schlüssel,
@ -243,7 +234,6 @@ Settings,Einstellungen,
Shipping,Versand,
Short Name,Kürzel,
Slideshow,Diaschau,
Some information is missing,Einige Informationen fehlen,
Source,Quelle,
Source Name,Quellenname,
Standard,Standard,
@ -253,7 +243,6 @@ State,Zustand,
Stopped,Angehalten,
Subject,Betreff,
Submit,Buchen,
Successful,Erfolgreich,
Summary,Zusammenfassung,
Sunday,Sonntag,
System Manager,System-Manager,
@ -266,11 +255,9 @@ The page you are looking for is missing. This could be because it is moved or th
Timespan,Zeitspanne,
To,Zu,
To Date,Bis-Datum,
Tools,Werkzeuge,
Traceback,Zurück verfolgen,
URL,URL,
Unsubscribed,Abgemeldet,
Use Sandbox,Sandkastenmodus verwenden,
User,Nutzer,
User ID,Benutzer-ID,
Users,Benutzer,
@ -576,7 +563,6 @@ Bulk Delete,Massenlöschung,
Bulk Edit {0},Massen-Bearbeitung {0},
Bulk Rename,Werkzeug zum Massen-Umbenennen,
Bulk Update,Massen-Update,
Busy,Beschäftigt,
Button,Schaltfläche,
Button Help,Hilfetaste,
Button Label,Tastenbeschriftung,
@ -713,7 +699,6 @@ Compiled Successfully,Erfolgreich kompiliert,
Complete By,Fertigstellen bis,
Complete Registration,Anmeldung abschliessen,
Complete Setup,Einrichtung abschliessen,
Completed By,Vervollständigt von,
Compose Email,E-Mail verfassen,
Condition Detail,Zustandsdetail,
Conditions,Bedingungen,
@ -1399,7 +1384,7 @@ Is Globally Pinned,Wird global gepinnt,
Is Home Folder,Ist Ordner für Startseite,
Is Mandatory Field,Ist Pflichtfeld,
Is Pinned,Ist angeheftet,
Is Primary Contact,Ist primärer Ansprechpartner,
Is Primary Contact,Ist Hauptkontakt,
Is Private,Ist Privat,
Is Published Field,Ist Veröffentlicht Feld,
Is Published Field must be a valid fieldname,Ist Veröffentlicht Feld muss eine gültige Feldname sein,
@ -1408,7 +1393,6 @@ Is Spam,ist Spam,
Is Standard,Ist Standard,
Is Submittable,Ist übertragbar,
Is Table,ist eine Tabelle,
Is Template, Ist Vorlage,
Is Your Company Address,Ist Ihre Unternehmensadresse,
It is risky to delete this file: {0}. Please contact your System Manager.,"Es ist riskant, diese Datei zu löschen: {0}. Bitte kontaktieren Sie Ihren System-Manager.",
Item cannot be added to its own descendants,Artikel kann nicht zu seinen eigenen Abkömmlingen hinzugefügt werden,
@ -1845,7 +1829,6 @@ Path to private Key File,Pfad zur privaten Schlüsseldatei,
PayPal Settings,PayPal-Einstellungen,
PayPal payment gateway settings,PayPal Payment-Gateway-Einstellungen,
Payment Cancelled,Zahlung Cancelled,
Payment Failed,Bezahlung fehlgeschlagen,
Payment Success,Zahlungserfolg,
Pending Approval,Genehmigung ausstehend,
Pending Verification,Ausstehende Bestätigung,
@ -1957,6 +1940,11 @@ Preview Message,Vorschau Nachricht,
Previous,Vorhergehende,
Previous Hash,Vorheriger Hash,
Primary Color,Primärfarbe,
Primary Address,Hauptadresse,
Primary Contact,Hauptkontakt,
Primary Email,Haupt-E-Mail,
Primary Mobile,Haupt-Mobiltelefon,
Primary Phone,Haupttelefon,
Print Documents,Dokumente drucken,
Print Format Builder,Programm zum Erstellen von Druckformaten,
Print Format Help,Hilfe zu Druckformaten,
@ -3249,7 +3237,6 @@ Click on the link below to approve the request,"Klicken Sie auf den folgenden Li
Click on the lock icon to toggle public/private,"Klicken Sie auf das Schlosssymbol, um zwischen öffentlich und privat zu wechseln",
Click on {0} to generate Refresh Token.,"Klicken Sie auf {0}, um das Refresh Token zu generieren.",
Close Condition,Zustand schließen,
Column {0},Spalte {0},
Columns / Fields,Spalten / Felder,
"Configure notifications for mentions, assignments, energy points and more.","Konfigurieren Sie Benachrichtigungen für Erwähnungen, Zuweisungen, Energiepunkte und mehr.",
Contact Email,Kontakt-E-Mail,
@ -3334,7 +3321,6 @@ Failed to create an Event Consumer or an Event Consumer for the current site is
Failure,Fehler,
Fetching default Global Search documents.,Abrufen von Standarddokumenten der globalen Suche.,
Fetching posts...,Beiträge werden abgerufen ...,
Field Mapping,Feldzuordnung,
Field To Check,Zu überprüfendes Feld,
File Information,Dateiinformationen,
Filter By,Filtern nach,
@ -3489,7 +3475,6 @@ No posts yet,Noch keine Beiträge,
No records will be exported,Es werden keine Datensätze exportiert,
No results found for {0} in Global Search,Keine Ergebnisse für {0} in der globalen Suche gefunden,
No user found,Kein Benutzer gefunden,
Not Specified,Keine Angabe,
Notification Log,Benachrichtigungsprotokoll,
Notification Settings,Benachrichtigungseinstellungen,
Notification Subscribed Document,Benachrichtigungsdokument abonniert,
@ -3645,7 +3630,6 @@ Untitled Column,Untitled Column,
Untranslated,Nicht übersetzt,
Upcoming Events,Kommende Veranstaltungen,
Update Existing Records,Bestehende Datensätze aktualisieren,
Update Type,Aktualisierungsart,
Updated To A New Version 🎉,Auf eine neue Version aktualisiert 🎉,
"Updating {0} of {1}, {2}","{0} von {1}, {2} wird aktualisiert",
Upload file,Datei hochladen,
@ -3753,18 +3737,15 @@ Disabled,Deaktiviert,
Doctype,DocType,
Done,Erledigt,
Download Template,Vorlage herunterladen,
Dr,Soll,
Due Date,Fälligkeitsdatum,
Duplicate,Duplizieren,
Edit Profile,Profil bearbeiten,
End Time,Endzeit,
Enter Value,Wert eingeben,
Entity Type,Entitätstyp,
Error,Fehler,
Expired,Verfallen,
Export,Export,
Export not allowed. You need {0} role to export.,Export nicht erlaubt. Rolle {0} wird gebraucht zum exportieren.,
Fetching...,Abrufen ...,
Field,Feld,
File Manager,Dateimanager,
Filters,Filter,
@ -3779,11 +3760,8 @@ Import Data from CSV / Excel files.,Importieren Sie Daten aus CSV / Excel-Dateie
In Progress,In Bearbeitung,
Intermediate,Mittlere,
Invite as User,Als Benutzer einladen,
"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Es scheint, dass ein Problem mit der Stripe-Konfiguration des Servers vorliegt. Im Falle eines Fehlers wird der Betrag Ihrem Konto gutgeschrieben.",
Loading...,Laden ...,
Location,Ort,
Looks like someone sent you to an incomplete URL. Please ask them to look into it.,"Sieht aus wie jemand, den Sie zu einer unvollständigen URL gesendet. Bitte fragen Sie sie, sich in sie.",
Master,Vorlage,
Message,Botschaft,
Missing Values Required,Angaben zu fehlenden Werten erforderlich,
Mobile No,Mobilfunknummer,
@ -3795,7 +3773,6 @@ Note,Anmerkung,
Offline,Offline,
Open,Offen,
Page {0} of {1},Seite {0} von {1},
Pay,Zahlen,
Pending,Ausstehend,
Phone,Telefon,
Please click on the following link to set your new password,Bitte auf die folgende Verknüpfung klicken um ein neues Passwort zu setzen,
@ -3845,7 +3822,6 @@ Welcome to {0},Willkommen auf {0},
Year,Jahr,
Yearly,Jährlich,
You,Sie,
You can also copy-paste this link in your browser,Sie können diese Verknüpfung in Ihren Browser kopieren,
and,und,
{0} Name,{0} Name,
{0} is required,{0} erforderlich,
@ -4151,7 +4127,6 @@ Custom SCSS,Benutzerdefiniertes SCSS,
Navbar,Navbar,
Source Message,Ursprünglicher Text,
Translated Message,Übersetzter Text,
Verified By,Überprüft von,
Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand.,"Die Verwendung dieser Konsole kann es Angreifern ermöglichen, sich als Sie auszugeben und Ihre Informationen zu stehlen. Geben Sie keinen Code ein oder fügen Sie ihn nicht ein, den Sie nicht verstehen.",
{0} m,{0} m,
{0} h,{0} h,
@ -4183,7 +4158,6 @@ Collapse,Zusammenbruch,
{0} is not a valid Name,{0} ist kein gültiger Name,
Your system is being updated. Please refresh again after a few moments.,Ihr System wird aktualisiert. Bitte aktualisieren Sie nach einigen Augenblicken erneut.,
{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first.,{0} {1}: Übermittelter Datensatz kann nicht gelöscht werden. Sie müssen {2} zuerst {3} abbrechen.,
Invalid naming series (. missing) for {0},Ungültige Namensreihe (. Fehlt) für {0},
Error has occurred in {0},In {0} ist ein Fehler aufgetreten,
Status Updated,Status aktualisiert,
You can also copy-paste this {0} to your browser,Sie können diese {0} auch kopieren und in Ihren Browser einfügen,
@ -4205,14 +4179,11 @@ Is Billing Contact,Ist Abrechnungskontakt,
Address And Contacts,Adresse und Kontakte,
Lead Conversion Time,Lead-Umwandlungszeit,
Due Date Based On,Fälligkeitsdatum basiert auf,
Phone Number,Telefonnummer,
Linked Documents,Verknüpfte Dokumente,
Account SID,Konto-SID,
Steps,Schritte,
email,E-Mail,
Component,Komponente,
Subtitle,Untertitel,
Global Defaults,Allgemeine Voreinstellungen,
Prefix,Präfix,
Is Public,Ist öffentlich,
This chart will be available to all Users if this is set,"Dieses Diagramm steht allen Benutzern zur Verfügung, wenn dies festgelegt ist",
@ -4399,7 +4370,6 @@ Dynamic Filters Section,Abschnitt &quot;Dynamische Filter&quot;,
Please create Card first,Bitte erstellen Sie zuerst die Karte,
Onboarding Permission,Onboarding-Erlaubnis,
Onboarding Step,Onboarding-Schritt,
Is Mandatory,Ist obligatorisch,
Is Skipped,Wird übersprungen,
Create Entry,Eintrag erstellen,
Update Settings,Update Einstellungen,
@ -4437,7 +4407,6 @@ Message (HTML),Nachricht (HTML),
Send Attachments,Anhänge senden,
Testing,Testen,
System Notification,Systembenachrichtigung,
WhatsApp,WhatsApp,
Twilio Number,Twilio Nummer,
"To use WhatsApp for Business, initialize <a href=""#Form/Twilio Settings"">Twilio Settings</a>.","Initialisieren Sie die <a href=""#Form/Twilio Settings"">Twilio-Einstellungen,</a> um WhatsApp for Business zu verwenden.",
"To use Slack Channel, add a <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL</a>.","Um Slack Channel zu verwenden, fügen Sie eine <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook-URL hinzu</a> .",
@ -4572,7 +4541,6 @@ Add to ToDo,Zu ToDo hinzufügen,
{0} are currently {1},{0} sind derzeit {1},
Currently Replying,Derzeit antworten,
created {0},erstellt {0},
Make a call,Einen Anruf tätigen,
Change,Veränderung,Coins
Too Many Requests,Zu viele Anfragen,
"Invalid Authorization headers, add a token with a prefix from one of the following: {0}.",Fügen Sie bei ungültigen Autorisierungsheadern ein Token mit einem Präfix aus einem der folgenden Elemente hinzu: {0}.,
@ -4780,7 +4748,7 @@ Search or type a command (Ctrl + G),Suchen oder Befehl eingeben (Strg + G),
Password set,Passwort gesetzt,
Your new password has been set successfully.,Ihr Passwort wurde erfolgreich aktualisiert.,
You hit the rate limit because of too many requests. Please try after sometime.,Sie haben die maximale Anzahl an Anfragen erreicht. Bitte versuchen Sie es später noch einmal.,
"You need {0} permission to fetch values from {1} {2}","Sie benötigen eine {0}-Berechtigung, um die Werte von {1} {2} abzurufen",
You need {0} permission to fetch values from {1} {2},"Sie benötigen eine {0}-Berechtigung, um die Werte von {1} {2} abzurufen",
Cannot Fetch Values,Werte können nicht abgerufen werden,
You do not have Read or Select Permissions for {},Sie haben keine Lese- oder Auswahlberechtigung für {},
Or,Oder,
@ -4801,7 +4769,7 @@ No.,Nr.,number
No.,Nein.,opposite of yes
There are no upcoming events for you.,Es sind keine Termine für Sie geplant.,
No Upcoming Events,Keine bevorstehenden Termine,
"Looks like you havent received any notifications.","Sieht aus, als hätten Sie keine Benachrichtigungen erhalten.",
Looks like you havent received any notifications.,"Sieht aus, als hätten Sie keine Benachrichtigungen erhalten.",
No New notifications,Keine neuen Benachrichtigungen,
Overview,Übersicht,
Connections,Verknüpfungen,
@ -4882,3 +4850,139 @@ Filters:,Filter:,
{0} is not like {1},{0} ist nicht wie {1},
{0} is set,{0} ist eingetragen,
{0} is not set,{0} ist nicht eingetragen,
Add Row,Zeile hinzufügen,
Analytics,Analysetools,
Anonymous,Anonym,
Author,Autor,
Basic,Grundeinkommen,
Billing,Abrechnung,
Billing Contact,Abrechnungskontakt,
Contact Details,Kontakt-Details,
Datetime,Datum und Uhrzeit,
Enable,ermöglichen,
Event,Ereignis,
Full,Voll,
Insert,Einfügen,
Interests,Interessen,
Language Name,Sprache Name,
License,Lizenz,
Limit,Grenze,
Log,Log,
Meeting,Treffen,
My Account,Mein Konto,
Newsletters,Newsletter,
Password,Passwort,
Pincode,Postleitzahl,
Please select prefix first,Bitte zuerst Präfix auswählen,
Please set Email Address,Bitte setzen Sie E-Mail-Adresse,
Please set the series to be used.,Bitte legen Sie die zu verwendende Serie fest.,
Portal Settings,Portaleinstellungen,
Reference Owner,Referenz Besitzer,
Region,Region,
Report Builder,Berichts-Generator,
Sample,Beispiel,
Saved,Gespeichert,
Series {0} already used in {1},Serie {0} bereits verwendet in {1},
Set as Default,Als Standard festlegen,
Shipping,Versand,
Shipping Address,Lieferadresse,
Standard,Standard,
Test,Test,
Traceback,Zurück verfolgen,
Unable to find DocType {0},DocType {0} kann nicht gefunden werden.,
Weekdays,Wochentage,
Workflow,Workflow,
You need to be logged in to access this page,Sie müssen angemeldet sein um auf diese Seite zuzugreifen,
County,Landesbezirk/Gemeinde/Kreis,
Images,Bilder,
Office,Büro,
Passive,Passiv,
Permanent,Dauerhaft,
Plant,Fabrik,
Postal,Post,
Previous,Vorhergehende,
Shop,Laden,
Subsidiary,Tochtergesellschaft,
There is some problem with the file url: {0},Es gibt irgend ein Problem mit der Datei-URL: {0},
"Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}","Sonderzeichen außer &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; Und &quot;}}&quot; sind bei der Benennung von Serien nicht zulässig {0}",
Export Type,Exporttyp,
Last Sync On,Letzte Synchronisierung an,
Webhook Secret,Webhook-Geheimnis,
Back to Home,Zurück zur Startseite,
Customize,Anpassen,
Edit Profile,Profil bearbeiten,
File Manager,Dateimanager,
Invite as User,Als Benutzer einladen,
Newsletter,Newsletter,
Printing,Druck,
Publish,Veröffentlichen,
Refreshing,Aktualisiere,
Select All,Alles auswählen,
Setup Wizard,Setup-Assistent,
Update Details,Details aktualisieren,
You,Benutzer,
{0} Name,{0} Name,
Bold,Fett gedruckt,
Center,Zentrieren,
Comment,Kommentar,
Not Found,Nicht gefunden,
User Id,Benutzeridentifikation,
Position,Position,
Crop,Ernte,
Topic,Thema,
Public Transport,Öffentlicher Verkehr,
Request Data,Daten anfordern,
Steps,Schritte,
Reference DocType,Referenz DocType,
Select Transaction,Bitte Transaktionen auswählen,
Help HTML,HTML-Hilfe,
Series List for this Transaction,Nummernkreise zu diesem Vorgang,
User must always select,Benutzer muss immer auswählen,
Check this if you want to force the user to select a series before saving. There will be no default if you check this.,"Hier aktivieren, wenn der Benutzer gezwungen sein soll, vor dem Speichern eine Serie auszuwählen. Bei Aktivierung gibt es keine Standardvorgabe.",
Prefix,Präfix,
This is the number of the last created transaction with this prefix,Dies ist die Nummer der letzten erstellten Transaktion mit diesem Präfix,
Update Series Number,Nummernkreis-Wert aktualisieren,
Validation Error,Validierungsfehler,
Andaman and Nicobar Islands,Andamanen und Nikobaren,
Andhra Pradesh,Andhra Pradesh,
Arunachal Pradesh,Arunachal Pradesh,
Assam,Assam,
Bihar,Bihar,
Chandigarh,Chandigarh,
Chhattisgarh,Chhattisgarh,
Dadra and Nagar Haveli,Dadra und Nagar Haveli,
Daman and Diu,Daman und Diu,
Delhi,Delhi,
Goa,Goa,
Gujarat,Gujarat,
Haryana,Haryana,
Himachal Pradesh,Himachal Pradesh,
Jammu and Kashmir,Jammu und Kashmir,
Jharkhand,Jharkhand,
Karnataka,Karnataka,
Kerala,Kerala,
Lakshadweep Islands,Lakshadweep-Inseln,
Madhya Pradesh,Madhya Pradesh,
Maharashtra,Maharashtra,
Manipur,Manipur,
Meghalaya,Meghalaya,
Mizoram,Mizoram,
Nagaland,Nagaland,
Odisha,Odisha,
Other Territory,Anderes Gebiet,
Pondicherry,Pondicherry,
Punjab,Punjab,
Rajasthan,Rajasthan,
Sikkim,Sikkim,
Tamil Nadu,Tamil Nadu,
Telangana,Telangana,
Tripura,Tripura,
Uttar Pradesh,Uttar Pradesh,
Uttarakhand,Uttarakhand,
West Bengal,West Bengal,
Published on,Veröffentlicht auf,
Bottom,Unterseite,
Top,oben,
Prepend the template to the email message,Vorlage oberhalb der Email-Nachricht einfügen,
Clear & Add Template,Leeren und Vorlage einfügen,
Clear the email message and add the template,Email-Feld leeren und Vorlage einfügen,

1 A4 A4
9 Actions Aktionen
10 Active Aktiv
11 Add Hinzufügen
Add Comment Kommentar hinzufügen
12 Add Row Zeile hinzufügen
13 Address Adresse
14 Address Line 2 Adresse Zeile 2
146 Monthly Monatlich
147 More Weiter
148 More Information Mehr Informationen
More... Mehr...
149 Move Verschieben
150 My Account Mein Konto
151 My Profile Mein Profil
161 None Keine
162 Not Permitted Nicht zulässig
163 Not active Nicht aktiv
Notes Hinweise
164 Number Nummer
165 Online Online
166 Operation Arbeitsgang
170 Page Missing or Moved Seite fehlt oder befindet sich an einem neuen Ort
171 Parameter Parameter
172 Password Passwort
Payment Gateway Zahlungs-Gateways
Payment Gateway Name Name des Zahlungsgateways
Payments Zahlungen
173 Period Periode
174 Pincode Postleitzahl
Plan Name Planname
175 Please enable pop-ups Bitte Pop-ups aktivieren
176 Please select Company Bitte Unternehmen auswählen
177 Please select {0} Bitte {0} auswählen
178 Please set Email Address Bitte setzen Sie E-Mail-Adresse
Portal Portal
179 Portal Settings Portaleinstellungen
180 Preview Vorschau
181 Primary Primär
220 Sample Beispiel
221 Saturday Samstag
222 Saved Gespeichert
Scan Barcode Barcode scannen
223 Scheduled Geplant
224 Search Suchen
225 Secret Key Geheimer Schlüssel
234 Shipping Versand
235 Short Name Kürzel
236 Slideshow Diaschau
Some information is missing Einige Informationen fehlen
237 Source Quelle
238 Source Name Quellenname
239 Standard Standard
243 Stopped Angehalten
244 Subject Betreff
245 Submit Buchen
Successful Erfolgreich
246 Summary Zusammenfassung
247 Sunday Sonntag
248 System Manager System-Manager
255 Timespan Zeitspanne
256 To Zu
257 To Date Bis-Datum
Tools Werkzeuge
258 Traceback Zurück verfolgen
259 URL URL
260 Unsubscribed Abgemeldet
Use Sandbox Sandkastenmodus verwenden
261 User Nutzer
262 User ID Benutzer-ID
263 Users Benutzer
563 Bulk Edit {0} Massen-Bearbeitung {0}
564 Bulk Rename Werkzeug zum Massen-Umbenennen
565 Bulk Update Massen-Update
Busy Beschäftigt
566 Button Schaltfläche
567 Button Help Hilfetaste
568 Button Label Tastenbeschriftung
699 Complete By Fertigstellen bis
700 Complete Registration Anmeldung abschliessen
701 Complete Setup Einrichtung abschliessen
Completed By Vervollständigt von
702 Compose Email E-Mail verfassen
703 Condition Detail Zustandsdetail
704 Conditions Bedingungen
1384 Is Home Folder Ist Ordner für Startseite
1385 Is Mandatory Field Ist Pflichtfeld
1386 Is Pinned Ist angeheftet
1387 Is Primary Contact Ist primärer Ansprechpartner Ist Hauptkontakt
1388 Is Private Ist Privat
1389 Is Published Field Ist Veröffentlicht Feld
1390 Is Published Field must be a valid fieldname Ist Veröffentlicht Feld muss eine gültige Feldname sein
1393 Is Standard Ist Standard
1394 Is Submittable Ist übertragbar
1395 Is Table ist eine Tabelle
Is Template Ist Vorlage
1396 Is Your Company Address Ist Ihre Unternehmensadresse
1397 It is risky to delete this file: {0}. Please contact your System Manager. Es ist riskant, diese Datei zu löschen: {0}. Bitte kontaktieren Sie Ihren System-Manager.
1398 Item cannot be added to its own descendants Artikel kann nicht zu seinen eigenen Abkömmlingen hinzugefügt werden
1829 PayPal Settings PayPal-Einstellungen
1830 PayPal payment gateway settings PayPal Payment-Gateway-Einstellungen
1831 Payment Cancelled Zahlung Cancelled
Payment Failed Bezahlung fehlgeschlagen
1832 Payment Success Zahlungserfolg
1833 Pending Approval Genehmigung ausstehend
1834 Pending Verification Ausstehende Bestätigung
1940 Previous Vorhergehende
1941 Previous Hash Vorheriger Hash
1942 Primary Color Primärfarbe
1943 Primary Address Hauptadresse
1944 Primary Contact Hauptkontakt
1945 Primary Email Haupt-E-Mail
1946 Primary Mobile Haupt-Mobiltelefon
1947 Primary Phone Haupttelefon
1948 Print Documents Dokumente drucken
1949 Print Format Builder Programm zum Erstellen von Druckformaten
1950 Print Format Help Hilfe zu Druckformaten
3237 Click on the lock icon to toggle public/private Klicken Sie auf das Schlosssymbol, um zwischen öffentlich und privat zu wechseln
3238 Click on {0} to generate Refresh Token. Klicken Sie auf {0}, um das Refresh Token zu generieren.
3239 Close Condition Zustand schließen
Column {0} Spalte {0}
3240 Columns / Fields Spalten / Felder
3241 Configure notifications for mentions, assignments, energy points and more. Konfigurieren Sie Benachrichtigungen für Erwähnungen, Zuweisungen, Energiepunkte und mehr.
3242 Contact Email Kontakt-E-Mail
3321 Failure Fehler
3322 Fetching default Global Search documents. Abrufen von Standarddokumenten der globalen Suche.
3323 Fetching posts... Beiträge werden abgerufen ...
Field Mapping Feldzuordnung
3324 Field To Check Zu überprüfendes Feld
3325 File Information Dateiinformationen
3326 Filter By Filtern nach
3475 No records will be exported Es werden keine Datensätze exportiert
3476 No results found for {0} in Global Search Keine Ergebnisse für {0} in der globalen Suche gefunden
3477 No user found Kein Benutzer gefunden
Not Specified Keine Angabe
3478 Notification Log Benachrichtigungsprotokoll
3479 Notification Settings Benachrichtigungseinstellungen
3480 Notification Subscribed Document Benachrichtigungsdokument abonniert
3630 Untranslated Nicht übersetzt
3631 Upcoming Events Kommende Veranstaltungen
3632 Update Existing Records Bestehende Datensätze aktualisieren
Update Type Aktualisierungsart
3633 Updated To A New Version 🎉 Auf eine neue Version aktualisiert 🎉
3634 Updating {0} of {1}, {2} {0} von {1}, {2} wird aktualisiert
3635 Upload file Datei hochladen
3737 Doctype DocType
3738 Done Erledigt
3739 Download Template Vorlage herunterladen
Dr Soll
3740 Due Date Fälligkeitsdatum
3741 Duplicate Duplizieren
3742 Edit Profile Profil bearbeiten
End Time Endzeit
3743 Enter Value Wert eingeben
3744 Entity Type Entitätstyp
3745 Error Fehler
3746 Expired Verfallen
3747 Export Export
3748 Export not allowed. You need {0} role to export. Export nicht erlaubt. Rolle {0} wird gebraucht zum exportieren.
Fetching... Abrufen ...
3749 Field Feld
3750 File Manager Dateimanager
3751 Filters Filter
3760 In Progress In Bearbeitung
3761 Intermediate Mittlere
3762 Invite as User Als Benutzer einladen
It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account. Es scheint, dass ein Problem mit der Stripe-Konfiguration des Servers vorliegt. Im Falle eines Fehlers wird der Betrag Ihrem Konto gutgeschrieben.
3763 Loading... Laden ...
3764 Location Ort
Looks like someone sent you to an incomplete URL. Please ask them to look into it. Sieht aus wie jemand, den Sie zu einer unvollständigen URL gesendet. Bitte fragen Sie sie, sich in sie.
Master Vorlage
3765 Message Botschaft
3766 Missing Values Required Angaben zu fehlenden Werten erforderlich
3767 Mobile No Mobilfunknummer
3773 Offline Offline
3774 Open Offen
3775 Page {0} of {1} Seite {0} von {1}
Pay Zahlen
3776 Pending Ausstehend
3777 Phone Telefon
3778 Please click on the following link to set your new password Bitte auf die folgende Verknüpfung klicken um ein neues Passwort zu setzen
3822 Year Jahr
3823 Yearly Jährlich
3824 You Sie
You can also copy-paste this link in your browser Sie können diese Verknüpfung in Ihren Browser kopieren
3825 and und
3826 {0} Name {0} Name
3827 {0} is required {0} erforderlich
4127 Navbar Navbar
4128 Source Message Ursprünglicher Text
4129 Translated Message Übersetzter Text
Verified By Überprüft von
4130 Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand. Die Verwendung dieser Konsole kann es Angreifern ermöglichen, sich als Sie auszugeben und Ihre Informationen zu stehlen. Geben Sie keinen Code ein oder fügen Sie ihn nicht ein, den Sie nicht verstehen.
4131 {0} m {0} m
4132 {0} h {0} h
4158 {0} is not a valid Name {0} ist kein gültiger Name
4159 Your system is being updated. Please refresh again after a few moments. Ihr System wird aktualisiert. Bitte aktualisieren Sie nach einigen Augenblicken erneut.
4160 {0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first. {0} {1}: Übermittelter Datensatz kann nicht gelöscht werden. Sie müssen {2} zuerst {3} abbrechen.
Invalid naming series (. missing) for {0} Ungültige Namensreihe (. Fehlt) für {0}
4161 Error has occurred in {0} In {0} ist ein Fehler aufgetreten
4162 Status Updated Status aktualisiert
4163 You can also copy-paste this {0} to your browser Sie können diese {0} auch kopieren und in Ihren Browser einfügen
4179 Address And Contacts Adresse und Kontakte
4180 Lead Conversion Time Lead-Umwandlungszeit
4181 Due Date Based On Fälligkeitsdatum basiert auf
Phone Number Telefonnummer
4182 Linked Documents Verknüpfte Dokumente
Account SID Konto-SID
4183 Steps Schritte
4184 email E-Mail
4185 Component Komponente
4186 Subtitle Untertitel
Global Defaults Allgemeine Voreinstellungen
4187 Prefix Präfix
4188 Is Public Ist öffentlich
4189 This chart will be available to all Users if this is set Dieses Diagramm steht allen Benutzern zur Verfügung, wenn dies festgelegt ist
4370 Please create Card first Bitte erstellen Sie zuerst die Karte
4371 Onboarding Permission Onboarding-Erlaubnis
4372 Onboarding Step Onboarding-Schritt
Is Mandatory Ist obligatorisch
4373 Is Skipped Wird übersprungen
4374 Create Entry Eintrag erstellen
4375 Update Settings Update Einstellungen
4407 Send Attachments Anhänge senden
4408 Testing Testen
4409 System Notification Systembenachrichtigung
WhatsApp WhatsApp
4410 Twilio Number Twilio Nummer
4411 To use WhatsApp for Business, initialize <a href="#Form/Twilio Settings">Twilio Settings</a>. Initialisieren Sie die <a href="#Form/Twilio Settings">Twilio-Einstellungen,</a> um WhatsApp for Business zu verwenden.
4412 To use Slack Channel, add a <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook URL</a>. Um Slack Channel zu verwenden, fügen Sie eine <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook-URL hinzu</a> .
4541 {0} are currently {1} {0} sind derzeit {1}
4542 Currently Replying Derzeit antworten
4543 created {0} erstellt {0}
Make a call Einen Anruf tätigen
4544 Change Veränderung Coins
4545 Too Many Requests Zu viele Anfragen
4546 Invalid Authorization headers, add a token with a prefix from one of the following: {0}. Fügen Sie bei ungültigen Autorisierungsheadern ein Token mit einem Präfix aus einem der folgenden Elemente hinzu: {0}.
4748 Password set Passwort gesetzt
4749 Your new password has been set successfully. Ihr Passwort wurde erfolgreich aktualisiert.
4750 You hit the rate limit because of too many requests. Please try after sometime. Sie haben die maximale Anzahl an Anfragen erreicht. Bitte versuchen Sie es später noch einmal.
4751 You need {0} permission to fetch values from {1} {2} Sie benötigen eine {0}-Berechtigung, um die Werte von {1} {2} abzurufen
4752 Cannot Fetch Values Werte können nicht abgerufen werden
4753 You do not have Read or Select Permissions for {} Sie haben keine Lese- oder Auswahlberechtigung für {}
4754 Or Oder
4769 No. Nein. opposite of yes
4770 There are no upcoming events for you. Es sind keine Termine für Sie geplant.
4771 No Upcoming Events Keine bevorstehenden Termine
4772 Looks like you haven’t received any notifications. Sieht aus, als hätten Sie keine Benachrichtigungen erhalten.
4773 No New notifications Keine neuen Benachrichtigungen
4774 Overview Übersicht
4775 Connections Verknüpfungen
4850 {0} is not like {1} {0} ist nicht wie {1}
4851 {0} is set {0} ist eingetragen
4852 {0} is not set {0} ist nicht eingetragen
4853 Add Row Zeile hinzufügen
4854 Analytics Analysetools
4855 Anonymous Anonym
4856 Author Autor
4857 Basic Grundeinkommen
4858 Billing Abrechnung
4859 Billing Contact Abrechnungskontakt
4860 Contact Details Kontakt-Details
4861 Datetime Datum und Uhrzeit
4862 Enable ermöglichen
4863 Event Ereignis
4864 Full Voll
4865 Insert Einfügen
4866 Interests Interessen
4867 Language Name Sprache Name
4868 License Lizenz
4869 Limit Grenze
4870 Log Log
4871 Meeting Treffen
4872 My Account Mein Konto
4873 Newsletters Newsletter
4874 Password Passwort
4875 Pincode Postleitzahl
4876 Please select prefix first Bitte zuerst Präfix auswählen
4877 Please set Email Address Bitte setzen Sie E-Mail-Adresse
4878 Please set the series to be used. Bitte legen Sie die zu verwendende Serie fest.
4879 Portal Settings Portaleinstellungen
4880 Reference Owner Referenz Besitzer
4881 Region Region
4882 Report Builder Berichts-Generator
4883 Sample Beispiel
4884 Saved Gespeichert
4885 Series {0} already used in {1} Serie {0} bereits verwendet in {1}
4886 Set as Default Als Standard festlegen
4887 Shipping Versand
4888 Shipping Address Lieferadresse
4889 Standard Standard
4890 Test Test
4891 Traceback Zurück verfolgen
4892 Unable to find DocType {0} DocType {0} kann nicht gefunden werden.
4893 Weekdays Wochentage
4894 Workflow Workflow
4895 You need to be logged in to access this page Sie müssen angemeldet sein um auf diese Seite zuzugreifen
4896 County Landesbezirk/Gemeinde/Kreis
4897 Images Bilder
4898 Office Büro
4899 Passive Passiv
4900 Permanent Dauerhaft
4901 Plant Fabrik
4902 Postal Post
4903 Previous Vorhergehende
4904 Shop Laden
4905 Subsidiary Tochtergesellschaft
4906 There is some problem with the file url: {0} Es gibt irgend ein Problem mit der Datei-URL: {0}
4907 Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0} Sonderzeichen außer &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; Und &quot;}}&quot; sind bei der Benennung von Serien nicht zulässig {0}
4908 Export Type Exporttyp
4909 Last Sync On Letzte Synchronisierung an
4910 Webhook Secret Webhook-Geheimnis
4911 Back to Home Zurück zur Startseite
4912 Customize Anpassen
4913 Edit Profile Profil bearbeiten
4914 File Manager Dateimanager
4915 Invite as User Als Benutzer einladen
4916 Newsletter Newsletter
4917 Printing Druck
4918 Publish Veröffentlichen
4919 Refreshing Aktualisiere
4920 Select All Alles auswählen
4921 Setup Wizard Setup-Assistent
4922 Update Details Details aktualisieren
4923 You Benutzer
4924 {0} Name {0} Name
4925 Bold Fett gedruckt
4926 Center Zentrieren
4927 Comment Kommentar
4928 Not Found Nicht gefunden
4929 User Id Benutzeridentifikation
4930 Position Position
4931 Crop Ernte
4932 Topic Thema
4933 Public Transport Öffentlicher Verkehr
4934 Request Data Daten anfordern
4935 Steps Schritte
4936 Reference DocType Referenz DocType
4937 Select Transaction Bitte Transaktionen auswählen
4938 Help HTML HTML-Hilfe
4939 Series List for this Transaction Nummernkreise zu diesem Vorgang
4940 User must always select Benutzer muss immer auswählen
4941 Check this if you want to force the user to select a series before saving. There will be no default if you check this. Hier aktivieren, wenn der Benutzer gezwungen sein soll, vor dem Speichern eine Serie auszuwählen. Bei Aktivierung gibt es keine Standardvorgabe.
4942 Prefix Präfix
4943 This is the number of the last created transaction with this prefix Dies ist die Nummer der letzten erstellten Transaktion mit diesem Präfix
4944 Update Series Number Nummernkreis-Wert aktualisieren
4945 Validation Error Validierungsfehler
4946 Andaman and Nicobar Islands Andamanen und Nikobaren
4947 Andhra Pradesh Andhra Pradesh
4948 Arunachal Pradesh Arunachal Pradesh
4949 Assam Assam
4950 Bihar Bihar
4951 Chandigarh Chandigarh
4952 Chhattisgarh Chhattisgarh
4953 Dadra and Nagar Haveli Dadra und Nagar Haveli
4954 Daman and Diu Daman und Diu
4955 Delhi Delhi
4956 Goa Goa
4957 Gujarat Gujarat
4958 Haryana Haryana
4959 Himachal Pradesh Himachal Pradesh
4960 Jammu and Kashmir Jammu und Kashmir
4961 Jharkhand Jharkhand
4962 Karnataka Karnataka
4963 Kerala Kerala
4964 Lakshadweep Islands Lakshadweep-Inseln
4965 Madhya Pradesh Madhya Pradesh
4966 Maharashtra Maharashtra
4967 Manipur Manipur
4968 Meghalaya Meghalaya
4969 Mizoram Mizoram
4970 Nagaland Nagaland
4971 Odisha Odisha
4972 Other Territory Anderes Gebiet
4973 Pondicherry Pondicherry
4974 Punjab Punjab
4975 Rajasthan Rajasthan
4976 Sikkim Sikkim
4977 Tamil Nadu Tamil Nadu
4978 Telangana Telangana
4979 Tripura Tripura
4980 Uttar Pradesh Uttar Pradesh
4981 Uttarakhand Uttarakhand
4982 West Bengal West Bengal
4983 Published on Veröffentlicht auf
4984 Bottom Unterseite
4985 Top oben
4986 Prepend the template to the email message Vorlage oberhalb der Email-Nachricht einfügen
4987 Clear & Add Template Leeren und Vorlage einfügen
4988 Clear the email message and add the template Email-Feld leeren und Vorlage einfügen

View file

@ -9,7 +9,6 @@ Action,Ενέργεια,
Actions,Ενέργειες,
Active,Ενεργός,
Add,Προσθήκη,
Add Comment,Πρόσθεσε σχόλιο,
Add Row,Προσθήκη Γραμμής,
Address,Διεύθυνση,
Address Line 2,Γραμμή διεύθυνσης 2,
@ -144,7 +143,6 @@ Monday,Δευτέρα,
Monthly,Μηνιαίος,
More,Περισσότερο,
More Information,Περισσότερες πληροφορίες,
More...,Περισσότερο...,
Move,Μεταφορά,
My Account,Ο Λογαριασμός Μου,
New Address,Νέα διεύθυνση,
@ -157,7 +155,6 @@ No items found.,Δεν βρέθηκαν αντικείμενα.,
None,Κανένας,
Not Permitted,Δεν επιτρέπεται,
Not active,Ανενεργό,
Notes,Σημειώσεις,
Number,Αριθμός,
Online,σε απευθείας σύνδεση,
Operation,Λειτουργία,
@ -167,17 +164,12 @@ Owner,Ιδιοκτήτης,
Page Missing or Moved,Η σελίδα λείπει ή έχει μετακινηθεί,
Parameter,Παράμετρος,
Password,Κωδικός,
Payment Gateway,Πύλη Πληρωμών,
Payment Gateway Name,Όνομα πύλης πληρωμής,
Payments,Πληρωμές,
Period,Περίοδος,
Pincode,Κωδικός pin,
Plan Name,Όνομα προγράμματος,
Please enable pop-ups,Παρακαλούμε ενεργοποιήστε τα pop-ups,
Please select Company,Επιλέξτε Εταιρεία,
Please select {0},Παρακαλώ επιλέξτε {0},
Please set Email Address,Παρακαλούμε να ορίσετε τη διεύθυνση ηλεκτρονικού ταχυδρομείου,
Portal,Πύλη,
Portal Settings,portal Ρυθμίσεις,
Preview,Προεπισκόπηση,
Primary,Πρωταρχικός,
@ -222,7 +214,6 @@ Salutation,Χαιρετισμός,
Sample,Δείγμα,
Saturday,Σάββατο,
Saved,Αποθηκεύτηκε,
Scan Barcode,Scan Barcode,
Scheduled,Προγραμματισμένη,
Search,Αναζήτηση,
Secret Key,Μυστικό κλειδί,
@ -237,7 +228,6 @@ Settings,Ρυθμίσεις,
Shipping,Αποστολή,
Short Name,Σύντομη ονομασία,
Slideshow,Παρουσίαση,
Some information is missing,Ορισμένες πληροφορίες λείπουν,
Source,Πηγή,
Source Name,Όνομα πηγή,
Standard,Πρότυπο,
@ -247,7 +237,6 @@ State,κατάσταση,
Stopped,Σταματημένη,
Subject,Θέμα,
Submit,Υποβολή,
Successful,Επιτυχής,
Summary,Περίληψη,
Sunday,Κυριακή,
System Manager,Διαχειριστής συστήματος,
@ -260,11 +249,9 @@ The page you are looking for is missing. This could be because it is moved or th
Timespan,Χρονικό διάστημα,
To,Προς το,
To Date,Έως ημερομηνία,
Tools,Εργαλεία,
Traceback,Ανατρέχω,
URL,URL,
Unsubscribed,Χωρίς συνδρομή,
Use Sandbox,χρήση Sandbox,
User,Χρήστης,
User ID,ID χρήστη,
Users,Χρήστες,
@ -569,7 +556,6 @@ Bulk Delete,Μαζική διαγραφή,
Bulk Edit {0},Μαζική Επεξεργασία {0},
Bulk Rename,Μαζική Μετονομασία,
Bulk Update,Μαζική Ενημέρωση,
Busy,Απασχολημένος,
Button,Κουμπί,
Button Help,κουμπί Βοήθεια,
Button Label,Button Label,
@ -706,7 +692,6 @@ Compiled Successfully,Σύνταξη με επιτυχία,
Complete By,Συμπληρώστε Με,
Complete Registration,Ολοκλήρωση εγγραφής,
Complete Setup,Ολοκλήρωση της εγκατάστασης,
Completed By,Ολοκληρώθηκε από,
Compose Email,Συνθέστε Email,
Condition Detail,Λεπτομέρεια κατάστασης,
Conditions,Συνθήκες,
@ -1691,7 +1676,7 @@ Not a valid user,Δεν είναι ένα έγκυρο χρήστη,
Not a zip file,Δεν είναι ένα αρχείο zip,
Not allowed for {0}: {1},Δεν επιτρέπεται για {0}: {1},
"You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4}","Δεν επιτρέπεται η πρόσβαση {0} επειδή είναι συνδεδεμένο με {1} '{2}' στην γραμμή {3}, πεδίο {4}",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},"Δεν επιτρέπεται η πρόσβαση σε αυτό το {0} εγγραφή επειδή είναι συνδεδεμένο με {1} '{2}' στο πεδίο {3}",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},Δεν επιτρέπεται η πρόσβαση σε αυτό το {0} εγγραφή επειδή είναι συνδεδεμένο με {1} '{2}' στο πεδίο {3},
Not allowed to Import,Δεν επιτρέπεται η εισαγωγή,
Not allowed to change {0} after submission,Δεν επιτρέπεται να αλλάξετε {0} μετά την υποβολή,
Not allowed to print cancelled documents,Δεν επιτρέπεται να εκτυπώσετε ακυρωθεί έγγραφα,
@ -1819,7 +1804,6 @@ Path to private Key File,Διαδρομή σε ιδιωτικό αρχείο κ
PayPal Settings,Ρυθμίσεις PayPal,
PayPal payment gateway settings,Ρυθμίσεις πύλη πληρωμών PayPal,
Payment Cancelled,πληρωμή Ακυρώθηκε,
Payment Failed,Η πληρωμή απέτυχε,
Payment Success,επιτυχία πληρωμής,
Pending Approval,Εκκρεμεί έγκριση,
Pending Verification,Εκκρεμεί Επαλήθευση,
@ -3216,7 +3200,6 @@ Click on the link below to approve the request,Κάντε κλικ στον πα
Click on the lock icon to toggle public/private,Κάντε κλικ στο εικονίδιο κλειδώματος για να μεταβείτε στο δημόσιο / ιδιωτικό,
Click on {0} to generate Refresh Token.,Κάντε κλικ στο {0} για να δημιουργήσετε το Refresh Token.,
Close Condition,Κλείστε την κατάσταση,
Column {0},Στήλη {0},
Columns / Fields,Στήλες / Πεδία,
"Configure notifications for mentions, assignments, energy points and more.","Ρυθμίστε τις ειδοποιήσεις για αναφορές, αναθέσεις, ενεργειακά σημεία και πολλά άλλα.",
Contact Email,Email επαφής,
@ -3298,7 +3281,6 @@ Failed to create an Event Consumer or an Event Consumer for the current site is
Failure,Αποτυχία,
Fetching default Global Search documents.,Λήψη προεπιλεγμένων εγγράφων για την Παγκόσμια αναζήτηση.,
Fetching posts...,Λήψη αναρτήσεων ...,
Field Mapping,Χαρτογράφηση πεδίων,
Field To Check,Πεδίο για έλεγχο,
File Information,Πληροφορίες αρχείου,
Filter By,Φιλτράρετε με,
@ -3453,7 +3435,6 @@ No posts yet,Καμμία δημοσίευση ακόμη,
No records will be exported,Δεν θα εξαχθούν αρχεία,
No results found for {0} in Global Search,Δεν βρέθηκαν αποτελέσματα για το {0} στην Παγκόσμια Αναζήτηση,
No user found,Δεν βρέθηκε χρήστης,
Not Specified,Δεν διευκρινίζεται,
Notification Log,Μητρώο ειδοποιήσεων,
Notification Settings,Ρυθμίσεις ειδοποιήσεων,
Notification Subscribed Document,Εγγραφή εγγράφου,
@ -3609,7 +3590,6 @@ Untitled Column,Στήλη χωρίς τίτλο,
Untranslated,Αμεταγλώττιστος,
Upcoming Events,Ανερχόμενες εκδηλώσεις,
Update Existing Records,Ενημέρωση υφιστάμενων αρχείων,
Update Type,Τύπος ενημέρωσης,
Updated To A New Version 🎉,Ενημερώθηκε σε μια νέα έκδοση 🎉,
"Updating {0} of {1}, {2}","Ενημέρωση {0} από {1}, {2}",
Upload file,Ανέβασμα αρχείου,
@ -3716,19 +3696,16 @@ Designation,Ονομασία,
Disabled,Απενεργοποιημένο,
Doctype,DocType,
Download Template,Κατεβάστε πρότυπο,
Dr,Dr,
Due Date,Ημερομηνία λήξης προθεσμίας,
Duplicate,Διπλότυπο,
Edit Profile,Επεξεργασία προφίλ,
Email,ΗΛΕΚΤΡΟΝΙΚΗ ΔΙΕΥΘΥΝΣΗ,
End Time,Ώρα λήξης,
Enter Value,Εισάγετε τιμή,
Entity Type,Τύπος Οντότητας,
Error,Σφάλμα,
Expired,Έληξε,
Export,Εξαγωγή,
Export not allowed. You need {0} role to export.,Η εξαγωγή δεν επιτρέπεται. Χρειάζεται ο ρόλος {0} για την εξαγωγή.,
Fetching...,Γοητευτικός...,
Field,Πεδίο,
File Manager,Διαχείριση αρχείων,
Filters,Φίλτρα,
@ -3743,11 +3720,8 @@ Import Data from CSV / Excel files.,Εισαγωγή δεδομένων από
In Progress,Σε εξέλιξη,
Intermediate,Ενδιάμεσος,
Invite as User,Πρόσκληση ως χρήστη,
"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Φαίνεται ότι υπάρχει ένα πρόβλημα με τη διαμόρφωση της λωρίδας του διακομιστή. Σε περίπτωση αποτυχίας, το ποσό θα επιστραφεί στο λογαριασμό σας.",
Loading...,Φόρτωση...,
Location,Τοποθεσία,
Looks like someone sent you to an incomplete URL. Please ask them to look into it.,Μοιάζει με κάποιον που αποστέλλονται σε μια ελλιπή διεύθυνση URL. Παρακαλούμε να τους ζητήσει να εξετάσουμε το θέμα.,
Master,Κύρια εγγραφή,
Message,Μήνυμα,
Missing Values Required,Οι τιμές που λείπουν είναι απαραίτητες,
Mobile No,Αρ. Κινητού,
@ -3759,7 +3733,6 @@ Note,Σημείωση,
Offline,offline,
Open,Ανοιχτό,
Page {0} of {1},Σελίδα {0} από {1},
Pay,Πληρωμή,
Pending,εκκρεμής,
Phone,Τηλέφωνο,
Please click on the following link to set your new password,Παρακαλώ κάντε κλικ στον παρακάτω σύνδεσμο για να ορίσετε νέο κωδικό πρόσβασης,
@ -3809,7 +3782,6 @@ Welcome to {0},Καλώς να {0},
Year,Έτος,
Yearly,Ετήσια,
You,Εσείς,
You can also copy-paste this link in your browser,Μπορείτε επίσης να αντιγράψετε και να επικολλήσετε αυτό το σύνδεσμο στο πρόγραμμα περιήγησής σας,
and,Και,
{0} Name,{0} Όνομα,
{0} is required,{0} Απαιτείται,
@ -4113,7 +4085,6 @@ Custom SCSS,Προσαρμοσμένο SCSS,
Navbar,Navbar,
Source Message,Μήνυμα πηγής,
Translated Message,Μεταφρασμένο μήνυμα,
Verified By,Πιστοποιημένο από,
Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand.,Η χρήση αυτής της κονσόλας μπορεί να επιτρέψει στους εισβολείς να σας πλαστοπροσωπήσουν και να κλέψουν τις πληροφορίες σας. Μην εισάγετε και μην επικολλάτε κώδικα που δεν κατανοείτε.,
{0} m,{0} μ,
{0} h,{0} ω,
@ -4146,7 +4117,6 @@ Collapse,Κατάρρευση,
{0} is not a valid Name,Το {0} δεν είναι έγκυρο όνομα,
Your system is being updated. Please refresh again after a few moments.,Το σύστημά σας ενημερώνεται. Ανανεώστε ξανά μετά από λίγα λεπτά.,
{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first.,{0} {1}: Η υποβληθείσα εγγραφή δεν μπορεί να διαγραφεί. Πρέπει να το {2} ακυρώσετε {3} πρώτα.,
Invalid naming series (. missing) for {0},Μη έγκυρη σειρά ονομάτων (. Λείπει) για {0},
Error has occurred in {0},Παρουσιάστηκε σφάλμα στο {0},
Status Updated,Η κατάσταση ενημερώθηκε,
You can also copy-paste this {0} to your browser,Μπορείτε επίσης να αντιγράψετε και να επικολλήσετε αυτό {0} στο πρόγραμμα περιήγησής σας,
@ -4168,14 +4138,11 @@ Is Billing Contact,Είναι επαφή χρέωσης,
Address And Contacts,Διεύθυνση και επαφές,
Lead Conversion Time,Χρόνος μετατροπής μολύβδου,
Due Date Based On,Η ημερομηνία λήξης βασίζεται σε,
Phone Number,Τηλεφωνικό νούμερο,
Linked Documents,Linked Documents,
Account SID,Λογαριασμός SID,
Steps,Βήματα,
email,ΗΛΕΚΤΡΟΝΙΚΗ ΔΙΕΥΘΥΝΣΗ,
Component,Συστατικό,
Subtitle,Υπότιτλος,
Global Defaults,Καθολικές προεπιλογές,
Prefix,Πρόθεμα,
Is Public,Είναι δημόσιο,
This chart will be available to all Users if this is set,Αυτό το γράφημα θα είναι διαθέσιμο σε όλους τους χρήστες εάν έχει ρυθμιστεί,
@ -4362,7 +4329,6 @@ Dynamic Filters Section,Ενότητα δυναμικών φίλτρων,
Please create Card first,Δημιουργήστε πρώτα την κάρτα,
Onboarding Permission,Άδεια επιβίβασης,
Onboarding Step,Βήμα επιβίβασης,
Is Mandatory,Ειναι υποχρεωτικό,
Is Skipped,Έχει παραλειφθεί,
Create Entry,Δημιουργία καταχώρησης,
Update Settings,Ρυθμίσεις ενημέρωσης,
@ -4400,7 +4366,6 @@ Message (HTML),Μήνυμα (HTML),
Send Attachments,Αποστολή συνημμένων,
Testing,Δοκιμές,
System Notification,Ειδοποίηση συστήματος,
WhatsApp,WhatsApp,
Twilio Number,Αριθμός Twilio,
"To use WhatsApp for Business, initialize <a href=""#Form/Twilio Settings"">Twilio Settings</a>.","Για να χρησιμοποιήσετε το WhatsApp για επιχειρήσεις, αρχικοποιήστε τις <a href=""#Form/Twilio Settings"">ρυθμίσεις Twilio</a> .",
"To use Slack Channel, add a <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL</a>.","Για να χρησιμοποιήσετε το Slack Channel, προσθέστε ένα <a href=""#List/Slack%20Webhook%20URL/List"">URL Slack Webhook</a> .",
@ -4535,7 +4500,6 @@ Add to ToDo,Προσθήκη στο ToDo,
{0} are currently {1},{0} αυτήν τη στιγμή {1},
Currently Replying,Αυτήν τη στιγμή απαντά,
created {0},δημιουργήθηκε {0},
Make a call,Τηλεφώνησε,
Change,Αλλαγή,Coins
Too Many Requests,Πάρα πολλά αιτήματα,
"Invalid Authorization headers, add a token with a prefix from one of the following: {0}.","Μη έγκυρες κεφαλίδες εξουσιοδότησης, προσθέστε ένα διακριτικό με πρόθεμα από ένα από τα ακόλουθα: {0}.",
@ -4700,3 +4664,135 @@ Value cannot be negative for {0}: {1},Η τιμή δεν μπορεί να εί
Negative Value,Αρνητική τιμή,
Authentication failed while receiving emails from Email Account: {0}.,Ο έλεγχος ταυτότητας απέτυχε κατά τη λήψη μηνυμάτων ηλεκτρονικού ταχυδρομείου από λογαριασμό ηλεκτρονικού ταχυδρομείου: {0}.,
Message from server: {0},Μήνυμα από διακομιστή: {0},
Add Row,Προσθήκη Γραμμής,
Analytics,Analytics,
Anonymous,Ανώνυμος,
Author,Συγγραφέας,
Basic,Βασικός,
Billing,Χρέωση,
Contact Details,Στοιχεία επικοινωνίας επαφής,
Datetime,Datetime,
Enable,Ενεργοποίηση,
Event,Συμβάν,
Full,Γεμάτος,
Insert,Εισαγωγή,
Interests,Ενδιαφέροντα,
Language Name,γλώσσα Όνομα,
License,Αδεια,
Limit,Όριο,
Log,Κούτσουρο,
Meeting,Συνάντηση,
My Account,Ο Λογαριασμός Μου,
Newsletters,Ενημερωτικά δελτία,
Password,Κωδικός,
Pincode,Κωδικός pin,
Please select prefix first,Παρακαλώ επιλέξτε πρόθεμα πρώτα,
Please set Email Address,Παρακαλούμε να ορίσετε τη διεύθυνση ηλεκτρονικού ταχυδρομείου,
Please set the series to be used.,Ορίστε τη σειρά που θα χρησιμοποιηθεί.,
Portal Settings,portal Ρυθμίσεις,
Reference Owner,αναφορά Ιδιοκτήτης,
Region,Περιοχή,
Report Builder,Δημιουργός εκθέσεων,
Sample,Δείγμα,
Saved,Αποθηκεύτηκε,
Series {0} already used in {1},Η σειρά {0} έχει ήδη χρησιμοποιηθεί σε {1},
Set as Default,Ορισμός ως προεπιλογή,
Shipping,Αποστολή,
Standard,Πρότυπο,
Test,Δοκιμή,
Traceback,Ανατρέχω,
Unable to find DocType {0},Δεν είναι δυνατή η εύρεση του DocType {0},
Weekdays,Εργάσιμες,
Workflow,Ροή εργασίας,
You need to be logged in to access this page,Θα πρέπει να συνδεθείτε για να αποκτήσετε πρόσβαση σε αυτήν τη σελίδα,
County,Κομητεία,
Images,εικόνες,
Office,Γραφείο,
Passive,Αδρανής,
Permanent,Μόνιμος,
Plant,Βιομηχανικός εξοπλισμός,
Postal,Ταχυδρομικός,
Previous,Προηγούμενο,
Shop,Κατάστημα,
Subsidiary,Θυγατρική,
There is some problem with the file url: {0},Υπάρχει κάποιο πρόβλημα με το url αρχείο: {0},
"Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}","Ειδικοί χαρακτήρες εκτός από &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{&quot; Και &quot;}}&quot; δεν επιτρέπονται στη σειρά ονομασίας {0}",
Export Type,Τύπος εξαγωγής,
Last Sync On,Ο τελευταίος συγχρονισμός είναι ενεργοποιημένος,
Webhook Secret,Webhook Secret,
Back to Home,Πίσω στο σπίτι,
Customize,Προσαρμογή,
Edit Profile,Επεξεργασία προφίλ,
File Manager,Διαχείριση αρχείων,
Invite as User,Πρόσκληση ως χρήστη,
Newsletter,Ενημερωτικό δελτίο,
Printing,Εκτύπωση,
Publish,Δημοσιεύω,
Refreshing,Ανανεώνεται,
Select All,Επιλέξτε All,
Set,Σετ,
Setup Wizard,Οδηγός εγκατάστασης,
Update Details,Λεπτομέρειες ενημέρωσης,
You,Εσείς,
{0} Name,{0} Όνομα,
Bold,Τολμηρός,
Center,Κέντρο,
Comment,Σχόλιο,
Not Found,Δεν βρέθηκε,
User Id,Ταυτότητα χρήστη,
Position,Θέση,
Crop,Καλλιέργεια,
Topic,Θέμα,
Public Transport,Δημόσια συγκοινωνία,
Request Data,Ζητήστε δεδομένα,
Steps,Βήματα,
Reference DocType,DocType αναφοράς,
Select Transaction,Επιλέξτε συναλλαγή,
Help HTML,Βοήθεια ΗΤΜΛ,
Series List for this Transaction,Λίστα σειράς για αυτή τη συναλλαγή,
User must always select,Ο χρήστης πρέπει πάντα να επιλέγει,
Check this if you want to force the user to select a series before saving. There will be no default if you check this.,"Ελέγξτε αυτό, αν θέλετε να αναγκάσει τον χρήστη να επιλέξει μια σειρά πριν από την αποθήκευση. Δεν θα υπάρξει καμία προεπιλογή αν επιλέξετε αυτό.",
Prefix,Πρόθεμα,
This is the number of the last created transaction with this prefix,Αυτός είναι ο αριθμός της τελευταίας συναλλαγής που δημιουργήθηκε με αυτό το πρόθεμα,
Update Series Number,Ενημέρωση αριθμού σειράς,
Validation Error,Σφάλμα επικύρωσης,
Andaman and Nicobar Islands,Νησιά Ανταμάν και Νικομπάρ,
Andhra Pradesh,Άντρα Πραντές,
Arunachal Pradesh,Arunachal Pradesh,
Assam,Άσαμ,
Bihar,Μπιχάρ,
Chandigarh,Τσάντιγκαρ,
Chhattisgarh,Chhattisgarh,
Dadra and Nagar Haveli,Dadra και Nagar Haveli,
Daman and Diu,Daman και Diu,
Delhi,Δελχί,
Goa,Γκόα,
Gujarat,Γκουτζαράτ,
Haryana,Χαριάνα,
Himachal Pradesh,Χιματσάλ Πραντές,
Jammu and Kashmir,Τζαμού και Κασμίρ,
Jharkhand,Τζάρκχαντ,
Karnataka,Καρνατάκα,
Kerala,Κεράλα,
Lakshadweep Islands,Νησιά Lakshadweep,
Madhya Pradesh,Madhya Pradesh,
Maharashtra,Μαχαράστρα,
Manipur,Μανιπούρ,
Meghalaya,Meghalaya,
Mizoram,Mizoram,
Nagaland,Ναγκαλάντ,
Odisha,Οδησσός,
Other Territory,Άλλη επικράτεια,
Pondicherry,Ποντίτσερι,
Punjab,Πουντζάμπ,
Rajasthan,Ρατζαστάν,
Sikkim,Σικίμ,
Tamil Nadu,Ταμίλ Ναντού,
Telangana,Telangana,
Tripura,Τριπούρα,
Uttar Pradesh,Ουτάρ Πραντές,
Uttarakhand,Ουταράχσαντ,
West Bengal,Δυτική Βεγγάλη,
Published on,Δημοσιεύτηκε στις,
Bottom,Κάτω μέρος,
Top,Μπλουζα,

1 A4 A4
9 Actions Ενέργειες
10 Active Ενεργός
11 Add Προσθήκη
Add Comment Πρόσθεσε σχόλιο
12 Add Row Προσθήκη Γραμμής
13 Address Διεύθυνση
14 Address Line 2 Γραμμή διεύθυνσης 2
143 Monthly Μηνιαίος
144 More Περισσότερο
145 More Information Περισσότερες πληροφορίες
More... Περισσότερο...
146 Move Μεταφορά
147 My Account Ο Λογαριασμός Μου
148 New Address Νέα διεύθυνση
155 None Κανένας
156 Not Permitted Δεν επιτρέπεται
157 Not active Ανενεργό
Notes Σημειώσεις
158 Number Αριθμός
159 Online σε απευθείας σύνδεση
160 Operation Λειτουργία
164 Page Missing or Moved Η σελίδα λείπει ή έχει μετακινηθεί
165 Parameter Παράμετρος
166 Password Κωδικός
Payment Gateway Πύλη Πληρωμών
Payment Gateway Name Όνομα πύλης πληρωμής
Payments Πληρωμές
167 Period Περίοδος
168 Pincode Κωδικός pin
Plan Name Όνομα προγράμματος
169 Please enable pop-ups Παρακαλούμε ενεργοποιήστε τα pop-ups
170 Please select Company Επιλέξτε Εταιρεία
171 Please select {0} Παρακαλώ επιλέξτε {0}
172 Please set Email Address Παρακαλούμε να ορίσετε τη διεύθυνση ηλεκτρονικού ταχυδρομείου
Portal Πύλη
173 Portal Settings portal Ρυθμίσεις
174 Preview Προεπισκόπηση
175 Primary Πρωταρχικός
214 Sample Δείγμα
215 Saturday Σάββατο
216 Saved Αποθηκεύτηκε
Scan Barcode Scan Barcode
217 Scheduled Προγραμματισμένη
218 Search Αναζήτηση
219 Secret Key Μυστικό κλειδί
228 Shipping Αποστολή
229 Short Name Σύντομη ονομασία
230 Slideshow Παρουσίαση
Some information is missing Ορισμένες πληροφορίες λείπουν
231 Source Πηγή
232 Source Name Όνομα πηγή
233 Standard Πρότυπο
237 Stopped Σταματημένη
238 Subject Θέμα
239 Submit Υποβολή
Successful Επιτυχής
240 Summary Περίληψη
241 Sunday Κυριακή
242 System Manager Διαχειριστής συστήματος
249 Timespan Χρονικό διάστημα
250 To Προς το
251 To Date Έως ημερομηνία
Tools Εργαλεία
252 Traceback Ανατρέχω
253 URL URL
254 Unsubscribed Χωρίς συνδρομή
Use Sandbox χρήση Sandbox
255 User Χρήστης
256 User ID ID χρήστη
257 Users Χρήστες
556 Bulk Edit {0} Μαζική Επεξεργασία {0}
557 Bulk Rename Μαζική Μετονομασία
558 Bulk Update Μαζική Ενημέρωση
Busy Απασχολημένος
559 Button Κουμπί
560 Button Help κουμπί Βοήθεια
561 Button Label Button Label
692 Complete By Συμπληρώστε Με
693 Complete Registration Ολοκλήρωση εγγραφής
694 Complete Setup Ολοκλήρωση της εγκατάστασης
Completed By Ολοκληρώθηκε από
695 Compose Email Συνθέστε Email
696 Condition Detail Λεπτομέρεια κατάστασης
697 Conditions Συνθήκες
1676 Not a zip file Δεν είναι ένα αρχείο zip
1677 Not allowed for {0}: {1} Δεν επιτρέπεται για {0}: {1}
1678 You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4} Δεν επιτρέπεται η πρόσβαση {0} επειδή είναι συνδεδεμένο με {1} '{2}' στην γραμμή {3}, πεδίο {4}
1679 You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3} Δεν επιτρέπεται η πρόσβαση σε αυτό το {0} εγγραφή επειδή είναι συνδεδεμένο με {1} '{2}' στο πεδίο {3}
1680 Not allowed to Import Δεν επιτρέπεται η εισαγωγή
1681 Not allowed to change {0} after submission Δεν επιτρέπεται να αλλάξετε {0} μετά την υποβολή
1682 Not allowed to print cancelled documents Δεν επιτρέπεται να εκτυπώσετε ακυρωθεί έγγραφα
1804 PayPal Settings Ρυθμίσεις PayPal
1805 PayPal payment gateway settings Ρυθμίσεις πύλη πληρωμών PayPal
1806 Payment Cancelled πληρωμή Ακυρώθηκε
Payment Failed Η πληρωμή απέτυχε
1807 Payment Success επιτυχία πληρωμής
1808 Pending Approval Εκκρεμεί έγκριση
1809 Pending Verification Εκκρεμεί Επαλήθευση
3200 Click on the lock icon to toggle public/private Κάντε κλικ στο εικονίδιο κλειδώματος για να μεταβείτε στο δημόσιο / ιδιωτικό
3201 Click on {0} to generate Refresh Token. Κάντε κλικ στο {0} για να δημιουργήσετε το Refresh Token.
3202 Close Condition Κλείστε την κατάσταση
Column {0} Στήλη {0}
3203 Columns / Fields Στήλες / Πεδία
3204 Configure notifications for mentions, assignments, energy points and more. Ρυθμίστε τις ειδοποιήσεις για αναφορές, αναθέσεις, ενεργειακά σημεία και πολλά άλλα.
3205 Contact Email Email επαφής
3281 Failure Αποτυχία
3282 Fetching default Global Search documents. Λήψη προεπιλεγμένων εγγράφων για την Παγκόσμια αναζήτηση.
3283 Fetching posts... Λήψη αναρτήσεων ...
Field Mapping Χαρτογράφηση πεδίων
3284 Field To Check Πεδίο για έλεγχο
3285 File Information Πληροφορίες αρχείου
3286 Filter By Φιλτράρετε με
3435 No records will be exported Δεν θα εξαχθούν αρχεία
3436 No results found for {0} in Global Search Δεν βρέθηκαν αποτελέσματα για το {0} στην Παγκόσμια Αναζήτηση
3437 No user found Δεν βρέθηκε χρήστης
Not Specified Δεν διευκρινίζεται
3438 Notification Log Μητρώο ειδοποιήσεων
3439 Notification Settings Ρυθμίσεις ειδοποιήσεων
3440 Notification Subscribed Document Εγγραφή εγγράφου
3590 Untranslated Αμεταγλώττιστος
3591 Upcoming Events Ανερχόμενες εκδηλώσεις
3592 Update Existing Records Ενημέρωση υφιστάμενων αρχείων
Update Type Τύπος ενημέρωσης
3593 Updated To A New Version 🎉 Ενημερώθηκε σε μια νέα έκδοση 🎉
3594 Updating {0} of {1}, {2} Ενημέρωση {0} από {1}, {2}
3595 Upload file Ανέβασμα αρχείου
3696 Disabled Απενεργοποιημένο
3697 Doctype DocType
3698 Download Template Κατεβάστε πρότυπο
Dr Dr
3699 Due Date Ημερομηνία λήξης προθεσμίας
3700 Duplicate Διπλότυπο
3701 Edit Profile Επεξεργασία προφίλ
3702 Email ΗΛΕΚΤΡΟΝΙΚΗ ΔΙΕΥΘΥΝΣΗ
End Time Ώρα λήξης
3703 Enter Value Εισάγετε τιμή
3704 Entity Type Τύπος Οντότητας
3705 Error Σφάλμα
3706 Expired Έληξε
3707 Export Εξαγωγή
3708 Export not allowed. You need {0} role to export. Η εξαγωγή δεν επιτρέπεται. Χρειάζεται ο ρόλος {0} για την εξαγωγή.
Fetching... Γοητευτικός...
3709 Field Πεδίο
3710 File Manager Διαχείριση αρχείων
3711 Filters Φίλτρα
3720 In Progress Σε εξέλιξη
3721 Intermediate Ενδιάμεσος
3722 Invite as User Πρόσκληση ως χρήστη
It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account. Φαίνεται ότι υπάρχει ένα πρόβλημα με τη διαμόρφωση της λωρίδας του διακομιστή. Σε περίπτωση αποτυχίας, το ποσό θα επιστραφεί στο λογαριασμό σας.
3723 Loading... Φόρτωση...
3724 Location Τοποθεσία
Looks like someone sent you to an incomplete URL. Please ask them to look into it. Μοιάζει με κάποιον που αποστέλλονται σε μια ελλιπή διεύθυνση URL. Παρακαλούμε να τους ζητήσει να εξετάσουμε το θέμα.
Master Κύρια εγγραφή
3725 Message Μήνυμα
3726 Missing Values Required Οι τιμές που λείπουν είναι απαραίτητες
3727 Mobile No Αρ. Κινητού
3733 Offline offline
3734 Open Ανοιχτό
3735 Page {0} of {1} Σελίδα {0} από {1}
Pay Πληρωμή
3736 Pending εκκρεμής
3737 Phone Τηλέφωνο
3738 Please click on the following link to set your new password Παρακαλώ κάντε κλικ στον παρακάτω σύνδεσμο για να ορίσετε νέο κωδικό πρόσβασης
3782 Year Έτος
3783 Yearly Ετήσια
3784 You Εσείς
You can also copy-paste this link in your browser Μπορείτε επίσης να αντιγράψετε και να επικολλήσετε αυτό το σύνδεσμο στο πρόγραμμα περιήγησής σας
3785 and Και
3786 {0} Name {0} Όνομα
3787 {0} is required {0} Απαιτείται
4085 Navbar Navbar
4086 Source Message Μήνυμα πηγής
4087 Translated Message Μεταφρασμένο μήνυμα
Verified By Πιστοποιημένο από
4088 Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand. Η χρήση αυτής της κονσόλας μπορεί να επιτρέψει στους εισβολείς να σας πλαστοπροσωπήσουν και να κλέψουν τις πληροφορίες σας. Μην εισάγετε και μην επικολλάτε κώδικα που δεν κατανοείτε.
4089 {0} m {0} μ
4090 {0} h {0} ω
4117 {0} is not a valid Name Το {0} δεν είναι έγκυρο όνομα
4118 Your system is being updated. Please refresh again after a few moments. Το σύστημά σας ενημερώνεται. Ανανεώστε ξανά μετά από λίγα λεπτά.
4119 {0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first. {0} {1}: Η υποβληθείσα εγγραφή δεν μπορεί να διαγραφεί. Πρέπει να το {2} ακυρώσετε {3} πρώτα.
Invalid naming series (. missing) for {0} Μη έγκυρη σειρά ονομάτων (. Λείπει) για {0}
4120 Error has occurred in {0} Παρουσιάστηκε σφάλμα στο {0}
4121 Status Updated Η κατάσταση ενημερώθηκε
4122 You can also copy-paste this {0} to your browser Μπορείτε επίσης να αντιγράψετε και να επικολλήσετε αυτό {0} στο πρόγραμμα περιήγησής σας
4138 Address And Contacts Διεύθυνση και επαφές
4139 Lead Conversion Time Χρόνος μετατροπής μολύβδου
4140 Due Date Based On Η ημερομηνία λήξης βασίζεται σε
Phone Number Τηλεφωνικό νούμερο
4141 Linked Documents Linked Documents
Account SID Λογαριασμός SID
4142 Steps Βήματα
4143 email ΗΛΕΚΤΡΟΝΙΚΗ ΔΙΕΥΘΥΝΣΗ
4144 Component Συστατικό
4145 Subtitle Υπότιτλος
Global Defaults Καθολικές προεπιλογές
4146 Prefix Πρόθεμα
4147 Is Public Είναι δημόσιο
4148 This chart will be available to all Users if this is set Αυτό το γράφημα θα είναι διαθέσιμο σε όλους τους χρήστες εάν έχει ρυθμιστεί
4329 Please create Card first Δημιουργήστε πρώτα την κάρτα
4330 Onboarding Permission Άδεια επιβίβασης
4331 Onboarding Step Βήμα επιβίβασης
Is Mandatory Ειναι υποχρεωτικό
4332 Is Skipped Έχει παραλειφθεί
4333 Create Entry Δημιουργία καταχώρησης
4334 Update Settings Ρυθμίσεις ενημέρωσης
4366 Send Attachments Αποστολή συνημμένων
4367 Testing Δοκιμές
4368 System Notification Ειδοποίηση συστήματος
WhatsApp WhatsApp
4369 Twilio Number Αριθμός Twilio
4370 To use WhatsApp for Business, initialize <a href="#Form/Twilio Settings">Twilio Settings</a>. Για να χρησιμοποιήσετε το WhatsApp για επιχειρήσεις, αρχικοποιήστε τις <a href="#Form/Twilio Settings">ρυθμίσεις Twilio</a> .
4371 To use Slack Channel, add a <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook URL</a>. Για να χρησιμοποιήσετε το Slack Channel, προσθέστε ένα <a href="#List/Slack%20Webhook%20URL/List">URL Slack Webhook</a> .
4500 {0} are currently {1} {0} αυτήν τη στιγμή {1}
4501 Currently Replying Αυτήν τη στιγμή απαντά
4502 created {0} δημιουργήθηκε {0}
Make a call Τηλεφώνησε
4503 Change Αλλαγή Coins
4504 Too Many Requests Πάρα πολλά αιτήματα
4505 Invalid Authorization headers, add a token with a prefix from one of the following: {0}. Μη έγκυρες κεφαλίδες εξουσιοδότησης, προσθέστε ένα διακριτικό με πρόθεμα από ένα από τα ακόλουθα: {0}.
4664 Negative Value Αρνητική τιμή
4665 Authentication failed while receiving emails from Email Account: {0}. Ο έλεγχος ταυτότητας απέτυχε κατά τη λήψη μηνυμάτων ηλεκτρονικού ταχυδρομείου από λογαριασμό ηλεκτρονικού ταχυδρομείου: {0}.
4666 Message from server: {0} Μήνυμα από διακομιστή: {0}
4667 Add Row Προσθήκη Γραμμής
4668 Analytics Analytics
4669 Anonymous Ανώνυμος
4670 Author Συγγραφέας
4671 Basic Βασικός
4672 Billing Χρέωση
4673 Contact Details Στοιχεία επικοινωνίας επαφής
4674 Datetime Datetime
4675 Enable Ενεργοποίηση
4676 Event Συμβάν
4677 Full Γεμάτος
4678 Insert Εισαγωγή
4679 Interests Ενδιαφέροντα
4680 Language Name γλώσσα Όνομα
4681 License Αδεια
4682 Limit Όριο
4683 Log Κούτσουρο
4684 Meeting Συνάντηση
4685 My Account Ο Λογαριασμός Μου
4686 Newsletters Ενημερωτικά δελτία
4687 Password Κωδικός
4688 Pincode Κωδικός pin
4689 Please select prefix first Παρακαλώ επιλέξτε πρόθεμα πρώτα
4690 Please set Email Address Παρακαλούμε να ορίσετε τη διεύθυνση ηλεκτρονικού ταχυδρομείου
4691 Please set the series to be used. Ορίστε τη σειρά που θα χρησιμοποιηθεί.
4692 Portal Settings portal Ρυθμίσεις
4693 Reference Owner αναφορά Ιδιοκτήτης
4694 Region Περιοχή
4695 Report Builder Δημιουργός εκθέσεων
4696 Sample Δείγμα
4697 Saved Αποθηκεύτηκε
4698 Series {0} already used in {1} Η σειρά {0} έχει ήδη χρησιμοποιηθεί σε {1}
4699 Set as Default Ορισμός ως προεπιλογή
4700 Shipping Αποστολή
4701 Standard Πρότυπο
4702 Test Δοκιμή
4703 Traceback Ανατρέχω
4704 Unable to find DocType {0} Δεν είναι δυνατή η εύρεση του DocType {0}
4705 Weekdays Εργάσιμες
4706 Workflow Ροή εργασίας
4707 You need to be logged in to access this page Θα πρέπει να συνδεθείτε για να αποκτήσετε πρόσβαση σε αυτήν τη σελίδα
4708 County Κομητεία
4709 Images εικόνες
4710 Office Γραφείο
4711 Passive Αδρανής
4712 Permanent Μόνιμος
4713 Plant Βιομηχανικός εξοπλισμός
4714 Postal Ταχυδρομικός
4715 Previous Προηγούμενο
4716 Shop Κατάστημα
4717 Subsidiary Θυγατρική
4718 There is some problem with the file url: {0} Υπάρχει κάποιο πρόβλημα με το url αρχείο: {0}
4719 Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0} Ειδικοί χαρακτήρες εκτός από &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{&quot; Και &quot;}}&quot; δεν επιτρέπονται στη σειρά ονομασίας {0}
4720 Export Type Τύπος εξαγωγής
4721 Last Sync On Ο τελευταίος συγχρονισμός είναι ενεργοποιημένος
4722 Webhook Secret Webhook Secret
4723 Back to Home Πίσω στο σπίτι
4724 Customize Προσαρμογή
4725 Edit Profile Επεξεργασία προφίλ
4726 File Manager Διαχείριση αρχείων
4727 Invite as User Πρόσκληση ως χρήστη
4728 Newsletter Ενημερωτικό δελτίο
4729 Printing Εκτύπωση
4730 Publish Δημοσιεύω
4731 Refreshing Ανανεώνεται
4732 Select All Επιλέξτε All
4733 Set Σετ
4734 Setup Wizard Οδηγός εγκατάστασης
4735 Update Details Λεπτομέρειες ενημέρωσης
4736 You Εσείς
4737 {0} Name {0} Όνομα
4738 Bold Τολμηρός
4739 Center Κέντρο
4740 Comment Σχόλιο
4741 Not Found Δεν βρέθηκε
4742 User Id Ταυτότητα χρήστη
4743 Position Θέση
4744 Crop Καλλιέργεια
4745 Topic Θέμα
4746 Public Transport Δημόσια συγκοινωνία
4747 Request Data Ζητήστε δεδομένα
4748 Steps Βήματα
4749 Reference DocType DocType αναφοράς
4750 Select Transaction Επιλέξτε συναλλαγή
4751 Help HTML Βοήθεια ΗΤΜΛ
4752 Series List for this Transaction Λίστα σειράς για αυτή τη συναλλαγή
4753 User must always select Ο χρήστης πρέπει πάντα να επιλέγει
4754 Check this if you want to force the user to select a series before saving. There will be no default if you check this. Ελέγξτε αυτό, αν θέλετε να αναγκάσει τον χρήστη να επιλέξει μια σειρά πριν από την αποθήκευση. Δεν θα υπάρξει καμία προεπιλογή αν επιλέξετε αυτό.
4755 Prefix Πρόθεμα
4756 This is the number of the last created transaction with this prefix Αυτός είναι ο αριθμός της τελευταίας συναλλαγής που δημιουργήθηκε με αυτό το πρόθεμα
4757 Update Series Number Ενημέρωση αριθμού σειράς
4758 Validation Error Σφάλμα επικύρωσης
4759 Andaman and Nicobar Islands Νησιά Ανταμάν και Νικομπάρ
4760 Andhra Pradesh Άντρα Πραντές
4761 Arunachal Pradesh Arunachal Pradesh
4762 Assam Άσαμ
4763 Bihar Μπιχάρ
4764 Chandigarh Τσάντιγκαρ
4765 Chhattisgarh Chhattisgarh
4766 Dadra and Nagar Haveli Dadra και Nagar Haveli
4767 Daman and Diu Daman και Diu
4768 Delhi Δελχί
4769 Goa Γκόα
4770 Gujarat Γκουτζαράτ
4771 Haryana Χαριάνα
4772 Himachal Pradesh Χιματσάλ Πραντές
4773 Jammu and Kashmir Τζαμού και Κασμίρ
4774 Jharkhand Τζάρκχαντ
4775 Karnataka Καρνατάκα
4776 Kerala Κεράλα
4777 Lakshadweep Islands Νησιά Lakshadweep
4778 Madhya Pradesh Madhya Pradesh
4779 Maharashtra Μαχαράστρα
4780 Manipur Μανιπούρ
4781 Meghalaya Meghalaya
4782 Mizoram Mizoram
4783 Nagaland Ναγκαλάντ
4784 Odisha Οδησσός
4785 Other Territory Άλλη επικράτεια
4786 Pondicherry Ποντίτσερι
4787 Punjab Πουντζάμπ
4788 Rajasthan Ρατζαστάν
4789 Sikkim Σικίμ
4790 Tamil Nadu Ταμίλ Ναντού
4791 Telangana Telangana
4792 Tripura Τριπούρα
4793 Uttar Pradesh Ουτάρ Πραντές
4794 Uttarakhand Ουταράχσαντ
4795 West Bengal Δυτική Βεγγάλη
4796 Published on Δημοσιεύτηκε στις
4797 Bottom Κάτω μέρος
4798 Top Μπλουζα

View file

@ -29,7 +29,7 @@ Column Name cannot be empty,El Nombre de la Columna no puede estar vacía,
Feedback Ratings,Ratings de Feedback,
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.
Cannot use sub-query in order by,No se puede utilizar una sub-consulta en order by,
"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",
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,
LDAP First Name Field,Campo de Primer Nombre LDAP,
Feedback Rating,Rating de Feedback,
Link Title,Título del Enlace,

Can't render this file because it has a wrong number of fields in line 30.

View file

@ -1 +0,0 @@
Other Settings,Otros Ajustes,
1 Other Settings Otros Ajustes

View file

@ -44,7 +44,6 @@ Set numbering series for transactions.,Establecer series de numeración para las
Submit an Issue,Presentar un problema,
Symbol,Símbolo,
Update Field,Actualizar Campos,
Make ,Hacer,
"You can change Submitted documents by cancelling them and then, amending them.","Puede cambiar los documentos Enviados cancelándolos y luego, haciendo los cambios pertinentes."
Team Members Heading,Miembros del Equipo Lider,
Scheduled to send to {0} recipients,Programado para enviar a {0} destinatarios,
@ -314,7 +313,6 @@ Stores the JSON of last known versions of various installed apps. It is used to
"Setup of top navigation bar, footer and logo.","Configuración de la barra de navegación superior , pie de página y el logotipo."
Stopped,Detenido,
Upload Attachment,Subir Archivos Adjuntos,
You can also copy-paste this link in your browser,También puede copiar y pegar este enlace en su navegador,
Total Subscribers,Los suscriptores totales,
Settings for About Us Page.,Ajustes para Nosotros Pagina .
File Size,Tamaño del archivo,
@ -488,3 +486,9 @@ Repeat Till,Repita Hasta,
remove-circle,Eliminar el efecto de círculo,
Sample,Muestra,
Current status,Situación Actual,
User must always select,Usuario elegirá siempre,
Help HTML,Ayuda HTML,
No contacts added yet.,No se han añadido contactos todavía,
No address added yet.,No se ha añadido ninguna dirección todavía.
Series List for this Transaction,Lista de series para esta transacción,
Contact Details,Datos del Contacto,

Can't render this file because it has a wrong number of fields in line 3.

View file

@ -9,7 +9,6 @@ Action,Acción,
Actions,Acciones,
Active,Activo,
Add,Agregar,
Add Comment,Agregar comentario,
Add Row,Añadir Fila,
Address,Dirección,
Address Line 2,Dirección línea 2,
@ -149,7 +148,6 @@ Monday,Lunes,
Monthly,Mensual,
More,Más,
More Information,Más información,
More...,Más...,
Move,mover,
My Account,Mi Cuenta,
My Profile,Mi Perfil,
@ -164,7 +162,6 @@ No items found.,No se encontraron artículos.,
None,Ninguna,
Not Permitted,No permitido,
Not active,No activo,
Notes,Notas,
Number,Número,
Online,En línea,
Operation,Operación,
@ -174,17 +171,12 @@ Owner,Propietario,
Page Missing or Moved,Página no encontrada,
Parameter,Parámetro,
Password,Contraseña,
Payment Gateway,Pasarela de Pago,
Payment Gateway Name,Nombre de Pasarela de Pago,
Payments,Pagos.,
Period,Período,
Pincode,Código PIN,
Plan Name,Nombre del Plan,
Please enable pop-ups,"Por favor, active los pop-ups",
Please select Company,"Por favor, seleccione la empresa",
Please select {0},"Por favor, seleccione {0}",
Please set Email Address,"Por favor, establece Dirección de correo electrónico",
Portal,Portal,
Portal Settings,Configuración del portal,
Preview,Vista Previa,
Primary,Primario,
@ -232,7 +224,6 @@ Salutation,Saludo.,
Sample,Muestra.,
Saturday,Sábado,
Saved,Guardado,
Scan Barcode,Escanear Código de Barras,
Scheduled,Programado.,
Search,Buscar,
Secret Key,Llave secreta,
@ -247,7 +238,6 @@ Settings,Configuración,
Shipping,Envío.,
Short Name,Nombre corto,
Slideshow,Presentación,
Some information is missing,Falta información,
Sort Ascending,Orden ascendente,
Sort Descending,Orden descendente,
Source,Referencia,
@ -259,7 +249,6 @@ State,Estado,
Stopped,Detenido.,
Subject,Asunto,
Submit,Validar,
Successful,Exitoso,
Summary,Resumen,
Sunday,Domingo,
System Manager,Administrador del sistema,
@ -274,11 +263,9 @@ To,A,
To Date,Hasta la fecha,
Toggle Full Width,Cambiar a ancho completo,
Toggle Theme,Cambiar tema,
Tools,Herramientas,
Traceback,Rastrear,
URL,URL,
Unsubscribed,No suscrito,
Use Sandbox,Utilizar Sandbox,
User,Usuario,
User ID,ID de usuario,
Users,Usuarios,
@ -583,7 +570,6 @@ Bulk Delete,Eliminar a granel,
Bulk Edit {0},Editar en masa {0},
Bulk Rename,Renombrar en Masa,
Bulk Update,Actualización masiva,
Busy,Ocupado,
Button,Botón,
Button Help,Botón de Ayuda,
Button Label,Etiqueta de botón,
@ -721,7 +707,6 @@ Compiled Successfully,Compilado con éxito,
Complete By,Completado por,
Complete Registration,Registro completo,
Complete Setup,Configuración completa,
Completed By,Completado Por,
Compose Email,Escribir correo,
Condition Detail,Detalle de la Condición,
Conditions,Condiciones,
@ -1706,7 +1691,7 @@ Not a valid user,No es un usuario válido,
Not a zip file,No es un archivo zip,
Not allowed for {0}: {1},No permitido para {0}: {1},
"You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4}","No tiene permiso para acceder a {0} porque está vinculado a {1} '{2}' en la fila {3}, campo {4}"
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},"No tiene permiso para acceder a este registro {0} porque está vinculado a {1} '{2}' en el campo {3}",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},No tiene permiso para acceder a este registro {0} porque está vinculado a {1} '{2}' en el campo {3},
Not allowed to Import,No tienes permisos para importar,
Not allowed to change {0} after submission,No se permite cambiar {0} si ya está enviado,
Not allowed to print cancelled documents,No se permite imprimir documentos cancelados,
@ -1834,7 +1819,6 @@ Path to private Key File,Ruta al archivo de clave privada,
PayPal Settings,Ajustes de PayPal,
PayPal payment gateway settings,Configuración de la pasarela de pago de PayPal,
Payment Cancelled,Pago Cancelado,
Payment Failed,Pago Fallido,
Payment Success,Pago Exitoso,
Pending Approval,Aprobación pendiente,
Pending Verification,verificación pendiente,
@ -3234,7 +3218,6 @@ Click on the link below to approve the request,Haga clic en el enlace a continua
Click on the lock icon to toggle public/private,Haga clic en el ícono de candado para alternar público / privado,
Click on {0} to generate Refresh Token.,Haga clic en {0} para generar el token de actualización.,
Close Condition,Condición cerrada,
Column {0},Columna {0},
Columns / Fields,Columnas / Campos,
"Configure notifications for mentions, assignments, energy points and more.","Configure notificaciones para menciones, tareas, puntos de energía y más.",
Contact Email,Correo electrónico de contacto,
@ -3316,7 +3299,6 @@ Failed to create an Event Consumer or an Event Consumer for the current site is
Failure,Fracaso,
Fetching default Global Search documents.,Obteniendo documentos predeterminados de Global Search.,
Fetching posts...,Obteniendo publicaciones ...,
Field Mapping,Mapeo de campo,
Field To Check,Campo para verificar,
File Information,Información del archivo,
Filter By,Filtrado Por,
@ -3471,7 +3453,6 @@ No posts yet,Aún no hay publicaciones,
No records will be exported,No se exportarán registros,
No results found for {0} in Global Search,No se encontraron resultados para {0} en Búsqueda global,
No user found,Usuario no encontrado,
Not Specified,No especificado,
Notification Log,Registro de notificaciones,
Notification Settings,Configuración de las notificaciones,
Notification Subscribed Document,Notificación de documento suscrito,
@ -3627,7 +3608,6 @@ Untitled Column,Columna sin título,
Untranslated,Sin traducir,
Upcoming Events,Próximos eventos,
Update Existing Records,Actualizar registros existentes,
Update Type,Tipo de actualización,
Updated To A New Version 🎉,Actualizado a una nueva versión 🎉,
"Updating {0} of {1}, {2}","Actualización {0} de {1}, {2}",
Upload file,Subir archivo,
@ -3734,19 +3714,16 @@ Designation,Puesto,
Disabled,Deshabilitado,
Doctype,Doctype,
Download Template,Descargar plantilla,
Dr,Dr.,
Due Date,Fecha de vencimiento,
Duplicate,Duplicar,
Edit Profile,Editar perfil,
Email,Correo electrónico,
End Time,Hora de finalización,
Enter Value,Ingrese el Valor,
Entity Type,Tipo de Entidad,
Error,Error,
Expired,Expirado,
Export,Exportar,
Export not allowed. You need {0} role to export.,Exportación no permitida. Se necesita el rol {0} para exportar.,
Fetching...,Atractivo...,
Field,Campo,
File Manager,Administrador de archivos,
Filters,Filtros,
@ -3761,11 +3738,8 @@ Import Data from CSV / Excel files.,Importar Datos desde Archivos CSV / Excel.,
In Progress,En Progreso,
Intermediate,Intermedio,
Invite as User,Invitar como usuario,
"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Parece que hay un problema con la configuración de la banda del servidor. En caso de falla, la cantidad será reembolsada a su cuenta.",
Loading...,Cargando ...,
Location,Ubicación,
Looks like someone sent you to an incomplete URL. Please ask them to look into it.,"Parece que alguien le envió a una URL incompleta. Por favor, pídeles que revisen.",
Master,Maestro,
Message,Mensaje,
Missing Values Required,Valores faltantes requeridos,
Mobile No,Nº Móvil,
@ -3777,7 +3751,6 @@ Note,Nota,
Offline,Desconectado,
Open,Abrir/Abierto,
Page {0} of {1},Página {0} de {1},
Pay,Pagar,
Pending,Pendiente,
Phone,Teléfono,
Please click on the following link to set your new password,"Por favor, haga clic en el siguiente enlace para configurar su nueva contraseña",
@ -3827,7 +3800,6 @@ Welcome to {0},Bienvenido a {0},
Year,Año,
Yearly,Anual,
You,Usted,
You can also copy-paste this link in your browser,Usted puede copiar y pegar este enlace en su navegador,
and,y,
{0} Name,{0} Nombre,
{0} is required,{0} es requerido,
@ -4131,7 +4103,6 @@ Custom SCSS,SCSS personalizado,
Navbar,Barra de navegación,
Source Message,Mensaje de origen,
Translated Message,Mensaje traducido,
Verified By,Verificado por,
Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand.,El uso de esta consola puede permitir a los atacantes hacerse pasar por usted y robar su información. No ingrese ni pegue un código que no comprenda.,
{0} m,{0} m,
{0} h,{0} h,
@ -4164,7 +4135,6 @@ Collapse,Colapso,
{0} is not a valid Name,{0} no es un nombre válido,
Your system is being updated. Please refresh again after a few moments.,Su sistema se está actualizando. Actualice nuevamente después de unos momentos.,
{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first.,{0} {1}: el registro enviado no se puede eliminar. Primero debe {2} cancelarlo {3}.,
Invalid naming series (. missing) for {0},Serie de nombres no válida (falta.) Para {0},
Error has occurred in {0},Se produjo un error en {0},
Status Updated,Estado actualizado,
You can also copy-paste this {0} to your browser,También puede copiar y pegar este {0} en su navegador.,
@ -4186,14 +4156,11 @@ Is Billing Contact,Es contacto de facturación,
Address And Contacts,Dirección y contactos,
Lead Conversion Time,Tiempo de Conversión de Iniciativas,
Due Date Based On,Fecha de Vencimiento basada en,
Phone Number,Número de teléfono,
Linked Documents,Documentos vinculados,
Account SID,SID de cuenta,
Steps,Pasos,
email,correo electrónico,
Component,Componente,
Subtitle,Subtitular,
Global Defaults,Predeterminados globales,
Prefix,Prefijo,
Is Public,Es público,
This chart will be available to all Users if this is set,Este gráfico estará disponible para todos los usuarios si está configurado,
@ -4380,7 +4347,6 @@ Dynamic Filters Section,Sección de filtros dinámicos,
Please create Card first,Primero crea la tarjeta,
Onboarding Permission,Permiso de incorporación,
Onboarding Step,Paso de incorporación,
Is Mandatory,Es obligatorio,
Is Skipped,Se omite,
Create Entry,Crear entrada,
Update Settings,Ajustes de actualización,
@ -4418,7 +4384,6 @@ Message (HTML),Mensaje (HTML),
Send Attachments,Enviar archivos adjuntos,
Testing,Pruebas,
System Notification,Notificación del sistema,
WhatsApp,WhatsApp,
Twilio Number,Número de Twilio,
"To use WhatsApp for Business, initialize <a href=""#Form/Twilio Settings"">Twilio Settings</a>.","Para usar WhatsApp for Business, inicialice la <a href=""#Form/Twilio Settings"">configuración de Twilio</a> .",
"To use Slack Channel, add a <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL</a>.","Para usar Slack Channel, agregue una <a href=""#List/Slack%20Webhook%20URL/List"">URL de Webhook de Slack</a> .",
@ -4553,7 +4518,6 @@ Add to ToDo,Agregar a Tareas,
{0} are currently {1},{0} son actualmente {1},
Currently Replying,Actualmente respondiendo,
created {0},creado {0},
Make a call,Haz una llamada,
Change,Cambio,Coins
Too Many Requests,Demasiadas solicitudes,
"Invalid Authorization headers, add a token with a prefix from one of the following: {0}.","Encabezados de autorización no válidos, agregue un token con un prefijo de uno de los siguientes: {0}.",
@ -4718,3 +4682,135 @@ Value cannot be negative for {0}: {1},El valor no puede ser negativo para {0}: {
Negative Value,Valor negativo,
Authentication failed while receiving emails from Email Account: {0}.,Error de autenticación al recibir correos electrónicos de la cuenta de correo electrónico: {0}.,
Message from server: {0},Mensaje del servidor: {0},
Add Row,Añadir Fila,
Analytics,Analítica,
Anonymous,Anónimo,
Author,Autor,
Basic,Base,
Billing,Facturación,
Contact Details,Detalles de contacto,
Datetime,Fecha y Hora,
Enable,Habilitar,
Event,Evento,
Full,Completo,
Insert,Insertar,
Interests,Intereses,
Language Name,Nombre del lenguaje,
License,Licencia,
Limit,Límite,
Log,Log,
Meeting,Reunión,
My Account,Mi Cuenta,
Newsletters,Boletines,
Password,Contraseña,
Pincode,Código PIN,
Please select prefix first,"Por favor, seleccione primero el prefijo",
Please set Email Address,"Por favor, establece Dirección de correo electrónico",
Please set the series to be used.,"Por favor, configure la serie que se utilizará.",
Portal Settings,Configuración del portal,
Reference Owner,Propietario de Referencia,
Region,Región,
Report Builder,Generador de reportes,
Sample,Muestra.,
Saved,Guardado,
Series {0} already used in {1},Secuencia {0} ya utilizada en {1},
Set as Default,Establecer como Predeterminado,
Shipping,Envío.,
Standard,Estándar,
Test,Prueba,
Traceback,Rastrear,
Unable to find DocType {0},No se puede encontrar DocType {0},
Weekdays,Días de la Semana,
Workflow,Flujos de Trabajo,
You need to be logged in to access this page,Tiene que estar registrado para acceder a esta página,
County,País,
Images,imágenes,
Office,Oficina,
Passive,Pasivo,
Permanent,Permanente,
Plant,Planta,
Postal,Postal,
Previous,Anterior,
Shop,Tienda.,
Subsidiary,Subsidiaria,
There is some problem with the file url: {0},Hay un poco de problema con la url del archivo: {0},
"Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}","Caracteres especiales excepto &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; Y &quot;}}&quot; no están permitidos en las series de nombres {0}",
Export Type,Tipo de Exportación,
Last Sync On,Última Sincronización Activada,
Webhook Secret,Webhook Secret,
Back to Home,De vuelta a casa,
Customize,Personalización,
Edit Profile,Editar perfil,
File Manager,Administrador de archivos,
Invite as User,Invitar como usuario,
Newsletter,Boletín de noticias,
Printing,Impresión,
Publish,Publicar,
Refreshing,Actualizando,
Select All,Seleccionar todo,
Set,Establecer,
Setup Wizard,Asistente de configuración.,
Update Details,Detalles de actualización,
You,Usted,
{0} Name,{0} Nombre,
Bold,Negrita,
Center,Centro,
Comment,Comentario,
Not Found,No encontrado,
User Id,ID de usuario,
Position,Posición,
Crop,Cultivo,
Topic,Tema,
Public Transport,Transporte Público,
Request Data,Datos de Solicitud,
Steps,Pasos,
Reference DocType,DocType de referencia,
Select Transaction,Seleccione el tipo de transacción,
Help HTML,Ayuda 'HTML',
Series List for this Transaction,Lista de secuencias para esta transacción,
User must always select,El usuario deberá elegir siempre,
Check this if you want to force the user to select a series before saving. There will be no default if you check this.,Seleccione esta opción si desea obligar al usuario a seleccionar una serie antes de guardar. No habrá ninguna por defecto si marca ésta casilla.,
Prefix,Prefijo,
This is the number of the last created transaction with this prefix,Este es el número de la última transacción creada con este prefijo,
Update Series Number,Actualizar número de serie,
Validation Error,Error de validacion,
Andaman and Nicobar Islands,Islas Andaman y Nicobar,
Andhra Pradesh,Andhra Pradesh,
Arunachal Pradesh,Arunachal Pradesh,
Assam,Assam,
Bihar,Bihar,
Chandigarh,Chandigarh,
Chhattisgarh,Chhattisgarh,
Dadra and Nagar Haveli,Dadra y Nagar Haveli,
Daman and Diu,Daman y Diu,
Delhi,Delhi,
Goa,Ir a,
Gujarat,Gujarat,
Haryana,Haryana,
Himachal Pradesh,Himachal Pradesh,
Jammu and Kashmir,Jammu y Cachemira,
Jharkhand,Jharkhand,
Karnataka,Karnataka,
Kerala,Kerala,
Lakshadweep Islands,Islas Lakshadweep,
Madhya Pradesh,Madhya Pradesh,
Maharashtra,Maharashtra,
Manipur,Manipur,
Meghalaya,Meghalaya,
Mizoram,Mizoram,
Nagaland,Nagaland,
Odisha,Odisha,
Other Territory,Otro territorio,
Pondicherry,Pondicherry,
Punjab,Punjab,
Rajasthan,Rajastán,
Sikkim,Sikkim,
Tamil Nadu,Tamil Nadu,
Telangana,Telangana,
Tripura,Tripura,
Uttar Pradesh,Uttar Pradesh,
Uttarakhand,Uttarakhand,
West Bengal,al oeste de Bengala,
Published on,Publicado en,
Bottom,Fondo,
Top,Parte superior,

Can't render this file because it has a wrong number of fields in line 1693.

View file

@ -9,7 +9,6 @@ Action,Action,
Actions,Actions,
Active,Aktiivne,
Add,Lisama,
Add Comment,Lisa kommentaar,
Add Row,Lisa Row,
Address,Aadress,
Address Line 2,Aadress Line 2,
@ -144,7 +143,6 @@ Monday,Esmaspäev,
Monthly,Kuu,
More,Rohkem,
More Information,Rohkem informatsiooni,
More...,Rohkem ...,
Move,käik,
My Account,Minu konto,
New Address,New Address,
@ -157,7 +155,6 @@ No items found.,Üksusi ei leitud.,
None,Puudub,
Not Permitted,Ei ole lubatud,
Not active,Ei ole aktiivne,
Notes,Märkused,
Number,Number,
Online,Hetkel,
Operation,Operation,
@ -167,17 +164,12 @@ Owner,Omanik,
Page Missing or Moved,Page kadunud või liigutada,
Parameter,Parameeter,
Password,Salasõna,
Payment Gateway,Payment Gateway,
Payment Gateway Name,Makse gateway nimi,
Payments,Maksed,
Period,Periood,
Pincode,PIN-koodi,
Plan Name,Plaani nimi,
Please enable pop-ups,Palun võimaldage pop-ups,
Please select Company,Palun valige Company,
Please select {0},Palun valige {0},
Please set Email Address,Palun määra e-posti aadress,
Portal,Portal,
Portal Settings,portaal seaded,
Preview,Eelvaade,
Primary,Esmane,
@ -222,7 +214,6 @@ Salutation,Tervitus,
Sample,Proov,
Saturday,Laupäev,
Saved,Salvestatud,
Scan Barcode,Skaneeri vöötkood,
Scheduled,Plaanitud,
Search,Otsing,
Secret Key,Secret Key,
@ -237,7 +228,6 @@ Settings,Seaded,
Shipping,Laevandus,
Short Name,Lühike nimi,
Slideshow,Slideshow,
Some information is missing,Mõned andmed puuduvad,
Source,Allikas,
Source Name,Allikas Nimi,
Standard,Standard,
@ -247,7 +237,6 @@ State,Riik,
Stopped,Peatatud,
Subject,Subjekt,
Submit,Esita,
Successful,Edukas,
Summary,Kokkuvõte,
Sunday,Pühapäev,
System Manager,Süsteemihaldur,
@ -260,11 +249,9 @@ The page you are looking for is missing. This could be because it is moved or th
Timespan,Ajavahemik,
To,Et,
To Date,Kuupäev,
Tools,Töövahendid,
Traceback,Jälgimise,
URL,URL,
Unsubscribed,Tellimata,
Use Sandbox,Kasuta liivakasti,
User,Kasutaja,
User ID,kasutaja ID,
Users,Kasutajad,
@ -569,7 +556,6 @@ Bulk Delete,Hulg Kustuta,
Bulk Edit {0},Bulk Edit {0},
Bulk Rename,Bulk Nimeta,
Bulk Update,hulgivärskendamine,
Busy,Hõivatud,
Button,Button,
Button Help,Button Abi,
Button Label,Button Label,
@ -706,7 +692,6 @@ Compiled Successfully,Koostatud edukalt,
Complete By,Lõppenud,
Complete Registration,Täielik Registreeri,
Complete Setup,Täielik Setup,
Completed By,Lõpule jõudnud,
Compose Email,Koosta meil,
Condition Detail,Tingimuste üksikasjad,
Conditions,Tingimused,
@ -1819,7 +1804,6 @@ Path to private Key File,Tee privaatvõtmefaili,
PayPal Settings,PayPal seaded,
PayPal payment gateway settings,PayPal makse gateway seaded,
Payment Cancelled,makse Tühistatud,
Payment Failed,makse ebaõnnestus,
Payment Success,makse Edu,
Pending Approval,Kinnituse ootel,
Pending Verification,Kinnituse ootel,
@ -3216,7 +3200,6 @@ Click on the link below to approve the request,Taotluse kinnitamiseks klõpsake
Click on the lock icon to toggle public/private,Avaliku / privaatse vahetamiseks klõpsake lukuikoonil,
Click on {0} to generate Refresh Token.,Värskenda tokeni loomiseks klõpsake {0}.,
Close Condition,Sule seisund,
Column {0},Veerg {0},
Columns / Fields,Veerud / väljad,
"Configure notifications for mentions, assignments, energy points and more.","Seadistage mainimiste, määramiste, energiapunktide ja muu teabe teatised.",
Contact Email,Kontakt E-,
@ -3298,7 +3281,6 @@ Failed to create an Event Consumer or an Event Consumer for the current site is
Failure,Rike,
Fetching default Global Search documents.,Globaalse otsingu vaikedokumentide toomine.,
Fetching posts...,Postituste toomine ...,
Field Mapping,Väljade kaardistamine,
Field To Check,Kontrollitav väli,
File Information,Faili teave,
Filter By,Filtreeri poolt,
@ -3453,7 +3435,6 @@ No posts yet,Pole veel postitusi,
No records will be exported,Ühtegi kirjet ei ekspordita,
No results found for {0} in Global Search,Globaalses otsingus ei leitud tulemusi {0},
No user found,Kasutajat ei leitud,
Not Specified,Pole täpsustatud,
Notification Log,Teavituslogi,
Notification Settings,Märguandeseaded,
Notification Subscribed Document,Teate tellitud dokument,
@ -3609,7 +3590,6 @@ Untitled Column,Pealkirjata veerg,
Untranslated,Tõlkimata,
Upcoming Events,Sündmused,
Update Existing Records,Värskendage olemasolevaid kirjeid,
Update Type,Värskenduse tüüp,
Updated To A New Version 🎉,Uuendatud uueks versiooniks 🎉,
"Updating {0} of {1}, {2}","{0} {1}, {2} värskendamine",
Upload file,Faili üles laadima,
@ -3716,19 +3696,16 @@ Designation,Määramine,
Disabled,Invaliidistunud,
Doctype,DocType,
Download Template,Lae mall,
Dr,Dr,
Due Date,Tähtaeg,
Duplicate,Duplicate,
Edit Profile,Muuda profiili,
Email,E-kiri,
End Time,End Time,
Enter Value,Sisesta Value,
Entity Type,Üksuse tüüp,
Error,Eksimus,
Expired,Aegunud,
Export,Eksport,
Export not allowed. You need {0} role to export.,Ekspordi ole lubatud. Peate {0} rolli ekspordi.,
Fetching...,Toomine ...,
Field,väli,
File Manager,Failihaldur,
Filters,Filtrid,
@ -3743,11 +3720,8 @@ Import Data from CSV / Excel files.,Andmete importimine CSV / Exceli failidest.,
In Progress,In Progress,
Intermediate,kesktaseme,
Invite as User,Kutsu Kasutaja,
"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Tundub, et serveri riba konfiguratsiooniga on probleem. Ebaõnnestumise korral tagastatakse summa teie kontole.",
Loading...,Laadimine ...,
Location,Asukoht,
Looks like someone sent you to an incomplete URL. Please ask them to look into it.,"Paistab, et keegi saatis teile mittetäielik URL. Palun paluge uurida seda.",
Master,kapten,
Message,Sõnum,
Missing Values Required,Kadunud väärtusi Vajalikud,
Mobile No,Mobiili number,
@ -3759,7 +3733,6 @@ Note,Märge,
Offline,offline,
Open,Avatud,
Page {0} of {1},Page {0} {1},
Pay,Maksma,
Pending,Pooleliolev,
Phone,Telefon,
Please click on the following link to set your new password,Palun kliki järgmist linki seada oma uus parool,
@ -3809,7 +3782,6 @@ Welcome to {0},Teretulemast {0},
Year,Aasta,
Yearly,Iga-aastane,
You,Sa,
You can also copy-paste this link in your browser,Võite kopeeri see link oma brauseri,
and,ja,
{0} Name,{0} Nimi,
{0} is required,{0} on nõutav,
@ -4113,7 +4085,6 @@ Custom SCSS,Kohandatud SCSS,
Navbar,Navbar,
Source Message,Allikasõnum,
Translated Message,Tõlgitud sõnum,
Verified By,Kontrollitud,
Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand.,"Selle konsooli kasutamine võib lubada ründajatel teisena esineda ja teie teavet varastada. Ärge sisestage ega kleepige koodi, millest te aru ei saa.",
{0} m,{0} m,
{0} h,{0} h,
@ -4146,7 +4117,6 @@ Collapse,Ahenda,
{0} is not a valid Name,{0} pole kehtiv nimi,
Your system is being updated. Please refresh again after a few moments.,Teie süsteemi värskendatakse. Mõne hetke pärast värskendage uuesti.,
{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first.,{0} {1}: Saadetud kirjet ei saa kustutada. Esmalt peate selle {2} tühistama {3}.,
Invalid naming series (. missing) for {0},Kehtetu nimede seeria (. Puudub) domeenile {0},
Error has occurred in {0},Üksuses {0} ilmnes viga,
Status Updated,Olek värskendatud,
You can also copy-paste this {0} to your browser,Samuti saate selle {0} oma brauserisse kopeerida ja kleepida,
@ -4168,14 +4138,11 @@ Is Billing Contact,Kas arvelduskontakt,
Address And Contacts,Aadress ja kontaktid,
Lead Conversion Time,Plii ümberarvestusaeg,
Due Date Based On,Tähtpäev põhineb,
Phone Number,Telefoninumber,
Linked Documents,Lingitud dokumendid,
Account SID,Konto SID,
Steps,Sammud,
email,e-post,
Component,komponent,
Subtitle,Subtiitrid,
Global Defaults,Global Vaikeväärtused,
Prefix,Eesliide,
Is Public,On avalik,
This chart will be available to all Users if this is set,"Kui see on määratud, on see diagramm kõigile kasutajatele kättesaadav",
@ -4362,7 +4329,6 @@ Dynamic Filters Section,Dünaamiliste filtrite sektsioon,
Please create Card first,Kõigepealt looge kaart,
Onboarding Permission,Pardale mineku luba,
Onboarding Step,Onboarding samm,
Is Mandatory,On kohustuslik,
Is Skipped,On vahele jäetud,
Create Entry,Loo kirje,
Update Settings,Värskendage seadeid,
@ -4400,7 +4366,6 @@ Message (HTML),Sõnum (HTML),
Send Attachments,Saada manused,
Testing,Testimine,
System Notification,Süsteemi teatamine,
WhatsApp,WhatsApp,
Twilio Number,Twilio number,
"To use WhatsApp for Business, initialize <a href=""#Form/Twilio Settings"">Twilio Settings</a>.","WhatsAppi for Business kasutamiseks lähtestage <a href=""#Form/Twilio Settings"">Twilio seaded</a> .",
"To use Slack Channel, add a <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL</a>.","Slack Channel&#39;i kasutamiseks lisage <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL</a> .",
@ -4535,7 +4500,6 @@ Add to ToDo,Lisage teenusesse ToDo,
{0} are currently {1},{0} on praegu {1},
Currently Replying,Praegu vastab,
created {0},lõi {0},
Make a call,Helistage,
Change,Muuda,Coins
Too Many Requests,Liiga palju taotlusi,
"Invalid Authorization headers, add a token with a prefix from one of the following: {0}.","Sobimatud autoriseerimispäised, lisage eesliitega luba ühest järgmistest: {0}.",
@ -4700,3 +4664,135 @@ Value cannot be negative for {0}: {1},Väärtus {0} ei saa olla negatiivne: {1},
Negative Value,Negatiivne väärtus,
Authentication failed while receiving emails from Email Account: {0}.,E-posti kontolt meilide saamisel nurjus autentimine: {0}.,
Message from server: {0},Sõnum serverilt: {0},
Add Row,Lisa Row,
Analytics,Analytics,
Anonymous,Anonüümne,
Author,autor,
Basic,Põhiline,
Billing,Arved,
Contact Details,Kontaktandmed,
Datetime,Date,
Enable,võimaldama,
Event,Sündmus,
Full,Täis,
Insert,Sisesta,
Interests,Huvid,
Language Name,keel Nimi,
License,Litsents,
Limit,piir,
Log,Logi,
Meeting,Kohtumine,
My Account,Minu konto,
Newsletters,Infolehed,
Password,Salasõna,
Pincode,PIN-koodi,
Please select prefix first,Palun valige eesliide esimene,
Please set Email Address,Palun määra e-posti aadress,
Please set the series to be used.,Palun määra kasutatud seeria.,
Portal Settings,portaal seaded,
Reference Owner,viide Omanik,
Region,Piirkond,
Report Builder,Report Builder,
Sample,Proov,
Saved,Salvestatud,
Series {0} already used in {1},Seeria {0} on juba kasutatud {1},
Set as Default,Set as Default,
Shipping,Laevandus,
Standard,Standard,
Test,Test,
Traceback,Jälgimise,
Unable to find DocType {0},DocType&#39;i leidmine nurjus {0},
Weekdays,Nädalapäevad,
Workflow,Töövoo,
You need to be logged in to access this page,"Sa pead olema sisselogitud, et pääseda sellele lehele",
County,maakond,
Images,images,
Office,Kontor,
Passive,Passiivne,
Permanent,püsiv,
Plant,Taim,
Postal,Posti-,
Previous,Eelmine,
Shop,Kauplus,
Subsidiary,Tütarettevõte,
There is some problem with the file url: {0},Seal on mõned probleem faili url: {0},
"Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}","Erimärgid, välja arvatud &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; Ja &quot;}}&quot; pole sarjade nimetamisel lubatud {0}",
Export Type,Ekspordi tüüp,
Last Sync On,Viimane sünkroonimine on sisse lülitatud,
Webhook Secret,Webhooki saladus,
Back to Home,Tagasi koju,
Customize,Kohanda,
Edit Profile,Muuda profiili,
File Manager,Failihaldur,
Invite as User,Kutsu Kasutaja,
Newsletter,Infobülletään,
Printing,Trükkimine,
Publish,Avalda,
Refreshing,Värskendav,
Select All,Vali kõik,
Set,Seadke,
Setup Wizard,Setup Wizard,
Update Details,Uuenda üksikasju,
You,Sa,
{0} Name,{0} Nimi,
Bold,Julge,
Center,Keskpunkt,
Comment,Kommenteeri,
Not Found,Ei leitud,
User Id,Kasutaja ID,
Position,Positsioon,
Crop,Kärpima,
Topic,teema,
Public Transport,Ühistransport,
Request Data,Taotlege andmeid,
Steps,Sammud,
Reference DocType,Viide DocType,
Select Transaction,Vali Tehing,
Help HTML,Abi HTML,
Series List for this Transaction,Seeria nimekiri selle Tehing,
User must always select,Kasutaja peab alati valida,
Check this if you want to force the user to select a series before saving. There will be no default if you check this.,"Märgi see, kui soovid sundida kasutajal valida rida enne salvestamist. Ei toimu vaikimisi, kui te vaadata seda.",
Prefix,Eesliide,
This is the number of the last created transaction with this prefix,See on mitmeid viimase loodud tehingu seda prefiksit,
Update Series Number,Värskenda seerianumbri,
Validation Error,Valideerimisviga,
Andaman and Nicobar Islands,Andamani ja Nicobari saared,
Andhra Pradesh,Andhra Pradesh,
Arunachal Pradesh,Arunachal Pradesh,
Assam,Assam,
Bihar,Bihar,
Chandigarh,Chandigarh,
Chhattisgarh,Chhattisgarh,
Dadra and Nagar Haveli,Dadra ja Nagar Haveli,
Daman and Diu,Daman ja Diu,
Delhi,Delhi,
Goa,Goa,
Gujarat,Gujarat,
Haryana,Haryana,
Himachal Pradesh,Himachal Pradesh,
Jammu and Kashmir,Jammu ja Kashmir,
Jharkhand,Jharkhand,
Karnataka,Karnataka,
Kerala,Kerala,
Lakshadweep Islands,Lakshadweepi saared,
Madhya Pradesh,Madhya Pradesh,
Maharashtra,Maharashtra,
Manipur,Manipur,
Meghalaya,Meghalaya,
Mizoram,Mizoram,
Nagaland,Nagaland,
Odisha,Odisha,
Other Territory,Muu territoorium,
Pondicherry,Pondicherry,
Punjab,Punjab,
Rajasthan,Rajasthan,
Sikkim,Sikkim,
Tamil Nadu,Tamil Nadu,
Telangana,Telangana,
Tripura,Tripura,
Uttar Pradesh,Uttar Pradesh,
Uttarakhand,Uttarakhand,
West Bengal,Lääne-Bengal,
Published on,Avaldatud,
Bottom,Alumine,
Top,Üles,

1 A4 A4
9 Actions Actions
10 Active Aktiivne
11 Add Lisama
Add Comment Lisa kommentaar
12 Add Row Lisa Row
13 Address Aadress
14 Address Line 2 Aadress Line 2
143 Monthly Kuu
144 More Rohkem
145 More Information Rohkem informatsiooni
More... Rohkem ...
146 Move käik
147 My Account Minu konto
148 New Address New Address
155 None Puudub
156 Not Permitted Ei ole lubatud
157 Not active Ei ole aktiivne
Notes Märkused
158 Number Number
159 Online Hetkel
160 Operation Operation
164 Page Missing or Moved Page kadunud või liigutada
165 Parameter Parameeter
166 Password Salasõna
Payment Gateway Payment Gateway
Payment Gateway Name Makse gateway nimi
Payments Maksed
167 Period Periood
168 Pincode PIN-koodi
Plan Name Plaani nimi
169 Please enable pop-ups Palun võimaldage pop-ups
170 Please select Company Palun valige Company
171 Please select {0} Palun valige {0}
172 Please set Email Address Palun määra e-posti aadress
Portal Portal
173 Portal Settings portaal seaded
174 Preview Eelvaade
175 Primary Esmane
214 Sample Proov
215 Saturday Laupäev
216 Saved Salvestatud
Scan Barcode Skaneeri vöötkood
217 Scheduled Plaanitud
218 Search Otsing
219 Secret Key Secret Key
228 Shipping Laevandus
229 Short Name Lühike nimi
230 Slideshow Slideshow
Some information is missing Mõned andmed puuduvad
231 Source Allikas
232 Source Name Allikas Nimi
233 Standard Standard
237 Stopped Peatatud
238 Subject Subjekt
239 Submit Esita
Successful Edukas
240 Summary Kokkuvõte
241 Sunday Pühapäev
242 System Manager Süsteemihaldur
249 Timespan Ajavahemik
250 To Et
251 To Date Kuupäev
Tools Töövahendid
252 Traceback Jälgimise
253 URL URL
254 Unsubscribed Tellimata
Use Sandbox Kasuta liivakasti
255 User Kasutaja
256 User ID kasutaja ID
257 Users Kasutajad
556 Bulk Edit {0} Bulk Edit {0}
557 Bulk Rename Bulk Nimeta
558 Bulk Update hulgivärskendamine
Busy Hõivatud
559 Button Button
560 Button Help Button Abi
561 Button Label Button Label
692 Complete By Lõppenud
693 Complete Registration Täielik Registreeri
694 Complete Setup Täielik Setup
Completed By Lõpule jõudnud
695 Compose Email Koosta meil
696 Condition Detail Tingimuste üksikasjad
697 Conditions Tingimused
1804 PayPal Settings PayPal seaded
1805 PayPal payment gateway settings PayPal makse gateway seaded
1806 Payment Cancelled makse Tühistatud
Payment Failed makse ebaõnnestus
1807 Payment Success makse Edu
1808 Pending Approval Kinnituse ootel
1809 Pending Verification Kinnituse ootel
3200 Click on the lock icon to toggle public/private Avaliku / privaatse vahetamiseks klõpsake lukuikoonil
3201 Click on {0} to generate Refresh Token. Värskenda tokeni loomiseks klõpsake {0}.
3202 Close Condition Sule seisund
Column {0} Veerg {0}
3203 Columns / Fields Veerud / väljad
3204 Configure notifications for mentions, assignments, energy points and more. Seadistage mainimiste, määramiste, energiapunktide ja muu teabe teatised.
3205 Contact Email Kontakt E-
3281 Failure Rike
3282 Fetching default Global Search documents. Globaalse otsingu vaikedokumentide toomine.
3283 Fetching posts... Postituste toomine ...
Field Mapping Väljade kaardistamine
3284 Field To Check Kontrollitav väli
3285 File Information Faili teave
3286 Filter By Filtreeri poolt
3435 No records will be exported Ühtegi kirjet ei ekspordita
3436 No results found for {0} in Global Search Globaalses otsingus ei leitud tulemusi {0}
3437 No user found Kasutajat ei leitud
Not Specified Pole täpsustatud
3438 Notification Log Teavituslogi
3439 Notification Settings Märguandeseaded
3440 Notification Subscribed Document Teate tellitud dokument
3590 Untranslated Tõlkimata
3591 Upcoming Events Sündmused
3592 Update Existing Records Värskendage olemasolevaid kirjeid
Update Type Värskenduse tüüp
3593 Updated To A New Version 🎉 Uuendatud uueks versiooniks 🎉
3594 Updating {0} of {1}, {2} {0} {1}, {2} värskendamine
3595 Upload file Faili üles laadima
3696 Disabled Invaliidistunud
3697 Doctype DocType
3698 Download Template Lae mall
Dr Dr
3699 Due Date Tähtaeg
3700 Duplicate Duplicate
3701 Edit Profile Muuda profiili
3702 Email E-kiri
End Time End Time
3703 Enter Value Sisesta Value
3704 Entity Type Üksuse tüüp
3705 Error Eksimus
3706 Expired Aegunud
3707 Export Eksport
3708 Export not allowed. You need {0} role to export. Ekspordi ole lubatud. Peate {0} rolli ekspordi.
Fetching... Toomine ...
3709 Field väli
3710 File Manager Failihaldur
3711 Filters Filtrid
3720 In Progress In Progress
3721 Intermediate kesktaseme
3722 Invite as User Kutsu Kasutaja
It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account. Tundub, et serveri riba konfiguratsiooniga on probleem. Ebaõnnestumise korral tagastatakse summa teie kontole.
3723 Loading... Laadimine ...
3724 Location Asukoht
Looks like someone sent you to an incomplete URL. Please ask them to look into it. Paistab, et keegi saatis teile mittetäielik URL. Palun paluge uurida seda.
Master kapten
3725 Message Sõnum
3726 Missing Values Required Kadunud väärtusi Vajalikud
3727 Mobile No Mobiili number
3733 Offline offline
3734 Open Avatud
3735 Page {0} of {1} Page {0} {1}
Pay Maksma
3736 Pending Pooleliolev
3737 Phone Telefon
3738 Please click on the following link to set your new password Palun kliki järgmist linki seada oma uus parool
3782 Year Aasta
3783 Yearly Iga-aastane
3784 You Sa
You can also copy-paste this link in your browser Võite kopeeri see link oma brauseri
3785 and ja
3786 {0} Name {0} Nimi
3787 {0} is required {0} on nõutav
4085 Navbar Navbar
4086 Source Message Allikasõnum
4087 Translated Message Tõlgitud sõnum
Verified By Kontrollitud
4088 Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand. Selle konsooli kasutamine võib lubada ründajatel teisena esineda ja teie teavet varastada. Ärge sisestage ega kleepige koodi, millest te aru ei saa.
4089 {0} m {0} m
4090 {0} h {0} h
4117 {0} is not a valid Name {0} pole kehtiv nimi
4118 Your system is being updated. Please refresh again after a few moments. Teie süsteemi värskendatakse. Mõne hetke pärast värskendage uuesti.
4119 {0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first. {0} {1}: Saadetud kirjet ei saa kustutada. Esmalt peate selle {2} tühistama {3}.
Invalid naming series (. missing) for {0} Kehtetu nimede seeria (. Puudub) domeenile {0}
4120 Error has occurred in {0} Üksuses {0} ilmnes viga
4121 Status Updated Olek värskendatud
4122 You can also copy-paste this {0} to your browser Samuti saate selle {0} oma brauserisse kopeerida ja kleepida
4138 Address And Contacts Aadress ja kontaktid
4139 Lead Conversion Time Plii ümberarvestusaeg
4140 Due Date Based On Tähtpäev põhineb
Phone Number Telefoninumber
4141 Linked Documents Lingitud dokumendid
Account SID Konto SID
4142 Steps Sammud
4143 email e-post
4144 Component komponent
4145 Subtitle Subtiitrid
Global Defaults Global Vaikeväärtused
4146 Prefix Eesliide
4147 Is Public On avalik
4148 This chart will be available to all Users if this is set Kui see on määratud, on see diagramm kõigile kasutajatele kättesaadav
4329 Please create Card first Kõigepealt looge kaart
4330 Onboarding Permission Pardale mineku luba
4331 Onboarding Step Onboarding samm
Is Mandatory On kohustuslik
4332 Is Skipped On vahele jäetud
4333 Create Entry Loo kirje
4334 Update Settings Värskendage seadeid
4366 Send Attachments Saada manused
4367 Testing Testimine
4368 System Notification Süsteemi teatamine
WhatsApp WhatsApp
4369 Twilio Number Twilio number
4370 To use WhatsApp for Business, initialize <a href="#Form/Twilio Settings">Twilio Settings</a>. WhatsAppi for Business kasutamiseks lähtestage <a href="#Form/Twilio Settings">Twilio seaded</a> .
4371 To use Slack Channel, add a <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook URL</a>. Slack Channel&#39;i kasutamiseks lisage <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook URL</a> .
4500 {0} are currently {1} {0} on praegu {1}
4501 Currently Replying Praegu vastab
4502 created {0} lõi {0}
Make a call Helistage
4503 Change Muuda Coins
4504 Too Many Requests Liiga palju taotlusi
4505 Invalid Authorization headers, add a token with a prefix from one of the following: {0}. Sobimatud autoriseerimispäised, lisage eesliitega luba ühest järgmistest: {0}.
4664 Negative Value Negatiivne väärtus
4665 Authentication failed while receiving emails from Email Account: {0}. E-posti kontolt meilide saamisel nurjus autentimine: {0}.
4666 Message from server: {0} Sõnum serverilt: {0}
4667 Add Row Lisa Row
4668 Analytics Analytics
4669 Anonymous Anonüümne
4670 Author autor
4671 Basic Põhiline
4672 Billing Arved
4673 Contact Details Kontaktandmed
4674 Datetime Date
4675 Enable võimaldama
4676 Event Sündmus
4677 Full Täis
4678 Insert Sisesta
4679 Interests Huvid
4680 Language Name keel Nimi
4681 License Litsents
4682 Limit piir
4683 Log Logi
4684 Meeting Kohtumine
4685 My Account Minu konto
4686 Newsletters Infolehed
4687 Password Salasõna
4688 Pincode PIN-koodi
4689 Please select prefix first Palun valige eesliide esimene
4690 Please set Email Address Palun määra e-posti aadress
4691 Please set the series to be used. Palun määra kasutatud seeria.
4692 Portal Settings portaal seaded
4693 Reference Owner viide Omanik
4694 Region Piirkond
4695 Report Builder Report Builder
4696 Sample Proov
4697 Saved Salvestatud
4698 Series {0} already used in {1} Seeria {0} on juba kasutatud {1}
4699 Set as Default Set as Default
4700 Shipping Laevandus
4701 Standard Standard
4702 Test Test
4703 Traceback Jälgimise
4704 Unable to find DocType {0} DocType&#39;i leidmine nurjus {0}
4705 Weekdays Nädalapäevad
4706 Workflow Töövoo
4707 You need to be logged in to access this page Sa pead olema sisselogitud, et pääseda sellele lehele
4708 County maakond
4709 Images images
4710 Office Kontor
4711 Passive Passiivne
4712 Permanent püsiv
4713 Plant Taim
4714 Postal Posti-
4715 Previous Eelmine
4716 Shop Kauplus
4717 Subsidiary Tütarettevõte
4718 There is some problem with the file url: {0} Seal on mõned probleem faili url: {0}
4719 Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0} Erimärgid, välja arvatud &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; Ja &quot;}}&quot; pole sarjade nimetamisel lubatud {0}
4720 Export Type Ekspordi tüüp
4721 Last Sync On Viimane sünkroonimine on sisse lülitatud
4722 Webhook Secret Webhooki saladus
4723 Back to Home Tagasi koju
4724 Customize Kohanda
4725 Edit Profile Muuda profiili
4726 File Manager Failihaldur
4727 Invite as User Kutsu Kasutaja
4728 Newsletter Infobülletään
4729 Printing Trükkimine
4730 Publish Avalda
4731 Refreshing Värskendav
4732 Select All Vali kõik
4733 Set Seadke
4734 Setup Wizard Setup Wizard
4735 Update Details Uuenda üksikasju
4736 You Sa
4737 {0} Name {0} Nimi
4738 Bold Julge
4739 Center Keskpunkt
4740 Comment Kommenteeri
4741 Not Found Ei leitud
4742 User Id Kasutaja ID
4743 Position Positsioon
4744 Crop Kärpima
4745 Topic teema
4746 Public Transport Ühistransport
4747 Request Data Taotlege andmeid
4748 Steps Sammud
4749 Reference DocType Viide DocType
4750 Select Transaction Vali Tehing
4751 Help HTML Abi HTML
4752 Series List for this Transaction Seeria nimekiri selle Tehing
4753 User must always select Kasutaja peab alati valida
4754 Check this if you want to force the user to select a series before saving. There will be no default if you check this. Märgi see, kui soovid sundida kasutajal valida rida enne salvestamist. Ei toimu vaikimisi, kui te vaadata seda.
4755 Prefix Eesliide
4756 This is the number of the last created transaction with this prefix See on mitmeid viimase loodud tehingu seda prefiksit
4757 Update Series Number Värskenda seerianumbri
4758 Validation Error Valideerimisviga
4759 Andaman and Nicobar Islands Andamani ja Nicobari saared
4760 Andhra Pradesh Andhra Pradesh
4761 Arunachal Pradesh Arunachal Pradesh
4762 Assam Assam
4763 Bihar Bihar
4764 Chandigarh Chandigarh
4765 Chhattisgarh Chhattisgarh
4766 Dadra and Nagar Haveli Dadra ja Nagar Haveli
4767 Daman and Diu Daman ja Diu
4768 Delhi Delhi
4769 Goa Goa
4770 Gujarat Gujarat
4771 Haryana Haryana
4772 Himachal Pradesh Himachal Pradesh
4773 Jammu and Kashmir Jammu ja Kashmir
4774 Jharkhand Jharkhand
4775 Karnataka Karnataka
4776 Kerala Kerala
4777 Lakshadweep Islands Lakshadweepi saared
4778 Madhya Pradesh Madhya Pradesh
4779 Maharashtra Maharashtra
4780 Manipur Manipur
4781 Meghalaya Meghalaya
4782 Mizoram Mizoram
4783 Nagaland Nagaland
4784 Odisha Odisha
4785 Other Territory Muu territoorium
4786 Pondicherry Pondicherry
4787 Punjab Punjab
4788 Rajasthan Rajasthan
4789 Sikkim Sikkim
4790 Tamil Nadu Tamil Nadu
4791 Telangana Telangana
4792 Tripura Tripura
4793 Uttar Pradesh Uttar Pradesh
4794 Uttarakhand Uttarakhand
4795 West Bengal Lääne-Bengal
4796 Published on Avaldatud
4797 Bottom Alumine
4798 Top Üles

View file

@ -9,7 +9,6 @@ Action,اقدام,
Actions,عملیات,
Active,فعال,
Add,افزودن,
Add Comment,اضافه کردن نظر,
Add Row,اضافه کردن ردیف,
Address,نشانی,
Address Line 2,خط 2 آدرس,
@ -144,7 +143,6 @@ Monday,دوشنبه,
Monthly,ماهیانه,
More,بیش,
More Information,اطلاعات بیشتر,
More...,بیش...,
Move,حرکت,
My Account,حساب من,
New Address,آدرس جدید,
@ -157,7 +155,6 @@ No items found.,موردی یافت نشد.,
None,هیچی,
Not Permitted,غیر مجاز,
Not active,فعال نیست,
Notes,یادداشت,
Number,عدد,
Online,آنلاین,
Operation,عمل,
@ -167,17 +164,12 @@ Owner,مالک,
Page Missing or Moved,صفحه گم شده و یا نقل مکان کرد,
Parameter,پارامتر,
Password,رمز عبور,
Payment Gateway,دروازه پرداخت,
Payment Gateway Name,نام دروازه پرداخت,
Payments,پرداخت,
Period,دوره,
Pincode,Pincode,
Plan Name,نام برنامه,
Please enable pop-ups,لطفا پنجرههای بازشو را فعال,
Please select Company,لطفا انتخاب کنید شرکت,
Please select {0},لطفا انتخاب کنید {0},
Please set Email Address,لطفا آدرس ایمیل,
Portal,پرتال,
Portal Settings,تنظیمات پورتال,
Preview,پیش نمایش,
Primary,اولیه,
@ -222,7 +214,6 @@ Salutation,سلام,
Sample,نمونه,
Saturday,روز شنبه,
Saved,ذخیره,
Scan Barcode,اسکن بارکد,
Scheduled,برنامه ریزی,
Search,جستجو,
Secret Key,کلید های مخفی,
@ -237,7 +228,6 @@ Settings,تنظیمات,
Shipping,حمل,
Short Name,نام کوتاه,
Slideshow,نمایش به صورت اسلاید,
Some information is missing,برخی از اطلاعات از دست رفته است,
Source,منبع,
Source Name,نام منبع,
Standard,استاندارد,
@ -247,7 +237,6 @@ State,دولت,
Stopped,متوقف,
Subject,موضوع,
Submit,ثبت کردن,
Successful,موفق شدن,
Summary,خلاصه,
Sunday,یکشنبه,
System Manager,سیستم مدیریت,
@ -260,11 +249,9 @@ The page you are looking for is missing. This could be because it is moved or th
Timespan,مدت زمان,
To,به,
To Date,به روز,
Tools,ابزار,
Traceback,ردیابی,
URL,URL,
Unsubscribed,اشتراک لغو,
Use Sandbox,استفاده از گودال ماسهبازی,
User,کاربر,
User ID,ID کاربر,
Users,کاربران,
@ -569,7 +556,6 @@ Bulk Delete,حذف فله,
Bulk Edit {0},فله ویرایش {0},
Bulk Rename,فله تغییر نام,
Bulk Update,به روز رسانی فله,
Busy,مشغول,
Button,دکمه,
Button Help,دکمه راهنما,
Button Label,برچسب را فشار دهید,
@ -706,7 +692,6 @@ Compiled Successfully,با موفقیت گردآوری شد,
Complete By,کامل توسط,
Complete Registration,ثبت نام کامل,
Complete Setup,راه اندازی کامل,
Completed By,تکمیل شده توسط,
Compose Email,نوشتن ایمیل,
Condition Detail,جزئیات وضعیت,
Conditions,شرایط,
@ -1690,8 +1675,8 @@ Not a valid Workflow Action,یک اقدام عملی کار معتبر نیست,
Not a valid user,یک کاربر معتبر,
Not a zip file,نه یک فایل فشرده,
Not allowed for {0}: {1},برای {0} مجاز نیست: {1},
"You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4}","شما مجاز به دسترسی به {0} به دلیل اینکه در ردیف {3}، فیلد {4} به {1} &#39;{2}&#39; در ارتباط است،",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},"شما مجاز به دسترسی به این {0} رکورد به دلیل اینکه در فیلد {3} به {1} &#39;{2}&#39; در ارتباط است،",
"You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4}",شما مجاز به دسترسی به {0} به دلیل اینکه در ردیف {3}، فیلد {4} به {1} &#39;{2}&#39; در ارتباط است،,
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},شما مجاز به دسترسی به این {0} رکورد به دلیل اینکه در فیلد {3} به {1} &#39;{2}&#39; در ارتباط است،,
Not allowed to Import,مجاز به واردات,
Not allowed to change {0} after submission,مجاز به تغییر {0} پس از ارسال,
Not allowed to print cancelled documents,مجاز به چاپ اسناد لغو,
@ -1819,7 +1804,6 @@ Path to private Key File,مسیر به پرونده کلید خصوصی,
PayPal Settings,تنظیمات پی پال,
PayPal payment gateway settings,پی پال تنظیمات دروازه پرداخت,
Payment Cancelled,پرداخت لغو,
Payment Failed,پرداخت ناموفق,
Payment Success,موفقیت پرداخت,
Pending Approval,در انتظار تصویب,
Pending Verification,تایید در حال بررسی,
@ -3216,7 +3200,6 @@ Click on the link below to approve the request,برای تأیید درخواس
Click on the lock icon to toggle public/private,برای جابجایی عمومی / خصوصی روی نماد قفل کلیک کنید,
Click on {0} to generate Refresh Token.,برای تولید Refresh Token روی {0 کلیک کنید.,
Close Condition,شرایط نزدیک,
Column {0},ستون {0,
Columns / Fields,ستون ها / زمینه ها,
"Configure notifications for mentions, assignments, energy points and more.",پیکربندی اعلان ها برای موارد ذکر شده ، تکالیف ، نقاط انرژی و موارد دیگر.,
Contact Email,تماس با ایمیل,
@ -3298,7 +3281,6 @@ Failed to create an Event Consumer or an Event Consumer for the current site is
Failure,شکست,
Fetching default Global Search documents.,واکشی اسناد پیش فرض جستجوی جهانی.,
Fetching posts...,در حال واگذاری پست ها ...,
Field Mapping,نقشه برداری درست,
Field To Check,زمینه برای بررسی,
File Information,اطلاعات پرونده,
Filter By,محدود شده توسط,
@ -3453,7 +3435,6 @@ No posts yet,هنوز پستی ارسال نشده است,
No records will be exported,هیچ سابقه ای صادر نمی شود,
No results found for {0} in Global Search,در جستجوی جهانی هیچ نتیجه ای برای {0 یافت نشد,
No user found,هیچ کاربری یافت نشد,
Not Specified,مشخص نشده است,
Notification Log,ورود به سیستم اطلاع رسانی,
Notification Settings,تنظیمات اعلان,
Notification Subscribed Document,اعلان سند مشترک,
@ -3609,7 +3590,6 @@ Untitled Column,ستون بدون عنوان,
Untranslated,بدون ترجمه,
Upcoming Events,رویدادهای نزدیک,
Update Existing Records,سوابق موجود را به روز کنید,
Update Type,نوع بروزرسانی,
Updated To A New Version 🎉,به نسخه جدید به روز شد,
"Updating {0} of {1}, {2}",به روزرسانی {0} از {1 {، {2,
Upload file,آپلود فایل,
@ -3716,19 +3696,16 @@ Designation,تعیین,
Disabled,غیر فعال,
Doctype,DOCTYPE,
Download Template,دانلود الگو,
Dr,دکتر,
Due Date,تاریخ,
Duplicate,تکراری,
Edit Profile,ویرایش پروفایل,
Email,پست الکترونیک,
End Time,پایان زمان,
Enter Value,ارزش را وارد کنید,
Entity Type,نوع سازمان,
Error,خطا,
Expired,تمام شده,
Export,صادرات,
Export not allowed. You need {0} role to export.,صادرات پذیر نیست. شما {0} نقش به صادرات نیاز دارید.,
Fetching...,واکشی ...,
Field,رشته,
File Manager,مدیریت فایل,
Filters,فیلترها,
@ -3743,11 +3720,8 @@ Import Data from CSV / Excel files.,واردات داده ها از فایل ه
In Progress,در حال پیش رفت,
Intermediate,حد واسط,
Invite as User,دعوت به عنوان کاربر,
"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.",به نظر می رسد یک مشکل با پیکربندی نوار خط سرور وجود دارد. در صورت خرابی، مقدار به حساب شما بازپرداخت خواهد شد.,
Loading...,در حال بارگذاری ...,
Location,محل,
Looks like someone sent you to an incomplete URL. Please ask them to look into it.,به نظر می رسد کسی که شما را به URL های ناقص ارسال می شود. لطفا از آنها بخواهید به آن نگاه کنید.,
Master,استاد,
Message,پیام,
Missing Values Required,از دست رفتن ارزش های مورد نیاز,
Mobile No,موبایل بدون,
@ -3759,7 +3733,6 @@ Note,یادداشت,
Offline,آفلاین,
Open,باز,
Page {0} of {1},صفحه {0} از {1},
Pay,پرداخت,
Pending,در انتظار,
Phone,تلفن,
Please click on the following link to set your new password,لطفا بر روی لینک زیر کلیک کنید برای تنظیم کلمه عبور جدید خود را,
@ -3809,7 +3782,6 @@ Welcome to {0},به انجمن خوش آمدید {0},
Year,سال,
Yearly,سالیانه,
You,شما,
You can also copy-paste this link in your browser,شما همچنین می توانید این لینک را در مرورگر خود کپی-پیست کنید,
and,و,
{0} Name,{0} نام,
{0} is required,{0} مورد نیاز است,
@ -4113,7 +4085,6 @@ Custom SCSS,SCSS سفارشی,
Navbar,نوار,
Source Message,پیام منبع,
Translated Message,پیام ترجمه شده,
Verified By,تایید شده توسط,
Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand.,استفاده از این کنسول ممکن است به مهاجمان اجازه دهد تا شما را جعل کنند و اطلاعات شما را بدزدند. کدی را وارد نکنید که نمی فهمید.,
{0} m,{0} متر,
{0} h,{0} ساعت,
@ -4146,7 +4117,6 @@ Collapse,سقوط - فروپاشی,
{0} is not a valid Name,{0} نام معتبری نیست,
Your system is being updated. Please refresh again after a few moments.,سیستم شما در حال به روزرسانی است. لطفاً بعد از چند لحظه دوباره تازه کنید.,
{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first.,{0} {1}: سابقه ارسال شده قابل حذف نیست. ابتدا باید آن را {2} لغو کنید {3}.,
Invalid naming series (. missing) for {0},سری نامگذاری نامعتبر است (. وجود ندارد) برای {0},
Error has occurred in {0},خطایی در {0} رخ داده است,
Status Updated,وضعیت به روز شد,
You can also copy-paste this {0} to your browser,همچنین می توانید این {0} را در مرورگر خود کپی و پیست کنید,
@ -4168,14 +4138,11 @@ Is Billing Contact,آیا تماس صورتحساب است,
Address And Contacts,آدرس و مخاطبین,
Lead Conversion Time,زمان تبدیل سرب,
Due Date Based On,تاریخ بر اساس تاریخ,
Phone Number,شماره تلفن,
Linked Documents,اسناد مرتبط,
Account SID,حساب SID,
Steps,مراحل,
email,پست الکترونیک,
Component,مولفه,
Subtitle,عنوان فرعی,
Global Defaults,به طور پیش فرض جهانی,
Prefix,پیشوند,
Is Public,عمومی است,
This chart will be available to all Users if this is set,در صورت تنظیم این نمودار در دسترس همه کاربران قرار خواهد گرفت,
@ -4362,7 +4329,6 @@ Dynamic Filters Section,بخش فیلترهای پویا,
Please create Card first,لطفاً ابتدا کارت ایجاد کنید,
Onboarding Permission,مجوز پردازنده,
Onboarding Step,مرحله پردازنده,
Is Mandatory,اجباری است,
Is Skipped,رد شده است,
Create Entry,ورودی ایجاد کنید,
Update Settings,به روز رسانی تنظیمات,
@ -4400,7 +4366,6 @@ Message (HTML),پیام (HTML),
Send Attachments,ارسال پیوست ها,
Testing,آزمایش کردن,
System Notification,اعلان سیستم,
WhatsApp,واتس اپ,
Twilio Number,شماره Twilio,
"To use WhatsApp for Business, initialize <a href=""#Form/Twilio Settings"">Twilio Settings</a>.","برای استفاده از WhatsApp برای تجارت ، <a href=""#Form/Twilio Settings"">تنظیمات Twilio را</a> اولیه <a href=""#Form/Twilio Settings"">کنید</a> .",
"To use Slack Channel, add a <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL</a>.","برای استفاده از Slack Channel ، یک <a href=""#List/Slack%20Webhook%20URL/List"">URL Slack Webhook</a> اضافه <a href=""#List/Slack%20Webhook%20URL/List"">کنید</a> .",
@ -4535,7 +4500,6 @@ Add to ToDo,افزودن به ToDo,
{0} are currently {1},{0} در حال حاضر {1} هستند,
Currently Replying,در حال پاسخ دادن,
created {0},ایجاد شده {0},
Make a call,تماس بگیر,
Change,تغییر دادن,Coins
Too Many Requests,درخواست های بسیار زیاد,
"Invalid Authorization headers, add a token with a prefix from one of the following: {0}.",عناوین مجوز نامعتبر است ، یک کد با پیشوند یکی از موارد زیر اضافه کنید: {0},
@ -4700,3 +4664,135 @@ Value cannot be negative for {0}: {1},مقدار برای {0} نمی تواند
Negative Value,ارزش منفی,
Authentication failed while receiving emails from Email Account: {0}.,تأیید اعتبار هنگام دریافت ایمیل از حساب ایمیل انجام نشد: {0}.,
Message from server: {0},پیام از طرف سرور: {0},
Add Row,اضافه کردن ردیف,
Analytics,تجزیه و تحلیل ترافیک,
Anonymous,ناشناس,
Author,نویسنده,
Basic,پایه,
Billing,صدور صورت حساب,
Contact Details,اطلاعات تماس,
Datetime,زمان قرار,
Enable,قادر ساختن,
Event,واقعه,
Full,پر شده,
Insert,درج,
Interests,منافع,
Language Name,نام زبان,
License,مجوز,
Limit,حد,
Log,ورود,
Meeting,ملاقات,
My Account,حساب من,
Newsletters,خبرنامه,
Password,رمز عبور,
Pincode,Pincode,
Please select prefix first,لطفا ابتدا پیشوند انتخاب کنید,
Please set Email Address,لطفا آدرس ایمیل,
Please set the series to be used.,لطفا مجموعه ای را که استفاده می کنید تنظیم کنید,
Portal Settings,تنظیمات پورتال,
Reference Owner,مرجع مالک,
Region,منطقه,
Report Builder,گزارش ساز,
Sample,نمونه,
Saved,ذخیره,
Series {0} already used in {1},سری {0} در حال حاضر در مورد استفاده {1},
Set as Default,تنظیم به عنوان پیشفرض,
Shipping,حمل,
Standard,استاندارد,
Test,تست,
Traceback,ردیابی,
Unable to find DocType {0},Unable to find DocType {0},
Weekdays,روزهای کاری,
Workflow,گردش کار,
You need to be logged in to access this page,شما نیاز به ورود برای دسترسی به این صفحه,
County,شهرستان,
Images,تصاویر,
Office,دفتر,
Passive,غیر فعال,
Permanent,دائمي,
Plant,گیاه,
Postal,پستی,
Previous,قبلی,
Shop,فروشگاه,
Subsidiary,فرعی,
There is some problem with the file url: {0},بعضی از مشکل با آدرس فایل وجود دارد: {0},
"Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}",{0} کاراکترهای خاص به جز &quot;-&quot; ، &quot;#&quot; ، &quot;.&quot; ، &quot;/&quot; ، &quot;{{&quot; و &quot;}}&quot; در سریال نامگذاری مجاز نیستند,
Export Type,نوع صادرات,
Last Sync On,آخرین همگام سازی در,
Webhook Secret,راز وب,
Back to Home,بازگشت به خانه,
Customize,سفارشی,
Edit Profile,ویرایش پروفایل,
File Manager,مدیریت فایل,
Invite as User,دعوت به عنوان کاربر,
Newsletter,عضویت در خبرنامه,
Printing,چاپ,
Publish,انتشار,
Refreshing,تازه کردن,
Select All,انتخاب همه,
Set,تنظیم,
Setup Wizard,راه اندازی جادوگر,
Update Details,جزئیات را به روز کنید,
You,شما,
{0} Name,{0} نام,
Bold,جسورانه,
Center,مرکز,
Comment,اظهار نظر,
Not Found,پیدا نشد,
User Id,شناسه کاربر,
Position,موقعیت,
Crop,محصول,
Topic,موضوع,
Public Transport,حمل و نقل عمومی,
Request Data,درخواست داده,
Steps,مراحل,
Reference DocType,DOCTYPE مرجع,
Select Transaction,انتخاب معامله,
Help HTML,راهنما HTML,
Series List for this Transaction,فهرست سری ها برای این تراکنش,
User must always select,کاربر همیشه باید انتخاب کنید,
Check this if you want to force the user to select a series before saving. There will be no default if you check this.,بررسی این اگر شما می خواهید به زور کاربر برای انتخاب یک سری قبل از ذخیره. خواهد شد وجود ندارد به طور پیش فرض اگر شما این تیک بزنید.,
Prefix,پیشوند,
This is the number of the last created transaction with this prefix,این تعداد از آخرین معامله ایجاد شده با این پیشوند است,
Update Series Number,به روز رسانی سری شماره,
Validation Error,خطای اعتبار سنجی,
Andaman and Nicobar Islands,جزایر آندامان و نیکوبار,
Andhra Pradesh,آندرا پرادش,
Arunachal Pradesh,آروناچال پرادش,
Assam,آسام,
Bihar,بیهار,
Chandigarh,چندیگر,
Chhattisgarh,چتیسگر,
Dadra and Nagar Haveli,دادرا و ناگار هاولی,
Daman and Diu,دامن و دیو,
Delhi,دهلی,
Goa,گوا,
Gujarat,گجرات,
Haryana,هاریانا,
Himachal Pradesh,هیماچال پرادش,
Jammu and Kashmir,جامو و کشمیر,
Jharkhand,جارخند,
Karnataka,کارناتاکا,
Kerala,کرالا,
Lakshadweep Islands,جزایر لاکشادویپ,
Madhya Pradesh,مادیا پرادش,
Maharashtra,ماهاراشترا,
Manipur,مانیپور,
Meghalaya,مگالایا,
Mizoram,میزورام,
Nagaland,ناگالند,
Odisha,ادیشا,
Other Territory,قلمرو دیگر,
Pondicherry,Pondicherry,
Punjab,پنجاب,
Rajasthan,راجستان,
Sikkim,سیکیم,
Tamil Nadu,تامیل نادو,
Telangana,تلانگانا,
Tripura,تریپورا,
Uttar Pradesh,اوتار پرادش,
Uttarakhand,اوتاراکند,
West Bengal,بنگال غربی,
Published on,منتشر شده در,
Bottom,پایین,
Top,بالا,

1 A4 A4
9 Actions عملیات
10 Active فعال
11 Add افزودن
Add Comment اضافه کردن نظر
12 Add Row اضافه کردن ردیف
13 Address نشانی
14 Address Line 2 خط 2 آدرس
143 Monthly ماهیانه
144 More بیش
145 More Information اطلاعات بیشتر
More... بیش...
146 Move حرکت
147 My Account حساب من
148 New Address آدرس جدید
155 None هیچی
156 Not Permitted غیر مجاز
157 Not active فعال نیست
Notes یادداشت
158 Number عدد
159 Online آنلاین
160 Operation عمل
164 Page Missing or Moved صفحه گم شده و یا نقل مکان کرد
165 Parameter پارامتر
166 Password رمز عبور
Payment Gateway دروازه پرداخت
Payment Gateway Name نام دروازه پرداخت
Payments پرداخت
167 Period دوره
168 Pincode Pincode
Plan Name نام برنامه
169 Please enable pop-ups لطفا پنجرههای بازشو را فعال
170 Please select Company لطفا انتخاب کنید شرکت
171 Please select {0} لطفا انتخاب کنید {0}
172 Please set Email Address لطفا آدرس ایمیل
Portal پرتال
173 Portal Settings تنظیمات پورتال
174 Preview پیش نمایش
175 Primary اولیه
214 Sample نمونه
215 Saturday روز شنبه
216 Saved ذخیره
Scan Barcode اسکن بارکد
217 Scheduled برنامه ریزی
218 Search جستجو
219 Secret Key کلید های مخفی
228 Shipping حمل
229 Short Name نام کوتاه
230 Slideshow نمایش به صورت اسلاید
Some information is missing برخی از اطلاعات از دست رفته است
231 Source منبع
232 Source Name نام منبع
233 Standard استاندارد
237 Stopped متوقف
238 Subject موضوع
239 Submit ثبت کردن
Successful موفق شدن
240 Summary خلاصه
241 Sunday یکشنبه
242 System Manager سیستم مدیریت
249 Timespan مدت زمان
250 To به
251 To Date به روز
Tools ابزار
252 Traceback ردیابی
253 URL URL
254 Unsubscribed اشتراک لغو
Use Sandbox استفاده از گودال ماسهبازی
255 User کاربر
256 User ID ID کاربر
257 Users کاربران
556 Bulk Edit {0} فله ویرایش {0}
557 Bulk Rename فله تغییر نام
558 Bulk Update به روز رسانی فله
Busy مشغول
559 Button دکمه
560 Button Help دکمه راهنما
561 Button Label برچسب را فشار دهید
692 Complete By کامل توسط
693 Complete Registration ثبت نام کامل
694 Complete Setup راه اندازی کامل
Completed By تکمیل شده توسط
695 Compose Email نوشتن ایمیل
696 Condition Detail جزئیات وضعیت
697 Conditions شرایط
1675 Not a valid user یک کاربر معتبر
1676 Not a zip file نه یک فایل فشرده
1677 Not allowed for {0}: {1} برای {0} مجاز نیست: {1}
1678 You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4} شما مجاز به دسترسی به {0} به دلیل اینکه در ردیف {3}، فیلد {4} به {1} &#39;{2}&#39; در ارتباط است،
1679 You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3} شما مجاز به دسترسی به این {0} رکورد به دلیل اینکه در فیلد {3} به {1} &#39;{2}&#39; در ارتباط است،
1680 Not allowed to Import مجاز به واردات
1681 Not allowed to change {0} after submission مجاز به تغییر {0} پس از ارسال
1682 Not allowed to print cancelled documents مجاز به چاپ اسناد لغو
1804 PayPal Settings تنظیمات پی پال
1805 PayPal payment gateway settings پی پال تنظیمات دروازه پرداخت
1806 Payment Cancelled پرداخت لغو
Payment Failed پرداخت ناموفق
1807 Payment Success موفقیت پرداخت
1808 Pending Approval در انتظار تصویب
1809 Pending Verification تایید در حال بررسی
3200 Click on the lock icon to toggle public/private برای جابجایی عمومی / خصوصی روی نماد قفل کلیک کنید
3201 Click on {0} to generate Refresh Token. برای تولید Refresh Token روی {0 کلیک کنید.
3202 Close Condition شرایط نزدیک
Column {0} ستون {0
3203 Columns / Fields ستون ها / زمینه ها
3204 Configure notifications for mentions, assignments, energy points and more. پیکربندی اعلان ها برای موارد ذکر شده ، تکالیف ، نقاط انرژی و موارد دیگر.
3205 Contact Email تماس با ایمیل
3281 Failure شکست
3282 Fetching default Global Search documents. واکشی اسناد پیش فرض جستجوی جهانی.
3283 Fetching posts... در حال واگذاری پست ها ...
Field Mapping نقشه برداری درست
3284 Field To Check زمینه برای بررسی
3285 File Information اطلاعات پرونده
3286 Filter By محدود شده توسط
3435 No records will be exported هیچ سابقه ای صادر نمی شود
3436 No results found for {0} in Global Search در جستجوی جهانی هیچ نتیجه ای برای {0 یافت نشد
3437 No user found هیچ کاربری یافت نشد
Not Specified مشخص نشده است
3438 Notification Log ورود به سیستم اطلاع رسانی
3439 Notification Settings تنظیمات اعلان
3440 Notification Subscribed Document اعلان سند مشترک
3590 Untranslated بدون ترجمه
3591 Upcoming Events رویدادهای نزدیک
3592 Update Existing Records سوابق موجود را به روز کنید
Update Type نوع بروزرسانی
3593 Updated To A New Version 🎉 به نسخه جدید به روز شد
3594 Updating {0} of {1}, {2} به روزرسانی {0} از {1 {، {2
3595 Upload file آپلود فایل
3696 Disabled غیر فعال
3697 Doctype DOCTYPE
3698 Download Template دانلود الگو
Dr دکتر
3699 Due Date تاریخ
3700 Duplicate تکراری
3701 Edit Profile ویرایش پروفایل
3702 Email پست الکترونیک
End Time پایان زمان
3703 Enter Value ارزش را وارد کنید
3704 Entity Type نوع سازمان
3705 Error خطا
3706 Expired تمام شده
3707 Export صادرات
3708 Export not allowed. You need {0} role to export. صادرات پذیر نیست. شما {0} نقش به صادرات نیاز دارید.
Fetching... واکشی ...
3709 Field رشته
3710 File Manager مدیریت فایل
3711 Filters فیلترها
3720 In Progress در حال پیش رفت
3721 Intermediate حد واسط
3722 Invite as User دعوت به عنوان کاربر
It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account. به نظر می رسد یک مشکل با پیکربندی نوار خط سرور وجود دارد. در صورت خرابی، مقدار به حساب شما بازپرداخت خواهد شد.
3723 Loading... در حال بارگذاری ...
3724 Location محل
Looks like someone sent you to an incomplete URL. Please ask them to look into it. به نظر می رسد کسی که شما را به URL های ناقص ارسال می شود. لطفا از آنها بخواهید به آن نگاه کنید.
Master استاد
3725 Message پیام
3726 Missing Values Required از دست رفتن ارزش های مورد نیاز
3727 Mobile No موبایل بدون
3733 Offline آفلاین
3734 Open باز
3735 Page {0} of {1} صفحه {0} از {1}
Pay پرداخت
3736 Pending در انتظار
3737 Phone تلفن
3738 Please click on the following link to set your new password لطفا بر روی لینک زیر کلیک کنید برای تنظیم کلمه عبور جدید خود را
3782 Year سال
3783 Yearly سالیانه
3784 You شما
You can also copy-paste this link in your browser شما همچنین می توانید این لینک را در مرورگر خود کپی-پیست کنید
3785 and و
3786 {0} Name {0} نام
3787 {0} is required {0} مورد نیاز است
4085 Navbar نوار
4086 Source Message پیام منبع
4087 Translated Message پیام ترجمه شده
Verified By تایید شده توسط
4088 Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand. استفاده از این کنسول ممکن است به مهاجمان اجازه دهد تا شما را جعل کنند و اطلاعات شما را بدزدند. کدی را وارد نکنید که نمی فهمید.
4089 {0} m {0} متر
4090 {0} h {0} ساعت
4117 {0} is not a valid Name {0} نام معتبری نیست
4118 Your system is being updated. Please refresh again after a few moments. سیستم شما در حال به روزرسانی است. لطفاً بعد از چند لحظه دوباره تازه کنید.
4119 {0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first. {0} {1}: سابقه ارسال شده قابل حذف نیست. ابتدا باید آن را {2} لغو کنید {3}.
Invalid naming series (. missing) for {0} سری نامگذاری نامعتبر است (. وجود ندارد) برای {0}
4120 Error has occurred in {0} خطایی در {0} رخ داده است
4121 Status Updated وضعیت به روز شد
4122 You can also copy-paste this {0} to your browser همچنین می توانید این {0} را در مرورگر خود کپی و پیست کنید
4138 Address And Contacts آدرس و مخاطبین
4139 Lead Conversion Time زمان تبدیل سرب
4140 Due Date Based On تاریخ بر اساس تاریخ
Phone Number شماره تلفن
4141 Linked Documents اسناد مرتبط
Account SID حساب SID
4142 Steps مراحل
4143 email پست الکترونیک
4144 Component مولفه
4145 Subtitle عنوان فرعی
Global Defaults به طور پیش فرض جهانی
4146 Prefix پیشوند
4147 Is Public عمومی است
4148 This chart will be available to all Users if this is set در صورت تنظیم این نمودار در دسترس همه کاربران قرار خواهد گرفت
4329 Please create Card first لطفاً ابتدا کارت ایجاد کنید
4330 Onboarding Permission مجوز پردازنده
4331 Onboarding Step مرحله پردازنده
Is Mandatory اجباری است
4332 Is Skipped رد شده است
4333 Create Entry ورودی ایجاد کنید
4334 Update Settings به روز رسانی تنظیمات
4366 Send Attachments ارسال پیوست ها
4367 Testing آزمایش کردن
4368 System Notification اعلان سیستم
WhatsApp واتس اپ
4369 Twilio Number شماره Twilio
4370 To use WhatsApp for Business, initialize <a href="#Form/Twilio Settings">Twilio Settings</a>. برای استفاده از WhatsApp برای تجارت ، <a href="#Form/Twilio Settings">تنظیمات Twilio را</a> اولیه <a href="#Form/Twilio Settings">کنید</a> .
4371 To use Slack Channel, add a <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook URL</a>. برای استفاده از Slack Channel ، یک <a href="#List/Slack%20Webhook%20URL/List">URL Slack Webhook</a> اضافه <a href="#List/Slack%20Webhook%20URL/List">کنید</a> .
4500 {0} are currently {1} {0} در حال حاضر {1} هستند
4501 Currently Replying در حال پاسخ دادن
4502 created {0} ایجاد شده {0}
Make a call تماس بگیر
4503 Change تغییر دادن Coins
4504 Too Many Requests درخواست های بسیار زیاد
4505 Invalid Authorization headers, add a token with a prefix from one of the following: {0}. عناوین مجوز نامعتبر است ، یک کد با پیشوند یکی از موارد زیر اضافه کنید: {0}
4664 Negative Value ارزش منفی
4665 Authentication failed while receiving emails from Email Account: {0}. تأیید اعتبار هنگام دریافت ایمیل از حساب ایمیل انجام نشد: {0}.
4666 Message from server: {0} پیام از طرف سرور: {0}
4667 Add Row اضافه کردن ردیف
4668 Analytics تجزیه و تحلیل ترافیک
4669 Anonymous ناشناس
4670 Author نویسنده
4671 Basic پایه
4672 Billing صدور صورت حساب
4673 Contact Details اطلاعات تماس
4674 Datetime زمان قرار
4675 Enable قادر ساختن
4676 Event واقعه
4677 Full پر شده
4678 Insert درج
4679 Interests منافع
4680 Language Name نام زبان
4681 License مجوز
4682 Limit حد
4683 Log ورود
4684 Meeting ملاقات
4685 My Account حساب من
4686 Newsletters خبرنامه
4687 Password رمز عبور
4688 Pincode Pincode
4689 Please select prefix first لطفا ابتدا پیشوند انتخاب کنید
4690 Please set Email Address لطفا آدرس ایمیل
4691 Please set the series to be used. لطفا مجموعه ای را که استفاده می کنید تنظیم کنید
4692 Portal Settings تنظیمات پورتال
4693 Reference Owner مرجع مالک
4694 Region منطقه
4695 Report Builder گزارش ساز
4696 Sample نمونه
4697 Saved ذخیره
4698 Series {0} already used in {1} سری {0} در حال حاضر در مورد استفاده {1}
4699 Set as Default تنظیم به عنوان پیشفرض
4700 Shipping حمل
4701 Standard استاندارد
4702 Test تست
4703 Traceback ردیابی
4704 Unable to find DocType {0} Unable to find DocType {0}
4705 Weekdays روزهای کاری
4706 Workflow گردش کار
4707 You need to be logged in to access this page شما نیاز به ورود برای دسترسی به این صفحه
4708 County شهرستان
4709 Images تصاویر
4710 Office دفتر
4711 Passive غیر فعال
4712 Permanent دائمي
4713 Plant گیاه
4714 Postal پستی
4715 Previous قبلی
4716 Shop فروشگاه
4717 Subsidiary فرعی
4718 There is some problem with the file url: {0} بعضی از مشکل با آدرس فایل وجود دارد: {0}
4719 Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0} {0} کاراکترهای خاص به جز &quot;-&quot; ، &quot;#&quot; ، &quot;.&quot; ، &quot;/&quot; ، &quot;{{&quot; و &quot;}}&quot; در سریال نامگذاری مجاز نیستند
4720 Export Type نوع صادرات
4721 Last Sync On آخرین همگام سازی در
4722 Webhook Secret راز وب
4723 Back to Home بازگشت به خانه
4724 Customize سفارشی
4725 Edit Profile ویرایش پروفایل
4726 File Manager مدیریت فایل
4727 Invite as User دعوت به عنوان کاربر
4728 Newsletter عضویت در خبرنامه
4729 Printing چاپ
4730 Publish انتشار
4731 Refreshing تازه کردن
4732 Select All انتخاب همه
4733 Set تنظیم
4734 Setup Wizard راه اندازی جادوگر
4735 Update Details جزئیات را به روز کنید
4736 You شما
4737 {0} Name {0} نام
4738 Bold جسورانه
4739 Center مرکز
4740 Comment اظهار نظر
4741 Not Found پیدا نشد
4742 User Id شناسه کاربر
4743 Position موقعیت
4744 Crop محصول
4745 Topic موضوع
4746 Public Transport حمل و نقل عمومی
4747 Request Data درخواست داده
4748 Steps مراحل
4749 Reference DocType DOCTYPE مرجع
4750 Select Transaction انتخاب معامله
4751 Help HTML راهنما HTML
4752 Series List for this Transaction فهرست سری ها برای این تراکنش
4753 User must always select کاربر همیشه باید انتخاب کنید
4754 Check this if you want to force the user to select a series before saving. There will be no default if you check this. بررسی این اگر شما می خواهید به زور کاربر برای انتخاب یک سری قبل از ذخیره. خواهد شد وجود ندارد به طور پیش فرض اگر شما این تیک بزنید.
4755 Prefix پیشوند
4756 This is the number of the last created transaction with this prefix این تعداد از آخرین معامله ایجاد شده با این پیشوند است
4757 Update Series Number به روز رسانی سری شماره
4758 Validation Error خطای اعتبار سنجی
4759 Andaman and Nicobar Islands جزایر آندامان و نیکوبار
4760 Andhra Pradesh آندرا پرادش
4761 Arunachal Pradesh آروناچال پرادش
4762 Assam آسام
4763 Bihar بیهار
4764 Chandigarh چندیگر
4765 Chhattisgarh چتیسگر
4766 Dadra and Nagar Haveli دادرا و ناگار هاولی
4767 Daman and Diu دامن و دیو
4768 Delhi دهلی
4769 Goa گوا
4770 Gujarat گجرات
4771 Haryana هاریانا
4772 Himachal Pradesh هیماچال پرادش
4773 Jammu and Kashmir جامو و کشمیر
4774 Jharkhand جارخند
4775 Karnataka کارناتاکا
4776 Kerala کرالا
4777 Lakshadweep Islands جزایر لاکشادویپ
4778 Madhya Pradesh مادیا پرادش
4779 Maharashtra ماهاراشترا
4780 Manipur مانیپور
4781 Meghalaya مگالایا
4782 Mizoram میزورام
4783 Nagaland ناگالند
4784 Odisha ادیشا
4785 Other Territory قلمرو دیگر
4786 Pondicherry Pondicherry
4787 Punjab پنجاب
4788 Rajasthan راجستان
4789 Sikkim سیکیم
4790 Tamil Nadu تامیل نادو
4791 Telangana تلانگانا
4792 Tripura تریپورا
4793 Uttar Pradesh اوتار پرادش
4794 Uttarakhand اوتاراکند
4795 West Bengal بنگال غربی
4796 Published on منتشر شده در
4797 Bottom پایین
4798 Top بالا

View file

@ -9,7 +9,6 @@ Action,Toiminto,
Actions,Toiminnot,
Active,aktiivinen,
Add,Lisää,
Add Comment,Lisää kommentti,
Add Row,Lisää rivi,
Address,Osoite,
Address Line 2,osoiterivi 2,
@ -144,7 +143,6 @@ Monday,Maanantai,
Monthly,Kuukausi,
More,Lisää,
More Information,Lisätiedot,
More...,Lisää...,
Move,Liikkua,
My Account,Oma tili,
New Address,Uusi osoite,
@ -157,7 +155,6 @@ No items found.,Kohteita ei löytynyt.,
None,Ei mitään,
Not Permitted,Ei Sallittu,
Not active,Ei aktiivinen,
Notes,Muistiinpanot,
Number,Määrä,
Online,Online,
Operation,Toiminta,
@ -167,17 +164,12 @@ Owner,Omistaja,
Page Missing or Moved,Sivu puuttuu tai se on siirretty,
Parameter,Parametri,
Password,Salasana,
Payment Gateway,Payment Gateway,
Payment Gateway Name,Maksun yhdyskäytävän nimi,
Payments,maksut,
Period,Aikajakso,
Pincode,PIN koodi,
Plan Name,Plan Name,
Please enable pop-ups,Aktivoi ponnahdusikkunat,
Please select Company,Ole hyvä ja valitse Company,
Please select {0},Ole hyvä ja valitse {0},
Please set Email Address,Määritä sähköpostiosoite,
Portal,Portaali,
Portal Settings,Portaalin asetukset,
Preview,esikatselu,
Primary,Ensisijainen,
@ -222,7 +214,6 @@ Salutation,Tervehdys,
Sample,Näyte,
Saturday,Lauantai,
Saved,Tallennettu,
Scan Barcode,Skannaa viivakoodi,
Scheduled,Aikataulutettu,
Search,Haku,
Secret Key,salainen avain,
@ -237,7 +228,6 @@ Settings,asetukset,
Shipping,Toimitus,
Short Name,Lyhyt nimi,
Slideshow,diaesitys,
Some information is missing,Joitakin tietoja puuttuu,
Source,Lähde,
Source Name,Source Name,
Standard,perus,
@ -247,7 +237,6 @@ State,Osavaltio,
Stopped,pysäytetty,
Subject,aihe,
Submit,Vahvista,
Successful,onnistunut,
Summary,Yhteenveto,
Sunday,sunnuntai,
System Manager,Järjestelmän ylläpitäjä,
@ -260,11 +249,9 @@ The page you are looking for is missing. This could be because it is moved or th
Timespan,Aikajänne,
To,jotta,
To Date,Päivään,
Tools,Työkalut,
Traceback,Jäljittää,
URL,URL,
Unsubscribed,Peruutettu,
Use Sandbox,Käytä Sandbox,
User,käyttäjä,
User ID,käyttäjätunnus,
Users,Käyttäjät,
@ -569,7 +556,6 @@ Bulk Delete,Irtotavarana poisto,
Bulk Edit {0},massamuokkaus {0},
Bulk Rename,Bulk Rename,
Bulk Update,Joukkopäivitä,
Busy,Kiireinen,
Button,painike,
Button Help,Painikkeen ohje,
Button Label,Painikkeen teksti,
@ -706,7 +692,6 @@ Compiled Successfully,Käännetty onnistuneesti,
Complete By,suoritettu loppuun,
Complete Registration,rekisteröinti suoritettu loppuun,
Complete Setup,määritykset suoritettu loppuun,
Completed By,Täydentänyt,
Compose Email,Kirjoita sähköposti,
Condition Detail,Tilanne Yksityiskohta,
Conditions,olosuhteet,
@ -1691,7 +1676,7 @@ Not a valid user,Ei kelvollinen käyttäjä,
Not a zip file,Ei zip-tiedosto,
Not allowed for {0}: {1},Ei sallittu {0}: {1},
"You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4}","Ei sallittu pääsyä {0} koska se on linkitetty {1} &quot;{2}&quot; rivi {3}, kenttä {4}",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},"Ei sallittu pääsyä tähän {0} tietue koska se on linkitetty {1} &quot;{2}&quot; kenttä {3}",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},Ei sallittu pääsyä tähän {0} tietue koska se on linkitetty {1} &quot;{2}&quot; kenttä {3},
Not allowed to Import,Ei voi tuoda,
Not allowed to change {0} after submission,Eivät saa muuttaa {0} toimittamisen jälkeen,
Not allowed to print cancelled documents,Ei sallittu tulostaa peruutettu asiakirjoja,
@ -1819,7 +1804,6 @@ Path to private Key File,Polku yksityiseen avaintiedostoon,
PayPal Settings,PayPal Asetukset,
PayPal payment gateway settings,PayPal maksu yhdyskäytävä asetukset,
Payment Cancelled,Maksu peruutettu,
Payment Failed,Maksu epäonnistui,
Payment Success,Maksu onnistui,
Pending Approval,Odottaa hyväksyntää,
Pending Verification,Odottaa vahvistusta,
@ -3216,7 +3200,6 @@ Click on the link below to approve the request,Napsauta alla olevaa linkkiä hyv
Click on the lock icon to toggle public/private,Napsauta lukituskuvaketta vaihtaaksesi julkista / yksityistä,
Click on {0} to generate Refresh Token.,Napsauta {0} luodaksesi Päivitä token.,
Close Condition,Sulje kunto,
Column {0},Sarake {0},
Columns / Fields,Sarakkeet / kentät,
"Configure notifications for mentions, assignments, energy points and more.","Määritä ilmoitukset maininnoista, tehtävistä, energiapisteistä ja muusta.",
Contact Email,"yhteystiedot, sähköposti",
@ -3298,7 +3281,6 @@ Failed to create an Event Consumer or an Event Consumer for the current site is
Failure,vika,
Fetching default Global Search documents.,Haetaan oletushakuasiakirjoja.,
Fetching posts...,Haetaan viestejä ...,
Field Mapping,Kenttäkartta,
Field To Check,Tarkistettava kenttä,
File Information,Tiedoston tiedot,
Filter By,Suodata,
@ -3453,7 +3435,6 @@ No posts yet,Ei postauksia vielä,
No records will be exported,Tietueita ei viedä,
No results found for {0} in Global Search,Haulle {0} ei löytynyt tuloksia globaalissa haussa,
No user found,Käyttäjää ei löytynyt,
Not Specified,Ei määritelty,
Notification Log,Ilmoitusloki,
Notification Settings,Ilmoitusasetukset,
Notification Subscribed Document,Ilmoitettu tilattu asiakirja,
@ -3609,7 +3590,6 @@ Untitled Column,Nimetön sarake,
Untranslated,Kääntämätön,
Upcoming Events,Tulevat tapahtumat,
Update Existing Records,Päivitä olemassa olevat tietueet,
Update Type,Päivitystyyppi,
Updated To A New Version 🎉,Päivitetty uudeksi versioon 🎉,
"Updating {0} of {1}, {2}","Päivitetään {0} {1}, {2}",
Upload file,Lataa tiedosto,
@ -3716,19 +3696,16 @@ Designation,Puhuttelu,
Disabled,Passiivinen,
Doctype,Tietuetyyppi,
Download Template,lataa mallipohja,
Dr,Tri,
Due Date,eräpäivä,
Duplicate,Kopioi,
Edit Profile,Muokkaa profiilia,
Email,Sähköpostiosoite,
End Time,ajan loppu,
Enter Value,syötä Arvo,
Entity Type,Entity Type,
Error,virhe,
Expired,vanhentunut,
Export,vienti,
Export not allowed. You need {0} role to export.,"vienti kielletty, tarvitset {0} rooli vientiin",
Fetching...,Haetaan ...,
Field,Ala,
File Manager,Tiedostonhallinta,
Filters,Suodattimet,
@ -3743,11 +3720,8 @@ Import Data from CSV / Excel files.,Tuo tiedot CSV / Excel-tiedostoista.,
In Progress,Käynnissä,
Intermediate,väli-,
Invite as User,Kutsu Käyttäjä,
"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Näyttää siltä, että palvelimen raidakokoonpano on ongelma. Vahingossa summa palautetaan tilillesi.",
Loading...,Ladataan ...,
Location,Sijainti,
Looks like someone sent you to an incomplete URL. Please ask them to look into it.,"Näyttää siltä, että joku on lähettänyt teidät epätäydellisen URL. Pyydä heitä tutkimaan sitä.",
Master,valvonta,
Message,Viesti,
Missing Values Required,puuttuvat arvot vaaditaan,
Mobile No,Matkapuhelin,
@ -3759,7 +3733,6 @@ Note,Muistiinpano,
Offline,Poissa,
Open,Avoin,
Page {0} of {1},Sivu {0} - {1},
Pay,Maksaa,
Pending,Odottaa,
Phone,Puhelin,
Please click on the following link to set your new password,Klikkaa seuraavaa linkkiä asettaa uuden salasanan,
@ -3809,7 +3782,6 @@ Welcome to {0},Tervetuloa {0},
Year,vuosi,
Yearly,Vuosi,
You,Sinä,
You can also copy-paste this link in your browser,voit kopioida ja liittää tämän linkin selaimeesi,
and,ja,
{0} Name,{0} Nimi,
{0} is required,{0} on pakollinen,
@ -4113,7 +4085,6 @@ Custom SCSS,Mukautettu SCSS,
Navbar,Navigointipalkki,
Source Message,Lähdesanoma,
Translated Message,Käännetty viesti,
Verified By,Vahvistanut,
Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand.,"Tämän konsolin käyttö voi antaa hyökkääjille mahdollisuuden esiintyä toisena henkilönä ja varastaa tietosi. Älä kirjoita tai liitä koodia, jota et ymmärrä.",
{0} m,{0} m,
{0} h,{0} h,
@ -4146,7 +4117,6 @@ Collapse,Romahdus,
{0} is not a valid Name,{0} ei ole kelvollinen nimi,
Your system is being updated. Please refresh again after a few moments.,Järjestelmääsi päivitetään. Päivitä uudelleen hetken kuluttua.,
{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first.,{0} {1}: Lähetettyä tietuetta ei voi poistaa. Sinun on ensin {2} peruutettava {3} se.,
Invalid naming series (. missing) for {0},Virheellinen nimeämissarja (. Puuttuu) verkkotunnukselle {0},
Error has occurred in {0},Virhe kohteessa {0},
Status Updated,Tila päivitetty,
You can also copy-paste this {0} to your browser,Voit myös kopioida tämän {0} selaimeesi,
@ -4168,14 +4138,11 @@ Is Billing Contact,Onko laskutusyhteyshenkilö,
Address And Contacts,Osoite ja yhteystiedot,
Lead Conversion Time,Lyijyn muuntoaika,
Due Date Based On,Eräpäivä perustuu,
Phone Number,Puhelinnumero,
Linked Documents,Linkitetyt asiakirjat,
Account SID,Tilin SID,
Steps,Askeleet,
email,sähköposti,
Component,komponentti,
Subtitle,alaotsikko,
Global Defaults,Yleiset oletusasetukset,
Prefix,Etuliite,
Is Public,On julkinen,
This chart will be available to all Users if this is set,"Tämä kaavio on kaikkien käyttäjien saatavilla, jos tämä on määritetty",
@ -4362,7 +4329,6 @@ Dynamic Filters Section,Dynaamiset suodattimet -osio,
Please create Card first,Luo ensin Kortti,
Onboarding Permission,Onboarding-lupa,
Onboarding Step,Onboarding vaihe,
Is Mandatory,On pakollinen,
Is Skipped,Ohitetaan,
Create Entry,Luo merkintä,
Update Settings,Päivitä asetukset,
@ -4400,7 +4366,6 @@ Message (HTML),Viesti (HTML),
Send Attachments,Lähetä liitteet,
Testing,Testaus,
System Notification,Järjestelmäilmoitus,
WhatsApp,WhatsApp,
Twilio Number,Twilio-numero,
"To use WhatsApp for Business, initialize <a href=""#Form/Twilio Settings"">Twilio Settings</a>.","Käynnistä WhatsApp for Business alustamalla <a href=""#Form/Twilio Settings"">Twilio-asetukset</a> .",
"To use Slack Channel, add a <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL</a>.","Jos haluat käyttää Slack Channel -ohjelmaa, lisää <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL-osoite</a> .",
@ -4535,7 +4500,6 @@ Add to ToDo,Lisää tehtävään,
{0} are currently {1},{0} ovat tällä hetkellä {1},
Currently Replying,Vastaa tällä hetkellä,
created {0},luonut {0},
Make a call,Soita,
Change,Muuttaa,Coins
Too Many Requests,Liian monta pyyntöä,
"Invalid Authorization headers, add a token with a prefix from one of the following: {0}.","Virheelliset valtuutusotsikot, lisää tunniste, jossa on etuliite jostakin seuraavista: {0}.",
@ -4700,3 +4664,135 @@ Value cannot be negative for {0}: {1},Arvo ei voi olla negatiivinen kohteelle {0
Negative Value,Negatiivinen arvo,
Authentication failed while receiving emails from Email Account: {0}.,Todennus epäonnistui vastaanotettaessa sähköposteja sähköpostitililtä: {0}.,
Message from server: {0},Viesti palvelimelta: {0},
Add Row,Lisää rivi,
Analytics,Analytiikka,
Anonymous,anonyymi,
Author,kirjailija,
Basic,perustiedot,
Billing,Laskutus,
Contact Details,"yhteystiedot, lisätiedot",
Datetime,Päiväysaika,
Enable,ota käyttöön,
Event,Tapahtuma,
Full,Koko,
Insert,aseta,
Interests,etu,
Language Name,Kielen Nimi,
License,lisenssi,
Limit,Raja,
Log,Loki,
Meeting,Tapaaminen,
My Account,Oma tili,
Newsletters,uutiskirjeet,
Password,Salasana,
Pincode,PIN koodi,
Please select prefix first,Ole hyvä ja valitse etuliite ensin,
Please set Email Address,Määritä sähköpostiosoite,
Please set the series to be used.,Aseta sarja käytettäväksi.,
Portal Settings,Portaalin asetukset,
Reference Owner,Viite omistaja,
Region,alue,
Report Builder,Raportin luontityökalu,
Sample,Näyte,
Saved,Tallennettu,
Series {0} already used in {1},Sarjat {0} on käytetty {1},
Set as Default,aseta oletukseksi,
Shipping,Toimitus,
Standard,perus,
Test,Testi,
Traceback,Jäljittää,
Unable to find DocType {0},DocType {0} ei löytynyt,
Weekdays,Arkisin,
Workflow,Työketju,
You need to be logged in to access this page,Sinun täytyy olla kirjautuneena päästäksesi tälle sivulle,
County,Lääni,
Images,Kuvat,
Office,Toimisto,
Passive,Passiivinen,
Permanent,Pysyvä,
Plant,Laite,
Postal,Posti-,
Previous,Edellinen,
Shop,Osta,
Subsidiary,tytäryhtiö,
There is some problem with the file url: {0},Tiedosto-URL:issa {0} on ongelma,
"Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}","Erikoismerkit paitsi &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; Ja &quot;}}&quot; eivät ole sallittuja nimeämissarjoissa {0}",
Export Type,Vientityyppi,
Last Sync On,Viimeisin synkronointi päällä,
Webhook Secret,Webhook Secret,
Back to Home,Takaisin kotiin,
Customize,Mukauta,
Edit Profile,Muokkaa profiilia,
File Manager,Tiedostonhallinta,
Invite as User,Kutsu Käyttäjä,
Newsletter,Tiedote,
Printing,Tulostus,
Publish,Julkaista,
Refreshing,Virkistävä,
Select All,Valitse kaikki,
Set,Aseta,
Setup Wizard,Määritys työkalu,
Update Details,Päivitä yksityiskohdat,
You,Sinä,
{0} Name,{0} Nimi,
Bold,Lihavoitu,
Center,keskus,
Comment,Kommentti,
Not Found,Not Found,
User Id,Käyttäjätunnus,
Position,asento,
Crop,sato,
Topic,Aihe,
Public Transport,Julkinen liikenne,
Request Data,Pyydä tietoja,
Steps,Askeleet,
Reference DocType,Viite DocType,
Select Transaction,Valitse tapahtuma,
Help HTML,"HTML, ohje",
Series List for this Transaction,Sarjalistaus tähän tapahtumaan,
User must always select,Käyttäjän tulee aina valita,
Check this if you want to force the user to select a series before saving. There will be no default if you check this.,"täppää mikäli haluat pakottaa käyttäjän valitsemaan sarjan ennen tallennusta, täpästä ei synny oletusta",
Prefix,Etuliite,
This is the number of the last created transaction with this prefix,Viimeinen tapahtuma on tehty tällä numerolla ja tällä etuliitteellä,
Update Series Number,Päivitä sarjanumerot,
Validation Error,Vahvistusvirhe,
Andaman and Nicobar Islands,Andamanin ja Nicobarin saaret,
Andhra Pradesh,Andhra Pradesh,
Arunachal Pradesh,Arunachal Pradesh,
Assam,Assam,
Bihar,Bihar,
Chandigarh,Chandigarh,
Chhattisgarh,Chhattisgarh,
Dadra and Nagar Haveli,Dadra ja Nagar Haveli,
Daman and Diu,Daman ja Diu,
Delhi,Delhi,
Goa,Goa,
Gujarat,Gujarat,
Haryana,Haryana,
Himachal Pradesh,Himachal Pradesh,
Jammu and Kashmir,Jammu ja Kashmir,
Jharkhand,Jharkhand,
Karnataka,Karnataka,
Kerala,Kerala,
Lakshadweep Islands,Lakshadweepin saaret,
Madhya Pradesh,Madhya Pradesh,
Maharashtra,Maharashtra,
Manipur,Manipur,
Meghalaya,Meghalaya,
Mizoram,Mizoram,
Nagaland,Nagaland,
Odisha,Odisha,
Other Territory,Muu alue,
Pondicherry,Pondicherry,
Punjab,Punjab,
Rajasthan,Rajasthan,
Sikkim,Sikkim,
Tamil Nadu,Tamil Nadu,
Telangana,Telangana,
Tripura,Tripura,
Uttar Pradesh,Uttar Pradesh,
Uttarakhand,Uttarakhand,
West Bengal,Länsi-Bengali,
Published on,Julkaistu,
Bottom,Pohja,
Top,Yläosa,

1 A4 A4
9 Actions Toiminnot
10 Active aktiivinen
11 Add Lisää
Add Comment Lisää kommentti
12 Add Row Lisää rivi
13 Address Osoite
14 Address Line 2 osoiterivi 2
143 Monthly Kuukausi
144 More Lisää
145 More Information Lisätiedot
More... Lisää...
146 Move Liikkua
147 My Account Oma tili
148 New Address Uusi osoite
155 None Ei mitään
156 Not Permitted Ei Sallittu
157 Not active Ei aktiivinen
Notes Muistiinpanot
158 Number Määrä
159 Online Online
160 Operation Toiminta
164 Page Missing or Moved Sivu puuttuu tai se on siirretty
165 Parameter Parametri
166 Password Salasana
Payment Gateway Payment Gateway
Payment Gateway Name Maksun yhdyskäytävän nimi
Payments maksut
167 Period Aikajakso
168 Pincode PIN koodi
Plan Name Plan Name
169 Please enable pop-ups Aktivoi ponnahdusikkunat
170 Please select Company Ole hyvä ja valitse Company
171 Please select {0} Ole hyvä ja valitse {0}
172 Please set Email Address Määritä sähköpostiosoite
Portal Portaali
173 Portal Settings Portaalin asetukset
174 Preview esikatselu
175 Primary Ensisijainen
214 Sample Näyte
215 Saturday Lauantai
216 Saved Tallennettu
Scan Barcode Skannaa viivakoodi
217 Scheduled Aikataulutettu
218 Search Haku
219 Secret Key salainen avain
228 Shipping Toimitus
229 Short Name Lyhyt nimi
230 Slideshow diaesitys
Some information is missing Joitakin tietoja puuttuu
231 Source Lähde
232 Source Name Source Name
233 Standard perus
237 Stopped pysäytetty
238 Subject aihe
239 Submit Vahvista
Successful onnistunut
240 Summary Yhteenveto
241 Sunday sunnuntai
242 System Manager Järjestelmän ylläpitäjä
249 Timespan Aikajänne
250 To jotta
251 To Date Päivään
Tools Työkalut
252 Traceback Jäljittää
253 URL URL
254 Unsubscribed Peruutettu
Use Sandbox Käytä Sandbox
255 User käyttäjä
256 User ID käyttäjätunnus
257 Users Käyttäjät
556 Bulk Edit {0} massamuokkaus {0}
557 Bulk Rename Bulk Rename
558 Bulk Update Joukkopäivitä
Busy Kiireinen
559 Button painike
560 Button Help Painikkeen ohje
561 Button Label Painikkeen teksti
692 Complete By suoritettu loppuun
693 Complete Registration rekisteröinti suoritettu loppuun
694 Complete Setup määritykset suoritettu loppuun
Completed By Täydentänyt
695 Compose Email Kirjoita sähköposti
696 Condition Detail Tilanne Yksityiskohta
697 Conditions olosuhteet
1676 Not a zip file Ei zip-tiedosto
1677 Not allowed for {0}: {1} Ei sallittu {0}: {1}
1678 You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4} Ei sallittu pääsyä {0} koska se on linkitetty {1} &quot;{2}&quot; rivi {3}, kenttä {4}
1679 You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3} Ei sallittu pääsyä tähän {0} tietue koska se on linkitetty {1} &quot;{2}&quot; kenttä {3}
1680 Not allowed to Import Ei voi tuoda
1681 Not allowed to change {0} after submission Eivät saa muuttaa {0} toimittamisen jälkeen
1682 Not allowed to print cancelled documents Ei sallittu tulostaa peruutettu asiakirjoja
1804 PayPal Settings PayPal Asetukset
1805 PayPal payment gateway settings PayPal maksu yhdyskäytävä asetukset
1806 Payment Cancelled Maksu peruutettu
Payment Failed Maksu epäonnistui
1807 Payment Success Maksu onnistui
1808 Pending Approval Odottaa hyväksyntää
1809 Pending Verification Odottaa vahvistusta
3200 Click on the lock icon to toggle public/private Napsauta lukituskuvaketta vaihtaaksesi julkista / yksityistä
3201 Click on {0} to generate Refresh Token. Napsauta {0} luodaksesi Päivitä token.
3202 Close Condition Sulje kunto
Column {0} Sarake {0}
3203 Columns / Fields Sarakkeet / kentät
3204 Configure notifications for mentions, assignments, energy points and more. Määritä ilmoitukset maininnoista, tehtävistä, energiapisteistä ja muusta.
3205 Contact Email yhteystiedot, sähköposti
3281 Failure vika
3282 Fetching default Global Search documents. Haetaan oletushakuasiakirjoja.
3283 Fetching posts... Haetaan viestejä ...
Field Mapping Kenttäkartta
3284 Field To Check Tarkistettava kenttä
3285 File Information Tiedoston tiedot
3286 Filter By Suodata
3435 No records will be exported Tietueita ei viedä
3436 No results found for {0} in Global Search Haulle {0} ei löytynyt tuloksia globaalissa haussa
3437 No user found Käyttäjää ei löytynyt
Not Specified Ei määritelty
3438 Notification Log Ilmoitusloki
3439 Notification Settings Ilmoitusasetukset
3440 Notification Subscribed Document Ilmoitettu tilattu asiakirja
3590 Untranslated Kääntämätön
3591 Upcoming Events Tulevat tapahtumat
3592 Update Existing Records Päivitä olemassa olevat tietueet
Update Type Päivitystyyppi
3593 Updated To A New Version 🎉 Päivitetty uudeksi versioon 🎉
3594 Updating {0} of {1}, {2} Päivitetään {0} {1}, {2}
3595 Upload file Lataa tiedosto
3696 Disabled Passiivinen
3697 Doctype Tietuetyyppi
3698 Download Template lataa mallipohja
Dr Tri
3699 Due Date eräpäivä
3700 Duplicate Kopioi
3701 Edit Profile Muokkaa profiilia
3702 Email Sähköpostiosoite
End Time ajan loppu
3703 Enter Value syötä Arvo
3704 Entity Type Entity Type
3705 Error virhe
3706 Expired vanhentunut
3707 Export vienti
3708 Export not allowed. You need {0} role to export. vienti kielletty, tarvitset {0} rooli vientiin
Fetching... Haetaan ...
3709 Field Ala
3710 File Manager Tiedostonhallinta
3711 Filters Suodattimet
3720 In Progress Käynnissä
3721 Intermediate väli-
3722 Invite as User Kutsu Käyttäjä
It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account. Näyttää siltä, että palvelimen raidakokoonpano on ongelma. Vahingossa summa palautetaan tilillesi.
3723 Loading... Ladataan ...
3724 Location Sijainti
Looks like someone sent you to an incomplete URL. Please ask them to look into it. Näyttää siltä, että joku on lähettänyt teidät epätäydellisen URL. Pyydä heitä tutkimaan sitä.
Master valvonta
3725 Message Viesti
3726 Missing Values Required puuttuvat arvot vaaditaan
3727 Mobile No Matkapuhelin
3733 Offline Poissa
3734 Open Avoin
3735 Page {0} of {1} Sivu {0} - {1}
Pay Maksaa
3736 Pending Odottaa
3737 Phone Puhelin
3738 Please click on the following link to set your new password Klikkaa seuraavaa linkkiä asettaa uuden salasanan
3782 Year vuosi
3783 Yearly Vuosi
3784 You Sinä
You can also copy-paste this link in your browser voit kopioida ja liittää tämän linkin selaimeesi
3785 and ja
3786 {0} Name {0} Nimi
3787 {0} is required {0} on pakollinen
4085 Navbar Navigointipalkki
4086 Source Message Lähdesanoma
4087 Translated Message Käännetty viesti
Verified By Vahvistanut
4088 Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand. Tämän konsolin käyttö voi antaa hyökkääjille mahdollisuuden esiintyä toisena henkilönä ja varastaa tietosi. Älä kirjoita tai liitä koodia, jota et ymmärrä.
4089 {0} m {0} m
4090 {0} h {0} h
4117 {0} is not a valid Name {0} ei ole kelvollinen nimi
4118 Your system is being updated. Please refresh again after a few moments. Järjestelmääsi päivitetään. Päivitä uudelleen hetken kuluttua.
4119 {0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first. {0} {1}: Lähetettyä tietuetta ei voi poistaa. Sinun on ensin {2} peruutettava {3} se.
Invalid naming series (. missing) for {0} Virheellinen nimeämissarja (. Puuttuu) verkkotunnukselle {0}
4120 Error has occurred in {0} Virhe kohteessa {0}
4121 Status Updated Tila päivitetty
4122 You can also copy-paste this {0} to your browser Voit myös kopioida tämän {0} selaimeesi
4138 Address And Contacts Osoite ja yhteystiedot
4139 Lead Conversion Time Lyijyn muuntoaika
4140 Due Date Based On Eräpäivä perustuu
Phone Number Puhelinnumero
4141 Linked Documents Linkitetyt asiakirjat
Account SID Tilin SID
4142 Steps Askeleet
4143 email sähköposti
4144 Component komponentti
4145 Subtitle alaotsikko
Global Defaults Yleiset oletusasetukset
4146 Prefix Etuliite
4147 Is Public On julkinen
4148 This chart will be available to all Users if this is set Tämä kaavio on kaikkien käyttäjien saatavilla, jos tämä on määritetty
4329 Please create Card first Luo ensin Kortti
4330 Onboarding Permission Onboarding-lupa
4331 Onboarding Step Onboarding vaihe
Is Mandatory On pakollinen
4332 Is Skipped Ohitetaan
4333 Create Entry Luo merkintä
4334 Update Settings Päivitä asetukset
4366 Send Attachments Lähetä liitteet
4367 Testing Testaus
4368 System Notification Järjestelmäilmoitus
WhatsApp WhatsApp
4369 Twilio Number Twilio-numero
4370 To use WhatsApp for Business, initialize <a href="#Form/Twilio Settings">Twilio Settings</a>. Käynnistä WhatsApp for Business alustamalla <a href="#Form/Twilio Settings">Twilio-asetukset</a> .
4371 To use Slack Channel, add a <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook URL</a>. Jos haluat käyttää Slack Channel -ohjelmaa, lisää <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook URL-osoite</a> .
4500 {0} are currently {1} {0} ovat tällä hetkellä {1}
4501 Currently Replying Vastaa tällä hetkellä
4502 created {0} luonut {0}
Make a call Soita
4503 Change Muuttaa Coins
4504 Too Many Requests Liian monta pyyntöä
4505 Invalid Authorization headers, add a token with a prefix from one of the following: {0}. Virheelliset valtuutusotsikot, lisää tunniste, jossa on etuliite jostakin seuraavista: {0}.
4664 Negative Value Negatiivinen arvo
4665 Authentication failed while receiving emails from Email Account: {0}. Todennus epäonnistui vastaanotettaessa sähköposteja sähköpostitililtä: {0}.
4666 Message from server: {0} Viesti palvelimelta: {0}
4667 Add Row Lisää rivi
4668 Analytics Analytiikka
4669 Anonymous anonyymi
4670 Author kirjailija
4671 Basic perustiedot
4672 Billing Laskutus
4673 Contact Details yhteystiedot, lisätiedot
4674 Datetime Päiväysaika
4675 Enable ota käyttöön
4676 Event Tapahtuma
4677 Full Koko
4678 Insert aseta
4679 Interests etu
4680 Language Name Kielen Nimi
4681 License lisenssi
4682 Limit Raja
4683 Log Loki
4684 Meeting Tapaaminen
4685 My Account Oma tili
4686 Newsletters uutiskirjeet
4687 Password Salasana
4688 Pincode PIN koodi
4689 Please select prefix first Ole hyvä ja valitse etuliite ensin
4690 Please set Email Address Määritä sähköpostiosoite
4691 Please set the series to be used. Aseta sarja käytettäväksi.
4692 Portal Settings Portaalin asetukset
4693 Reference Owner Viite omistaja
4694 Region alue
4695 Report Builder Raportin luontityökalu
4696 Sample Näyte
4697 Saved Tallennettu
4698 Series {0} already used in {1} Sarjat {0} on käytetty {1}
4699 Set as Default aseta oletukseksi
4700 Shipping Toimitus
4701 Standard perus
4702 Test Testi
4703 Traceback Jäljittää
4704 Unable to find DocType {0} DocType {0} ei löytynyt
4705 Weekdays Arkisin
4706 Workflow Työketju
4707 You need to be logged in to access this page Sinun täytyy olla kirjautuneena päästäksesi tälle sivulle
4708 County Lääni
4709 Images Kuvat
4710 Office Toimisto
4711 Passive Passiivinen
4712 Permanent Pysyvä
4713 Plant Laite
4714 Postal Posti-
4715 Previous Edellinen
4716 Shop Osta
4717 Subsidiary tytäryhtiö
4718 There is some problem with the file url: {0} Tiedosto-URL:issa {0} on ongelma
4719 Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0} Erikoismerkit paitsi &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; Ja &quot;}}&quot; eivät ole sallittuja nimeämissarjoissa {0}
4720 Export Type Vientityyppi
4721 Last Sync On Viimeisin synkronointi päällä
4722 Webhook Secret Webhook Secret
4723 Back to Home Takaisin kotiin
4724 Customize Mukauta
4725 Edit Profile Muokkaa profiilia
4726 File Manager Tiedostonhallinta
4727 Invite as User Kutsu Käyttäjä
4728 Newsletter Tiedote
4729 Printing Tulostus
4730 Publish Julkaista
4731 Refreshing Virkistävä
4732 Select All Valitse kaikki
4733 Set Aseta
4734 Setup Wizard Määritys työkalu
4735 Update Details Päivitä yksityiskohdat
4736 You Sinä
4737 {0} Name {0} Nimi
4738 Bold Lihavoitu
4739 Center keskus
4740 Comment Kommentti
4741 Not Found Not Found
4742 User Id Käyttäjätunnus
4743 Position asento
4744 Crop sato
4745 Topic Aihe
4746 Public Transport Julkinen liikenne
4747 Request Data Pyydä tietoja
4748 Steps Askeleet
4749 Reference DocType Viite DocType
4750 Select Transaction Valitse tapahtuma
4751 Help HTML HTML, ohje
4752 Series List for this Transaction Sarjalistaus tähän tapahtumaan
4753 User must always select Käyttäjän tulee aina valita
4754 Check this if you want to force the user to select a series before saving. There will be no default if you check this. täppää mikäli haluat pakottaa käyttäjän valitsemaan sarjan ennen tallennusta, täpästä ei synny oletusta
4755 Prefix Etuliite
4756 This is the number of the last created transaction with this prefix Viimeinen tapahtuma on tehty tällä numerolla ja tällä etuliitteellä
4757 Update Series Number Päivitä sarjanumerot
4758 Validation Error Vahvistusvirhe
4759 Andaman and Nicobar Islands Andamanin ja Nicobarin saaret
4760 Andhra Pradesh Andhra Pradesh
4761 Arunachal Pradesh Arunachal Pradesh
4762 Assam Assam
4763 Bihar Bihar
4764 Chandigarh Chandigarh
4765 Chhattisgarh Chhattisgarh
4766 Dadra and Nagar Haveli Dadra ja Nagar Haveli
4767 Daman and Diu Daman ja Diu
4768 Delhi Delhi
4769 Goa Goa
4770 Gujarat Gujarat
4771 Haryana Haryana
4772 Himachal Pradesh Himachal Pradesh
4773 Jammu and Kashmir Jammu ja Kashmir
4774 Jharkhand Jharkhand
4775 Karnataka Karnataka
4776 Kerala Kerala
4777 Lakshadweep Islands Lakshadweepin saaret
4778 Madhya Pradesh Madhya Pradesh
4779 Maharashtra Maharashtra
4780 Manipur Manipur
4781 Meghalaya Meghalaya
4782 Mizoram Mizoram
4783 Nagaland Nagaland
4784 Odisha Odisha
4785 Other Territory Muu alue
4786 Pondicherry Pondicherry
4787 Punjab Punjab
4788 Rajasthan Rajasthan
4789 Sikkim Sikkim
4790 Tamil Nadu Tamil Nadu
4791 Telangana Telangana
4792 Tripura Tripura
4793 Uttar Pradesh Uttar Pradesh
4794 Uttarakhand Uttarakhand
4795 West Bengal Länsi-Bengali
4796 Published on Julkaistu
4797 Bottom Pohja
4798 Top Yläosa

View file

@ -9,7 +9,6 @@ Action,Action,
Actions,Actions,
Active,actif,
Add,Ajouter,
Add Comment,Ajouter un Commentaire,
Add Row,Ajouter une Ligne,
Address,Adresse,
Address Line 2,Adresse Ligne 2,
@ -144,7 +143,6 @@ Monday,Lundi,
Monthly,Mensuel,
More,Plus,
More Information,Informations Complémentaires,
More...,Plus...,
Move,mouvement,
My Account,Mon Compte,
New Address,Nouvelle adresse,
@ -157,7 +155,6 @@ No items found.,Aucun élément trouvé.,
None,Aucun,
Not Permitted,Non Autorisé,
Not active,Non actif,
Notes,Remarques,
Number,Nombre,
Online,En Ligne,
Operation,Opération,
@ -167,17 +164,12 @@ Owner,Responsable,
Page Missing or Moved,Page manquante ou déplacée,
Parameter,Paramètre,
Password,Mot de Passe,
Payment Gateway,Passerelle de Paiement,
Payment Gateway Name,Nom de la passerelle de paiement,
Payments,Paiements,
Period,Période,
Pincode,Code Postal,
Plan Name,Nom du Plan,
Please enable pop-ups,Veuillez autoriser les pop-ups,
Please select Company,Veuillez sélectionner une Société,
Please select {0},Veuillez sélectionner {0},
Please set Email Address,Veuillez définir une Adresse Email,
Portal,Portail,
Portal Settings,Paramètres du Portail,
Preview,Aperçu,
Primary,Primaire,
@ -222,7 +214,6 @@ Salutation,Civilité,
Sample,Échantillon,
Saturday,Samedi,
Saved,Enregistré,
Scan Barcode,Scan Code Barre,
Scheduled,Prévu,
Search,Rechercher,
Secret Key,Clef Secrète,
@ -237,7 +228,6 @@ Settings,Paramètres,
Shipping,livraison,
Short Name,Nom Court,
Slideshow,Diaporama,
Some information is missing,Certaines informations sont manquantes,
Source,Source,
Source Name,Nom de la Source,
Standard,Standard,
@ -247,7 +237,6 @@ State,Etat,
Stopped,Arrêté,
Subject,Sujet,
Submit,Valider,
Successful,Réussi,
Summary,Résumé,
Sunday,Dimanche,
System Manager,Responsable Système,
@ -260,11 +249,9 @@ The page you are looking for is missing. This could be because it is moved or th
Timespan,Période,
To,À,
To Date,Jusqu'au,
Tools,Outils,
Traceback,Retraçage,
URL,URL,
Unsubscribed,Désinscrit,
Use Sandbox,Utiliser Sandbox,
User,Utilisateur,
User ID,Identifiant d'utilisateur,
Users,Utilisateurs,
@ -570,7 +557,6 @@ Bulk Delete,Suppression en masse,
Bulk Edit {0},Modifier en Masse {0},
Bulk Rename,Renommer en Masse,
Bulk Update,Mise à jour en Masse,
Busy,Occupé,
Button,Bouton,
Button Help,Aide du Bouton,
Button Label,Étiquette du Bouton,
@ -707,7 +693,6 @@ Compiled Successfully,Compilé avec succès,
Complete By,Terminé par,
Complete Registration,Terminer l'Inscription,
Complete Setup,Terminer l'Installation,
Completed By,Effectué par,
Compose Email,Écrire un Email,
Condition Detail,Détail de la Condition,
Conditions,Conditions,
@ -1693,7 +1678,7 @@ Not a valid user,Nest pas un utilisateur valide,
Not a zip file,Pas un fichier zip,
Not allowed for {0}: {1},Non autorisé pour {0}: {1},
"You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4}","Vous n&#39;êtes pas autorisé à accéder à {0} car il est lié à {1} '{2}' dans la ligne {3}, le champ {4}",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},"Vous n&#39;êtes pas autorisé à accéder à cet enregistrement {0} car il est lié à {1} '{2}' dans le champ {3}",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},Vous n&#39;êtes pas autorisé à accéder à cet enregistrement {0} car il est lié à {1} '{2}' dans le champ {3},
Not allowed to Import,Non autorisé à Importer,
Not allowed to change {0} after submission,Non autorisé à changer {0} après la soumission,
Not allowed to print cancelled documents,Non autorisé à imprimer des documents annulés,
@ -1821,7 +1806,6 @@ Path to private Key File,Chemin vers le fichier de clé privée,
PayPal Settings,Paramètres PayPal,
PayPal payment gateway settings,Paramètres de la Passerelle de Paiement PayPal,
Payment Cancelled,Paiement Annulé,
Payment Failed,Le Paiement a Échoué,
Payment Success,Paiement Effectué avec Succès,
Pending Approval,Validation en attente,
Pending Verification,En attente de vérification,
@ -3220,7 +3204,6 @@ Click on the link below to approve the request,Cliquez sur le lien ci-dessous po
Click on the lock icon to toggle public/private,Cliquez sur l&#39;icône de cadenas pour basculer entre public et privé.,
Click on {0} to generate Refresh Token.,Cliquez sur {0} pour générer le jeton d&#39;actualisation.,
Close Condition,Condition proche,
Column {0},Colonne {0},
Columns / Fields,Colonnes / Champs,
"Configure notifications for mentions, assignments, energy points and more.","Configurez les notifications pour les mentions, les affectations, les points d&#39;énergie et plus encore.",
Contact Email,Email du Contact,
@ -3302,7 +3285,6 @@ Failed to create an Event Consumer or an Event Consumer for the current site is
Failure,Échec,
Fetching default Global Search documents.,Récupération des documents de recherche globale par défaut.,
Fetching posts...,Aller chercher des messages ...,
Field Mapping,Cartographie des champs,
Field To Check,Champ à vérifier,
File Information,Informations sur le fichier,
Filter By,Filtrer par,
@ -3457,7 +3439,6 @@ No posts yet,Pas encore de messages,
No records will be exported,Aucun enregistrement ne sera exporté,
No results found for {0} in Global Search,Aucun résultat trouvé pour {0} dans la recherche globale,
No user found,Aucun utilisateur trouvé,
Not Specified,Non précisé,
Notification Log,Journal des notifications,
Notification Settings,Paramètres de notification,
Notification Subscribed Document,Document souscrit à la notification,
@ -3613,7 +3594,6 @@ Untitled Column,Colonne sans titre,
Untranslated,Non traduit,
Upcoming Events,Evénements à venir,
Update Existing Records,Mettre à jour les enregistrements existants,
Update Type,Type de mise à jour,
Updated To A New Version 🎉,Mise à jour vers une nouvelle version 🎉,
"Updating {0} of {1}, {2}","Mise à jour de {0} sur {1}, {2}",
Upload file,Téléverser un fichier,
@ -3720,19 +3700,16 @@ Designation,Désignation,
Disabled,Desactivé,
Doctype,Doctype,
Download Template,Télécharger le Modèle,
Dr,Dr,
Due Date,Date d'Échéance,
Duplicate,Dupliquer,
Edit Profile,Modifier le Profil,
Email,Email,
End Time,Heure de Fin,
Enter Value,Entrez une Valeur,
Entity Type,Type d'entité,
Error,Erreur,
Expired,Expiré,
Export,Exporter,
Export not allowed. You need {0} role to export.,Pas autorisé à exporter. Vous devez avoir le rôle {0} pour exporter.,
Fetching...,Aller chercher...,
Field,Champ,
File Manager,Gestionnaire de Fichiers,
Filters,Filtres,
@ -3747,11 +3724,8 @@ Import Data from CSV / Excel files.,Importer des données à partir de fichiers
In Progress,En cours,
Intermediate,Intermédiaire,
Invite as User,Inviter en tant qu'Utilisateur,
"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Il semble qu'il y a un problème avec la configuration de Stripe sur le serveur. En cas d'erreur, le montant est remboursé sur votre compte.",
Loading...,Chargement en Cours ...,
Location,Lieu,
Looks like someone sent you to an incomplete URL. Please ask them to look into it.,On dirait que quelqu'un vous a envoyé vers URL incomplète. Veuillez leur demander danalyser lerreur.,
Master,Maître,
Message,Message,
Missing Values Required,Valeurs Manquantes Requises,
Mobile No,N° Mobile,
@ -3763,7 +3737,6 @@ Note,Note,
Offline,Hors Ligne,
Open,Ouvert,
Page {0} of {1},Page {0} sur {1},
Pay,Payer,
Pending,En Attente,
Phone,Téléphone,
Please click on the following link to set your new password,Veuillez cliquer sur le lien suivant pour définir votre nouveau mot de passe,
@ -3811,7 +3784,6 @@ Welcome to {0},Bienvenue sur {0},
Year,Année,
Yearly,Annuel,
You,Vous,
You can also copy-paste this link in your browser,Vous pouvez également copier-coller ce lien dans votre navigateur,
and,et,
{0} Name,{0} Nom,
{0} is required,{0} est nécessaire,
@ -4115,7 +4087,6 @@ Custom SCSS,SCSS personnalisé,
Navbar,Navbar,
Source Message,Message source,
Translated Message,Message traduit,
Verified By,Vérifié Par,
Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand.,L&#39;utilisation de cette console peut permettre à des attaquants de se faire passer pour vous et de voler vos informations. N&#39;entrez ni ne collez de code que vous ne comprenez pas.,
{0} m,{0} m,
{0} h,{0} h,
@ -4149,7 +4120,6 @@ Collapse,Réduire,
{0} is not a valid Name,{0} n&#39;est pas un nom valide,
Your system is being updated. Please refresh again after a few moments.,Votre système est en cours de mise à jour. Veuillez actualiser à nouveau après quelques instants.,
{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first.,{0} {1}: l&#39;enregistrement validé ne peut pas être supprimé. Vous devez d&#39;abord {2} l&#39;annuler {3}.,
Invalid naming series (. missing) for {0},Masque de numérotation non valide (. Manquante) pour {0},
Error has occurred in {0},Une erreur s&#39;est produite dans {0},
Status Updated,Statut mis à jour,
You can also copy-paste this {0} to your browser,Vous pouvez également copier-coller ce {0} dans votre navigateur,
@ -4171,14 +4141,11 @@ Is Billing Contact,Est le contact de facturation,
Address And Contacts,Adresse et contacts,
Lead Conversion Time,Temps de conversion des prospects,
Due Date Based On,Date d&#39;échéance basée sur,
Phone Number,Numéro de téléphone,
Linked Documents,Documents liés,
Account SID,Compte SID,
Steps,Pas,
email,email,
Component,Composant,
Subtitle,Sous-titre,
Global Defaults,Valeurs par Défaut Globales,
Prefix,Préfixe,
Is Public,Est public,
This chart will be available to all Users if this is set,Ce graphique sera disponible pour tous les utilisateurs si cela est défini,
@ -4365,7 +4332,6 @@ Dynamic Filters Section,Section des filtres dynamiques,
Please create Card first,Veuillez d&#39;abord créer la carte,
Onboarding Permission,Autorisation d&#39;intégration,
Onboarding Step,Étape d&#39;intégration,
Is Mandatory,Est obligatoire,
Is Skipped,Est ignoré,
Create Entry,Créer une entrée,
Update Settings,Mettre à jour les paramètres,
@ -4403,7 +4369,6 @@ Message (HTML),Message (HTML),
Send Attachments,Envoyer des pièces jointes,
Testing,Essai,
System Notification,Notification système,
WhatsApp,WhatsApp,
Twilio Number,Numéro Twilio,
"To use WhatsApp for Business, initialize <a href=""#Form/Twilio Settings"">Twilio Settings</a>.","Pour utiliser WhatsApp for Business, initialisez les <a href=""#Form/Twilio Settings"">paramètres Twilio</a> .",
"To use Slack Channel, add a <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL</a>.","Pour utiliser Slack Channel, ajoutez une <a href=""#List/Slack%20Webhook%20URL/List"">URL Slack Webhook</a> .",
@ -4538,7 +4503,6 @@ Add to ToDo,Ajouter à ToDo,
{0} are currently {1},{0} sont actuellement {1},
Currently Replying,Réponse en cours,
created {0},a créé {0},
Make a call,Passer un coup de téléphone,
Change,la monnaie,Coins
Too Many Requests,Trop de demandes,
"Invalid Authorization headers, add a token with a prefix from one of the following: {0}.","En-têtes d&#39;autorisation non valides, ajoutez un jeton avec un préfixe de l&#39;un des éléments suivants: {0}.",
@ -4607,7 +4571,7 @@ Published on,Publié le,
Enable developer mode to create a standard Web Template,Activer le mode développeur pour créer un modèle Web standard,
Was this article helpful?,Cet article a-t-il été utile?,
Thank you for your feedback!,Merci pour votre avis!,
Thank you for spending your valuable time to fill this form,"Merci d'avoir consacré votre temps précieux à remplir ce formulaire",
Thank you for spending your valuable time to fill this form,Merci d'avoir consacré votre temps précieux à remplir ce formulaire,
New Mention on {0},Nouvelle mention sur {0},
Assignment Update on {0},Mise à jour du devoir le {0},
New Document Shared {0},Nouveau document partagé {0},
@ -4755,3 +4719,136 @@ No Results found,Aucun résultat trouvs,
Shelf Life in Days,Durée de conservation (en jours)
Batch Expiry Date,Date d'expiration du Lot,
Edit Full Form,Ouvrir le formulaire complet
Add Row,Ajouter une Ligne,
Analytics,Analytique,
Anonymous,Anonyme,
Author,Auteur,
Basic,De base,
Billing,Facturation,
Contact Details,Coordonnées,
Datetime,Date/Heure,
Enable,Activer,
Event,Événement,
Full,Complet,
Insert,Insérer,
Interests,Intérêts,
Language Name,Nom de la Langue,
License,Licence,
Limit,Limite,
Log,Journal,
Meeting,Réunion,
My Account,Mon Compte,
Newsletters,Newsletters,
Password,Mot de Passe,
Pincode,Code Postal,
Please select prefix first,Veuillez dabord sélectionner un préfixe,
Please set Email Address,Veuillez définir une Adresse Email,
Please set the series to be used.,Veuillez définir la série à utiliser.,
Portal Settings,Paramètres du Portail,
Reference Owner,Responsable de la Référence,
Region,Région,
Report Builder,Éditeur de Rapports,
Sample,Échantillon,
Saved,Enregistré,
Series {0} already used in {1},Séries {0} déjà utilisé dans {1},
Set as Default,Définir par défaut,
Shipping,livraison,
Standard,Standard,
Test,Test,
Traceback,Retraçage,
Unable to find DocType {0},Impossible de trouver le DocType {0},
Weekdays,Jours de la semaine,
Workflow,Flux de Travail,
You need to be logged in to access this page,Vous devez être connecté pour pouvoir accéder à cette page,
County,Canton,
Images,Images,
Office,Bureau,
Passive,Passif,
Permanent,Permanent,
Plant,Usine,
Postal,Postal,
Previous,Précedent,
Shop,Magasin,
Subsidiary,Filiale,
There is some problem with the file url: {0},Il y a un problème avec l'url du fichier : {0},
"Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}","Caractères spéciaux sauf &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; Et &quot;}}&quot; non autorisés dans les masques de numérotation {0}",
Export Type,Type d'Exportation,
Last Sync On,Dernière synchronisation le,
Webhook Secret,Webhook Secret,
Back to Home,De retour à la maison,
Customize,Personnaliser,
Edit Profile,Modifier le Profil,
File Manager,Gestionnaire de Fichiers,
Invite as User,Inviter en tant qu'Utilisateur,
Newsletter,Newsletter,
Printing,Impression,
Publish,Publier,
Refreshing,Rafraîchissant,
Select All,Sélectionner Tout,
Set,Définir,
Setup Wizard,Assistant de Configuration,
Update Details,Détails de mise à jour,
You,Vous,
{0} Name,{0} Nom,
Bold,Audacieux,
Center,Centre,
Comment,Commentaire,
Not Found,Non Trouvé,
User Id,Identifiant d'utilisateur,
Position,Position,
Crop,Culture,
Topic,Sujet,
Public Transport,Transports Publics,
Request Data,Données de la requête,
Steps,Pas,
Reference DocType,Référence DocType,
Select Transaction,Sélectionner la Transaction,
Help HTML,Aide HTML,
Series List for this Transaction,Liste des Séries pour cette Transaction,
User must always select,L'utilisateur doit toujours sélectionner,
Check this if you want to force the user to select a series before saving. There will be no default if you check this.,Cochez cette case si vous voulez forcer l'utilisateur à sélectionner une série avant de l'enregistrer. Il n'y aura pas de série par défaut si vous cochez cette case.,
Prefix,Préfixe,
This is the number of the last created transaction with this prefix,Numéro de la dernière transaction créée avec ce préfixe,
Update Series Number,Mettre à Jour la Série,
Validation Error,erreur de validation,
Andaman and Nicobar Islands,Îles Andaman et Nicobar,
Andhra Pradesh,Andhra Pradesh,
Arunachal Pradesh,Arunachal Pradesh,
Assam,Assam,
Bihar,Bihar,
Chandigarh,Chandigarh,
Chhattisgarh,Chhattisgarh,
Dadra and Nagar Haveli,Dadra et Nagar Haveli,
Daman and Diu,Daman et Diu,
Delhi,Delhi,
Goa,Goa,
Gujarat,Gujarat,
Haryana,Haryana,
Himachal Pradesh,Himachal Pradesh,
Jammu and Kashmir,Jammu et Cachemire,
Jharkhand,Jharkhand,
Karnataka,Karnataka,
Kerala,Kerala,
Lakshadweep Islands,Îles Lakshadweep,
Madhya Pradesh,Madhya Pradesh,
Maharashtra,Maharashtra,
Manipur,Manipur,
Meghalaya,Meghalaya,
Mizoram,Mizoram,
Nagaland,Nagaland,
Odisha,Odisha,
Other Territory,Autre territoire,
Pondicherry,Pondichéry,
Punjab,Punjab,
Rajasthan,Rajasthan,
Sikkim,Sikkim,
Tamil Nadu,Tamil Nadu,
Telangana,Telangana,
Tripura,Tripura,
Uttar Pradesh,Uttar Pradesh,
Uttarakhand,Uttarakhand,
West Bengal,Bengale-Occidental,
Published on,Publié le,
Bottom,Bas,
Top,Haut,
List View,Vue en liste,

Can't render this file because it has a wrong number of fields in line 4670.

View file

@ -9,7 +9,6 @@ Action,ક્રિયા,
Actions,ક્રિયાઓ,
Active,સક્રિય,
Add,ઉમેરો,
Add Comment,ટિપ્પણી ઉમેરો,
Add Row,પંક્તિ ઉમેરો,
Address,સરનામું,
Address Line 2,સરનામું લાઇન 2,
@ -144,7 +143,6 @@ Monday,સોમવારે,
Monthly,માસિક,
More,વધુ,
More Information,વધુ મહિતી,
More...,વધુ ...,
Move,ચાલ,
My Account,મારું ખાતું,
New Address,નવું સરનામું,
@ -157,7 +155,6 @@ No items found.,કોઈ આઇટમ્સ મળી નથી.,
None,કંઈ નહીં,
Not Permitted,પરવાનગી નથી,
Not active,સક્રિય,
Notes,નોંધો,
Number,સંખ્યા,
Online,ઓનલાઇન,
Operation,ઓપરેશન,
@ -167,17 +164,12 @@ Owner,માલિક,
Page Missing or Moved,ખૂટે છે અથવા ખસેડવામાં પેજમાં,
Parameter,પરિમાણ,
Password,પાસવર્ડ,
Payment Gateway,પેમેન્ટ ગેટવે,
Payment Gateway Name,પેમેન્ટ ગેટવે નામ,
Payments,ચુકવણીઓ,
Period,પીરિયડ,
Pincode,પીન કોડ,
Plan Name,યોજનાનું નામ,
Please enable pop-ups,પૉપ-અપ્સ સક્ષમ કૃપા કરીને,
Please select Company,કંપની પસંદ કરો,
Please select {0},પસંદ કરો {0},
Please set Email Address,ઇમેઇલ સરનામું સેટ કૃપા કરીને,
Portal,પોર્ટલ,
Portal Settings,પોર્ટલ સેટિંગ્સ,
Preview,પૂર્વદર્શન,
Primary,પ્રાથમિક,
@ -222,7 +214,6 @@ Salutation,નમસ્કાર,
Sample,નમૂના,
Saturday,શનિવારે,
Saved,સાચવેલા,
Scan Barcode,બારકોડ સ્કેન કરો,
Scheduled,અનુસૂચિત,
Search,શોધ,
Secret Key,રહસ્ય કી,
@ -237,7 +228,6 @@ Settings,સેટિંગ્સ,
Shipping,વહાણ પરિવહન,
Short Name,ટૂંકા નામ,
Slideshow,સ્લાઇડ શો,
Some information is missing,કેટલીક માહિતી ગુમ થયેલ હોય,
Source,સોર્સ,
Source Name,સોર્સ નામ,
Standard,સ્ટાન્ડર્ડ,
@ -247,7 +237,6 @@ State,રાજ્ય,
Stopped,બંધ,
Subject,વિષય,
Submit,સબમિટ,
Successful,સફળ,
Summary,સારાંશ,
Sunday,રવિવારે,
System Manager,સિસ્ટમ વ્યવસ્થાપક,
@ -260,11 +249,9 @@ The page you are looking for is missing. This could be because it is moved or th
Timespan,સમય ગાળો,
To,માટે,
To Date,આજ સુધી,
Tools,સાધનો,
Traceback,ટ્રેસબેક,
URL,URL ને,
Unsubscribed,અનસબ્સ્ક્રાઇબ્ડ,
Use Sandbox,ઉપયોગ સેન્ડબોક્સ,
User,વપરાશકર્તા,
User ID,વપરાશકર્તા ID,
Users,વપરાશકર્તાઓ,
@ -569,7 +556,6 @@ Bulk Delete,બલ્ક કા Deleteી નાખો,
Bulk Edit {0},બલ્ક ફેરફાર કરો {0},
Bulk Rename,બલ્ક નામ બદલો,
Bulk Update,બલ્ક અપડેટ,
Busy,વ્યસ્ત,
Button,બટન,
Button Help,બટન મદદ,
Button Label,બટન લેબલ,
@ -706,7 +692,6 @@ Compiled Successfully,સફળતાપૂર્વક સંકલિત,
Complete By,દ્વારા સંપૂર્ણ,
Complete Registration,પૂર્ણ નોંધણી,
Complete Setup,સેટઅપ પૂર્ણ,
Completed By,દ્વારા પૂર્ણ,
Compose Email,ઇમેઇલ કંપોઝ,
Condition Detail,સ્થિતિ વિગતવાર,
Conditions,શરતો,
@ -1819,7 +1804,6 @@ Path to private Key File,ખાનગી કી ફાઇલનો માર્
PayPal Settings,પેપાલ સેટિંગ્સ,
PayPal payment gateway settings,પેપાલ ચુકવણી ગેટવે સેટિંગ્સ,
Payment Cancelled,ચુકવણી રદ,
Payment Failed,ચુકવણી કરવામાં નિષ્ફળ,
Payment Success,ચુકવણી સફળતા,
Pending Approval,મંજૂરી બાકી હોવી,
Pending Verification,બાકી ચકાસણી,
@ -3216,7 +3200,6 @@ Click on the link below to approve the request,વિનંતીને મં
Click on the lock icon to toggle public/private,સાર્વજનિક / ખાનગી ટgગલ કરવા માટે લ lockક આયકન પર ક્લિક કરો,
Click on {0} to generate Refresh Token.,તાજું ટોકન ઉત્પન્ન કરવા માટે {0 on પર ક્લિક કરો.,
Close Condition,બંધ સ્થિતિ,
Column {0},કumnલમ {0},
Columns / Fields,ક Colલમ / ક્ષેત્રો,
"Configure notifications for mentions, assignments, energy points and more.","ઉલ્લેખ, સોંપણીઓ, energyર્જા પોઇન્ટ અને વધુ માટે સૂચનાઓ ગોઠવો.",
Contact Email,સંપર્ક ઇમેઇલ,
@ -3298,7 +3281,6 @@ Failed to create an Event Consumer or an Event Consumer for the current site is
Failure,નિષ્ફળતા,
Fetching default Global Search documents.,ડિફ defaultલ્ટ વૈશ્વિક શોધ દસ્તાવેજો લાવી રહ્યાં છે.,
Fetching posts...,પોસ્ટ્સનું આનયન કરી રહ્યું છે ...,
Field Mapping,ફીલ્ડ મેપિંગ,
Field To Check,તપાસવા માટેનું ક્ષેત્ર,
File Information,ફાઇલ માહિતી,
Filter By,આના દ્વારા ફિલ્ટર કરો,
@ -3453,7 +3435,6 @@ No posts yet,હજુ સુધી કોઈ પોસ્ટ્સ,
No records will be exported,કોઈ રેકોર્ડની નિકાસ કરવામાં આવશે નહીં,
No results found for {0} in Global Search,વૈશ્વિક શોધમાં results 0} માટે કોઈ પરિણામો મળ્યાં નથી,
No user found,કોઈ વપરાશકર્તા મળ્યો નથી,
Not Specified,ઉલ્લેખ નથી,
Notification Log,સૂચના લ Logગ,
Notification Settings,સૂચના સેટિંગ્સ,
Notification Subscribed Document,સૂચન સબ્સ્ક્રાઇબ કરેલું દસ્તાવેજ,
@ -3609,7 +3590,6 @@ Untitled Column,શીર્ષક વિનાની કumnલમ,
Untranslated,અનટ્રાંસ્લેટેડ,
Upcoming Events,આવનારી પ્રવૃત્તિઓ,
Update Existing Records,હાલના રેકોર્ડ્સને અપડેટ કરો,
Update Type,સુધારા પ્રકાર,
Updated To A New Version 🎉,નવી આવૃત્તિમાં અપડેટ કર્યું 🎉,
"Updating {0} of {1}, {2}","{1}, {2} ના {0} ને અપડેટ કરી રહ્યું છે",
Upload file,ફાઈલ અપલોડ કરો,
@ -3716,19 +3696,16 @@ Designation,હોદ્દો,
Disabled,અક્ષમ,
Doctype,Doctype,
Download Template,ડાઉનલોડ નમૂનો,
Dr,ડૉ,
Due Date,નિયત તારીખ,
Duplicate,ડુપ્લિકેટ,
Edit Profile,પ્રોફાઇલ સંપાદિત કરો,
Email,ઇમેઇલ,
End Time,અંત સમય,
Enter Value,કિંમત દાખલ,
Entity Type,અસ્તિત્વ પ્રકાર,
Error,ભૂલ,
Expired,સમાપ્ત,
Export,નિકાસ,
Export not allowed. You need {0} role to export.,નિકાસ મંજૂરી નથી. તમે નિકાસ કરવા {0} ભૂમિકા જરૂર છે.,
Fetching...,લાવી રહ્યું છે ...,
Field,ક્ષેત્ર,
File Manager,ફાઇલ વ્યવસ્થાપક,
Filters,ગાળકો,
@ -3743,11 +3720,8 @@ Import Data from CSV / Excel files.,CSV / Excel ફાઇલોથી ડેટ
In Progress,પ્રગતિમાં,
Intermediate,વચગાળાના,
Invite as User,વપરાશકર્તા તરીકે આમંત્રણ આપો,
"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","એવું લાગે છે કે સર્વરની પટ્ટી ગોઠવણી સાથે સમસ્યા છે. નિષ્ફળતાના કિસ્સામાં, રકમ તમારા એકાઉન્ટમાં પરત કરાશે.",
Loading...,લોડ કરી રહ્યું છે ...,
Location,સ્થાન,
Looks like someone sent you to an incomplete URL. Please ask them to look into it.,જેમ કોઈને એક અપૂર્ણ URL પર તમે મોકલી જુએ છે. તેમને તે તપાસ કરવા માટે પૂછો.,
Master,માસ્ટર,
Message,સંદેશ,
Missing Values Required,ગુમ કિંમતો જરૂરી,
Mobile No,મોબાઈલ નં,
@ -3759,7 +3733,6 @@ Note,નૉૅધ,
Offline,ઑફલાઇન,
Open,ઓપન,
Page {0} of {1},પેજમાં {0} ના {1},
Pay,પે,
Pending,બાકી,
Phone,ફોન,
Please click on the following link to set your new password,તમારો નવો પાસવર્ડ સુયોજિત કરવા માટે નીચેની લિંક પર ક્લિક કરો,
@ -3809,7 +3782,6 @@ Welcome to {0},આપનું સ્વાગત છે {0},
Year,વર્ષ,
Yearly,વાર્ષિક,
You,તમે,
You can also copy-paste this link in your browser,તમે પણ તમારા બ્રાઉઝરમાં આ લિંક કોપી પેસ્ટ કરી શકો છો,
and,અને,
{0} Name,{0} નામ,
{0} is required,{0} જરૂરી છે,
@ -4113,7 +4085,6 @@ Custom SCSS,કસ્ટમ એસ.સી.એસ.એસ.,
Navbar,નવબાર,
Source Message,સ્રોત સંદેશ,
Translated Message,ભાષાંતર સંદેશ,
Verified By,દ્વારા ચકાસવામાં,
Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand.,આ કન્સોલનો ઉપયોગ કરવાથી હુમલાખોરો તમારી ersોંગ અને તમારી માહિતી ચોરી શકે છે. તમે સમજી શકતા નથી તે કોડ દાખલ કરો અથવા પેસ્ટ કરો નહીં.,
{0} m,. 0} મી,
{0} h,{0} એચ,
@ -4146,7 +4117,6 @@ Collapse,પતન,
{0} is not a valid Name,{0 a એ માન્ય નામ નથી,
Your system is being updated. Please refresh again after a few moments.,તમારી સિસ્ટમ અપડેટ થઈ રહી છે. કૃપા કરીને થોડી વાર પછી ફરીથી તાજું કરો.,
{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first.,{0} {1}: સબમિટ કરેલો રેકોર્ડ કા beી શકાતો નથી. તમારે પહેલા તેને {2} રદ કરવું જોઈએ} 3 must.,
Invalid naming series (. missing) for {0},{0 for માટે અમાન્ય નામકરણ શ્રેણી (. ગુમ),
Error has occurred in {0},ભૂલ {0 in માં આવી છે,
Status Updated,સ્થિતિ અપડેટ થઈ,
You can also copy-paste this {0} to your browser,તમે તમારા બ્રાઉઝર પર આ {0 copy ની ક copyપિ પેસ્ટ પણ કરી શકો છો,
@ -4168,14 +4138,11 @@ Is Billing Contact,બિલિંગ સંપર્ક છે,
Address And Contacts,સરનામું અને સંપર્કો,
Lead Conversion Time,લીડ કન્વર્ઝન સમય,
Due Date Based On,નિયત તારીખ આધારિત,
Phone Number,ફોન નંબર,
Linked Documents,લિંક કરેલા દસ્તાવેજો,
Account SID,એકાઉન્ટ એસ.આઇ.ડી.,
Steps,પગલાં,
email,ઇમેઇલ,
Component,પુન,
Subtitle,ઉપશીર્ષક,
Global Defaults,વૈશ્વિક ડિફૉલ્ટ્સ,
Prefix,પૂર્વગ,
Is Public,જાહેર છે,
This chart will be available to all Users if this is set,જો આ સેટ કરેલું હોય તો આ ચાર્ટ બધા વપરાશકર્તાઓ માટે ઉપલબ્ધ રહેશે,
@ -4362,7 +4329,6 @@ Dynamic Filters Section,ગતિશીલ ફિલ્ટર્સ વિભા
Please create Card first,કૃપા કરીને પ્રથમ કાર્ડ બનાવો,
Onboarding Permission,ઓનબોર્ડિંગ પરવાનગી,
Onboarding Step,ઓનબોર્ડિંગ સ્ટેપ,
Is Mandatory,ફરજિયાત છે,
Is Skipped,છોડ્યું છે,
Create Entry,એન્ટ્રી બનાવો,
Update Settings,સેટિંગ્સ અપડેટ કરો,
@ -4400,7 +4366,6 @@ Message (HTML),સંદેશ (એચટીએમએલ),
Send Attachments,જોડાણો મોકલો,
Testing,પરીક્ષણ,
System Notification,સિસ્ટમ સૂચન,
WhatsApp,વોટ્સેપ,
Twilio Number,ટ્વાલીયો નંબર,
"To use WhatsApp for Business, initialize <a href=""#Form/Twilio Settings"">Twilio Settings</a>.","વ્યવસાય માટે WhatsApp નો ઉપયોગ કરવા માટે, <a href=""#Form/Twilio Settings"">ટ્વાલીયો સેટિંગ્સ</a> પ્રારંભ કરો.",
"To use Slack Channel, add a <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL</a>.","સ્લેક ચેનલનો ઉપયોગ કરવા માટે, <a href=""#List/Slack%20Webhook%20URL/List"">સ્લેક વેબહૂક URL</a> ઉમેરો.",
@ -4535,7 +4500,6 @@ Add to ToDo,ToDo માં ઉમેરો,
{0} are currently {1},{0 currently હાલમાં {1} છે,
Currently Replying,હાલમાં જવાબ,
created {0},created 0 created બનાવ્યું,
Make a call,કોલ કરો,
Change,બદલો,Coins
Too Many Requests,ઘણી બધી વિનંતીઓ,
"Invalid Authorization headers, add a token with a prefix from one of the following: {0}.","અમાન્ય અધિકૃત મથાળાઓ, નીચેનામાંથી એકમાંથી ઉપસર્ગ સાથે એક ટોકન ઉમેરો: {0}.",
@ -4700,3 +4664,135 @@ Value cannot be negative for {0}: {1},મૂલ્ય {0 for માટે નક
Negative Value,નકારાત્મક મૂલ્ય,
Authentication failed while receiving emails from Email Account: {0}.,ઇમેઇલ એકાઉન્ટથી ઇમેઇલ્સ પ્રાપ્ત કરતી વખતે પ્રમાણીકરણ નિષ્ફળ થયું: {0}.,
Message from server: {0},સર્વરનો સંદેશ: {0},
Add Row,પંક્તિ ઉમેરો,
Analytics,ઍનલિટિક્સ,
Anonymous,અનામિક,
Author,લેખક,
Basic,મૂળભૂત,
Billing,બિલિંગ,
Contact Details,સંપર્ક વિગતો,
Datetime,તારીખ સમય,
Enable,સક્ષમ કરો,
Event,ઇવેન્ટ,
Full,પૂર્ણ,
Insert,સામેલ કરો,
Interests,રૂચિ,
Language Name,ભાષા નામ,
License,લાઈસન્સ,
Limit,મર્યાદા,
Log,પ્રવેશ કરો,
Meeting,બેઠક,
My Account,મારું ખાતું,
Newsletters,ન્યૂઝલેટર્સ,
Password,પાસવર્ડ,
Pincode,પીન કોડ,
Please select prefix first,પ્રથમ ઉપસર્ગ પસંદ કરો,
Please set Email Address,ઇમેઇલ સરનામું સેટ કૃપા કરીને,
Please set the series to be used.,કૃપા કરી શ્રેણીનો ઉપયોગ કરવા માટે સેટ કરો,
Portal Settings,પોર્ટલ સેટિંગ્સ,
Reference Owner,સંદર્ભ માલિક,
Region,પ્રદેશ,
Report Builder,રિપોર્ટ બિલ્ડર,
Sample,નમૂના,
Saved,સાચવેલા,
Series {0} already used in {1},પહેલેથી ઉપયોગમાં સિરીઝ {0} {1},
Set as Default,ડિફૉલ્ટ તરીકે સેટ કરો,
Shipping,વહાણ પરિવહન,
Standard,સ્ટાન્ડર્ડ,
Test,ટેસ્ટ,
Traceback,ટ્રેસબેક,
Unable to find DocType {0},ડૉકટાઇપ {0} શોધવામાં અસમર્થ,
Weekdays,અઠવાડિયાના દિવસો,
Workflow,વર્કફ્લો,
You need to be logged in to access this page,તમે આ પાનું ઍક્સેસ કરવા માટે લૉગ ઇન કરવાની જરૂર,
County,કાઉન્ટી,
Images,છબીઓ,
Office,ઓફિસ,
Passive,નિષ્ક્રીય,
Permanent,કાયમી,
Plant,પ્લાન્ટ,
Postal,ટપાલ,
Previous,Next અગાઉના આગળ,
Shop,દુકાન,
Subsidiary,સબસિડીયરી,
There is some problem with the file url: {0},ફાઈલ URL સાથે કેટલાક સમસ્યા છે: {0},
"Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}","&quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; અને &quot;}}&quot; સિવાયના વિશેષ અક્ષરો નામકરણ શ્રેણીમાં મંજૂરી નથી {0}",
Export Type,નિકાસ પ્રકાર,
Last Sync On,છેલ્લું સમન્વયન ચાલુ કરો,
Webhook Secret,વેબહૂક સિક્રેટ,
Back to Home,ઘરે પાછા,
Customize,કસ્ટમાઇઝ,
Edit Profile,પ્રોફાઇલ સંપાદિત કરો,
File Manager,ફાઇલ વ્યવસ્થાપક,
Invite as User,વપરાશકર્તા તરીકે આમંત્રણ આપો,
Newsletter,ન્યૂઝલેટર,
Printing,પ્રિન્ટિંગ,
Publish,પ્રકાશિત કરો,
Refreshing,પ્રેરણાદાયક,
Select All,બધા પસંદ કરો,
Set,સેટ,
Setup Wizard,સેટઅપ વિઝાર્ડ,
Update Details,અપડેટ વિગતો,
You,તમે,
{0} Name,{0} નામ,
Bold,બોલ્ડ,
Center,કેન્દ્ર,
Comment,ટિપ્પણી,
Not Found,મળ્યું નથી,
User Id,વપરાશકર્તા આઈડી,
Position,પોઝિશન,
Crop,પાક,
Topic,વિષય,
Public Transport,જાહેર પરિવહન,
Request Data,વિનંતી ડેટા,
Steps,પગલાં,
Reference DocType,સંદર્ભ ડોકટાઇપ,
Select Transaction,પસંદ ટ્રાન્ઝેક્શન,
Help HTML,મદદ HTML,
Series List for this Transaction,આ સોદા માટે સિરીઝ યાદી,
User must always select,વપરાશકર્તા હંમેશા પસંદ કરવી જ પડશે,
Check this if you want to force the user to select a series before saving. There will be no default if you check this.,"તમે બચત પહેલાં શ્રેણી પસંદ કરો વપરાશકર્તા પર દબાણ કરવા માંગો છો, તો આ તપાસો. તમે આ તપાસો જો કોઈ મૂળભૂત હશે.",
Prefix,પૂર્વગ,
This is the number of the last created transaction with this prefix,આ ઉપસર્ગ સાથે છેલ્લા બનાવવામાં વ્યવહાર સંખ્યા છે,
Update Series Number,સુધારા સિરીઝ સંખ્યા,
Validation Error,માન્યતા ભૂલ,
Andaman and Nicobar Islands,આંદામાન અને નિકોબાર આઇલેન્ડ્સ,
Andhra Pradesh,આંધ્રપ્રદેશ,
Arunachal Pradesh,અરુણાચલ પ્રદેશ,
Assam,આસામ,
Bihar,બિહાર,
Chandigarh,ચંદીગ.,
Chhattisgarh,છત્તીસગ.,
Dadra and Nagar Haveli,દાદરા અને નગર હવેલી,
Daman and Diu,દમણ અને દીવ,
Delhi,દિલ્હી,
Goa,ગોવા,
Gujarat,ગુજરાત,
Haryana,હરિયાણા,
Himachal Pradesh,હિમાચલ પ્રદેશ,
Jammu and Kashmir,જમ્મુ કાશ્મીર,
Jharkhand,ઝારખંડ,
Karnataka,કર્ણાટક,
Kerala,કેરળ,
Lakshadweep Islands,લક્ષદ્વીપ ટાપુઓ,
Madhya Pradesh,મધ્યપ્રદેશ,
Maharashtra,મહારાષ્ટ્ર,
Manipur,મણિપુર,
Meghalaya,મેઘાલય,
Mizoram,મિઝોરમ,
Nagaland,નાગાલેન્ડ,
Odisha,ઓડિશા,
Other Territory,અન્ય પ્રદેશ,
Pondicherry,પોંડિચેરી,
Punjab,પંજાબ,
Rajasthan,રાજસ્થાન,
Sikkim,સિક્કિમ,
Tamil Nadu,તામિલનાડુ,
Telangana,તેલંગાણા,
Tripura,ત્રિપુરા,
Uttar Pradesh,ઉત્તરપ્રદેશ,
Uttarakhand,ઉત્તરાખંડ,
West Bengal,પશ્ચિમ બંગાળ,
Published on,પર પ્રકાશિત,
Bottom,નીચે,
Top,ટોચ,

1 A4 A4
9 Actions ક્રિયાઓ
10 Active સક્રિય
11 Add ઉમેરો
Add Comment ટિપ્પણી ઉમેરો
12 Add Row પંક્તિ ઉમેરો
13 Address સરનામું
14 Address Line 2 સરનામું લાઇન 2
143 Monthly માસિક
144 More વધુ
145 More Information વધુ મહિતી
More... વધુ ...
146 Move ચાલ
147 My Account મારું ખાતું
148 New Address નવું સરનામું
155 None કંઈ નહીં
156 Not Permitted પરવાનગી નથી
157 Not active સક્રિય
Notes નોંધો
158 Number સંખ્યા
159 Online ઓનલાઇન
160 Operation ઓપરેશન
164 Page Missing or Moved ખૂટે છે અથવા ખસેડવામાં પેજમાં
165 Parameter પરિમાણ
166 Password પાસવર્ડ
Payment Gateway પેમેન્ટ ગેટવે
Payment Gateway Name પેમેન્ટ ગેટવે નામ
Payments ચુકવણીઓ
167 Period પીરિયડ
168 Pincode પીન કોડ
Plan Name યોજનાનું નામ
169 Please enable pop-ups પૉપ-અપ્સ સક્ષમ કૃપા કરીને
170 Please select Company કંપની પસંદ કરો
171 Please select {0} પસંદ કરો {0}
172 Please set Email Address ઇમેઇલ સરનામું સેટ કૃપા કરીને
Portal પોર્ટલ
173 Portal Settings પોર્ટલ સેટિંગ્સ
174 Preview પૂર્વદર્શન
175 Primary પ્રાથમિક
214 Sample નમૂના
215 Saturday શનિવારે
216 Saved સાચવેલા
Scan Barcode બારકોડ સ્કેન કરો
217 Scheduled અનુસૂચિત
218 Search શોધ
219 Secret Key રહસ્ય કી
228 Shipping વહાણ પરિવહન
229 Short Name ટૂંકા નામ
230 Slideshow સ્લાઇડ શો
Some information is missing કેટલીક માહિતી ગુમ થયેલ હોય
231 Source સોર્સ
232 Source Name સોર્સ નામ
233 Standard સ્ટાન્ડર્ડ
237 Stopped બંધ
238 Subject વિષય
239 Submit સબમિટ
Successful સફળ
240 Summary સારાંશ
241 Sunday રવિવારે
242 System Manager સિસ્ટમ વ્યવસ્થાપક
249 Timespan સમય ગાળો
250 To માટે
251 To Date આજ સુધી
Tools સાધનો
252 Traceback ટ્રેસબેક
253 URL URL ને
254 Unsubscribed અનસબ્સ્ક્રાઇબ્ડ
Use Sandbox ઉપયોગ સેન્ડબોક્સ
255 User વપરાશકર્તા
256 User ID વપરાશકર્તા ID
257 Users વપરાશકર્તાઓ
556 Bulk Edit {0} બલ્ક ફેરફાર કરો {0}
557 Bulk Rename બલ્ક નામ બદલો
558 Bulk Update બલ્ક અપડેટ
Busy વ્યસ્ત
559 Button બટન
560 Button Help બટન મદદ
561 Button Label બટન લેબલ
692 Complete By દ્વારા સંપૂર્ણ
693 Complete Registration પૂર્ણ નોંધણી
694 Complete Setup સેટઅપ પૂર્ણ
Completed By દ્વારા પૂર્ણ
695 Compose Email ઇમેઇલ કંપોઝ
696 Condition Detail સ્થિતિ વિગતવાર
697 Conditions શરતો
1804 PayPal Settings પેપાલ સેટિંગ્સ
1805 PayPal payment gateway settings પેપાલ ચુકવણી ગેટવે સેટિંગ્સ
1806 Payment Cancelled ચુકવણી રદ
Payment Failed ચુકવણી કરવામાં નિષ્ફળ
1807 Payment Success ચુકવણી સફળતા
1808 Pending Approval મંજૂરી બાકી હોવી
1809 Pending Verification બાકી ચકાસણી
3200 Click on the lock icon to toggle public/private સાર્વજનિક / ખાનગી ટgગલ કરવા માટે લ lockક આયકન પર ક્લિક કરો
3201 Click on {0} to generate Refresh Token. તાજું ટોકન ઉત્પન્ન કરવા માટે {0 on પર ક્લિક કરો.
3202 Close Condition બંધ સ્થિતિ
Column {0} કumnલમ {0}
3203 Columns / Fields ક Colલમ / ક્ષેત્રો
3204 Configure notifications for mentions, assignments, energy points and more. ઉલ્લેખ, સોંપણીઓ, energyર્જા પોઇન્ટ અને વધુ માટે સૂચનાઓ ગોઠવો.
3205 Contact Email સંપર્ક ઇમેઇલ
3281 Failure નિષ્ફળતા
3282 Fetching default Global Search documents. ડિફ defaultલ્ટ વૈશ્વિક શોધ દસ્તાવેજો લાવી રહ્યાં છે.
3283 Fetching posts... પોસ્ટ્સનું આનયન કરી રહ્યું છે ...
Field Mapping ફીલ્ડ મેપિંગ
3284 Field To Check તપાસવા માટેનું ક્ષેત્ર
3285 File Information ફાઇલ માહિતી
3286 Filter By આના દ્વારા ફિલ્ટર કરો
3435 No records will be exported કોઈ રેકોર્ડની નિકાસ કરવામાં આવશે નહીં
3436 No results found for {0} in Global Search વૈશ્વિક શોધમાં results 0} માટે કોઈ પરિણામો મળ્યાં નથી
3437 No user found કોઈ વપરાશકર્તા મળ્યો નથી
Not Specified ઉલ્લેખ નથી
3438 Notification Log સૂચના લ Logગ
3439 Notification Settings સૂચના સેટિંગ્સ
3440 Notification Subscribed Document સૂચન સબ્સ્ક્રાઇબ કરેલું દસ્તાવેજ
3590 Untranslated અનટ્રાંસ્લેટેડ
3591 Upcoming Events આવનારી પ્રવૃત્તિઓ
3592 Update Existing Records હાલના રેકોર્ડ્સને અપડેટ કરો
Update Type સુધારા પ્રકાર
3593 Updated To A New Version 🎉 નવી આવૃત્તિમાં અપડેટ કર્યું 🎉
3594 Updating {0} of {1}, {2} {1}, {2} ના {0} ને અપડેટ કરી રહ્યું છે
3595 Upload file ફાઈલ અપલોડ કરો
3696 Disabled અક્ષમ
3697 Doctype Doctype
3698 Download Template ડાઉનલોડ નમૂનો
Dr ડૉ
3699 Due Date નિયત તારીખ
3700 Duplicate ડુપ્લિકેટ
3701 Edit Profile પ્રોફાઇલ સંપાદિત કરો
3702 Email ઇમેઇલ
End Time અંત સમય
3703 Enter Value કિંમત દાખલ
3704 Entity Type અસ્તિત્વ પ્રકાર
3705 Error ભૂલ
3706 Expired સમાપ્ત
3707 Export નિકાસ
3708 Export not allowed. You need {0} role to export. નિકાસ મંજૂરી નથી. તમે નિકાસ કરવા {0} ભૂમિકા જરૂર છે.
Fetching... લાવી રહ્યું છે ...
3709 Field ક્ષેત્ર
3710 File Manager ફાઇલ વ્યવસ્થાપક
3711 Filters ગાળકો
3720 In Progress પ્રગતિમાં
3721 Intermediate વચગાળાના
3722 Invite as User વપરાશકર્તા તરીકે આમંત્રણ આપો
It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account. એવું લાગે છે કે સર્વરની પટ્ટી ગોઠવણી સાથે સમસ્યા છે. નિષ્ફળતાના કિસ્સામાં, રકમ તમારા એકાઉન્ટમાં પરત કરાશે.
3723 Loading... લોડ કરી રહ્યું છે ...
3724 Location સ્થાન
Looks like someone sent you to an incomplete URL. Please ask them to look into it. જેમ કોઈને એક અપૂર્ણ URL પર તમે મોકલી જુએ છે. તેમને તે તપાસ કરવા માટે પૂછો.
Master માસ્ટર
3725 Message સંદેશ
3726 Missing Values Required ગુમ કિંમતો જરૂરી
3727 Mobile No મોબાઈલ નં
3733 Offline ઑફલાઇન
3734 Open ઓપન
3735 Page {0} of {1} પેજમાં {0} ના {1}
Pay પે
3736 Pending બાકી
3737 Phone ફોન
3738 Please click on the following link to set your new password તમારો નવો પાસવર્ડ સુયોજિત કરવા માટે નીચેની લિંક પર ક્લિક કરો
3782 Year વર્ષ
3783 Yearly વાર્ષિક
3784 You તમે
You can also copy-paste this link in your browser તમે પણ તમારા બ્રાઉઝરમાં આ લિંક કોપી પેસ્ટ કરી શકો છો
3785 and અને
3786 {0} Name {0} નામ
3787 {0} is required {0} જરૂરી છે
4085 Navbar નવબાર
4086 Source Message સ્રોત સંદેશ
4087 Translated Message ભાષાંતર સંદેશ
Verified By દ્વારા ચકાસવામાં
4088 Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand. આ કન્સોલનો ઉપયોગ કરવાથી હુમલાખોરો તમારી ersોંગ અને તમારી માહિતી ચોરી શકે છે. તમે સમજી શકતા નથી તે કોડ દાખલ કરો અથવા પેસ્ટ કરો નહીં.
4089 {0} m . 0} મી
4090 {0} h {0} એચ
4117 {0} is not a valid Name {0 a એ માન્ય નામ નથી
4118 Your system is being updated. Please refresh again after a few moments. તમારી સિસ્ટમ અપડેટ થઈ રહી છે. કૃપા કરીને થોડી વાર પછી ફરીથી તાજું કરો.
4119 {0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first. {0} {1}: સબમિટ કરેલો રેકોર્ડ કા beી શકાતો નથી. તમારે પહેલા તેને {2} રદ કરવું જોઈએ} 3 must.
Invalid naming series (. missing) for {0} {0 for માટે અમાન્ય નામકરણ શ્રેણી (. ગુમ)
4120 Error has occurred in {0} ભૂલ {0 in માં આવી છે
4121 Status Updated સ્થિતિ અપડેટ થઈ
4122 You can also copy-paste this {0} to your browser તમે તમારા બ્રાઉઝર પર આ {0 copy ની ક copyપિ પેસ્ટ પણ કરી શકો છો
4138 Address And Contacts સરનામું અને સંપર્કો
4139 Lead Conversion Time લીડ કન્વર્ઝન સમય
4140 Due Date Based On નિયત તારીખ આધારિત
Phone Number ફોન નંબર
4141 Linked Documents લિંક કરેલા દસ્તાવેજો
Account SID એકાઉન્ટ એસ.આઇ.ડી.
4142 Steps પગલાં
4143 email ઇમેઇલ
4144 Component પુન
4145 Subtitle ઉપશીર્ષક
Global Defaults વૈશ્વિક ડિફૉલ્ટ્સ
4146 Prefix પૂર્વગ
4147 Is Public જાહેર છે
4148 This chart will be available to all Users if this is set જો આ સેટ કરેલું હોય તો આ ચાર્ટ બધા વપરાશકર્તાઓ માટે ઉપલબ્ધ રહેશે
4329 Please create Card first કૃપા કરીને પ્રથમ કાર્ડ બનાવો
4330 Onboarding Permission ઓનબોર્ડિંગ પરવાનગી
4331 Onboarding Step ઓનબોર્ડિંગ સ્ટેપ
Is Mandatory ફરજિયાત છે
4332 Is Skipped છોડ્યું છે
4333 Create Entry એન્ટ્રી બનાવો
4334 Update Settings સેટિંગ્સ અપડેટ કરો
4366 Send Attachments જોડાણો મોકલો
4367 Testing પરીક્ષણ
4368 System Notification સિસ્ટમ સૂચન
WhatsApp વોટ્સેપ
4369 Twilio Number ટ્વાલીયો નંબર
4370 To use WhatsApp for Business, initialize <a href="#Form/Twilio Settings">Twilio Settings</a>. વ્યવસાય માટે WhatsApp નો ઉપયોગ કરવા માટે, <a href="#Form/Twilio Settings">ટ્વાલીયો સેટિંગ્સ</a> પ્રારંભ કરો.
4371 To use Slack Channel, add a <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook URL</a>. સ્લેક ચેનલનો ઉપયોગ કરવા માટે, <a href="#List/Slack%20Webhook%20URL/List">સ્લેક વેબહૂક URL</a> ઉમેરો.
4500 {0} are currently {1} {0 currently હાલમાં {1} છે
4501 Currently Replying હાલમાં જવાબ
4502 created {0} created 0 created બનાવ્યું
Make a call કોલ કરો
4503 Change બદલો Coins
4504 Too Many Requests ઘણી બધી વિનંતીઓ
4505 Invalid Authorization headers, add a token with a prefix from one of the following: {0}. અમાન્ય અધિકૃત મથાળાઓ, નીચેનામાંથી એકમાંથી ઉપસર્ગ સાથે એક ટોકન ઉમેરો: {0}.
4664 Negative Value નકારાત્મક મૂલ્ય
4665 Authentication failed while receiving emails from Email Account: {0}. ઇમેઇલ એકાઉન્ટથી ઇમેઇલ્સ પ્રાપ્ત કરતી વખતે પ્રમાણીકરણ નિષ્ફળ થયું: {0}.
4666 Message from server: {0} સર્વરનો સંદેશ: {0}
4667 Add Row પંક્તિ ઉમેરો
4668 Analytics ઍનલિટિક્સ
4669 Anonymous અનામિક
4670 Author લેખક
4671 Basic મૂળભૂત
4672 Billing બિલિંગ
4673 Contact Details સંપર્ક વિગતો
4674 Datetime તારીખ સમય
4675 Enable સક્ષમ કરો
4676 Event ઇવેન્ટ
4677 Full પૂર્ણ
4678 Insert સામેલ કરો
4679 Interests રૂચિ
4680 Language Name ભાષા નામ
4681 License લાઈસન્સ
4682 Limit મર્યાદા
4683 Log પ્રવેશ કરો
4684 Meeting બેઠક
4685 My Account મારું ખાતું
4686 Newsletters ન્યૂઝલેટર્સ
4687 Password પાસવર્ડ
4688 Pincode પીન કોડ
4689 Please select prefix first પ્રથમ ઉપસર્ગ પસંદ કરો
4690 Please set Email Address ઇમેઇલ સરનામું સેટ કૃપા કરીને
4691 Please set the series to be used. કૃપા કરી શ્રેણીનો ઉપયોગ કરવા માટે સેટ કરો
4692 Portal Settings પોર્ટલ સેટિંગ્સ
4693 Reference Owner સંદર્ભ માલિક
4694 Region પ્રદેશ
4695 Report Builder રિપોર્ટ બિલ્ડર
4696 Sample નમૂના
4697 Saved સાચવેલા
4698 Series {0} already used in {1} પહેલેથી ઉપયોગમાં સિરીઝ {0} {1}
4699 Set as Default ડિફૉલ્ટ તરીકે સેટ કરો
4700 Shipping વહાણ પરિવહન
4701 Standard સ્ટાન્ડર્ડ
4702 Test ટેસ્ટ
4703 Traceback ટ્રેસબેક
4704 Unable to find DocType {0} ડૉકટાઇપ {0} શોધવામાં અસમર્થ
4705 Weekdays અઠવાડિયાના દિવસો
4706 Workflow વર્કફ્લો
4707 You need to be logged in to access this page તમે આ પાનું ઍક્સેસ કરવા માટે લૉગ ઇન કરવાની જરૂર
4708 County કાઉન્ટી
4709 Images છબીઓ
4710 Office ઓફિસ
4711 Passive નિષ્ક્રીય
4712 Permanent કાયમી
4713 Plant પ્લાન્ટ
4714 Postal ટપાલ
4715 Previous Next અગાઉના આગળ
4716 Shop દુકાન
4717 Subsidiary સબસિડીયરી
4718 There is some problem with the file url: {0} ફાઈલ URL સાથે કેટલાક સમસ્યા છે: {0}
4719 Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0} &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; અને &quot;}}&quot; સિવાયના વિશેષ અક્ષરો નામકરણ શ્રેણીમાં મંજૂરી નથી {0}
4720 Export Type નિકાસ પ્રકાર
4721 Last Sync On છેલ્લું સમન્વયન ચાલુ કરો
4722 Webhook Secret વેબહૂક સિક્રેટ
4723 Back to Home ઘરે પાછા
4724 Customize કસ્ટમાઇઝ
4725 Edit Profile પ્રોફાઇલ સંપાદિત કરો
4726 File Manager ફાઇલ વ્યવસ્થાપક
4727 Invite as User વપરાશકર્તા તરીકે આમંત્રણ આપો
4728 Newsletter ન્યૂઝલેટર
4729 Printing પ્રિન્ટિંગ
4730 Publish પ્રકાશિત કરો
4731 Refreshing પ્રેરણાદાયક
4732 Select All બધા પસંદ કરો
4733 Set સેટ
4734 Setup Wizard સેટઅપ વિઝાર્ડ
4735 Update Details અપડેટ વિગતો
4736 You તમે
4737 {0} Name {0} નામ
4738 Bold બોલ્ડ
4739 Center કેન્દ્ર
4740 Comment ટિપ્પણી
4741 Not Found મળ્યું નથી
4742 User Id વપરાશકર્તા આઈડી
4743 Position પોઝિશન
4744 Crop પાક
4745 Topic વિષય
4746 Public Transport જાહેર પરિવહન
4747 Request Data વિનંતી ડેટા
4748 Steps પગલાં
4749 Reference DocType સંદર્ભ ડોકટાઇપ
4750 Select Transaction પસંદ ટ્રાન્ઝેક્શન
4751 Help HTML મદદ HTML
4752 Series List for this Transaction આ સોદા માટે સિરીઝ યાદી
4753 User must always select વપરાશકર્તા હંમેશા પસંદ કરવી જ પડશે
4754 Check this if you want to force the user to select a series before saving. There will be no default if you check this. તમે બચત પહેલાં શ્રેણી પસંદ કરો વપરાશકર્તા પર દબાણ કરવા માંગો છો, તો આ તપાસો. તમે આ તપાસો જો કોઈ મૂળભૂત હશે.
4755 Prefix પૂર્વગ
4756 This is the number of the last created transaction with this prefix આ ઉપસર્ગ સાથે છેલ્લા બનાવવામાં વ્યવહાર સંખ્યા છે
4757 Update Series Number સુધારા સિરીઝ સંખ્યા
4758 Validation Error માન્યતા ભૂલ
4759 Andaman and Nicobar Islands આંદામાન અને નિકોબાર આઇલેન્ડ્સ
4760 Andhra Pradesh આંધ્રપ્રદેશ
4761 Arunachal Pradesh અરુણાચલ પ્રદેશ
4762 Assam આસામ
4763 Bihar બિહાર
4764 Chandigarh ચંદીગ.
4765 Chhattisgarh છત્તીસગ.
4766 Dadra and Nagar Haveli દાદરા અને નગર હવેલી
4767 Daman and Diu દમણ અને દીવ
4768 Delhi દિલ્હી
4769 Goa ગોવા
4770 Gujarat ગુજરાત
4771 Haryana હરિયાણા
4772 Himachal Pradesh હિમાચલ પ્રદેશ
4773 Jammu and Kashmir જમ્મુ કાશ્મીર
4774 Jharkhand ઝારખંડ
4775 Karnataka કર્ણાટક
4776 Kerala કેરળ
4777 Lakshadweep Islands લક્ષદ્વીપ ટાપુઓ
4778 Madhya Pradesh મધ્યપ્રદેશ
4779 Maharashtra મહારાષ્ટ્ર
4780 Manipur મણિપુર
4781 Meghalaya મેઘાલય
4782 Mizoram મિઝોરમ
4783 Nagaland નાગાલેન્ડ
4784 Odisha ઓડિશા
4785 Other Territory અન્ય પ્રદેશ
4786 Pondicherry પોંડિચેરી
4787 Punjab પંજાબ
4788 Rajasthan રાજસ્થાન
4789 Sikkim સિક્કિમ
4790 Tamil Nadu તામિલનાડુ
4791 Telangana તેલંગાણા
4792 Tripura ત્રિપુરા
4793 Uttar Pradesh ઉત્તરપ્રદેશ
4794 Uttarakhand ઉત્તરાખંડ
4795 West Bengal પશ્ચિમ બંગાળ
4796 Published on પર પ્રકાશિત
4797 Bottom નીચે
4798 Top ટોચ

View file

@ -9,7 +9,6 @@ Action,פעולה,
Actions,פעולות,
Active,פעיל,
Add,להוסיף,
Add Comment,הוסף תגובה,
Add Row,להוסיף שורה,
Address,כתובת,
Address Line 2,שורת כתובת 2,
@ -144,7 +143,6 @@ Monday,יום שני,
Monthly,חודשי,
More,יותר,
More Information,מידע נוסף,
More...,יותר...,
Move,מהלך,
My Account,החשבון שלי,
New Address,כתובת חדשה,
@ -157,7 +155,6 @@ No items found.,לא נמצאו פריטים.,
None,אף אחד,
Not Permitted,לא מורשה,
Not active,לא פעיל,
Notes,הערות,
Number,מספר,
Online,באינטרנט,
Operation,מבצע,
@ -167,17 +164,12 @@ Owner,בעלים,
Page Missing or Moved,דף חסר או עבר,
Parameter,פרמטר,
Password,סיסמא,
Payment Gateway,תשלום Gateway,
Payment Gateway Name,שם שער התשלום,
Payments,תשלומים,
Period,תקופה,
Pincode,Pincode,
Plan Name,שם התוכנית,
Please enable pop-ups,אנא אפשר חלונות קופצים,
Please select Company,אנא בחר חברה,
Please select {0},אנא בחר {0},
Please set Email Address,אנא הגדר כתובת דוא&quot;ל,
Portal,שַׁעַר,
Portal Settings,הגדרות Portal,
Preview,תצוגה מקדימה,
Primary,עיקרי,
@ -222,7 +214,6 @@ Salutation,שְׁאֵילָה,
Sample,לדוגמא,
Saturday,יום שבת,
Saved,הציל,
Scan Barcode,סרוק ברקוד,
Scheduled,מתוכנן,
Search,חיפוש,
Secret Key,מפתח סודי,
@ -237,7 +228,6 @@ Settings,הגדרות,
Shipping,משלוח,
Short Name,שם קצר,
Slideshow,מצגת,
Some information is missing,מידע חסר,
Source,מקור,
Source Name,שם המקור,
Standard,סטנדרטי,
@ -247,7 +237,6 @@ State,מדינה,
Stopped,נעצר,
Subject,נושא,
Submit,שלח,
Successful,מוּצלָח,
Summary,סיכום,
Sunday,יום ראשון,
System Manager,מנהל מערכת,
@ -260,11 +249,9 @@ The page you are looking for is missing. This could be because it is moved or th
Timespan,טווח זמן,
To,ל,
To Date,לתאריך,
Tools,כלים,
Traceback,להתחקות,
URL,כתובת האתר,
Unsubscribed,רישום בוטל,
Use Sandbox,השתמש בארגז חול,
User,מִשׁתַמֵשׁ,
User ID,זיהוי משתמש,
Users,משתמשים,
@ -569,7 +556,6 @@ Bulk Delete,מחק בכמות גדולה,
Bulk Edit {0},עריכה בכמות גדולה {0},
Bulk Rename,שינוי שם גורף,
Bulk Update,עדכון גורף,
Busy,עסוק,
Button,לחצן,
Button Help,עזרה בכפתור,
Button Label,תווית כפתור,
@ -706,7 +692,6 @@ Compiled Successfully,נערך בהצלחה,
Complete By,שלם על ידי,
Complete Registration,רישום מלא,
Complete Setup,התקנה מלאה,
Completed By,הושלם על ידי,
Compose Email,כתוב מייל אלקטרוני,
Condition Detail,פרטי מצב,
Conditions,תנאים,
@ -1691,7 +1676,7 @@ Not a valid user,לא משתמש חוקי,
Not a zip file,לא קובץ zip,
Not allowed for {0}: {1},אסור ל {0}: {1},
"You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4}","אינך מורשה לגשת {0} כיוון שהוא מקושר ל {1} &#39;{2} &#39;בשורה {3}, שדה {4}",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},"אינך מורשה לגשת לרשומה זו {0} כיוון שהיא מקושרת ל {1} &#39;{2} &#39;בשדה {3}",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},אינך מורשה לגשת לרשומה זו {0} כיוון שהיא מקושרת ל {1} &#39;{2} &#39;בשדה {3},
Not allowed to Import,אסור לייבא,
Not allowed to change {0} after submission,אסור לשנות {0} לאחר הגשה,
Not allowed to print cancelled documents,אסור להדפיס מסמכים בוטלו,
@ -1819,7 +1804,6 @@ Path to private Key File,נתיב לקובץ מפתח פרטי,
PayPal Settings,הגדרות PayPal,
PayPal payment gateway settings,הגדרות שער התשלום של PayPal,
Payment Cancelled,התשלום בוטל,
Payment Failed,התשלום נכשל,
Payment Success,הצלחה בתשלום,
Pending Approval,ממתין לאישור,
Pending Verification,ממתין לאימות,
@ -3216,7 +3200,6 @@ Click on the link below to approve the request,לחץ על הקישור למטה
Click on the lock icon to toggle public/private,לחץ על סמל הנעילה כדי להחליף בין ציבורי / פרטי,
Click on {0} to generate Refresh Token.,לחץ על {0} כדי ליצור אסימון רענון.,
Close Condition,מצב סגור,
Column {0},עמודה {0},
Columns / Fields,עמודות / שדות,
"Configure notifications for mentions, assignments, energy points and more.","הגדר התראות להזכרות, מטלות, נקודות אנרגיה ועוד.",
Contact Email,"דוא""ל ליצירת קשר",
@ -3298,7 +3281,6 @@ Failed to create an Event Consumer or an Event Consumer for the current site is
Failure,כישלון,
Fetching default Global Search documents.,מביא מסמכי ברירת מחדל לחיפוש גלובלי.,
Fetching posts...,מאחזר פוסטים ...,
Field Mapping,מיפוי שדות,
Field To Check,שדה לבדיקה,
File Information,מידע על קבצים,
Filter By,סנן לפי,
@ -3453,7 +3435,6 @@ No posts yet,עדיין אין פוסטים,
No records will be exported,לא ייצאו רשומות,
No results found for {0} in Global Search,לא נמצאו תוצאות עבור {0} בחיפוש הגלובלי,
No user found,לא נמצא משתמש,
Not Specified,לא מוגדר,
Notification Log,יומן התראות,
Notification Settings,הגדרות התראה,
Notification Subscribed Document,מסמך רשום להודעות,
@ -3609,7 +3590,6 @@ Untitled Column,טור ללא כותרת,
Untranslated,לא מתורגם,
Upcoming Events,אירועים קרובים,
Update Existing Records,עדכן רשומות קיימות,
Update Type,סוג עדכון,
Updated To A New Version 🎉,עודכן לגרסה חדשה 🎉,
"Updating {0} of {1}, {2}","מעדכן {0} מתוך {1}, {2}",
Upload file,העלה קובץ,
@ -3716,19 +3696,16 @@ Designation,ייעוד,
Disabled,נכים,
Doctype,DOCTYPE,
Download Template,תבנית להורדה,
Dr,"ד""ר",
Due Date,תאריך יעד,
Duplicate,לשכפל,
Edit Profile,ערוך פרופיל,
Email,"דוא""ל",
End Time,שעת סיום,
Enter Value,הזן ערך,
Entity Type,סוג ישות,
Error,שגיאה,
Expired,פג תוקף,
Export,יצוא,
Export not allowed. You need {0} role to export.,יצוא אסור. אתה צריך {0} תפקיד ליצוא.,
Fetching...,מַקסִים...,
Field,שדה,
File Manager,מנהל קבצים,
Filters,מסננים,
@ -3743,11 +3720,8 @@ Import Data from CSV / Excel files.,ייבא נתונים מקבצי CSV / Excel
In Progress,בתהליך,
Intermediate,ביניים,
Invite as User,הזמן כמשתמש,
"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","נראה שיש בעיה בתצורת הפס של השרת. במקרה של כישלון, הסכום יוחזר לחשבונך.",
Loading...,Loading ...,
Location,מיקום,
Looks like someone sent you to an incomplete URL. Please ask them to look into it.,נראה שמישהו שלח אותך לכתובת אתר לא שלמה. אנא בקש מהם לבדוק את זה.,
Master,Master,
Message,הוֹדָעָה,
Missing Values Required,ערכים חסרים חובה,
Mobile No,נייד לא,
@ -3759,7 +3733,6 @@ Note,הערה,
Offline,לא מקוון,
Open,פתוח,
Page {0} of {1},דף {0} של {1},
Pay,שלם,
Pending,ממתין ל,
Phone,טלפון,
Please click on the following link to set your new password,אנא לחץ על הקישור הבא כדי להגדיר את הסיסמה החדשה שלך,
@ -3809,7 +3782,6 @@ Welcome to {0},ברוך הבא ל- {0},
Year,שנה,
Yearly,שנתי,
You,אתה,
You can also copy-paste this link in your browser,אתה יכול גם להעתיק ולהדביק את הקישור הזה בדפדפן שלך,
and,ו,
{0} Name,{0} שם,
{0} is required,{0} נדרש,
@ -4113,7 +4085,6 @@ Custom SCSS,SCSS מותאם אישית,
Navbar,Navbar,
Source Message,הודעת מקור,
Translated Message,הודעה מתורגמת,
Verified By,מאומת על ידי,
Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand.,שימוש במסוף זה עשוי לאפשר לתוקפים להתחזות אליך ולגנוב את המידע שלך. אל תזין או הדבק קוד שאינך מבין.,
{0} m,{0} מ &#39;,
{0} h,{0} ש,
@ -4146,7 +4117,6 @@ Collapse,הִתמוֹטְטוּת,
{0} is not a valid Name,{0} אינו שם חוקי,
Your system is being updated. Please refresh again after a few moments.,המערכת שלך מתעדכנת. אנא רענן שוב לאחר מספר רגעים.,
{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first.,{0} {1}: לא ניתן למחוק את הרשומה שהוגשה. תחילה עליך {2} לבטל {3}.,
Invalid naming series (. missing) for {0},סדרת שמות לא חוקית (. חסרה) עבור {0},
Error has occurred in {0},אירעה שגיאה ב- {0},
Status Updated,הסטטוס עודכן,
You can also copy-paste this {0} to your browser,תוכל גם להעתיק ולהדביק את {0} הדפדפן הזה,
@ -4168,14 +4138,11 @@ Is Billing Contact,האם איש קשר לחיוב,
Address And Contacts,כתובת ואנשי קשר,
Lead Conversion Time,זמן המרת לידים,
Due Date Based On,תאריך יעד מבוסס על,
Phone Number,מספר טלפון,
Linked Documents,מסמכים מקושרים,
Account SID,חשבון SID,
Steps,צעדים,
email,אימייל,
Component,רְכִיב,
Subtitle,כתוביות,
Global Defaults,ברירות מחדל גלובליות,
Prefix,קידומת,
Is Public,האם ציבורי,
This chart will be available to all Users if this is set,תרשים זה יהיה זמין לכל המשתמשים אם הדבר מוגדר,
@ -4362,7 +4329,6 @@ Dynamic Filters Section,מדור מסננים דינמיים,
Please create Card first,אנא צור כרטיס ראשון,
Onboarding Permission,אישור עלייה למטוס,
Onboarding Step,שלב העלייה למטוס,
Is Mandatory,זה חובה,
Is Skipped,מדלג,
Create Entry,צור כניסה,
Update Settings,עדכן הגדרות,
@ -4400,7 +4366,6 @@ Message (HTML),הודעה (HTML),
Send Attachments,שלח קבצים מצורפים,
Testing,בדיקה,
System Notification,הודעת מערכת,
WhatsApp,ווטסאפ,
Twilio Number,מספר טוויליו,
"To use WhatsApp for Business, initialize <a href=""#Form/Twilio Settings"">Twilio Settings</a>.","כדי להשתמש ב- WhatsApp לעסקים, אתחל את <a href=""#Form/Twilio Settings"">הגדרות Twilio</a> .",
"To use Slack Channel, add a <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL</a>.","כדי להשתמש בערוץ רפוי, הוסף <a href=""#List/Slack%20Webhook%20URL/List"">כתובת URL של רשת רפוי</a> .",
@ -4535,7 +4500,6 @@ Add to ToDo,הוסף ל- ToDo,
{0} are currently {1},{0} כרגע {1},
Currently Replying,עונה כעת,
created {0},נוצר {0},
Make a call,להתקשר,
Change,שינוי,Coins
Too Many Requests,יותר מדי בקשות,
"Invalid Authorization headers, add a token with a prefix from one of the following: {0}.","כותרות הרשאה לא חוקיות, הוסף אסימון עם קידומת מאחת מהדברים הבאים: {0}.",
@ -4700,3 +4664,135 @@ Value cannot be negative for {0}: {1},הערך לא יכול להיות שליל
Negative Value,ערך שלילי,
Authentication failed while receiving emails from Email Account: {0}.,האימות נכשל בעת קבלת הודעות דוא&quot;ל מחשבון הדוא&quot;ל: {0}.,
Message from server: {0},הודעה מהשרת: {0},
Add Row,להוסיף שורה,
Analytics,Analytics,
Anonymous,בעילום שם,
Author,מְחַבֵּר,
Basic,בסיסי,
Billing,חיוב,
Contact Details,פרטי,
Datetime,Datetime,
Enable,אפשר,
Event,אירוע,
Full,מלא,
Insert,הכנס,
Interests,אינטרסים,
Language Name,שם השפה,
License,רישיון,
Limit,לְהַגבִּיל,
Log,עֵץ,
Meeting,פְּגִישָׁה,
My Account,החשבון שלי,
Newsletters,ידיעונים,
Password,סיסמא,
Pincode,Pincode,
Please select prefix first,אנא בחר תחילה קידומת,
Please set Email Address,אנא הגדר כתובת דוא&quot;ל,
Please set the series to be used.,אנא הגדר את הסדרה לשימוש.,
Portal Settings,הגדרות Portal,
Reference Owner,בעלי ההפניה,
Region,אזור,
Report Builder,Report Builder,
Sample,לדוגמא,
Saved,הציל,
Series {0} already used in {1},סדרת {0} כבר בשימוש {1},
Set as Default,קבע כברירת מחדל,
Shipping,משלוח,
Standard,סטנדרטי,
Test,מבחן,
Traceback,להתחקות,
Unable to find DocType {0},לא ניתן למצוא את DocType {0},
Weekdays,ימי חול,
Workflow,זרימת עבודה,
You need to be logged in to access this page,עליך להיות מחובר בכדי לגשת לדף זה,
County,מָחוֹז,
Images,תמונות,
Office,משרד,
Passive,פסיבי,
Permanent,קבוע,
Plant,מפעל,
Postal,דואר,
Previous,קודם,
Shop,חנות,
Subsidiary,חברת בת,
There is some problem with the file url: {0},יש קצת בעיה עם כתובת אתר הקובץ: {0},
"Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}","{0} תווים מיוחדים למעט &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; ו- &quot;}}&quot; אינם מורשים בסדרות שמות",
Export Type,סוג ייצוא,
Last Sync On,הסנכרון האחרון פועל,
Webhook Secret,ווההוק סוד,
Back to Home,בחזרה לבית,
Customize,התאמה אישית של,
Edit Profile,ערוך פרופיל,
File Manager,מנהל קבצים,
Invite as User,הזמן כמשתמש,
Newsletter,עלון,
Printing,הדפסה,
Publish,לְפַרְסֵם,
Refreshing,מְרַעֲנֵן,
Select All,בחר הכל,
Set,הגדר,
Setup Wizard,אשף התקנה,
Update Details,עדכן פרטים,
You,אתה,
{0} Name,{0} שם,
Bold,נוֹעָז,
Center,מרכז,
Comment,תגובה,
Not Found,לא נמצא,
User Id,זיהוי משתמש,
Position,עמדה,
Crop,יְבוּל,
Topic,נוֹשֵׂא,
Public Transport,תחבורה ציבורית,
Request Data,בקש נתונים,
Steps,צעדים,
Reference DocType,הפניה ל- DocType,
Select Transaction,עסקה בחר,
Help HTML,העזרה HTML,
Series List for this Transaction,רשימת סדרות לעסקה זו,
User must always select,משתמש חייב תמיד לבחור,
Check this if you want to force the user to select a series before saving. There will be no default if you check this.,לבדוק את זה אם אתה רוצה להכריח את המשתמש לבחור סדרה לפני השמירה. לא יהיה ברירת מחדל אם תבדקו את זה.,
Prefix,קידומת,
This is the number of the last created transaction with this prefix,זהו המספר של העסקה יצרה האחרונה עם קידומת זו,
Update Series Number,עדכון סדרת מספר,
Validation Error,שגיאת אימות,
Andaman and Nicobar Islands,איי אנדמן וניקובר,
Andhra Pradesh,אנדרה פרדש,
Arunachal Pradesh,ארונאצ&#39;אל פראדש,
Assam,אסאם,
Bihar,ביהר,
Chandigarh,צ&#39;נדיגאר,
Chhattisgarh,צ&#39;אטיסגאר,
Dadra and Nagar Haveli,דדרה ונגר האוולי,
Daman and Diu,דמן ודיו,
Delhi,דלהי,
Goa,גואה,
Gujarat,גוג&#39;ראט,
Haryana,הריאנה,
Himachal Pradesh,הימאצ&#39;אל פראדש,
Jammu and Kashmir,ג&#39;אמו וקשמיר,
Jharkhand,ג&#39;הרקהאנד,
Karnataka,קרנטקה,
Kerala,קראלה,
Lakshadweep Islands,איי Lakshadweep,
Madhya Pradesh,Madhya Pradesh,
Maharashtra,מהרשטרה,
Manipur,מניפור,
Meghalaya,מגלאיה,
Mizoram,מיזורם,
Nagaland,נגאלנד,
Odisha,אודישה,
Other Territory,טריטוריה אחרת,
Pondicherry,פונדיצ&#39;רי,
Punjab,פונג&#39;אב,
Rajasthan,רג&#39;סטאן,
Sikkim,סיקים,
Tamil Nadu,טאמיל נאדו,
Telangana,טלנגנה,
Tripura,טריפורה,
Uttar Pradesh,אוטר פרדש,
Uttarakhand,אוטארקהאנד,
West Bengal,מערב בנגל,
Published on,פורסם ב,
Bottom,תַחתִית,
Top,חלק עליון,

1 A4 A4
9 Actions פעולות
10 Active פעיל
11 Add להוסיף
Add Comment הוסף תגובה
12 Add Row להוסיף שורה
13 Address כתובת
14 Address Line 2 שורת כתובת 2
143 Monthly חודשי
144 More יותר
145 More Information מידע נוסף
More... יותר...
146 Move מהלך
147 My Account החשבון שלי
148 New Address כתובת חדשה
155 None אף אחד
156 Not Permitted לא מורשה
157 Not active לא פעיל
Notes הערות
158 Number מספר
159 Online באינטרנט
160 Operation מבצע
164 Page Missing or Moved דף חסר או עבר
165 Parameter פרמטר
166 Password סיסמא
Payment Gateway תשלום Gateway
Payment Gateway Name שם שער התשלום
Payments תשלומים
167 Period תקופה
168 Pincode Pincode
Plan Name שם התוכנית
169 Please enable pop-ups אנא אפשר חלונות קופצים
170 Please select Company אנא בחר חברה
171 Please select {0} אנא בחר {0}
172 Please set Email Address אנא הגדר כתובת דוא&quot;ל
Portal שַׁעַר
173 Portal Settings הגדרות Portal
174 Preview תצוגה מקדימה
175 Primary עיקרי
214 Sample לדוגמא
215 Saturday יום שבת
216 Saved הציל
Scan Barcode סרוק ברקוד
217 Scheduled מתוכנן
218 Search חיפוש
219 Secret Key מפתח סודי
228 Shipping משלוח
229 Short Name שם קצר
230 Slideshow מצגת
Some information is missing מידע חסר
231 Source מקור
232 Source Name שם המקור
233 Standard סטנדרטי
237 Stopped נעצר
238 Subject נושא
239 Submit שלח
Successful מוּצלָח
240 Summary סיכום
241 Sunday יום ראשון
242 System Manager מנהל מערכת
249 Timespan טווח זמן
250 To ל
251 To Date לתאריך
Tools כלים
252 Traceback להתחקות
253 URL כתובת האתר
254 Unsubscribed רישום בוטל
Use Sandbox השתמש בארגז חול
255 User מִשׁתַמֵשׁ
256 User ID זיהוי משתמש
257 Users משתמשים
556 Bulk Edit {0} עריכה בכמות גדולה {0}
557 Bulk Rename שינוי שם גורף
558 Bulk Update עדכון גורף
Busy עסוק
559 Button לחצן
560 Button Help עזרה בכפתור
561 Button Label תווית כפתור
692 Complete By שלם על ידי
693 Complete Registration רישום מלא
694 Complete Setup התקנה מלאה
Completed By הושלם על ידי
695 Compose Email כתוב מייל אלקטרוני
696 Condition Detail פרטי מצב
697 Conditions תנאים
1676 Not a zip file לא קובץ zip
1677 Not allowed for {0}: {1} אסור ל {0}: {1}
1678 You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4} אינך מורשה לגשת {0} כיוון שהוא מקושר ל {1} &#39;{2} &#39;בשורה {3}, שדה {4}
1679 You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3} אינך מורשה לגשת לרשומה זו {0} כיוון שהיא מקושרת ל {1} &#39;{2} &#39;בשדה {3}
1680 Not allowed to Import אסור לייבא
1681 Not allowed to change {0} after submission אסור לשנות {0} לאחר הגשה
1682 Not allowed to print cancelled documents אסור להדפיס מסמכים בוטלו
1804 PayPal Settings הגדרות PayPal
1805 PayPal payment gateway settings הגדרות שער התשלום של PayPal
1806 Payment Cancelled התשלום בוטל
Payment Failed התשלום נכשל
1807 Payment Success הצלחה בתשלום
1808 Pending Approval ממתין לאישור
1809 Pending Verification ממתין לאימות
3200 Click on the lock icon to toggle public/private לחץ על סמל הנעילה כדי להחליף בין ציבורי / פרטי
3201 Click on {0} to generate Refresh Token. לחץ על {0} כדי ליצור אסימון רענון.
3202 Close Condition מצב סגור
Column {0} עמודה {0}
3203 Columns / Fields עמודות / שדות
3204 Configure notifications for mentions, assignments, energy points and more. הגדר התראות להזכרות, מטלות, נקודות אנרגיה ועוד.
3205 Contact Email דוא"ל ליצירת קשר
3281 Failure כישלון
3282 Fetching default Global Search documents. מביא מסמכי ברירת מחדל לחיפוש גלובלי.
3283 Fetching posts... מאחזר פוסטים ...
Field Mapping מיפוי שדות
3284 Field To Check שדה לבדיקה
3285 File Information מידע על קבצים
3286 Filter By סנן לפי
3435 No records will be exported לא ייצאו רשומות
3436 No results found for {0} in Global Search לא נמצאו תוצאות עבור {0} בחיפוש הגלובלי
3437 No user found לא נמצא משתמש
Not Specified לא מוגדר
3438 Notification Log יומן התראות
3439 Notification Settings הגדרות התראה
3440 Notification Subscribed Document מסמך רשום להודעות
3590 Untranslated לא מתורגם
3591 Upcoming Events אירועים קרובים
3592 Update Existing Records עדכן רשומות קיימות
Update Type סוג עדכון
3593 Updated To A New Version 🎉 עודכן לגרסה חדשה 🎉
3594 Updating {0} of {1}, {2} מעדכן {0} מתוך {1}, {2}
3595 Upload file העלה קובץ
3696 Disabled נכים
3697 Doctype DOCTYPE
3698 Download Template תבנית להורדה
Dr ד"ר
3699 Due Date תאריך יעד
3700 Duplicate לשכפל
3701 Edit Profile ערוך פרופיל
3702 Email דוא"ל
End Time שעת סיום
3703 Enter Value הזן ערך
3704 Entity Type סוג ישות
3705 Error שגיאה
3706 Expired פג תוקף
3707 Export יצוא
3708 Export not allowed. You need {0} role to export. יצוא אסור. אתה צריך {0} תפקיד ליצוא.
Fetching... מַקסִים...
3709 Field שדה
3710 File Manager מנהל קבצים
3711 Filters מסננים
3720 In Progress בתהליך
3721 Intermediate ביניים
3722 Invite as User הזמן כמשתמש
It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account. נראה שיש בעיה בתצורת הפס של השרת. במקרה של כישלון, הסכום יוחזר לחשבונך.
3723 Loading... Loading ...
3724 Location מיקום
Looks like someone sent you to an incomplete URL. Please ask them to look into it. נראה שמישהו שלח אותך לכתובת אתר לא שלמה. אנא בקש מהם לבדוק את זה.
Master Master
3725 Message הוֹדָעָה
3726 Missing Values Required ערכים חסרים חובה
3727 Mobile No נייד לא
3733 Offline לא מקוון
3734 Open פתוח
3735 Page {0} of {1} דף {0} של {1}
Pay שלם
3736 Pending ממתין ל
3737 Phone טלפון
3738 Please click on the following link to set your new password אנא לחץ על הקישור הבא כדי להגדיר את הסיסמה החדשה שלך
3782 Year שנה
3783 Yearly שנתי
3784 You אתה
You can also copy-paste this link in your browser אתה יכול גם להעתיק ולהדביק את הקישור הזה בדפדפן שלך
3785 and ו
3786 {0} Name {0} שם
3787 {0} is required {0} נדרש
4085 Navbar Navbar
4086 Source Message הודעת מקור
4087 Translated Message הודעה מתורגמת
Verified By מאומת על ידי
4088 Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand. שימוש במסוף זה עשוי לאפשר לתוקפים להתחזות אליך ולגנוב את המידע שלך. אל תזין או הדבק קוד שאינך מבין.
4089 {0} m {0} מ &#39;
4090 {0} h {0} ש
4117 {0} is not a valid Name {0} אינו שם חוקי
4118 Your system is being updated. Please refresh again after a few moments. המערכת שלך מתעדכנת. אנא רענן שוב לאחר מספר רגעים.
4119 {0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first. {0} {1}: לא ניתן למחוק את הרשומה שהוגשה. תחילה עליך {2} לבטל {3}.
Invalid naming series (. missing) for {0} סדרת שמות לא חוקית (. חסרה) עבור {0}
4120 Error has occurred in {0} אירעה שגיאה ב- {0}
4121 Status Updated הסטטוס עודכן
4122 You can also copy-paste this {0} to your browser תוכל גם להעתיק ולהדביק את {0} הדפדפן הזה
4138 Address And Contacts כתובת ואנשי קשר
4139 Lead Conversion Time זמן המרת לידים
4140 Due Date Based On תאריך יעד מבוסס על
Phone Number מספר טלפון
4141 Linked Documents מסמכים מקושרים
Account SID חשבון SID
4142 Steps צעדים
4143 email אימייל
4144 Component רְכִיב
4145 Subtitle כתוביות
Global Defaults ברירות מחדל גלובליות
4146 Prefix קידומת
4147 Is Public האם ציבורי
4148 This chart will be available to all Users if this is set תרשים זה יהיה זמין לכל המשתמשים אם הדבר מוגדר
4329 Please create Card first אנא צור כרטיס ראשון
4330 Onboarding Permission אישור עלייה למטוס
4331 Onboarding Step שלב העלייה למטוס
Is Mandatory זה חובה
4332 Is Skipped מדלג
4333 Create Entry צור כניסה
4334 Update Settings עדכן הגדרות
4366 Send Attachments שלח קבצים מצורפים
4367 Testing בדיקה
4368 System Notification הודעת מערכת
WhatsApp ווטסאפ
4369 Twilio Number מספר טוויליו
4370 To use WhatsApp for Business, initialize <a href="#Form/Twilio Settings">Twilio Settings</a>. כדי להשתמש ב- WhatsApp לעסקים, אתחל את <a href="#Form/Twilio Settings">הגדרות Twilio</a> .
4371 To use Slack Channel, add a <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook URL</a>. כדי להשתמש בערוץ רפוי, הוסף <a href="#List/Slack%20Webhook%20URL/List">כתובת URL של רשת רפוי</a> .
4500 {0} are currently {1} {0} כרגע {1}
4501 Currently Replying עונה כעת
4502 created {0} נוצר {0}
Make a call להתקשר
4503 Change שינוי Coins
4504 Too Many Requests יותר מדי בקשות
4505 Invalid Authorization headers, add a token with a prefix from one of the following: {0}. כותרות הרשאה לא חוקיות, הוסף אסימון עם קידומת מאחת מהדברים הבאים: {0}.
4664 Negative Value ערך שלילי
4665 Authentication failed while receiving emails from Email Account: {0}. האימות נכשל בעת קבלת הודעות דוא&quot;ל מחשבון הדוא&quot;ל: {0}.
4666 Message from server: {0} הודעה מהשרת: {0}
4667 Add Row להוסיף שורה
4668 Analytics Analytics
4669 Anonymous בעילום שם
4670 Author מְחַבֵּר
4671 Basic בסיסי
4672 Billing חיוב
4673 Contact Details פרטי
4674 Datetime Datetime
4675 Enable אפשר
4676 Event אירוע
4677 Full מלא
4678 Insert הכנס
4679 Interests אינטרסים
4680 Language Name שם השפה
4681 License רישיון
4682 Limit לְהַגבִּיל
4683 Log עֵץ
4684 Meeting פְּגִישָׁה
4685 My Account החשבון שלי
4686 Newsletters ידיעונים
4687 Password סיסמא
4688 Pincode Pincode
4689 Please select prefix first אנא בחר תחילה קידומת
4690 Please set Email Address אנא הגדר כתובת דוא&quot;ל
4691 Please set the series to be used. אנא הגדר את הסדרה לשימוש.
4692 Portal Settings הגדרות Portal
4693 Reference Owner בעלי ההפניה
4694 Region אזור
4695 Report Builder Report Builder
4696 Sample לדוגמא
4697 Saved הציל
4698 Series {0} already used in {1} סדרת {0} כבר בשימוש {1}
4699 Set as Default קבע כברירת מחדל
4700 Shipping משלוח
4701 Standard סטנדרטי
4702 Test מבחן
4703 Traceback להתחקות
4704 Unable to find DocType {0} לא ניתן למצוא את DocType {0}
4705 Weekdays ימי חול
4706 Workflow זרימת עבודה
4707 You need to be logged in to access this page עליך להיות מחובר בכדי לגשת לדף זה
4708 County מָחוֹז
4709 Images תמונות
4710 Office משרד
4711 Passive פסיבי
4712 Permanent קבוע
4713 Plant מפעל
4714 Postal דואר
4715 Previous קודם
4716 Shop חנות
4717 Subsidiary חברת בת
4718 There is some problem with the file url: {0} יש קצת בעיה עם כתובת אתר הקובץ: {0}
4719 Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0} {0} תווים מיוחדים למעט &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; ו- &quot;}}&quot; אינם מורשים בסדרות שמות
4720 Export Type סוג ייצוא
4721 Last Sync On הסנכרון האחרון פועל
4722 Webhook Secret ווההוק סוד
4723 Back to Home בחזרה לבית
4724 Customize התאמה אישית של
4725 Edit Profile ערוך פרופיל
4726 File Manager מנהל קבצים
4727 Invite as User הזמן כמשתמש
4728 Newsletter עלון
4729 Printing הדפסה
4730 Publish לְפַרְסֵם
4731 Refreshing מְרַעֲנֵן
4732 Select All בחר הכל
4733 Set הגדר
4734 Setup Wizard אשף התקנה
4735 Update Details עדכן פרטים
4736 You אתה
4737 {0} Name {0} שם
4738 Bold נוֹעָז
4739 Center מרכז
4740 Comment תגובה
4741 Not Found לא נמצא
4742 User Id זיהוי משתמש
4743 Position עמדה
4744 Crop יְבוּל
4745 Topic נוֹשֵׂא
4746 Public Transport תחבורה ציבורית
4747 Request Data בקש נתונים
4748 Steps צעדים
4749 Reference DocType הפניה ל- DocType
4750 Select Transaction עסקה בחר
4751 Help HTML העזרה HTML
4752 Series List for this Transaction רשימת סדרות לעסקה זו
4753 User must always select משתמש חייב תמיד לבחור
4754 Check this if you want to force the user to select a series before saving. There will be no default if you check this. לבדוק את זה אם אתה רוצה להכריח את המשתמש לבחור סדרה לפני השמירה. לא יהיה ברירת מחדל אם תבדקו את זה.
4755 Prefix קידומת
4756 This is the number of the last created transaction with this prefix זהו המספר של העסקה יצרה האחרונה עם קידומת זו
4757 Update Series Number עדכון סדרת מספר
4758 Validation Error שגיאת אימות
4759 Andaman and Nicobar Islands איי אנדמן וניקובר
4760 Andhra Pradesh אנדרה פרדש
4761 Arunachal Pradesh ארונאצ&#39;אל פראדש
4762 Assam אסאם
4763 Bihar ביהר
4764 Chandigarh צ&#39;נדיגאר
4765 Chhattisgarh צ&#39;אטיסגאר
4766 Dadra and Nagar Haveli דדרה ונגר האוולי
4767 Daman and Diu דמן ודיו
4768 Delhi דלהי
4769 Goa גואה
4770 Gujarat גוג&#39;ראט
4771 Haryana הריאנה
4772 Himachal Pradesh הימאצ&#39;אל פראדש
4773 Jammu and Kashmir ג&#39;אמו וקשמיר
4774 Jharkhand ג&#39;הרקהאנד
4775 Karnataka קרנטקה
4776 Kerala קראלה
4777 Lakshadweep Islands איי Lakshadweep
4778 Madhya Pradesh Madhya Pradesh
4779 Maharashtra מהרשטרה
4780 Manipur מניפור
4781 Meghalaya מגלאיה
4782 Mizoram מיזורם
4783 Nagaland נגאלנד
4784 Odisha אודישה
4785 Other Territory טריטוריה אחרת
4786 Pondicherry פונדיצ&#39;רי
4787 Punjab פונג&#39;אב
4788 Rajasthan רג&#39;סטאן
4789 Sikkim סיקים
4790 Tamil Nadu טאמיל נאדו
4791 Telangana טלנגנה
4792 Tripura טריפורה
4793 Uttar Pradesh אוטר פרדש
4794 Uttarakhand אוטארקהאנד
4795 West Bengal מערב בנגל
4796 Published on פורסם ב
4797 Bottom תַחתִית
4798 Top חלק עליון

View file

@ -9,7 +9,6 @@ Action,कार्रवाई,
Actions,क्रियाएँ,
Active,सक्रिय,
Add,जोड़ना,
Add Comment,टिप्पणी जोड़ें,
Add Row,लाइन जोड़ो,
Address,पता,
Address Line 2,पता पंक्ति 2,
@ -144,7 +143,6 @@ Monday,सोमवार,
Monthly,मासिक,
More,अधिक,
More Information,अधिक जानकारी,
More...,अधिक...,
Move,चाल,
My Account,मेरा खाता,
New Address,नया पता,
@ -157,7 +155,6 @@ No items found.,कुछ नहीं मिला।,
None,कोई नहीं,
Not Permitted,अनुमति नहीं,
Not active,सक्रिय नहीं,
Notes,नोट्स,
Number,संख्या,
Online,ऑनलाइन,
Operation,ऑपरेशन,
@ -167,17 +164,12 @@ Owner,स्वामी,
Page Missing or Moved,लापता या स्थानांतरित पृष्ठ,
Parameter,प्राचल,
Password,पासवर्ड,
Payment Gateway,भुगतान के लिए रास्ता,
Payment Gateway Name,भुगतान गेटवे नाम,
Payments,भुगतान,
Period,अवधि,
Pincode,Pincode,
Plan Name,योजना का नाम,
Please enable pop-ups,पॉप अप सक्षम करें,
Please select Company,कंपनी का चयन करें,
Please select {0},कृपया चुनें {0},
Please set Email Address,ई-मेल पता सेट करें,
Portal,द्वार,
Portal Settings,पोर्टल सेटिंग,
Preview,पूर्वावलोकन,
Primary,प्राथमिक,
@ -222,7 +214,6 @@ Salutation,अभिवादन,
Sample,नमूना,
Saturday,शनिवार,
Saved,सहेजा गया,
Scan Barcode,स्कैन बारकोड,
Scheduled,अनुसूचित,
Search,खोजें,
Secret Key,गुप्त कुंजी,
@ -237,7 +228,6 @@ Settings,सेटिंग्स,
Shipping,शिपिंग,
Short Name,संक्षिप्त नाम,
Slideshow,स्लाइड शो,
Some information is missing,कुछ जानकारी गायब है,
Source,स्रोत,
Source Name,स्रोत का नाम,
Standard,मानक,
@ -247,7 +237,6 @@ State,राज्य,
Stopped,रोक,
Subject,विषय,
Submit,प्रस्तुत करना,
Successful,सफल,
Summary,सारांश,
Sunday,रविवार,
System Manager,सिस्टम प्रबंधक,
@ -260,11 +249,9 @@ The page you are looking for is missing. This could be because it is moved or th
Timespan,समय अवधि,
To,सेवा मेरे,
To Date,तिथि करने के लिए,
Tools,उपकरण,
Traceback,वापस ट्रेस करें,
URL,यूआरएल,
Unsubscribed,आपकी सदस्यता समाप्त कर दी,
Use Sandbox,उपयोग सैंडबॉक्स,
User,उपयोगकर्ता,
User ID,प्रयोक्ता आईडी,
Users,उपयोगकर्ता,
@ -569,7 +556,6 @@ Bulk Delete,बल्क डिलीट करें,
Bulk Edit {0},बल्क संपादन {0},
Bulk Rename,थोक नाम बदलें,
Bulk Update,बल्क अपडेट,
Busy,व्यस्त,
Button,बटन,
Button Help,बटन की मदद,
Button Label,बटन लेबल,
@ -706,7 +692,6 @@ Compiled Successfully,सफलतापूर्वक संकलित,
Complete By,द्वारा पूरा करें,
Complete Registration,पूरा पंजीकरण,
Complete Setup,पूरा सेटअप,
Completed By,द्वारा पूरा किया गया,
Compose Email,ईमेल लिखें,
Condition Detail,स्थिति विस्तार,
Conditions,शर्तेँ,
@ -1691,7 +1676,7 @@ Not a valid user,एक मान्य उपयोगकर्ता,
Not a zip file,नहीं एक ज़िप फ़ाइल,
Not allowed for {0}: {1},{0}: {1} के लिए अनुमति नहीं है,
"You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4}","{0} के लिए आपको अनुमति नहीं है क्योंकि यह लिंक किया गया है {1} '{2}' पंक्ति {3}, फ़ील्ड {4}",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},"आप इस {0} रिकॉर्ड के लिए अनुमति नहीं है क्योंकि यह लिंक किया गया है {1} '{2}' फ़ील्ड {3}",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},आप इस {0} रिकॉर्ड के लिए अनुमति नहीं है क्योंकि यह लिंक किया गया है {1} '{2}' फ़ील्ड {3},
Not allowed to Import,आयात की अनुमति नहीं,
Not allowed to change {0} after submission,प्रस्तुत करने के बाद {0} बदलने की अनुमति नहीं,
Not allowed to print cancelled documents,रद्द दस्तावेज़ मुद्रित करने की अनुमति नहीं,
@ -1819,7 +1804,6 @@ Path to private Key File,निजी कुंजी फ़ाइल के ल
PayPal Settings,पेपैल सेटिंग,
PayPal payment gateway settings,पेपैल भुगतान गेटवे सेटिंग्स,
Payment Cancelled,भुगतान रद्द,
Payment Failed,भुगतान असफल हुआ,
Payment Success,भुगतान की सफलता,
Pending Approval,लंबित अनुमोदन,
Pending Verification,लंबित सत्यापन,
@ -3216,7 +3200,6 @@ Click on the link below to approve the request,अनुरोध को अन
Click on the lock icon to toggle public/private,सार्वजनिक / निजी को चालू करने के लिए लॉक आइकन पर क्लिक करें,
Click on {0} to generate Refresh Token.,ताज़ा टोकन को जेनरेट करने के लिए {0} पर क्लिक करें।,
Close Condition,बंद हालत,
Column {0},कॉलम {0},
Columns / Fields,कॉलम / फ़ील्ड्स,
"Configure notifications for mentions, assignments, energy points and more.","उल्लेख, असाइनमेंट, ऊर्जा बिंदु और अधिक के लिए सूचनाएं कॉन्फ़िगर करें।",
Contact Email,संपर्क ईमेल,
@ -3298,7 +3281,6 @@ Failed to create an Event Consumer or an Event Consumer for the current site is
Failure,असफलता,
Fetching default Global Search documents.,डिफ़ॉल्ट वैश्विक खोज दस्तावेज़ ला रहा है।,
Fetching posts...,पोस्ट लाए जा रहे हैं ...,
Field Mapping,फील्ड मैपिंग,
Field To Check,जाँच करने के लिए फ़ील्ड,
File Information,फ़ाइल जानकारी,
Filter By,के द्वारा छनित,
@ -3453,7 +3435,6 @@ No posts yet,अब तक कोई पोस्ट नहीं,
No records will be exported,कोई रिकॉर्ड निर्यात नहीं किया जाएगा,
No results found for {0} in Global Search,ग्लोबल खोज में {0} के लिए कोई परिणाम नहीं मिला,
No user found,कोई उपयोगकर्ता नहीं मिला,
Not Specified,निर्दिष्ट नहीं है,
Notification Log,अधिसूचना लॉग,
Notification Settings,अधिसूचना सेटिंग,
Notification Subscribed Document,अधिसूचना सब्स्क्राइब्ड दस्तावेज,
@ -3609,7 +3590,6 @@ Untitled Column,शीर्षक रहित कॉलम,
Untranslated,अनुवाद नहीं,
Upcoming Events,आगामी कार्यक्रम,
Update Existing Records,मौजूदा रिकॉर्ड अपडेट करें,
Update Type,अद्यतन प्रकार,
Updated To A New Version 🎉,एक नए संस्करण के लिए अद्यतन 🎉,
"Updating {0} of {1}, {2}","{1} के {0} को अपडेट करना, {2}",
Upload file,दस्तावेज अपलोड करें,
@ -3716,19 +3696,16 @@ Designation,पदनाम,
Disabled,विकलांग,
Doctype,Doctype,
Download Template,टेम्पलेट डाउनलोड करें,
Dr,डा,
Due Date,नियत तारीख,
Duplicate,डुप्लिकेट,
Edit Profile,प्रोफ़ाइल संपादित करें,
Email,ईमेल,
End Time,अंतिम समय,
Enter Value,मान दर्ज,
Entity Type,इकाई प्रकार,
Error,त्रुटि,
Expired,समय सीमा समाप्त,
Export,निर्यात,
Export not allowed. You need {0} role to export.,निर्यात की अनुमति नहीं . आप निर्यात करने के लिए {0} भूमिका की जरूरत है.,
Fetching...,ला रहा है ...,
Field,खेत,
File Manager,फ़ाइल प्रबंधक,
Filters,फिल्टर,
@ -3743,11 +3720,8 @@ Import Data from CSV / Excel files.,CSV / Excel फ़ाइलों से ड
In Progress,चालू,
Intermediate,मध्यम,
Invite as User,उपयोगकर्ता के रूप में आमंत्रित,
"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","ऐसा लगता है कि सर्वर की पट्टी विन्यास के साथ कोई समस्या है। विफलता के मामले में, राशि आपके खाते में वापस कर दी जाएगी।",
Loading...,लोड हो रहा है ...,
Location,स्थान,
Looks like someone sent you to an incomplete URL. Please ask them to look into it.,जैसे किसी ने एक अधूरी यूआरएल के लिए भेजा लग रहा है। उन्हें इस पर गौर करने के लिए कहें।,
Master,मास्टर,
Message,संदेश,
Missing Values Required,आवश्यक लापता मूल्यों,
Mobile No,नहीं मोबाइल,
@ -3759,7 +3733,6 @@ Note,नोट,
Offline,ऑफलाइन,
Open,खुला,
Page {0} of {1},पृष्ठ {0} {1},
Pay,वेतन,
Pending,अपूर्ण,
Phone,फ़ोन,
Please click on the following link to set your new password,अपना नया पासवर्ड सेट करने के लिए नीचे दिए गए लिंक पर क्लिक करें,
@ -3809,7 +3782,6 @@ Welcome to {0},में आपका स्वागत है {0},
Year,वर्ष,
Yearly,वार्षिक,
You,तुमने,
You can also copy-paste this link in your browser,आप भी इस लिंक को अपने ब्राउज़र में कॉपी-पेस्ट कर सकते है।,
and,और,
{0} Name,{0} नाम,
{0} is required,{0} के लिए आवश्यक है,
@ -4113,7 +4085,6 @@ Custom SCSS,कस्टम SCSS,
Navbar,नेवबार,
Source Message,स्रोत संदेश,
Translated Message,अनूदित संदेश,
Verified By,द्वारा सत्यापित,
Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand.,इस कंसोल का उपयोग हमलावरों को आपकी प्रतिरूपण करने और आपकी जानकारी को चोरी करने की अनुमति दे सकता है। उस कोड को दर्ज या पेस्ट न करें जिसे आप नहीं समझते हैं।,
{0} m,{0} मी,
{0} h,{0} एच,
@ -4146,7 +4117,6 @@ Collapse,ढहने,
{0} is not a valid Name,{0} मान्य नाम नहीं है,
Your system is being updated. Please refresh again after a few moments.,आपका सिस्टम अपडेट किया जा रहा है। कृपया कुछ क्षणों के बाद फिर से ताज़ा करें।,
{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first.,{0} {1}: प्रस्तुत रिकॉर्ड हटाया नहीं जा सकता। आपको पहले {2} रद्द करना होगा {3}।,
Invalid naming series (. missing) for {0},{0} के लिए अमान्य नामकरण श्रृंखला (गुम है),
Error has occurred in {0},{0} में त्रुटि आई है,
Status Updated,स्थिति अद्यतन,
You can also copy-paste this {0} to your browser,आप इस {0} को अपने ब्राउज़र में कॉपी-पेस्ट भी कर सकते हैं,
@ -4168,14 +4138,11 @@ Is Billing Contact,बिलिंग संपर्क है,
Address And Contacts,पता और संपर्क,
Lead Conversion Time,लीड रूपांतरण समय,
Due Date Based On,नियत दिनांक के आधार पर,
Phone Number,फ़ोन नंबर,
Linked Documents,लिंक किए गए दस्तावेज़,
Account SID,खाता एसआईडी,
Steps,कदम,
email,ईमेल,
Component,अंग,
Subtitle,उपशीर्षक,
Global Defaults,वैश्विक मूलभूत,
Prefix,उपसर्ग,
Is Public,सार्वजनिक है,
This chart will be available to all Users if this is set,यदि यह सेट है तो यह चार्ट सभी उपयोगकर्ताओं के लिए उपलब्ध होगा,
@ -4362,7 +4329,6 @@ Dynamic Filters Section,डायनामिक फिल्टर सेक्
Please create Card first,कृपया पहले कार्ड बनाएं,
Onboarding Permission,ऑनबोर्डिंग अनुमति,
Onboarding Step,जहाज पर कदम,
Is Mandatory,अनिवार्य है,
Is Skipped,छोड़ दिया जाता है,
Create Entry,प्रवेश बनाएँ,
Update Settings,सेटिंग अपडेट करें,
@ -4400,7 +4366,6 @@ Message (HTML),संदेश (HTML),
Send Attachments,अनुलग्नक भेजें,
Testing,परिक्षण,
System Notification,सिस्टम अधिसूचना,
WhatsApp,WhatsApp,
Twilio Number,ट्विलियो नंबर,
"To use WhatsApp for Business, initialize <a href=""#Form/Twilio Settings"">Twilio Settings</a>.","व्यवसाय के लिए व्हाट्सएप का उपयोग करने के लिए, <a href=""#Form/Twilio Settings"">ट्विलियो सेटिंग्स को</a> इनिशियलाइज़ करें।",
"To use Slack Channel, add a <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL</a>.","स्लैक चैनल का उपयोग करने के लिए, <a href=""#List/Slack%20Webhook%20URL/List"">स्लैक वेबहूक URL</a> जोड़ें।",
@ -4535,7 +4500,6 @@ Add to ToDo,ToDo में जोड़ें,
{0} are currently {1},{0} वर्तमान में {1} हैं,
Currently Replying,वर्तमान में उत्तर दे रहा है,
created {0},बनाया गया {0},
Make a call,कॉल करें,
Change,परिवर्तन,Coins
Too Many Requests,बहुत सारे अनुरोध,
"Invalid Authorization headers, add a token with a prefix from one of the following: {0}.","अमान्य प्राधिकरण शीर्षलेख, निम्न में से एक से एक उपसर्ग के साथ एक टोकन जोड़ें: {0}।",
@ -4700,3 +4664,135 @@ Value cannot be negative for {0}: {1},मान {0}: {1} के लिए ऋण
Negative Value,ऋणात्मक मान,
Authentication failed while receiving emails from Email Account: {0}.,ईमेल खाते से ईमेल प्राप्त करते समय प्रमाणीकरण विफल रहा: {0}।,
Message from server: {0},सर्वर से संदेश: {0},
Add Row,लाइन जोड़ो,
Analytics,एनालिटिक्स,
Anonymous,गुमनाम,
Author,लेखक,
Basic,बुनियादी,
Billing,बिलिंग,
Contact Details,जानकारी के लिए संपर्क,
Datetime,Datetime,
Enable,सक्षम,
Event,घटना,
Full,पूर्ण,
Insert,सम्मिलित करें,
Interests,रूचियाँ,
Language Name,भाषा का नाम,
License,लाइसेंस,
Limit,हद,
Log,लॉग,
Meeting,मुलाकात,
My Account,मेरा खाता,
Newsletters,समाचारपत्रिकाएँ,
Password,पासवर्ड,
Pincode,Pincode,
Please select prefix first,पहले उपसर्ग का चयन करें,
Please set Email Address,ई-मेल पता सेट करें,
Please set the series to be used.,कृपया उपयोग की जाने वाली श्रृंखला सेट करें,
Portal Settings,पोर्टल सेटिंग,
Reference Owner,संदर्भ मालिक,
Region,प्रदेश,
Report Builder,रिपोर्ट बिल्डर,
Sample,नमूना,
Saved,सहेजा गया,
Series {0} already used in {1},सीरीज {0} पहले से ही प्रयोग किया जाता में {1},
Set as Default,डिफ़ॉल्ट रूप में सेट करें,
Shipping,शिपिंग,
Standard,मानक,
Test,परीक्षण,
Traceback,वापस ट्रेस करें,
Unable to find DocType {0},डॉकटाइप खोज में असमर्थ {0},
Weekdays,काम करने के दिन,
Workflow,कार्यप्रवाह,
You need to be logged in to access this page,आप इस पेज को उपयोग में लॉग इन करने की आवश्यकता,
County,काउंटी,
Images,इमेजिस,
Office,कार्यालय,
Passive,निष्क्रिय,
Permanent,स्थायी,
Plant,पौधा,
Postal,डाक का,
Previous,पिछला,
Shop,दुकान,
Subsidiary,सहायक,
There is some problem with the file url: {0},फ़ाइल यूआरएल के साथ कुछ समस्या है: {0},
"Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}","&quot;-&quot;, &quot;#&quot;, &quot;।&quot;, &quot;/&quot;, &quot;{{&quot; और &quot;}}&quot; को छोड़कर विशेष वर्ण श्रृंखला {0} में अनुमति नहीं है",
Export Type,निर्यात प्रकार,
Last Sync On,अंतिम सिंक ऑन,
Webhook Secret,वेबहूक सीक्रेट,
Back to Home,घर वापिस जा रहा हूँ,
Customize,को मनपसंद,
Edit Profile,प्रोफ़ाइल संपादित करें,
File Manager,फ़ाइल प्रबंधक,
Invite as User,उपयोगकर्ता के रूप में आमंत्रित,
Newsletter,न्यूज़लैटर,
Printing,मुद्रण,
Publish,प्रकाशित करना,
Refreshing,ताज़ा किया जा रहा,
Select All,सभी का चयन,
Set,समूह,
Setup Wizard,सेटअप विज़ार्ड,
Update Details,अद्यतन विवरण,
You,तुमने,
{0} Name,{0} नाम,
Bold,साहसिक,
Center,केंद्र,
Comment,टिप्पणी,
Not Found,नहीं मिला,
User Id,यूज़र आईडी,
Position,पद,
Crop,फ़सल,
Topic,विषय,
Public Transport,सार्वजनिक परिवाहन,
Request Data,अनुरोध डेटा,
Steps,कदम,
Reference DocType,संदर्भ DocType,
Select Transaction,लेन - देन का चयन करें,
Help HTML,HTML मदद,
Series List for this Transaction,इस लेन - देन के लिए सीरीज सूची,
User must always select,उपयोगकर्ता हमेशा का चयन करना होगा,
Check this if you want to force the user to select a series before saving. There will be no default if you check this.,यह जाँच लें कि आप उपयोगकर्ता बचत से पहले एक श्रृंखला का चयन करने के लिए मजबूर करना चाहते हैं. कोई डिफ़ॉल्ट हो सकता है अगर आप इस जाँच करेगा.,
Prefix,उपसर्ग,
This is the number of the last created transaction with this prefix,यह इस उपसर्ग के साथ पिछले बनाई गई लेन - देन की संख्या,
Update Series Number,अद्यतन सीरीज नंबर,
Validation Error,मान्यता त्रुटि,
Andaman and Nicobar Islands,अंडमान व नोकोबार द्वीप समूह,
Andhra Pradesh,आंध्र प्रदेश,
Arunachal Pradesh,अरुणाचल प्रदेश,
Assam,असम,
Bihar,बिहार,
Chandigarh,चंडीगढ़,
Chhattisgarh,छत्तीसगढ़,
Dadra and Nagar Haveli,दादरा और नगर हवेली,
Daman and Diu,दमन और दीव,
Delhi,दिल्ली,
Goa,गोवा,
Gujarat,गुजरात,
Haryana,हरियाणा,
Himachal Pradesh,हिमाचल प्रदेश,
Jammu and Kashmir,जम्मू और कश्मीर,
Jharkhand,झारखंड,
Karnataka,कर्नाटक,
Kerala,केरल,
Lakshadweep Islands,लक्षद्वीप द्वीपसमूह,
Madhya Pradesh,मध्य प्रदेश,
Maharashtra,महाराष्ट्र,
Manipur,मणिपुर,
Meghalaya,मेघालय,
Mizoram,मिजोरम,
Nagaland,नगालैंड,
Odisha,ओडिशा,
Other Territory,अन्य क्षेत्र,
Pondicherry,पांडिचेरी,
Punjab,पंजाब,
Rajasthan,राजस्थान Rajasthan,
Sikkim,सिक्किम,
Tamil Nadu,तमिलनाडु,
Telangana,तेलंगाना,
Tripura,त्रिपुरा,
Uttar Pradesh,उत्तर प्रदेश,
Uttarakhand,उत्तराखंड,
West Bengal,पश्चिम बंगाल,
Published on,पर प्रकाशित,
Bottom,तल,
Top,ऊपर,

1 A4 A4
9 Actions क्रियाएँ
10 Active सक्रिय
11 Add जोड़ना
Add Comment टिप्पणी जोड़ें
12 Add Row लाइन जोड़ो
13 Address पता
14 Address Line 2 पता पंक्ति 2
143 Monthly मासिक
144 More अधिक
145 More Information अधिक जानकारी
More... अधिक...
146 Move चाल
147 My Account मेरा खाता
148 New Address नया पता
155 None कोई नहीं
156 Not Permitted अनुमति नहीं
157 Not active सक्रिय नहीं
Notes नोट्स
158 Number संख्या
159 Online ऑनलाइन
160 Operation ऑपरेशन
164 Page Missing or Moved लापता या स्थानांतरित पृष्ठ
165 Parameter प्राचल
166 Password पासवर्ड
Payment Gateway भुगतान के लिए रास्ता
Payment Gateway Name भुगतान गेटवे नाम
Payments भुगतान
167 Period अवधि
168 Pincode Pincode
Plan Name योजना का नाम
169 Please enable pop-ups पॉप अप सक्षम करें
170 Please select Company कंपनी का चयन करें
171 Please select {0} कृपया चुनें {0}
172 Please set Email Address ई-मेल पता सेट करें
Portal द्वार
173 Portal Settings पोर्टल सेटिंग
174 Preview पूर्वावलोकन
175 Primary प्राथमिक
214 Sample नमूना
215 Saturday शनिवार
216 Saved सहेजा गया
Scan Barcode स्कैन बारकोड
217 Scheduled अनुसूचित
218 Search खोजें
219 Secret Key गुप्त कुंजी
228 Shipping शिपिंग
229 Short Name संक्षिप्त नाम
230 Slideshow स्लाइड शो
Some information is missing कुछ जानकारी गायब है
231 Source स्रोत
232 Source Name स्रोत का नाम
233 Standard मानक
237 Stopped रोक
238 Subject विषय
239 Submit प्रस्तुत करना
Successful सफल
240 Summary सारांश
241 Sunday रविवार
242 System Manager सिस्टम प्रबंधक
249 Timespan समय अवधि
250 To सेवा मेरे
251 To Date तिथि करने के लिए
Tools उपकरण
252 Traceback वापस ट्रेस करें
253 URL यूआरएल
254 Unsubscribed आपकी सदस्यता समाप्त कर दी
Use Sandbox उपयोग सैंडबॉक्स
255 User उपयोगकर्ता
256 User ID प्रयोक्ता आईडी
257 Users उपयोगकर्ता
556 Bulk Edit {0} बल्क संपादन {0}
557 Bulk Rename थोक नाम बदलें
558 Bulk Update बल्क अपडेट
Busy व्यस्त
559 Button बटन
560 Button Help बटन की मदद
561 Button Label बटन लेबल
692 Complete By द्वारा पूरा करें
693 Complete Registration पूरा पंजीकरण
694 Complete Setup पूरा सेटअप
Completed By द्वारा पूरा किया गया
695 Compose Email ईमेल लिखें
696 Condition Detail स्थिति विस्तार
697 Conditions शर्तेँ
1676 Not a zip file नहीं एक ज़िप फ़ाइल
1677 Not allowed for {0}: {1} {0}: {1} के लिए अनुमति नहीं है
1678 You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4} {0} के लिए आपको अनुमति नहीं है क्योंकि यह लिंक किया गया है {1} '{2}' पंक्ति {3}, फ़ील्ड {4}
1679 You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3} आप इस {0} रिकॉर्ड के लिए अनुमति नहीं है क्योंकि यह लिंक किया गया है {1} '{2}' फ़ील्ड {3}
1680 Not allowed to Import आयात की अनुमति नहीं
1681 Not allowed to change {0} after submission प्रस्तुत करने के बाद {0} बदलने की अनुमति नहीं
1682 Not allowed to print cancelled documents रद्द दस्तावेज़ मुद्रित करने की अनुमति नहीं
1804 PayPal Settings पेपैल सेटिंग
1805 PayPal payment gateway settings पेपैल भुगतान गेटवे सेटिंग्स
1806 Payment Cancelled भुगतान रद्द
Payment Failed भुगतान असफल हुआ
1807 Payment Success भुगतान की सफलता
1808 Pending Approval लंबित अनुमोदन
1809 Pending Verification लंबित सत्यापन
3200 Click on the lock icon to toggle public/private सार्वजनिक / निजी को चालू करने के लिए लॉक आइकन पर क्लिक करें
3201 Click on {0} to generate Refresh Token. ताज़ा टोकन को जेनरेट करने के लिए {0} पर क्लिक करें।
3202 Close Condition बंद हालत
Column {0} कॉलम {0}
3203 Columns / Fields कॉलम / फ़ील्ड्स
3204 Configure notifications for mentions, assignments, energy points and more. उल्लेख, असाइनमेंट, ऊर्जा बिंदु और अधिक के लिए सूचनाएं कॉन्फ़िगर करें।
3205 Contact Email संपर्क ईमेल
3281 Failure असफलता
3282 Fetching default Global Search documents. डिफ़ॉल्ट वैश्विक खोज दस्तावेज़ ला रहा है।
3283 Fetching posts... पोस्ट लाए जा रहे हैं ...
Field Mapping फील्ड मैपिंग
3284 Field To Check जाँच करने के लिए फ़ील्ड
3285 File Information फ़ाइल जानकारी
3286 Filter By के द्वारा छनित
3435 No records will be exported कोई रिकॉर्ड निर्यात नहीं किया जाएगा
3436 No results found for {0} in Global Search ग्लोबल खोज में {0} के लिए कोई परिणाम नहीं मिला
3437 No user found कोई उपयोगकर्ता नहीं मिला
Not Specified निर्दिष्ट नहीं है
3438 Notification Log अधिसूचना लॉग
3439 Notification Settings अधिसूचना सेटिंग
3440 Notification Subscribed Document अधिसूचना सब्स्क्राइब्ड दस्तावेज
3590 Untranslated अनुवाद नहीं
3591 Upcoming Events आगामी कार्यक्रम
3592 Update Existing Records मौजूदा रिकॉर्ड अपडेट करें
Update Type अद्यतन प्रकार
3593 Updated To A New Version 🎉 एक नए संस्करण के लिए अद्यतन 🎉
3594 Updating {0} of {1}, {2} {1} के {0} को अपडेट करना, {2}
3595 Upload file दस्तावेज अपलोड करें
3696 Disabled विकलांग
3697 Doctype Doctype
3698 Download Template टेम्पलेट डाउनलोड करें
Dr डा
3699 Due Date नियत तारीख
3700 Duplicate डुप्लिकेट
3701 Edit Profile प्रोफ़ाइल संपादित करें
3702 Email ईमेल
End Time अंतिम समय
3703 Enter Value मान दर्ज
3704 Entity Type इकाई प्रकार
3705 Error त्रुटि
3706 Expired समय सीमा समाप्त
3707 Export निर्यात
3708 Export not allowed. You need {0} role to export. निर्यात की अनुमति नहीं . आप निर्यात करने के लिए {0} भूमिका की जरूरत है.
Fetching... ला रहा है ...
3709 Field खेत
3710 File Manager फ़ाइल प्रबंधक
3711 Filters फिल्टर
3720 In Progress चालू
3721 Intermediate मध्यम
3722 Invite as User उपयोगकर्ता के रूप में आमंत्रित
It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account. ऐसा लगता है कि सर्वर की पट्टी विन्यास के साथ कोई समस्या है। विफलता के मामले में, राशि आपके खाते में वापस कर दी जाएगी।
3723 Loading... लोड हो रहा है ...
3724 Location स्थान
Looks like someone sent you to an incomplete URL. Please ask them to look into it. जैसे किसी ने एक अधूरी यूआरएल के लिए भेजा लग रहा है। उन्हें इस पर गौर करने के लिए कहें।
Master मास्टर
3725 Message संदेश
3726 Missing Values Required आवश्यक लापता मूल्यों
3727 Mobile No नहीं मोबाइल
3733 Offline ऑफलाइन
3734 Open खुला
3735 Page {0} of {1} पृष्ठ {0} {1}
Pay वेतन
3736 Pending अपूर्ण
3737 Phone फ़ोन
3738 Please click on the following link to set your new password अपना नया पासवर्ड सेट करने के लिए नीचे दिए गए लिंक पर क्लिक करें
3782 Year वर्ष
3783 Yearly वार्षिक
3784 You तुमने
You can also copy-paste this link in your browser आप भी इस लिंक को अपने ब्राउज़र में कॉपी-पेस्ट कर सकते है।
3785 and और
3786 {0} Name {0} नाम
3787 {0} is required {0} के लिए आवश्यक है
4085 Navbar नेवबार
4086 Source Message स्रोत संदेश
4087 Translated Message अनूदित संदेश
Verified By द्वारा सत्यापित
4088 Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand. इस कंसोल का उपयोग हमलावरों को आपकी प्रतिरूपण करने और आपकी जानकारी को चोरी करने की अनुमति दे सकता है। उस कोड को दर्ज या पेस्ट न करें जिसे आप नहीं समझते हैं।
4089 {0} m {0} मी
4090 {0} h {0} एच
4117 {0} is not a valid Name {0} मान्य नाम नहीं है
4118 Your system is being updated. Please refresh again after a few moments. आपका सिस्टम अपडेट किया जा रहा है। कृपया कुछ क्षणों के बाद फिर से ताज़ा करें।
4119 {0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first. {0} {1}: प्रस्तुत रिकॉर्ड हटाया नहीं जा सकता। आपको पहले {2} रद्द करना होगा {3}।
Invalid naming series (. missing) for {0} {0} के लिए अमान्य नामकरण श्रृंखला (गुम है)
4120 Error has occurred in {0} {0} में त्रुटि आई है
4121 Status Updated स्थिति अद्यतन
4122 You can also copy-paste this {0} to your browser आप इस {0} को अपने ब्राउज़र में कॉपी-पेस्ट भी कर सकते हैं
4138 Address And Contacts पता और संपर्क
4139 Lead Conversion Time लीड रूपांतरण समय
4140 Due Date Based On नियत दिनांक के आधार पर
Phone Number फ़ोन नंबर
4141 Linked Documents लिंक किए गए दस्तावेज़
Account SID खाता एसआईडी
4142 Steps कदम
4143 email ईमेल
4144 Component अंग
4145 Subtitle उपशीर्षक
Global Defaults वैश्विक मूलभूत
4146 Prefix उपसर्ग
4147 Is Public सार्वजनिक है
4148 This chart will be available to all Users if this is set यदि यह सेट है तो यह चार्ट सभी उपयोगकर्ताओं के लिए उपलब्ध होगा
4329 Please create Card first कृपया पहले कार्ड बनाएं
4330 Onboarding Permission ऑनबोर्डिंग अनुमति
4331 Onboarding Step जहाज पर कदम
Is Mandatory अनिवार्य है
4332 Is Skipped छोड़ दिया जाता है
4333 Create Entry प्रवेश बनाएँ
4334 Update Settings सेटिंग अपडेट करें
4366 Send Attachments अनुलग्नक भेजें
4367 Testing परिक्षण
4368 System Notification सिस्टम अधिसूचना
WhatsApp WhatsApp
4369 Twilio Number ट्विलियो नंबर
4370 To use WhatsApp for Business, initialize <a href="#Form/Twilio Settings">Twilio Settings</a>. व्यवसाय के लिए व्हाट्सएप का उपयोग करने के लिए, <a href="#Form/Twilio Settings">ट्विलियो सेटिंग्स को</a> इनिशियलाइज़ करें।
4371 To use Slack Channel, add a <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook URL</a>. स्लैक चैनल का उपयोग करने के लिए, <a href="#List/Slack%20Webhook%20URL/List">स्लैक वेबहूक URL</a> जोड़ें।
4500 {0} are currently {1} {0} वर्तमान में {1} हैं
4501 Currently Replying वर्तमान में उत्तर दे रहा है
4502 created {0} बनाया गया {0}
Make a call कॉल करें
4503 Change परिवर्तन Coins
4504 Too Many Requests बहुत सारे अनुरोध
4505 Invalid Authorization headers, add a token with a prefix from one of the following: {0}. अमान्य प्राधिकरण शीर्षलेख, निम्न में से एक से एक उपसर्ग के साथ एक टोकन जोड़ें: {0}।
4664 Negative Value ऋणात्मक मान
4665 Authentication failed while receiving emails from Email Account: {0}. ईमेल खाते से ईमेल प्राप्त करते समय प्रमाणीकरण विफल रहा: {0}।
4666 Message from server: {0} सर्वर से संदेश: {0}
4667 Add Row लाइन जोड़ो
4668 Analytics एनालिटिक्स
4669 Anonymous गुमनाम
4670 Author लेखक
4671 Basic बुनियादी
4672 Billing बिलिंग
4673 Contact Details जानकारी के लिए संपर्क
4674 Datetime Datetime
4675 Enable सक्षम
4676 Event घटना
4677 Full पूर्ण
4678 Insert सम्मिलित करें
4679 Interests रूचियाँ
4680 Language Name भाषा का नाम
4681 License लाइसेंस
4682 Limit हद
4683 Log लॉग
4684 Meeting मुलाकात
4685 My Account मेरा खाता
4686 Newsletters समाचारपत्रिकाएँ
4687 Password पासवर्ड
4688 Pincode Pincode
4689 Please select prefix first पहले उपसर्ग का चयन करें
4690 Please set Email Address ई-मेल पता सेट करें
4691 Please set the series to be used. कृपया उपयोग की जाने वाली श्रृंखला सेट करें
4692 Portal Settings पोर्टल सेटिंग
4693 Reference Owner संदर्भ मालिक
4694 Region प्रदेश
4695 Report Builder रिपोर्ट बिल्डर
4696 Sample नमूना
4697 Saved सहेजा गया
4698 Series {0} already used in {1} सीरीज {0} पहले से ही प्रयोग किया जाता में {1}
4699 Set as Default डिफ़ॉल्ट रूप में सेट करें
4700 Shipping शिपिंग
4701 Standard मानक
4702 Test परीक्षण
4703 Traceback वापस ट्रेस करें
4704 Unable to find DocType {0} डॉकटाइप खोज में असमर्थ {0}
4705 Weekdays काम करने के दिन
4706 Workflow कार्यप्रवाह
4707 You need to be logged in to access this page आप इस पेज को उपयोग में लॉग इन करने की आवश्यकता
4708 County काउंटी
4709 Images इमेजिस
4710 Office कार्यालय
4711 Passive निष्क्रिय
4712 Permanent स्थायी
4713 Plant पौधा
4714 Postal डाक का
4715 Previous पिछला
4716 Shop दुकान
4717 Subsidiary सहायक
4718 There is some problem with the file url: {0} फ़ाइल यूआरएल के साथ कुछ समस्या है: {0}
4719 Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0} &quot;-&quot;, &quot;#&quot;, &quot;।&quot;, &quot;/&quot;, &quot;{{&quot; और &quot;}}&quot; को छोड़कर विशेष वर्ण श्रृंखला {0} में अनुमति नहीं है
4720 Export Type निर्यात प्रकार
4721 Last Sync On अंतिम सिंक ऑन
4722 Webhook Secret वेबहूक सीक्रेट
4723 Back to Home घर वापिस जा रहा हूँ
4724 Customize को मनपसंद
4725 Edit Profile प्रोफ़ाइल संपादित करें
4726 File Manager फ़ाइल प्रबंधक
4727 Invite as User उपयोगकर्ता के रूप में आमंत्रित
4728 Newsletter न्यूज़लैटर
4729 Printing मुद्रण
4730 Publish प्रकाशित करना
4731 Refreshing ताज़ा किया जा रहा
4732 Select All सभी का चयन
4733 Set समूह
4734 Setup Wizard सेटअप विज़ार्ड
4735 Update Details अद्यतन विवरण
4736 You तुमने
4737 {0} Name {0} नाम
4738 Bold साहसिक
4739 Center केंद्र
4740 Comment टिप्पणी
4741 Not Found नहीं मिला
4742 User Id यूज़र आईडी
4743 Position पद
4744 Crop फ़सल
4745 Topic विषय
4746 Public Transport सार्वजनिक परिवाहन
4747 Request Data अनुरोध डेटा
4748 Steps कदम
4749 Reference DocType संदर्भ DocType
4750 Select Transaction लेन - देन का चयन करें
4751 Help HTML HTML मदद
4752 Series List for this Transaction इस लेन - देन के लिए सीरीज सूची
4753 User must always select उपयोगकर्ता हमेशा का चयन करना होगा
4754 Check this if you want to force the user to select a series before saving. There will be no default if you check this. यह जाँच लें कि आप उपयोगकर्ता बचत से पहले एक श्रृंखला का चयन करने के लिए मजबूर करना चाहते हैं. कोई डिफ़ॉल्ट हो सकता है अगर आप इस जाँच करेगा.
4755 Prefix उपसर्ग
4756 This is the number of the last created transaction with this prefix यह इस उपसर्ग के साथ पिछले बनाई गई लेन - देन की संख्या
4757 Update Series Number अद्यतन सीरीज नंबर
4758 Validation Error मान्यता त्रुटि
4759 Andaman and Nicobar Islands अंडमान व नोकोबार द्वीप समूह
4760 Andhra Pradesh आंध्र प्रदेश
4761 Arunachal Pradesh अरुणाचल प्रदेश
4762 Assam असम
4763 Bihar बिहार
4764 Chandigarh चंडीगढ़
4765 Chhattisgarh छत्तीसगढ़
4766 Dadra and Nagar Haveli दादरा और नगर हवेली
4767 Daman and Diu दमन और दीव
4768 Delhi दिल्ली
4769 Goa गोवा
4770 Gujarat गुजरात
4771 Haryana हरियाणा
4772 Himachal Pradesh हिमाचल प्रदेश
4773 Jammu and Kashmir जम्मू और कश्मीर
4774 Jharkhand झारखंड
4775 Karnataka कर्नाटक
4776 Kerala केरल
4777 Lakshadweep Islands लक्षद्वीप द्वीपसमूह
4778 Madhya Pradesh मध्य प्रदेश
4779 Maharashtra महाराष्ट्र
4780 Manipur मणिपुर
4781 Meghalaya मेघालय
4782 Mizoram मिजोरम
4783 Nagaland नगालैंड
4784 Odisha ओडिशा
4785 Other Territory अन्य क्षेत्र
4786 Pondicherry पांडिचेरी
4787 Punjab पंजाब
4788 Rajasthan राजस्थान Rajasthan
4789 Sikkim सिक्किम
4790 Tamil Nadu तमिलनाडु
4791 Telangana तेलंगाना
4792 Tripura त्रिपुरा
4793 Uttar Pradesh उत्तर प्रदेश
4794 Uttarakhand उत्तराखंड
4795 West Bengal पश्चिम बंगाल
4796 Published on पर प्रकाशित
4797 Bottom तल
4798 Top ऊपर

View file

@ -9,7 +9,6 @@ Action,Akcija,
Actions,Akcije,
Active,Aktivan,
Add,Dodaj,
Add Comment,Dodaj komentar,
Add Row,Dodaj Row,
Address,Adresa,
Address Line 2,Adresa - linija 2,
@ -144,7 +143,6 @@ Monday,Ponedjeljak,
Monthly,Mjesečno,
More,Više,
More Information,Više informacija,
More...,Više...,
Move,Potez,
My Account,Moj Račun,
New Address,Nova adresa,
@ -157,7 +155,6 @@ No items found.,Nema pronađenih stavki.,
None,nijedan,
Not Permitted,Nije dopuštena,
Not active,Nije aktivan,
Notes,Zabilješke,
Number,Broj,
Online,Na liniji,
Operation,Operacija,
@ -167,17 +164,12 @@ Owner,vlasnik,
Page Missing or Moved,Stranica nedostaje ili je uklonjena,
Parameter,Parametar,
Password,Zaporka,
Payment Gateway,Payment Gateway,
Payment Gateway Name,Ime platnog prolaza,
Payments,Plaćanja,
Period,Razdoblje,
Pincode,Poštanski broj,
Plan Name,Naziv plana,
Please enable pop-ups,Molimo omogućite pop-up prozora,
Please select Company,Odaberite tvrtke,
Please select {0},Odaberite {0},
Please set Email Address,Molimo postavite adresu e-pošte,
Portal,Portal,
Portal Settings,Postavke portala,
Preview,pregled,
Primary,osnovni,
@ -222,7 +214,6 @@ Salutation,Pozdrav,
Sample,Uzorak,
Saturday,Subota,
Saved,Spremljeno,
Scan Barcode,Skenirajte crtični kod,
Scheduled,Planiran,
Search,Traži,
Secret Key,Tajni ključ,
@ -237,7 +228,6 @@ Settings,postavke,
Shipping,Utovar,
Short Name,Kratko Ime,
Slideshow,Slideshow,
Some information is missing,Neki podaci nedostaju,
Source,Izvor,
Source Name,source Name,
Standard,Standard,
@ -247,7 +237,6 @@ State,država,
Stopped,Zaustavljen,
Subject,Predmet,
Submit,Potvrdi,
Successful,uspješan,
Summary,Sažetak,
Sunday,Nedjelja,
System Manager,Sustav Manager,
@ -260,11 +249,9 @@ The page you are looking for is missing. This could be because it is moved or th
Timespan,Vremenski raspon,
To,Do,
To Date,Za datum,
Tools,Alati,
Traceback,Traceback,
URL,URL,
Unsubscribed,Pretplatu,
Use Sandbox,Sandbox,
User,Korisnik,
User ID,Korisnički ID,
Users,Korisnici,
@ -569,7 +556,6 @@ Bulk Delete,Skupno brisanje,
Bulk Edit {0},Skupno uređivanje {0},
Bulk Rename,Skupno preimenuj,
Bulk Update,Skupno ažuriranje,
Busy,Zaposlen,
Button,Gumb,
Button Help,Button Pomoć,
Button Label,Button Label,
@ -706,7 +692,6 @@ Compiled Successfully,Sastavljeno uspješno,
Complete By,Kompletan Do,
Complete Registration,Kompletan Registracija,
Complete Setup,kompletan Setup,
Completed By,Završio,
Compose Email,Nova poruka,
Condition Detail,Detaljno stanje,
Conditions,Uvjeti,
@ -1691,7 +1676,7 @@ Not a valid user,To nije važeći korisnik,
Not a zip file,Nije zip datoteka,
Not allowed for {0}: {1},Nije dopušteno za {0}: {1},
"You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4}","Nije vam dopušteno pristupiti {0} jer je povezan s {1} '{2}' u redu {3}, polje {4}",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},"Nije vam dopušteno pristupiti ovom {0} zapis jer je povezan s {1} '{2}' u polju {3}",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},Nije vam dopušteno pristupiti ovom {0} zapis jer je povezan s {1} '{2}' u polju {3},
Not allowed to Import,Nije dopušteno uvoziti,
Not allowed to change {0} after submission,Nije dopušteno mijenjati {0} nakon potvrđivanja,
Not allowed to print cancelled documents,Nije dopušteno za ispis otkazan dokumenata,
@ -1819,7 +1804,6 @@ Path to private Key File,Put do privatne datoteke s ključevima,
PayPal Settings,Postavke PayPal,
PayPal payment gateway settings,PayPal postavke Payment Gateway,
Payment Cancelled,Otkazan plaćanja,
Payment Failed,Plaćanje nije uspjelo,
Payment Success,Uspjeh plaćanja,
Pending Approval,Čeka se odobrenje,
Pending Verification,Čeka se potvrda,
@ -3216,7 +3200,6 @@ Click on the link below to approve the request,Kliknite vezu u nastavku kako bis
Click on the lock icon to toggle public/private,Kliknite ikonu zaključavanja kako biste prebacili javnu / privatnu,
Click on {0} to generate Refresh Token.,Kliknite na {0} da biste generirali Osvježi token.,
Close Condition,Zatvori stanje,
Column {0},Stupac {0},
Columns / Fields,Stupci / polja,
"Configure notifications for mentions, assignments, energy points and more.","Konfigurirajte obavijesti za spomene, zadatke, energetske točke i još mnogo toga.",
Contact Email,Kontakt email,
@ -3298,7 +3281,6 @@ Failed to create an Event Consumer or an Event Consumer for the current site is
Failure,Neuspjeh,
Fetching default Global Search documents.,Dohvaćanje zadanih dokumenata Globalne pretrage.,
Fetching posts...,Dohvaćanje postova ...,
Field Mapping,Kartiranje polja,
Field To Check,Polje za provjeru,
File Information,Podaci o datoteci,
Filter By,Filtrirati po,
@ -3453,7 +3435,6 @@ No posts yet,Još nema poruka,
No records will be exported,Neće se izvesti nikakvi zapisi,
No results found for {0} in Global Search,Nema rezultata za {0} u Globalnoj pretraživanju,
No user found,Nije pronađen nijedan korisnik,
Not Specified,Nije specificirano,
Notification Log,Zapisnik obavijesti,
Notification Settings,Postavke obavijesti,
Notification Subscribed Document,Obavijest Pretplaćeni dokument,
@ -3609,7 +3590,6 @@ Untitled Column,Kolona bez naslova,
Untranslated,neprevedenih,
Upcoming Events,Nadolazeći događaji,
Update Existing Records,Ažuriranje postojećih zapisa,
Update Type,Vrsta ažuriranja,
Updated To A New Version 🎉,Ažurirano na novu verziju 🎉,
"Updating {0} of {1}, {2}","Ažuriranje {0} od {1}, {2}",
Upload file,Prijenos datoteke,
@ -3716,19 +3696,16 @@ Designation,Oznaka,
Disabled,Ugašeno,
Doctype,DOCTYPE,
Download Template,Preuzmite predložak,
Dr,Doktor,
Due Date,Datum dospijeća,
Duplicate,Duplikat,
Edit Profile,Uredi profil,
Email,E-mail,
End Time,Kraj vremena,
Enter Value,Unesite vrijednost,
Entity Type,Vrsta entiteta,
Error,Pogreška,
Expired,Istekla,
Export,Izvoz,
Export not allowed. You need {0} role to export.,Izvoz nisu dopušteni . Trebate {0} ulogu za izvoz .,
Fetching...,Preuzimanje u tijeku ...,
Field,Polje,
File Manager,Upravitelj datoteka,
Filters,Filteri,
@ -3743,11 +3720,8 @@ Import Data from CSV / Excel files.,Uvoz podataka iz CSV / Excel datoteka.,
In Progress,U nastajanju,
Intermediate,srednji,
Invite as User,Pozovi kao korisnik,
"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Čini se da postoji problem s konfiguracijom trake poslužitelja. U slučaju neuspjeha, iznos će biti vraćen na vaš račun.",
Loading...,Učitavanje ...,
Location,Lokacija,
Looks like someone sent you to an incomplete URL. Please ask them to look into it.,Izgleda da ti je netko poslao nepotpune URL. Zamolite ih gledati u nju.,
Master,Master,
Message,Poruka,
Missing Values Required,Nedostaje vrijednosti potrebne,
Mobile No,Mobitel br,
@ -3759,7 +3733,6 @@ Note,Zabilješka,
Offline,offline,
Open,Otvoreno,
Page {0} of {1},Stranica {0} od {1},
Pay,Platiti,
Pending,Na čekanju,
Phone,Telefon,
Please click on the following link to set your new password,Molimo kliknite na sljedeći link kako bi postavili novu lozinku,
@ -3809,7 +3782,6 @@ Welcome to {0},Slobodno {0},
Year,Godina,
Yearly,Godišnji,
You,Vi,
You can also copy-paste this link in your browser,Također možete kopirati ovaj link u Vaš preglednik,
and,i,
{0} Name,{0} Name,
{0} is required,{0} je potrebno,
@ -4113,7 +4085,6 @@ Custom SCSS,Prilagođeni SCSS,
Navbar,Navbar,
Source Message,Izvorna poruka,
Translated Message,Prevedena poruka,
Verified By,Ovjeren od strane,
Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand.,Korištenje ove konzole može dopustiti napadačima da se lažno predstavljaju i kradu vaše podatke. Ne unosite i ne lijepite kod koji ne razumijete.,
{0} m,{0} m,
{0} h,{0} h,
@ -4146,7 +4117,6 @@ Collapse,Kolaps,
{0} is not a valid Name,{0} nije valjano Ime,
Your system is being updated. Please refresh again after a few moments.,Vaš se sustav ažurira. Osvježite ponovo nakon nekoliko trenutaka.,
{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first.,{0} {1}: Predani zapis nije moguće izbrisati. Prvo ga morate {2} otkazati {3}.,
Invalid naming series (. missing) for {0},Nevažeća serija imenovanja (. Nedostaje) za {0},
Error has occurred in {0},Dogodila se pogreška u {0},
Status Updated,Status ažuriran,
You can also copy-paste this {0} to your browser,Možete i kopirati i zalijepiti ovo {0} u svoj preglednik,
@ -4168,14 +4138,11 @@ Is Billing Contact,Je li kontakt za naplatu,
Address And Contacts,Adresa i kontakti,
Lead Conversion Time,Vrijeme pretvorbe olova,
Due Date Based On,Datum dospijeća na temelju,
Phone Number,Broj telefona,
Linked Documents,Povezani dokumenti,
Account SID,SID računa,
Steps,Koraci,
email,e-mail,
Component,sastavni dio,
Subtitle,Titl,
Global Defaults,Globalne zadane postavke,
Prefix,Prefiks,
Is Public,Javno je,
This chart will be available to all Users if this is set,"Ako je postavljeno, ovaj će grafikon biti dostupan svim korisnicima",
@ -4362,7 +4329,6 @@ Dynamic Filters Section,Odjeljak za dinamičke filtre,
Please create Card first,Prvo stvorite karticu,
Onboarding Permission,Dopuštenje za ukrcaj,
Onboarding Step,Ulazni korak,
Is Mandatory,Je obavezno,
Is Skipped,Je preskočen,
Create Entry,Stvori unos,
Update Settings,Ažuriranje postavki,
@ -4400,7 +4366,6 @@ Message (HTML),Poruka (HTML),
Send Attachments,Pošaljite privitke,
Testing,Testiranje,
System Notification,Obavijest o sustavu,
WhatsApp,Što ima,
Twilio Number,Twilio broj,
"To use WhatsApp for Business, initialize <a href=""#Form/Twilio Settings"">Twilio Settings</a>.","Da biste koristili WhatsApp za posao, inicijalizirajte <a href=""#Form/Twilio Settings"">Twilio Settings</a> .",
"To use Slack Channel, add a <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL</a>.","Da biste koristili Slack Channel, dodajte <a href=""#List/Slack%20Webhook%20URL/List"">URL Slack Webhook-a</a> .",
@ -4535,7 +4500,6 @@ Add to ToDo,Dodaj u ToDo,
{0} are currently {1},{0} trenutno su {1},
Currently Replying,Trenutno odgovaram,
created {0},stvoreno {0},
Make a call,Uputi poziv,
Change,Promijeniti,Coins
Too Many Requests,Previše zahtjeva,
"Invalid Authorization headers, add a token with a prefix from one of the following: {0}.","Nevažeća zaglavlja autorizacije, dodajte žeton s prefiksom jednog od sljedećih: {0}.",
@ -4700,3 +4664,135 @@ Value cannot be negative for {0}: {1},Vrijednost ne može biti negativna za {0}:
Negative Value,Negativna vrijednost,
Authentication failed while receiving emails from Email Account: {0}.,Autentifikacija nije uspjela tijekom primanja e-pošte s računa e-pošte: {0}.,
Message from server: {0},Poruka s poslužitelja: {0},
Add Row,Dodaj Row,
Analytics,Analitika,
Anonymous,anoniman,
Author,Autor,
Basic,Osnovni,
Billing,Naplata,
Contact Details,Kontakt podaci,
Datetime,Datum i vrijeme,
Enable,omogućiti,
Event,Događaj,
Full,puni,
Insert,Insert,
Interests,interesi,
Language Name,Jezik Naziv,
License,licenca,
Limit,Ograničiti,
Log,Prijava,
Meeting,Sastanak,
My Account,Moj Račun,
Newsletters,Newsletteri,
Password,Zaporka,
Pincode,Poštanski broj,
Please select prefix first,Odaberite prefiks prvi,
Please set Email Address,Molimo postavite adresu e-pošte,
Please set the series to be used.,Postavite seriju koja će se koristiti.,
Portal Settings,Postavke portala,
Reference Owner,Referentni vlasnika,
Region,Regija,
Report Builder,Report Builder,
Sample,Uzorak,
Saved,Spremljeno,
Series {0} already used in {1},Serija {0} se već koristi u {1},
Set as Default,Postavi kao zadano,
Shipping,Utovar,
Standard,Standard,
Test,Test,
Traceback,Traceback,
Unable to find DocType {0},Nije moguće pronaći DocType {0},
Weekdays,Radnim danom,
Workflow,Hodogram,
You need to be logged in to access this page,Morate biti prijavljeni da biste pristupili ovoj stranici,
County,Okrug,
Images,Slike,
Office,Ured,
Passive,Pasiva,
Permanent,trajan,
Plant,Biljka,
Postal,Poštanski,
Previous,prijašnji,
Shop,Dućan,
Subsidiary,Podružnica,
There is some problem with the file url: {0},Postoji neki problem s datotečnog URL: {0},
"Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}","Posebni znakovi osim &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; I &quot;}}&quot; nisu dopušteni u imenovanju serija {0}",
Export Type,Vrsta izvoza,
Last Sync On,Posljednja sinkronizacija uključena,
Webhook Secret,Webhook Secret,
Back to Home,Povratak kući,
Customize,Prilagodba,
Edit Profile,Uredi profil,
File Manager,Upravitelj datoteka,
Invite as User,Pozovi kao korisnik,
Newsletter,Bilten,
Printing,Tiskanje,
Publish,Objaviti,
Refreshing,Osvježavajući,
Select All,Odaberite sve,
Set,set,
Setup Wizard,Čarobnjak za postavljanje,
Update Details,Ažuriraj pojedinosti,
You,Vi,
{0} Name,{0} Name,
Bold,odvažan,
Center,Centar,
Comment,Komentar,
Not Found,Nije pronađeno,
User Id,ID korisnika,
Position,Položaj,
Crop,Usjev,
Topic,Tema,
Public Transport,Javni prijevoz,
Request Data,Zatražite podatke,
Steps,Koraci,
Reference DocType,Referentni DocType,
Select Transaction,Odaberite transakciju,
Help HTML,HTML pomoć,
Series List for this Transaction,Serija Popis za ovu transakciju,
User must always select,Korisničko uvijek mora odabrati,
Check this if you want to force the user to select a series before saving. There will be no default if you check this.,Označite ovo ako želite prisiliti korisniku odabir seriju prije spremanja. Tu će biti zadana ako to provjerili.,
Prefix,Prefiks,
This is the number of the last created transaction with this prefix,To je broj zadnjeg stvorio transakcije s ovim prefiksom,
Update Series Number,Update serije Broj,
Validation Error,Pogreška provjere valjanosti,
Andaman and Nicobar Islands,Otoci Andaman i Nicobar,
Andhra Pradesh,Andhra Pradesh,
Arunachal Pradesh,Arunachal Pradesh,
Assam,Assam,
Bihar,Bihar,
Chandigarh,Chandigarh,
Chhattisgarh,Chhattisgarh,
Dadra and Nagar Haveli,Dadra i Nagar Haveli,
Daman and Diu,Daman i Diu,
Delhi,Delhi,
Goa,Goa,
Gujarat,Gudžarat,
Haryana,Haryana,
Himachal Pradesh,Himachal Pradesh,
Jammu and Kashmir,Džamu i Kašmir,
Jharkhand,Jharkhand,
Karnataka,Karnataka,
Kerala,Kerala,
Lakshadweep Islands,Otoci Lakshadweep,
Madhya Pradesh,Madhya Pradesh,
Maharashtra,Maharaštra,
Manipur,Manipur,
Meghalaya,Meghalaya,
Mizoram,Mizoram,
Nagaland,Nagaland,
Odisha,Odisha,
Other Territory,Ostali teritorij,
Pondicherry,Pondicherry,
Punjab,Pandžab,
Rajasthan,Rajasthan,
Sikkim,Sikkim,
Tamil Nadu,Tamil Nadu,
Telangana,Telangana,
Tripura,Tripura,
Uttar Pradesh,Uttar Pradesh,
Uttarakhand,Uttarakhand,
West Bengal,Zapadni Bengal,
Published on,Objavljeno dana,
Bottom,Dno,
Top,Vrh,

1 A4 A4
9 Actions Akcije
10 Active Aktivan
11 Add Dodaj
Add Comment Dodaj komentar
12 Add Row Dodaj Row
13 Address Adresa
14 Address Line 2 Adresa - linija 2
143 Monthly Mjesečno
144 More Više
145 More Information Više informacija
More... Više...
146 Move Potez
147 My Account Moj Račun
148 New Address Nova adresa
155 None nijedan
156 Not Permitted Nije dopuštena
157 Not active Nije aktivan
Notes Zabilješke
158 Number Broj
159 Online Na liniji
160 Operation Operacija
164 Page Missing or Moved Stranica nedostaje ili je uklonjena
165 Parameter Parametar
166 Password Zaporka
Payment Gateway Payment Gateway
Payment Gateway Name Ime platnog prolaza
Payments Plaćanja
167 Period Razdoblje
168 Pincode Poštanski broj
Plan Name Naziv plana
169 Please enable pop-ups Molimo omogućite pop-up prozora
170 Please select Company Odaberite tvrtke
171 Please select {0} Odaberite {0}
172 Please set Email Address Molimo postavite adresu e-pošte
Portal Portal
173 Portal Settings Postavke portala
174 Preview pregled
175 Primary osnovni
214 Sample Uzorak
215 Saturday Subota
216 Saved Spremljeno
Scan Barcode Skenirajte crtični kod
217 Scheduled Planiran
218 Search Traži
219 Secret Key Tajni ključ
228 Shipping Utovar
229 Short Name Kratko Ime
230 Slideshow Slideshow
Some information is missing Neki podaci nedostaju
231 Source Izvor
232 Source Name source Name
233 Standard Standard
237 Stopped Zaustavljen
238 Subject Predmet
239 Submit Potvrdi
Successful uspješan
240 Summary Sažetak
241 Sunday Nedjelja
242 System Manager Sustav Manager
249 Timespan Vremenski raspon
250 To Do
251 To Date Za datum
Tools Alati
252 Traceback Traceback
253 URL URL
254 Unsubscribed Pretplatu
Use Sandbox Sandbox
255 User Korisnik
256 User ID Korisnički ID
257 Users Korisnici
556 Bulk Edit {0} Skupno uređivanje {0}
557 Bulk Rename Skupno preimenuj
558 Bulk Update Skupno ažuriranje
Busy Zaposlen
559 Button Gumb
560 Button Help Button Pomoć
561 Button Label Button Label
692 Complete By Kompletan Do
693 Complete Registration Kompletan Registracija
694 Complete Setup kompletan Setup
Completed By Završio
695 Compose Email Nova poruka
696 Condition Detail Detaljno stanje
697 Conditions Uvjeti
1676 Not a zip file Nije zip datoteka
1677 Not allowed for {0}: {1} Nije dopušteno za {0}: {1}
1678 You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4} Nije vam dopušteno pristupiti {0} jer je povezan s {1} '{2}' u redu {3}, polje {4}
1679 You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3} Nije vam dopušteno pristupiti ovom {0} zapis jer je povezan s {1} '{2}' u polju {3}
1680 Not allowed to Import Nije dopušteno uvoziti
1681 Not allowed to change {0} after submission Nije dopušteno mijenjati {0} nakon potvrđivanja
1682 Not allowed to print cancelled documents Nije dopušteno za ispis otkazan dokumenata
1804 PayPal Settings Postavke PayPal
1805 PayPal payment gateway settings PayPal postavke Payment Gateway
1806 Payment Cancelled Otkazan plaćanja
Payment Failed Plaćanje nije uspjelo
1807 Payment Success Uspjeh plaćanja
1808 Pending Approval Čeka se odobrenje
1809 Pending Verification Čeka se potvrda
3200 Click on the lock icon to toggle public/private Kliknite ikonu zaključavanja kako biste prebacili javnu / privatnu
3201 Click on {0} to generate Refresh Token. Kliknite na {0} da biste generirali Osvježi token.
3202 Close Condition Zatvori stanje
Column {0} Stupac {0}
3203 Columns / Fields Stupci / polja
3204 Configure notifications for mentions, assignments, energy points and more. Konfigurirajte obavijesti za spomene, zadatke, energetske točke i još mnogo toga.
3205 Contact Email Kontakt email
3281 Failure Neuspjeh
3282 Fetching default Global Search documents. Dohvaćanje zadanih dokumenata Globalne pretrage.
3283 Fetching posts... Dohvaćanje postova ...
Field Mapping Kartiranje polja
3284 Field To Check Polje za provjeru
3285 File Information Podaci o datoteci
3286 Filter By Filtrirati po
3435 No records will be exported Neće se izvesti nikakvi zapisi
3436 No results found for {0} in Global Search Nema rezultata za {0} u Globalnoj pretraživanju
3437 No user found Nije pronađen nijedan korisnik
Not Specified Nije specificirano
3438 Notification Log Zapisnik obavijesti
3439 Notification Settings Postavke obavijesti
3440 Notification Subscribed Document Obavijest Pretplaćeni dokument
3590 Untranslated neprevedenih
3591 Upcoming Events Nadolazeći događaji
3592 Update Existing Records Ažuriranje postojećih zapisa
Update Type Vrsta ažuriranja
3593 Updated To A New Version 🎉 Ažurirano na novu verziju 🎉
3594 Updating {0} of {1}, {2} Ažuriranje {0} od {1}, {2}
3595 Upload file Prijenos datoteke
3696 Disabled Ugašeno
3697 Doctype DOCTYPE
3698 Download Template Preuzmite predložak
Dr Doktor
3699 Due Date Datum dospijeća
3700 Duplicate Duplikat
3701 Edit Profile Uredi profil
3702 Email E-mail
End Time Kraj vremena
3703 Enter Value Unesite vrijednost
3704 Entity Type Vrsta entiteta
3705 Error Pogreška
3706 Expired Istekla
3707 Export Izvoz
3708 Export not allowed. You need {0} role to export. Izvoz nisu dopušteni . Trebate {0} ulogu za izvoz .
Fetching... Preuzimanje u tijeku ...
3709 Field Polje
3710 File Manager Upravitelj datoteka
3711 Filters Filteri
3720 In Progress U nastajanju
3721 Intermediate srednji
3722 Invite as User Pozovi kao korisnik
It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account. Čini se da postoji problem s konfiguracijom trake poslužitelja. U slučaju neuspjeha, iznos će biti vraćen na vaš račun.
3723 Loading... Učitavanje ...
3724 Location Lokacija
Looks like someone sent you to an incomplete URL. Please ask them to look into it. Izgleda da ti je netko poslao nepotpune URL. Zamolite ih gledati u nju.
Master Master
3725 Message Poruka
3726 Missing Values Required Nedostaje vrijednosti potrebne
3727 Mobile No Mobitel br
3733 Offline offline
3734 Open Otvoreno
3735 Page {0} of {1} Stranica {0} od {1}
Pay Platiti
3736 Pending Na čekanju
3737 Phone Telefon
3738 Please click on the following link to set your new password Molimo kliknite na sljedeći link kako bi postavili novu lozinku
3782 Year Godina
3783 Yearly Godišnji
3784 You Vi
You can also copy-paste this link in your browser Također možete kopirati ovaj link u Vaš preglednik
3785 and i
3786 {0} Name {0} Name
3787 {0} is required {0} je potrebno
4085 Navbar Navbar
4086 Source Message Izvorna poruka
4087 Translated Message Prevedena poruka
Verified By Ovjeren od strane
4088 Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand. Korištenje ove konzole može dopustiti napadačima da se lažno predstavljaju i kradu vaše podatke. Ne unosite i ne lijepite kod koji ne razumijete.
4089 {0} m {0} m
4090 {0} h {0} h
4117 {0} is not a valid Name {0} nije valjano Ime
4118 Your system is being updated. Please refresh again after a few moments. Vaš se sustav ažurira. Osvježite ponovo nakon nekoliko trenutaka.
4119 {0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first. {0} {1}: Predani zapis nije moguće izbrisati. Prvo ga morate {2} otkazati {3}.
Invalid naming series (. missing) for {0} Nevažeća serija imenovanja (. Nedostaje) za {0}
4120 Error has occurred in {0} Dogodila se pogreška u {0}
4121 Status Updated Status ažuriran
4122 You can also copy-paste this {0} to your browser Možete i kopirati i zalijepiti ovo {0} u svoj preglednik
4138 Address And Contacts Adresa i kontakti
4139 Lead Conversion Time Vrijeme pretvorbe olova
4140 Due Date Based On Datum dospijeća na temelju
Phone Number Broj telefona
4141 Linked Documents Povezani dokumenti
Account SID SID računa
4142 Steps Koraci
4143 email e-mail
4144 Component sastavni dio
4145 Subtitle Titl
Global Defaults Globalne zadane postavke
4146 Prefix Prefiks
4147 Is Public Javno je
4148 This chart will be available to all Users if this is set Ako je postavljeno, ovaj će grafikon biti dostupan svim korisnicima
4329 Please create Card first Prvo stvorite karticu
4330 Onboarding Permission Dopuštenje za ukrcaj
4331 Onboarding Step Ulazni korak
Is Mandatory Je obavezno
4332 Is Skipped Je preskočen
4333 Create Entry Stvori unos
4334 Update Settings Ažuriranje postavki
4366 Send Attachments Pošaljite privitke
4367 Testing Testiranje
4368 System Notification Obavijest o sustavu
WhatsApp Što ima
4369 Twilio Number Twilio broj
4370 To use WhatsApp for Business, initialize <a href="#Form/Twilio Settings">Twilio Settings</a>. Da biste koristili WhatsApp za posao, inicijalizirajte <a href="#Form/Twilio Settings">Twilio Settings</a> .
4371 To use Slack Channel, add a <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook URL</a>. Da biste koristili Slack Channel, dodajte <a href="#List/Slack%20Webhook%20URL/List">URL Slack Webhook-a</a> .
4500 {0} are currently {1} {0} trenutno su {1}
4501 Currently Replying Trenutno odgovaram
4502 created {0} stvoreno {0}
Make a call Uputi poziv
4503 Change Promijeniti Coins
4504 Too Many Requests Previše zahtjeva
4505 Invalid Authorization headers, add a token with a prefix from one of the following: {0}. Nevažeća zaglavlja autorizacije, dodajte žeton s prefiksom jednog od sljedećih: {0}.
4664 Negative Value Negativna vrijednost
4665 Authentication failed while receiving emails from Email Account: {0}. Autentifikacija nije uspjela tijekom primanja e-pošte s računa e-pošte: {0}.
4666 Message from server: {0} Poruka s poslužitelja: {0}
4667 Add Row Dodaj Row
4668 Analytics Analitika
4669 Anonymous anoniman
4670 Author Autor
4671 Basic Osnovni
4672 Billing Naplata
4673 Contact Details Kontakt podaci
4674 Datetime Datum i vrijeme
4675 Enable omogućiti
4676 Event Događaj
4677 Full puni
4678 Insert Insert
4679 Interests interesi
4680 Language Name Jezik Naziv
4681 License licenca
4682 Limit Ograničiti
4683 Log Prijava
4684 Meeting Sastanak
4685 My Account Moj Račun
4686 Newsletters Newsletteri
4687 Password Zaporka
4688 Pincode Poštanski broj
4689 Please select prefix first Odaberite prefiks prvi
4690 Please set Email Address Molimo postavite adresu e-pošte
4691 Please set the series to be used. Postavite seriju koja će se koristiti.
4692 Portal Settings Postavke portala
4693 Reference Owner Referentni vlasnika
4694 Region Regija
4695 Report Builder Report Builder
4696 Sample Uzorak
4697 Saved Spremljeno
4698 Series {0} already used in {1} Serija {0} se već koristi u {1}
4699 Set as Default Postavi kao zadano
4700 Shipping Utovar
4701 Standard Standard
4702 Test Test
4703 Traceback Traceback
4704 Unable to find DocType {0} Nije moguće pronaći DocType {0}
4705 Weekdays Radnim danom
4706 Workflow Hodogram
4707 You need to be logged in to access this page Morate biti prijavljeni da biste pristupili ovoj stranici
4708 County Okrug
4709 Images Slike
4710 Office Ured
4711 Passive Pasiva
4712 Permanent trajan
4713 Plant Biljka
4714 Postal Poštanski
4715 Previous prijašnji
4716 Shop Dućan
4717 Subsidiary Podružnica
4718 There is some problem with the file url: {0} Postoji neki problem s datotečnog URL: {0}
4719 Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0} Posebni znakovi osim &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; I &quot;}}&quot; nisu dopušteni u imenovanju serija {0}
4720 Export Type Vrsta izvoza
4721 Last Sync On Posljednja sinkronizacija uključena
4722 Webhook Secret Webhook Secret
4723 Back to Home Povratak kući
4724 Customize Prilagodba
4725 Edit Profile Uredi profil
4726 File Manager Upravitelj datoteka
4727 Invite as User Pozovi kao korisnik
4728 Newsletter Bilten
4729 Printing Tiskanje
4730 Publish Objaviti
4731 Refreshing Osvježavajući
4732 Select All Odaberite sve
4733 Set set
4734 Setup Wizard Čarobnjak za postavljanje
4735 Update Details Ažuriraj pojedinosti
4736 You Vi
4737 {0} Name {0} Name
4738 Bold odvažan
4739 Center Centar
4740 Comment Komentar
4741 Not Found Nije pronađeno
4742 User Id ID korisnika
4743 Position Položaj
4744 Crop Usjev
4745 Topic Tema
4746 Public Transport Javni prijevoz
4747 Request Data Zatražite podatke
4748 Steps Koraci
4749 Reference DocType Referentni DocType
4750 Select Transaction Odaberite transakciju
4751 Help HTML HTML pomoć
4752 Series List for this Transaction Serija Popis za ovu transakciju
4753 User must always select Korisničko uvijek mora odabrati
4754 Check this if you want to force the user to select a series before saving. There will be no default if you check this. Označite ovo ako želite prisiliti korisniku odabir seriju prije spremanja. Tu će biti zadana ako to provjerili.
4755 Prefix Prefiks
4756 This is the number of the last created transaction with this prefix To je broj zadnjeg stvorio transakcije s ovim prefiksom
4757 Update Series Number Update serije Broj
4758 Validation Error Pogreška provjere valjanosti
4759 Andaman and Nicobar Islands Otoci Andaman i Nicobar
4760 Andhra Pradesh Andhra Pradesh
4761 Arunachal Pradesh Arunachal Pradesh
4762 Assam Assam
4763 Bihar Bihar
4764 Chandigarh Chandigarh
4765 Chhattisgarh Chhattisgarh
4766 Dadra and Nagar Haveli Dadra i Nagar Haveli
4767 Daman and Diu Daman i Diu
4768 Delhi Delhi
4769 Goa Goa
4770 Gujarat Gudžarat
4771 Haryana Haryana
4772 Himachal Pradesh Himachal Pradesh
4773 Jammu and Kashmir Džamu i Kašmir
4774 Jharkhand Jharkhand
4775 Karnataka Karnataka
4776 Kerala Kerala
4777 Lakshadweep Islands Otoci Lakshadweep
4778 Madhya Pradesh Madhya Pradesh
4779 Maharashtra Maharaštra
4780 Manipur Manipur
4781 Meghalaya Meghalaya
4782 Mizoram Mizoram
4783 Nagaland Nagaland
4784 Odisha Odisha
4785 Other Territory Ostali teritorij
4786 Pondicherry Pondicherry
4787 Punjab Pandžab
4788 Rajasthan Rajasthan
4789 Sikkim Sikkim
4790 Tamil Nadu Tamil Nadu
4791 Telangana Telangana
4792 Tripura Tripura
4793 Uttar Pradesh Uttar Pradesh
4794 Uttarakhand Uttarakhand
4795 West Bengal Zapadni Bengal
4796 Published on Objavljeno dana
4797 Bottom Dno
4798 Top Vrh

View file

@ -9,7 +9,6 @@ Action,Művelet,
Actions,Műveletek,
Active,Aktív,
Add,Hozzáadás,
Add Comment,Megjegyzés hozzáadása,
Add Row,Sor hozzáadás,
Address,Cím,
Address Line 2,2. cím sor,
@ -144,7 +143,6 @@ Monday,Hétfő,
Monthly,Havi,
More,Tovább,
More Information,Több információ,
More...,Több...,
Move,mozgás,
My Account,Fiókom,
New Address,Új cím,
@ -157,7 +155,6 @@ No items found.,Nincs találat.,
None,Semelyik,
Not Permitted,Nem engedélyezett,
Not active,Nem aktív,
Notes,Jegyzetek,
Number,Szám,
Online,Online,
Operation,Üzemeltetés,
@ -167,17 +164,12 @@ Owner,Tulajdonos,
Page Missing or Moved,Oldal hiányzó vagy áthelyezték,
Parameter,Paraméter,
Password,Jelszó,
Payment Gateway,Fizetési átjáró,
Payment Gateway Name,Fizetési átjáró elnevezése,
Payments,Kifizetések,
Period,Időszak,
Pincode,Irányítószám,
Plan Name,Terv megnevezése,
Please enable pop-ups,"Kérjük, engedélyezze a felugrókat",
Please select Company,"Kérjük, válasszon Vállalkozást először",
Please select {0},"Kérjük, válassza ki a {0}",
Please set Email Address,"Kérjük, állítsa be az e-mail címet",
Portal,Portál,
Portal Settings,Portál Beállítások,
Preview,Előnézet,
Primary,Elsődleges,
@ -222,7 +214,6 @@ Salutation,Megszólítás,
Sample,Minta,
Saturday,Szombat,
Saved,Mentett,
Scan Barcode,Barcode beolvasás,
Scheduled,Ütemezett,
Search,Keresés,
Secret Key,Titkos kulcs,
@ -237,7 +228,6 @@ Settings,Beállítások,
Shipping,Szállítás,
Short Name,Rövid név,
Slideshow,Diavetítés,
Some information is missing,Néhány információ hiányzik,
Source,Forrás,
Source Name,Forrá név,
Standard,Általános,
@ -247,7 +237,6 @@ State,Állapot,
Stopped,Megállítva,
Subject,Tárgy,
Submit,Elküld,
Successful,Sikeres,
Summary,Összefoglalás,
Sunday,Vasárnap,
System Manager,Rendszer menedzser,
@ -260,11 +249,9 @@ The page you are looking for is missing. This could be because it is moved or th
Timespan,Időtartam,
To,Nak nek,
To Date,Dátumig,
Tools,Eszközök,
Traceback,Visszakövet,
URL,URL,
Unsubscribed,Leiratkozott,
Use Sandbox,Sandbox felhasználása,
User,használó,
User ID,Felhasználó ID,
Users,Felhasználók,
@ -569,7 +556,6 @@ Bulk Delete,Tömeges törlés,
Bulk Edit {0},Tömeges szerkesztés {0},
Bulk Rename,Tömeges átnevezés,
Bulk Update,Tömeges frissítés,
Busy,Elfoglalt,
Button,Gomb,
Button Help,Gomb Súgó,
Button Label,Gomb felirat,
@ -706,7 +692,6 @@ Compiled Successfully,Sikeresen összeállítva,
Complete By,Kiegészítette,
Complete Registration,Regisztráció befejezéséhez,
Complete Setup,Teljes telepítés,
Completed By,Által befejeztve,
Compose Email,E-mail írás,
Condition Detail,Feltétel részletei,
Conditions,Körülmények,
@ -1819,7 +1804,6 @@ Path to private Key File,A privát kulcsfájl elérési útja,
PayPal Settings,PayPal beállításai,
PayPal payment gateway settings,PayPal fizetési átjáró beállításai,
Payment Cancelled,Fizetés törölt,
Payment Failed,Fizetés meghiúsult,
Payment Success,Fizetési sikeres,
Pending Approval,Elbírálás alatt,
Pending Verification,Az ellenőrzés függőben van,
@ -3216,7 +3200,6 @@ Click on the link below to approve the request,Kattintson az alábbi linkre a k
Click on the lock icon to toggle public/private,A nyilvános / privát váltáshoz kattintson a zár ikonra,
Click on {0} to generate Refresh Token.,Kattintson a (z) {0} -ra a Refresh Token létrehozásához.,
Close Condition,Bezárás feltétel,
Column {0},{0} oszlop,
Columns / Fields,Oszlopok / mezők,
"Configure notifications for mentions, assignments, energy points and more.","Konfigurálja az értesítéseket megemlítések, feladatok, energiapontok és így tovább.",
Contact Email,Kapcsolattartó e-mailcíme,
@ -3298,7 +3281,6 @@ Failed to create an Event Consumer or an Event Consumer for the current site is
Failure,Kudarc,
Fetching default Global Search documents.,Az alapértelmezett globális keresési dokumentumok letöltése.,
Fetching posts...,Bejegyzések lekérése ...,
Field Mapping,Field Mapping,
Field To Check,Ellenőrizendő mező,
File Information,Fájlinformációk,
Filter By,Szűrés ez alapján,
@ -3453,7 +3435,6 @@ No posts yet,Még nincs hozzászólás,
No records will be exported,Nincs rekord exportálva,
No results found for {0} in Global Search,Nem található a (z) {0} eredmény a Globális keresésben,
No user found,Nem található felhasználó,
Not Specified,Nem meghatározott,
Notification Log,Értesítési napló,
Notification Settings,Értesítési beállítások,
Notification Subscribed Document,Értesítés előfizetött dokumentum,
@ -3609,7 +3590,6 @@ Untitled Column,Név nélküli oszlop,
Untranslated,lefordítatlan,
Upcoming Events,Közelgő események,
Update Existing Records,Frissítse a meglévő rekordokat,
Update Type,Frissítés típusa,
Updated To A New Version 🎉,Új verzióra frissítve 🎉,
"Updating {0} of {1}, {2}","A (z) {1}, {2} {0} frissítése",
Upload file,Fájl feltöltés,
@ -3716,19 +3696,16 @@ Designation,Titulus,
Disabled,Tiltva,
Doctype,doctype,
Download Template,Sablon letöltése,
Dr,Dr,
Due Date,Határidő,
Duplicate,Megsokszoroz,
Edit Profile,Profil szerkesztése,
Email,Email,
End Time,Befejezés dátuma,
Enter Value,Adjon Értéket,
Entity Type,Jogi alany típus,
Error,Hiba,
Expired,Lejárt,
Export,Export,
Export not allowed. You need {0} role to export.,Export nem engedélyezett. A {0} beosztás szükséges az exporthoz.,
Fetching...,Elragadó...,
Field,Mező,
File Manager,Fájlkezelő,
Filters,Szűrők,
@ -3743,11 +3720,8 @@ Import Data from CSV / Excel files.,Adat importálása CSV / Excel fájlokból.,
In Progress,Folyamatban,
Intermediate,Közbülső,
Invite as User,Meghívás Felhasználóként,
"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Úgy tűnik, hogy probléma van a kiszolgáló sávszélesség konfigurációjával. Hiba esetén az összeg visszafizetésre kerül a számlájára.",
Loading...,Betöltés...,
Location,Tartózkodási hely,
Looks like someone sent you to an incomplete URL. Please ask them to look into it.,"Úgy néz ki, mintha valaki küldött egy hiányos URL-t. Kérjük, kérje meg, hogy nézzen utána.",
Master,Fő adat,
Message,Üzenet,
Missing Values Required,Hiányzó szükséges értékek,
Mobile No,Mobil:,
@ -3759,7 +3733,6 @@ Note,Jegyzet,
Offline,Offline,
Open,Megnyitva,
Page {0} of {1},Oldal {0} ennyiből {1},
Pay,Fizet,
Pending,Függő,
Phone,Telefon,
Please click on the following link to set your new password,"Kérjük, kattintson az alábbi linkre, az új jelszó beállításához",
@ -3809,7 +3782,6 @@ Welcome to {0},Üdvözöljük itt {0},
Year,Év,
Yearly,Évi,
You,Ön,
You can also copy-paste this link in your browser,Másol-beillesztheti ezt az elérési linket a böngészőben,
and,és,
{0} Name,{0} Név,
{0} is required,{0} szükséges,
@ -4113,7 +4085,6 @@ Custom SCSS,Egyéni SCSS,
Navbar,Navbar,
Source Message,Forrásüzenet,
Translated Message,Lefordított üzenet,
Verified By,Ellenőrizte,
Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand.,"Ennek a konzolnak a használata lehetővé teheti a támadók számára, hogy megszemélyesítsék Önt és ellopják az adatait. Ne írjon be és ne illesszen be olyan kódot, amelyet nem ért.",
{0} m,{0} m,
{0} h,{0} h,
@ -4146,7 +4117,6 @@ Collapse,Összeomlás,
{0} is not a valid Name,A (z) {0} nem érvényes név,
Your system is being updated. Please refresh again after a few moments.,"Rendszerét frissítjük. Kérjük, frissítse újra néhány pillanat múlva.",
{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first.,{0} {1}: A beküldött rekordot nem lehet törölni. Először {2} le kell mondania {3}.,
Invalid naming series (. missing) for {0},Érvénytelen névsor (. Hiányzik) a következőhöz: {0},
Error has occurred in {0},Hiba történt itt: {0},
Status Updated,Állapot frissítve,
You can also copy-paste this {0} to your browser,Ezt a {0} fájlt másolhatja be a böngészőjébe is,
@ -4168,14 +4138,11 @@ Is Billing Contact,Számlázási kapcsolattartó,
Address And Contacts,Cím és kapcsolattartók,
Lead Conversion Time,Érdeklődésre átváltás ideje,
Due Date Based On,Határidő dátuma ez alapján,
Phone Number,Telefonszám,
Linked Documents,Kapcsolódó dokumentumok,
Account SID,Fiók SID,
Steps,Lépések,
email,email,
Component,Összetevő,
Subtitle,Felirat,
Global Defaults,Általános beállítások,
Prefix,Előtag,
Is Public,Nyilvános,
This chart will be available to all Users if this is set,"Ez a diagram minden felhasználó számára elérhető lesz, ha ez be van állítva",
@ -4362,7 +4329,6 @@ Dynamic Filters Section,Dinamikus szűrők szakasz,
Please create Card first,"Kérjük, először hozza létre a kártyát",
Onboarding Permission,Fedélzeti engedély,
Onboarding Step,Fedélzeti lépés,
Is Mandatory,Kötelező,
Is Skipped,Átugrott,
Create Entry,Hozzon létre bejegyzést,
Update Settings,Frissítse a beállításokat,
@ -4400,7 +4366,6 @@ Message (HTML),Üzenet (HTML),
Send Attachments,Mellékletek küldése,
Testing,Tesztelés,
System Notification,Rendszer értesítés,
WhatsApp,WhatsApp,
Twilio Number,Twilio szám,
"To use WhatsApp for Business, initialize <a href=""#Form/Twilio Settings"">Twilio Settings</a>.","A WhatsApp for Business használatához inicializálja a <a href=""#Form/Twilio Settings"">Twilio beállításokat</a> .",
"To use Slack Channel, add a <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL</a>.","A Slack Channel használatához adjon hozzá egy <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL-t</a> .",
@ -4535,7 +4500,6 @@ Add to ToDo,Hozzáadás a Teendőkhöz,
{0} are currently {1},{0} jelenleg {1},
Currently Replying,Jelenleg válaszol,
created {0},létrehozta: {0},
Make a call,Hívást kezdeményezni,
Change,változás,Coins
Too Many Requests,Túl sok kérés,
"Invalid Authorization headers, add a token with a prefix from one of the following: {0}.","Érvénytelen engedélyezési fejlécek, adjon hozzá egy tokent egy előtaggal a következők egyikéből: {0}",
@ -4700,3 +4664,135 @@ Value cannot be negative for {0}: {1},Az érték nem lehet negatív a következ
Negative Value,Negatív érték,
Authentication failed while receiving emails from Email Account: {0}.,"A hitelesítés meghiúsult, amikor e-maileket kapott az e-mail fiókból: {0}.",
Message from server: {0},Üzenet a szerverről: {0},
Add Row,Sor hozzáadás,
Analytics,Elemzés,
Anonymous,Névtelen,
Author,Szerző,
Basic,Alapvető,
Billing,Számlázás,
Contact Details,Kapcsolattartó részletei,
Datetime,Dátum,
Enable,Engedélyezve,
Event,Esemény,
Full,Tele,
Insert,Beszúr,
Interests,Érdekek,
Language Name,Nyelv neve,
License,Licenc,
Limit,Korlátozás,
Log,Napló,
Meeting,Találkozó,
My Account,Fiókom,
Newsletters,hírlevelek,
Password,Jelszó,
Pincode,Irányítószám,
Please select prefix first,"Kérjük, válasszon prefix először",
Please set Email Address,"Kérjük, állítsa be az e-mail címet",
Please set the series to be used.,"Kérjük, állítsa be a használni kívánt sorozatokat.",
Portal Settings,Portál Beállítások,
Reference Owner,Referencia Képviselő,
Region,Régió,
Report Builder,Jelentéskészítő,
Sample,Minta,
Saved,Mentett,
Series {0} already used in {1},{0} sorozat már használva van itt: {1},
Set as Default,Beállítás alapértelmezettnek,
Shipping,Szállítás,
Standard,Általános,
Test,Teszt,
Traceback,Visszakövet,
Unable to find DocType {0},Nem sikerült megtalálni ezt: DocType {0},
Weekdays,Hétköznapok,
Workflow,Munkafolyamat,
You need to be logged in to access this page,"Be kell jelentkezie, hogy elérje ezt az oldalt",
County,Megye,
Images,Képek,
Office,Iroda,
Passive,Passzív,
Permanent,Állandó,
Plant,Géppark,
Postal,Postai,
Previous,Előző,
Shop,Bolt,
Subsidiary,Leányvállalat,
There is some problem with the file url: {0},Van valami probléma a fájl URL-el: {0},
"Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}","Speciális karakterek, kivéve &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; És &quot;}}&quot;, a sorozatok elnevezése nem megengedett {0}",
Export Type,Export típusa,
Last Sync On,Utolsó szinkronizálás ekkor,
Webhook Secret,Webhook titkos,
Back to Home,Vissza a főoldalra,
Customize,Testreszabás,
Edit Profile,Profil szerkesztése,
File Manager,Fájlkezelő,
Invite as User,Meghívás Felhasználóként,
Newsletter,Hírlevél,
Printing,Nyomtatás,
Publish,közzétesz,
Refreshing,Üdítő,
Select All,Mindent kijelöl,
Set,Beállítás,
Setup Wizard,Telepítés varázsló,
Update Details,Frissítse a részleteket,
You,Ön,
{0} Name,{0} Név,
Bold,Bátor,
Center,Központ,
Comment,Megjegyzés,
Not Found,Nem található,
User Id,Felhasználói azonosító,
Position,Pozíció,
Crop,Termés,
Topic,Téma,
Public Transport,Tömegközlekedés,
Request Data,Adat kérés,
Steps,Lépések,
Reference DocType,Referencia DocType,
Select Transaction,Válasszon Tranzakciót,
Help HTML,Súgó HTML,
Series List for this Transaction,Sorozat List ehhez a tranzakcióhoz,
User must always select,Felhasználónak mindig választani kell,
Check this if you want to force the user to select a series before saving. There will be no default if you check this.,"Jelölje be, ha azt akarja, hogy a felhasználó válassza ki a sorozatokat mentés előtt. Nem lesz alapértelmezett, ha bejelöli.",
Prefix,Előtag,
This is the number of the last created transaction with this prefix,"Ez az a szám, az ilyen előtaggal utoljára létrehozott tranzakciónak",
Update Series Number,Széria szám frissítése,
Validation Error,Ellenőrzési hiba,
Andaman and Nicobar Islands,Andamán és Nicobar-szigetek,
Andhra Pradesh,Andhra Pradesh,
Arunachal Pradesh,Arunachal Pradesh,
Assam,Assam,
Bihar,Bihar,
Chandigarh,Chandigarh,
Chhattisgarh,Chhattisgarh,
Dadra and Nagar Haveli,Dadra és Nagar Haveli,
Daman and Diu,Daman és Diu,
Delhi,Delhi,
Goa,Goa,
Gujarat,Gujarat,
Haryana,Haryana,
Himachal Pradesh,Himachal Pradesh,
Jammu and Kashmir,Dzsammu és Kasmír,
Jharkhand,Jharkhand,
Karnataka,Karnataka,
Kerala,Kerala,
Lakshadweep Islands,Lakshadweep-szigetek,
Madhya Pradesh,Madhya Pradesh,
Maharashtra,Maharashtra,
Manipur,Manipur,
Meghalaya,Meghalaya,
Mizoram,Mizoram,
Nagaland,Nagaland,
Odisha,Odisha,
Other Territory,Egyéb terület,
Pondicherry,Pondicherry,
Punjab,Pandzsáb,
Rajasthan,Radzsasztán,
Sikkim,Sikkim,
Tamil Nadu,Tamil Nadu,
Telangana,Telangana,
Tripura,Tripura,
Uttar Pradesh,Uttar Pradesh,
Uttarakhand,Uttarakhand,
West Bengal,Nyugat-Bengál,
Published on,Megjelent,
Bottom,Alsó,
Top,Felül,

1 A4 A4
9 Actions Műveletek
10 Active Aktív
11 Add Hozzáadás
Add Comment Megjegyzés hozzáadása
12 Add Row Sor hozzáadás
13 Address Cím
14 Address Line 2 2. cím sor
143 Monthly Havi
144 More Tovább
145 More Information Több információ
More... Több...
146 Move mozgás
147 My Account Fiókom
148 New Address Új cím
155 None Semelyik
156 Not Permitted Nem engedélyezett
157 Not active Nem aktív
Notes Jegyzetek
158 Number Szám
159 Online Online
160 Operation Üzemeltetés
164 Page Missing or Moved Oldal hiányzó vagy áthelyezték
165 Parameter Paraméter
166 Password Jelszó
Payment Gateway Fizetési átjáró
Payment Gateway Name Fizetési átjáró elnevezése
Payments Kifizetések
167 Period Időszak
168 Pincode Irányítószám
Plan Name Terv megnevezése
169 Please enable pop-ups Kérjük, engedélyezze a felugrókat
170 Please select Company Kérjük, válasszon Vállalkozást először
171 Please select {0} Kérjük, válassza ki a {0}
172 Please set Email Address Kérjük, állítsa be az e-mail címet
Portal Portál
173 Portal Settings Portál Beállítások
174 Preview Előnézet
175 Primary Elsődleges
214 Sample Minta
215 Saturday Szombat
216 Saved Mentett
Scan Barcode Barcode beolvasás
217 Scheduled Ütemezett
218 Search Keresés
219 Secret Key Titkos kulcs
228 Shipping Szállítás
229 Short Name Rövid név
230 Slideshow Diavetítés
Some information is missing Néhány információ hiányzik
231 Source Forrás
232 Source Name Forrá név
233 Standard Általános
237 Stopped Megállítva
238 Subject Tárgy
239 Submit Elküld
Successful Sikeres
240 Summary Összefoglalás
241 Sunday Vasárnap
242 System Manager Rendszer menedzser
249 Timespan Időtartam
250 To Nak nek
251 To Date Dátumig
Tools Eszközök
252 Traceback Visszakövet
253 URL URL
254 Unsubscribed Leiratkozott
Use Sandbox Sandbox felhasználása
255 User használó
256 User ID Felhasználó ID
257 Users Felhasználók
556 Bulk Edit {0} Tömeges szerkesztés {0}
557 Bulk Rename Tömeges átnevezés
558 Bulk Update Tömeges frissítés
Busy Elfoglalt
559 Button Gomb
560 Button Help Gomb Súgó
561 Button Label Gomb felirat
692 Complete By Kiegészítette
693 Complete Registration Regisztráció befejezéséhez
694 Complete Setup Teljes telepítés
Completed By Által befejeztve
695 Compose Email E-mail írás
696 Condition Detail Feltétel részletei
697 Conditions Körülmények
1804 PayPal Settings PayPal beállításai
1805 PayPal payment gateway settings PayPal fizetési átjáró beállításai
1806 Payment Cancelled Fizetés törölt
Payment Failed Fizetés meghiúsult
1807 Payment Success Fizetési sikeres
1808 Pending Approval Elbírálás alatt
1809 Pending Verification Az ellenőrzés függőben van
3200 Click on the lock icon to toggle public/private A nyilvános / privát váltáshoz kattintson a zár ikonra
3201 Click on {0} to generate Refresh Token. Kattintson a (z) {0} -ra a Refresh Token létrehozásához.
3202 Close Condition Bezárás feltétel
Column {0} {0} oszlop
3203 Columns / Fields Oszlopok / mezők
3204 Configure notifications for mentions, assignments, energy points and more. Konfigurálja az értesítéseket megemlítések, feladatok, energiapontok és így tovább.
3205 Contact Email Kapcsolattartó e-mailcíme
3281 Failure Kudarc
3282 Fetching default Global Search documents. Az alapértelmezett globális keresési dokumentumok letöltése.
3283 Fetching posts... Bejegyzések lekérése ...
Field Mapping Field Mapping
3284 Field To Check Ellenőrizendő mező
3285 File Information Fájlinformációk
3286 Filter By Szűrés ez alapján
3435 No records will be exported Nincs rekord exportálva
3436 No results found for {0} in Global Search Nem található a (z) {0} eredmény a Globális keresésben
3437 No user found Nem található felhasználó
Not Specified Nem meghatározott
3438 Notification Log Értesítési napló
3439 Notification Settings Értesítési beállítások
3440 Notification Subscribed Document Értesítés előfizetött dokumentum
3590 Untranslated lefordítatlan
3591 Upcoming Events Közelgő események
3592 Update Existing Records Frissítse a meglévő rekordokat
Update Type Frissítés típusa
3593 Updated To A New Version 🎉 Új verzióra frissítve 🎉
3594 Updating {0} of {1}, {2} A (z) {1}, {2} {0} frissítése
3595 Upload file Fájl feltöltés
3696 Disabled Tiltva
3697 Doctype doctype
3698 Download Template Sablon letöltése
Dr Dr
3699 Due Date Határidő
3700 Duplicate Megsokszoroz
3701 Edit Profile Profil szerkesztése
3702 Email Email
End Time Befejezés dátuma
3703 Enter Value Adjon Értéket
3704 Entity Type Jogi alany típus
3705 Error Hiba
3706 Expired Lejárt
3707 Export Export
3708 Export not allowed. You need {0} role to export. Export nem engedélyezett. A {0} beosztás szükséges az exporthoz.
Fetching... Elragadó...
3709 Field Mező
3710 File Manager Fájlkezelő
3711 Filters Szűrők
3720 In Progress Folyamatban
3721 Intermediate Közbülső
3722 Invite as User Meghívás Felhasználóként
It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account. Úgy tűnik, hogy probléma van a kiszolgáló sávszélesség konfigurációjával. Hiba esetén az összeg visszafizetésre kerül a számlájára.
3723 Loading... Betöltés...
3724 Location Tartózkodási hely
Looks like someone sent you to an incomplete URL. Please ask them to look into it. Úgy néz ki, mintha valaki küldött egy hiányos URL-t. Kérjük, kérje meg, hogy nézzen utána.
Master Fő adat
3725 Message Üzenet
3726 Missing Values Required Hiányzó szükséges értékek
3727 Mobile No Mobil:
3733 Offline Offline
3734 Open Megnyitva
3735 Page {0} of {1} Oldal {0} ennyiből {1}
Pay Fizet
3736 Pending Függő
3737 Phone Telefon
3738 Please click on the following link to set your new password Kérjük, kattintson az alábbi linkre, az új jelszó beállításához
3782 Year Év
3783 Yearly Évi
3784 You Ön
You can also copy-paste this link in your browser Másol-beillesztheti ezt az elérési linket a böngészőben
3785 and és
3786 {0} Name {0} Név
3787 {0} is required {0} szükséges
4085 Navbar Navbar
4086 Source Message Forrásüzenet
4087 Translated Message Lefordított üzenet
Verified By Ellenőrizte
4088 Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand. Ennek a konzolnak a használata lehetővé teheti a támadók számára, hogy megszemélyesítsék Önt és ellopják az adatait. Ne írjon be és ne illesszen be olyan kódot, amelyet nem ért.
4089 {0} m {0} m
4090 {0} h {0} h
4117 {0} is not a valid Name A (z) {0} nem érvényes név
4118 Your system is being updated. Please refresh again after a few moments. Rendszerét frissítjük. Kérjük, frissítse újra néhány pillanat múlva.
4119 {0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first. {0} {1}: A beküldött rekordot nem lehet törölni. Először {2} le kell mondania {3}.
Invalid naming series (. missing) for {0} Érvénytelen névsor (. Hiányzik) a következőhöz: {0}
4120 Error has occurred in {0} Hiba történt itt: {0}
4121 Status Updated Állapot frissítve
4122 You can also copy-paste this {0} to your browser Ezt a {0} fájlt másolhatja be a böngészőjébe is
4138 Address And Contacts Cím és kapcsolattartók
4139 Lead Conversion Time Érdeklődésre átváltás ideje
4140 Due Date Based On Határidő dátuma ez alapján
Phone Number Telefonszám
4141 Linked Documents Kapcsolódó dokumentumok
Account SID Fiók SID
4142 Steps Lépések
4143 email email
4144 Component Összetevő
4145 Subtitle Felirat
Global Defaults Általános beállítások
4146 Prefix Előtag
4147 Is Public Nyilvános
4148 This chart will be available to all Users if this is set Ez a diagram minden felhasználó számára elérhető lesz, ha ez be van állítva
4329 Please create Card first Kérjük, először hozza létre a kártyát
4330 Onboarding Permission Fedélzeti engedély
4331 Onboarding Step Fedélzeti lépés
Is Mandatory Kötelező
4332 Is Skipped Átugrott
4333 Create Entry Hozzon létre bejegyzést
4334 Update Settings Frissítse a beállításokat
4366 Send Attachments Mellékletek küldése
4367 Testing Tesztelés
4368 System Notification Rendszer értesítés
WhatsApp WhatsApp
4369 Twilio Number Twilio szám
4370 To use WhatsApp for Business, initialize <a href="#Form/Twilio Settings">Twilio Settings</a>. A WhatsApp for Business használatához inicializálja a <a href="#Form/Twilio Settings">Twilio beállításokat</a> .
4371 To use Slack Channel, add a <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook URL</a>. A Slack Channel használatához adjon hozzá egy <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook URL-t</a> .
4500 {0} are currently {1} {0} jelenleg {1}
4501 Currently Replying Jelenleg válaszol
4502 created {0} létrehozta: {0}
Make a call Hívást kezdeményezni
4503 Change változás Coins
4504 Too Many Requests Túl sok kérés
4505 Invalid Authorization headers, add a token with a prefix from one of the following: {0}. Érvénytelen engedélyezési fejlécek, adjon hozzá egy tokent egy előtaggal a következők egyikéből: {0}
4664 Negative Value Negatív érték
4665 Authentication failed while receiving emails from Email Account: {0}. A hitelesítés meghiúsult, amikor e-maileket kapott az e-mail fiókból: {0}.
4666 Message from server: {0} Üzenet a szerverről: {0}
4667 Add Row Sor hozzáadás
4668 Analytics Elemzés
4669 Anonymous Névtelen
4670 Author Szerző
4671 Basic Alapvető
4672 Billing Számlázás
4673 Contact Details Kapcsolattartó részletei
4674 Datetime Dátum
4675 Enable Engedélyezve
4676 Event Esemény
4677 Full Tele
4678 Insert Beszúr
4679 Interests Érdekek
4680 Language Name Nyelv neve
4681 License Licenc
4682 Limit Korlátozás
4683 Log Napló
4684 Meeting Találkozó
4685 My Account Fiókom
4686 Newsletters hírlevelek
4687 Password Jelszó
4688 Pincode Irányítószám
4689 Please select prefix first Kérjük, válasszon prefix először
4690 Please set Email Address Kérjük, állítsa be az e-mail címet
4691 Please set the series to be used. Kérjük, állítsa be a használni kívánt sorozatokat.
4692 Portal Settings Portál Beállítások
4693 Reference Owner Referencia Képviselő
4694 Region Régió
4695 Report Builder Jelentéskészítő
4696 Sample Minta
4697 Saved Mentett
4698 Series {0} already used in {1} {0} sorozat már használva van itt: {1}
4699 Set as Default Beállítás alapértelmezettnek
4700 Shipping Szállítás
4701 Standard Általános
4702 Test Teszt
4703 Traceback Visszakövet
4704 Unable to find DocType {0} Nem sikerült megtalálni ezt: DocType {0}
4705 Weekdays Hétköznapok
4706 Workflow Munkafolyamat
4707 You need to be logged in to access this page Be kell jelentkezie, hogy elérje ezt az oldalt
4708 County Megye
4709 Images Képek
4710 Office Iroda
4711 Passive Passzív
4712 Permanent Állandó
4713 Plant Géppark
4714 Postal Postai
4715 Previous Előző
4716 Shop Bolt
4717 Subsidiary Leányvállalat
4718 There is some problem with the file url: {0} Van valami probléma a fájl URL-el: {0}
4719 Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0} Speciális karakterek, kivéve &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; És &quot;}}&quot;, a sorozatok elnevezése nem megengedett {0}
4720 Export Type Export típusa
4721 Last Sync On Utolsó szinkronizálás ekkor
4722 Webhook Secret Webhook titkos
4723 Back to Home Vissza a főoldalra
4724 Customize Testreszabás
4725 Edit Profile Profil szerkesztése
4726 File Manager Fájlkezelő
4727 Invite as User Meghívás Felhasználóként
4728 Newsletter Hírlevél
4729 Printing Nyomtatás
4730 Publish közzétesz
4731 Refreshing Üdítő
4732 Select All Mindent kijelöl
4733 Set Beállítás
4734 Setup Wizard Telepítés varázsló
4735 Update Details Frissítse a részleteket
4736 You Ön
4737 {0} Name {0} Név
4738 Bold Bátor
4739 Center Központ
4740 Comment Megjegyzés
4741 Not Found Nem található
4742 User Id Felhasználói azonosító
4743 Position Pozíció
4744 Crop Termés
4745 Topic Téma
4746 Public Transport Tömegközlekedés
4747 Request Data Adat kérés
4748 Steps Lépések
4749 Reference DocType Referencia DocType
4750 Select Transaction Válasszon Tranzakciót
4751 Help HTML Súgó HTML
4752 Series List for this Transaction Sorozat List ehhez a tranzakcióhoz
4753 User must always select Felhasználónak mindig választani kell
4754 Check this if you want to force the user to select a series before saving. There will be no default if you check this. Jelölje be, ha azt akarja, hogy a felhasználó válassza ki a sorozatokat mentés előtt. Nem lesz alapértelmezett, ha bejelöli.
4755 Prefix Előtag
4756 This is the number of the last created transaction with this prefix Ez az a szám, az ilyen előtaggal utoljára létrehozott tranzakciónak
4757 Update Series Number Széria szám frissítése
4758 Validation Error Ellenőrzési hiba
4759 Andaman and Nicobar Islands Andamán és Nicobar-szigetek
4760 Andhra Pradesh Andhra Pradesh
4761 Arunachal Pradesh Arunachal Pradesh
4762 Assam Assam
4763 Bihar Bihar
4764 Chandigarh Chandigarh
4765 Chhattisgarh Chhattisgarh
4766 Dadra and Nagar Haveli Dadra és Nagar Haveli
4767 Daman and Diu Daman és Diu
4768 Delhi Delhi
4769 Goa Goa
4770 Gujarat Gujarat
4771 Haryana Haryana
4772 Himachal Pradesh Himachal Pradesh
4773 Jammu and Kashmir Dzsammu és Kasmír
4774 Jharkhand Jharkhand
4775 Karnataka Karnataka
4776 Kerala Kerala
4777 Lakshadweep Islands Lakshadweep-szigetek
4778 Madhya Pradesh Madhya Pradesh
4779 Maharashtra Maharashtra
4780 Manipur Manipur
4781 Meghalaya Meghalaya
4782 Mizoram Mizoram
4783 Nagaland Nagaland
4784 Odisha Odisha
4785 Other Territory Egyéb terület
4786 Pondicherry Pondicherry
4787 Punjab Pandzsáb
4788 Rajasthan Radzsasztán
4789 Sikkim Sikkim
4790 Tamil Nadu Tamil Nadu
4791 Telangana Telangana
4792 Tripura Tripura
4793 Uttar Pradesh Uttar Pradesh
4794 Uttarakhand Uttarakhand
4795 West Bengal Nyugat-Bengál
4796 Published on Megjelent
4797 Bottom Alsó
4798 Top Felül

View file

@ -9,7 +9,6 @@ Action,Tindakan,
Actions,Tindakan,
Active,Aktif,
Add,Tambahkan,
Add Comment,Tambahkan komentar,
Add Row,Menambahkan Baris,
Address,Alamat,
Address Line 2,Alamat Baris 2,
@ -144,7 +143,6 @@ Monday,Senin,
Monthly,Bulanan,
More,Lanjut,
More Information,Informasi lebih,
More...,Lebih...,
Move,Bergerak,
My Account,Akun Saya,
New Address,Alamat baru,
@ -157,7 +155,6 @@ No items found.,Tidak ada barang yang ditemukan.,
None,Tidak ada,
Not Permitted,Tidak Diijinkan,
Not active,Tidak aktif,
Notes,Catatan,
Number,Jumlah,
Online,On line,
Operation,Operasi,
@ -167,17 +164,12 @@ Owner,Pemilik,
Page Missing or Moved,Halaman hilang atau dipindahkan,
Parameter,Parameter,
Password,Kata sandi,
Payment Gateway,Gerbang pembayaran,
Payment Gateway Name,Nama Gateway Pembayaran,
Payments,2. Payment (Pembayaran),
Period,periode,
Pincode,Kode PIN,
Plan Name,Nama rencana,
Please enable pop-ups,Aktifkan pop-up,
Please select Company,Silakan pilih Perusahaan,
Please select {0},Silahkan pilih {0},
Please set Email Address,Silahkan tetapkan Alamat Email,
Portal,Pintu gerbang,
Portal Settings,Pengaturan Portal,
Preview,Pratayang,
Primary,Utama,
@ -222,7 +214,6 @@ Salutation,Panggilan,
Sample,Sampel,
Saturday,Sabtu,
Saved,Disimpan,
Scan Barcode,Pindai Kode Batang,
Scheduled,Dijadwalkan,
Search,Pencarian,
Secret Key,Kunci rahasia,
@ -237,7 +228,6 @@ Settings,Pengaturan,
Shipping,pengiriman,
Short Name,Nama pendek,
Slideshow,Rangkai Salindia,
Some information is missing,Beberapa informasi yang hilang,
Source,Sumber,
Source Name,sumber Nama,
Standard,Standar,
@ -247,7 +237,6 @@ State,Negara,
Stopped,Terhenti,
Subject,Perihal,
Submit,Kirim,
Successful,Sukses,
Summary,Ringkasan,
Sunday,Minggu,
System Manager,System Manager,
@ -260,11 +249,9 @@ The page you are looking for is missing. This could be because it is moved or th
Timespan,Rentang waktu,
To,Untuk,
To Date,Untuk Tanggal,
Tools,Alat-alat,
Traceback,Melacak kembali,
URL,URL,
Unsubscribed,Berhenti berlangganan,
Use Sandbox,Gunakan Sandbox,
User,Pengguna,
User ID,ID Pengguna,
Users,Pengguna,
@ -569,7 +556,6 @@ Bulk Delete,Hapus Massal,
Bulk Edit {0},Sunting Massal {0},
Bulk Rename,Rename massal,
Bulk Update,Perbarui Massal,
Busy,Sibuk,
Button,Tombol,
Button Help,Tombol Bantuan,
Button Label,Tombol Label,
@ -706,7 +692,6 @@ Compiled Successfully,Berhasil dikompilasi,
Complete By,Lengkap Dengan,
Complete Registration,Pendaftaran Lengkap,
Complete Setup,Pengaturan Lengkap,
Completed By,Diselesaikan oleh,
Compose Email,Menulis Surel,
Condition Detail,Detail kondisi,
Conditions,Kondisi,
@ -1691,7 +1676,7 @@ Not a valid user,Tidak pengguna yang valid,
Not a zip file,Bukan file zip,
Not allowed for {0}: {1},Tidak diizinkan untuk {0}: {1},
"You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4}","Anda tidak diizinkan untuk mengakses {0} karena itu terkait dengan {1} '{2}' di baris {3}, bidang {4}",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},"Anda tidak diizinkan untuk mengakses catatan {0} ini karena itu terkait dengan {1} '{2}' di bidang {3}",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},Anda tidak diizinkan untuk mengakses catatan {0} ini karena itu terkait dengan {1} '{2}' di bidang {3},
Not allowed to Import,Tidak diizinkan untuk Impor,
Not allowed to change {0} after submission,Tidak diperbolehkan untuk mengubah {0} setelah pengiriman,
Not allowed to print cancelled documents,Tidak diizinkan untuk mencetak dokumen dibatalkan,
@ -1819,7 +1804,6 @@ Path to private Key File,Path ke File Kunci pribadi,
PayPal Settings,Pengaturan PayPal,
PayPal payment gateway settings,pengaturan gateway pembayaran PayPal,
Payment Cancelled,Pembayaran Dibatalkan,
Payment Failed,Pembayaran gagal,
Payment Success,Sukses pembayaran,
Pending Approval,Menunggu persetujuan,
Pending Verification,Verifikasi Tertunda,
@ -3216,7 +3200,6 @@ Click on the link below to approve the request,Klik tautan di bawah untuk menyet
Click on the lock icon to toggle public/private,Klik pada ikon kunci untuk beralih publik / pribadi,
Click on {0} to generate Refresh Token.,Klik pada {0} untuk menghasilkan Refresh Token.,
Close Condition,Kondisi Tutup,
Column {0},Kolom {0},
Columns / Fields,Kolom / Bidang,
"Configure notifications for mentions, assignments, energy points and more.","Konfigurasikan pemberitahuan untuk menyebutkan, tugas, titik energi, dan lainnya.",
Contact Email,Email Kontak,
@ -3298,7 +3281,6 @@ Failed to create an Event Consumer or an Event Consumer for the current site is
Failure,Kegagalan,
Fetching default Global Search documents.,Mengambil dokumen Penelusuran Global default.,
Fetching posts...,Mengambil pos ...,
Field Mapping,Pemetaan Bidang,
Field To Check,Field Untuk Memeriksa,
File Information,Informasi File,
Filter By,Filter By,
@ -3453,7 +3435,6 @@ No posts yet,Belum ada postingan,
No records will be exported,Tidak ada catatan yang akan diekspor,
No results found for {0} in Global Search,Tidak ada hasil yang ditemukan untuk {0} di Pencarian Global,
No user found,Tidak ada pengguna yang ditemukan,
Not Specified,Tidak ditentukan,
Notification Log,Log Pemberitahuan,
Notification Settings,Pengaturan pemberitahuan,
Notification Subscribed Document,Pemberitahuan Dokumen Berlangganan,
@ -3609,7 +3590,6 @@ Untitled Column,Kolom Tanpa Judul,
Untranslated,Yg tak diterjemahkan,
Upcoming Events,Acara Mendatang,
Update Existing Records,Perbarui Catatan yang Ada,
Update Type,Jenis Pembaruan,
Updated To A New Version 🎉,Diperbarui Ke Versi Baru 🎉,
"Updating {0} of {1}, {2}","Memperbarui {0} dari {1}, {2}",
Upload file,Unggah data,
@ -3716,19 +3696,16 @@ Designation,Penunjukan,
Disabled,Dinonaktifkan,
Doctype,DOCTYPE,
Download Template,Unduh Template,
Dr,Dr,
Due Date,Tanggal Jatuh Tempo,
Duplicate,Duplikat,
Edit Profile,Edit Profile,
Email,Surel,
End Time,Waktu Akhir,
Enter Value,Masukkan Nilai,
Entity Type,Jenis Entitas,
Error,Kesalahan,
Expired,Expired,
Export,Ekspor,
Export not allowed. You need {0} role to export.,Ekspor tidak diperbolehkan. Anda perlu {0} peran untuk ekspor.,
Fetching...,Mengambil ...,
Field,Bidang,
File Manager,File Manager,
Filters,Penyaring,
@ -3743,11 +3720,8 @@ Import Data from CSV / Excel files.,Impor Data dari file CSV / Excel.,
In Progress,Sedang berlangsung,
Intermediate,Menengah,
Invite as User,Undang sebagai Pengguna,
"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Tampaknya ada masalah dengan konfigurasi strip server. Jika terjadi kegagalan, jumlah itu akan dikembalikan ke akun Anda.",
Loading...,Memuat...,
Location,Lokasi,
Looks like someone sent you to an incomplete URL. Please ask them to look into it.,Sepertinya seseorang mengirimkan ke URL yang tidak lengkap. Silakan meminta mereka untuk melihat ke dalamnya.,
Master,Nahkoda,
Message,Pesan,
Missing Values Required,Hilang Nilai Diperlukan,
Mobile No,Ponsel Tidak ada,
@ -3759,7 +3733,6 @@ Note,Catatan,
Offline,Offline,
Open,Buka,
Page {0} of {1},Halaman {0} dari {1},
Pay,Membayar,
Pending,Menunggu,
Phone,Telepon,
Please click on the following link to set your new password,Silahkan klik pada link berikut untuk mengatur password baru anda,
@ -3809,7 +3782,6 @@ Welcome to {0},Selamat Datang di {0},
Year,Tahun,
Yearly,Tahunan,
You,Anda,
You can also copy-paste this link in your browser,Anda juga dapat copy-paste link ini di browser Anda,
and,dan,
{0} Name,{0} Nama,
{0} is required,{0} diperlukan,
@ -4113,7 +4085,6 @@ Custom SCSS,SCSS Kustom,
Navbar,Navbar,
Source Message,Pesan Sumber,
Translated Message,Pesan yang Diterjemahkan,
Verified By,Diverifikasi oleh,
Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand.,Menggunakan konsol ini dapat memungkinkan penyerang meniru identitas Anda dan mencuri informasi Anda. Jangan masukkan atau tempel kode yang tidak Anda mengerti.,
{0} m,{0} m,
{0} h,{0} j,
@ -4146,7 +4117,6 @@ Collapse,Jatuh,
{0} is not a valid Name,{0} bukanlah Nama yang valid,
Your system is being updated. Please refresh again after a few moments.,Sistem Anda sedang diperbarui. Harap segarkan lagi setelah beberapa saat.,
{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first.,{0} {1}: Rekaman yang Dikirim tidak dapat dihapus. Anda harus {2} Membatalkan {3} dulu.,
Invalid naming series (. missing) for {0},Seri penamaan tidak valid (. Hilang) untuk {0},
Error has occurred in {0},Galat telah terjadi di {0},
Status Updated,Status Diperbarui,
You can also copy-paste this {0} to your browser,Anda juga dapat menyalin-menempel ini {0} ke peramban Anda,
@ -4168,14 +4138,11 @@ Is Billing Contact,Apakah Kontak Penagihan,
Address And Contacts,Alamat Dan Kontak,
Lead Conversion Time,Lead Conversion Time,
Due Date Based On,Tanggal Jatuh Tempo Berdasarkan,
Phone Number,Nomor telepon,
Linked Documents,Dokumen Tertaut,
Account SID,SID Akun,
Steps,Langkah,
email,surel,
Component,Komponen,
Subtitle,Subtitle,
Global Defaults,Standar Global,
Prefix,Awalan,
Is Public,Apakah Publik,
This chart will be available to all Users if this is set,Bagan ini akan tersedia untuk semua Pengguna jika ini disetel,
@ -4362,7 +4329,6 @@ Dynamic Filters Section,Bagian Filter Dinamis,
Please create Card first,Harap buat Kartu terlebih dahulu,
Onboarding Permission,Izin Orientasi,
Onboarding Step,Langkah Orientasi,
Is Mandatory,Apakah Wajib,
Is Skipped,Apakah Dilewati,
Create Entry,Buat Entri,
Update Settings,Perbarui Pengaturan,
@ -4400,7 +4366,6 @@ Message (HTML),Pesan (HTML),
Send Attachments,Kirim Lampiran,
Testing,Menguji,
System Notification,Pemberitahuan Sistem,
WhatsApp,Ada apa,
Twilio Number,Nomor Twilio,
"To use WhatsApp for Business, initialize <a href=""#Form/Twilio Settings"">Twilio Settings</a>.","Untuk menggunakan WhatsApp for Business, lakukan inisialisasi <a href=""#Form/Twilio Settings"">Pengaturan Twilio</a> .",
"To use Slack Channel, add a <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL</a>.","Untuk menggunakan Slack Channel, tambahkan <a href=""#List/Slack%20Webhook%20URL/List"">URL Webhook Slack</a> .",
@ -4535,7 +4500,6 @@ Add to ToDo,Tambahkan ke ToDo,
{0} are currently {1},{0} saat ini {1},
Currently Replying,Saat Membalas,
created {0},dibuat {0},
Make a call,Menelpon,
Change,Perubahan,Coins
Too Many Requests,Terlalu Banyak Permintaan,
"Invalid Authorization headers, add a token with a prefix from one of the following: {0}.","Header Otorisasi tidak valid, tambahkan token dengan awalan dari salah satu dari berikut ini: {0}.",
@ -4700,3 +4664,135 @@ Value cannot be negative for {0}: {1},Nilai tidak boleh negatif untuk {0}: {1},
Negative Value,Nilai Negatif,
Authentication failed while receiving emails from Email Account: {0}.,Autentikasi gagal saat menerima email dari Akun Email: {0}.,
Message from server: {0},Pesan dari server: {0},
Add Row,Menambahkan Baris,
Analytics,Analytics,
Anonymous,Anonim,
Author,Penulis,
Basic,Dasar,
Billing,Penagihan,
Contact Details,Kontak Detail,
Datetime,Datetime,
Enable,Aktifkan,
Event,Acara,
Full,Penuh,
Insert,Insert,
Interests,minat,
Language Name,Nama bahasa,
License,Lisensi,
Limit,Membatasi,
Log,Log,
Meeting,Pertemuan,
My Account,Akun Saya,
Newsletters,Surat edaran,
Password,Kata sandi,
Pincode,Kode PIN,
Please select prefix first,Silakan pilih awalan terlebih dahulu,
Please set Email Address,Silahkan tetapkan Alamat Email,
Please set the series to be used.,Silakan mengatur seri yang akan digunakan.,
Portal Settings,Pengaturan Portal,
Reference Owner,referensi Pemilik,
Region,Wilayah,
Report Builder,Report Builder,
Sample,Sampel,
Saved,Disimpan,
Series {0} already used in {1},Seri {0} sudah digunakan dalam {1},
Set as Default,Set sebagai Default,
Shipping,pengiriman,
Standard,Standar,
Test,tes,
Traceback,Melacak kembali,
Unable to find DocType {0},Tidak dapat menemukan DocType {0},
Weekdays,Hari kerja,
Workflow,Alur Kerja,
You need to be logged in to access this page,Anda harus login untuk mengakses halaman ini,
County,daerah,
Images,Gambar,
Office,Kantor,
Passive,Pasif,
Permanent,Permanen,
Plant,Tanaman,
Postal,Pos,
Previous,Kembali,
Shop,Toko,
Subsidiary,Anak Perusahaan,
There is some problem with the file url: {0},Ada beberapa masalah dengan url berkas: {0},
"Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}","Karakter Khusus kecuali &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; Dan &quot;}}&quot; tidak diizinkan dalam rangkaian penamaan {0}",
Export Type,Jenis ekspor,
Last Sync On,Sinkron Terakhir Aktif,
Webhook Secret,Rahasia Webhook,
Back to Home,Kembali ke rumah,
Customize,Sesuaikan,
Edit Profile,Edit Profile,
File Manager,File Manager,
Invite as User,Undang sebagai Pengguna,
Newsletter,Laporan berkala,
Printing,Pencetakan,
Publish,Menerbitkan,
Refreshing,Segar,
Select All,Pilih semua,
Set,Tetapkan,
Setup Wizard,Setup Wizard,
Update Details,Perbarui Rincian,
You,Anda,
{0} Name,{0} Nama,
Bold,Mencolok,
Center,Pusat,
Comment,Komentar,
Not Found,Tidak ditemukan,
User Id,Identitas pengguna,
Position,Posisi,
Crop,Tanaman,
Topic,Tema,
Public Transport,Transportasi umum,
Request Data,Meminta Data,
Steps,Langkah,
Reference DocType,Referensi DocType,
Select Transaction,Pilih Transaksi,
Help HTML,Bantuan HTML,
Series List for this Transaction,Daftar Series Transaksi ini,
User must always select,Pengguna harus selalu pilih,
Check this if you want to force the user to select a series before saving. There will be no default if you check this.,Periksa ini jika Anda ingin untuk memaksa pengguna untuk memilih seri sebelum menyimpan. Tidak akan ada default jika Anda memeriksa ini.,
Prefix,Awalan,
This is the number of the last created transaction with this prefix,Ini adalah jumlah transaksi yang diciptakan terakhir dengan awalan ini,
Update Series Number,Perbarui Nomor Seri,
Validation Error,Kesalahan Validasi,
Andaman and Nicobar Islands,Kepulauan Andaman dan Nicobar,
Andhra Pradesh,Andhra Pradesh,
Arunachal Pradesh,Arunachal Pradesh,
Assam,Assam,
Bihar,Bihar,
Chandigarh,Chandigarh,
Chhattisgarh,Chhattisgarh,
Dadra and Nagar Haveli,Dadra dan Nagar Haveli,
Daman and Diu,Daman dan Diu,
Delhi,Delhi,
Goa,Goa,
Gujarat,Gujarat,
Haryana,Haryana,
Himachal Pradesh,Himachal Pradesh,
Jammu and Kashmir,Jammu dan Kashmir,
Jharkhand,Jharkhand,
Karnataka,Karnataka,
Kerala,Kerala,
Lakshadweep Islands,Kepulauan Lakshadweep,
Madhya Pradesh,Madhya Pradesh,
Maharashtra,Maharashtra,
Manipur,Manipur,
Meghalaya,Meghalaya,
Mizoram,Mizoram,
Nagaland,Nagaland,
Odisha,Odisha,
Other Territory,Wilayah Lain,
Pondicherry,Pondicherry,
Punjab,Punjab,
Rajasthan,Rajasthan,
Sikkim,Sikkim,
Tamil Nadu,Tamil Nadu,
Telangana,Telangana,
Tripura,Tripura,
Uttar Pradesh,Uttar Pradesh,
Uttarakhand,Uttarakhand,
West Bengal,Benggala Barat,
Published on,Diterbitkan di,
Bottom,Bawah,
Top,Puncak,

1 A4 A4
9 Actions Tindakan
10 Active Aktif
11 Add Tambahkan
Add Comment Tambahkan komentar
12 Add Row Menambahkan Baris
13 Address Alamat
14 Address Line 2 Alamat Baris 2
143 Monthly Bulanan
144 More Lanjut
145 More Information Informasi lebih
More... Lebih...
146 Move Bergerak
147 My Account Akun Saya
148 New Address Alamat baru
155 None Tidak ada
156 Not Permitted Tidak Diijinkan
157 Not active Tidak aktif
Notes Catatan
158 Number Jumlah
159 Online On line
160 Operation Operasi
164 Page Missing or Moved Halaman hilang atau dipindahkan
165 Parameter Parameter
166 Password Kata sandi
Payment Gateway Gerbang pembayaran
Payment Gateway Name Nama Gateway Pembayaran
Payments 2. Payment (Pembayaran)
167 Period periode
168 Pincode Kode PIN
Plan Name Nama rencana
169 Please enable pop-ups Aktifkan pop-up
170 Please select Company Silakan pilih Perusahaan
171 Please select {0} Silahkan pilih {0}
172 Please set Email Address Silahkan tetapkan Alamat Email
Portal Pintu gerbang
173 Portal Settings Pengaturan Portal
174 Preview Pratayang
175 Primary Utama
214 Sample Sampel
215 Saturday Sabtu
216 Saved Disimpan
Scan Barcode Pindai Kode Batang
217 Scheduled Dijadwalkan
218 Search Pencarian
219 Secret Key Kunci rahasia
228 Shipping pengiriman
229 Short Name Nama pendek
230 Slideshow Rangkai Salindia
Some information is missing Beberapa informasi yang hilang
231 Source Sumber
232 Source Name sumber Nama
233 Standard Standar
237 Stopped Terhenti
238 Subject Perihal
239 Submit Kirim
Successful Sukses
240 Summary Ringkasan
241 Sunday Minggu
242 System Manager System Manager
249 Timespan Rentang waktu
250 To Untuk
251 To Date Untuk Tanggal
Tools Alat-alat
252 Traceback Melacak kembali
253 URL URL
254 Unsubscribed Berhenti berlangganan
Use Sandbox Gunakan Sandbox
255 User Pengguna
256 User ID ID Pengguna
257 Users Pengguna
556 Bulk Edit {0} Sunting Massal {0}
557 Bulk Rename Rename massal
558 Bulk Update Perbarui Massal
Busy Sibuk
559 Button Tombol
560 Button Help Tombol Bantuan
561 Button Label Tombol Label
692 Complete By Lengkap Dengan
693 Complete Registration Pendaftaran Lengkap
694 Complete Setup Pengaturan Lengkap
Completed By Diselesaikan oleh
695 Compose Email Menulis Surel
696 Condition Detail Detail kondisi
697 Conditions Kondisi
1676 Not a zip file Bukan file zip
1677 Not allowed for {0}: {1} Tidak diizinkan untuk {0}: {1}
1678 You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4} Anda tidak diizinkan untuk mengakses {0} karena itu terkait dengan {1} '{2}' di baris {3}, bidang {4}
1679 You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3} Anda tidak diizinkan untuk mengakses catatan {0} ini karena itu terkait dengan {1} '{2}' di bidang {3}
1680 Not allowed to Import Tidak diizinkan untuk Impor
1681 Not allowed to change {0} after submission Tidak diperbolehkan untuk mengubah {0} setelah pengiriman
1682 Not allowed to print cancelled documents Tidak diizinkan untuk mencetak dokumen dibatalkan
1804 PayPal Settings Pengaturan PayPal
1805 PayPal payment gateway settings pengaturan gateway pembayaran PayPal
1806 Payment Cancelled Pembayaran Dibatalkan
Payment Failed Pembayaran gagal
1807 Payment Success Sukses pembayaran
1808 Pending Approval Menunggu persetujuan
1809 Pending Verification Verifikasi Tertunda
3200 Click on the lock icon to toggle public/private Klik pada ikon kunci untuk beralih publik / pribadi
3201 Click on {0} to generate Refresh Token. Klik pada {0} untuk menghasilkan Refresh Token.
3202 Close Condition Kondisi Tutup
Column {0} Kolom {0}
3203 Columns / Fields Kolom / Bidang
3204 Configure notifications for mentions, assignments, energy points and more. Konfigurasikan pemberitahuan untuk menyebutkan, tugas, titik energi, dan lainnya.
3205 Contact Email Email Kontak
3281 Failure Kegagalan
3282 Fetching default Global Search documents. Mengambil dokumen Penelusuran Global default.
3283 Fetching posts... Mengambil pos ...
Field Mapping Pemetaan Bidang
3284 Field To Check Field Untuk Memeriksa
3285 File Information Informasi File
3286 Filter By Filter By
3435 No records will be exported Tidak ada catatan yang akan diekspor
3436 No results found for {0} in Global Search Tidak ada hasil yang ditemukan untuk {0} di Pencarian Global
3437 No user found Tidak ada pengguna yang ditemukan
Not Specified Tidak ditentukan
3438 Notification Log Log Pemberitahuan
3439 Notification Settings Pengaturan pemberitahuan
3440 Notification Subscribed Document Pemberitahuan Dokumen Berlangganan
3590 Untranslated Yg tak diterjemahkan
3591 Upcoming Events Acara Mendatang
3592 Update Existing Records Perbarui Catatan yang Ada
Update Type Jenis Pembaruan
3593 Updated To A New Version 🎉 Diperbarui Ke Versi Baru 🎉
3594 Updating {0} of {1}, {2} Memperbarui {0} dari {1}, {2}
3595 Upload file Unggah data
3696 Disabled Dinonaktifkan
3697 Doctype DOCTYPE
3698 Download Template Unduh Template
Dr Dr
3699 Due Date Tanggal Jatuh Tempo
3700 Duplicate Duplikat
3701 Edit Profile Edit Profile
3702 Email Surel
End Time Waktu Akhir
3703 Enter Value Masukkan Nilai
3704 Entity Type Jenis Entitas
3705 Error Kesalahan
3706 Expired Expired
3707 Export Ekspor
3708 Export not allowed. You need {0} role to export. Ekspor tidak diperbolehkan. Anda perlu {0} peran untuk ekspor.
Fetching... Mengambil ...
3709 Field Bidang
3710 File Manager File Manager
3711 Filters Penyaring
3720 In Progress Sedang berlangsung
3721 Intermediate Menengah
3722 Invite as User Undang sebagai Pengguna
It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account. Tampaknya ada masalah dengan konfigurasi strip server. Jika terjadi kegagalan, jumlah itu akan dikembalikan ke akun Anda.
3723 Loading... Memuat...
3724 Location Lokasi
Looks like someone sent you to an incomplete URL. Please ask them to look into it. Sepertinya seseorang mengirimkan ke URL yang tidak lengkap. Silakan meminta mereka untuk melihat ke dalamnya.
Master Nahkoda
3725 Message Pesan
3726 Missing Values Required Hilang Nilai Diperlukan
3727 Mobile No Ponsel Tidak ada
3733 Offline Offline
3734 Open Buka
3735 Page {0} of {1} Halaman {0} dari {1}
Pay Membayar
3736 Pending Menunggu
3737 Phone Telepon
3738 Please click on the following link to set your new password Silahkan klik pada link berikut untuk mengatur password baru anda
3782 Year Tahun
3783 Yearly Tahunan
3784 You Anda
You can also copy-paste this link in your browser Anda juga dapat copy-paste link ini di browser Anda
3785 and dan
3786 {0} Name {0} Nama
3787 {0} is required {0} diperlukan
4085 Navbar Navbar
4086 Source Message Pesan Sumber
4087 Translated Message Pesan yang Diterjemahkan
Verified By Diverifikasi oleh
4088 Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand. Menggunakan konsol ini dapat memungkinkan penyerang meniru identitas Anda dan mencuri informasi Anda. Jangan masukkan atau tempel kode yang tidak Anda mengerti.
4089 {0} m {0} m
4090 {0} h {0} j
4117 {0} is not a valid Name {0} bukanlah Nama yang valid
4118 Your system is being updated. Please refresh again after a few moments. Sistem Anda sedang diperbarui. Harap segarkan lagi setelah beberapa saat.
4119 {0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first. {0} {1}: Rekaman yang Dikirim tidak dapat dihapus. Anda harus {2} Membatalkan {3} dulu.
Invalid naming series (. missing) for {0} Seri penamaan tidak valid (. Hilang) untuk {0}
4120 Error has occurred in {0} Galat telah terjadi di {0}
4121 Status Updated Status Diperbarui
4122 You can also copy-paste this {0} to your browser Anda juga dapat menyalin-menempel ini {0} ke peramban Anda
4138 Address And Contacts Alamat Dan Kontak
4139 Lead Conversion Time Lead Conversion Time
4140 Due Date Based On Tanggal Jatuh Tempo Berdasarkan
Phone Number Nomor telepon
4141 Linked Documents Dokumen Tertaut
Account SID SID Akun
4142 Steps Langkah
4143 email surel
4144 Component Komponen
4145 Subtitle Subtitle
Global Defaults Standar Global
4146 Prefix Awalan
4147 Is Public Apakah Publik
4148 This chart will be available to all Users if this is set Bagan ini akan tersedia untuk semua Pengguna jika ini disetel
4329 Please create Card first Harap buat Kartu terlebih dahulu
4330 Onboarding Permission Izin Orientasi
4331 Onboarding Step Langkah Orientasi
Is Mandatory Apakah Wajib
4332 Is Skipped Apakah Dilewati
4333 Create Entry Buat Entri
4334 Update Settings Perbarui Pengaturan
4366 Send Attachments Kirim Lampiran
4367 Testing Menguji
4368 System Notification Pemberitahuan Sistem
WhatsApp Ada apa
4369 Twilio Number Nomor Twilio
4370 To use WhatsApp for Business, initialize <a href="#Form/Twilio Settings">Twilio Settings</a>. Untuk menggunakan WhatsApp for Business, lakukan inisialisasi <a href="#Form/Twilio Settings">Pengaturan Twilio</a> .
4371 To use Slack Channel, add a <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook URL</a>. Untuk menggunakan Slack Channel, tambahkan <a href="#List/Slack%20Webhook%20URL/List">URL Webhook Slack</a> .
4500 {0} are currently {1} {0} saat ini {1}
4501 Currently Replying Saat Membalas
4502 created {0} dibuat {0}
Make a call Menelpon
4503 Change Perubahan Coins
4504 Too Many Requests Terlalu Banyak Permintaan
4505 Invalid Authorization headers, add a token with a prefix from one of the following: {0}. Header Otorisasi tidak valid, tambahkan token dengan awalan dari salah satu dari berikut ini: {0}.
4664 Negative Value Nilai Negatif
4665 Authentication failed while receiving emails from Email Account: {0}. Autentikasi gagal saat menerima email dari Akun Email: {0}.
4666 Message from server: {0} Pesan dari server: {0}
4667 Add Row Menambahkan Baris
4668 Analytics Analytics
4669 Anonymous Anonim
4670 Author Penulis
4671 Basic Dasar
4672 Billing Penagihan
4673 Contact Details Kontak Detail
4674 Datetime Datetime
4675 Enable Aktifkan
4676 Event Acara
4677 Full Penuh
4678 Insert Insert
4679 Interests minat
4680 Language Name Nama bahasa
4681 License Lisensi
4682 Limit Membatasi
4683 Log Log
4684 Meeting Pertemuan
4685 My Account Akun Saya
4686 Newsletters Surat edaran
4687 Password Kata sandi
4688 Pincode Kode PIN
4689 Please select prefix first Silakan pilih awalan terlebih dahulu
4690 Please set Email Address Silahkan tetapkan Alamat Email
4691 Please set the series to be used. Silakan mengatur seri yang akan digunakan.
4692 Portal Settings Pengaturan Portal
4693 Reference Owner referensi Pemilik
4694 Region Wilayah
4695 Report Builder Report Builder
4696 Sample Sampel
4697 Saved Disimpan
4698 Series {0} already used in {1} Seri {0} sudah digunakan dalam {1}
4699 Set as Default Set sebagai Default
4700 Shipping pengiriman
4701 Standard Standar
4702 Test tes
4703 Traceback Melacak kembali
4704 Unable to find DocType {0} Tidak dapat menemukan DocType {0}
4705 Weekdays Hari kerja
4706 Workflow Alur Kerja
4707 You need to be logged in to access this page Anda harus login untuk mengakses halaman ini
4708 County daerah
4709 Images Gambar
4710 Office Kantor
4711 Passive Pasif
4712 Permanent Permanen
4713 Plant Tanaman
4714 Postal Pos
4715 Previous Kembali
4716 Shop Toko
4717 Subsidiary Anak Perusahaan
4718 There is some problem with the file url: {0} Ada beberapa masalah dengan url berkas: {0}
4719 Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0} Karakter Khusus kecuali &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; Dan &quot;}}&quot; tidak diizinkan dalam rangkaian penamaan {0}
4720 Export Type Jenis ekspor
4721 Last Sync On Sinkron Terakhir Aktif
4722 Webhook Secret Rahasia Webhook
4723 Back to Home Kembali ke rumah
4724 Customize Sesuaikan
4725 Edit Profile Edit Profile
4726 File Manager File Manager
4727 Invite as User Undang sebagai Pengguna
4728 Newsletter Laporan berkala
4729 Printing Pencetakan
4730 Publish Menerbitkan
4731 Refreshing Segar
4732 Select All Pilih semua
4733 Set Tetapkan
4734 Setup Wizard Setup Wizard
4735 Update Details Perbarui Rincian
4736 You Anda
4737 {0} Name {0} Nama
4738 Bold Mencolok
4739 Center Pusat
4740 Comment Komentar
4741 Not Found Tidak ditemukan
4742 User Id Identitas pengguna
4743 Position Posisi
4744 Crop Tanaman
4745 Topic Tema
4746 Public Transport Transportasi umum
4747 Request Data Meminta Data
4748 Steps Langkah
4749 Reference DocType Referensi DocType
4750 Select Transaction Pilih Transaksi
4751 Help HTML Bantuan HTML
4752 Series List for this Transaction Daftar Series Transaksi ini
4753 User must always select Pengguna harus selalu pilih
4754 Check this if you want to force the user to select a series before saving. There will be no default if you check this. Periksa ini jika Anda ingin untuk memaksa pengguna untuk memilih seri sebelum menyimpan. Tidak akan ada default jika Anda memeriksa ini.
4755 Prefix Awalan
4756 This is the number of the last created transaction with this prefix Ini adalah jumlah transaksi yang diciptakan terakhir dengan awalan ini
4757 Update Series Number Perbarui Nomor Seri
4758 Validation Error Kesalahan Validasi
4759 Andaman and Nicobar Islands Kepulauan Andaman dan Nicobar
4760 Andhra Pradesh Andhra Pradesh
4761 Arunachal Pradesh Arunachal Pradesh
4762 Assam Assam
4763 Bihar Bihar
4764 Chandigarh Chandigarh
4765 Chhattisgarh Chhattisgarh
4766 Dadra and Nagar Haveli Dadra dan Nagar Haveli
4767 Daman and Diu Daman dan Diu
4768 Delhi Delhi
4769 Goa Goa
4770 Gujarat Gujarat
4771 Haryana Haryana
4772 Himachal Pradesh Himachal Pradesh
4773 Jammu and Kashmir Jammu dan Kashmir
4774 Jharkhand Jharkhand
4775 Karnataka Karnataka
4776 Kerala Kerala
4777 Lakshadweep Islands Kepulauan Lakshadweep
4778 Madhya Pradesh Madhya Pradesh
4779 Maharashtra Maharashtra
4780 Manipur Manipur
4781 Meghalaya Meghalaya
4782 Mizoram Mizoram
4783 Nagaland Nagaland
4784 Odisha Odisha
4785 Other Territory Wilayah Lain
4786 Pondicherry Pondicherry
4787 Punjab Punjab
4788 Rajasthan Rajasthan
4789 Sikkim Sikkim
4790 Tamil Nadu Tamil Nadu
4791 Telangana Telangana
4792 Tripura Tripura
4793 Uttar Pradesh Uttar Pradesh
4794 Uttarakhand Uttarakhand
4795 West Bengal Benggala Barat
4796 Published on Diterbitkan di
4797 Bottom Bawah
4798 Top Puncak

View file

@ -9,7 +9,6 @@ Action,aðgerð,
Actions,aðgerðir,
Active,virk,
Add,Bæta,
Add Comment,Bæta við athugasemd,
Add Row,Bæta Row,
Address,Heimilisfang,
Address Line 2,Heimilisfang lína 2,
@ -144,7 +143,6 @@ Monday,Mánudagur,
Monthly,Mánaðarleg,
More,meira,
More Information,Meiri upplýsingar,
More...,Meira ...,
Move,Ferðinni,
My Account,Minn reikningur,
New Address,ný Address,
@ -157,7 +155,6 @@ No items found.,Engar vörur fundust.,
None,Enginn,
Not Permitted,Ekki leyfilegt,
Not active,ekki virkur,
Notes,Skýringar,
Number,Númer,
Online,Online,
Operation,Operation,
@ -167,17 +164,12 @@ Owner,eigandi,
Page Missing or Moved,Page vantar eða flutt,
Parameter,Parameter,
Password,Lykilorð,
Payment Gateway,greiðsla Gateway,
Payment Gateway Name,Greiðsla Gateway Nafn,
Payments,greiðslur,
Period,tímabil,
Pincode,PIN númer,
Plan Name,Áætlun Nafn,
Please enable pop-ups,Vinsamlegast virkjaðu pop-ups,
Please select Company,Vinsamlegast veldu Company,
Please select {0},Vinsamlegast veldu {0},
Please set Email Address,Vinsamlegast setja netfangið,
Portal,Portal,
Portal Settings,Portal Stillingar,
Preview,Preview,
Primary,Primary,
@ -222,7 +214,6 @@ Salutation,Kveðjan,
Sample,Dæmi um,
Saturday,laugardagur,
Saved,Vistað,
Scan Barcode,Skannaðu strikamerki,
Scheduled,áætlunarferðir,
Search,leit,
Secret Key,Secret Key,
@ -237,7 +228,6 @@ Settings,Stillingar,
Shipping,Sendingar,
Short Name,Short Name,
Slideshow,Slideshow,
Some information is missing,Sumir upplýsingar vantar,
Source,Source,
Source Name,Source Name,
Standard,Standard,
@ -247,7 +237,6 @@ State,Ríki,
Stopped,Tappi,
Subject,Subject,
Submit,Senda,
Successful,Árangursrík,
Summary,Yfirlit,
Sunday,sunnudagur,
System Manager,System Manager,
@ -260,11 +249,9 @@ The page you are looking for is missing. This could be because it is moved or th
Timespan,Tímabil,
To,Til,
To Date,Hingað til,
Tools,Verkfæri,
Traceback,Rekja aftur,
URL,URL,
Unsubscribed,afskráður,
Use Sandbox,Nota Sandbox,
User,Notandi,
User ID,notandanafn,
Users,Notendur,
@ -569,7 +556,6 @@ Bulk Delete,Magn að eyða,
Bulk Edit {0},Magn Breyta {0},
Bulk Rename,Magn Endurnefna,
Bulk Update,Magn Uppfæra,
Busy,Upptekinn,
Button,Button,
Button Help,Button Hjálp,
Button Label,Button Label,
@ -706,7 +692,6 @@ Compiled Successfully,Tekið saman,
Complete By,Complete By,
Complete Registration,Complete Skráning,
Complete Setup,Complete Skipulag,
Completed By,Lokið við,
Compose Email,semja tölvupóst,
Condition Detail,Skilyrði smáatriði,
Conditions,Skilyrði,
@ -1691,7 +1676,7 @@ Not a valid user,Ekki gilt notanda,
Not a zip file,Ekki zip skrá,
Not allowed for {0}: {1},Ekki leyfilegt fyrir {0}: {1},
"You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4}","Þú hefur ekki leyfi til að fá aðgang að {0} því það er tengt {1} &#39;{2}&#39; í röð {3}, reit {4}",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},"Þú hefur ekki leyfi til að fá aðgang að þessu {0} skrá því það er tengt {1} &#39;{2}&#39; í reit {3}",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},Þú hefur ekki leyfi til að fá aðgang að þessu {0} skrá því það er tengt {1} &#39;{2}&#39; í reit {3},
Not allowed to Import,Ekki leyft að flytja inn,
Not allowed to change {0} after submission,Ekki heimilt að breyta {0} eftir uppgjöf,
Not allowed to print cancelled documents,Ekki leyft að prenta hætt skjöl,
@ -1819,7 +1804,6 @@ Path to private Key File,Slóð að einkalykilskrá,
PayPal Settings,PayPal Stillingar,
PayPal payment gateway settings,PayPal greiðsla hlið stillingar,
Payment Cancelled,greiðsla Hætt,
Payment Failed,greiðsla mistókst,
Payment Success,greiðsla Velgengni,
Pending Approval,Bíður staðfestingar,
Pending Verification,Bíður staðfestingar,
@ -3216,7 +3200,6 @@ Click on the link below to approve the request,Smelltu á hlekkinn hér að neð
Click on the lock icon to toggle public/private,Smelltu á læsitáknið til að skipta um almenning / einkaaðila,
Click on {0} to generate Refresh Token.,Smelltu á {0} til að búa til endurnærandi auðkenni.,
Close Condition,Loka ástand,
Column {0},Dálkur {0},
Columns / Fields,Súlur / reitir,
"Configure notifications for mentions, assignments, energy points and more.","Stilla tilkynningar fyrir minnst, verkefni, orkupunkta og fleira.",
Contact Email,Netfang tengiliðar,
@ -3298,7 +3281,6 @@ Failed to create an Event Consumer or an Event Consumer for the current site is
Failure,Bilun,
Fetching default Global Search documents.,Sækir sjálfgefin skjöl um Global Search.,
Fetching posts...,Sækir færslur ...,
Field Mapping,Reitakortlagning,
Field To Check,Reit til að athuga,
File Information,Upplýsingar um skjöl,
Filter By,Sía eftir,
@ -3453,7 +3435,6 @@ No posts yet,Engar færslur ennþá,
No records will be exported,Engar skrár verða fluttar út,
No results found for {0} in Global Search,Engar niðurstöður fundust fyrir {0} í alþjóðlegri leit,
No user found,Enginn notandi fannst,
Not Specified,Ekki tilgreint,
Notification Log,Tilkynningaskrá,
Notification Settings,Tilkynningarstillingar,
Notification Subscribed Document,Tilkynnt áskrift skjal,
@ -3609,7 +3590,6 @@ Untitled Column,Ónefnd titill,
Untranslated,Óþakkað,
Upcoming Events,Viðburðir á næstunni,
Update Existing Records,Uppfæra núverandi skrár,
Update Type,Gerð uppfærslu,
Updated To A New Version 🎉,Uppfært í nýja útgáfu 🎉,
"Updating {0} of {1}, {2}","Uppfærir {0} af {1}, {2}",
Upload file,Hlaða inn skrá,
@ -3716,19 +3696,16 @@ Designation,Tilnefning,
Disabled,Fatlaðir,
Doctype,DOCTYPE,
Download Template,Sækja Snið,
Dr,dr,
Due Date,Skiladagur,
Duplicate,Afrit,
Edit Profile,Edit Profile,
Email,Tölvupóstur,
End Time,End Time,
Enter Value,Sláðu gildi,
Entity Type,Einingartegund,
Error,villa,
Expired,útrunnið,
Export,útflutningur,
Export not allowed. You need {0} role to export.,Export ekki leyfð. Þú þarft {0} hlutverki til útflutnings.,
Fetching...,Sækir ...,
Field,Field,
File Manager,File Manager,
Filters,síur,
@ -3743,11 +3720,8 @@ Import Data from CSV / Excel files.,Flytja inn gögn úr CSV / Excel skrám.,
In Progress,Í vinnslu,
Intermediate,Intermediate,
Invite as User,Bjóða eins Notandi,
"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.",Það virðist sem það er vandamál með rétta stillingu miðlarans. Ef bilun er fyrir hendi verður fjárhæðin endurgreitt á reikninginn þinn.,
Loading...,Loading ...,
Location,Staðsetning,
Looks like someone sent you to an incomplete URL. Please ask them to look into it.,Lítur út eins og einhver sent þig til ófullnægjandi vefslóð. Vinsamlegast biðja þá að líta inn í það.,
Master,Master,
Message,Skilaboð,
Missing Values Required,Vantar gildi Áskilið,
Mobile No,Mobile Nei,
@ -3759,7 +3733,6 @@ Note,Note,
Offline,offline,
Open,Open,
Page {0} of {1},Page {0} af {1},
Pay,Greitt,
Pending,Bíður,
Phone,Sími,
Please click on the following link to set your new password,Vinsamlegast smelltu á eftirfarandi tengil til að setja nýja lykilorðið þitt,
@ -3809,7 +3782,6 @@ Welcome to {0},Að {0},
Year,ár,
Yearly,Árlega,
You,þú,
You can also copy-paste this link in your browser,Þú getur líka afrita líma þennan tengil í vafranum þínum,
and,og,
{0} Name,{0} Heiti,
{0} is required,{0} er krafist,
@ -4113,7 +4085,6 @@ Custom SCSS,Sérsniðin SCSS,
Navbar,Navbar,
Source Message,Heimildarskilaboð,
Translated Message,Þýdd skilaboð,
Verified By,staðfest af,
Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand.,Notkun þessarar leikjatölvu getur gert árásarmönnum kleift að herma eftir þér og stela upplýsingum þínum. Ekki slá inn eða líma inn kóða sem þú skilur ekki.,
{0} m,{0} m,
{0} h,{0} klst,
@ -4146,7 +4117,6 @@ Collapse,Hrun,
{0} is not a valid Name,{0} er ekki gilt nafn,
Your system is being updated. Please refresh again after a few moments.,Verið er að uppfæra kerfið þitt. Endurnýjaðu þig aftur eftir nokkrar stundir.,
{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first.,{0} {1}: Ekki er hægt að eyða innsendri skrá. Þú verður að {2} hætta við {3} það fyrst.,
Invalid naming series (. missing) for {0},Ógild nafnaflokkur (. Vantar) fyrir {0},
Error has occurred in {0},Villa kom upp í {0},
Status Updated,Staða uppfærð,
You can also copy-paste this {0} to your browser,Þú getur líka afritað og límt þetta {0} í vafrann þinn,
@ -4168,14 +4138,11 @@ Is Billing Contact,Er tengiliður við innheimtu,
Address And Contacts,Heimilisfang og tengiliðir,
Lead Conversion Time,Leiða viðskipta tími,
Due Date Based On,Gjalddagi Byggt á,
Phone Number,Símanúmer,
Linked Documents,Tengd skjöl,
Account SID,Reikningur SID,
Steps,Skref,
email,tölvupóstur,
Component,Component,
Subtitle,Undirtitill,
Global Defaults,Global Vanskil,
Prefix,forskeyti,
Is Public,Er opinber,
This chart will be available to all Users if this is set,Þetta mynd verður aðgengilegt öllum notendum ef þetta er stillt,
@ -4362,7 +4329,6 @@ Dynamic Filters Section,Dynamic Filters hluti,
Please create Card first,Vinsamlegast búðu til kort fyrst,
Onboarding Permission,Leyfi um borð,
Onboarding Step,Um borð skref,
Is Mandatory,Er skylda,
Is Skipped,Er sleppt,
Create Entry,Búðu til færslu,
Update Settings,Uppfærðu stillingar,
@ -4400,7 +4366,6 @@ Message (HTML),Skilaboð (HTML),
Send Attachments,Sendu viðhengi,
Testing,Prófun,
System Notification,Kerfis tilkynning,
WhatsApp,WhatsApp,
Twilio Number,Twilio númer,
"To use WhatsApp for Business, initialize <a href=""#Form/Twilio Settings"">Twilio Settings</a>.","Til að nota WhatsApp fyrir fyrirtæki skaltu frumstilla <a href=""#Form/Twilio Settings"">Twilio stillingar</a> .",
"To use Slack Channel, add a <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL</a>.","Til að nota Slack Channel skaltu bæta við <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL</a> .",
@ -4535,7 +4500,6 @@ Add to ToDo,Bæta við ToDo,
{0} are currently {1},{0} eru sem stendur {1},
Currently Replying,Sem stendur svarar,
created {0},bjó til {0},
Make a call,Hringja,
Change,Breyting,Coins
Too Many Requests,Of margar beiðnir,
"Invalid Authorization headers, add a token with a prefix from one of the following: {0}.","Ógild heimildarhaus, bættu við tákn með forskeyti frá einu af eftirfarandi: {0}.",
@ -4700,3 +4664,135 @@ Value cannot be negative for {0}: {1},Gildi getur ekki verið neikvætt fyrir {0
Negative Value,Neikvætt gildi,
Authentication failed while receiving emails from Email Account: {0}.,Auðkenning mistókst þegar móttekin var tölvupóstur frá netreikningi: {0}.,
Message from server: {0},Skilaboð frá netþjóni: {0},
Add Row,Bæta Row,
Analytics,Analytics,
Anonymous,Nafnlaus,
Author,Höfundur,
Basic,Basic,
Billing,innheimtu,
Contact Details,Tengiliðaupplýsingar,
Datetime,datetime,
Enable,Virkja,
Event,Event,
Full,Fullt,
Insert,Setja inn,
Interests,Áhugasvið,
Language Name,Tungumál Name,
License,License,
Limit,Limit,
Log,Log,
Meeting,Fundur,
My Account,Minn reikningur,
Newsletters,Fréttabréf,
Password,Lykilorð,
Pincode,PIN númer,
Please select prefix first,Vinsamlegast veldu forskeyti fyrst,
Please set Email Address,Vinsamlegast setja netfangið,
Please set the series to be used.,Vinsamlegast stilltu röðina sem á að nota.,
Portal Settings,Portal Stillingar,
Reference Owner,Tilvísun Eigandi,
Region,Region,
Report Builder,skýrsla Builder,
Sample,Dæmi um,
Saved,Vistað,
Series {0} already used in {1},Series {0} nú þegar notuð í {1},
Set as Default,Setja sem sjálfgefið,
Shipping,Sendingar,
Standard,Standard,
Test,próf,
Traceback,Rekja aftur,
Unable to find DocType {0},Gat ekki fundið DocType {0},
Weekdays,Virka daga,
Workflow,workflow,
You need to be logged in to access this page,Þú þarft að vera innskráður til að opna þessa síðu,
County,County,
Images,myndir,
Office,Office,
Passive,Hlutlaus,
Permanent,Varanleg,
Plant,Plant,
Postal,pósti,
Previous,fyrri,
Shop,Shop,
Subsidiary,dótturfélag,
There is some problem with the file url: {0},Það er einhver vandamál með skrá url: {0},
"Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}","Sérstafir nema &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; Og &quot;}}&quot; ekki leyfðar í nafngiftiröð {0}",
Export Type,Útflutningsgerð,
Last Sync On,Síðasta samstilling á,
Webhook Secret,Webhook Secret,
Back to Home,Aftur heim,
Customize,sérsníða,
Edit Profile,Edit Profile,
File Manager,File Manager,
Invite as User,Bjóða eins Notandi,
Newsletter,Fréttabréf,
Printing,Prentun,
Publish,Birta,
Refreshing,Frískandi,
Select All,Velja allt,
Set,Setja,
Setup Wizard,skipulag Wizard,
Update Details,Uppfæra upplýsingar,
You,þú,
{0} Name,{0} Heiti,
Bold,Djarfur,
Center,Center,
Comment,Athugasemd,
Not Found,Ekki fundið,
User Id,Notandanafn,
Position,Staða,
Crop,Skera,
Topic,Topic,
Public Transport,Almenningssamgöngur,
Request Data,Beiðni gagna,
Steps,Skref,
Reference DocType,Tilvísun DocType,
Select Transaction,Veldu Transaction,
Help HTML,Hjálp HTML,
Series List for this Transaction,Series List fyrir þessa færslu,
User must always select,Notandi verður alltaf að velja,
Check this if you want to force the user to select a series before saving. There will be no default if you check this.,Hakaðu við þetta ef þú vilt að þvinga notendur til að velja röð áður en þú vistar. Það verður ekkert sjálfgefið ef þú athuga þetta.,
Prefix,forskeyti,
This is the number of the last created transaction with this prefix,Þetta er fjöldi síðustu búin færslu með þessu forskeyti,
Update Series Number,Uppfæra Series Number,
Validation Error,Staðfestingarvilla,
Andaman and Nicobar Islands,Andaman og Nicobar eyjar,
Andhra Pradesh,Andhra Pradesh,
Arunachal Pradesh,Arunachal Pradesh,
Assam,Assam,
Bihar,Bihar,
Chandigarh,Chandigarh,
Chhattisgarh,Chhattisgarh,
Dadra and Nagar Haveli,Dadra og Nagar Haveli,
Daman and Diu,Daman og Diu,
Delhi,Delhi,
Goa,Goa,
Gujarat,Gujarat,
Haryana,Haryana,
Himachal Pradesh,Himachal Pradesh,
Jammu and Kashmir,Jammu og Kashmir,
Jharkhand,Jharkhand,
Karnataka,Karnataka,
Kerala,Kerala,
Lakshadweep Islands,Lakshadweep Islands,
Madhya Pradesh,Madhya Pradesh,
Maharashtra,Maharashtra,
Manipur,Manipur,
Meghalaya,Meghalaya,
Mizoram,Mizoram,
Nagaland,Nagaland,
Odisha,Odisha,
Other Territory,Annað landsvæði,
Pondicherry,Pondicherry,
Punjab,Punjab,
Rajasthan,Rajasthan,
Sikkim,Sikkim,
Tamil Nadu,Tamil Nadu,
Telangana,Telangana,
Tripura,Tripura,
Uttar Pradesh,Uttar Pradesh,
Uttarakhand,Uttarakhand,
West Bengal,Vestur-Bengal,
Published on,Birt þann,
Bottom,Neðst,
Top,Toppur,

1 A4 A4
9 Actions aðgerðir
10 Active virk
11 Add Bæta
Add Comment Bæta við athugasemd
12 Add Row Bæta Row
13 Address Heimilisfang
14 Address Line 2 Heimilisfang lína 2
143 Monthly Mánaðarleg
144 More meira
145 More Information Meiri upplýsingar
More... Meira ...
146 Move Ferðinni
147 My Account Minn reikningur
148 New Address ný Address
155 None Enginn
156 Not Permitted Ekki leyfilegt
157 Not active ekki virkur
Notes Skýringar
158 Number Númer
159 Online Online
160 Operation Operation
164 Page Missing or Moved Page vantar eða flutt
165 Parameter Parameter
166 Password Lykilorð
Payment Gateway greiðsla Gateway
Payment Gateway Name Greiðsla Gateway Nafn
Payments greiðslur
167 Period tímabil
168 Pincode PIN númer
Plan Name Áætlun Nafn
169 Please enable pop-ups Vinsamlegast virkjaðu pop-ups
170 Please select Company Vinsamlegast veldu Company
171 Please select {0} Vinsamlegast veldu {0}
172 Please set Email Address Vinsamlegast setja netfangið
Portal Portal
173 Portal Settings Portal Stillingar
174 Preview Preview
175 Primary Primary
214 Sample Dæmi um
215 Saturday laugardagur
216 Saved Vistað
Scan Barcode Skannaðu strikamerki
217 Scheduled áætlunarferðir
218 Search leit
219 Secret Key Secret Key
228 Shipping Sendingar
229 Short Name Short Name
230 Slideshow Slideshow
Some information is missing Sumir upplýsingar vantar
231 Source Source
232 Source Name Source Name
233 Standard Standard
237 Stopped Tappi
238 Subject Subject
239 Submit Senda
Successful Árangursrík
240 Summary Yfirlit
241 Sunday sunnudagur
242 System Manager System Manager
249 Timespan Tímabil
250 To Til
251 To Date Hingað til
Tools Verkfæri
252 Traceback Rekja aftur
253 URL URL
254 Unsubscribed afskráður
Use Sandbox Nota Sandbox
255 User Notandi
256 User ID notandanafn
257 Users Notendur
556 Bulk Edit {0} Magn Breyta {0}
557 Bulk Rename Magn Endurnefna
558 Bulk Update Magn Uppfæra
Busy Upptekinn
559 Button Button
560 Button Help Button Hjálp
561 Button Label Button Label
692 Complete By Complete By
693 Complete Registration Complete Skráning
694 Complete Setup Complete Skipulag
Completed By Lokið við
695 Compose Email semja tölvupóst
696 Condition Detail Skilyrði smáatriði
697 Conditions Skilyrði
1676 Not a zip file Ekki zip skrá
1677 Not allowed for {0}: {1} Ekki leyfilegt fyrir {0}: {1}
1678 You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4} Þú hefur ekki leyfi til að fá aðgang að {0} því það er tengt {1} &#39;{2}&#39; í röð {3}, reit {4}
1679 You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3} Þú hefur ekki leyfi til að fá aðgang að þessu {0} skrá því það er tengt {1} &#39;{2}&#39; í reit {3}
1680 Not allowed to Import Ekki leyft að flytja inn
1681 Not allowed to change {0} after submission Ekki heimilt að breyta {0} eftir uppgjöf
1682 Not allowed to print cancelled documents Ekki leyft að prenta hætt skjöl
1804 PayPal Settings PayPal Stillingar
1805 PayPal payment gateway settings PayPal greiðsla hlið stillingar
1806 Payment Cancelled greiðsla Hætt
Payment Failed greiðsla mistókst
1807 Payment Success greiðsla Velgengni
1808 Pending Approval Bíður staðfestingar
1809 Pending Verification Bíður staðfestingar
3200 Click on the lock icon to toggle public/private Smelltu á læsitáknið til að skipta um almenning / einkaaðila
3201 Click on {0} to generate Refresh Token. Smelltu á {0} til að búa til endurnærandi auðkenni.
3202 Close Condition Loka ástand
Column {0} Dálkur {0}
3203 Columns / Fields Súlur / reitir
3204 Configure notifications for mentions, assignments, energy points and more. Stilla tilkynningar fyrir minnst, verkefni, orkupunkta og fleira.
3205 Contact Email Netfang tengiliðar
3281 Failure Bilun
3282 Fetching default Global Search documents. Sækir sjálfgefin skjöl um Global Search.
3283 Fetching posts... Sækir færslur ...
Field Mapping Reitakortlagning
3284 Field To Check Reit til að athuga
3285 File Information Upplýsingar um skjöl
3286 Filter By Sía eftir
3435 No records will be exported Engar skrár verða fluttar út
3436 No results found for {0} in Global Search Engar niðurstöður fundust fyrir {0} í alþjóðlegri leit
3437 No user found Enginn notandi fannst
Not Specified Ekki tilgreint
3438 Notification Log Tilkynningaskrá
3439 Notification Settings Tilkynningarstillingar
3440 Notification Subscribed Document Tilkynnt áskrift skjal
3590 Untranslated Óþakkað
3591 Upcoming Events Viðburðir á næstunni
3592 Update Existing Records Uppfæra núverandi skrár
Update Type Gerð uppfærslu
3593 Updated To A New Version 🎉 Uppfært í nýja útgáfu 🎉
3594 Updating {0} of {1}, {2} Uppfærir {0} af {1}, {2}
3595 Upload file Hlaða inn skrá
3696 Disabled Fatlaðir
3697 Doctype DOCTYPE
3698 Download Template Sækja Snið
Dr dr
3699 Due Date Skiladagur
3700 Duplicate Afrit
3701 Edit Profile Edit Profile
3702 Email Tölvupóstur
End Time End Time
3703 Enter Value Sláðu gildi
3704 Entity Type Einingartegund
3705 Error villa
3706 Expired útrunnið
3707 Export útflutningur
3708 Export not allowed. You need {0} role to export. Export ekki leyfð. Þú þarft {0} hlutverki til útflutnings.
Fetching... Sækir ...
3709 Field Field
3710 File Manager File Manager
3711 Filters síur
3720 In Progress Í vinnslu
3721 Intermediate Intermediate
3722 Invite as User Bjóða eins Notandi
It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account. Það virðist sem það er vandamál með rétta stillingu miðlarans. Ef bilun er fyrir hendi verður fjárhæðin endurgreitt á reikninginn þinn.
3723 Loading... Loading ...
3724 Location Staðsetning
Looks like someone sent you to an incomplete URL. Please ask them to look into it. Lítur út eins og einhver sent þig til ófullnægjandi vefslóð. Vinsamlegast biðja þá að líta inn í það.
Master Master
3725 Message Skilaboð
3726 Missing Values Required Vantar gildi Áskilið
3727 Mobile No Mobile Nei
3733 Offline offline
3734 Open Open
3735 Page {0} of {1} Page {0} af {1}
Pay Greitt
3736 Pending Bíður
3737 Phone Sími
3738 Please click on the following link to set your new password Vinsamlegast smelltu á eftirfarandi tengil til að setja nýja lykilorðið þitt
3782 Year ár
3783 Yearly Árlega
3784 You þú
You can also copy-paste this link in your browser Þú getur líka afrita líma þennan tengil í vafranum þínum
3785 and og
3786 {0} Name {0} Heiti
3787 {0} is required {0} er krafist
4085 Navbar Navbar
4086 Source Message Heimildarskilaboð
4087 Translated Message Þýdd skilaboð
Verified By staðfest af
4088 Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand. Notkun þessarar leikjatölvu getur gert árásarmönnum kleift að herma eftir þér og stela upplýsingum þínum. Ekki slá inn eða líma inn kóða sem þú skilur ekki.
4089 {0} m {0} m
4090 {0} h {0} klst
4117 {0} is not a valid Name {0} er ekki gilt nafn
4118 Your system is being updated. Please refresh again after a few moments. Verið er að uppfæra kerfið þitt. Endurnýjaðu þig aftur eftir nokkrar stundir.
4119 {0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first. {0} {1}: Ekki er hægt að eyða innsendri skrá. Þú verður að {2} hætta við {3} það fyrst.
Invalid naming series (. missing) for {0} Ógild nafnaflokkur (. Vantar) fyrir {0}
4120 Error has occurred in {0} Villa kom upp í {0}
4121 Status Updated Staða uppfærð
4122 You can also copy-paste this {0} to your browser Þú getur líka afritað og límt þetta {0} í vafrann þinn
4138 Address And Contacts Heimilisfang og tengiliðir
4139 Lead Conversion Time Leiða viðskipta tími
4140 Due Date Based On Gjalddagi Byggt á
Phone Number Símanúmer
4141 Linked Documents Tengd skjöl
Account SID Reikningur SID
4142 Steps Skref
4143 email tölvupóstur
4144 Component Component
4145 Subtitle Undirtitill
Global Defaults Global Vanskil
4146 Prefix forskeyti
4147 Is Public Er opinber
4148 This chart will be available to all Users if this is set Þetta mynd verður aðgengilegt öllum notendum ef þetta er stillt
4329 Please create Card first Vinsamlegast búðu til kort fyrst
4330 Onboarding Permission Leyfi um borð
4331 Onboarding Step Um borð skref
Is Mandatory Er skylda
4332 Is Skipped Er sleppt
4333 Create Entry Búðu til færslu
4334 Update Settings Uppfærðu stillingar
4366 Send Attachments Sendu viðhengi
4367 Testing Prófun
4368 System Notification Kerfis tilkynning
WhatsApp WhatsApp
4369 Twilio Number Twilio númer
4370 To use WhatsApp for Business, initialize <a href="#Form/Twilio Settings">Twilio Settings</a>. Til að nota WhatsApp fyrir fyrirtæki skaltu frumstilla <a href="#Form/Twilio Settings">Twilio stillingar</a> .
4371 To use Slack Channel, add a <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook URL</a>. Til að nota Slack Channel skaltu bæta við <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook URL</a> .
4500 {0} are currently {1} {0} eru sem stendur {1}
4501 Currently Replying Sem stendur svarar
4502 created {0} bjó til {0}
Make a call Hringja
4503 Change Breyting Coins
4504 Too Many Requests Of margar beiðnir
4505 Invalid Authorization headers, add a token with a prefix from one of the following: {0}. Ógild heimildarhaus, bættu við tákn með forskeyti frá einu af eftirfarandi: {0}.
4664 Negative Value Neikvætt gildi
4665 Authentication failed while receiving emails from Email Account: {0}. Auðkenning mistókst þegar móttekin var tölvupóstur frá netreikningi: {0}.
4666 Message from server: {0} Skilaboð frá netþjóni: {0}
4667 Add Row Bæta Row
4668 Analytics Analytics
4669 Anonymous Nafnlaus
4670 Author Höfundur
4671 Basic Basic
4672 Billing innheimtu
4673 Contact Details Tengiliðaupplýsingar
4674 Datetime datetime
4675 Enable Virkja
4676 Event Event
4677 Full Fullt
4678 Insert Setja inn
4679 Interests Áhugasvið
4680 Language Name Tungumál Name
4681 License License
4682 Limit Limit
4683 Log Log
4684 Meeting Fundur
4685 My Account Minn reikningur
4686 Newsletters Fréttabréf
4687 Password Lykilorð
4688 Pincode PIN númer
4689 Please select prefix first Vinsamlegast veldu forskeyti fyrst
4690 Please set Email Address Vinsamlegast setja netfangið
4691 Please set the series to be used. Vinsamlegast stilltu röðina sem á að nota.
4692 Portal Settings Portal Stillingar
4693 Reference Owner Tilvísun Eigandi
4694 Region Region
4695 Report Builder skýrsla Builder
4696 Sample Dæmi um
4697 Saved Vistað
4698 Series {0} already used in {1} Series {0} nú þegar notuð í {1}
4699 Set as Default Setja sem sjálfgefið
4700 Shipping Sendingar
4701 Standard Standard
4702 Test próf
4703 Traceback Rekja aftur
4704 Unable to find DocType {0} Gat ekki fundið DocType {0}
4705 Weekdays Virka daga
4706 Workflow workflow
4707 You need to be logged in to access this page Þú þarft að vera innskráður til að opna þessa síðu
4708 County County
4709 Images myndir
4710 Office Office
4711 Passive Hlutlaus
4712 Permanent Varanleg
4713 Plant Plant
4714 Postal pósti
4715 Previous fyrri
4716 Shop Shop
4717 Subsidiary dótturfélag
4718 There is some problem with the file url: {0} Það er einhver vandamál með skrá url: {0}
4719 Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0} Sérstafir nema &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; Og &quot;}}&quot; ekki leyfðar í nafngiftiröð {0}
4720 Export Type Útflutningsgerð
4721 Last Sync On Síðasta samstilling á
4722 Webhook Secret Webhook Secret
4723 Back to Home Aftur heim
4724 Customize sérsníða
4725 Edit Profile Edit Profile
4726 File Manager File Manager
4727 Invite as User Bjóða eins Notandi
4728 Newsletter Fréttabréf
4729 Printing Prentun
4730 Publish Birta
4731 Refreshing Frískandi
4732 Select All Velja allt
4733 Set Setja
4734 Setup Wizard skipulag Wizard
4735 Update Details Uppfæra upplýsingar
4736 You þú
4737 {0} Name {0} Heiti
4738 Bold Djarfur
4739 Center Center
4740 Comment Athugasemd
4741 Not Found Ekki fundið
4742 User Id Notandanafn
4743 Position Staða
4744 Crop Skera
4745 Topic Topic
4746 Public Transport Almenningssamgöngur
4747 Request Data Beiðni gagna
4748 Steps Skref
4749 Reference DocType Tilvísun DocType
4750 Select Transaction Veldu Transaction
4751 Help HTML Hjálp HTML
4752 Series List for this Transaction Series List fyrir þessa færslu
4753 User must always select Notandi verður alltaf að velja
4754 Check this if you want to force the user to select a series before saving. There will be no default if you check this. Hakaðu við þetta ef þú vilt að þvinga notendur til að velja röð áður en þú vistar. Það verður ekkert sjálfgefið ef þú athuga þetta.
4755 Prefix forskeyti
4756 This is the number of the last created transaction with this prefix Þetta er fjöldi síðustu búin færslu með þessu forskeyti
4757 Update Series Number Uppfæra Series Number
4758 Validation Error Staðfestingarvilla
4759 Andaman and Nicobar Islands Andaman og Nicobar eyjar
4760 Andhra Pradesh Andhra Pradesh
4761 Arunachal Pradesh Arunachal Pradesh
4762 Assam Assam
4763 Bihar Bihar
4764 Chandigarh Chandigarh
4765 Chhattisgarh Chhattisgarh
4766 Dadra and Nagar Haveli Dadra og Nagar Haveli
4767 Daman and Diu Daman og Diu
4768 Delhi Delhi
4769 Goa Goa
4770 Gujarat Gujarat
4771 Haryana Haryana
4772 Himachal Pradesh Himachal Pradesh
4773 Jammu and Kashmir Jammu og Kashmir
4774 Jharkhand Jharkhand
4775 Karnataka Karnataka
4776 Kerala Kerala
4777 Lakshadweep Islands Lakshadweep Islands
4778 Madhya Pradesh Madhya Pradesh
4779 Maharashtra Maharashtra
4780 Manipur Manipur
4781 Meghalaya Meghalaya
4782 Mizoram Mizoram
4783 Nagaland Nagaland
4784 Odisha Odisha
4785 Other Territory Annað landsvæði
4786 Pondicherry Pondicherry
4787 Punjab Punjab
4788 Rajasthan Rajasthan
4789 Sikkim Sikkim
4790 Tamil Nadu Tamil Nadu
4791 Telangana Telangana
4792 Tripura Tripura
4793 Uttar Pradesh Uttar Pradesh
4794 Uttarakhand Uttarakhand
4795 West Bengal Vestur-Bengal
4796 Published on Birt þann
4797 Bottom Neðst
4798 Top Toppur

View file

@ -9,7 +9,6 @@ Action,Azione,
Actions,Azioni,
Active,Attivo,
Add,Aggiungi,
Add Comment,Aggiungi un commento,
Add Row,Aggiungi riga,
Address,Indirizzo,
Address Line 2,Indirizzo 2,
@ -144,7 +143,6 @@ Monday,Lunedi,
Monthly,Mensile,
More,Più,
More Information,Maggiori informazioni,
More...,Di Più...,
Move,Sposta,
My Account,Il Mio Account,
New Address,Nuovo indirizzo,
@ -157,7 +155,6 @@ No items found.,Nessun articolo trovato.,
None,Nessuna,
Not Permitted,Non Consentito,
Not active,Non attivo,
Notes,Note,
Number,Numero,
Online,Online,
Operation,Operazione,
@ -167,17 +164,12 @@ Owner,Proprietario,
Page Missing or Moved,Pagina mancante o spostata,
Parameter,Parametro,
Password,Password,
Payment Gateway,Gateway di pagamento,
Payment Gateway Name,Nome gateway di pagamento,
Payments,pagamenti,
Period,periodo,
Pincode,CAP,
Plan Name,Nome piano,
Please enable pop-ups,Si prega di abilitare i pop-up,
Please select Company,Selezionare prego,
Please select {0},Si prega di selezionare {0},
Please set Email Address,Si prega di impostare l&#39;indirizzo e-mail,
Portal,Portale,
Portal Settings,Impostazioni del portale,
Preview,anteprima,
Primary,Primaria,
@ -222,7 +214,6 @@ Salutation,Appellativo,
Sample,Esempio,
Saturday,Sabato,
Saved,Salvato,
Scan Barcode,Scansione Barcode,
Scheduled,Pianificate,
Search,Cerca,
Secret Key,Chiave segreta,
@ -237,7 +228,6 @@ Settings,Impostazioni,
Shipping,spedizione,
Short Name,Nome breve,
Slideshow,Slideshow,
Some information is missing,Alcune informazioni manca,
Source,Fonte,
Source Name,Source Name,
Standard,Standard,
@ -247,7 +237,6 @@ State,Stato,
Stopped,Arrestato,
Subject,Oggetto,
Submit,Conferma,
Successful,Riuscito,
Summary,Sommario,
Sunday,Domenica,
System Manager,System Manager,
@ -260,11 +249,9 @@ The page you are looking for is missing. This could be because it is moved or th
Timespan,Arco di tempo,
To,A,
To Date,A Data,
Tools,Strumenti,
Traceback,Rintracciare,
URL,URL,
Unsubscribed,Disiscritto,
Use Sandbox,Usa Sandbox,
User,Utente,
User ID,ID utente,
Users,utenti,
@ -569,7 +556,6 @@ Bulk Delete,Elimina in blocco,
Bulk Edit {0},Modifica massiva {0},
Bulk Rename,Rinomina in massa,
Bulk Update,Aggiornamento massivo,
Busy,Occupato,
Button,Pulsante,
Button Help,pulsante Guida,
Button Label,Etichetta pulsante,
@ -707,7 +693,6 @@ Compiled Successfully,Compilato con successo,
Complete By,Completato da,
Complete Registration,Completa la registrazione,
Complete Setup,installazione completa,
Completed By,Completato da,
Compose Email,Componi email,
Condition Detail,Dettaglio stato,
Conditions,condizioni,
@ -1692,7 +1677,7 @@ Not a valid user,Utente non trovato,
Not a zip file,Non è un file zip,
Not allowed for {0}: {1},Non consentito per {0}: {1},
"You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4}","Non sei autorizzato ad accedere a {0} perché è collegato a {1} '{2}' nella riga {3}, campo {4}",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},"Non sei autorizzato ad accedere a questo record {0} perché è collegato a {1} '{2}' nel campo {3}",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},Non sei autorizzato ad accedere a questo record {0} perché è collegato a {1} '{2}' nel campo {3},
Not allowed to Import,Non è consentito importare,
Not allowed to change {0} after submission,Non è permesso di cambiare {0} dopo la presentazione,
Not allowed to print cancelled documents,Non è consentito di stampare documenti annullati,
@ -1820,7 +1805,6 @@ Path to private Key File,Percorso del file della chiave privata,
PayPal Settings,Impostazioni PayPal,
PayPal payment gateway settings,impostazioni di gateway di pagamento PayPal,
Payment Cancelled,Pagamento Annullato,
Payment Failed,Pagamento fallito,
Payment Success,Pagamento Effettuato,
Pending Approval,In attesa di approvazione,
Pending Verification,In attesa di verifica,
@ -3218,7 +3202,6 @@ Click on the link below to approve the request,Fai clic sul link in basso per ap
Click on the lock icon to toggle public/private,Fai clic sull&#39;icona del lucchetto per attivare / disattivare pubblico / privato,
Click on {0} to generate Refresh Token.,Fai clic su {0} per generare il token di aggiornamento.,
Close Condition,Chiudi condizioni,
Column {0},Colonna {0},
Columns / Fields,Colonne / Campi,
"Configure notifications for mentions, assignments, energy points and more.","Configura le notifiche per menzioni, incarichi, punti energia e altro.",
Contact Email,Email Contatto,
@ -3300,7 +3283,6 @@ Failed to create an Event Consumer or an Event Consumer for the current site is
Failure,Fallimento,
Fetching default Global Search documents.,Recupero di documenti di ricerca globale predefiniti.,
Fetching posts...,Recupero post ...,
Field Mapping,Mappatura dei campi,
Field To Check,Campo da controllare,
File Information,Informazioni sul file,
Filter By,Filtra per,
@ -3455,7 +3437,6 @@ No posts yet,Nessun post ancora,
No records will be exported,Nessun record verrà esportato,
No results found for {0} in Global Search,Nessun risultato trovato per {0} nella Ricerca globale,
No user found,Nessun utente trovato,
Not Specified,Non specificato,
Notification Log,Registro delle notifiche,
Notification Settings,Impostazioni di notifica,
Notification Subscribed Document,Documento sottoscritto di notifica,
@ -3611,7 +3592,6 @@ Untitled Column,Colonna senza titolo,
Untranslated,untranslated,
Upcoming Events,Prossimi eventi,
Update Existing Records,Aggiorna i record esistenti,
Update Type,Tipo di aggiornamento,
Updated To A New Version 🎉,Aggiornato a una nuova versione 🎉,
"Updating {0} of {1}, {2}","Aggiornamento {0} di {1}, {2}",
Upload file,Caricare un file,
@ -3718,19 +3698,16 @@ Designation,Designazione,
Disabled,Disabilitato,
Doctype,Doctype,
Download Template,Scarica Modello,
Dr,Dr,
Due Date,Data di scadenza,
Duplicate,Duplica,
Edit Profile,Modifica Profilo,
Email,E-mail,
End Time,Ora fine,
Enter Value,Immettere Valore,
Entity Type,Tipo di entità,
Error,Errore,
Expired,Scaduto,
Export,Esporta,
Export not allowed. You need {0} role to export.,Esportazione non consentita . Hai bisogno di {0} ruolo/i da esportare.,
Fetching...,Recupero ...,
Field,Campo,
File Manager,File Manager,
Filters,Filtri,
@ -3745,11 +3722,8 @@ Import Data from CSV / Excel files.,Importa dati da file CSV / Excel.,
In Progress,In corso,
Intermediate,Intermedio,
Invite as User,Invita come utente,
"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.","Sembra che ci sia un problema con la configurazione delle strisce del server. In caso di fallimento, l&#39;importo verrà rimborsato sul tuo conto.",
Loading...,Caricamento in corso ...,
Location,Posizione,
Looks like someone sent you to an incomplete URL. Please ask them to look into it.,Sembra che qualcuno ti ha mandato a un URL incompleto. Si prega di chiedere loro di esaminare il problema.,
Master,Maestro,
Message,Messaggio,
Missing Values Required,Valori mancanti richiesti,
Mobile No,Num. Cellulare,
@ -3761,7 +3735,6 @@ Note,Nota,
Offline,disconnesso,
Open,Aperto,
Page {0} of {1},Pagina {0} di {1},
Pay,Paga,
Pending,In attesa,
Phone,Telefono,
Please click on the following link to set your new password,Cliccate sul link seguente per impostare la nuova password,
@ -3811,7 +3784,6 @@ Welcome to {0},Benvenuti a {0},
Year,Anno,
Yearly,Annuale,
You,Tu,
You can also copy-paste this link in your browser,È possibile anche copiare e incollare questo link nel tuo browser,
and,e,
{0} Name,{0} Nome,
{0} is required,{0} è richiesto,
@ -4115,7 +4087,6 @@ Custom SCSS,SCSS personalizzato,
Navbar,Navbar,
Source Message,Messaggio di origine,
Translated Message,Messaggio tradotto,
Verified By,Verificato da,
Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand.,L&#39;utilizzo di questa console potrebbe consentire agli aggressori di impersonarti e rubare le tue informazioni. Non inserire o incollare codice che non capisci.,
{0} m,{0} m,
{0} h,{0} h,
@ -4148,7 +4119,6 @@ Collapse,Crollo,
{0} is not a valid Name,{0} non è un nome valido,
Your system is being updated. Please refresh again after a few moments.,Il tuo sistema è in fase di aggiornamento. Aggiorna di nuovo dopo alcuni istanti.,
{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first.,{0} {1}: impossibile eliminare il record inviato. Devi prima {2} annullarlo {3}.,
Invalid naming series (. missing) for {0},Serie di denominazione non valida (. Mancante) per {0},
Error has occurred in {0},Si è verificato un errore in {0},
Status Updated,Stato aggiornato,
You can also copy-paste this {0} to your browser,Puoi anche copiare e incollare questo {0} nel tuo browser,
@ -4170,14 +4140,11 @@ Is Billing Contact,È il contatto per la fatturazione,
Address And Contacts,Indirizzo e contatti,
Lead Conversion Time,Piombo tempo di conversione,
Due Date Based On,Scadenza basata su,
Phone Number,Numero di telefono,
Linked Documents,Documenti collegati,
Account SID,Account SID,
Steps,Passi,
email,e-mail,
Component,Componente,
Subtitle,Sottotitolo,
Global Defaults,Predefiniti Globali,
Prefix,Prefisso,
Is Public,È pubblico,
This chart will be available to all Users if this is set,Questo grafico sarà disponibile per tutti gli utenti se impostato,
@ -4364,7 +4331,6 @@ Dynamic Filters Section,Sezione filtri dinamici,
Please create Card first,Crea prima la carta,
Onboarding Permission,Autorizzazione per l&#39;onboarding,
Onboarding Step,Fase di onboarding,
Is Mandatory,È obbligatorio,
Is Skipped,Viene saltato,
Create Entry,Crea voce,
Update Settings,Aggiorna impostazioni,
@ -4402,7 +4368,6 @@ Message (HTML),Messaggio (HTML),
Send Attachments,Invia allegati,
Testing,Test,
System Notification,Notifica di sistema,
WhatsApp,WhatsApp,
Twilio Number,Numero Twilio,
"To use WhatsApp for Business, initialize <a href=""#Form/Twilio Settings"">Twilio Settings</a>.","Per utilizzare WhatsApp for Business, inizializza <a href=""#Form/Twilio Settings"">le Impostazioni di Twilio</a> .",
"To use Slack Channel, add a <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL</a>.","Per utilizzare Slack Channel, aggiungi un <a href=""#List/Slack%20Webhook%20URL/List"">URL Webhook Slack</a> .",
@ -4537,7 +4502,6 @@ Add to ToDo,Aggiungi a ToDo,
{0} are currently {1},{0} sono attualmente {1},
Currently Replying,Attualmente in risposta,
created {0},creato {0},
Make a call,Effettuare una chiamata,
Change,Modificare,Coins
Too Many Requests,Troppe richieste,
"Invalid Authorization headers, add a token with a prefix from one of the following: {0}.","Intestazioni di autorizzazione non valide, aggiungi un token con un prefisso da uno dei seguenti: {0}.",
@ -4703,3 +4667,135 @@ Value cannot be negative for {0}: {1},Il valore non può essere negativo per {0}
Negative Value,Valore negativo,
Authentication failed while receiving emails from Email Account: {0}.,Autenticazione non riuscita durante la ricezione di e-mail dall&#39;account e-mail: {0}.,
Message from server: {0},Messaggio dal server: {0},
Add Row,Aggiungi riga,
Analytics,Analisi dei dati,
Anonymous,Anonimo,
Author,Autore,
Basic,Base,
Billing,Fatturazione,
Contact Details,Dettagli Contatto,
Datetime,Data e ora,
Enable,permettere,
Event,Evento,
Full,Pieno,
Insert,Inserire,
Interests,Interessi,
Language Name,Nome lingua,
License,Licenza,
Limit,Limite,
Log,Log,
Meeting,Incontro,
My Account,Il Mio Account,
Newsletters,Newsletters,
Password,Password,
Pincode,CAP,
Please select prefix first,Si prega di selezionare il prefisso prima,
Please set Email Address,Si prega di impostare l&#39;indirizzo e-mail,
Please set the series to be used.,Si prega di impostare la serie da utilizzare.,
Portal Settings,Impostazioni del portale,
Reference Owner,Riferimento proprietario,
Region,Regione,
Report Builder,Report Builder,
Sample,Esempio,
Saved,Salvato,
Series {0} already used in {1},Serie {0} già utilizzata in {1},
Set as Default,Imposta come predefinito,
Shipping,spedizione,
Standard,Standard,
Test,Test,
Traceback,Rintracciare,
Unable to find DocType {0},Impossibile trovare DocType {0},
Weekdays,Nei giorni feriali,
Workflow,Flusso di lavoro,
You need to be logged in to access this page,Devi essere loggato per accedere a questa pagina,
County,Contea,
Images,Immagini,
Office,Ufficio,
Passive,Passivo,
Permanent,Permanente,
Plant,Impianto,
Postal,Postale,
Previous,Precedente,
Shop,Negozio,
Subsidiary,Sussidiario,
There is some problem with the file url: {0},C&#39;è qualche problema con il file url: {0},
"Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}","Caratteri speciali tranne &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; E &quot;}}&quot; non consentiti nelle serie di nomi {0}",
Export Type,Tipo di esportazione,
Last Sync On,Ultima sincronizzazione attivata,
Webhook Secret,Segreto Webhook,
Back to Home,Tornare a casa,
Customize,Personalizza,
Edit Profile,Modifica Profilo,
File Manager,File Manager,
Invite as User,Invita come utente,
Newsletter,Newsletter,
Printing,Stampa,
Publish,Pubblicare,
Refreshing,Aggiornamento,
Select All,Seleziona tutto,
Set,set,
Setup Wizard,Installazione guidata,
Update Details,Dettagli aggiornamento,
You,Tu,
{0} Name,{0} Nome,
Bold,Grassetto,
Center,Centro,
Comment,Commento,
Not Found,Non trovato,
User Id,ID utente,
Position,Posizione,
Crop,raccolto,
Topic,Argomento,
Public Transport,Trasporto pubblico,
Request Data,Richiesta dati,
Steps,Passi,
Reference DocType,Riferimento DocType,
Select Transaction,Selezionare Transaction,
Help HTML,Aiuto HTML,
Series List for this Transaction,Lista Serie per questa transazione,
User must always select,L&#39;utente deve sempre selezionare,
Check this if you want to force the user to select a series before saving. There will be no default if you check this.,"Seleziona se vuoi forzare l'utente a selezionare una serie prima di salvare, non ci sarà un valore di default.",
Prefix,Prefisso,
This is the number of the last created transaction with this prefix,Questo è il numero dell&#39;ultimo transazione creata con questo prefisso,
Update Series Number,Aggiorna Numero della Serie,
Validation Error,errore di convalida,
Andaman and Nicobar Islands,Isole Andamane e Nicobare,
Andhra Pradesh,Andhra Pradesh,
Arunachal Pradesh,Arunachal Pradesh,
Assam,Assam,
Bihar,Bihar,
Chandigarh,Chandigarh,
Chhattisgarh,Chhattisgarh,
Dadra and Nagar Haveli,Dadra e Nagar Haveli,
Daman and Diu,Daman e Diu,
Delhi,Delhi,
Goa,Goa,
Gujarat,Gujarat,
Haryana,Haryana,
Himachal Pradesh,Himachal Pradesh,
Jammu and Kashmir,Jammu e Kashmir,
Jharkhand,Jharkhand,
Karnataka,Karnataka,
Kerala,Kerala,
Lakshadweep Islands,Isole Lakshadweep,
Madhya Pradesh,Madhya Pradesh,
Maharashtra,Maharashtra,
Manipur,Manipur,
Meghalaya,Meghalaya,
Mizoram,Mizoram,
Nagaland,Nagaland,
Odisha,Odisha,
Other Territory,Altro territorio,
Pondicherry,Pondicherry,
Punjab,Punjab,
Rajasthan,Rajasthan,
Sikkim,Sikkim,
Tamil Nadu,Tamil Nadu,
Telangana,Telangana,
Tripura,Tripura,
Uttar Pradesh,Uttar Pradesh,
Uttarakhand,Uttarakhand,
West Bengal,Bengala occidentale,
Published on,pubblicato su,
Bottom,Parte inferiore,
Top,Superiore,

1 A4 A4
9 Actions Azioni
10 Active Attivo
11 Add Aggiungi
Add Comment Aggiungi un commento
12 Add Row Aggiungi riga
13 Address Indirizzo
14 Address Line 2 Indirizzo 2
143 Monthly Mensile
144 More Più
145 More Information Maggiori informazioni
More... Di Più...
146 Move Sposta
147 My Account Il Mio Account
148 New Address Nuovo indirizzo
155 None Nessuna
156 Not Permitted Non Consentito
157 Not active Non attivo
Notes Note
158 Number Numero
159 Online Online
160 Operation Operazione
164 Page Missing or Moved Pagina mancante o spostata
165 Parameter Parametro
166 Password Password
Payment Gateway Gateway di pagamento
Payment Gateway Name Nome gateway di pagamento
Payments pagamenti
167 Period periodo
168 Pincode CAP
Plan Name Nome piano
169 Please enable pop-ups Si prega di abilitare i pop-up
170 Please select Company Selezionare prego
171 Please select {0} Si prega di selezionare {0}
172 Please set Email Address Si prega di impostare l&#39;indirizzo e-mail
Portal Portale
173 Portal Settings Impostazioni del portale
174 Preview anteprima
175 Primary Primaria
214 Sample Esempio
215 Saturday Sabato
216 Saved Salvato
Scan Barcode Scansione Barcode
217 Scheduled Pianificate
218 Search Cerca
219 Secret Key Chiave segreta
228 Shipping spedizione
229 Short Name Nome breve
230 Slideshow Slideshow
Some information is missing Alcune informazioni manca
231 Source Fonte
232 Source Name Source Name
233 Standard Standard
237 Stopped Arrestato
238 Subject Oggetto
239 Submit Conferma
Successful Riuscito
240 Summary Sommario
241 Sunday Domenica
242 System Manager System Manager
249 Timespan Arco di tempo
250 To A
251 To Date A Data
Tools Strumenti
252 Traceback Rintracciare
253 URL URL
254 Unsubscribed Disiscritto
Use Sandbox Usa Sandbox
255 User Utente
256 User ID ID utente
257 Users utenti
556 Bulk Edit {0} Modifica massiva {0}
557 Bulk Rename Rinomina in massa
558 Bulk Update Aggiornamento massivo
Busy Occupato
559 Button Pulsante
560 Button Help pulsante Guida
561 Button Label Etichetta pulsante
693 Complete By Completato da
694 Complete Registration Completa la registrazione
695 Complete Setup installazione completa
Completed By Completato da
696 Compose Email Componi email
697 Condition Detail Dettaglio stato
698 Conditions condizioni
1677 Not a zip file Non è un file zip
1678 Not allowed for {0}: {1} Non consentito per {0}: {1}
1679 You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4} Non sei autorizzato ad accedere a {0} perché è collegato a {1} '{2}' nella riga {3}, campo {4}
1680 You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3} Non sei autorizzato ad accedere a questo record {0} perché è collegato a {1} '{2}' nel campo {3}
1681 Not allowed to Import Non è consentito importare
1682 Not allowed to change {0} after submission Non è permesso di cambiare {0} dopo la presentazione
1683 Not allowed to print cancelled documents Non è consentito di stampare documenti annullati
1805 PayPal Settings Impostazioni PayPal
1806 PayPal payment gateway settings impostazioni di gateway di pagamento PayPal
1807 Payment Cancelled Pagamento Annullato
Payment Failed Pagamento fallito
1808 Payment Success Pagamento Effettuato
1809 Pending Approval In attesa di approvazione
1810 Pending Verification In attesa di verifica
3202 Click on the lock icon to toggle public/private Fai clic sull&#39;icona del lucchetto per attivare / disattivare pubblico / privato
3203 Click on {0} to generate Refresh Token. Fai clic su {0} per generare il token di aggiornamento.
3204 Close Condition Chiudi condizioni
Column {0} Colonna {0}
3205 Columns / Fields Colonne / Campi
3206 Configure notifications for mentions, assignments, energy points and more. Configura le notifiche per menzioni, incarichi, punti energia e altro.
3207 Contact Email Email Contatto
3283 Failure Fallimento
3284 Fetching default Global Search documents. Recupero di documenti di ricerca globale predefiniti.
3285 Fetching posts... Recupero post ...
Field Mapping Mappatura dei campi
3286 Field To Check Campo da controllare
3287 File Information Informazioni sul file
3288 Filter By Filtra per
3437 No records will be exported Nessun record verrà esportato
3438 No results found for {0} in Global Search Nessun risultato trovato per {0} nella Ricerca globale
3439 No user found Nessun utente trovato
Not Specified Non specificato
3440 Notification Log Registro delle notifiche
3441 Notification Settings Impostazioni di notifica
3442 Notification Subscribed Document Documento sottoscritto di notifica
3592 Untranslated untranslated
3593 Upcoming Events Prossimi eventi
3594 Update Existing Records Aggiorna i record esistenti
Update Type Tipo di aggiornamento
3595 Updated To A New Version 🎉 Aggiornato a una nuova versione 🎉
3596 Updating {0} of {1}, {2} Aggiornamento {0} di {1}, {2}
3597 Upload file Caricare un file
3698 Disabled Disabilitato
3699 Doctype Doctype
3700 Download Template Scarica Modello
Dr Dr
3701 Due Date Data di scadenza
3702 Duplicate Duplica
3703 Edit Profile Modifica Profilo
3704 Email E-mail
End Time Ora fine
3705 Enter Value Immettere Valore
3706 Entity Type Tipo di entità
3707 Error Errore
3708 Expired Scaduto
3709 Export Esporta
3710 Export not allowed. You need {0} role to export. Esportazione non consentita . Hai bisogno di {0} ruolo/i da esportare.
Fetching... Recupero ...
3711 Field Campo
3712 File Manager File Manager
3713 Filters Filtri
3722 In Progress In corso
3723 Intermediate Intermedio
3724 Invite as User Invita come utente
It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account. Sembra che ci sia un problema con la configurazione delle strisce del server. In caso di fallimento, l&#39;importo verrà rimborsato sul tuo conto.
3725 Loading... Caricamento in corso ...
3726 Location Posizione
Looks like someone sent you to an incomplete URL. Please ask them to look into it. Sembra che qualcuno ti ha mandato a un URL incompleto. Si prega di chiedere loro di esaminare il problema.
Master Maestro
3727 Message Messaggio
3728 Missing Values Required Valori mancanti richiesti
3729 Mobile No Num. Cellulare
3735 Offline disconnesso
3736 Open Aperto
3737 Page {0} of {1} Pagina {0} di {1}
Pay Paga
3738 Pending In attesa
3739 Phone Telefono
3740 Please click on the following link to set your new password Cliccate sul link seguente per impostare la nuova password
3784 Year Anno
3785 Yearly Annuale
3786 You Tu
You can also copy-paste this link in your browser È possibile anche copiare e incollare questo link nel tuo browser
3787 and e
3788 {0} Name {0} Nome
3789 {0} is required {0} è richiesto
4087 Navbar Navbar
4088 Source Message Messaggio di origine
4089 Translated Message Messaggio tradotto
Verified By Verificato da
4090 Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand. L&#39;utilizzo di questa console potrebbe consentire agli aggressori di impersonarti e rubare le tue informazioni. Non inserire o incollare codice che non capisci.
4091 {0} m {0} m
4092 {0} h {0} h
4119 {0} is not a valid Name {0} non è un nome valido
4120 Your system is being updated. Please refresh again after a few moments. Il tuo sistema è in fase di aggiornamento. Aggiorna di nuovo dopo alcuni istanti.
4121 {0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first. {0} {1}: impossibile eliminare il record inviato. Devi prima {2} annullarlo {3}.
Invalid naming series (. missing) for {0} Serie di denominazione non valida (. Mancante) per {0}
4122 Error has occurred in {0} Si è verificato un errore in {0}
4123 Status Updated Stato aggiornato
4124 You can also copy-paste this {0} to your browser Puoi anche copiare e incollare questo {0} nel tuo browser
4140 Address And Contacts Indirizzo e contatti
4141 Lead Conversion Time Piombo tempo di conversione
4142 Due Date Based On Scadenza basata su
Phone Number Numero di telefono
4143 Linked Documents Documenti collegati
Account SID Account SID
4144 Steps Passi
4145 email e-mail
4146 Component Componente
4147 Subtitle Sottotitolo
Global Defaults Predefiniti Globali
4148 Prefix Prefisso
4149 Is Public È pubblico
4150 This chart will be available to all Users if this is set Questo grafico sarà disponibile per tutti gli utenti se impostato
4331 Please create Card first Crea prima la carta
4332 Onboarding Permission Autorizzazione per l&#39;onboarding
4333 Onboarding Step Fase di onboarding
Is Mandatory È obbligatorio
4334 Is Skipped Viene saltato
4335 Create Entry Crea voce
4336 Update Settings Aggiorna impostazioni
4368 Send Attachments Invia allegati
4369 Testing Test
4370 System Notification Notifica di sistema
WhatsApp WhatsApp
4371 Twilio Number Numero Twilio
4372 To use WhatsApp for Business, initialize <a href="#Form/Twilio Settings">Twilio Settings</a>. Per utilizzare WhatsApp for Business, inizializza <a href="#Form/Twilio Settings">le Impostazioni di Twilio</a> .
4373 To use Slack Channel, add a <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook URL</a>. Per utilizzare Slack Channel, aggiungi un <a href="#List/Slack%20Webhook%20URL/List">URL Webhook Slack</a> .
4502 {0} are currently {1} {0} sono attualmente {1}
4503 Currently Replying Attualmente in risposta
4504 created {0} creato {0}
Make a call Effettuare una chiamata
4505 Change Modificare Coins
4506 Too Many Requests Troppe richieste
4507 Invalid Authorization headers, add a token with a prefix from one of the following: {0}. Intestazioni di autorizzazione non valide, aggiungi un token con un prefisso da uno dei seguenti: {0}.
4667 Negative Value Valore negativo
4668 Authentication failed while receiving emails from Email Account: {0}. Autenticazione non riuscita durante la ricezione di e-mail dall&#39;account e-mail: {0}.
4669 Message from server: {0} Messaggio dal server: {0}
4670 Add Row Aggiungi riga
4671 Analytics Analisi dei dati
4672 Anonymous Anonimo
4673 Author Autore
4674 Basic Base
4675 Billing Fatturazione
4676 Contact Details Dettagli Contatto
4677 Datetime Data e ora
4678 Enable permettere
4679 Event Evento
4680 Full Pieno
4681 Insert Inserire
4682 Interests Interessi
4683 Language Name Nome lingua
4684 License Licenza
4685 Limit Limite
4686 Log Log
4687 Meeting Incontro
4688 My Account Il Mio Account
4689 Newsletters Newsletters
4690 Password Password
4691 Pincode CAP
4692 Please select prefix first Si prega di selezionare il prefisso prima
4693 Please set Email Address Si prega di impostare l&#39;indirizzo e-mail
4694 Please set the series to be used. Si prega di impostare la serie da utilizzare.
4695 Portal Settings Impostazioni del portale
4696 Reference Owner Riferimento proprietario
4697 Region Regione
4698 Report Builder Report Builder
4699 Sample Esempio
4700 Saved Salvato
4701 Series {0} already used in {1} Serie {0} già utilizzata in {1}
4702 Set as Default Imposta come predefinito
4703 Shipping spedizione
4704 Standard Standard
4705 Test Test
4706 Traceback Rintracciare
4707 Unable to find DocType {0} Impossibile trovare DocType {0}
4708 Weekdays Nei giorni feriali
4709 Workflow Flusso di lavoro
4710 You need to be logged in to access this page Devi essere loggato per accedere a questa pagina
4711 County Contea
4712 Images Immagini
4713 Office Ufficio
4714 Passive Passivo
4715 Permanent Permanente
4716 Plant Impianto
4717 Postal Postale
4718 Previous Precedente
4719 Shop Negozio
4720 Subsidiary Sussidiario
4721 There is some problem with the file url: {0} C&#39;è qualche problema con il file url: {0}
4722 Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0} Caratteri speciali tranne &quot;-&quot;, &quot;#&quot;, &quot;.&quot;, &quot;/&quot;, &quot;{{&quot; E &quot;}}&quot; non consentiti nelle serie di nomi {0}
4723 Export Type Tipo di esportazione
4724 Last Sync On Ultima sincronizzazione attivata
4725 Webhook Secret Segreto Webhook
4726 Back to Home Tornare a casa
4727 Customize Personalizza
4728 Edit Profile Modifica Profilo
4729 File Manager File Manager
4730 Invite as User Invita come utente
4731 Newsletter Newsletter
4732 Printing Stampa
4733 Publish Pubblicare
4734 Refreshing Aggiornamento
4735 Select All Seleziona tutto
4736 Set set
4737 Setup Wizard Installazione guidata
4738 Update Details Dettagli aggiornamento
4739 You Tu
4740 {0} Name {0} Nome
4741 Bold Grassetto
4742 Center Centro
4743 Comment Commento
4744 Not Found Non trovato
4745 User Id ID utente
4746 Position Posizione
4747 Crop raccolto
4748 Topic Argomento
4749 Public Transport Trasporto pubblico
4750 Request Data Richiesta dati
4751 Steps Passi
4752 Reference DocType Riferimento DocType
4753 Select Transaction Selezionare Transaction
4754 Help HTML Aiuto HTML
4755 Series List for this Transaction Lista Serie per questa transazione
4756 User must always select L&#39;utente deve sempre selezionare
4757 Check this if you want to force the user to select a series before saving. There will be no default if you check this. Seleziona se vuoi forzare l'utente a selezionare una serie prima di salvare, non ci sarà un valore di default.
4758 Prefix Prefisso
4759 This is the number of the last created transaction with this prefix Questo è il numero dell&#39;ultimo transazione creata con questo prefisso
4760 Update Series Number Aggiorna Numero della Serie
4761 Validation Error errore di convalida
4762 Andaman and Nicobar Islands Isole Andamane e Nicobare
4763 Andhra Pradesh Andhra Pradesh
4764 Arunachal Pradesh Arunachal Pradesh
4765 Assam Assam
4766 Bihar Bihar
4767 Chandigarh Chandigarh
4768 Chhattisgarh Chhattisgarh
4769 Dadra and Nagar Haveli Dadra e Nagar Haveli
4770 Daman and Diu Daman e Diu
4771 Delhi Delhi
4772 Goa Goa
4773 Gujarat Gujarat
4774 Haryana Haryana
4775 Himachal Pradesh Himachal Pradesh
4776 Jammu and Kashmir Jammu e Kashmir
4777 Jharkhand Jharkhand
4778 Karnataka Karnataka
4779 Kerala Kerala
4780 Lakshadweep Islands Isole Lakshadweep
4781 Madhya Pradesh Madhya Pradesh
4782 Maharashtra Maharashtra
4783 Manipur Manipur
4784 Meghalaya Meghalaya
4785 Mizoram Mizoram
4786 Nagaland Nagaland
4787 Odisha Odisha
4788 Other Territory Altro territorio
4789 Pondicherry Pondicherry
4790 Punjab Punjab
4791 Rajasthan Rajasthan
4792 Sikkim Sikkim
4793 Tamil Nadu Tamil Nadu
4794 Telangana Telangana
4795 Tripura Tripura
4796 Uttar Pradesh Uttar Pradesh
4797 Uttarakhand Uttarakhand
4798 West Bengal Bengala occidentale
4799 Published on pubblicato su
4800 Bottom Parte inferiore
4801 Top Superiore

View file

@ -9,7 +9,6 @@ Action,アクション,
Actions,動作,
Active,アクティブ,
Add,追加,
Add Comment,コメント追加,
Add Row,行の追加,
Address,住所,
Address Line 2,住所2行目,
@ -144,7 +143,6 @@ Monday,月曜日,
Monthly,月次,
More,続き,
More Information,詳細,
More...,もっと...,
Move,移動,
My Account,自分のアカウント,
New Address,新しい住所,
@ -157,7 +155,6 @@ No items found.,項目は見つかりませんでした。,
None,なし,
Not Permitted,許可されていません,
Not active,アクティブではありません,
Notes,ノート,
Number,,
Online,オンライン,
Operation,作業,
@ -167,17 +164,12 @@ Owner,所有者,
Page Missing or Moved,ページが存在しません(または移動されました),
Parameter,パラメータ,
Password,パスワード,
Payment Gateway,ペイメントゲートウェイ,
Payment Gateway Name,支払いゲートウェイ名,
Payments,支払,
Period,期間,
Pincode,郵便番号,
Plan Name,計画名,
Please enable pop-ups,ポップアップを有効にしてください,
Please select Company,会社を選択してください,
Please select {0},{0}を選択してください,
Please set Email Address,メールアドレスを設定してください,
Portal,ポータル,
Portal Settings,ポータル設定,
Preview,プレビュー,
Primary,プライマリー,
@ -222,7 +214,6 @@ Salutation,敬称Mr. Ms.,
Sample,サンプル,
Saturday,土曜日,
Saved,保存済,
Scan Barcode,バーコードをスキャン,
Scheduled,スケジュール設定済,
Search,検索,
Secret Key,秘密鍵,
@ -237,7 +228,6 @@ Settings,設定,
Shipping,出荷,
Short Name,略名,
Slideshow,スライドショー,
Some information is missing,一部の情報が欠落しています,
Source,ソース,
Source Name,ソース名,
Standard,標準,
@ -247,7 +237,6 @@ State,状態,
Stopped,停止,
Subject,タイトル,
Submit,提出,
Successful,成功した,
Summary,概要,
Sunday,日曜日,
System Manager,システム管理者,
@ -260,11 +249,9 @@ The page you are looking for is missing. This could be because it is moved or th
Timespan,期間,
To,,
To Date,日付,
Tools,ツール,
Traceback,トレースバック,
URL,URL,
Unsubscribed,購読解除,
Use Sandbox,サンドボックスを使用,
User,ユーザー,
User ID,ユーザー ID,
Users,ユーザー,
@ -569,7 +556,6 @@ Bulk Delete,一括削除,
Bulk Edit {0},一括編集{0},
Bulk Rename,一括名前変更,
Bulk Update,一括更新,
Busy,取り込み中,
Button,ボタン,
Button Help,ボタンヘルプ,
Button Label,ボタンラベル,
@ -706,7 +692,6 @@ Compiled Successfully,正常にコンパイルされた,
Complete By,までに完了,
Complete Registration,登録完了,
Complete Setup,完全セットアップ,
Completed By,完了者,
Compose Email,Eメールの作成,
Condition Detail,条件の詳細,
Conditions,条件,
@ -1690,8 +1675,8 @@ Not a valid Workflow Action,有効なワークフローアクションではあ
Not a valid user,有効なユーザーではありません,
Not a zip file,zipファイルではありません,
Not allowed for {0}: {1},{0}には使用できません:{1},
"You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4}","{0}にアクセスすることはできません。{3}行{4}フィールドにリンクされている{1} '{2}'",
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},"この{0}レコードにアクセスすることはできません。{3}フィールドにリンクされている{1} '{2}'",
"You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4}",{0}にアクセスすることはできません。{3}行{4}フィールドにリンクされている{1} '{2}',
You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3},この{0}レコードにアクセスすることはできません。{3}フィールドにリンクされている{1} '{2}',
Not allowed to Import,インポートは許可されていません,
Not allowed to change {0} after submission,送信後{0}を変更することはできません,
Not allowed to print cancelled documents,キャンセルされた文書を印刷することはできません,
@ -1819,7 +1804,6 @@ Path to private Key File,秘密鍵ファイルへのパス,
PayPal Settings,PayPalの設定,
PayPal payment gateway settings,PayPalの支払いゲートウェイの設定,
Payment Cancelled,お支払いキャンセル,
Payment Failed,支払いできませんでした,
Payment Success,支払成功,
Pending Approval,承認待ちの,
Pending Verification,保留中の確認,
@ -3216,7 +3200,6 @@ Click on the link below to approve the request,下のリンクをクリックし
Click on the lock icon to toggle public/private,ロックアイコンをクリックして、パブリック/プライベートを切り替えます,
Click on {0} to generate Refresh Token.,{0}をクリックしてリフレッシュトークンを生成してください。,
Close Condition,クローズ状態,
Column {0},列{0},
Columns / Fields,列/フィールド,
"Configure notifications for mentions, assignments, energy points and more.",メンション、割り当て、エネルギーポイントなどの通知を構成します。,
Contact Email,連絡先 メール,
@ -3298,7 +3281,6 @@ Failed to create an Event Consumer or an Event Consumer for the current site is
Failure,失敗,
Fetching default Global Search documents.,デフォルトのグローバル検索ドキュメントの取得。,
Fetching posts...,投稿を取得しています...,
Field Mapping,フィールドマッピング,
Field To Check,チェックするフィールド,
File Information,ファイル情報,
Filter By,フィルタリングする,
@ -3453,7 +3435,6 @@ No posts yet,まだ投稿がありません,
No records will be exported,レコードはエクスポートされません,
No results found for {0} in Global Search,グローバル検索で{0}の結果が見つかりませんでした,
No user found,ユーザーが見つかりません,
Not Specified,指定されていない,
Notification Log,通知ログ,
Notification Settings,通知設定,
Notification Subscribed Document,通知購読文書,
@ -3609,7 +3590,6 @@ Untitled Column,無題のコラム,
Untranslated,未翻訳,
Upcoming Events,今後のイベント,
Update Existing Records,既存のレコードを更新する,
Update Type,更新タイプ,
Updated To A New Version 🎉,新しいバージョンに更新🎉,
"Updating {0} of {1}, {2}",{1}、{2}の{0}を更新しています,
Upload file,ファイルをアップロードする,
@ -3716,19 +3696,16 @@ Designation,肩書,
Disabled,無効,
Doctype,文書タイプ,
Download Template,テンプレートのダウンロード,
Dr,借方,
Due Date,期日,
Duplicate,複製,
Edit Profile,プロフィール編集,
Email,Eメール,
End Time,終了時間,
Enter Value,値を入力します,
Entity Type,エンティティタイプ,
Error,エラー,
Expired,期限切れ,
Export,エクスポート,
Export not allowed. You need {0} role to export.,エクスポートは許可されていません。役割{0}を必要とします。,
Fetching...,取得しています...,
Field,フィールド,
File Manager,ファイルマネージャー,
Filters,フィルター,
@ -3743,11 +3720,8 @@ Import Data from CSV / Excel files.,CSV / Excelファイルからデータをイ
In Progress,進行中,
Intermediate,中間体,
Invite as User,ユーザーとして招待,
"It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account.",サーバーのストライプ構成に問題があるようです。不具合が発生した場合、その金額はお客様のアカウントに払い戻されます。,
Loading...,読み込んでいます...,
Location,場所,
Looks like someone sent you to an incomplete URL. Please ask them to look into it.,あなたが不完全なURLに送信された誰かのように見えます。それに見て、それらを依頼してください。,
Master,マスター,
Message,メッセージ,
Missing Values Required,欠損値が必要です,
Mobile No,携帯番号,
@ -3759,7 +3733,6 @@ Note,ノート,
Offline,オフライン,
Open,オープン,
Page {0} of {1},ページ {0} / {1},
Pay,支払,
Pending,保留,
Phone,電話,
Please click on the following link to set your new password,新しいパスワードを設定するには、次のリンクをクリックしてください,
@ -3809,7 +3782,6 @@ Welcome to {0},{0}へようこそ,
Year,,
Yearly,毎年,
You,あなた,
You can also copy-paste this link in your browser,このリンクをコピー&ペーストできます,
and,,
{0} Name,{0}の名前,
{0} is required,{0}が必要です,
@ -4113,7 +4085,6 @@ Custom SCSS,カスタムSCSS,
Navbar,ナビゲーションバー,
Source Message,ソースメッセージ,
Translated Message,翻訳されたメッセージ,
Verified By,検証者,
Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand.,このコンソールを使用すると、攻撃者があなたになりすまして情報を盗む可能性があります。わからないコードを入力したり貼り付けたりしないでください。,
{0} m,{0} m,
{0} h,{0}時間,
@ -4146,7 +4117,6 @@ Collapse,崩壊,
{0} is not a valid Name,{0}は有効な名前ではありません,
Your system is being updated. Please refresh again after a few moments.,システムが更新されています。しばらくしてからもう一度更新してください。,
{0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first.,{0} {1}:送信されたレコードは削除できません。最初に{2}キャンセル{3}する必要があります。,
Invalid naming series (. missing) for {0},{0}の命名シリーズが無効です(。欠落しています),
Error has occurred in {0},{0}でエラーが発生しました,
Status Updated,ステータスが更新されました,
You can also copy-paste this {0} to your browser,この{0}をブラウザにコピーして貼り付けることもできます,
@ -4168,14 +4138,11 @@ Is Billing Contact,請求先です,
Address And Contacts,住所と連絡先,
Lead Conversion Time,リード変換時間,
Due Date Based On,期日ベース,
Phone Number,電話番号,
Linked Documents,リンクされたドキュメント,
Account SID,アカウントSID,
Steps,ステップ,
email,Eメール,
Component,成分,
Subtitle,字幕,
Global Defaults,共通デフォルト設定,
Prefix,接頭辞,
Is Public,公開されています,
This chart will be available to all Users if this is set,これが設定されている場合、このチャートはすべてのユーザーが利用できます,
@ -4362,7 +4329,6 @@ Dynamic Filters Section,ダイナミックフィルターセクション,
Please create Card first,最初にカードを作成してください,
Onboarding Permission,オンボーディング許可,
Onboarding Step,オンボーディングステップ,
Is Mandatory,必須です,
Is Skipped,スキップされます,
Create Entry,エントリを作成する,
Update Settings,設定を更新,
@ -4400,7 +4366,6 @@ Message (HTML),メッセージHTML,
Send Attachments,添付ファイルを送信する,
Testing,テスト,
System Notification,システム通知,
WhatsApp,WhatsApp,
Twilio Number,Twilio番号,
"To use WhatsApp for Business, initialize <a href=""#Form/Twilio Settings"">Twilio Settings</a>.","WhatsApp for Businessを使用するには、 <a href=""#Form/Twilio Settings"">Twilio設定を</a>初期化します。",
"To use Slack Channel, add a <a href=""#List/Slack%20Webhook%20URL/List"">Slack Webhook URL</a>.","Slack Channelを使用するには、 <a href=""#List/Slack%20Webhook%20URL/List"">Slack WebhookURLを</a>追加し<a href=""#List/Slack%20Webhook%20URL/List"">ます</a>。",
@ -4535,7 +4500,6 @@ Add to ToDo,ToDoに追加,
{0} are currently {1},{0}は現在{1}です,
Currently Replying,現在返信中,
created {0},作成された{0},
Make a call,電話を掛ける,
Change,変化する,Coins
Too Many Requests,リクエストが多すぎます,
"Invalid Authorization headers, add a token with a prefix from one of the following: {0}.",無効な承認ヘッダー。次のいずれかのプレフィックスを持つトークンを追加します:{0}。,
@ -4700,3 +4664,135 @@ Value cannot be negative for {0}: {1},{0}の値を負にすることはできま
Negative Value,負の値,
Authentication failed while receiving emails from Email Account: {0}.,電子メールアカウントからの電子メールの受信中に認証に失敗しました:{0}。,
Message from server: {0},サーバーからのメッセージ:{0},
Add Row,行の追加,
Analytics,分析,
Anonymous,匿名,
Author,著者,
Basic,基本,
Billing,請求,
Contact Details,連絡先の詳細,
Datetime,日時,
Enable,有効にする,
Event,イベント,
Full,フル,
Insert,挿入,
Interests,興味,
Language Name,言語名,
License,運転免許,
Limit,リミット,
Log,ログ,
Meeting,会議,
My Account,自分のアカウント,
Newsletters,ニュースレター,
Password,パスワード,
Pincode,郵便番号,
Please select prefix first,接頭辞を選択してください,
Please set Email Address,メールアドレスを設定してください,
Please set the series to be used.,使用するシリーズを設定してください。,
Portal Settings,ポータル設定,
Reference Owner,参照オーナー,
Region,地域,
Report Builder,レポートビルダ,
Sample,サンプル,
Saved,保存済,
Series {0} already used in {1},シリーズは、{0}はすでに{1}で使用されています,
Set as Default,デフォルトに設定,
Shipping,出荷,
Standard,標準,
Test,テスト,
Traceback,トレースバック,
Unable to find DocType {0},DocType {0}を見つけることができません,
Weekdays,平日,
Workflow,ワークフロー,
You need to be logged in to access this page,このページにアクセスするにはログインする必要があります,
County,,
Images,画像,
Office,事務所,
Passive,消極的,
Permanent,恒久的な,
Plant,プラント,
Postal,郵便,
Previous,,
Shop,,
Subsidiary,子会社,
There is some problem with the file url: {0},ファイルURLに問題があります{0},
"Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}",&quot; - &quot;、 &quot;&quot;、 &quot;。&quot;、 &quot;/&quot;、 &quot;{{&quot;、および &quot;}}&quot;以外の特殊文字は、一連の名前付けでは使用できません {0},
Export Type,輸出タイプ,
Last Sync On,最後の同期オン,
Webhook Secret,Webhookシークレット,
Back to Home,家に帰る,
Customize,カスタマイズ,
Edit Profile,プロフィール編集,
File Manager,ファイルマネージャー,
Invite as User,ユーザーとして招待,
Newsletter,ニュースレター,
Printing,印刷,
Publish,公開,
Refreshing,リフレッシュ,
Select All,すべて選択,
Set,設定,
Setup Wizard,セットアップウィザード,
Update Details,更新の詳細,
You,あなた,
{0} Name,{0}の名前,
Bold,大胆な,
Center,中央,
Comment,コメント,
Not Found,見つかりません,
User Id,ユーザーID,
Position,ポジション,
Crop,作物,
Topic,トピック,
Public Transport,公共交通機関,
Request Data,リクエストデータ,
Steps,ステップ,
Reference DocType,参照DocType,
Select Transaction,取引を選択,
Help HTML,HTMLヘルプ,
Series List for this Transaction,この取引のシリーズ一覧,
User must always select,ユーザーは常に選択する必要があります,
Check this if you want to force the user to select a series before saving. There will be no default if you check this.,あなたが保存する前に、一連の選択をユーザに強制したい場合は、これを確認してください。これをチェックするとデフォルトはありません。,
Prefix,接頭辞,
This is the number of the last created transaction with this prefix,この接頭辞が付いた最新の取引番号です,
Update Series Number,シリーズ番号更新,
Validation Error,検証エラー,
Andaman and Nicobar Islands,アンダマンニコバル諸島,
Andhra Pradesh,アンドラプラデーシュ,
Arunachal Pradesh,アルナーチャルプラデーシュ州,
Assam,アッサム,
Bihar,ビハール,
Chandigarh,チャンディーガル,
Chhattisgarh,チャッティースガル,
Dadra and Nagar Haveli,ダドラとナガルハベリ,
Daman and Diu,ダマンディーウ,
Delhi,デリー,
Goa,行きます,
Gujarat,グジャラート,
Haryana,ハリヤナ,
Himachal Pradesh,ヒマーチャルプラデーシュ州,
Jammu and Kashmir,ジャンムー・カシミール,
Jharkhand,ジャールカンド,
Karnataka,カルナータカ,
Kerala,ケララ,
Lakshadweep Islands,ラクシャディープ諸島,
Madhya Pradesh,マディヤプラデーシュ,
Maharashtra,マハラシュトラ,
Manipur,マニプール,
Meghalaya,メガラヤ,
Mizoram,ミゾラム,
Nagaland,ナガランド,
Odisha,オリッサ,
Other Territory,その他の地域,
Pondicherry,ポンディシェリ,
Punjab,パンジャーブ,
Rajasthan,ラージャスターン,
Sikkim,シッキム,
Tamil Nadu,タミル・ナードゥ,
Telangana,テランガーナ,
Tripura,トリプラ,
Uttar Pradesh,ウッタルプラデーシュ,
Uttarakhand,ウッタラーカンド州,
West Bengal,西ベンガル,
Published on,に公開,
Bottom,,
Top,,

1 A4 A4
9 Actions 動作
10 Active アクティブ
11 Add 追加
Add Comment コメント追加
12 Add Row 行の追加
13 Address 住所
14 Address Line 2 住所2行目
143 Monthly 月次
144 More 続き
145 More Information 詳細
More... もっと...
146 Move 移動
147 My Account 自分のアカウント
148 New Address 新しい住所
155 None なし
156 Not Permitted 許可されていません
157 Not active アクティブではありません
Notes ノート
158 Number
159 Online オンライン
160 Operation 作業
164 Page Missing or Moved ページが存在しません(または移動されました)
165 Parameter パラメータ
166 Password パスワード
Payment Gateway ペイメントゲートウェイ
Payment Gateway Name 支払いゲートウェイ名
Payments 支払
167 Period 期間
168 Pincode 郵便番号
Plan Name 計画名
169 Please enable pop-ups ポップアップを有効にしてください
170 Please select Company 会社を選択してください
171 Please select {0} {0}を選択してください
172 Please set Email Address メールアドレスを設定してください
Portal ポータル
173 Portal Settings ポータル設定
174 Preview プレビュー
175 Primary プライマリー
214 Sample サンプル
215 Saturday 土曜日
216 Saved 保存済
Scan Barcode バーコードをスキャン
217 Scheduled スケジュール設定済
218 Search 検索
219 Secret Key 秘密鍵
228 Shipping 出荷
229 Short Name 略名
230 Slideshow スライドショー
Some information is missing 一部の情報が欠落しています
231 Source ソース
232 Source Name ソース名
233 Standard 標準
237 Stopped 停止
238 Subject タイトル
239 Submit 提出
Successful 成功した
240 Summary 概要
241 Sunday 日曜日
242 System Manager システム管理者
249 Timespan 期間
250 To
251 To Date 日付
Tools ツール
252 Traceback トレースバック
253 URL URL
254 Unsubscribed 購読解除
Use Sandbox サンドボックスを使用
255 User ユーザー
256 User ID ユーザー ID
257 Users ユーザー
556 Bulk Edit {0} 一括編集{0}
557 Bulk Rename 一括名前変更
558 Bulk Update 一括更新
Busy 取り込み中
559 Button ボタン
560 Button Help ボタンヘルプ
561 Button Label ボタンラベル
692 Complete By までに完了
693 Complete Registration 登録完了
694 Complete Setup 完全セットアップ
Completed By 完了者
695 Compose Email Eメールの作成
696 Condition Detail 条件の詳細
697 Conditions 条件
1675 Not a valid user 有効なユーザーではありません
1676 Not a zip file zipファイルではありません
1677 Not allowed for {0}: {1} {0}には使用できません:{1}
1678 You are not allowed to access {0} because it is linked to {1} '{2}' in row {3}, field {4} {0}にアクセスすることはできません。{3}行{4}フィールドにリンクされている{1} '{2}'
1679 You are not allowed to access this {0} record because it is linked to {1} '{2}' in field {3} この{0}レコードにアクセスすることはできません。{3}フィールドにリンクされている{1} '{2}'
1680 Not allowed to Import インポートは許可されていません
1681 Not allowed to change {0} after submission 送信後{0}を変更することはできません
1682 Not allowed to print cancelled documents キャンセルされた文書を印刷することはできません
1804 PayPal Settings PayPalの設定
1805 PayPal payment gateway settings PayPalの支払いゲートウェイの設定
1806 Payment Cancelled お支払いキャンセル
Payment Failed 支払いできませんでした
1807 Payment Success 支払成功
1808 Pending Approval 承認待ちの
1809 Pending Verification 保留中の確認
3200 Click on the lock icon to toggle public/private ロックアイコンをクリックして、パブリック/プライベートを切り替えます
3201 Click on {0} to generate Refresh Token. {0}をクリックしてリフレッシュトークンを生成してください。
3202 Close Condition クローズ状態
Column {0} 列{0}
3203 Columns / Fields 列/フィールド
3204 Configure notifications for mentions, assignments, energy points and more. メンション、割り当て、エネルギーポイントなどの通知を構成します。
3205 Contact Email 連絡先 メール
3281 Failure 失敗
3282 Fetching default Global Search documents. デフォルトのグローバル検索ドキュメントの取得。
3283 Fetching posts... 投稿を取得しています...
Field Mapping フィールドマッピング
3284 Field To Check チェックするフィールド
3285 File Information ファイル情報
3286 Filter By フィルタリングする
3435 No records will be exported レコードはエクスポートされません
3436 No results found for {0} in Global Search グローバル検索で{0}の結果が見つかりませんでした
3437 No user found ユーザーが見つかりません
Not Specified 指定されていない
3438 Notification Log 通知ログ
3439 Notification Settings 通知設定
3440 Notification Subscribed Document 通知購読文書
3590 Untranslated 未翻訳
3591 Upcoming Events 今後のイベント
3592 Update Existing Records 既存のレコードを更新する
Update Type 更新タイプ
3593 Updated To A New Version 🎉 新しいバージョンに更新🎉
3594 Updating {0} of {1}, {2} {1}、{2}の{0}を更新しています
3595 Upload file ファイルをアップロードする
3696 Disabled 無効
3697 Doctype 文書タイプ
3698 Download Template テンプレートのダウンロード
Dr 借方
3699 Due Date 期日
3700 Duplicate 複製
3701 Edit Profile プロフィール編集
3702 Email Eメール
End Time 終了時間
3703 Enter Value 値を入力します
3704 Entity Type エンティティタイプ
3705 Error エラー
3706 Expired 期限切れ
3707 Export エクスポート
3708 Export not allowed. You need {0} role to export. エクスポートは許可されていません。役割{0}を必要とします。
Fetching... 取得しています...
3709 Field フィールド
3710 File Manager ファイルマネージャー
3711 Filters フィルター
3720 In Progress 進行中
3721 Intermediate 中間体
3722 Invite as User ユーザーとして招待
It seems that there is an issue with the server's stripe configuration. In case of failure, the amount will get refunded to your account. サーバーのストライプ構成に問題があるようです。不具合が発生した場合、その金額はお客様のアカウントに払い戻されます。
3723 Loading... 読み込んでいます...
3724 Location 場所
Looks like someone sent you to an incomplete URL. Please ask them to look into it. あなたが不完全なURLに送信された誰かのように見えます。それに見て、それらを依頼してください。
Master マスター
3725 Message メッセージ
3726 Missing Values Required 欠損値が必要です
3727 Mobile No 携帯番号
3733 Offline オフライン
3734 Open オープン
3735 Page {0} of {1} ページ {0} / {1}
Pay 支払
3736 Pending 保留
3737 Phone 電話
3738 Please click on the following link to set your new password 新しいパスワードを設定するには、次のリンクをクリックしてください
3782 Year
3783 Yearly 毎年
3784 You あなた
You can also copy-paste this link in your browser このリンクをコピー&ペーストできます
3785 and
3786 {0} Name {0}の名前
3787 {0} is required {0}が必要です
4085 Navbar ナビゲーションバー
4086 Source Message ソースメッセージ
4087 Translated Message 翻訳されたメッセージ
Verified By 検証者
4088 Using this console may allow attackers to impersonate you and steal your information. Do not enter or paste code that you do not understand. このコンソールを使用すると、攻撃者があなたになりすまして情報を盗む可能性があります。わからないコードを入力したり貼り付けたりしないでください。
4089 {0} m {0} m
4090 {0} h {0}時間
4117 {0} is not a valid Name {0}は有効な名前ではありません
4118 Your system is being updated. Please refresh again after a few moments. システムが更新されています。しばらくしてからもう一度更新してください。
4119 {0} {1}: Submitted Record cannot be deleted. You must {2} Cancel {3} it first. {0} {1}:送信されたレコードは削除できません。最初に{2}キャンセル{3}する必要があります。
Invalid naming series (. missing) for {0} {0}の命名シリーズが無効です(。欠落しています)
4120 Error has occurred in {0} {0}でエラーが発生しました
4121 Status Updated ステータスが更新されました
4122 You can also copy-paste this {0} to your browser この{0}をブラウザにコピーして貼り付けることもできます
4138 Address And Contacts 住所と連絡先
4139 Lead Conversion Time リード変換時間
4140 Due Date Based On 期日ベース
Phone Number 電話番号
4141 Linked Documents リンクされたドキュメント
Account SID アカウントSID
4142 Steps ステップ
4143 email Eメール
4144 Component 成分
4145 Subtitle 字幕
Global Defaults 共通デフォルト設定
4146 Prefix 接頭辞
4147 Is Public 公開されています
4148 This chart will be available to all Users if this is set これが設定されている場合、このチャートはすべてのユーザーが利用できます
4329 Please create Card first 最初にカードを作成してください
4330 Onboarding Permission オンボーディング許可
4331 Onboarding Step オンボーディングステップ
Is Mandatory 必須です
4332 Is Skipped スキップされます
4333 Create Entry エントリを作成する
4334 Update Settings 設定を更新
4366 Send Attachments 添付ファイルを送信する
4367 Testing テスト
4368 System Notification システム通知
WhatsApp WhatsApp
4369 Twilio Number Twilio番号
4370 To use WhatsApp for Business, initialize <a href="#Form/Twilio Settings">Twilio Settings</a>. WhatsApp for Businessを使用するには、 <a href="#Form/Twilio Settings">Twilio設定を</a>初期化します。
4371 To use Slack Channel, add a <a href="#List/Slack%20Webhook%20URL/List">Slack Webhook URL</a>. Slack Channelを使用するには、 <a href="#List/Slack%20Webhook%20URL/List">Slack WebhookURLを</a>追加し<a href="#List/Slack%20Webhook%20URL/List">ます</a>。
4500 {0} are currently {1} {0}は現在{1}です
4501 Currently Replying 現在返信中
4502 created {0} 作成された{0}
Make a call 電話を掛ける
4503 Change 変化する Coins
4504 Too Many Requests リクエストが多すぎます
4505 Invalid Authorization headers, add a token with a prefix from one of the following: {0}. 無効な承認ヘッダー。次のいずれかのプレフィックスを持つトークンを追加します:{0}。
4664 Negative Value 負の値
4665 Authentication failed while receiving emails from Email Account: {0}. 電子メールアカウントからの電子メールの受信中に認証に失敗しました:{0}。
4666 Message from server: {0} サーバーからのメッセージ:{0}
4667 Add Row 行の追加
4668 Analytics 分析
4669 Anonymous 匿名
4670 Author 著者
4671 Basic 基本
4672 Billing 請求
4673 Contact Details 連絡先の詳細
4674 Datetime 日時
4675 Enable 有効にする
4676 Event イベント
4677 Full フル
4678 Insert 挿入
4679 Interests 興味
4680 Language Name 言語名
4681 License 運転免許
4682 Limit リミット
4683 Log ログ
4684 Meeting 会議
4685 My Account 自分のアカウント
4686 Newsletters ニュースレター
4687 Password パスワード
4688 Pincode 郵便番号
4689 Please select prefix first 接頭辞を選択してください
4690 Please set Email Address メールアドレスを設定してください
4691 Please set the series to be used. 使用するシリーズを設定してください。
4692 Portal Settings ポータル設定
4693 Reference Owner 参照オーナー
4694 Region 地域
4695 Report Builder レポートビルダ
4696 Sample サンプル
4697 Saved 保存済
4698 Series {0} already used in {1} シリーズは、{0}はすでに{1}で使用されています
4699 Set as Default デフォルトに設定
4700 Shipping 出荷
4701 Standard 標準
4702 Test テスト
4703 Traceback トレースバック
4704 Unable to find DocType {0} DocType {0}を見つけることができません
4705 Weekdays 平日
4706 Workflow ワークフロー
4707 You need to be logged in to access this page このページにアクセスするにはログインする必要があります
4708 County
4709 Images 画像
4710 Office 事務所
4711 Passive 消極的
4712 Permanent 恒久的な
4713 Plant プラント
4714 Postal 郵便
4715 Previous
4716 Shop
4717 Subsidiary 子会社
4718 There is some problem with the file url: {0} ファイルURLに問題があります:{0}
4719 Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0} &quot; - &quot;、 &quot;#&quot;、 &quot;。&quot;、 &quot;/&quot;、 &quot;{{&quot;、および &quot;}}&quot;以外の特殊文字は、一連の名前付けでは使用できません {0}
4720 Export Type 輸出タイプ
4721 Last Sync On 最後の同期オン
4722 Webhook Secret Webhookシークレット
4723 Back to Home 家に帰る
4724 Customize カスタマイズ
4725 Edit Profile プロフィール編集
4726 File Manager ファイルマネージャー
4727 Invite as User ユーザーとして招待
4728 Newsletter ニュースレター
4729 Printing 印刷
4730 Publish 公開
4731 Refreshing リフレッシュ
4732 Select All すべて選択
4733 Set 設定
4734 Setup Wizard セットアップウィザード
4735 Update Details 更新の詳細
4736 You あなた
4737 {0} Name {0}の名前
4738 Bold 大胆な
4739 Center 中央
4740 Comment コメント
4741 Not Found 見つかりません
4742 User Id ユーザーID
4743 Position ポジション
4744 Crop 作物
4745 Topic トピック
4746 Public Transport 公共交通機関
4747 Request Data リクエストデータ
4748 Steps ステップ
4749 Reference DocType 参照DocType
4750 Select Transaction 取引を選択
4751 Help HTML HTMLヘルプ
4752 Series List for this Transaction この取引のシリーズ一覧
4753 User must always select ユーザーは常に選択する必要があります
4754 Check this if you want to force the user to select a series before saving. There will be no default if you check this. あなたが保存する前に、一連の選択をユーザに強制したい場合は、これを確認してください。これをチェックするとデフォルトはありません。
4755 Prefix 接頭辞
4756 This is the number of the last created transaction with this prefix この接頭辞が付いた最新の取引番号です
4757 Update Series Number シリーズ番号更新
4758 Validation Error 検証エラー
4759 Andaman and Nicobar Islands アンダマンニコバル諸島
4760 Andhra Pradesh アンドラプラデーシュ
4761 Arunachal Pradesh アルナーチャルプラデーシュ州
4762 Assam アッサム
4763 Bihar ビハール
4764 Chandigarh チャンディーガル
4765 Chhattisgarh チャッティースガル
4766 Dadra and Nagar Haveli ダドラとナガルハベリ
4767 Daman and Diu ダマンディーウ
4768 Delhi デリー
4769 Goa 行きます
4770 Gujarat グジャラート
4771 Haryana ハリヤナ
4772 Himachal Pradesh ヒマーチャルプラデーシュ州
4773 Jammu and Kashmir ジャンムー・カシミール
4774 Jharkhand ジャールカンド
4775 Karnataka カルナータカ
4776 Kerala ケララ
4777 Lakshadweep Islands ラクシャディープ諸島
4778 Madhya Pradesh マディヤプラデーシュ
4779 Maharashtra マハラシュトラ
4780 Manipur マニプール
4781 Meghalaya メガラヤ
4782 Mizoram ミゾラム
4783 Nagaland ナガランド
4784 Odisha オリッサ
4785 Other Territory その他の地域
4786 Pondicherry ポンディシェリ
4787 Punjab パンジャーブ
4788 Rajasthan ラージャスターン
4789 Sikkim シッキム
4790 Tamil Nadu タミル・ナードゥ
4791 Telangana テランガーナ
4792 Tripura トリプラ
4793 Uttar Pradesh ウッタルプラデーシュ
4794 Uttarakhand ウッタラーカンド州
4795 West Bengal 西ベンガル
4796 Published on に公開
4797 Bottom
4798 Top

Some files were not shown because too many files have changed in this diff Show more