Merge branch 'develop' into feat/improve-openid-connect-devx
This commit is contained in:
commit
64a09be958
152 changed files with 9521 additions and 2707 deletions
21
.github/workflows/patch-mariadb-tests.yml
vendored
21
.github/workflows/patch-mariadb-tests.yml
vendored
|
|
@ -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() }}
|
||||
|
|
|
|||
|
|
@ -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_*"],
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
|
|
|
|||
77
frappe/core/doctype/audit_trail/audit_trail.html
Normal file
77
frappe/core/doctype/audit_trail/audit_trail.html
Normal 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>
|
||||
67
frappe/core/doctype/audit_trail/audit_trail.js
Normal file
67
frappe/core/doctype/audit_trail/audit_trail.js
Normal 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);
|
||||
}
|
||||
},
|
||||
});
|
||||
94
frappe/core/doctype/audit_trail/audit_trail.json
Normal file
94
frappe/core/doctype/audit_trail/audit_trail.json
Normal 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": []
|
||||
}
|
||||
129
frappe/core/doctype/audit_trail/audit_trail.py
Normal file
129
frappe/core/doctype/audit_trail/audit_trail.py
Normal 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
|
||||
|
|
@ -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>
|
||||
134
frappe/core/doctype/audit_trail/test_audit_trail.py
Normal file
134
frappe/core/doctype/audit_trail/test_audit_trail.py
Normal 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
|
||||
|
|
@ -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):
|
||||
|
|
|
|||
|
|
@ -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):
|
||||
|
|
|
|||
|
|
@ -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=[
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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):
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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[
|
||||
"#,###.##",
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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"]:
|
||||
|
|
|
|||
|
|
@ -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(
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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 = [
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
|
|
|
|||
|
|
@ -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]()
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 |
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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 () {
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
`;
|
||||
|
|
|
|||
|
|
@ -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") { %}
|
||||
·
|
||||
<span class="text-muted">{%= __(addr.address_type) %}</span>
|
||||
{% } %}
|
||||
{% if (addr.is_primary_address) { %}
|
||||
·
|
||||
<span class="text-muted">{%= __("Primary Address") %}</span>
|
||||
{% } %}
|
||||
{% if (addr.is_shipping_address) { %}
|
||||
·
|
||||
<span class="text-muted">{%= __("Shipping Address") %}</span>
|
||||
{% } %}
|
||||
{% if (addr.disabled) { %}
|
||||
·
|
||||
<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>
|
||||
|
|
|
|||
|
|
@ -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"> ({%= __("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) { %}
|
||||
·
|
||||
<span class="text-muted">{%= __("Primary Contact") %}</span>
|
||||
{% } %}
|
||||
{% if(contact.designation){ %}
|
||||
<span class="text-muted">– {%= contact.designation %}</span>
|
||||
{% if (contact.is_billing_contact) { %}
|
||||
·
|
||||
<span class="text-muted">{%= __("Billing Contact") %}</span>
|
||||
{% } %}
|
||||
{% if (contact.designation){ %}
|
||||
·
|
||||
<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> · <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>
|
||||
·
|
||||
<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> · <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>
|
||||
·
|
||||
<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> · <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>
|
||||
·
|
||||
<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>
|
||||
|
|
|
|||
|
|
@ -378,7 +378,8 @@ frappe.ui.form.Toolbar = class Toolbar {
|
|||
function () {
|
||||
me.frm.copy_doc();
|
||||
},
|
||||
true
|
||||
true,
|
||||
"Shift+D"
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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>`
|
||||
: "";
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
},
|
||||
];
|
||||
|
|
|
|||
|
|
@ -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] || {};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
})
|
||||
);
|
||||
});
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -205,4 +205,10 @@
|
|||
margin-left: calc(-1 * var(--margin-sm));
|
||||
}
|
||||
}
|
||||
|
||||
&:hover.overlap {
|
||||
.avatar:not(:first-child) {
|
||||
margin-left: var(--margin-xs);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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">
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@
|
|||
</td>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
|
|||
|
|
@ -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;">
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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 -%}
|
||||
|
|
|
|||
|
|
@ -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 %}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
{{- frappe.format(row[col.fieldname], col, row) -}}
|
||||
</td>
|
||||
{% endfor %}
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
</table>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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 -->
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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))
|
||||
)
|
||||
|
|
|
|||
|
|
@ -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 'n geldige gebruiker nie,
|
|||
Not a zip file,Nie '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} '{2}' 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} '{2}' 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} '{2}' 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 '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 '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 '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 '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 '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 '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 '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 'n teken met '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 'n probleem met die lêer url: {0},
|
||||
"Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}","Spesiale karakters behalwe "-", "#", ".", "/", "{{" En "}}" 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 '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,
|
||||
|
|
|
|||
|
|
|
@ -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}",ከ "-" ፣ "#" ፣ "፣" ፣ "/" ፣ "{{" እና "}}" በስተቀር ልዩ ቁምፊዎች ከመለያ መሰየሚያ አይፈቀድም {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,ከላይ,
|
||||
|
|
|
|||
|
|
|
@ -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} الأحرف الخاصة باستثناء "-" ، "#" ، "." ، "/" ، "{{" و "}}" غير مسموح في سلسلة التسمية,
|
||||
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,أعلى,
|
||||
|
|
|
|||
|
|
|
@ -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}","Специални символи, с изключение на "-", "#", ".", "/", "{{" И "}}" не са позволени в именуването на серии {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,Горна част,
|
||||
|
|
|
|||
|
|
|
@ -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} '{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,পেপ্যাল পেমেন্ট গেটওয়ে সেটিংস,
|
||||
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}","নামকরণ সিরিজে "-", "#", "।", "/", "{{" এবং "}}" ব্যতীত বিশেষ অক্ষর অনুমোদিত নয় {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,শীর্ষ,
|
||||
|
|
|
|||
|
|
|
@ -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 "-", "#", ".", "/", "{{" I "}}" 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,
|
||||
|
|
|
|||
|
|
|
@ -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 s’ha 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'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'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'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'èxit de pagament,
|
||||
Pending Approval,Pendent d'aprovació,
|
||||
Pending Verification,Pendent de verificar,
|
||||
|
|
@ -3216,7 +3200,6 @@ Click on the link below to approve the request,Feu clic a l’enllaç 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 d’actualització.,
|
||||
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'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'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 s’exportaran registres,
|
||||
No results found for {0} in Global Search,No s'han trobat resultats per a {0} a la cerca global,
|
||||
No user found,No s'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 d’actualització,
|
||||
Updated To A New Version 🎉,S'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'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'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'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'ús d'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'està actualitzant. Actualitzeu de nou després d’uns 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'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'incorporació,
|
||||
Onboarding Step,Pas d’incorporació,
|
||||
Is Mandatory,És obligatori,
|
||||
Is Skipped,S'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'autorització no són vàlides; afegiu un testimoni amb un prefix d'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'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'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'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'arxiu: {0},
|
||||
"Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}","Caràcters especials, excepte "-", "#", ".", "/", "{{" I "}}" no estan permesos en nomenar sèries {0}",
|
||||
Export Type,Tipus d'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 d’actualització,
|
||||
You,Vostè,
|
||||
{0} Name,{0} Nom,
|
||||
Bold,Negre,
|
||||
Center,Centre,
|
||||
Comment,Comentar,
|
||||
Not Found,Extraviat,
|
||||
User Id,ID d'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,
|
||||
|
|
|
|||
|
|
|
@ -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ě "-", "#", ".", "/", "{{" A "}}" 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.
|
|
|
@ -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 "-", "#", ".", "/", "{{" Og "}}" 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,
|
||||
|
|
|
|||
|
|
|
@ -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 "Dynamische Filter",
|
|||
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 haven’t received any notifications.","Sieht aus, als hätten Sie keine Benachrichtigungen erhalten.",
|
||||
Looks like you haven’t 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 "-", "#", ".", "/", "{{" Und "}}" 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,
|
||||
|
|
|
|||
|
|
|
@ -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}","Ειδικοί χαρακτήρες εκτός από "-", "#", ".", "/", "{" Και "}}" δεν επιτρέπονται στη σειρά ονομασίας {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,Μπλουζα,
|
||||
|
|
|
|||
|
|
|
@ -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 > Role Permissions Manager","Los permisos se pueden gestionar a través de Configuración > Administrador de permisos",
|
||||
Permissions can be managed via Setup > Role Permissions Manager,Los permisos se pueden gestionar a través de Configuración > 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.
|
|
|
@ -1 +0,0 @@
|
|||
Other Settings,Otros Ajustes,
|
||||
|
|
|
@ -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.
|
|
|
@ -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 "-", "#", ".", "/", "{{" Y "}}" 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.
|
|
|
@ -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'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'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 "-", "#", ".", "/", "{{" Ja "}}" 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,
|
||||
|
|
|
|||
|
|
|
@ -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} '{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 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} کاراکترهای خاص به جز "-" ، "#" ، "." ، "/" ، "{{" و "}}" در سریال نامگذاری مجاز نیستند,
|
||||
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,بالا,
|
||||
|
|
|
|||
|
|
|
@ -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} "{2}" 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} "{2}" 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} "{2}" 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 "-", "#", ".", "/", "{{" Ja "}}" 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,
|
||||
|
|
|
|||
|
|
|
@ -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,N’est 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'ê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'ê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'ê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'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'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'é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 d’analyser l’erreur.,
|
||||
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'utilisation de cette console peut permettre à des attaquants de se faire passer pour vous et de voler vos informations. N'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'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'enregistrement validé ne peut pas être supprimé. Vous devez d'abord {2} l'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'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'é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'abord créer la carte,
|
||||
Onboarding Permission,Autorisation d'intégration,
|
||||
Onboarding Step,Étape d'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'autorisation non valides, ajoutez un jeton avec un préfixe de l'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 d’abord 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 "-", "#", ".", "/", "{{" Et "}}" 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.
|
|
|
@ -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}",""-", "#", ".", "/", "{{" અને "}}" સિવાયના વિશેષ અક્ષરો નામકરણ શ્રેણીમાં મંજૂરી નથી {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,ટોચ,
|
||||
|
|
|
|||
|
|
|
@ -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,אנא הגדר כתובת דוא"ל,
|
||||
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} '{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} כדי ליצור אסימון רענון.,
|
||||
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} מ ',
|
||||
{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}.,האימות נכשל בעת קבלת הודעות דוא"ל מחשבון הדוא"ל: {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,אנא הגדר כתובת דוא"ל,
|
||||
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} תווים מיוחדים למעט "-", "#", ".", "/", "{{" ו- "}}" אינם מורשים בסדרות שמות",
|
||||
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,איי Lakshadweep,
|
||||
Madhya Pradesh,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,חלק עליון,
|
||||
|
|
|
|||
|
|
|
@ -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}",""-", "#", "।", "/", "{{" और "}}" को छोड़कर विशेष वर्ण श्रृंखला {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,ऊपर,
|
||||
|
|
|
|||
|
|
|
@ -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 "-", "#", ".", "/", "{{" I "}}" 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,
|
||||
|
|
|
|||
|
|
|
@ -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 "-", "#", ".", "/", "{{" És "}}", 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,
|
||||
|
|
|
|||
|
|
|
@ -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 "-", "#", ".", "/", "{{" Dan "}}" 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,
|
||||
|
|
|
|||
|
|
|
@ -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} '{2}' í 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} '{2}' í 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} '{2}' í 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 "-", "#", ".", "/", "{{" Og "}}" 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,
|
||||
|
|
|
|||
|
|
|
@ -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'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'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'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'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'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'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'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'è qualche problema con il file url: {0},
|
||||
"Special Characters except '-', '#', '.', '/', '{{' and '}}' not allowed in naming series {0}","Caratteri speciali tranne "-", "#", ".", "/", "{{" E "}}" 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'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'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,
|
||||
|
|
|
|||
|
|
|
@ -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}"," - "、 "#"、 "。"、 "/"、 "{{"、および "}}"以外の特殊文字は、一連の名前付けでは使用できません {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,上,
|
||||
|
|
|
|||
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue