Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[4948][ADD] sale_automatic_workflow #20

Merged
merged 1 commit into from
Feb 12, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
117 changes: 117 additions & 0 deletions sale_automatic_workflow/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
=======================
Sale Automatic Workflow
=======================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:71fbe068284afd1d022428fafbae6726822dfb19f6eb06c8c38b0a45e28c599f
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fsale--workflow-lightgray.png?logo=github
:target: https://github.com/OCA/sale-workflow/tree/16.0/sale_automatic_workflow
:alt: OCA/sale-workflow
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/sale-workflow-16-0/sale-workflow-16-0-sale_automatic_workflow
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/sale-workflow&target_branch=16.0
:alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|

Create workflows with more or less automatization and apply it on sales
orders.

A workflow can:

- Apply default values:

* Shipping Policy (Deliver each product when available or Deliver all products at once)
* Set the invoice's date to the sale order's date
* Set a sales team

- Apply automatic actions:

* Validate the order (only if paid, always, never)
* Send order confirmation mail (only when order confirmed)
* Create an invoice
* Validate the invoice
* Send the invoice via e-mail
* Confirm the picking

This module is used by Magentoerpconnect and Prestashoperpconnect.
It is well suited for other E-Commerce connectors as well.

**Table of contents**

.. contents::
:local:

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/sale-workflow/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/sale-workflow/issues/new?body=module:%20sale_automatic_workflow%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

Do not contact contributors directly about support or help with technical issues.

Credits
=======

Authors
~~~~~~~

* Akretion
* Camptocamp
* Sodexis

Contributors
~~~~~~~~~~~~

* Guewen Baconnier
* Beau Sebastien
* Leonardo Pistone
* Stéphane Bidoul
* Damien Crier
* Alexandre Fayolle
* Sodexis
* Dave Lasley <[email protected]>
* Akim Juillerat <[email protected]>
* Thomas Fossoul <[email protected]>
* Phuc Tran Thanh <[email protected]>
* John Herholz <[email protected]>

Other credits
~~~~~~~~~~~~~

The development of this module has been financially supported by:

* Camptocamp

Maintainers
~~~~~~~~~~~

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

This module is part of the `OCA/sale-workflow <https://github.com/OCA/sale-workflow/tree/16.0/sale_automatic_workflow>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
1 change: 1 addition & 0 deletions sale_automatic_workflow/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
24 changes: 24 additions & 0 deletions sale_automatic_workflow/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Copyright 2011 Akretion Sébastien BEAU <[email protected]>
# Copyright 2013 Camptocamp SA (author: Guewen Baconnier)
# Copyright 2016 Sodexis
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

{
"name": "Sale Automatic Workflow",
"version": "16.0.1.1.1",
"category": "Sales Management",
"license": "AGPL-3",
"author": "Akretion, "
"Camptocamp, "
"Sodexis, "
"Odoo Community Association (OCA)",
"website": "https://github.com/OCA/sale-workflow",
"depends": ["sale_stock", "sales_team"],
"data": [
"security/ir.model.access.csv",
"views/sale_view.xml",
"views/sale_workflow_process_view.xml",
"data/automatic_workflow_data.xml",
],
"installable": True,
}
126 changes: 126 additions & 0 deletions sale_automatic_workflow/data/automatic_workflow_data.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
<?xml version="1.0" encoding="utf-8" ?>
<!--
Copyright (C) 2011 Akretion Sébastien BEAU <[email protected]>
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
-->
<odoo noupdate="1">
<record id="automatic_workflow_order_filter" model="ir.filters">
<field name="name">Automatic Workflow Order Filter</field>
<field name="model_id">sale.order</field>
<field name="domain">[('state', '=', 'draft')]</field>
<field name="user_id" ref="base.user_root" />
</record>
<record id="automatic_workflow_picking_filter" model="ir.filters">
<field name="name">Automatic Workflow Picking Filter</field>
<field name="model_id">stock.picking</field>
<field
name="domain"
>[('state', 'in', ['draft', 'confirmed', 'assigned'])]</field>
<field name="user_id" ref="base.user_root" />
</record>
<record id="automatic_workflow_create_invoice_filter" model="ir.filters">
<field name="name">Automatic Workflow Create Invoice Filter</field>
<field name="model_id">sale.order</field>
<field
name="domain"
>[('state','in',['sale','done']),('invoice_status','=','to invoice')]</field>
<field name="user_id" ref="base.user_root" />
</record>
<record id="automatic_workflow_validate_invoice_filter" model="ir.filters">
<field name="name">Automatic Workflow Validate Invoice Filter</field>
<field name="model_id">account.move</field>
<field
name="domain"
>[('state', '=', 'draft'), ('posted_before', '=', False)]</field>
<field name="user_id" ref="base.user_root" />
</record>
<record id="automatic_workflow_send_invoice_filter" model="ir.filters">
<field name="name">Automatic Workflow Send Invoice Filter</field>
<field name="model_id">account.move</field>
<field
name="domain"
>[('state', '=', 'posted'), ('is_move_sent', '=', False), ('move_type', '=', 'out_invoice')]</field>
<field name="user_id" ref="base.user_root" />
</record>
<record id="automatic_workflow_sale_done_filter" model="ir.filters">
<field name="name">Automatic Workflow Sale Done Filter</field>
<field name="model_id">sale.order</field>
<field
name="domain"
>[('state', '=', 'sale'),('invoice_status','=','invoiced')]</field>
<field name="user_id" ref="base.user_root" />
</record>
<record id="automatic_workflow_payment_filter" model="ir.filters">
<field name="name">Automatic Workflow Payment Filter</field>
<field name="model_id">account.move</field>
<field
name="domain"
>[('state', '=', 'posted'), ('move_type', '=', 'out_invoice'), ('payment_state','!=','paid')]</field>
<field name="user_id" ref="base.user_root" />
</record>
<record id="automatic_validation" model="sale.workflow.process">
<field name="name">Automatic</field>
<field name="picking_policy">one</field>
<field name="validate_order" eval="1" />
<field name="send_order_confirmation_mail" eval="1" />
<field name="order_filter_id" eval="automatic_workflow_order_filter" />
<field name="create_invoice" eval="1" />
<field
name="create_invoice_filter_id"
eval="automatic_workflow_create_invoice_filter"
/>
<field name="validate_invoice" eval="1" />
<field
name="validate_invoice_filter_id"
eval="automatic_workflow_validate_invoice_filter"
/>
<field name="send_invoice" eval="1" />
<field
name="send_invoice_filter_id"
eval="automatic_workflow_send_invoice_filter"
/>
<field name="invoice_date_is_order_date" eval="0" />
<field name="validate_picking" eval="0" />
<field name="picking_filter_id" eval="automatic_workflow_picking_filter" />
<field name="sale_done" eval="0" />
<field name="sale_done_filter_id" eval="automatic_workflow_sale_done_filter" />
<field name="register_payment" eval="0" />
<field name="payment_filter_id" ref="automatic_workflow_payment_filter" />
<field
name="warning"
>Be careful, if you save the order with this setting, it could be auto-confirmed, even if you are editing it.</field>
</record>
<record id="manual_validation" model="sale.workflow.process">
<field name="name">Manual</field>
<field name="picking_policy">one</field>
<field name="validate_order" eval="0" />
<field name="validate_invoice" eval="0" />
<field name="invoice_date_is_order_date" eval="0" />
<field name="validate_picking" eval="0" />
<field name="order_filter_id" eval="automatic_workflow_order_filter" />
<field
name="create_invoice_filter_id"
eval="automatic_workflow_create_invoice_filter"
/>
<field
name="validate_invoice_filter_id"
eval="automatic_workflow_validate_invoice_filter"
/>
<field name="picking_filter_id" eval="automatic_workflow_picking_filter" />
<field name="sale_done_filter_id" eval="automatic_workflow_sale_done_filter" />
<field name="register_payment" eval="0" />
<field name="payment_filter_id" ref="automatic_workflow_payment_filter" />
</record>
<record forcecreate="True" id="ir_cron_automatic_workflow_job" model="ir.cron">
<field name="name">Automatic Workflow Job</field>
<field ref="model_automatic_workflow_job" name="model_id" />
<field name="state">code</field>
<field name="code">model.run()</field>
<field eval="True" name="active" />
<field name="user_id" ref="base.user_root" />
<field name="interval_number">1</field>
<field name="interval_type">minutes</field>
<field name="numbercall">-1</field>
<field eval="False" name="doall" />
</record>
</odoo>
341 changes: 341 additions & 0 deletions sale_automatic_workflow/i18n/am.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,341 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_automatic_workflow
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-10 02:47+0000\n"
"PO-Revision-Date: 2016-09-10 02:47+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n"
"Language: am\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
msgid "All quantities delivered"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Automatic Workflow"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job
msgid "Automatic Workflow Job"
msgstr ""

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form
msgid "Automation Information"
msgstr ""

#. module: sale_automatic_workflow
#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation
msgid ""
"Be careful, if you save the order with this setting, it could be auto-"
"confirmed, even if you are editing it."
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking
msgid "Confirm and Transfer Picking"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice
msgid "Create Invoice"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id
msgid "Create Invoice Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain
msgid "Create Invoice Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid
msgid "Created by"
msgstr "Creado por"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date
msgid "Created on"
msgstr "Creado en"

#. module: sale_automatic_workflow
#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one
msgid "Deliver all products at once"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct
msgid "Deliver each product when available"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name
msgid "Display Name"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain
msgid "Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date
msgid "Force Invoice Date"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id
msgid "ID"
msgstr "ID"

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning
msgid ""
"If set, displays the message when an userselects the process on a sale order"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery
msgid ""
"If this box is checked, when the first invoice is created The service sale "
"order lines will be included and will be marked as delivered"
msgstr ""

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Invoice Options"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery
msgid "Invoice Service on delivery"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_account_move
msgid "Journal Entry"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update
msgid "Last Modified on"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Última actualización por"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date
msgid "Last Updated on"
msgstr "Última actualización en"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr ""

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Order Configuration"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id
msgid "Order Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain
msgid "Order Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id
msgid "Picking Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain
msgid "Picking Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment
msgid "Register Payment"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id
msgid "Register Payment Invoice Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done
msgid "Sale Done"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id
msgid "Sale Done Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain
msgid "Sale Done Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id
msgid "Sale Workflow Process"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
msgid "Sales Journal"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_sale_order
msgid "Sales Order"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id
msgid "Sales Team"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job
msgid ""
"Scheduler that will play automatically the validation of invoices, "
"pickings..."
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice
msgid "Send Invoice"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id
msgid "Send Invoice Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain
msgid "Send Invoice Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail
msgid "Send Order Confirmation Mail"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
msgid "Set default journal to use on invoice"
msgstr ""

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Set selection based on a search filter:"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy
msgid "Shipping Policy"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_stock_move
msgid "Stock Move"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_stock_picking
msgid "Transfer"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice
msgid "Validate Invoice"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id
msgid "Validate Invoice Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain
msgid "Validate Invoice Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order
msgid "Validate Order"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning
msgid "Warning Message"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail
msgid ""
"When checked, after order confirmation, a confirmation email will be sent "
"(if not already sent)."
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date
msgid "When checked, the invoice date will be the same than the order's date"
msgstr ""

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Workflow Options"
msgstr ""

#. module: sale_automatic_workflow
#. odoo-python
#: code:addons/sale_automatic_workflow/models/sale_order.py:0
#, python-format
msgid "Workflow Warning"
msgstr ""
345 changes: 345 additions & 0 deletions sale_automatic_workflow/i18n/ar.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,345 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_automatic_workflow
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-31 01:43+0000\n"
"PO-Revision-Date: 2016-12-31 01:43+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n"
"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
msgid "All quantities delivered"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Automatic Workflow"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job
msgid "Automatic Workflow Job"
msgstr ""

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form
msgid "Automation Information"
msgstr ""

#. module: sale_automatic_workflow
#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation
msgid ""
"Be careful, if you save the order with this setting, it could be auto-"
"confirmed, even if you are editing it."
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking
msgid "Confirm and Transfer Picking"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice
msgid "Create Invoice"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id
msgid "Create Invoice Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain
msgid "Create Invoice Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid
msgid "Created by"
msgstr "أنشئ بواسطة"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date
msgid "Created on"
msgstr "أنشئ في"

#. module: sale_automatic_workflow
#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one
msgid "Deliver all products at once"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct
msgid "Deliver each product when available"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name
msgid "Display Name"
msgstr "اسم العرض"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain
msgid "Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date
msgid "Force Invoice Date"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id
msgid "ID"
msgstr "المعرف"

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning
msgid ""
"If set, displays the message when an userselects the process on a sale order"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery
msgid ""
"If this box is checked, when the first invoice is created The service sale "
"order lines will be included and will be marked as delivered"
msgstr ""

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Invoice Options"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery
msgid "Invoice Service on delivery"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_account_move
msgid "Journal Entry"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update
msgid "Last Modified on"
msgstr "آخر تعديل في"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "آخر تحديث بواسطة"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date
msgid "Last Updated on"
msgstr "آخر تحديث في"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "الاسم"

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Order Configuration"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id
msgid "Order Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain
msgid "Order Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id
msgid "Picking Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain
msgid "Picking Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment
msgid "Register Payment"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id
msgid "Register Payment Invoice Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done
msgid "Sale Done"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id
msgid "Sale Done Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain
msgid "Sale Done Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id
msgid "Sale Workflow Process"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
msgid "Sales Journal"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_sale_order
msgid "Sales Order"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id
msgid "Sales Team"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job
msgid ""
"Scheduler that will play automatically the validation of invoices, "
"pickings..."
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice
msgid "Send Invoice"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id
msgid "Send Invoice Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain
msgid "Send Invoice Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail
msgid "Send Order Confirmation Mail"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
msgid "Set default journal to use on invoice"
msgstr ""

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Set selection based on a search filter:"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy
msgid "Shipping Policy"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_stock_move
msgid "Stock Move"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_stock_picking
msgid "Transfer"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice
msgid "Validate Invoice"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id
msgid "Validate Invoice Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain
msgid "Validate Invoice Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order
msgid "Validate Order"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning
msgid "Warning Message"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail
msgid ""
"When checked, after order confirmation, a confirmation email will be sent "
"(if not already sent)."
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date
msgid "When checked, the invoice date will be the same than the order's date"
msgstr ""

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Workflow Options"
msgstr ""

#. module: sale_automatic_workflow
#. odoo-python
#: code:addons/sale_automatic_workflow/models/sale_order.py:0
#, python-format
msgid "Workflow Warning"
msgstr ""

#~ msgid "Invoice"
#~ msgstr "فاتورة"
344 changes: 344 additions & 0 deletions sale_automatic_workflow/i18n/bg.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,344 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_automatic_workflow
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-11-23 01:51+0000\n"
"PO-Revision-Date: 2017-11-23 01:51+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
msgid "All quantities delivered"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Automatic Workflow"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job
msgid "Automatic Workflow Job"
msgstr ""

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form
msgid "Automation Information"
msgstr ""

#. module: sale_automatic_workflow
#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation
msgid ""
"Be careful, if you save the order with this setting, it could be auto-"
"confirmed, even if you are editing it."
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking
msgid "Confirm and Transfer Picking"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice
msgid "Create Invoice"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id
msgid "Create Invoice Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain
msgid "Create Invoice Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid
msgid "Created by"
msgstr "Създадено от"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date
msgid "Created on"
msgstr "Създадено на"

#. module: sale_automatic_workflow
#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one
msgid "Deliver all products at once"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct
msgid "Deliver each product when available"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name
msgid "Display Name"
msgstr "Име за показване"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain
msgid "Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date
msgid "Force Invoice Date"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id
msgid "ID"
msgstr "ID"

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning
msgid ""
"If set, displays the message when an userselects the process on a sale order"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery
msgid ""
"If this box is checked, when the first invoice is created The service sale "
"order lines will be included and will be marked as delivered"
msgstr ""

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Invoice Options"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery
msgid "Invoice Service on delivery"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_account_move
msgid "Journal Entry"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update
msgid "Last Modified on"
msgstr "Последно променено на"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Последно обновено от"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date
msgid "Last Updated on"
msgstr "Последно обновено на"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Име"

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Order Configuration"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id
msgid "Order Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain
msgid "Order Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id
msgid "Picking Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain
msgid "Picking Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment
msgid "Register Payment"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id
msgid "Register Payment Invoice Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done
msgid "Sale Done"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id
msgid "Sale Done Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain
msgid "Sale Done Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id
msgid "Sale Workflow Process"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
msgid "Sales Journal"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_sale_order
msgid "Sales Order"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id
msgid "Sales Team"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job
msgid ""
"Scheduler that will play automatically the validation of invoices, "
"pickings..."
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice
msgid "Send Invoice"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id
msgid "Send Invoice Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain
msgid "Send Invoice Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail
msgid "Send Order Confirmation Mail"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
msgid "Set default journal to use on invoice"
msgstr ""

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Set selection based on a search filter:"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy
msgid "Shipping Policy"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_stock_move
msgid "Stock Move"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_stock_picking
msgid "Transfer"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice
msgid "Validate Invoice"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id
msgid "Validate Invoice Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain
msgid "Validate Invoice Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order
msgid "Validate Order"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning
msgid "Warning Message"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail
msgid ""
"When checked, after order confirmation, a confirmation email will be sent "
"(if not already sent)."
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date
msgid "When checked, the invoice date will be the same than the order's date"
msgstr ""

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Workflow Options"
msgstr ""

#. module: sale_automatic_workflow
#. odoo-python
#: code:addons/sale_automatic_workflow/models/sale_order.py:0
#, python-format
msgid "Workflow Warning"
msgstr ""

#~ msgid "Invoice"
#~ msgstr "Фактура"
345 changes: 345 additions & 0 deletions sale_automatic_workflow/i18n/bs.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,345 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_automatic_workflow
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-31 01:43+0000\n"
"PO-Revision-Date: 2016-12-31 01:43+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n"
"Language: bs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
msgid "All quantities delivered"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Automatic Workflow"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job
msgid "Automatic Workflow Job"
msgstr ""

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form
msgid "Automation Information"
msgstr ""

#. module: sale_automatic_workflow
#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation
msgid ""
"Be careful, if you save the order with this setting, it could be auto-"
"confirmed, even if you are editing it."
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking
msgid "Confirm and Transfer Picking"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice
msgid "Create Invoice"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id
msgid "Create Invoice Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain
msgid "Create Invoice Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid
msgid "Created by"
msgstr "Kreirao"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date
msgid "Created on"
msgstr "Kreirano"

#. module: sale_automatic_workflow
#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one
msgid "Deliver all products at once"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct
msgid "Deliver each product when available"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name
msgid "Display Name"
msgstr "Prikaži naziv"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain
msgid "Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date
msgid "Force Invoice Date"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id
msgid "ID"
msgstr "ID"

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning
msgid ""
"If set, displays the message when an userselects the process on a sale order"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery
msgid ""
"If this box is checked, when the first invoice is created The service sale "
"order lines will be included and will be marked as delivered"
msgstr ""

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Invoice Options"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery
msgid "Invoice Service on delivery"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_account_move
msgid "Journal Entry"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update
msgid "Last Modified on"
msgstr "Zadnje mijenjano"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Zadnji ažurirao"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date
msgid "Last Updated on"
msgstr "Zadnje ažurirano"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Ime"

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Order Configuration"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id
msgid "Order Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain
msgid "Order Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id
msgid "Picking Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain
msgid "Picking Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment
msgid "Register Payment"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id
msgid "Register Payment Invoice Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done
msgid "Sale Done"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id
msgid "Sale Done Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain
msgid "Sale Done Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id
msgid "Sale Workflow Process"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
msgid "Sales Journal"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_sale_order
msgid "Sales Order"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id
msgid "Sales Team"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job
msgid ""
"Scheduler that will play automatically the validation of invoices, "
"pickings..."
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice
msgid "Send Invoice"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id
msgid "Send Invoice Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain
msgid "Send Invoice Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail
msgid "Send Order Confirmation Mail"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
msgid "Set default journal to use on invoice"
msgstr ""

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Set selection based on a search filter:"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy
msgid "Shipping Policy"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_stock_move
msgid "Stock Move"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_stock_picking
msgid "Transfer"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice
msgid "Validate Invoice"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id
msgid "Validate Invoice Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain
msgid "Validate Invoice Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order
msgid "Validate Order"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning
msgid "Warning Message"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail
msgid ""
"When checked, after order confirmation, a confirmation email will be sent "
"(if not already sent)."
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date
msgid "When checked, the invoice date will be the same than the order's date"
msgstr ""

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Workflow Options"
msgstr ""

#. module: sale_automatic_workflow
#. odoo-python
#: code:addons/sale_automatic_workflow/models/sale_order.py:0
#, python-format
msgid "Workflow Warning"
msgstr ""

#~ msgid "Invoice"
#~ msgstr "Faktura"
372 changes: 372 additions & 0 deletions sale_automatic_workflow/i18n/ca.po

Large diffs are not rendered by default.

345 changes: 345 additions & 0 deletions sale_automatic_workflow/i18n/ca_ES.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,345 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_automatic_workflow
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 11.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-03-02 10:22+0000\n"
"PO-Revision-Date: 2018-03-02 10:22+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
"Language-Team: Catalan (Spain) (https://www.transifex.com/oca/teams/23907/"
"ca_ES/)\n"
"Language: ca_ES\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
msgid "All quantities delivered"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Automatic Workflow"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job
msgid "Automatic Workflow Job"
msgstr ""

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form
msgid "Automation Information"
msgstr ""

#. module: sale_automatic_workflow
#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation
msgid ""
"Be careful, if you save the order with this setting, it could be auto-"
"confirmed, even if you are editing it."
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking
msgid "Confirm and Transfer Picking"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice
msgid "Create Invoice"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id
msgid "Create Invoice Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain
msgid "Create Invoice Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid
msgid "Created by"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date
msgid "Created on"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one
msgid "Deliver all products at once"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct
msgid "Deliver each product when available"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name
msgid "Display Name"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain
msgid "Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date
msgid "Force Invoice Date"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id
msgid "ID"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning
msgid ""
"If set, displays the message when an userselects the process on a sale order"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery
msgid ""
"If this box is checked, when the first invoice is created The service sale "
"order lines will be included and will be marked as delivered"
msgstr ""

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Invoice Options"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery
msgid "Invoice Service on delivery"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_account_move
msgid "Journal Entry"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update
msgid "Last Modified on"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date
msgid "Last Updated on"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr ""

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Order Configuration"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id
msgid "Order Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain
msgid "Order Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id
msgid "Picking Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain
msgid "Picking Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment
msgid "Register Payment"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id
msgid "Register Payment Invoice Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done
msgid "Sale Done"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id
msgid "Sale Done Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain
msgid "Sale Done Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id
msgid "Sale Workflow Process"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
msgid "Sales Journal"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_sale_order
msgid "Sales Order"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id
msgid "Sales Team"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job
msgid ""
"Scheduler that will play automatically the validation of invoices, "
"pickings..."
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice
msgid "Send Invoice"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id
msgid "Send Invoice Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain
msgid "Send Invoice Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail
msgid "Send Order Confirmation Mail"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
msgid "Set default journal to use on invoice"
msgstr ""

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Set selection based on a search filter:"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy
msgid "Shipping Policy"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_stock_move
msgid "Stock Move"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_stock_picking
msgid "Transfer"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice
msgid "Validate Invoice"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id
msgid "Validate Invoice Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain
msgid "Validate Invoice Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order
msgid "Validate Order"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning
msgid "Warning Message"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail
msgid ""
"When checked, after order confirmation, a confirmation email will be sent "
"(if not already sent)."
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date
msgid "When checked, the invoice date will be the same than the order's date"
msgstr ""

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Workflow Options"
msgstr ""

#. module: sale_automatic_workflow
#. odoo-python
#: code:addons/sale_automatic_workflow/models/sale_order.py:0
#, python-format
msgid "Workflow Warning"
msgstr ""

#~ msgid "Quotation"
#~ msgstr "Quotation"
344 changes: 344 additions & 0 deletions sale_automatic_workflow/i18n/cs.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,344 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_automatic_workflow
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-12-31 01:43+0000\n"
"PO-Revision-Date: 2016-12-31 01:43+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
msgid "All quantities delivered"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Automatic Workflow"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job
msgid "Automatic Workflow Job"
msgstr ""

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form
msgid "Automation Information"
msgstr ""

#. module: sale_automatic_workflow
#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation
msgid ""
"Be careful, if you save the order with this setting, it could be auto-"
"confirmed, even if you are editing it."
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking
msgid "Confirm and Transfer Picking"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice
msgid "Create Invoice"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id
msgid "Create Invoice Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain
msgid "Create Invoice Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid
msgid "Created by"
msgstr "Vytvořil(a)"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date
msgid "Created on"
msgstr "Vytvořeno"

#. module: sale_automatic_workflow
#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one
msgid "Deliver all products at once"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct
msgid "Deliver each product when available"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name
msgid "Display Name"
msgstr "Zobrazovaný název"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain
msgid "Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date
msgid "Force Invoice Date"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id
msgid "ID"
msgstr "ID"

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning
msgid ""
"If set, displays the message when an userselects the process on a sale order"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery
msgid ""
"If this box is checked, when the first invoice is created The service sale "
"order lines will be included and will be marked as delivered"
msgstr ""

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Invoice Options"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery
msgid "Invoice Service on delivery"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_account_move
msgid "Journal Entry"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update
msgid "Last Modified on"
msgstr "Naposled upraveno"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Naposled upraveno"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date
msgid "Last Updated on"
msgstr "Naposled upraveno"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Název"

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Order Configuration"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id
msgid "Order Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain
msgid "Order Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id
msgid "Picking Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain
msgid "Picking Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment
msgid "Register Payment"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id
msgid "Register Payment Invoice Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done
msgid "Sale Done"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id
msgid "Sale Done Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain
msgid "Sale Done Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id
msgid "Sale Workflow Process"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
msgid "Sales Journal"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_sale_order
msgid "Sales Order"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id
msgid "Sales Team"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job
msgid ""
"Scheduler that will play automatically the validation of invoices, "
"pickings..."
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice
msgid "Send Invoice"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id
msgid "Send Invoice Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain
msgid "Send Invoice Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail
msgid "Send Order Confirmation Mail"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
msgid "Set default journal to use on invoice"
msgstr ""

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Set selection based on a search filter:"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy
msgid "Shipping Policy"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_stock_move
msgid "Stock Move"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_stock_picking
msgid "Transfer"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice
msgid "Validate Invoice"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id
msgid "Validate Invoice Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain
msgid "Validate Invoice Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order
msgid "Validate Order"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning
msgid "Warning Message"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail
msgid ""
"When checked, after order confirmation, a confirmation email will be sent "
"(if not already sent)."
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date
msgid "When checked, the invoice date will be the same than the order's date"
msgstr ""

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Workflow Options"
msgstr ""

#. module: sale_automatic_workflow
#. odoo-python
#: code:addons/sale_automatic_workflow/models/sale_order.py:0
#, python-format
msgid "Workflow Warning"
msgstr ""

#~ msgid "Invoice"
#~ msgstr "Faktura"
341 changes: 341 additions & 0 deletions sale_automatic_workflow/i18n/da.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,341 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_automatic_workflow
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-11-22 23:46+0000\n"
"PO-Revision-Date: 2016-11-22 23:46+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n"
"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
msgid "All quantities delivered"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Automatic Workflow"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job
msgid "Automatic Workflow Job"
msgstr ""

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form
msgid "Automation Information"
msgstr ""

#. module: sale_automatic_workflow
#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation
msgid ""
"Be careful, if you save the order with this setting, it could be auto-"
"confirmed, even if you are editing it."
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking
msgid "Confirm and Transfer Picking"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice
msgid "Create Invoice"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id
msgid "Create Invoice Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain
msgid "Create Invoice Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid
msgid "Created by"
msgstr "Oprettet af"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date
msgid "Created on"
msgstr "Oprettet den"

#. module: sale_automatic_workflow
#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one
msgid "Deliver all products at once"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct
msgid "Deliver each product when available"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name
msgid "Display Name"
msgstr "Vist navn"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain
msgid "Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date
msgid "Force Invoice Date"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id
msgid "ID"
msgstr "Id"

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning
msgid ""
"If set, displays the message when an userselects the process on a sale order"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery
msgid ""
"If this box is checked, when the first invoice is created The service sale "
"order lines will be included and will be marked as delivered"
msgstr ""

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Invoice Options"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery
msgid "Invoice Service on delivery"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_account_move
msgid "Journal Entry"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update
msgid "Last Modified on"
msgstr "Sidst ændret den"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Sidst opdateret af"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date
msgid "Last Updated on"
msgstr "Sidst opdateret den"

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Navn"

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Order Configuration"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id
msgid "Order Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain
msgid "Order Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id
msgid "Picking Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain
msgid "Picking Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment
msgid "Register Payment"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id
msgid "Register Payment Invoice Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done
msgid "Sale Done"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id
msgid "Sale Done Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain
msgid "Sale Done Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id
msgid "Sale Workflow Process"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
msgid "Sales Journal"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_sale_order
msgid "Sales Order"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id
msgid "Sales Team"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job
msgid ""
"Scheduler that will play automatically the validation of invoices, "
"pickings..."
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice
msgid "Send Invoice"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id
msgid "Send Invoice Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain
msgid "Send Invoice Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail
msgid "Send Order Confirmation Mail"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
msgid "Set default journal to use on invoice"
msgstr ""

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Set selection based on a search filter:"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy
msgid "Shipping Policy"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_stock_move
msgid "Stock Move"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_stock_picking
msgid "Transfer"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice
msgid "Validate Invoice"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id
msgid "Validate Invoice Filter"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain
msgid "Validate Invoice Filter Domain"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order
msgid "Validate Order"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning
msgid "Warning Message"
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail
msgid ""
"When checked, after order confirmation, a confirmation email will be sent "
"(if not already sent)."
msgstr ""

#. module: sale_automatic_workflow
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date
msgid "When checked, the invoice date will be the same than the order's date"
msgstr ""

#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Workflow Options"
msgstr ""

#. module: sale_automatic_workflow
#. odoo-python
#: code:addons/sale_automatic_workflow/models/sale_order.py:0
#, python-format
msgid "Workflow Warning"
msgstr ""
Loading