Merge branch 'develop' into phone_field_control

This commit is contained in:
Suraj Shetty 2022-04-19 16:28:18 +05:30 committed by GitHub
commit 8f94cb655f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
101 changed files with 1155 additions and 569 deletions

25
.github/workflows/release.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: Generate Semantic Release
on:
push:
branches:
- version-13
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Entire Repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node.js v14
uses: actions/setup-node@v2
with:
node-version: 14
- name: Setup dependencies
run: |
npm install @semantic-release/git @semantic-release/exec --no-save
- name: Create Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npx semantic-release

View file

@ -53,3 +53,43 @@ pull_request_rules:
{{ title }} (#{{ number }})
{{ body }}
- name: backport to develop
conditions:
- label="backport develop"
actions:
backport:
branches:
- develop
assignees:
- "{{ author }}"
- name: backport to version-13-hotfix
conditions:
- label="backport version-13-hotfix"
actions:
backport:
branches:
- version-13-hotfix
assignees:
- "{{ author }}"
- name: backport to version-13-pre-release
conditions:
- label="backport version-13-pre-release"
actions:
backport:
branches:
- version-13-pre-release
assignees:
- "{{ author }}"
- name: backport to version-12-hotfix
conditions:
- label="backport version-12-hotfix"
actions:
backport:
branches:
- version-12-hotfix
assignees:
- "{{ author }}"

24
.releaserc Normal file
View file

@ -0,0 +1,24 @@
{
"branches": ["version-13"],
"plugins": [
"@semantic-release/commit-analyzer", {
"preset": "angular",
"releaseRules": [
{"breaking": true, "release": false}
]
},
"@semantic-release/release-notes-generator",
[
"@semantic-release/exec", {
"prepareCmd": 'sed -ir "s/[0-9]*\.[0-9]*\.[0-9]*/${nextRelease.version}/" frappe/__init__.py'
}
],
[
"@semantic-release/git", {
"assets": ["frappe/__init__.py"],
"message": "chore(release): Bumped to Version ${nextRelease.version}\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
}

View file

@ -20,6 +20,7 @@ context('Control Barcode', () => {
it('should generate barcode on setting a value', () => {
get_dialog_with_barcode().as('dialog');
cy.focused().blur();
cy.get('.frappe-control[data-fieldname=barcode]').findByRole('textbox')
.type('123456789')
.blur();
@ -36,6 +37,7 @@ context('Control Barcode', () => {
it('should reset when input is cleared', () => {
get_dialog_with_barcode().as('dialog');
cy.focused().blur();
cy.get('.frappe-control[data-fieldname=barcode]').findByRole('textbox')
.type('123456789')
.blur();

View file

@ -0,0 +1,85 @@
context('Kanban Board', () => {
before(() => {
cy.login();
cy.visit('/app');
});
it('Create ToDo Kanban', () => {
cy.visit('/app/todo');
cy.get('.page-actions .custom-btn-group button').click();
cy.get('.page-actions .custom-btn-group ul.dropdown-menu li').contains('Kanban').click();
cy.focused().blur();
cy.fill_field('board_name', 'ToDo Kanban', 'Data');
cy.fill_field('field_name', 'Status', 'Select');
cy.click_modal_primary_button('Save');
cy.get('.title-text').should('contain', 'ToDo Kanban');
});
it('Create ToDo from kanban', () => {
cy.intercept({
method: 'POST',
url: 'api/method/frappe.client.save'
}).as('save-todo');
cy.click_listview_primary_button('Add ToDo');
cy.fill_field('description', 'Test Kanban ToDo', 'Text Editor');
cy.get('.modal-footer .btn-primary').last().click();
cy.wait('@save-todo');
});
it('Add and Remove fields', () => {
cy.visit('/app/todo/view/kanban/ToDo Kanban');
cy.intercept('POST', '/api/method/frappe.desk.doctype.kanban_board.kanban_board.save_settings').as('save-kanban');
cy.intercept('POST', '/api/method/frappe.desk.doctype.kanban_board.kanban_board.update_order').as('update-order');
cy.get('.page-actions .menu-btn-group > .btn').click();
cy.get('.page-actions .menu-btn-group .dropdown-menu li').contains('Kanban Settings').click();
cy.get('.add-new-fields').click();
cy.get('.checkbox-options .checkbox').contains('ID').click();
cy.get('.checkbox-options .checkbox').contains('Status').first().click();
cy.get('.checkbox-options .checkbox').contains('Priority').click();
cy.get('.modal-footer .btn-primary').last().click();
cy.get('.frappe-control .label-area').contains('Show Labels').click();
cy.click_modal_primary_button('Save');
cy.wait('@save-kanban');
cy.get('.kanban-column[data-column-value="Open"] .kanban-cards').as('open-cards');
cy.get('@open-cards').find('.kanban-card .kanban-card-doc').first().should('contain', 'ID:');
cy.get('@open-cards').find('.kanban-card .kanban-card-doc').first().should('contain', 'Status:');
cy.get('@open-cards').find('.kanban-card .kanban-card-doc').first().should('contain', 'Priority:');
cy.get('.page-actions .menu-btn-group > .btn').click();
cy.get('.page-actions .menu-btn-group .dropdown-menu li').contains('Kanban Settings').click();
cy.get_open_dialog().find('.frappe-control[data-fieldname="fields_html"] div[data-label="ID"] .remove-field').click();
cy.wait('@update-order');
cy.get_open_dialog().find('.frappe-control .label-area').contains('Show Labels').click();
cy.get('.modal-footer .btn-primary').last().click();
cy.wait('@save-kanban');
cy.get('@open-cards').find('.kanban-card .kanban-card-doc').first().should('not.contain', 'ID:');
});
it('Drag todo', () => {
cy.intercept({
method: 'POST',
url: 'api/method/frappe.desk.doctype.kanban_board.kanban_board.update_order_for_single_card'
}).as('drag-completed');
cy.get('.kanban-card-body:first').drag('[data-column-value="Closed"] .kanban-cards', {force: true});
cy.wait('@drag-completed');
});
});

View file

@ -1,5 +1,6 @@
import 'cypress-file-upload';
import '@testing-library/cypress/add-commands';
import '@4tw/cypress-drag-drop';
// ***********************************************
// This example commands.js shows you how to
// create various custom commands and overwrite

View file

@ -75,7 +75,7 @@ def get(doctype, name=None, filters=None, parent=None):
check_parent_permission(parent, doctype)
if filters and not name:
name = frappe.db.get_value(doctype, json.loads(filters))
name = frappe.db.get_value(doctype, frappe.parse_json(filters))
if not name:
frappe.throw(_("No document found for given filters"))

View file

@ -870,7 +870,7 @@ def run_ui_tests(
# install cypress
click.secho("Installing Cypress...", fg="yellow")
frappe.commands.popen(
"yarn add cypress@^6 cypress-file-upload@^5 @testing-library/cypress@^8 @cypress/code-coverage@^3 --no-lockfile"
"yarn add cypress@^6 cypress-file-upload@^5 @4tw/cypress-drag-drop@^2 @testing-library/cypress@^8 @cypress/code-coverage@^3 --no-lockfile"
)
# run for headless mode

View file

@ -72,6 +72,16 @@ frappe.method_that_doesnt_exist("do some magic")
disabled=1,
script="""
frappe.db.commit()
""",
),
dict(
name="test_add_index",
script_type="DocType Event",
doctype_event="Before Save",
reference_doctype="ToDo",
disabled=1,
script="""
frappe.db.add_index("Todo", ["color", "date"])
""",
),
]
@ -153,6 +163,18 @@ class TestServerScript(unittest.TestCase):
server_script.disabled = 1
server_script.save()
def test_add_index_in_doctype_event(self):
server_script = frappe.get_doc("Server Script", "test_add_index")
server_script.disabled = 0
server_script.save()
self.assertRaises(
AttributeError, frappe.get_doc(dict(doctype="ToDo", description="test me")).insert
)
server_script.disabled = 1
server_script.save()
def test_restricted_qb(self):
todo = frappe.get_doc(doctype="ToDo", description="QbScriptTestNote")
todo.insert()

View file

@ -22,11 +22,7 @@ JOB_COLORS = {"queued": "orange", "failed": "red", "started": "blue", "finished"
def get_info(view=None, queue_timeout=None, job_status=None) -> List[Dict]:
jobs = []
def add_job(job: "Job", name: str) -> None:
if job_status != "all" and job.get_status() != job_status:
return
if queue_timeout != "all" and not name.endswith(f":{queue_timeout}"):
return
def add_job(job: "Job", queue: str) -> None:
if job.kwargs.get("site") == frappe.local.site:
job_info = {
@ -34,7 +30,7 @@ def get_info(view=None, queue_timeout=None, job_status=None) -> List[Dict]:
or job.kwargs.get("kwargs", {}).get("job_type")
or str(job.kwargs.get("job_name")),
"status": job.get_status(),
"queue": name,
"queue": queue,
"creation": convert_utc_to_user_timezone(job.created_at),
"color": JOB_COLORS[job.get_status()],
}
@ -48,14 +44,21 @@ def get_info(view=None, queue_timeout=None, job_status=None) -> List[Dict]:
queues = get_queues()
for queue in queues:
for job in queue.jobs:
if job_status != "all" and job.get_status() != job_status:
return
if queue_timeout != "all" and not queue.name.endswith(f":{queue_timeout}"):
return
add_job(job, queue.name)
elif view == "Workers":
workers = get_workers()
for worker in workers:
current_job = worker.get_current_job()
if current_job and current_job.kwargs.get("site") == frappe.local.site:
add_job(current_job, job.origin)
if current_job:
if hasattr(current_job, "kwargs") and current_job.kwargs.get("site") == frappe.local.site:
add_job(current_job, current_job.origin)
else:
jobs.append({"queue": worker.name, "job_name": "busy", "status": "", "creation": ""})
else:
jobs.append({"queue": worker.name, "job_name": "idle", "status": "", "creation": ""})

View file

@ -1,6 +1,7 @@
{
"actions": [],
"allow_import": 1,
"autoname": "Prompt",
"creation": "2013-01-10 16:34:01",
"description": "Adds a custom client script to a DocType",
"doctype": "DocType",
@ -52,6 +53,7 @@
"default": "Form",
"fieldname": "view",
"fieldtype": "Select",
"in_list_view": 1,
"label": "Apply To",
"options": "List\nForm",
"set_only_once": 1
@ -75,10 +77,11 @@
"idx": 1,
"index_web_pages_for_search": 1,
"links": [],
"modified": "2022-02-18 00:43:33.941466",
"modified": "2022-04-12 12:48:15.717985",
"modified_by": "Administrator",
"module": "Custom",
"name": "Client Script",
"naming_rule": "Set by user",
"owner": "Administrator",
"permissions": [
{

View file

@ -6,20 +6,6 @@ from frappe.model.document import Document
class ClientScript(Document):
def autoname(self):
self.name = f"{self.dt}-{self.view}"
def validate(self):
if not self.is_new():
return
exists = frappe.db.exists("Client Script", {"dt": self.dt, "view": self.view})
if exists:
frappe.throw(
_("Client Script for {0} {1} already exists").format(frappe.bold(self.dt), self.view),
frappe.DuplicateEntryError,
)
def on_update(self):
frappe.clear_cache(doctype=self.dt)

View file

@ -0,0 +1,101 @@
context("Client Script", () => {
before(() => {
cy.login();
cy.visit("/app");
});
it("should run form script in doctype form", () => {
cy.insert_doc(
"Client Script",
{
name: "Todo form script",
dt: "ToDo",
view: "Form",
enabled: 1,
script: `console.log('todo form script')`
},
true
);
cy.visit("/app/todo/new", {
onBeforeLoad(win) {
cy.spy(win.console, "log").as("consoleLog");
}
});
cy.get("@consoleLog").should("be.calledWith", "todo form script");
});
it("should run list script in doctype list view", () => {
cy.insert_doc(
"Client Script",
{
name: "Todo list script",
dt: "ToDo",
view: "List",
enabled: 1,
script: `console.log('todo list script')`
},
true
);
cy.visit("/app/todo", {
onBeforeLoad(win) {
cy.spy(win.console, "log").as("consoleLog");
}
});
cy.get("@consoleLog").should("be.calledWith", "todo list script");
});
it("should not run disabled scripts", () => {
cy.insert_doc(
"Client Script",
{
name: "Todo disabled list",
dt: "ToDo",
view: "List",
enabled: 0,
script: `console.log('todo disabled script')`
},
true
);
cy.visit("/app/todo", {
onBeforeLoad(win) {
cy.spy(win.console, "log").as("consoleLog");
}
});
cy.get("@consoleLog").should(
"not.be.calledWith",
"todo disabled script"
);
});
it("should run multiple scripts", () => {
cy.insert_doc(
"Client Script",
{
name: "Todo form script 1",
dt: "ToDo",
view: "Form",
enabled: 1,
script: `console.log('todo form script 1')`
},
true
);
cy.insert_doc(
"Client Script",
{
name: "Todo form script 2",
dt: "ToDo",
view: "Form",
enabled: 1,
script: `console.log('todo form script 2')`
},
true
);
cy.visit("/app/todo/new", {
onBeforeLoad(win) {
cy.spy(win.console, "log").as("consoleLog");
}
});
cy.get("@consoleLog").should("be.calledWith", "todo form script 1");
cy.get("@consoleLog").should("be.calledWith", "todo form script 2");
});
});

View file

@ -46,7 +46,7 @@ def submit_cancel_or_update_docs(doctype, docnames, action="submit", data=None):
message = ""
if action == "submit" and doc.docstatus.is_draft():
doc.submit()
message = _("Submiting {0}").format(doctype)
message = _("Submitting {0}").format(doctype)
elif action == "cancel" and doc.docstatus.is_submitted():
doc.cancel()
message = _("Cancelling {0}").format(doctype)

View file

@ -1,267 +1,124 @@
{
"allow_copy": 0,
"allow_guest_to_view": 0,
"allow_import": 0,
"actions": [],
"allow_rename": 1,
"autoname": "field:kanban_board_name",
"beta": 0,
"creation": "2016-10-19 12:26:04.809812",
"custom": 0,
"docstatus": 0,
"doctype": "DocType",
"document_type": "",
"editable_grid": 1,
"engine": "InnoDB",
"field_order": [
"kanban_board_name",
"reference_doctype",
"field_name",
"column_break_4",
"private",
"show_labels",
"section_break_3",
"columns",
"filters",
"fields"
],
"fields": [
{
"allow_on_submit": 0,
"bold": 0,
"collapsible": 0,
"columns": 0,
"fieldname": "kanban_board_name",
"fieldtype": "Data",
"hidden": 0,
"ignore_user_permissions": 0,
"ignore_xss_filter": 0,
"in_filter": 0,
"in_global_search": 0,
"in_list_view": 0,
"in_standard_filter": 0,
"label": "Kanban Board Name",
"length": 0,
"no_copy": 0,
"permlevel": 0,
"precision": "",
"print_hide": 0,
"print_hide_if_no_value": 0,
"read_only": 0,
"remember_last_selected_value": 0,
"report_hide": 0,
"reqd": 1,
"search_index": 0,
"set_only_once": 0,
"unique": 1
},
{
"allow_on_submit": 0,
"bold": 0,
"collapsible": 0,
"columns": 0,
"fieldname": "reference_doctype",
"fieldtype": "Link",
"hidden": 0,
"ignore_user_permissions": 0,
"ignore_xss_filter": 0,
"in_filter": 0,
"in_global_search": 0,
"in_list_view": 1,
"in_standard_filter": 0,
"label": "Reference Document Type",
"length": 0,
"no_copy": 0,
"options": "DocType",
"permlevel": 0,
"precision": "",
"print_hide": 0,
"print_hide_if_no_value": 0,
"read_only": 0,
"remember_last_selected_value": 0,
"report_hide": 0,
"reqd": 1,
"search_index": 0,
"set_only_once": 0,
"unique": 0
"reqd": 1
},
{
"allow_on_submit": 0,
"bold": 0,
"collapsible": 0,
"columns": 0,
"fieldname": "field_name",
"fieldtype": "Select",
"hidden": 0,
"ignore_user_permissions": 0,
"ignore_xss_filter": 0,
"in_filter": 0,
"in_global_search": 0,
"in_list_view": 0,
"in_standard_filter": 0,
"label": "Field Name",
"length": 0,
"no_copy": 0,
"permlevel": 0,
"precision": "",
"print_hide": 0,
"print_hide_if_no_value": 0,
"read_only": 0,
"remember_last_selected_value": 0,
"report_hide": 0,
"reqd": 1,
"search_index": 0,
"set_only_once": 0,
"unique": 0
"reqd": 1
},
{
"allow_on_submit": 0,
"bold": 0,
"collapsible": 0,
"columns": 0,
"fieldname": "section_break_3",
"fieldtype": "Section Break",
"hidden": 0,
"ignore_user_permissions": 0,
"ignore_xss_filter": 0,
"in_filter": 0,
"in_global_search": 0,
"in_list_view": 0,
"in_standard_filter": 0,
"length": 0,
"no_copy": 0,
"permlevel": 0,
"precision": "",
"print_hide": 0,
"print_hide_if_no_value": 0,
"read_only": 0,
"remember_last_selected_value": 0,
"report_hide": 0,
"reqd": 0,
"search_index": 0,
"set_only_once": 0,
"unique": 0
"fieldtype": "Section Break"
},
{
"allow_on_submit": 0,
"bold": 0,
"collapsible": 0,
"columns": 0,
"fieldname": "columns",
"fieldtype": "Table",
"hidden": 0,
"ignore_user_permissions": 0,
"ignore_xss_filter": 0,
"in_filter": 0,
"in_global_search": 0,
"in_list_view": 0,
"in_standard_filter": 0,
"label": "Columns",
"length": 0,
"no_copy": 0,
"options": "Kanban Board Column",
"permlevel": 0,
"precision": "",
"print_hide": 0,
"print_hide_if_no_value": 0,
"read_only": 0,
"remember_last_selected_value": 0,
"report_hide": 0,
"reqd": 0,
"search_index": 0,
"set_only_once": 0,
"unique": 0
"options": "Kanban Board Column"
},
{
"allow_on_submit": 0,
"bold": 0,
"collapsible": 0,
"columns": 0,
"fieldname": "filters",
"fieldtype": "Text",
"hidden": 1,
"ignore_user_permissions": 0,
"ignore_xss_filter": 0,
"in_filter": 0,
"in_global_search": 0,
"in_list_view": 0,
"in_standard_filter": 0,
"fieldtype": "Code",
"label": "Filters",
"length": 0,
"no_copy": 0,
"permlevel": 0,
"precision": "",
"print_hide": 0,
"print_hide_if_no_value": 0,
"read_only": 1,
"remember_last_selected_value": 0,
"report_hide": 0,
"reqd": 0,
"search_index": 0,
"set_only_once": 0,
"unique": 0
"options": "JSON",
"read_only": 1
},
{
"allow_on_submit": 0,
"bold": 0,
"collapsible": 0,
"columns": 0,
"default": "0",
"fieldname": "private",
"fieldtype": "Check",
"hidden": 0,
"ignore_user_permissions": 0,
"ignore_xss_filter": 0,
"in_filter": 0,
"in_global_search": 0,
"in_list_view": 0,
"in_standard_filter": 0,
"label": "Private",
"length": 0,
"no_copy": 0,
"permlevel": 0,
"precision": "",
"print_hide": 0,
"print_hide_if_no_value": 0,
"read_only": 1,
"remember_last_selected_value": 0,
"report_hide": 0,
"reqd": 0,
"search_index": 0,
"set_only_once": 0,
"unique": 0
"read_only": 1
},
{
"fieldname": "fields",
"fieldtype": "Code",
"label": "Fields",
"options": "JSON",
"read_only": 1
},
{
"fieldname": "column_break_4",
"fieldtype": "Column Break"
},
{
"default": "0",
"fieldname": "show_labels",
"fieldtype": "Check",
"label": "Show Labels",
"read_only": 1
}
],
"has_web_view": 0,
"hide_heading": 0,
"hide_toolbar": 0,
"idx": 0,
"image_view": 0,
"in_create": 0,
"is_submittable": 0,
"issingle": 0,
"istable": 0,
"max_attachments": 0,
"modified": "2019-09-05 14:22:27.664645",
"links": [],
"modified": "2022-04-13 12:10:20.284367",
"modified_by": "Administrator",
"module": "Desk",
"name": "Kanban Board",
"name_case": "",
"naming_rule": "By fieldname",
"owner": "Administrator",
"permissions": [
{
"amend": 0,
"apply_user_permissions": 0,
"cancel": 0,
"read": 1,
"role": "All"
},
{
"create": 1,
"delete": 1,
"if_owner": 1,
"read": 1,
"role": "All",
"write": 1
},
{
"create": 1,
"delete": 1,
"email": 1,
"export": 1,
"if_owner": 0,
"import": 0,
"permlevel": 0,
"print": 1,
"read": 1,
"report": 1,
"role": "All",
"set_user_permissions": 0,
"role": "System Manager",
"share": 1,
"submit": 0,
"write": 1
}
],
"quick_entry": 0,
"read_only": 0,
"read_only_onload": 0,
"show_name_in_global_search": 0,
"read_only": 1,
"sort_field": "modified",
"sort_order": "DESC",
"track_changes": 0,
"track_seen": 0
"states": [],
"track_changes": 1
}

View file

@ -24,7 +24,7 @@ class KanbanBoard(Document):
def validate_column_name(self):
for column in self.columns:
if not column.column_name:
frappe.msgprint(frappe._("Column Name cannot be empty"), raise_exception=True)
frappe.msgprint(_("Column Name cannot be empty"), raise_exception=True)
def get_permission_query_conditions(user):
@ -92,7 +92,6 @@ def update_order(board_name, order):
updated_cards = []
for col_name, cards in order_dict.items():
order_list = []
for card in cards:
column = frappe.get_value(doctype, {"name": card}, fieldname)
if column != col_name:
@ -246,3 +245,22 @@ def set_indicator(board_name, column_name, indicator):
board.save()
return board
@frappe.whitelist()
def save_settings(board_name: str, settings: str) -> Document:
settings = json.loads(settings)
doc = frappe.get_doc("Kanban Board", board_name)
fields = settings["fields"]
if not isinstance(fields, str):
fields = json.dumps(fields)
doc.fields = fields
doc.show_labels = settings["show_labels"]
doc.save()
resp = doc.as_dict()
resp["fields"] = frappe.parse_json(resp["fields"])
return resp

View file

@ -155,7 +155,7 @@ class FormMeta(Meta):
frappe.db.get_all(
"Client Script",
filters={"dt": self.name, "enabled": 1},
fields=["script", "view"],
fields=["name", "script", "view"],
order_by="creation asc",
)
or ""
@ -165,10 +165,18 @@ class FormMeta(Meta):
form_script = ""
for script in client_scripts:
if script.view == "List":
list_script += script.script
list_script += f"""
// {script.name}
{script.script}
"""
if script.view == "Form":
form_script += script.script
form_script += f"""
// {script.name}
{script.script}
"""
file = scrub(self.name)
form_script += f"\n\n//# sourceURL={file}__custom_js"

View file

@ -1701,12 +1701,13 @@
},
"Malta": {
"code": "mt",
"currency": "MTL",
"currency": "EUR",
"currency_fraction": "Cent",
"currency_fraction_units": 100,
"currency_name": "Maltese Lira",
"smallest_currency_fraction_value": 0.01,
"currency_symbol": "\u20ac",
"number_format": "#,###.##",
"date_format": "dd/mm/yyyy",
"timezones": [
"Europe/Malta"
],

View file

@ -873,7 +873,7 @@ class BaseDocument(object):
autoname = self.meta.autoname or ""
_empty, _field_specifier, fieldname = autoname.partition("field:")
if fieldname and self.name and self.name != self.get("fieldname"):
if fieldname and self.name and self.name != self.get(fieldname):
self.set(fieldname, self.name)
def throw_length_exceeded_error(self, df, max_length, value):

View file

@ -528,6 +528,7 @@ class Document(BaseDocument):
d._validate_non_negative()
d._validate_length()
d._validate_code_fields()
d._sync_autoname_field()
d._extract_images_from_text_editor()
d._sanitize_content()
d._save_passwords()

View file

@ -595,6 +595,8 @@ export default class GridRow {
// to get update df for the row
let df = this.docfields.find(field => field.fieldname === col[0].fieldname);
this.set_dependant_property(df);
let colsize = col[1];
let txt = this.doc ?
frappe.format(this.doc[df.fieldname], df, null, this.doc) :
@ -633,6 +635,56 @@ export default class GridRow {
}
}
set_dependant_property(df) {
if (!df.reqd && df.mandatory_depends_on &&
this.evaluate_depends_on_value(df.mandatory_depends_on)) {
df.reqd = 1;
}
if (!df.read_only && df.read_only_depends_on &&
this.evaluate_depends_on_value(df.read_only_depends_on)) {
df.read_only = 1;
}
}
evaluate_depends_on_value(expression) {
let out = null;
let doc = this.doc;
if (!doc) return;
let parent = this.frm ? this.frm.doc : this.doc || null;
if (typeof (expression) === 'boolean') {
out = expression;
} else if (typeof (expression) === 'function') {
out = expression(doc);
} else if (expression.substr(0, 5)=='eval:') {
try {
out = frappe.utils.eval(expression.substr(5), { doc, parent });
if (parent && parent.istable && expression.includes('is_submittable')) {
out = true;
}
} catch (e) {
frappe.throw(__('Invalid "depends_on" expression'));
}
} else if (expression.substr(0, 3)=='fn:' && this.frm) {
out = this.frm.script_manager.trigger(expression.substr(3), this.doctype, this.docname);
} else {
var value = doc[expression];
if ($.isArray(value)) {
out = !!value.length;
} else {
out = !!value;
}
}
return out;
}
show_search_row() {
// show or remove search columns based on grid rows
this.show_search = this.frm && this.frm.doc &&

View file

@ -124,7 +124,7 @@ frappe.views.BaseList = class BaseList {
// df is passed
const df = fieldname;
fieldname = df.fieldname;
doctype = df.parent;
doctype = df.parent || doctype;
}
if (!this.fields) this.fields = [];

View file

@ -1580,15 +1580,22 @@ frappe.views.ListView = class ListView extends frappe.views.BaseList {
}
if (frappe.user.has_role("System Manager")) {
items.push({
label: __("List Settings", null, "Button in list view menu"),
action: () => this.show_list_settings(),
standard: true,
});
if (this.get_view_settings) {
items.push(this.get_view_settings());
}
}
return items;
}
get_view_settings() {
return {
label: __("List Settings", null, "Button in list view menu"),
action: () => this.show_list_settings(),
standard: true,
};
}
show_list_settings() {
frappe.model.with_doctype(this.doctype, () => {
new ListSettings({

View file

@ -630,8 +630,6 @@ frappe.provide("frappe.views");
if(!card) return;
make_dom();
render_card_meta();
add_task_link();
// edit_card_title();
}
function make_dom() {
@ -640,12 +638,35 @@ frappe.provide("frappe.views");
title: frappe.utils.html2text(card.title),
disable_click: card._disable_click ? 'disable-click' : '',
creation: card.creation,
doc_content: get_doc_content(card),
image_url: cur_list.get_image_url(card),
form_link: frappe.utils.get_form_link(card.doctype, card.name)
};
self.$card = $(frappe.render_template('kanban_card', opts))
.appendTo(wrapper);
}
function get_doc_content(card) {
let fields = [];
for (let field_name of cur_list.board.fields) {
let field = (
frappe.meta.get_docfield(card.doctype, field_name, card.name)
|| frappe.model.get_std_field(field_name)
);
let label = cur_list.board.show_labels ? `<span>${__(field.label)}: </span>` : '';
let value = frappe.format(card.doc[field_name], field);
fields.push(`
<div class="text-muted text-truncate">
${label}
<span>${value}</span>
</div>
`);
}
return fields.join("");
}
function get_tags_html(card) {
return card.tags
? `<div class="kanban-tags">
@ -688,12 +709,6 @@ frappe.provide("frappe.views");
.find('.kanban-assignments').append($assignees_group);
}
function add_task_link() {
let task_link = frappe.utils.get_form_link(card.doctype, card.name);
self.$card.find('.kanban-card-redirect')
.attr('href', task_link);
}
function get_assignees_group() {
return frappe.avatar_group(card.assigned_list, 3, {
css_class: 'avatar avatar-small',
@ -744,7 +759,7 @@ frappe.provide("frappe.views");
assigned_list: card.assigned_list || assigned_list,
comment_count: card.comment_count || comment_count,
color: card.color || null,
doc: doc
doc: doc || card
};
}

View file

@ -1,23 +1,24 @@
<div class="kanban-card-wrapper {{ disable_click }}" data-name="{{encodeURIComponent(name)}}">
<a class="kanban-card-redirect" href="#">
<div class="kanban-card content">
{% if(image_url) { %}
<div class="kanban-image">
<img src="{{image_url}}" alt="{{title}}">
</div>
{% } %}
<div class="kanban-card-body">
<div class="kanban-title-area">
<div class="kanban-card content">
{% if(image_url) { %}
<div class="kanban-image">
<img src="{{image_url}}" alt="{{title}}">
</div>
{% } %}
<div class="kanban-card-body">
<div class="kanban-title-area">
<a href="{{ form_link }}">
<div class="kanban-card-title ellipsis" title="{{title}}">
{{ title }}
</div>
<div class="kanban-card-creation">
{{ creation }}
</div>
</div>
<div class="kanban-card-meta">
</a>
<br>
<div class="kanban-card-doc text-muted">
{{ doc_content }}
</div>
</div>
<div class="kanban-card-meta">
</div>
</div>
</a>
</div>
</div>
</div>

View file

@ -0,0 +1,264 @@
export default class KanbanSettings {
constructor({ kanbanview, doctype, meta, settings }) {
if (!doctype) {
frappe.throw(__("DocType required"));
}
this.kanbanview = kanbanview;
this.doctype = doctype;
this.meta = meta;
this.settings = settings;
this.dialog = null;
this.fields = this.settings && this.settings.fields;
frappe.model.with_doctype("List View Settings", () => {
this.make();
this.get_fields();
this.setup_fields();
this.setup_remove_fields();
this.add_new_fields();
this.show_dialog();
});
}
make() {
this.dialog = new frappe.ui.Dialog({
title: __("{0} Settings", [__(this.doctype)]),
fields: [
{
fieldname: "show_labels",
label: __("Show Labels"),
fieldtype: "Check",
},
{
fieldname: "fields_html",
fieldtype: "HTML"
},
{
fieldname: "fields",
fieldtype: "Code",
hidden: 1
}
]
});
this.dialog.set_values(this.settings);
this.dialog.set_primary_action(__("Save"), () => {
frappe.show_alert({
message: __("Saving"),
indicator: "green"
});
frappe.call({
method:
"frappe.desk.doctype.kanban_board.kanban_board.save_settings",
args: {
board_name: this.settings.name,
settings: this.dialog.get_values()
},
callback: r => {
this.kanbanview.board = r.message;
this.kanbanview.render();
this.dialog.hide();
}
});
});
}
refresh() {
this.setup_fields();
this.add_new_fields();
this.setup_remove_fields();
}
show_dialog() {
if (!this.settings.fields) {
this.update_fields();
}
this.dialog.show();
}
setup_fields() {
const fields_html = this.dialog.get_field("fields_html");
const wrapper = fields_html.$wrapper[0];
let fields = "";
for (let fieldname of this.fields) {
let field = this.get_docfield(fieldname);
fields += `
<div class="control-input flex align-center form-control fields_order sortable"
style="display: block; margin-bottom: 5px;"
data-fieldname="${field.fieldname}"
data-label="${field.label}"
data-type="${field.type}">
<div class="row">
<div class="col-md-1">
${frappe.utils.icon("drag", "xs", "", "", "sortable-handle")}
</div>
<div class="col-md-10" style="padding-left:0px;">
${__(field.label)}
</div>
<div class="col-md-1">
<a class="text-muted remove-field" data-fieldname="${field.fieldname}">
${frappe.utils.icon("delete", "xs")}
</a>
</div>
</div>
</div>`;
}
fields_html.html(`
<div class="form-group">
<div class="clearfix">
<label class="control-label" style="padding-right: 0px;">Fields</label>
</div>
<div class="control-input-wrapper">
${fields}
</div>
<p class="help-box small text-muted">
<a class="add-new-fields text-muted">
+ Add / Remove Fields
</a>
</p>
</div>
`);
new Sortable(
wrapper.getElementsByClassName("control-input-wrapper")[0],
{
handle: ".sortable-handle",
draggable: ".sortable",
onUpdate: params => {
this.fields.splice(
params.newIndex,
0,
this.fields.splice(params.oldIndex, 1)[0]
);
this.dialog.set_value(
"fields",
JSON.stringify(this.fields)
);
this.refresh();
}
}
);
}
add_new_fields() {
let add_new_fields = this.get_dialog_fields_wrapper().getElementsByClassName(
"add-new-fields"
)[0];
add_new_fields.onclick = () => this.show_column_selector();
}
setup_remove_fields() {
let remove_fields = this.get_dialog_fields_wrapper().getElementsByClassName(
"remove-field"
);
for (let idx = 0; idx < remove_fields.length; idx++) {
remove_fields.item(idx).onclick = () =>
this.remove_fields(
remove_fields.item(idx).getAttribute("data-fieldname")
);
}
}
get_dialog_fields_wrapper() {
return this.dialog.get_field("fields_html").$wrapper[0];
}
remove_fields(fieldname) {
this.fields = this.fields.filter(field => field !== fieldname);
this.dialog.set_value("fields", JSON.stringify(this.fields));
this.refresh();
}
update_fields() {
const wrapper = this.dialog.get_field("fields_html").$wrapper[0];
let fields_order = wrapper.getElementsByClassName("fields_order");
this.fields = [];
for (let idx = 0; idx < fields_order.length; idx++) {
this.fields.push(
fields_order.item(idx).getAttribute("data-fieldname")
);
}
this.dialog.set_value("fields", JSON.stringify(this.fields));
}
show_column_selector() {
let dialog = new frappe.ui.Dialog({
title: __("{0} Fields", [__(this.doctype)]),
fields: [
{
label: __("Select Fields"),
fieldtype: "MultiCheck",
fieldname: "fields",
options: this.get_multiselect_fields(),
columns: 2
}
]
});
dialog.set_primary_action(__("Save"), () => {
this.fields = dialog.get_values().fields || [];
this.dialog.set_value("fields", JSON.stringify(this.fields));
this.refresh();
dialog.hide();
});
dialog.show();
}
get_fields() {
this.fields = this.settings.fields;
this.fields.uniqBy(f => f.fieldname);
}
get_docfield(field_name) {
return (
frappe.meta.get_docfield(this.doctype, field_name) ||
frappe.model.get_std_field(field_name)
);
}
get_multiselect_fields() {
const ignore_fields = [
"idx",
"lft",
"rgt",
"old_parent",
"_user_tags",
"_liked_by",
"_comments",
"_assign",
this.meta.title_field || "name"
];
const ignore_fieldtypes = [
"Attach Image",
"Text Editor",
"HTML Editor",
"Code",
"Color",
...frappe.model.no_value_type
];
return frappe.model.std_fields
.concat(this.kanbanview.get_fields_in_list_view())
.filter(
field =>
!ignore_fields.includes(field.fieldname) &&
!ignore_fieldtypes.includes(field.fieldtype)
)
.map(field => {
return {
label: __(field.label),
value: field.fieldname,
checked: this.fields.includes(field.fieldname)
};
});
}
}

View file

@ -1,3 +1,5 @@
import KanbanSettings from "./kanban_settings";
frappe.provide('frappe.views');
frappe.views.KanbanView = class KanbanView extends frappe.views.ListView {
@ -57,6 +59,7 @@ frappe.views.KanbanView = class KanbanView extends frappe.views.ListView {
.then(board => {
this.board = board;
this.board.filters_array = JSON.parse(this.board.filters || '[]');
this.board.fields = JSON.parse(this.board.fields || '[]');
this.filters = this.board.filters_array;
});
}
@ -187,6 +190,25 @@ frappe.views.KanbanView = class KanbanView extends frappe.views.ListView {
};
}
get_view_settings() {
return {
label: __("Kanban Settings", null, "Button in kanban view menu"),
action: () => this.show_kanban_settings(),
standard: true,
};
}
show_kanban_settings() {
frappe.model.with_doctype(this.doctype, () => {
new KanbanSettings({
kanbanview: this,
doctype: this.doctype,
settings: this.board,
meta: frappe.get_meta(this.doctype)
});
});
}
get required_libs() {
return [
'assets/frappe/js/lib/fluxify.min.js',

View file

@ -1,3 +1,6 @@
@import "../element/checkbox";
@import "../element/radio";
html, body {
height: 100%;
}
@ -20,100 +23,6 @@ html, body {
}
}
$check-icon: url("data:image/svg+xml, <svg viewBox='0 0 8 7' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M1 4.00001L2.66667 5.80001L7 1.20001' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
input[type="radio"] {
position: relative;
width: var(--checkbox-size) !important;
height: var(--checkbox-size);
margin-right: 8px !important;
font-size: calc(var(--checkbox-size) - 1px);
background-repeat: no-repeat;
background-position: center;
cursor: pointer;
// Reset browser behavior
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
-webkit-print-color-adjust: exact;
color-adjust: exact;
&:focus {
outline: none;
}
&:before {
width: var(--checkbox-size);
height: var(--checkbox-size);
position: absolute;
content: ' ';
border: 1px solid var(--gray-400);
border-radius: 16px;
}
&:checked::before {
background-color: var(--primary);
border-radius: 16px;
box-shadow: inset 0 0 0 2px white;
}
}
input[type="checkbox"] {
position: relative;
width: var(--checkbox-size) !important;
height: var(--checkbox-size);
margin-right: var(--checkbox-right-margin) !important;
background-repeat: no-repeat;
background-position: center;
border: 1px solid var(--gray-400);
box-sizing: border-box;
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
border-radius: 4px;
// Reset browser behavior
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
-webkit-print-color-adjust: exact;
color-adjust: exact;
.grid-static-col & {
margin-right: 0 !important;
}
&:checked {
background-color: var(--primary);
background-image: $check-icon, var(--checkbox-gradient);
background-size: 57%, 100%;
box-shadow: none;
border: none;
}
&:focus {
outline: none; // Prevent browser behavior
box-shadow: var(--checkbox-focus-shadow);
}
&.disabled-deselected, &:disabled {
background-color: var(--disabled-control-bg);
box-shadow: inset 0px 1px 7px rgba(0, 0, 0, 0.1);
border: 0.5px solid var(--gray-300);
pointer-events: none;
}
&.disabled-selected, &:disabled:checked {
background-color: var(--gray-500);
background-image: $check-icon;
background-size: 57%;
box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.1);
border: none;
pointer-events: none;
}
}
.frappe-card {
@include card();
}

View file

@ -2,8 +2,6 @@ html {
background-color: var(--bg-color);
}
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;

View file

@ -139,6 +139,7 @@
}
.kanban-cards {
height: 100%;
max-height: calc(100vh - 250px);
margin: -5px;
padding: 5px;
@ -149,39 +150,120 @@
&::-webkit-scrollbar {
display: none;
}
}
.kanban-card {
@include flex(flex, space-between, null, column);
margin-top: var(--margin-sm);
min-height: 100px;
@include card(
$padding: 0,
$background-color: var(--kanban-card-bg)
);
.kanban-card-body {
padding: var(--padding-sm);
.kanban-card-wrapper {
position: relative;
display: block;
&:last-child .kanban-card {
margin-bottom: var(--margin-xl);
}
.kanban-card {
@include flex(flex, space-between, null, column);
margin-top: var(--margin-sm);
min-height: 100px;
@include card(
$padding: 0,
$background-color: var(--kanban-card-bg)
);
.kanban-image {
height: 125px;
img {
border-radius: var(--border-radius) var(--border-radius) 0 0;
object-position: top;
object-fit: cover;
margin: 0 auto;
height: 100%;
width: 100%;
min-width: 100%;
color: transparent;
position: relative;
}
@include broken-img(
$height: 125px,
$top: -4px,
)
}
.kanban-card-body {
cursor: grab;
padding: var(--padding-sm);
.kanban-title-area {
margin-bottom: 12px;
max-width: 90%;
font-size: var(--text-md);
font-weight: 500;
.kanban-card-doc {
.text-muted div {
display: inline;
}
}
.kanban-card-creation {
font-size: var(--text-md);
color: var(--text-muted);
margin-top: var(--margin-xs);
}
}
.kanban-card-meta {
.list-comment-count {
width: 30px;
}
.like-action:not(.liked) {
.icon use {
stroke: var(--text-muted);
}
}
.kanban-tags {
font-size: var(--text-sm);
margin-bottom: 8px;
.tag-pill {
border-radius: 100px;
height: 22px;
width: auto;
padding: 2px 8px;
margin-bottom: var(--margin-xs);
margin-right: var(--margin-xs);
}
}
.kanban-assignments {
display: flex;
float: right;
.avatar {
cursor: default;
width: 22px;
height: 22px;
}
.avatar-action {
width: 22px;
height: 22px;
.icon {
width: 12px;
height: 12px;
}
}
}
}
}
}
}
}
}
.kanban-card-wrapper {
position: relative;
.kanban-card-redirect {
display: block;
&:hover,
&:focus {
text-decoration: none;
}
}
&:last-child .kanban-card {
margin-bottom: var(--margin-xl);
}
}
.kanban-card:hover,
.new-card-area,
.edit-card-area {
@ -189,7 +271,6 @@
}
.kanban-card-wrapper:hover {
cursor: pointer;
text-decoration: none;
.kanban-card-edit {
@ -197,43 +278,6 @@
}
}
.kanban-title-area {
margin-bottom: 12px;
.kanban-card-title {
max-width: 90%;
font-size: var(--text-md);
font-weight: 500;
}
.kanban-card-creation {
font-size: var(--text-md);
color: var(--text-muted);
margin-top: var(--margin-xs);
}
}
.kanban-image {
height: 125px;
img {
border-radius: var(--border-radius) var(--border-radius) 0 0;
object-position: top;
object-fit: cover;
margin: 0 auto;
height: 100%;
width: 100%;
min-width: 100%;
color: transparent;
position: relative;
}
@include broken-img(
$height: 125px,
$top: -4px,
)
}
.kanban-card-edit {
position: absolute;
right: 10px;
@ -291,54 +335,6 @@
}
}
.kanban-card-meta {
.list-comment-count {
width: 30px;
}
.like-action:not(.liked) {
.icon use {
stroke: var(--text-muted);
}
}
.kanban-tags {
font-size: var(--text-sm);
margin-bottom: 8px;
.tag-pill {
border-radius: 100px;
height: 22px;
width: auto;
padding: 2px 8px;
margin-bottom: var(--margin-xs);
margin-right: var(--margin-xs);
}
}
.kanban-assignments {
display: flex;
float: right;
.avatar {
cursor: default;
width: 22px;
height: 22px;
}
.avatar-action {
width: 22px;
height: 22px;
.icon {
width: 12px;
height: 12px;
}
}
}
}
.kanban-empty-state {
width: 100%;
line-height: 400px;

View file

@ -0,0 +1,55 @@
$check-icon: url("data:image/svg+xml, <svg viewBox='0 0 8 7' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M1 4.00001L2.66667 5.80001L7 1.20001' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
input[type="checkbox"] {
position: relative;
width: var(--checkbox-size) !important;
height: var(--checkbox-size);
margin-right: var(--checkbox-right-margin) !important;
background-repeat: no-repeat;
background-position: center;
border: 1px solid var(--gray-400);
box-sizing: border-box;
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
border-radius: 4px;
// Reset browser behavior
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
-webkit-print-color-adjust: exact;
color-adjust: exact;
.grid-static-col & {
margin-right: 0 !important;
}
&:checked {
background-color: var(--primary);
background-image: $check-icon, var(--checkbox-gradient);
background-size: 57%, 100%;
box-shadow: none;
border: none;
}
&:focus {
outline: none; // Prevent browser behavior
box-shadow: var(--checkbox-focus-shadow);
}
&.disabled-deselected, &:disabled {
background-color: var(--disabled-control-bg);
box-shadow: inset 0px 1px 7px rgba(0, 0, 0, 0.1);
border: 0.5px solid var(--gray-300);
pointer-events: none;
}
&.disabled-selected, &:disabled:checked {
background-color: var(--gray-500);
background-image: $check-icon;
background-size: 57%;
box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.1);
border: none;
pointer-events: none;
}
}

View file

@ -0,0 +1,37 @@
input[type="radio"] {
position: relative;
width: var(--checkbox-size) !important;
height: var(--checkbox-size);
margin-right: 8px !important;
font-size: calc(var(--checkbox-size) - 1px);
background-repeat: no-repeat;
background-position: center;
cursor: pointer;
// Reset browser behavior
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
-webkit-print-color-adjust: exact;
color-adjust: exact;
&:focus {
outline: none;
}
&:before {
width: var(--checkbox-size);
height: var(--checkbox-size);
position: absolute;
content: ' ';
border: 1px solid var(--gray-400);
border-radius: 16px;
}
&:checked::before {
background-color: var(--primary);
border-radius: 16px;
box-shadow: inset 0 0 0 2px white;
}
}

View file

@ -1,6 +1,7 @@
@import "frappe/public/css/bootstrap.css";
@import "./common/quill";
@import "./desk/css_variables";
@import "./element/checkbox";
// !! PDF Barcode hack !!
// Workaround for rendering barcodes prior to https://github.com/frappe/frappe/pull/15307

View file

@ -129,3 +129,15 @@ class TestClient(unittest.TestCase):
self.assertTrue("name" in first_item)
self.assertTrue("modified" in first_item)
frappe.local.login_manager.logout()
def test_client_get(self):
from frappe.client import get
todo = frappe.get_doc(doctype="ToDo", description="test").insert()
filters = {"name": todo.name}
filters_json = frappe.as_json(filters)
self.assertEqual(get("ToDo", filters=filters).description, "test")
self.assertEqual(get("ToDo", filters=filters_json).description, "test")
todo.delete()

View file

@ -4,11 +4,11 @@
import unittest
import frappe
from frappe.core.doctype.doctype.test_doctype import new_doctype
from frappe.model.naming import (
append_number_if_name_exists,
determine_consecutive_week_number,
getseries,
parse_naming_series,
revert_series_if_last,
)
from frappe.utils import now_datetime
@ -51,6 +51,40 @@ class TestNaming(unittest.TestCase):
self.assertEqual(country.name, original_name)
self.assertEqual(country.name, country.country_name)
def test_child_table_naming(self):
child_dt_with_naming = new_doctype(
"childtable_with_autonaming", istable=1, autoname="field:some_fieldname"
).insert()
dt_with_child_autoname = new_doctype(
"dt_with_childtable_naming",
fields=[
{
"label": "table with naming",
"fieldname": "table_with_naming",
"options": "childtable_with_autonaming",
"fieldtype": "Table",
}
],
).insert()
name = frappe.generate_hash(length=10)
doc = frappe.new_doc("dt_with_childtable_naming")
doc.append("table_with_naming", {"some_fieldname": name})
doc.save()
self.assertEqual(doc.table_with_naming[0].name, name)
# change autoname field
doc.table_with_naming[0].some_fieldname = "Something else"
doc.save()
self.assertEqual(doc.table_with_naming[0].name, name)
self.assertEqual(doc.table_with_naming[0].some_fieldname, name)
doc.delete()
dt_with_child_autoname.delete()
child_dt_with_naming.delete()
def test_format_autoname(self):
"""
Test if braced params are replaced in format autoname

View file

@ -354,8 +354,8 @@ class TestPythonExpressions(unittest.TestCase):
class TestDiffUtils(unittest.TestCase):
@classmethod
def setUpClass(cls):
cls.doc = frappe.get_doc(doctype="Client Script", dt="Client Script")
cls.doc.save(ignore_version=False)
cls.doc = frappe.get_doc(doctype="Client Script", dt="Client Script", name="test_client_script")
cls.doc.insert()
cls.doc.script = "2;"
cls.doc.save(ignore_version=False)
cls.doc.script = "42;"

View file

@ -2398,7 +2398,7 @@ Submit after importing,Dien na invoer in,
Submit an Issue,Dien &#39;n uitgawe in,
Submit this document to confirm,Dien hierdie dokument in om te bevestig,
Submit {0} documents?,Dien {0} dokumente in,
Submiting {0},Inhandiging {0},
Submitting {0},Inhandiging {0},
Submitted Document cannot be converted back to draft. Transition row {0},"Dokument wat ingedien is, kan nie weer na konsep omgeskakel word nie. Oorgangsreël {0}",
Submitting,indiening,
Subscription Notification,Inskrywing kennisgewing,

1 A4 A4
2398 Submit an Issue Dien &#39;n uitgawe in
2399 Submit this document to confirm Dien hierdie dokument in om te bevestig
2400 Submit {0} documents? Dien {0} dokumente in
2401 Submiting {0} Submitting {0} Inhandiging {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Dokument wat ingedien is, kan nie weer na konsep omgeskakel word nie. Oorgangsreël {0}
2403 Submitting indiening
2404 Subscription Notification Inskrywing kennisgewing

View file

@ -2398,7 +2398,7 @@ Submit after importing,ማስመጣት አስገባ,
Submit an Issue,አንድ ችግር አስገባ,
Submit this document to confirm,ለማረጋገጥ ይህን ሰነድ ማስገባት,
Submit {0} documents?,የ {0} ሰነዶች አስገባ?,
Submiting {0},በማስገባት ላይ {0},
Submitting {0},በማስገባት ላይ {0},
Submitted Document cannot be converted back to draft. Transition row {0},ገብቷል ሰነድ ረቂቅ ተመልሶ ሊቀየር አይችልም. የሽግግር ረድፍ {0},
Submitting,በማስገባት ላይ,
Subscription Notification,የደንበኝነት ምዝገባ ማሳወቂያ,

1 A4 A4
2398 Submit an Issue አንድ ችግር አስገባ
2399 Submit this document to confirm ለማረጋገጥ ይህን ሰነድ ማስገባት
2400 Submit {0} documents? የ {0} ሰነዶች አስገባ?
2401 Submiting {0} Submitting {0} በማስገባት ላይ {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} ገብቷል ሰነድ ረቂቅ ተመልሶ ሊቀየር አይችልም. የሽግግር ረድፍ {0}
2403 Submitting በማስገባት ላይ
2404 Subscription Notification የደንበኝነት ምዝገባ ማሳወቂያ

View file

@ -2398,7 +2398,7 @@ Submit after importing,تأكيد بعد الاستيراد,
Submit an Issue,يقدم العدد,
Submit this document to confirm,إرسال هذه الوثيقة إلى تأكيد,
Submit {0} documents?,إرسال {0} وثائق؟,
Submiting {0},تقديم {0},
Submitting {0},تقديم {0},
Submitted Document cannot be converted back to draft. Transition row {0},الوثيقة المسجلة لا يمكن تحويلها إلى مسودة row {0},
Submitting,تقديم,
Subscription Notification,إشعار الاشتراك,

1 A4 A4
2398 Submit an Issue يقدم العدد
2399 Submit this document to confirm إرسال هذه الوثيقة إلى تأكيد
2400 Submit {0} documents? إرسال {0} وثائق؟
2401 Submiting {0} Submitting {0} تقديم {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} الوثيقة المسجلة لا يمكن تحويلها إلى مسودة row {0}
2403 Submitting تقديم
2404 Subscription Notification إشعار الاشتراك

View file

@ -2398,7 +2398,7 @@ Submit after importing,Изпратете след импортирането,
Submit an Issue,Пуснете Issue,
Submit this document to confirm,"Изпратете този документ, за да потвърдите",
Submit {0} documents?,Изпратете {0} документи?,
Submiting {0},Изпращане на {0},
Submitting {0},Изпращане на {0},
Submitted Document cannot be converted back to draft. Transition row {0},Изпратено Документът не може да се превръща отново да изготви проект. Поредни Transition {0},
Submitting,Изпращане,
Subscription Notification,Нотификация за абонамент,

1 A4 A4
2398 Submit an Issue Пуснете Issue
2399 Submit this document to confirm Изпратете този документ, за да потвърдите
2400 Submit {0} documents? Изпратете {0} документи?
2401 Submiting {0} Submitting {0} Изпращане на {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Изпратено Документът не може да се превръща отново да изготви проект. Поредни Transition {0}
2403 Submitting Изпращане
2404 Subscription Notification Нотификация за абонамент

View file

@ -2398,7 +2398,7 @@ Submit after importing,আমদানি করার পরে জমা দ
Submit an Issue,একটি সমস্যার জমা,
Submit this document to confirm,নিশ্চিত করার জন্য এই দস্তাবেজ জমা দিন,
Submit {0} documents?,{0} নথি জমা দিন?,
Submiting {0},জমা দেওয়া {0},
Submitting {0},জমা দেওয়া {0},
Submitted Document cannot be converted back to draft. Transition row {0},লগইন ডকুমেন্ট খসড়া ফিরে রূপান্তরিত করা যাবে না. স্থানান্তরণ সারিতে {0},
Submitting,জমা দেওয়ার,
Subscription Notification,সাবস্ক্রিপশন বিজ্ঞপ্তি,

1 A4 A4
2398 Submit an Issue একটি সমস্যার জমা
2399 Submit this document to confirm নিশ্চিত করার জন্য এই দস্তাবেজ জমা দিন
2400 Submit {0} documents? {0} নথি জমা দিন?
2401 Submiting {0} Submitting {0} জমা দেওয়া {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} লগইন ডকুমেন্ট খসড়া ফিরে রূপান্তরিত করা যাবে না. স্থানান্তরণ সারিতে {0}
2403 Submitting জমা দেওয়ার
2404 Subscription Notification সাবস্ক্রিপশন বিজ্ঞপ্তি

View file

@ -2398,7 +2398,7 @@ Submit after importing,Pošaljite nakon uvoza,
Submit an Issue,Slanje problem,
Submit this document to confirm,Dostavi taj dokument da potvrdi,
Submit {0} documents?,Pošalji {0} dokumente?,
Submiting {0},Prijavljivanje {0},
Submitting {0},Prijavljivanje {0},
Submitted Document cannot be converted back to draft. Transition row {0},Postavio Dokument se ne može pretvoriti natrag u nacrtu .,
Submitting,Podnošenje,
Subscription Notification,Obaveštenje o pretplati,

1 A4 A4
2398 Submit an Issue Slanje problem
2399 Submit this document to confirm Dostavi taj dokument da potvrdi
2400 Submit {0} documents? Pošalji {0} dokumente?
2401 Submiting {0} Submitting {0} Prijavljivanje {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Postavio Dokument se ne može pretvoriti natrag u nacrtu .
2403 Submitting Podnošenje
2404 Subscription Notification Obaveštenje o pretplati

View file

@ -2398,7 +2398,7 @@ Submit after importing,Enviar després d&#39;importar,
Submit an Issue,Presentar un problema,
Submit this document to confirm,Presentar aquest document per confirmar,
Submit {0} documents?,Enviar documents {0}?,
Submiting {0},Enviant {0},
Submitting {0},Enviant {0},
Submitted Document cannot be converted back to draft. Transition row {0},Document presentat no es pot convertir de nou a redactar. Fila Transició {0},
Submitting,Presentar,
Subscription Notification,Notificació de subscripció,

1 A4 A4
2398 Submit an Issue Presentar un problema
2399 Submit this document to confirm Presentar aquest document per confirmar
2400 Submit {0} documents? Enviar documents {0}?
2401 Submiting {0} Submitting {0} Enviant {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Document presentat no es pot convertir de nou a redactar. Fila Transició {0}
2403 Submitting Presentar
2404 Subscription Notification Notificació de subscripció

View file

@ -2398,7 +2398,7 @@ Submit after importing,Odeslat po importu,
Submit an Issue,Vložit případ podpory,
Submit this document to confirm,Předloží tento dokument potvrdit,
Submit {0} documents?,Odeslat {0} dokumenty?,
Submiting {0},Odeslání {0},
Submitting {0},Odeslání {0},
Submitted Document cannot be converted back to draft. Transition row {0},Vložený dokument nemůže být konvertován na stav rozpracováno. řádek transkace {0},
Submitting,Odeslání,
Subscription Notification,Oznámení předplatného,

1 A4 A4
2398 Submit an Issue Vložit případ podpory
2399 Submit this document to confirm Předloží tento dokument potvrdit
2400 Submit {0} documents? Odeslat {0} dokumenty?
2401 Submiting {0} Submitting {0} Odeslání {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Vložený dokument nemůže být konvertován na stav rozpracováno. řádek transkace {0}
2403 Submitting Odeslání
2404 Subscription Notification Oznámení předplatného

View file

@ -2398,7 +2398,7 @@ Submit after importing,Indsend efter import,
Submit an Issue,Indberet et problem,
Submit this document to confirm,Godkend dette dokument for at bekræfte,
Submit {0} documents?,Indsend {0} dokumenter?,
Submiting {0},Indsender {0},
Submitting {0},Indsender {0},
Submitted Document cannot be converted back to draft. Transition row {0},Indsendt Dokument kan ikke konverteres tilbage til at udarbejde. Overgang rækken {0},
Submitting,Godkender,
Subscription Notification,Abonnementsmeddelelse,

1 A4 A4
2398 Submit an Issue Indberet et problem
2399 Submit this document to confirm Godkend dette dokument for at bekræfte
2400 Submit {0} documents? Indsend {0} dokumenter?
2401 Submiting {0} Submitting {0} Indsender {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Indsendt Dokument kan ikke konverteres tilbage til at udarbejde. Overgang rækken {0}
2403 Submitting Godkender
2404 Subscription Notification Abonnementsmeddelelse

View file

@ -2410,7 +2410,7 @@ Submit after importing,Nach dem Importieren buchen,
Submit an Issue,Eine Anfrage übertragen.,
Submit this document to confirm,"Buchen Sie dieses Dokument, um zu bestätigen",
Submit {0} documents?,{0} Dokumente einreichen?,
Submiting {0},Übermitteln von {0},
Submitting {0},Übermitteln von {0},
Submitted Document cannot be converted back to draft. Transition row {0},Buchung kann nicht in Entwurf umgewandelt werden. Zeile {0},
Submitting,Buche,
Subscription Notification,Abonnementbenachrichtigung,

1 A4 A4
2410 Submit an Issue Eine Anfrage übertragen.
2411 Submit this document to confirm Buchen Sie dieses Dokument, um zu bestätigen
2412 Submit {0} documents? {0} Dokumente einreichen?
2413 Submiting {0} Submitting {0} Übermitteln von {0}
2414 Submitted Document cannot be converted back to draft. Transition row {0} Buchung kann nicht in Entwurf umgewandelt werden. Zeile {0}
2415 Submitting Buche
2416 Subscription Notification Abonnementbenachrichtigung

View file

@ -2398,7 +2398,7 @@ Submit after importing,Υποβολή μετά την εισαγωγή,
Submit an Issue,Υποβολή Θέματος,
Submit this document to confirm,Υποβολή αυτό το έγγραφο για να επιβεβαιώσετε,
Submit {0} documents?,Υποβάλετε {0} έγγραφα;,
Submiting {0},Υποβολή {0},
Submitting {0},Υποβολή {0},
Submitted Document cannot be converted back to draft. Transition row {0},Το υποβλημένο έγγραφο δεν μπορεί να μετατραπεί ξανά σε προσχέδιο. Γραμμή μετάβασης {0},
Submitting,Υποβολή,
Subscription Notification,Ειδοποίηση συνδρομής,

1 A4 A4
2398 Submit an Issue Υποβολή Θέματος
2399 Submit this document to confirm Υποβολή αυτό το έγγραφο για να επιβεβαιώσετε
2400 Submit {0} documents? Υποβάλετε {0} έγγραφα;
2401 Submiting {0} Submitting {0} Υποβολή {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Το υποβλημένο έγγραφο δεν μπορεί να μετατραπεί ξανά σε προσχέδιο. Γραμμή μετάβασης {0}
2403 Submitting Υποβολή
2404 Subscription Notification Ειδοποίηση συνδρομής

View file

@ -2398,7 +2398,7 @@ Submit after importing,Enviar Después de Importar,
Submit an Issue,Validar una incidencia,
Submit this document to confirm,Presentar este documento para confirmar,
Submit {0} documents?,¿Presentar {0} documentos?,
Submiting {0},Envío de {0},
Submitting {0},Envío de {0},
Submitted Document cannot be converted back to draft. Transition row {0},"El documento validado no se puede revertir a borrador, en la línea de transición {0}.",
Submitting,Validando,
Subscription Notification,Notificación de Suscripción,

1 A4 A4
2398 Submit an Issue Validar una incidencia
2399 Submit this document to confirm Presentar este documento para confirmar
2400 Submit {0} documents? ¿Presentar {0} documentos?
2401 Submiting {0} Submitting {0} Envío de {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} El documento validado no se puede revertir a borrador, en la línea de transición {0}.
2403 Submitting Validando
2404 Subscription Notification Notificación de Suscripción

View file

@ -2398,7 +2398,7 @@ Submit after importing,Esita pärast importimist,
Submit an Issue,Esita probleemist,
Submit this document to confirm,Esita selle dokumendi kinnitamiseks,
Submit {0} documents?,Esitada {0} dokumente?,
Submiting {0},{0} esitamine,
Submitting {0},{0} esitamine,
Submitted Document cannot be converted back to draft. Transition row {0},Esitatud dokument ei saa muuta tagasi koostada. Üleminek rida {0},
Submitting,Esitades,
Subscription Notification,Tellimuse teatis,

1 A4 A4
2398 Submit an Issue Esita probleemist
2399 Submit this document to confirm Esita selle dokumendi kinnitamiseks
2400 Submit {0} documents? Esitada {0} dokumente?
2401 Submiting {0} Submitting {0} {0} esitamine
2402 Submitted Document cannot be converted back to draft. Transition row {0} Esitatud dokument ei saa muuta tagasi koostada. Üleminek rida {0}
2403 Submitting Esitades
2404 Subscription Notification Tellimuse teatis

View file

@ -2398,7 +2398,7 @@ Submit after importing,ارسال پس از وارد کردن,
Submit an Issue,ثبت کردن شماره,
Submit this document to confirm,ارسال این سند را به اعلام,
Submit {0} documents?,ارسال اسناد {0}؟,
Submiting {0},ارسال {0},
Submitting {0},ارسال {0},
Submitted Document cannot be converted back to draft. Transition row {0},سند فرستاده ممکن نیست تبدیل به پیش نویس است. ردیف گذار {0},
Submitting,ارسال,
Subscription Notification,اعلان اشتراک,

1 A4 A4
2398 Submit an Issue ثبت کردن شماره
2399 Submit this document to confirm ارسال این سند را به اعلام
2400 Submit {0} documents? ارسال اسناد {0}؟
2401 Submiting {0} Submitting {0} ارسال {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} سند فرستاده ممکن نیست تبدیل به پیش نویس است. ردیف گذار {0}
2403 Submitting ارسال
2404 Subscription Notification اعلان اشتراک

View file

@ -2398,7 +2398,7 @@ Submit after importing,Lähetä tuonnin jälkeen,
Submit an Issue,Vahvista aihe,
Submit this document to confirm,Vahvista hyväksyväsi tämän dokumentin,
Submit {0} documents?,Lähetä {0} asiakirjoja?,
Submiting {0},Lähettäminen {0},
Submitting {0},Lähettäminen {0},
Submitted Document cannot be converted back to draft. Transition row {0},Vahvistettua dokumenttia ei voi muuttaa takaisin luonnokseksi. Tapahtuman rivi {0},
Submitting,Vahvistetaan,
Subscription Notification,Tilausilmoitus,

1 A4 A4
2398 Submit an Issue Vahvista aihe
2399 Submit this document to confirm Vahvista hyväksyväsi tämän dokumentin
2400 Submit {0} documents? Lähetä {0} asiakirjoja?
2401 Submiting {0} Submitting {0} Lähettäminen {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Vahvistettua dokumenttia ei voi muuttaa takaisin luonnokseksi. Tapahtuman rivi {0}
2403 Submitting Vahvistetaan
2404 Subscription Notification Tilausilmoitus

View file

@ -418,8 +418,8 @@ Also adding the dependent currency field {0},Ajout également du champ de devise
"Always add ""Draft"" Heading for printing draft documents","Toujours ajouter ""Brouillon"" pour l'impression des documents brouillons",
Always use Account's Email Address as Sender,Toujours utiliser l'adresse Email du compte comme Expéditeur,
Always use Account's Name as Sender's Name,Toujours utiliser le nom du compte comme nom de l&#39;expéditeur,
Amend,Modifier,
Amending,Modification,
Amend,Nouv. version
Amending,Nouv. version en cours,
Amount Based On Field,Montant Basé sur le Champ,
Amount Field,Champ du Montant,
Amount must be greater than 0.,Le montant doit être supérieur à 0.,
@ -1100,7 +1100,7 @@ File not attached,Fichier joint manquant,
File size exceeded the maximum allowed size of {0} MB,La taille du fichier a dépassé la taille maximale autorisée de {0} Mo,
File too big,Fichier trop grand,
File {0} does not exist,Fichier {0} n'existe pas,
Files,Des dossiers,
Files,Fichiers,
Filter,Filtre,
Filter Data,Filtrer les Données,
Filter List,Liste de filtres,
@ -1145,7 +1145,7 @@ For Document Type,Pour le type de document,
For User,Pour l\'Utilisateur,
For Value,Pour la Valeur,
"For currency {0}, the minimum transaction amount should be {1}","Pour la devise {0}, le montant minimum de la transaction doit être {1}",
For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment.,"Par exemple, si vous annulez et modifiez le document INV004, il deviendra un nouveau document INV004-1. Cela vous aide à garder une trace de chaque modification.",
For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment.,"Par exemple, si vous annulez et creer une nouvelle version le document INV004, il deviendra un nouveau document INV004-1. Cela vous aide à garder une trace de chaque modification.",
"For example: If you want to include the document ID, use {0}","Par exemple: Si vous voulez inclure l'ID du document, utilisez {0}",
"For updating, you can update only selective columns.","Pour la mise à jour, vous pouvez mettre à jour uniquement une sélection colonnes.",
For {0} at level {1} in {2} in row {3},Pour {0} au niveau {1} dans {2} à la ligne {3},
@ -1541,7 +1541,7 @@ Max Value,Valeur Max,
Max width for type Currency is 100px in row {0},Largeur max pour le type Devise est 100px dans la ligne {0},
Maximum Attachment Limit for this record reached.,Taille maximale des Pièces Jointes pour cet enregistrement est atteint.,
Maximum {0} rows allowed,Maximum {0} lignes autorisés,
"Meaning of Submit, Cancel, Amend","Signification de Valider, Annuler, Modifier",
"Meaning of Submit, Cancel, Amend","Signification de Valider, Annuler, Nouv. version",
Mention transaction completion page URL,Mentionnez la page URL de fin de transaction,
Mentions,Mentions,
Menu,Menu,
@ -1737,7 +1737,7 @@ Old Password,Ancien Mot De Passe,
Old Password Required.,Ancien Mot de Passe Requis.,
Older backups will be automatically deleted,Les anciennes sauvegardes seront automatiquement supprimées,
"On {0}, {1} wrote:","Sur {0}, {1} a écrit :",
"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.","Une fois validé, les documents à valider ne peuvent plus être modifiés. Ils ne peuvent être annulés et amendés.",
"Once submitted, submittable documents cannot be changed. They can only be Cancelled and Amended.","Une fois validé, les documents à valider ne peuvent plus être modifiés. Ils ne peuvent être annulés et modifiés (Nouv. version).",
"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Une fois que vous avez défini ceci, les utilisateurs ne pourront accèder qu'aux documents (e.g. Article de Blog) où le lien existe (e.g. Blogger) .",
One Last Step,Une Dernière Étape,
One Time Password (OTP) Registration Code from {},Code de Mot de Passe Unique (OTP) à partir de {},
@ -1837,7 +1837,7 @@ Permission Levels,Niveaux d'Autorisation,
Permission Rules,Règles d'Autorisation,
Permissions,Autorisations,
Permissions are automatically applied to Standard Reports and searches.,Les autorisations sont automatiquement appliquées aux rapports standard et aux recherches.,
"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Les Autorisations sont définies sur les Rôles et les Types de Documents (appelés DocTypes) en définissant des droits , tels que Lire, Écrire, Créer, Supprimer, Valider, Annuler, Modifier, Rapporter, Importer, Exporter, Imprimer, Envoyer un Email et Définir les Autorisations de l'Utilisateur .",
"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Les Autorisations sont définies sur les Rôles et les Types de Documents (appelés DocTypes) en définissant des droits , tels que Lire, Écrire, Créer, Supprimer, Valider, Annuler, Nouv. version, Rapporter, Importer, Exporter, Imprimer, Envoyer un Email et Définir les Autorisations de l'Utilisateur .",
Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles.,Les Autorisations aux niveaux supérieurs sont des permissions de Niveau Champ. Un Niveau d'Autorisation est défini pour chaque Champ et les règles définies pour ces Autorisations sappliquent au Champ. Ceci est utile si vous voulez cacher ou mettre certains champs en lecture seule pour certains Rôles.,
"Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document.","Les Autorisations au niveau 0 sont les autorisations de Niveau Document, cest à dire qu'elles sont nécessaires pour accéder au document.",
Permissions get applied on Users based on what Roles they are assigned.,Autorisations sont appliqués aux utilisateurs en fonction des Rôles qui leurs sont affectés.,
@ -2399,7 +2399,7 @@ Submit after importing,Valider après l'import,
Submit an Issue,Valider un ticket,
Submit this document to confirm,Valider ce document pour confirmer,
Submit {0} documents?,Valider {0} documents ?,
Submiting {0},Validation de {0},
Submitting {0},Validation de {0},
Submitted Document cannot be converted back to draft. Transition row {0},Document Valider ne peut pas être reconvertis en Brouillon. Ligne de transition {0},
Submitting,Validation,
Subscription Notification,Notification d&#39;abonnement,
@ -2745,7 +2745,7 @@ Website Theme Image,Image du Thème du Site Web,
Website Theme Image Link,Lien de l'Image du Thème du Site Web,
Website User,Utilisateur du Site Web,
Welcome Message,Message de Bienvenue,
"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Lorsque vous Modifiez un document après l'avoir Annulé et que vous l'enregistrez, il va obtenir un nouveau numéro qui est une version de l'ancien numéro.",
"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Lorsque vous faite une nouvelle version d&#39;un document après l&#39;avoir Annulé et que vous l&#39;enregistrez, il va obtenir un nouveau numéro qui est une version de l&#39;ancien numéro.",
Width,Largeur,
Widths can be set in px or %.,Les largeurs peuvent être réglées en px ou %.,
Will be used in url (usually first name).,Sera utilisé dans l'url (généralement le prénom).,
@ -2784,7 +2784,7 @@ You are not permitted to view the newsletter.,Vous n&#39;êtes pas autorisé à
You are now following this document. You will receive daily updates via email. You can change this in User Settings.,Vous suivez maintenant ce document. Vous recevrez des mises à jour quotidiennes par courrier électronique. Vous pouvez modifier cela dans les paramètres de l&#39;utilisateur.,
You can add dynamic properties from the document by using Jinja templating.,Vous pouvez ajouter des propriétés dynamiques au document à l'aide des modèles Jinja.,
You can also copy-paste this ,Vous pouvez également copier-coller cette,
"You can change Submitted documents by cancelling them and then, amending them.","Vous pouvez modifier les documents Validés en les annulant et ensuite, en les modifiant.",
"You can change Submitted documents by cancelling them and then, amending them.","Vous pouvez modifier les documents Validés en les annulant et ensuite, en créant une nouvelle version.",
You can find things by asking 'find orange in customers',Vous pouvez trouver des choses en demandant 'trouver orange dans clients',
You can only upload upto 5000 records in one go. (may be less in some cases),Vous pouvez seulement charger jusqu'à 5000 enregistrement en une seule fois. (peut-être moins dans certains cas),
You can use Customize Form to set levels on fields.,Vous pouvez utiliser Personaliser le Formulaire pour définir les niveaux de champs.,
@ -3093,12 +3093,12 @@ zoom-out,Réduire,
{0} {1} to {2},{0} {1} à {2},
"{0}, Row {1}","{0}, Ligne {1}",
"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}",{0} : {1} '({3}) sera tronqué car le nombre de caractères max est {2},
{0}: Cannot set Amend without Cancel,{0} : Impossible de choisir Modifier sans Annuler,
{0}: Cannot set Assign Amend if not Submittable,{0} : Impossible de définir Assigner Modifier si non Validable,
{0}: Cannot set Amend without Cancel,{0} : Impossible de choisir Nouv. version sans Annuler,
{0}: Cannot set Assign Amend if not Submittable,{0} : Impossible de définir Assigner Nouv. version si non Validable,
{0}: Cannot set Assign Submit if not Submittable,{0} : Impossible de définir Assigner Valider si non Validable,
{0}: Cannot set Cancel without Submit,{0} : Impossible de choisir Annuler sans Valider,
{0}: Cannot set Import without Create,{0} : Impossible de choisir Import sans Créer,
"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Vous ne pouvez pas choisir Valider, Annuler, Modifier sans Écrire",
"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Vous ne pouvez pas choisir Valider, Annuler, Nouv. version sans Écrire",
{0}: Cannot set import as {1} is not importable,{0} : Impossible de choisir import car {1} n'est pas importable,
{0}: No basic permissions set,{0} : Aucune autorisation de base définie,
"{0}: Only one rule allowed with the same Role, Level and {1}","{0} : Une seule règle est permise avec le même Rôle, Niveau et {1}",
@ -3132,7 +3132,7 @@ No values to show,Aucune valeur à afficher,
View Ref,Voir la référence,
Workflow Action is not created for optional states,L&#39;action de flux de travail n&#39;est pas créée pour les états facultatifs,
{0} values selected,{0} valeurs sélectionnées,
"""amended_from"" field must be present to do an amendment.",Le champ &quot;modified_from&quot; doit être présent pour effectuer un amendement.,
"""amended_from"" field must be present to do an amendment.",Le champ &quot;modified_from&quot; doit être présent pour effectuer une Nouv. version,
(Mandatory),(Obligatoire),
1 Google Calendar Event synced.,1 événement Google Agenda synchronisé.,
1 record will be exported,1 enregistrement sera exporté,
@ -4139,6 +4139,7 @@ by Role,par rôle,
Document is only editable by users with role,Le document n&#39;est modifiable que par les utilisateurs avec un rôle,
{0}: Other permission rules may also apply,{0}: d&#39;autres règles d&#39;autorisation peuvent également s&#39;appliquer,
{0} Page Views,{0} pages vues,
{0} Page Views,{0} pages vues,
Expand,Développer,
Collapse,Réduire,
"Invalid Bearer token, please provide a valid access token with prefix 'Bearer'.","Jeton de porteur non valide, veuillez fournir un jeton d&#39;accès valide avec le préfixe «porteur».",
@ -4530,7 +4531,7 @@ Delete and Generate New,Supprimer et générer un nouveau,
{0} ({1}) (1 row mandatory),{0} ({1}) (1 ligne obligatoire),
Select Fields To Insert,Sélectionnez les champs à insérer,
Select Fields To Update,Sélectionnez les champs à mettre à jour,
"This document is already amended, you cannot ammend it again","Ce document est déjà modifié, vous ne pouvez plus le modifier",
"This document is already amended, you cannot ammend it again","Ce document est déjà obsoléte (une nouvelle version existe), vous ne pouvez plus le modifier",
Add to ToDo,Ajouter à ToDo,
{0} is currently {1},{0} est actuellement {1},
{0} are currently {1},{0} sont actuellement {1},
@ -4702,16 +4703,17 @@ Negative Value,Valeur négative,
Authentication failed while receiving emails from Email Account: {0}.,L&#39;authentification a échoué lors de la réception des e-mails du compte de messagerie: {0}.,
Message from server: {0},Message du serveur: {0},
{0} edited this {1},{0} a édité {1},
{0} created this {1}, {0} a créé {1}
Report an Issue, Signaler une anomalie
About, A Propos
My Profile, Mon profil
My Settings, Mes paramètres
Toggle Full Width, Changer l&#39;affichage en pleine largeur
Toggle Theme, Basculer le thème
Theme Changed, Thème changé
Amend, Nouv. version
Document has been submitted, Document validé
Document has been cancelled, Document annulé
Document is in draft state, Document au statut brouillon
{0} created this {1},{0} a créé {1}
Report an Issue,Signaler une anomalie
User Forum,Forum utilisateur
About,A Propos
My Profile,Mon profil
My Settings,Mes paramètres
Toggle Full Width,Changer l&#39;affichage en pleine largeur
Toggle Theme,Basculer le thème
Theme Changed,Thème changé
Document has been submitted,Document validé
Document has been cancelled,Document annulé
Document is in draft state,Document au statut brouillon
Copy to Clipboard,Copier vers le presse-papiers
Don't have an account?,Vous n&#39;avez pas de compte?

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

View file

@ -2398,7 +2398,7 @@ Submit after importing,આયાત કર્યા પછી સબમિટ
Submit an Issue,એક મુદ્દો સબમિટ,
Submit this document to confirm,તેની ખાતરી કરવા માટે આ દસ્તાવેજ સબમિટ,
Submit {0} documents?,{0} દસ્તાવેજો સબમિટ કરીએ?,
Submiting {0},સબમિટ કરવું {0},
Submitting {0},સબમિટ કરવું {0},
Submitted Document cannot be converted back to draft. Transition row {0},સબમિટ દસ્તાવેજ મુસદ્દો તૈયાર કરવા માટે પાછા રૂપાંતરિત કરી શકાતા નથી. ટ્રાન્ઝિશન પંક્તિ {0},
Submitting,સબમિટ,
Subscription Notification,સબ્સ્ક્રિપ્શન સૂચના,

1 A4 A4
2398 Submit an Issue એક મુદ્દો સબમિટ
2399 Submit this document to confirm તેની ખાતરી કરવા માટે આ દસ્તાવેજ સબમિટ
2400 Submit {0} documents? {0} દસ્તાવેજો સબમિટ કરીએ?
2401 Submiting {0} Submitting {0} સબમિટ કરવું {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} સબમિટ દસ્તાવેજ મુસદ્દો તૈયાર કરવા માટે પાછા રૂપાંતરિત કરી શકાતા નથી. ટ્રાન્ઝિશન પંક્તિ {0}
2403 Submitting સબમિટ
2404 Subscription Notification સબ્સ્ક્રિપ્શન સૂચના

View file

@ -2398,7 +2398,7 @@ Submit after importing,הגש לאחר הייבוא,
Submit an Issue,שלח גיליון,
Submit this document to confirm,שלח את המסמך הזה כדי לאשר,
Submit {0} documents?,להגיש {0} מסמכים?,
Submiting {0},מגיש {0},
Submitting {0},מגיש {0},
Submitted Document cannot be converted back to draft. Transition row {0},מסמך שהוגש לא ניתן להמיר חזרה לטיוטה. שורת מעבר {0},
Submitting,הגשה,
Subscription Notification,הודעת מנוי,

1 A4 A4
2398 Submit an Issue שלח גיליון
2399 Submit this document to confirm שלח את המסמך הזה כדי לאשר
2400 Submit {0} documents? להגיש {0} מסמכים?
2401 Submiting {0} Submitting {0} מגיש {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} מסמך שהוגש לא ניתן להמיר חזרה לטיוטה. שורת מעבר {0}
2403 Submitting הגשה
2404 Subscription Notification הודעת מנוי

View file

@ -2398,7 +2398,7 @@ Submit after importing,आयात करने के बाद सबमि
Submit an Issue,किसी समस्या सबमिट,
Submit this document to confirm,इस बात की पुष्टि करने के लिए इस दस्तावेज जमा करें,
Submit {0} documents?,{0} दस्तावेज़ सबमिट करें?,
Submiting {0},जमा करना {0},
Submitting {0},जमा करना {0},
Submitted Document cannot be converted back to draft. Transition row {0},प्रस्तुत दस्तावेज का मसौदा तैयार करने के लिए वापस नहीं बदला जा सकता .,
Submitting,भेजने से,
Subscription Notification,सदस्यता अधिसूचना,

1 A4 A4
2398 Submit an Issue किसी समस्या सबमिट
2399 Submit this document to confirm इस बात की पुष्टि करने के लिए इस दस्तावेज जमा करें
2400 Submit {0} documents? {0} दस्तावेज़ सबमिट करें?
2401 Submiting {0} Submitting {0} जमा करना {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} प्रस्तुत दस्तावेज का मसौदा तैयार करने के लिए वापस नहीं बदला जा सकता .
2403 Submitting भेजने से
2404 Subscription Notification सदस्यता अधिसूचना

View file

@ -2398,7 +2398,7 @@ Submit after importing,Slanje nakon uvoza,
Submit an Issue,Slanje problem,
Submit this document to confirm,Pošaljite ovaj dokument za potvrdu,
Submit {0} documents?,Pošaljite {0} dokumente?,
Submiting {0},Slanje {0},
Submitting {0},Slanje {0},
Submitted Document cannot be converted back to draft. Transition row {0},Postavio Dokument se ne može pretvoriti natrag u nacrtu .,
Submitting,Slanje,
Subscription Notification,Obavijest o pretplati,

1 A4 A4
2398 Submit an Issue Slanje problem
2399 Submit this document to confirm Pošaljite ovaj dokument za potvrdu
2400 Submit {0} documents? Pošaljite {0} dokumente?
2401 Submiting {0} Submitting {0} Slanje {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Postavio Dokument se ne može pretvoriti natrag u nacrtu .
2403 Submitting Slanje
2404 Subscription Notification Obavijest o pretplati

View file

@ -2398,7 +2398,7 @@ Submit after importing,Elküldés az importálás után,
Submit an Issue,Jelentsen egy problémát,
Submit this document to confirm,Küldje el ezt a dokumentumot megerősítésre,
Submit {0} documents?,Küldje el a {0} dokumentumokat?,
Submiting {0},Benyúj {0},
Submitting {0},Benyúj {0},
Submitted Document cannot be converted back to draft. Transition row {0},Benyújtott dokumentumot nem lehet visszaalakítani tervezetté. Átvezetési sor {0},
Submitting,Benyújtása,
Subscription Notification,Előfizetési értesítés,

1 A4 A4
2398 Submit an Issue Jelentsen egy problémát
2399 Submit this document to confirm Küldje el ezt a dokumentumot megerősítésre
2400 Submit {0} documents? Küldje el a {0} dokumentumokat?
2401 Submiting {0} Submitting {0} Benyúj {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Benyújtott dokumentumot nem lehet visszaalakítani tervezetté. Átvezetési sor {0}
2403 Submitting Benyújtása
2404 Subscription Notification Előfizetési értesítés

View file

@ -2398,7 +2398,7 @@ Submit after importing,Kirim setelah mengimpor,
Submit an Issue,Menyerahkan Masalah,
Submit this document to confirm,Menyerahkan dokumen ini untuk mengkonfirmasi,
Submit {0} documents?,Kirim {0} dokumen?,
Submiting {0},Mengajukan {0},
Submitting {0},Mengajukan {0},
Submitted Document cannot be converted back to draft. Transition row {0},Dikirim Dokumen tidak dapat dikonversi kembali untuk menyusun. Transisi baris {0},
Submitting,Mengirimkan,
Subscription Notification,Pemberitahuan Berlangganan,

1 A4 A4
2398 Submit an Issue Menyerahkan Masalah
2399 Submit this document to confirm Menyerahkan dokumen ini untuk mengkonfirmasi
2400 Submit {0} documents? Kirim {0} dokumen?
2401 Submiting {0} Submitting {0} Mengajukan {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Dikirim Dokumen tidak dapat dikonversi kembali untuk menyusun. Transisi baris {0}
2403 Submitting Mengirimkan
2404 Subscription Notification Pemberitahuan Berlangganan

View file

@ -2398,7 +2398,7 @@ Submit after importing,Sendu inn eftir innflutning,
Submit an Issue,Leggja mál,
Submit this document to confirm,Senda þessu skjali til að staðfesta,
Submit {0} documents?,Sendu inn {0} skjöl?,
Submiting {0},Sending {0},
Submitting {0},Sending {0},
Submitted Document cannot be converted back to draft. Transition row {0},Lögð Document ekki hægt að breyta aftur í drög. Umskipti róður {0},
Submitting,Sendi,
Subscription Notification,Tilkynning um áskrift,

1 A4 A4
2398 Submit an Issue Leggja mál
2399 Submit this document to confirm Senda þessu skjali til að staðfesta
2400 Submit {0} documents? Sendu inn {0} skjöl?
2401 Submiting {0} Submitting {0} Sending {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Lögð Document ekki hægt að breyta aftur í drög. Umskipti róður {0}
2403 Submitting Sendi
2404 Subscription Notification Tilkynning um áskrift

View file

@ -2398,7 +2398,7 @@ Submit after importing,Invia dopo l&#39;importazione,
Submit an Issue,Segnala un Problema,
Submit this document to confirm,Presenta questo documento per confermare,
Submit {0} documents?,Invia {0} documenti?,
Submiting {0},Invio {0},
Submitting {0},Invio {0},
Submitted Document cannot be converted back to draft. Transition row {0},I documenti Confermati non possono essere riconvertiti in Bozza. Riga di transazione{0},
Submitting,In fase di conferma,
Subscription Notification,Notifica di iscrizione,

1 A4 A4
2398 Submit an Issue Segnala un Problema
2399 Submit this document to confirm Presenta questo documento per confermare
2400 Submit {0} documents? Invia {0} documenti?
2401 Submiting {0} Submitting {0} Invio {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} I documenti Confermati non possono essere riconvertiti in Bozza. Riga di transazione{0}
2403 Submitting In fase di conferma
2404 Subscription Notification Notifica di iscrizione

View file

@ -2398,7 +2398,7 @@ Submit after importing,インポート後に提出する,
Submit an Issue,課題を投稿,
Submit this document to confirm,確認のため、この文書を提出,
Submit {0} documents?,{0}文書を提出しますか?,
Submiting {0},{0}を送信中です,
Submitting {0},{0}を送信中です,
Submitted Document cannot be converted back to draft. Transition row {0},提出されたドキュメントは、ドラフトに変換しなおすことができません。遷移行{0},
Submitting,提出,
Subscription Notification,購読通知,

1 A4 A4
2398 Submit an Issue 課題を投稿
2399 Submit this document to confirm 確認のため、この文書を提出
2400 Submit {0} documents? {0}文書を提出しますか?
2401 Submiting {0} Submitting {0} {0}を送信中です
2402 Submitted Document cannot be converted back to draft. Transition row {0} 提出されたドキュメントは、ドラフトに変換しなおすことができません。遷移行{0}
2403 Submitting 提出
2404 Subscription Notification 購読通知

View file

@ -2398,7 +2398,7 @@ Submit after importing,ដាក់ស្នើបន្ទាប់ពីកា
Submit an Issue,ដាក់ស្នើនូវបញ្ហា,
Submit this document to confirm,ដាក់ស្នើឯកសារនេះដើម្បីបញ្ជាក់,
Submit {0} documents?,ដាក់ស្នើ {0} ឯកសារ?,
Submiting {0},ដាក់ស្នើ {0},
Submitting {0},ដាក់ស្នើ {0},
Submitted Document cannot be converted back to draft. Transition row {0},ឯកសារដែលបានដាក់ស្នើមិនអាចត្រូវបានបម្លែងត្រឡប់មកវិញដើម្បីធ្វើសេចក្តីព្រាង។ ជួរដេកដែលបានផ្លាស់ប្តូរ {0},
Submitting,ដាក់ស្នើ,
Subscription Notification,សេចក្ដីជូនដំណឹងការជាវ,

1 A4 រថយន្ត A4
2398 Submit an Issue ដាក់ស្នើនូវបញ្ហា
2399 Submit this document to confirm ដាក់ស្នើឯកសារនេះដើម្បីបញ្ជាក់
2400 Submit {0} documents? ដាក់ស្នើ {0} ឯកសារ?
2401 Submiting {0} Submitting {0} ដាក់ស្នើ {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} ឯកសារដែលបានដាក់ស្នើមិនអាចត្រូវបានបម្លែងត្រឡប់មកវិញដើម្បីធ្វើសេចក្តីព្រាង។ ជួរដេកដែលបានផ្លាស់ប្តូរ {0}
2403 Submitting ដាក់ស្នើ
2404 Subscription Notification សេចក្ដីជូនដំណឹងការជាវ

View file

@ -2398,7 +2398,7 @@ Submit after importing,ಆಮದು ಮಾಡಿದ ನಂತರ ಸಲ್ಲಿ
Submit an Issue,ಸಮಸ್ಯೆಯನ್ನು ಸಲ್ಲಿಸಿ,
Submit this document to confirm,ಖಚಿತಪಡಿಸಲು ದಾಖಲೆ ಸಲ್ಲಿಸಿ,
Submit {0} documents?,{0} ದಾಖಲೆಗಳನ್ನು ಸಲ್ಲಿಸಿ?,
Submiting {0},{0},
Submitting {0},{0},
Submitted Document cannot be converted back to draft. Transition row {0},ಸಲ್ಲಿಸಿದ ಡಾಕ್ಯುಮೆಂಟ್ ಕರಡುಪ್ರತಿಯನ್ನು ಪರಿವರ್ತಿಸಬಹುದಾದ ಸಾಧ್ಯವಿಲ್ಲ .,
Submitting,ಸಲ್ಲಿಸಲಾಗುತ್ತಿದೆ,
Subscription Notification,ಚಂದಾದಾರಿಕೆ ಅಧಿಸೂಚನೆ,

1 A4 A4 ಕಾರು
2398 Submit an Issue ಸಮಸ್ಯೆಯನ್ನು ಸಲ್ಲಿಸಿ
2399 Submit this document to confirm ಖಚಿತಪಡಿಸಲು ದಾಖಲೆ ಸಲ್ಲಿಸಿ
2400 Submit {0} documents? {0} ದಾಖಲೆಗಳನ್ನು ಸಲ್ಲಿಸಿ?
2401 Submiting {0} Submitting {0} {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} ಸಲ್ಲಿಸಿದ ಡಾಕ್ಯುಮೆಂಟ್ ಕರಡುಪ್ರತಿಯನ್ನು ಪರಿವರ್ತಿಸಬಹುದಾದ ಸಾಧ್ಯವಿಲ್ಲ .
2403 Submitting ಸಲ್ಲಿಸಲಾಗುತ್ತಿದೆ
2404 Subscription Notification ಚಂದಾದಾರಿಕೆ ಅಧಿಸೂಚನೆ

View file

@ -2398,7 +2398,7 @@ Submit after importing,가져온 후 제출,
Submit an Issue,문제 제출,
Submit this document to confirm,확인하기 위해이 문서를 제출,
Submit {0} documents?,{0} 문서를 제출 하시겠습니까?,
Submiting {0},{0} 제출 중입니다.,
Submitting {0},{0} 제출 중입니다.,
Submitted Document cannot be converted back to draft. Transition row {0},제출 된 문서는 초안으로 변환 할 수 없습니다. 전환 행 {0},
Submitting,제출,
Subscription Notification,구독 알림,

1 A4 A4
2398 Submit an Issue 문제 제출
2399 Submit this document to confirm 확인하기 위해이 문서를 제출
2400 Submit {0} documents? {0} 문서를 제출 하시겠습니까?
2401 Submiting {0} Submitting {0} {0} 제출 중입니다.
2402 Submitted Document cannot be converted back to draft. Transition row {0} 제출 된 문서는 초안으로 변환 할 수 없습니다. 전환 행 {0}
2403 Submitting 제출
2404 Subscription Notification 구독 알림

View file

@ -2398,7 +2398,7 @@ Submit after importing,Piştî hilberandinê,
Submit an Issue,Submit an Dozî Kurd,
Submit this document to confirm,Submit vê belgeyê de ji bo piştrast,
Submit {0} documents?,Belgeyên {0} bişînin?,
Submiting {0},Submit {0},
Submitting {0},Submit {0},
Submitted Document cannot be converted back to draft. Transition row {0},Dokumentê radestkirî paş ne venegerin kişandina. row Transition {0},
Submitting,Radestkirina,
Subscription Notification,Agahdariya Mirovan,

1 A4 A4
2398 Submit an Issue Submit an Dozî Kurd
2399 Submit this document to confirm Submit vê belgeyê de ji bo piştrast
2400 Submit {0} documents? Belgeyên {0} bişînin?
2401 Submiting {0} Submitting {0} Submit {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Dokumentê radestkirî paş ne venegerin kişandina. row Transition {0}
2403 Submitting Radestkirina
2404 Subscription Notification Agahdariya Mirovan

View file

@ -2398,7 +2398,7 @@ Submit after importing,ສົ່ງຫຼັງຈາກການນໍາເຂ
Submit an Issue,ຍື່ນສະເຫນີບັນຫາ,
Submit this document to confirm,ສົ່ງເອກະສານເພື່ອຍືນຍັນ,
Submit {0} documents?,ສົ່ງ {0} ເອກະສານ?,
Submiting {0},ການສົ່ງ {0},
Submitting {0},ການສົ່ງ {0},
Submitted Document cannot be converted back to draft. Transition row {0},ເອກະສານສົ່ງບໍ່ສາມາດໄດ້ຮັບການປ່ຽນໃຈເຫລື້ອມໃສກັບຄືນໄປບ່ອນຮ່າງ. ຕິດຕໍ່ກັນການຫັນປ່ຽນ {0},
Submitting,ສົ່ງ,
Subscription Notification,Notification Subscription,

1 A4 A4
2398 Submit an Issue ຍື່ນສະເຫນີບັນຫາ
2399 Submit this document to confirm ສົ່ງເອກະສານເພື່ອຍືນຍັນ
2400 Submit {0} documents? ສົ່ງ {0} ເອກະສານ?
2401 Submiting {0} Submitting {0} ການສົ່ງ {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} ເອກະສານສົ່ງບໍ່ສາມາດໄດ້ຮັບການປ່ຽນໃຈເຫລື້ອມໃສກັບຄືນໄປບ່ອນຮ່າງ. ຕິດຕໍ່ກັນການຫັນປ່ຽນ {0}
2403 Submitting ສົ່ງ
2404 Subscription Notification Notification Subscription

View file

@ -2398,7 +2398,7 @@ Submit after importing,Pateikti importuojant,
Submit an Issue,Pateikti numeris,
Submit this document to confirm,Pateikti šį dokumentą patvirtinti,
Submit {0} documents?,Pateikti {0} dokumentus?,
Submiting {0},Pateikiama {0},
Submitting {0},Pateikiama {0},
Submitted Document cannot be converted back to draft. Transition row {0},Pateiktas dokumentas negali būti konvertuojami atgal į projektą. Perėjimas eilutė {0},
Submitting,Siunčiamas,
Subscription Notification,Prenumeratos pranešimas,

1 A4 A4
2398 Submit an Issue Pateikti numeris
2399 Submit this document to confirm Pateikti šį dokumentą patvirtinti
2400 Submit {0} documents? Pateikti {0} dokumentus?
2401 Submiting {0} Submitting {0} Pateikiama {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Pateiktas dokumentas negali būti konvertuojami atgal į projektą. Perėjimas eilutė {0}
2403 Submitting Siunčiamas
2404 Subscription Notification Prenumeratos pranešimas

View file

@ -2398,7 +2398,7 @@ Submit after importing,Iesniegt pēc importēšanas,
Submit an Issue,Iesniegt Problēma,
Submit this document to confirm,"Iesniegt šo dokumentu, lai apstiprinātu",
Submit {0} documents?,Iesniegt {0} dokumentus?,
Submiting {0},Iesniedzot {0},
Submitting {0},Iesniedzot {0},
Submitted Document cannot be converted back to draft. Transition row {0},Iesniegtie Dokumentu nevar pārvērst atpakaļ uz projektu. Pāreja rinda {0},
Submitting,Iesniedzot,
Subscription Notification,Abonēšanas paziņojums,

1 A4 A4
2398 Submit an Issue Iesniegt Problēma
2399 Submit this document to confirm Iesniegt šo dokumentu, lai apstiprinātu
2400 Submit {0} documents? Iesniegt {0} dokumentus?
2401 Submiting {0} Submitting {0} Iesniedzot {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Iesniegtie Dokumentu nevar pārvērst atpakaļ uz projektu. Pāreja rinda {0}
2403 Submitting Iesniedzot
2404 Subscription Notification Abonēšanas paziņojums

View file

@ -2398,7 +2398,7 @@ Submit after importing,Прати после увоз,
Submit an Issue,Поднесете ја претставува проблем,
Submit this document to confirm,Го достави овој документ кој ја потврдува,
Submit {0} documents?,Поднесете {0} документи?,
Submiting {0},Поднесување {0},
Submitting {0},Поднесување {0},
Submitted Document cannot be converted back to draft. Transition row {0},Поднесен документ не може да се конвертира назад во Предлог. Транзициски ред {0},
Submitting,Поднесување,
Subscription Notification,Известување за претплата,

1 A4 А4
2398 Submit an Issue Поднесете ја претставува проблем
2399 Submit this document to confirm Го достави овој документ кој ја потврдува
2400 Submit {0} documents? Поднесете {0} документи?
2401 Submiting {0} Submitting {0} Поднесување {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Поднесен документ не може да се конвертира назад во Предлог. Транзициски ред {0}
2403 Submitting Поднесување
2404 Subscription Notification Известување за претплата

View file

@ -2398,7 +2398,7 @@ Submit after importing,ഇറക്കുമതി ചെയ്ത ശേഷം
Submit an Issue,ഒരു പ്രശ്നം സമർപ്പിക്കുക,
Submit this document to confirm,സ്ഥിരീകരിക്കുന്നതിന് ഈ പ്രമാണം സമർപ്പിക്കുക,
Submit {0} documents?,പ്രമാണങ്ങൾ {0} സമർപ്പിക്കണോ?,
Submiting {0},{0} നൽകൽ,
Submitting {0},{0} നൽകൽ,
Submitted Document cannot be converted back to draft. Transition row {0},സമർപ്പിച്ച ഡോക്യുമെന്റ് തിരികെ കരട് പരിവർത്തനം ചെയ്യാൻ കഴിയില്ല. ട്രാൻസിഷൻ വരി {0},
Submitting,സമർപ്പിക്കുന്നു,
Subscription Notification,സബ്സ്ക്രിപ്ഷൻ അറിയിപ്പ്,

1 A4 എ 4
2398 Submit an Issue ഒരു പ്രശ്നം സമർപ്പിക്കുക
2399 Submit this document to confirm സ്ഥിരീകരിക്കുന്നതിന് ഈ പ്രമാണം സമർപ്പിക്കുക
2400 Submit {0} documents? പ്രമാണങ്ങൾ {0} സമർപ്പിക്കണോ?
2401 Submiting {0} Submitting {0} {0} നൽകൽ
2402 Submitted Document cannot be converted back to draft. Transition row {0} സമർപ്പിച്ച ഡോക്യുമെന്റ് തിരികെ കരട് പരിവർത്തനം ചെയ്യാൻ കഴിയില്ല. ട്രാൻസിഷൻ വരി {0}
2403 Submitting സമർപ്പിക്കുന്നു
2404 Subscription Notification സബ്സ്ക്രിപ്ഷൻ അറിയിപ്പ്

View file

@ -2398,7 +2398,7 @@ Submit after importing,आयात केल्यानंतर सबमि
Submit an Issue,एक समस्या सादर करा,
Submit this document to confirm,पुष्टी करण्यासाठी या दस्तऐवज सादर,
Submit {0} documents?,{0} दस्तऐवज सबमिट करायचे?,
Submiting {0},सबमिट करणे {0},
Submitting {0},सबमिट करणे {0},
Submitted Document cannot be converted back to draft. Transition row {0},सबमिट दस्तऐवज मसुद्यावर परत रूपांतरीत केले जाऊ शकत नाही. स्थित्यंतर सलग {0},
Submitting,सादर करत आहे,
Subscription Notification,सदस्यता अधिसूचना,

1 A4 ए 4
2398 Submit an Issue एक समस्या सादर करा
2399 Submit this document to confirm पुष्टी करण्यासाठी या दस्तऐवज सादर
2400 Submit {0} documents? {0} दस्तऐवज सबमिट करायचे?
2401 Submiting {0} Submitting {0} सबमिट करणे {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} सबमिट दस्तऐवज मसुद्यावर परत रूपांतरीत केले जाऊ शकत नाही. स्थित्यंतर सलग {0}
2403 Submitting सादर करत आहे
2404 Subscription Notification सदस्यता अधिसूचना

View file

@ -2398,7 +2398,7 @@ Submit after importing,Hantar selepas mengimport,
Submit an Issue,Hantar Isu,
Submit this document to confirm,Mengemukakan dokumen ini untuk mengesahkan,
Submit {0} documents?,Hantar {0} dokumen?,
Submiting {0},Menghantar {0},
Submitting {0},Menghantar {0},
Submitted Document cannot be converted back to draft. Transition row {0},Dokumen yang dihantar tidak boleh ditukar kembali untuk merangka. Berturut-turut peralihan {0},
Submitting,Mengemukakan,
Subscription Notification,Pemberitahuan Langganan,

1 A4 A4
2398 Submit an Issue Hantar Isu
2399 Submit this document to confirm Mengemukakan dokumen ini untuk mengesahkan
2400 Submit {0} documents? Hantar {0} dokumen?
2401 Submiting {0} Submitting {0} Menghantar {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Dokumen yang dihantar tidak boleh ditukar kembali untuk merangka. Berturut-turut peralihan {0}
2403 Submitting Mengemukakan
2404 Subscription Notification Pemberitahuan Langganan

View file

@ -2398,7 +2398,7 @@ Submit after importing,တင်သွင်းပြီးနောက် Submi
Submit an Issue,တစ်ဦး Issue Submit,
Submit this document to confirm,အတည်ပြုဖို့ဤစာရွက်စာတမ်း Submit,
Submit {0} documents?,{0} စာရွက်စာတမ်းများ Submit?,
Submiting {0},Submiting {0},
Submitting {0},Submitting {0},
Submitted Document cannot be converted back to draft. Transition row {0},Submitted Document ဖိုင်ပြန်မူကြမ်းအဖြစ်ပြောင်းလဲမရနိုင်ပါ။ အကူးအပြောင်းအတန်း {0},
Submitting,တင်ပြနေသည်,
Subscription Notification,subscription သတိပေးချက်,

1 A4 A4
2398 Submit an Issue တစ်ဦး Issue Submit
2399 Submit this document to confirm အတည်ပြုဖို့ဤစာရွက်စာတမ်း Submit
2400 Submit {0} documents? {0} စာရွက်စာတမ်းများ Submit?
2401 Submiting {0} Submitting {0} Submiting {0} Submitting {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Submitted Document ဖိုင်ပြန်မူကြမ်းအဖြစ်ပြောင်းလဲမရနိုင်ပါ။ အကူးအပြောင်းအတန်း {0}
2403 Submitting တင်ပြနေသည်
2404 Subscription Notification subscription သတိပေးချက်

View file

@ -2398,7 +2398,7 @@ Submit after importing,Verzenden na importeren,
Submit an Issue,Dien een Issue in,
Submit this document to confirm,Verzend dit document om te bevestigen,
Submit {0} documents?,{0} documenten verzenden?,
Submiting {0},{0} indienen,
Submitting {0},{0} indienen,
Submitted Document cannot be converted back to draft. Transition row {0},Ingediend Document kan niet teruggezet worden naar Draft. Transitie rij {0},
Submitting,Indienen,
Subscription Notification,Abonnementsmelding,

1 A4 A4
2398 Submit an Issue Dien een Issue in
2399 Submit this document to confirm Verzend dit document om te bevestigen
2400 Submit {0} documents? {0} documenten verzenden?
2401 Submiting {0} Submitting {0} {0} indienen
2402 Submitted Document cannot be converted back to draft. Transition row {0} Ingediend Document kan niet teruggezet worden naar Draft. Transitie rij {0}
2403 Submitting Indienen
2404 Subscription Notification Abonnementsmelding

View file

@ -2398,7 +2398,7 @@ Submit after importing,Send etter import,
Submit an Issue,Send inn et problem,
Submit this document to confirm,Send dette dokumentet for å bekrefte,
Submit {0} documents?,Send {0} dokumenter?,
Submiting {0},Innlevering {0},
Submitting {0},Innlevering {0},
Submitted Document cannot be converted back to draft. Transition row {0},Skrevet Dokument kan ikke konverteres tilbake til utkast. Transition rad {0},
Submitting,Sende inn,
Subscription Notification,Abonnementsvarsling,

1 A4 A4
2398 Submit an Issue Send inn et problem
2399 Submit this document to confirm Send dette dokumentet for å bekrefte
2400 Submit {0} documents? Send {0} dokumenter?
2401 Submiting {0} Submitting {0} Innlevering {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Skrevet Dokument kan ikke konverteres tilbake til utkast. Transition rad {0}
2403 Submitting Sende inn
2404 Subscription Notification Abonnementsvarsling

View file

@ -2398,7 +2398,7 @@ Submit after importing,Prześlij po zaimportowaniu,
Submit an Issue,Zgłoś problem,
Submit this document to confirm,"Prześlij ten dokument, aby potwierdzić",
Submit {0} documents?,Prześlij dokumenty {0}?,
Submiting {0},Przesyłanie: {0},
Submitting {0},Przesyłanie: {0},
Submitted Document cannot be converted back to draft. Transition row {0},Przedłożony dokument nie może być przekształcony z powrotem na szkic. Przejście wiersz {0},
Submitting,Złożenie,
Subscription Notification,Powiadomienie o subskrypcji,

1 A4 A4
2398 Submit an Issue Zgłoś problem
2399 Submit this document to confirm Prześlij ten dokument, aby potwierdzić
2400 Submit {0} documents? Prześlij dokumenty {0}?
2401 Submiting {0} Submitting {0} Przesyłanie: {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Przedłożony dokument nie może być przekształcony z powrotem na szkic. Przejście wiersz {0}
2403 Submitting Złożenie
2404 Subscription Notification Powiadomienie o subskrypcji

View file

@ -2398,7 +2398,7 @@ Submit after importing,د واردولو وروسته وسپارل,
Submit an Issue,یو Issue سپارل,
Submit this document to confirm,د دې سند سپارل د تایید,
Submit {0} documents?,د {0} اسناد تسلیم کړئ؟,
Submiting {0},تسلیم کول {0},
Submitting {0},تسلیم کول {0},
Submitted Document cannot be converted back to draft. Transition row {0},ته وسپارل سند نه شي بېرته بدل قانون مسوده. د لیږد د قطار {0},
Submitting,ته وسپارل شول,
Subscription Notification,د ګډون سپارل,

1 A4 A4
2398 Submit an Issue یو Issue سپارل
2399 Submit this document to confirm د دې سند سپارل د تایید
2400 Submit {0} documents? د {0} اسناد تسلیم کړئ؟
2401 Submiting {0} Submitting {0} تسلیم کول {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} ته وسپارل سند نه شي بېرته بدل قانون مسوده. د لیږد د قطار {0}
2403 Submitting ته وسپارل شول
2404 Subscription Notification د ګډون سپارل

View file

@ -2398,7 +2398,7 @@ Submit after importing,Enviar depois de importar,
Submit an Issue,Enviar um Incidente,
Submit this document to confirm,Submeter este documento para confirmar,
Submit {0} documents?,Envie {0} documentos?,
Submiting {0},Enviando {0},
Submitting {0},Enviando {0},
Submitted Document cannot be converted back to draft. Transition row {0},Documento apresentado não pode ser convertido de volta para rascunho.,
Submitting,Submeter,
Subscription Notification,Notificação de Subscrição,

1 A4 A4
2398 Submit an Issue Enviar um Incidente
2399 Submit this document to confirm Submeter este documento para confirmar
2400 Submit {0} documents? Envie {0} documentos?
2401 Submiting {0} Submitting {0} Enviando {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Documento apresentado não pode ser convertido de volta para rascunho.
2403 Submitting Submeter
2404 Subscription Notification Notificação de Subscrição

View file

@ -2398,7 +2398,7 @@ Submit after importing,Trimiteți după import,
Submit an Issue,Prezenta eroare,
Submit this document to confirm,Să prezinte acest document pentru a confirma,
Submit {0} documents?,Trimiteți {0} documente?,
Submiting {0},Trimiterea {0},
Submitting {0},Trimiterea {0},
Submitted Document cannot be converted back to draft. Transition row {0},A prezentat documente nu pot fi convertite înapoi să elaboreze. Tranziție rând {0},
Submitting,Inscrierea,
Subscription Notification,Notificare privind abonamentul,

1 A4 A4
2398 Submit an Issue Prezenta eroare
2399 Submit this document to confirm Să prezinte acest document pentru a confirma
2400 Submit {0} documents? Trimiteți {0} documente?
2401 Submiting {0} Submitting {0} Trimiterea {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} A prezentat documente nu pot fi convertite înapoi să elaboreze. Tranziție rând {0}
2403 Submitting Inscrierea
2404 Subscription Notification Notificare privind abonamentul

View file

@ -2398,7 +2398,7 @@ Submit after importing,Отправить после импорта,
Submit an Issue,Отправить вопрос,
Submit this document to confirm,Провести этот документ для подтверждения,
Submit {0} documents?,Отправить {0} документы?,
Submiting {0},Помещение {0},
Submitting {0},Помещение {0},
Submitted Document cannot be converted back to draft. Transition row {0},Проведенный Документ не может быть преобразован обратно в проект. Переходная строка {0},
Submitting,Проведение,
Subscription Notification,Уведомление о подписке,

1 A4 A4
2398 Submit an Issue Отправить вопрос
2399 Submit this document to confirm Провести этот документ для подтверждения
2400 Submit {0} documents? Отправить {0} документы?
2401 Submiting {0} Submitting {0} Помещение {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Проведенный Документ не может быть преобразован обратно в проект. Переходная строка {0}
2403 Submitting Проведение
2404 Subscription Notification Уведомление о подписке

View file

@ -2398,7 +2398,7 @@ Submit after importing,Tanga nyuma yo gutumiza mu mahanga,
Submit an Issue,Tanga ikibazo,
Submit this document to confirm,Tanga iyi nyandiko kugirango wemeze,
Submit {0} documents?,Tanga {0} inyandiko?,
Submiting {0},Kohereza {0},
Submitting {0},Kohereza {0},
Submitted Document cannot be converted back to draft. Transition row {0},Inyandiko yatanzwe ntishobora guhindurwa mugushinga. Umurongo w&#39;inzibacyuho {0},
Submitting,Kohereza,
Subscription Notification,Kumenyesha kwiyandikisha,

1 A4 A4
2398 Submit an Issue Tanga ikibazo
2399 Submit this document to confirm Tanga iyi nyandiko kugirango wemeze
2400 Submit {0} documents? Tanga {0} inyandiko?
2401 Submiting {0} Submitting {0} Kohereza {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Inyandiko yatanzwe ntishobora guhindurwa mugushinga. Umurongo w&#39;inzibacyuho {0}
2403 Submitting Kohereza
2404 Subscription Notification Kumenyesha kwiyandikisha

View file

@ -2398,7 +2398,7 @@ Submit after importing,ආනයනයෙන් පසු ඉදිරිපත
Submit an Issue,ක නිකුත් ඉදිරිපත්,
Submit this document to confirm,තහවුරු කර ගැනීමට මෙම ලේඛනය ඉදිරිපත් කළ,
Submit {0} documents?,ලේඛන {0} ඉදිරිපත් කරන්නද?,
Submiting {0},ඉදිරිපත් කිරීම {0},
Submitting {0},ඉදිරිපත් කිරීම {0},
Submitted Document cannot be converted back to draft. Transition row {0},ඉදිරිපත් ලේඛන නැවත කෙටුම්පත් පරිවර්තනය කළ නොහැක. සංක්රමණය පේළිය {0},
Submitting,ඉදිරිපත්,
Subscription Notification,දායකත්ව දැනුම්දීම,

1 A4 A4 ප්රමාණයේ
2398 Submit an Issue ක නිකුත් ඉදිරිපත්
2399 Submit this document to confirm තහවුරු කර ගැනීමට මෙම ලේඛනය ඉදිරිපත් කළ
2400 Submit {0} documents? ලේඛන {0} ඉදිරිපත් කරන්නද?
2401 Submiting {0} Submitting {0} ඉදිරිපත් කිරීම {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} ඉදිරිපත් ලේඛන නැවත කෙටුම්පත් පරිවර්තනය කළ නොහැක. සංක්රමණය පේළිය {0}
2403 Submitting ඉදිරිපත්
2404 Subscription Notification දායකත්ව දැනුම්දීම

View file

@ -2398,7 +2398,7 @@ Submit after importing,Odoslať po importovaní,
Submit an Issue,Vložit případ podpory,
Submit this document to confirm,Predloží dokument potvrdiť,
Submit {0} documents?,Odoslať {0} dokumenty?,
Submiting {0},Odoslanie {0},
Submitting {0},Odoslanie {0},
Submitted Document cannot be converted back to draft. Transition row {0},Potvrdený dokument nemôže byť zvrátený na stav rozpracovania. Riadok transakcie {0},
Submitting,Potvrdzované,
Subscription Notification,Upozornenie na odber,

1 A4 A4
2398 Submit an Issue Vložit případ podpory
2399 Submit this document to confirm Predloží dokument potvrdiť
2400 Submit {0} documents? Odoslať {0} dokumenty?
2401 Submiting {0} Submitting {0} Odoslanie {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Potvrdený dokument nemôže byť zvrátený na stav rozpracovania. Riadok transakcie {0}
2403 Submitting Potvrdzované
2404 Subscription Notification Upozornenie na odber

View file

@ -2398,7 +2398,7 @@ Submit after importing,Po uvozu pošljite,
Submit an Issue,Predloži vprašanje,
Submit this document to confirm,Predloži ta dokument za potrditev,
Submit {0} documents?,Pošljite {0} dokumente?,
Submiting {0},Pošiljanje {0},
Submitting {0},Pošiljanje {0},
Submitted Document cannot be converted back to draft. Transition row {0},Predložena listina ni mogoče pretvoriti nazaj v osnutek. Prehod vrstica {0},
Submitting,Pošiljanje,
Subscription Notification,Obvestilo o naročnini,

1 A4 A4
2398 Submit an Issue Predloži vprašanje
2399 Submit this document to confirm Predloži ta dokument za potrditev
2400 Submit {0} documents? Pošljite {0} dokumente?
2401 Submiting {0} Submitting {0} Pošiljanje {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Predložena listina ni mogoče pretvoriti nazaj v osnutek. Prehod vrstica {0}
2403 Submitting Pošiljanje
2404 Subscription Notification Obvestilo o naročnini

View file

@ -2398,7 +2398,7 @@ Submit after importing,Dërgo pas importimit,
Submit an Issue,Submit një çështje,
Submit this document to confirm,Submit këtë dokument për të konfirmuar,
Submit {0} documents?,Dërgoni {0} dokumente?,
Submiting {0},Dërgimi i {0},
Submitting {0},Dërgimi i {0},
Submitted Document cannot be converted back to draft. Transition row {0},Dokumenti i paraqitur nuk mund të kthehet përsëri për të hartuar. Rresht Tranzicioni {0},
Submitting,Dorëzimi,
Subscription Notification,Njoftimi i abonimit,

1 A4 A4
2398 Submit an Issue Submit një çështje
2399 Submit this document to confirm Submit këtë dokument për të konfirmuar
2400 Submit {0} documents? Dërgoni {0} dokumente?
2401 Submiting {0} Submitting {0} Dërgimi i {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Dokumenti i paraqitur nuk mund të kthehet përsëri për të hartuar. Rresht Tranzicioni {0}
2403 Submitting Dorëzimi
2404 Subscription Notification Njoftimi i abonimit

View file

@ -2398,7 +2398,7 @@ Submit after importing,Пошаљи после увоза,
Submit an Issue,Представьте о проблеме,
Submit this document to confirm,Достави овај документ да потврди,
Submit {0} documents?,Пошаљи {0} документе?,
Submiting {0},Пошаљи {0},
Submitting {0},Пошаљи {0},
Submitted Document cannot be converted back to draft. Transition row {0},Поднет документ не може да се конвертује у изради .,
Submitting,Подношење,
Subscription Notification,Обавештење о претплати,

1 A4 А4
2398 Submit an Issue Представьте о проблеме
2399 Submit this document to confirm Достави овај документ да потврди
2400 Submit {0} documents? Пошаљи {0} документе?
2401 Submiting {0} Submitting {0} Пошаљи {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Поднет документ не може да се конвертује у изради .
2403 Submitting Подношење
2404 Subscription Notification Обавештење о претплати

View file

@ -2398,7 +2398,7 @@ Submit after importing,Skicka efter import,
Submit an Issue,Skicka en händelse,
Submit this document to confirm,Skicka det här dokumentet för att bekräfta,
Submit {0} documents?,Skicka {0} dokument?,
Submiting {0},Inlämning {0},
Submitting {0},Inlämning {0},
Submitted Document cannot be converted back to draft. Transition row {0},Inskickat dokument kan inte konverteras tillbaka till utkast. Övergångs raden {0},
Submitting,Lämna in,
Subscription Notification,Anmälan om anmälan,

1 A4 A4
2398 Submit an Issue Skicka en händelse
2399 Submit this document to confirm Skicka det här dokumentet för att bekräfta
2400 Submit {0} documents? Skicka {0} dokument?
2401 Submiting {0} Submitting {0} Inlämning {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Inskickat dokument kan inte konverteras tillbaka till utkast. Övergångs raden {0}
2403 Submitting Lämna in
2404 Subscription Notification Anmälan om anmälan

View file

@ -2398,7 +2398,7 @@ Submit after importing,Tuma baada ya kuagiza,
Submit an Issue,Tuma Suala,
Submit this document to confirm,Tuma hati hii ili kuthibitisha,
Submit {0} documents?,Wasilisha {0} nyaraka?,
Submiting {0},Kuwasilisha {0},
Submitting {0},Kuwasilisha {0},
Submitted Document cannot be converted back to draft. Transition row {0},Hati iliyotumwa haiwezi kubadilishwa kwenye rasimu. Mstari wa mpito {0},
Submitting,Kuwasilisha,
Subscription Notification,Arifa ya Usajili,

1 A4 A4
2398 Submit an Issue Tuma Suala
2399 Submit this document to confirm Tuma hati hii ili kuthibitisha
2400 Submit {0} documents? Wasilisha {0} nyaraka?
2401 Submiting {0} Submitting {0} Kuwasilisha {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Hati iliyotumwa haiwezi kubadilishwa kwenye rasimu. Mstari wa mpito {0}
2403 Submitting Kuwasilisha
2404 Subscription Notification Arifa ya Usajili

View file

@ -2398,7 +2398,7 @@ Submit after importing,இறக்குமதி செய்த பின்
Submit an Issue,ஒரு Issue சமர்ப்பிக்கவும்,
Submit this document to confirm,உறுதிப்படுத்த இந்த ஆவணம் சமர்ப்பிக்க,
Submit {0} documents?,ஆவணங்களை {0} சமர்ப்பிக்கவா?,
Submiting {0},சமர்ப்பித்தல் {0},
Submitting {0},சமர்ப்பித்தல் {0},
Submitted Document cannot be converted back to draft. Transition row {0},இந்த ஆவணத்தின் வரைவு மீண்டும் மாற்ற முடியாது .,
Submitting,சமர்ப்பிக்கும்,
Subscription Notification,சந்தா அறிவிப்பு,

1 A4 ஏ 4
2398 Submit an Issue ஒரு Issue சமர்ப்பிக்கவும்
2399 Submit this document to confirm உறுதிப்படுத்த இந்த ஆவணம் சமர்ப்பிக்க
2400 Submit {0} documents? ஆவணங்களை {0} சமர்ப்பிக்கவா?
2401 Submiting {0} Submitting {0} சமர்ப்பித்தல் {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} இந்த ஆவணத்தின் வரைவு மீண்டும் மாற்ற முடியாது .
2403 Submitting சமர்ப்பிக்கும்
2404 Subscription Notification சந்தா அறிவிப்பு

View file

@ -2398,7 +2398,7 @@ Submit after importing,దిగుమతి చేసిన తర్వాత
Submit an Issue,ఒక ఇష్యూ సమర్పించండి,
Submit this document to confirm,నిర్ధారించుకోవటానికి ఈ పత్రాన్ని సమర్పించి,
Submit {0} documents?,{0} పత్రాలను సమర్పించాలా?,
Submiting {0},సమర్పణ {0},
Submitting {0},సమర్పణ {0},
Submitted Document cannot be converted back to draft. Transition row {0},Submitted డాక్యుమెంట్ ముసాయిదా తిరిగి మార్చాల్సిన సాధ్యం కాదు. ట్రాన్సిషన్ వరుసగా {0},
Submitting,సమర్పిస్తోంది,
Subscription Notification,సబ్స్క్రిప్షన్ నోటిఫికేషన్,

1 A4 A4
2398 Submit an Issue ఒక ఇష్యూ సమర్పించండి
2399 Submit this document to confirm నిర్ధారించుకోవటానికి ఈ పత్రాన్ని సమర్పించి
2400 Submit {0} documents? {0} పత్రాలను సమర్పించాలా?
2401 Submiting {0} Submitting {0} సమర్పణ {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Submitted డాక్యుమెంట్ ముసాయిదా తిరిగి మార్చాల్సిన సాధ్యం కాదు. ట్రాన్సిషన్ వరుసగా {0}
2403 Submitting సమర్పిస్తోంది
2404 Subscription Notification సబ్స్క్రిప్షన్ నోటిఫికేషన్

View file

@ -2398,7 +2398,7 @@ Submit after importing,ส่งหลังจากการนำเข้า
Submit an Issue,ส่ง ออก,
Submit this document to confirm,ส่งเอกสารนี้เพื่อยืนยัน,
Submit {0} documents?,ส่ง {0} เอกสาร?,
Submiting {0},การส่ง {0},
Submitting {0},การส่ง {0},
Submitted Document cannot be converted back to draft. Transition row {0},ส่ง เอกสาร ไม่สามารถแปลง กลับไปที่ ร่าง,
Submitting,ส่ง,
Subscription Notification,ประกาศการบอกรับเป็นสมาชิก,

1 A4 A4
2398 Submit an Issue ส่ง ออก
2399 Submit this document to confirm ส่งเอกสารนี้เพื่อยืนยัน
2400 Submit {0} documents? ส่ง {0} เอกสาร?
2401 Submiting {0} Submitting {0} การส่ง {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} ส่ง เอกสาร ไม่สามารถแปลง กลับไปที่ ร่าง
2403 Submitting ส่ง
2404 Subscription Notification ประกาศการบอกรับเป็นสมาชิก

View file

@ -2398,7 +2398,7 @@ Submit after importing,İçe aktarmadan sonra gönderme,
Submit an Issue,Bir Sorun Gönder,
Submit this document to confirm,onaylamak için bu belge göndermek,
Submit {0} documents?,{0} dokümanı gönderilsin mi?,
Submiting {0},{0} gönderiliyor,
Submitting {0},{0} gönderiliyor,
Submitted Document cannot be converted back to draft. Transition row {0},Ekleyen Belge taslak geri dönüştürülemez. Geçiş satır {0},
Submitting,Tanzim Ediliyor,
Subscription Notification,Abonelik Bildirimi,

1 A4 A4
2398 Submit an Issue Bir Sorun Gönder
2399 Submit this document to confirm onaylamak için bu belge göndermek
2400 Submit {0} documents? {0} dokümanı gönderilsin mi?
2401 Submiting {0} Submitting {0} {0} gönderiliyor
2402 Submitted Document cannot be converted back to draft. Transition row {0} Ekleyen Belge taslak geri dönüştürülemez. Geçiş satır {0}
2403 Submitting Tanzim Ediliyor
2404 Subscription Notification Abonelik Bildirimi

View file

@ -2398,7 +2398,7 @@ Submit after importing,Надіслати після імпортування,
Submit an Issue,Подати поблему,
Submit this document to confirm,Проведіть цей документ для підтвердження,
Submit {0} documents?,Надіслати {0} документи?,
Submiting {0},Надсилання {0},
Submitting {0},Надсилання {0},
Submitted Document cannot be converted back to draft. Transition row {0},Проведений документ не може бути перетворений назад у чернетку. Перехід у рядку {0},
Submitting,Проведення,
Subscription Notification,Сповіщення про підписку,

1 A4 A4
2398 Submit an Issue Подати поблему
2399 Submit this document to confirm Проведіть цей документ для підтвердження
2400 Submit {0} documents? Надіслати {0} документи?
2401 Submiting {0} Submitting {0} Надсилання {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Проведений документ не може бути перетворений назад у чернетку. Перехід у рядку {0}
2403 Submitting Проведення
2404 Subscription Notification Сповіщення про підписку

View file

@ -2398,7 +2398,7 @@ Submit after importing,درآمد کرنے کے بعد جمع کروائیں,
Submit an Issue,ایک مسئلہ جمع کرائیں,
Submit this document to confirm,تصدیق کے لئے اس دستاویز جمع کرائیں,
Submit {0} documents?,دستاویزات {0} جمع کروائیں؟,
Submiting {0},{0} جمع کرائیں,
Submitting {0},{0} جمع کرائیں,
Submitted Document cannot be converted back to draft. Transition row {0},پیش دستاویز کا مسودہ تیار کرنے کے لئے واپس تبدیل نہیں کیا جا سکتا. منتقلی صف {0},
Submitting,جمع,
Subscription Notification,سبسکرپشن کی اطلاع,

1 A4 A4
2398 Submit an Issue ایک مسئلہ جمع کرائیں
2399 Submit this document to confirm تصدیق کے لئے اس دستاویز جمع کرائیں
2400 Submit {0} documents? دستاویزات {0} جمع کروائیں؟
2401 Submiting {0} Submitting {0} {0} جمع کرائیں
2402 Submitted Document cannot be converted back to draft. Transition row {0} پیش دستاویز کا مسودہ تیار کرنے کے لئے واپس تبدیل نہیں کیا جا سکتا. منتقلی صف {0}
2403 Submitting جمع
2404 Subscription Notification سبسکرپشن کی اطلاع

View file

@ -2398,7 +2398,7 @@ Submit after importing,Importdan so&#39;ng yuboring,
Submit an Issue,Muammo berish,
Submit this document to confirm,Tasdiqlash uchun ushbu hujjatni yuboring,
Submit {0} documents?,{0} hujjatlarni yuborish kerakmi?,
Submiting {0},{0},
Submitting {0},{0},
Submitted Document cannot be converted back to draft. Transition row {0},Yuborilgan hujjat taslakga o&#39;tkazilmaydi. O&#39;tish satri {0},
Submitting,Yuborish,
Subscription Notification,Obuna bildirishnomasi,

1 A4 A4
2398 Submit an Issue Muammo berish
2399 Submit this document to confirm Tasdiqlash uchun ushbu hujjatni yuboring
2400 Submit {0} documents? {0} hujjatlarni yuborish kerakmi?
2401 Submiting {0} Submitting {0} {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Yuborilgan hujjat taslakga o&#39;tkazilmaydi. O&#39;tish satri {0}
2403 Submitting Yuborish
2404 Subscription Notification Obuna bildirishnomasi

View file

@ -2398,7 +2398,7 @@ Submit after importing,Gửi sau khi nhập,
Submit an Issue,Nộp cho quản trị,
Submit this document to confirm,Gửi tài liệu này để xác nhận,
Submit {0} documents?,Gửi {0} tài liệu?,
Submiting {0},Gửi {0},
Submitting {0},Gửi {0},
Submitted Document cannot be converted back to draft. Transition row {0},Tài liệu gửi không thể được chuyển đổi trở lại dự thảo. Hàng chuyển {0},
Submitting,Trình,
Subscription Notification,Thông báo đăng ký,

1 A4 A4
2398 Submit an Issue Nộp cho quản trị
2399 Submit this document to confirm Gửi tài liệu này để xác nhận
2400 Submit {0} documents? Gửi {0} tài liệu?
2401 Submiting {0} Submitting {0} Gửi {0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} Tài liệu gửi không thể được chuyển đổi trở lại dự thảo. Hàng chuyển {0}
2403 Submitting Trình
2404 Subscription Notification Thông báo đăng ký

View file

@ -2398,7 +2398,7 @@ Submit after importing,导入后提交,
Submit an Issue,提交问题,
Submit this document to confirm,提交该文件以确认,
Submit {0} documents?,提交{0}文件?,
Submiting {0},正在提交{0},
Submitting {0},正在提交{0},
Submitted Document cannot be converted back to draft. Transition row {0},行{0}中的已提交的文档不能转换为草稿。,
Submitting,提交,
Subscription Notification,订阅通知,

1 A4 A4
2398 Submit an Issue 提交问题
2399 Submit this document to confirm 提交该文件以确认
2400 Submit {0} documents? 提交{0}文件?
2401 Submiting {0} Submitting {0} 正在提交{0}
2402 Submitted Document cannot be converted back to draft. Transition row {0} 行{0}中的已提交的文档不能转换为草稿。
2403 Submitting 提交
2404 Subscription Notification 订阅通知

View file

@ -2186,7 +2186,7 @@ Subject Field,主題字段,
Submit after importing,導入後提交,
Submit an Issue,提交問題,
Submit this document to confirm,提交該文件以確認,
Submiting {0},提交{0},
Submitting {0},提交{0},
Submitted Document cannot be converted back to draft. Transition row {0},提交的文件不能被轉換回起草。,
Subscription Notification,訂閱通知,
Subsidiary,,

1 API Endpoint API端點
2186 Submit after importing 導入後提交
2187 Submit an Issue 提交問題
2188 Submit this document to confirm 提交該文件以確認
2189 Submiting {0} Submitting {0} 提交{0}
2190 Submitted Document cannot be converted back to draft. Transition row {0} 提交的文件不能被轉換回起草。
2191 Subscription Notification 訂閱通知
2192 Subsidiary

View file

@ -56,8 +56,10 @@ def safe_exec(script, _globals=None, _locals=None, restrict_commit_rollback=Fals
exec_globals.update(_globals)
if restrict_commit_rollback:
# prevent user from using these in docevents
exec_globals.frappe.db.pop("commit", None)
exec_globals.frappe.db.pop("rollback", None)
exec_globals.frappe.db.pop("add_index", None)
# execute script compiled by RestrictedPython
frappe.flags.in_safe_exec = True
@ -155,6 +157,7 @@ def get_safe_globals():
sql=read_sql,
commit=frappe.db.commit,
rollback=frappe.db.rollback,
add_index=frappe.db.add_index,
),
),
FrappeClient=FrappeClient,

View file

@ -85,7 +85,7 @@ frappe.boot = {
system: "{{ frappe.utils.get_time_zone() }}",
user: "{{ frappe.db.get_value('User', frappe.session.user, 'time_zone') or frappe.utils.get_time_zone() }}"
},
link_title_doctypes: `{{ frappe.call('frappe.boot.get_link_title_doctypes') }}`
link_title_doctypes: {{ link_title_doctypes }}
};
// for backward compatibility of some libs
frappe.sys_defaults = frappe.boot.sysdefaults;

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