Initial commit: Odoo 18.0-20251222 extra-addons
Some checks failed
pre-commit / pre-commit (push) Has been cancelled
tests / Detect unreleased dependencies (push) Has been cancelled
tests / test with OCB (push) Has been cancelled
tests / test with Odoo (push) Has been cancelled

This commit is contained in:
tocmo0nlord
2026-03-13 20:43:25 +00:00
parent 36e847a7df
commit adbe430761
9472 changed files with 1265727 additions and 0 deletions

View File

@@ -0,0 +1,128 @@
=======================
Sale Automatic Workflow
=======================
..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:6e0dc4ec84063576e844140f8f2bc12dba0d7bad29f9dce2ea492d7a10720810
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |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/18.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-18-0/sale-workflow-18-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=18.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
- 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:
Usage
=====
To use this module, you need to:
1. Go to \*Sale > Configuration > Automatic Workflow > Automatic
Workflow
2. You can create/edit/delete automatic workflow
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:%2018.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 <dave@laslabs.com>
- Akim Juillerat <akim.juillerat@camptocamp.com>
- Thomas Fossoul <thomas@niboo.com>
- Phuc Tran Thanh <phuc@trobz.com>
- Sander Lienaerts <sander.lienaerts@codeforward.nl>
- Tri Doan <tridm@trobz.com>
- Chau Le <chaulb@trobz.com>
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/18.0/sale_automatic_workflow>`_ project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

View File

@@ -0,0 +1 @@
from . import models

View File

@@ -0,0 +1,24 @@
# Copyright 2011 Akretion Sébastien BEAU <sebastien.beau@akretion.com>
# 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": "18.0.1.0.0",
"category": "Sales Management",
"license": "AGPL-3",
"author": "Akretion, "
"Camptocamp, "
"Sodexis, "
"Odoo Community Association (OCA)",
"website": "https://github.com/OCA/sale-workflow",
"depends": ["sale"],
"data": [
"security/ir.model.access.csv",
"views/sale_order_views.xml",
"views/sale_workflow_process_views.xml",
"data/automatic_workflow_data.xml",
],
"installable": True,
}

View File

@@ -0,0 +1,97 @@
<?xml version="1.0" encoding="utf-8" ?>
<!--
Copyright (C) 2011 Akretion Sébastien BEAU <sebastien.beau@akretion.com>
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_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','=','sale'),('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_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="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="invoice_date_is_order_date" eval="0" />
<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="validate_order" eval="0" />
<field name="validate_invoice" eval="0" />
<field name="invoice_date_is_order_date" 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="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 name="model_id" ref="model_automatic_workflow_job" />
<field name="state">code</field>
<field name="code">model.run()</field>
<field name="active" eval="True" />
<field name="user_id" ref="base.user_root" />
<field name="interval_number">1</field>
<field name="interval_type">minutes</field>
</record>
</odoo>

View File

@@ -0,0 +1,276 @@
# 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
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__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,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__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__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
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_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__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
msgid "Workflow Warning"
msgstr ""

View File

@@ -0,0 +1,283 @@
# 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
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__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,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__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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "آخر تعديل في"
#~ msgid "Invoice"
#~ msgstr "فاتورة"

View File

@@ -0,0 +1,282 @@
# 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
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__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,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__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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Последно променено на"
#~ msgid "Invoice"
#~ msgstr "Фактура"

View File

@@ -0,0 +1,283 @@
# 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
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__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,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__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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Zadnje mijenjano"
#~ msgid "Invoice"
#~ msgstr "Faktura"

View File

@@ -0,0 +1,334 @@
# 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: 2020-11-06 13:08+0000\n"
"Last-Translator: brendapaniagua <brenda.paniagua@qubiq.es>\n"
"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n"
"Language: ca\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"
"X-Generator: Weblate 3.10\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 "Totes les quantitats lliurades"
#. 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 "Flux de treball automàtic"
#. module: sale_automatic_workflow
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
msgid "Automatic Workflow Job"
msgstr "Feina de flux de treball automàtic"
#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form
msgid "Automation Information"
msgstr "Informació d'automatització"
#. 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 ""
"Aneu amb compte, si deseu la comanda amb aquest paràmetre, es podria "
"confirmar automàticament, fins i tot si lediteu."
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice
msgid "Create Invoice"
msgstr "Crea una factura"
#. 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 "Crea un filtre de factures"
#. 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 "Crea un domini de filtre de factures"
#. 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 "Creat per"
#. 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 "Creat el"
#. 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 "Mostrar Nom"
#. 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 "Data de la factura forçada"
#. 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 ""
"Si està definit, es mostra el missatge quan un usuari selecciona el procés "
"d'una comanda de venda"
#. 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 ""
"Si es marca aquesta casella, quan es crea la primera factura, s'inclouran "
"les línies de comanda de venda del servei i es marcaran com a lliurades"
#. 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 "Servei de facturació al lliurament"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Darrera Actualització per"
#. 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 "Darrera Actualització el"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Nom"
#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Order Configuration"
msgstr "Configuració de la comanda"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id
msgid "Order Filter"
msgstr "Filtre de comandes"
#. 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 "Filtre de comandes"
#. 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 "Venda realitzada"
#. 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 "Filtre de venda realitzat"
#. 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 "Venda Fet el domini del filtre"
#. 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
msgid "Sale Workflow Process"
msgstr "Procés de flux de treball de venda"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
msgid "Sales Journal"
msgstr "Diari de vendes"
#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_sale_order
msgid "Sales Order"
msgstr "Comanda de venda"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id
msgid "Sales Team"
msgstr "Equip de vendes"
#. 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 ""
"Programador que reproduirà automàticament la validació de factures, "
"pickings ..."
#. 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 "Definiu el diari predeterminat per utilitzar-lo a la factura"
#. 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 "Definiu la selecció en funció d'un filtre de cerca:"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice
msgid "Validate Invoice"
msgstr "Validar la factura"
#. 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 "Valida el filtre de factures"
#. 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 "Validar el domini del filtre de factures"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order
msgid "Validate Order"
msgstr "Validar la comanda"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning
msgid "Warning Message"
msgstr "Missatge d'advertència"
#. 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 ""
"Quan es marca, la data de la factura serà la mateixa que la de la comanda"
#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Workflow Options"
msgstr "Opcions de flux de treball"
#. module: sale_automatic_workflow
#. odoo-python
#: code:addons/sale_automatic_workflow/models/sale_order.py:0
msgid "Workflow Warning"
msgstr "Advertiment de flux de treball"
#~ msgid "Confirm and Transfer Picking"
#~ msgstr "Confirmeu i transfereix la selecció"
#~ msgid "Deliver all products at once"
#~ msgstr "Entregueu tots els productes alhora"
#~ msgid "Deliver each product when available"
#~ msgstr "Entregueu cada producte quan estigui disponible"
#~ msgid "Last Modified on"
#~ msgstr "Darrera modificació el"
#~ msgid "Picking Filter"
#~ msgstr "Filtre de recollida"
#~ msgid "Picking Filter Domain"
#~ msgstr "Selecció del domini del filtre"
#~ msgid "Shipping Policy"
#~ msgstr "Política denviament"
#~ msgid "Stock Move"
#~ msgstr "Moviment destoc"
#~ msgid "Transfer"
#~ msgstr "Transferència"
#~ msgid "Automatic Workflow Create Invoice Filter"
#~ msgstr "Flux de treball automàtic Crea un filtre de factures"
#~ msgid "Automatic Workflow Order Filter"
#~ msgstr "Filtre automàtic de comandes de flux de treball"
#~ msgid "Automatic Workflow Picking Filter"
#~ msgstr "Filtre automàtic de recollida de flux de treball"
#~ msgid "Automatic Workflow Sale Done Filter"
#~ msgstr "Filtre de venda automàtic de flux de treball"
#~ msgid "Automatic Workflow Validate Invoice Filter"
#~ msgstr "El flux de treball automàtic valida el filtre de factures"
#~ msgid "Journal Entries"
#~ msgstr "Entrades de diari"
#~ msgid "Invoice"
#~ msgstr "Factura"

View File

@@ -0,0 +1,280 @@
# 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
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__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,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__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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Quotation"
#~ msgstr "Quotation"

View File

@@ -0,0 +1,282 @@
# 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
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__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,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__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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Naposled upraveno"
#~ msgid "Invoice"
#~ msgstr "Faktura"

View File

@@ -0,0 +1,279 @@
# 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
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__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,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__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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Sidst ændret den"

View File

@@ -0,0 +1,316 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_automatic_workflow
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
# Rudolf Schnapka <rs@techno-flex.de>, 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: 2023-11-17 12:13+0000\n"
"Last-Translator: jappi00 <jappi2000@ewetel.net>\n"
"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n"
"Language: de\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"
"X-Generator: Weblate 4.17\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 "Alle Mengen ausgeliefert"
#. 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 "Automatischer Workflow"
#. module: sale_automatic_workflow
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
msgid "Automatic Workflow Job"
msgstr "Automatischer Workflow-Job"
#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form
msgid "Automation Information"
msgstr "Automatisierungsinformation"
#. 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 ""
"Seien Sie vorsichtig, wenn Sie einen Auftrag mit dieser Einstellung "
"speichern, kann dieser bereits beim Bearbeiten auto-bestätigt werden."
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice
msgid "Create Invoice"
msgstr "Rechnung anlegen"
#. 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 "Filter für Rechnungen erstellen"
#. 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 "Filter-Domain für Rechnungen erstellen"
#. 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 "Angelegt durch"
#. 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 "Angelegt am"
#. 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 "Anzeigename"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain
msgid "Domain"
msgstr "Filter"
#. 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 "Rechnungsdatum erzwingen"
#. 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 ""
"Wenn ausgewählt, wird diese Meldung angezeigt, wenn ein Benutzer den "
"Workflow für einen Verkaufsauftrag auswählt."
#. 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 ""
"Wenn das Kästchen angehakt ist, werden bei der ersten Rechnung die "
"Dienstleistungsprodukte hinzugefügt und als ausgeliefert markiert"
#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Invoice Options"
msgstr "Rechnungsoptionen"
#. 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 "Dienstleistung bei Auslieferung in Rechnung stellen"
#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_account_move
msgid "Journal Entry"
msgstr "Journaleintrag"
#. 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 "Zuletzt akualisiert durch"
#. 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 "Zuletzt akualisiert am"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Bezeichnung"
#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Order Configuration"
msgstr "Auftragskonfiguration"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id
msgid "Order Filter"
msgstr "Verkaufsauftrag Filter"
#. 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 "Verkaufsauftrag Filter"
#. 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
msgid "Sale Workflow Process"
msgstr "Verkaufs-Workflow"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
msgid "Sales Journal"
msgstr "Verkaufsjournal"
#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_sale_order
#, fuzzy
msgid "Sales Order"
msgstr "Prüfe Auftrag"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id
msgid "Sales Team"
msgstr "Verkaufsteam"
#. 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_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 "Setze Auswahl gemäß Suchfilter:"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice
msgid "Validate Invoice"
msgstr "Rechnung validieren"
#. 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 "Auftrag validieren"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning
msgid "Warning Message"
msgstr "Hinweismeldung"
#. 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 ""
"Wenn angewählt, wird das Rechnungsdatum mit dem des Auftrags gleichgesetzt"
#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Workflow Options"
msgstr "Workflow-Optionen"
#. module: sale_automatic_workflow
#. odoo-python
#: code:addons/sale_automatic_workflow/models/sale_order.py:0
msgid "Workflow Warning"
msgstr "Workflowhinweis"
#~ msgid "Confirm and Transfer Picking"
#~ msgstr "Kommissionierung bestätigen und übertragen"
#~ msgid "Deliver all products at once"
#~ msgstr "Alle Produkte auf einmal liefern"
#~ msgid "Deliver each product when available"
#~ msgstr "Jedes Produkt bei Verfügbarkeit liefern"
#~ msgid "Last Modified on"
#~ msgstr "Zuletzt geändert am"
#~ msgid "Picking Filter"
#~ msgstr "Kommissionsfilter"
#~ msgid "Shipping Policy"
#~ msgstr "Lieferbedingung"
#~ msgid "Stock Move"
#~ msgstr "Lagerbuchung"
#~ msgid "Invoice"
#~ msgstr "Rechnung"
#~ msgid "Quotation"
#~ msgstr "Quotation"
#~ msgid "automatic.workflow.job"
#~ msgstr "automatic.workflow.job"

View File

@@ -0,0 +1,283 @@
# 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: Greek (Greece) (https://www.transifex.com/oca/teams/23907/"
"el_GR/)\n"
"Language: el_GR\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
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__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,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__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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Invoice"
#~ msgstr "Τιμολόγιο"
#~ msgid "Quotation"
#~ msgstr "Quotation"

View File

@@ -0,0 +1,280 @@
# 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: English (United Kingdom) (https://www.transifex.com/oca/"
"teams/23907/en_GB/)\n"
"Language: en_GB\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
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__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 "Created by"
#. 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 "Created on"
#. 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 "Display Name"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Last Updated by"
#. 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 "Last Updated on"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Name"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Last Modified on"

View File

@@ -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>, 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: 2023-11-29 04:58+0000\n"
"Last-Translator: kikopeiro <francisco.peiro@factorlibre.com>\n"
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
"Language: 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"
"X-Generator: Weblate 4.17\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 "Todas las cantidades entregadas"
#. 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 "Flujo automático"
#. module: sale_automatic_workflow
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
msgid "Automatic Workflow Job"
msgstr "Trabajo de flujo de trabajo automático"
#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form
msgid "Automation Information"
msgstr "Información de automatización"
#. 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 ""
"Sea cuidadoso si guarda el pedido con este ajuste: puede auto-confirmarse "
"incluso aunque lo esté editando."
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice
msgid "Create Invoice"
msgstr "Crear factura"
#. 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 "Filtro de creación de factura"
#. 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 "Dominio del filtro de creación de factura"
#. 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 el"
#. 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 "Nombre mostrado"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain
msgid "Domain"
msgstr "Dominio"
#. 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 "Forzar fecha de factura"
#. 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 ""
"Si está establecido, se muestra el mensaje cuando un usuario selecciona el "
"proceso en el pedido de venta"
#. 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 ""
"Si está casilla está marcada, cuando se crea la primera factura, las líneas "
"de pedido de venta que son servicios se incluyen y son marcadas como "
"entregadas"
#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Invoice Options"
msgstr "Opciones de factura"
#. 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 "Facturar servicios en la entrega"
#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_account_move
msgid "Journal Entry"
msgstr "Entrada diaria"
#. 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 el"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Nombre"
#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Order Configuration"
msgstr "Configuración de pedido"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id
msgid "Order Filter"
msgstr "Filtro de pedido"
#. 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 "Dominio del filtro de pedido"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment
msgid "Register Payment"
msgstr "Registrar pago"
#. 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 "Filtro de registro de pago de factura"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done
msgid "Sale Done"
msgstr "Bloqueo de pedido"
#. 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 "Filtro para bloqueo de pedidos"
#. 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 "Dominio del filtro para bloqueo de pedidos"
#. 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
msgid "Sale Workflow Process"
msgstr "Proceso del flujo de venta"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
msgid "Sales Journal"
msgstr "Diario de ventas"
#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_sale_order
msgid "Sales Order"
msgstr "Órdenes de venta"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id
msgid "Sales Team"
msgstr "Equipo de ventas"
#. 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 ""
"Programador que reproducirá automáticamente la validación de facturas, "
"pickings..."
#. 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 "Enviar correo de confirmación de Pedido"
#. 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 "Establezca el diario por defecto a usar en las facturas"
#. 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 "Establecer selección basada en un filtro de búsqueda:"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice
msgid "Validate Invoice"
msgstr "Validar factura"
#. 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 "Filtro de validación de factura"
#. 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 "Domino del filtro de validación de facturas"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order
msgid "Validate Order"
msgstr "Validar pedido"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning
msgid "Warning Message"
msgstr "Mensaje de advertencia"
#. 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 ""
"Si está marcada, tras la confirmación del pedido se enviará un correo "
"electrónico de confirmación (si no se ha enviado ya)."
#. 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 ""
"Cuando está marcado, la fecha de la factura será la misma que la del pedido "
"de venta"
#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Workflow Options"
msgstr "Opciones del flujo"
#. module: sale_automatic_workflow
#. odoo-python
#: code:addons/sale_automatic_workflow/models/sale_order.py:0
msgid "Workflow Warning"
msgstr "Aviso del flujo"
#~ msgid "Confirm and Transfer Picking"
#~ msgstr "Confirmar y transferir albarán"
#~ msgid "Deliver all products at once"
#~ msgstr "Enviar todos los productos a la vez"
#~ msgid "Deliver each product when available"
#~ msgstr "Enviar cada producto cuando esté disponible"
#~ msgid "Last Modified on"
#~ msgstr "Última modificación en"
#~ msgid "Picking Filter"
#~ msgstr "Filtro de albarán"
#~ msgid "Picking Filter Domain"
#~ msgstr "Dominio del filtro de albarán"
#~ msgid "Shipping Policy"
#~ msgstr "Política de envío"
#~ msgid "Stock Move"
#~ msgstr "Movimiento de existencia"
#~ msgid "Transfer"
#~ msgstr "Transferir"
#~ msgid "Automatic Workflow Create Invoice Filter"
#~ msgstr "Filtro de flujo automático de creación de factura"
#~ msgid "Automatic Workflow Order Filter"
#~ msgstr "Filtro de flujo automático de pedido"
#~ msgid "Automatic Workflow Picking Filter"
#~ msgstr "Filtro de flujo automático de albaranes"
#~ msgid "Automatic Workflow Sale Done Filter"
#~ msgstr "Filtro de flujo automático de pedidos realizados"
#~ msgid "Automatic Workflow Validate Invoice Filter"
#~ msgstr "Filtro de flujo automático de validación de facturas"
#~ msgid "Journal Entries"
#~ msgstr "Entradas de diario"
#~ msgid "Invoice"
#~ msgstr "Factura"
#~ msgid "Quotation"
#~ msgstr "Quotation"
#~ msgid "automatic.workflow.job"
#~ msgstr "automatic.workflow.job"

View File

@@ -0,0 +1,280 @@
# 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: Spanish (Argentina) (https://www.transifex.com/oca/"
"teams/23907/es_AR/)\n"
"Language: es_AR\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
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__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,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 "Mostrar Nombre"
#. 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__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 realizada 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 el"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Nombre"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Última modificación en"

View File

@@ -0,0 +1,280 @@
# 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: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/"
"es_CL/)\n"
"Language: es_CL\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
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__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,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 "Nombre mostrado"
#. 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 (identificación)"
#. 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__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 de"
#. 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 "Nombre"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Última modificación en"

View File

@@ -0,0 +1,280 @@
# 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: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/"
"es_CO/)\n"
"Language: es_CO\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
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__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"
#. 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 "Nombre Público"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Actualizado 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 "Actualizado"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Nombre"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Última Modificación el"

View File

@@ -0,0 +1,280 @@
# 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: Spanish (Costa Rica) (https://www.transifex.com/oca/"
"teams/23907/es_CR/)\n"
"Language: es_CR\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
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__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,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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Ultima 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 "Ultima actualización en"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Nombre"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Invoice"
#~ msgstr "Factura"

View File

@@ -0,0 +1,280 @@
# 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: Spanish (Dominican Republic) (https://www.transifex.com/oca/"
"teams/23907/es_DO/)\n"
"Language: es_DO\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
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__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,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 "Nombre mostrado"
#. 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__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 de"
#. 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 "Nombre"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Última modificación en"

View File

@@ -0,0 +1,283 @@
# 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: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/"
"es_EC/)\n"
"Language: es_EC\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
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__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,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 "Nombre mostrado"
#. 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 (identificación)"
#. 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__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 de"
#. 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 "Nombre"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Última modificación en"
#~ msgid "Invoice"
#~ msgstr "Factura"

View File

@@ -0,0 +1,277 @@
# 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: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/"
"es_ES/)\n"
"Language: es_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
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__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,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__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__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
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_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__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
msgid "Workflow Warning"
msgstr ""

View File

@@ -0,0 +1,287 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_automatic_workflow
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2016
# Juan González <bifomania@protonmail.com>, 2016
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-11-29 19:24+0000\n"
"PO-Revision-Date: 2016-11-29 19:24+0000\n"
"Last-Translator: Juan González <bifomania@protonmail.com>, 2016\n"
"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/"
"es_MX/)\n"
"Language: es_MX\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
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__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,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 "Nombre desplegado"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Ultima actualizacion 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 "Ultima actualización realizada"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Nombre"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Ultima modificacion realizada"
#~ msgid "Stock Move"
#~ msgstr "Movimiento bursátil"
#~ msgid "Invoice"
#~ msgstr "Factura"

View File

@@ -0,0 +1,280 @@
# 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: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/"
"es_PE/)\n"
"Language: es_PE\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
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__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,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 "Nombre a Mostrar"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Actualizado última vez 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 "Ultima Actualización"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Nombre"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Ultima Modificación en"

View File

@@ -0,0 +1,277 @@
# 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: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/"
"es_PY/)\n"
"Language: es_PY\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
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__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,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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Ultima 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 "Ultima actualización en"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Nombre"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""

View File

@@ -0,0 +1,283 @@
# 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: Spanish (Venezuela) (https://www.transifex.com/oca/"
"teams/23907/es_VE/)\n"
"Language: es_VE\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
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__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,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 "Mostrar nombre"
#. 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__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 realizada 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 "Ultima actualizacion en"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Nombre"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Modificada por última vez"
#~ msgid "Quotation"
#~ msgstr "Quotation"

View File

@@ -0,0 +1,282 @@
# 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: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n"
"Language: et\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
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__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 "Loonud"
#. 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 "Loodud"
#. 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 "Näidatav nimi"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Viimati uuendatud"
#. 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 "Viimati uuendatud"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Nimi"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Viimati muudetud"
#~ msgid "Invoice"
#~ msgstr "Arve"

View File

@@ -0,0 +1,276 @@
# 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: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n"
"Language: eu\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
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__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 "Nork sortua"
#. 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 "Created on"
#. 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 "Izena erakutsi"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Last Updated by"
#. 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 "Last Updated on"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Izena"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""

View File

@@ -0,0 +1,279 @@
# 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: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n"
"Language: fa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\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
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__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,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__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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "تاریخ آخرین به‌روزرسانی"

View File

@@ -0,0 +1,288 @@
# 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: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n"
"Language: fi\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
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__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 "Luonut"
#. 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 "Luotu"
#. 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 "Nimi"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Viimeksi päivittänyt"
#. 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 "Viimeksi päivitetty"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Nimi"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Viimeksi muokattu"
#~ msgid "Stock Move"
#~ msgstr "Varastosiirto"
#~ msgid "Invoice"
#~ msgstr "Lasku"
#~ msgid "Quotation"
#~ msgstr "Quotation"

View File

@@ -0,0 +1,339 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_automatic_workflow
#
# Translators:
# OCA Transbot <transbot@odoo-community.org>, 2018
# Quentin THEURET <odoo@kerpeo.com>, 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: Quentin THEURET <odoo@kerpeo.com>, 2018\n"
"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n"
"Language: fr\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 "Commande livrée complétement"
#. 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 "Flux automatique"
#. module: sale_automatic_workflow
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
msgid "Automatic Workflow Job"
msgstr "Job du workflow automatique"
#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form
msgid "Automation Information"
msgstr "Informations d'automatisation"
#. 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 ""
"Faites attention, si vous sauvegardez la commande avec ce paramètre, cela "
"pourrait être confirmé automatiquement, même si vous la modifiée."
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice
msgid "Create Invoice"
msgstr "Créer les factures"
#. 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 "Créer un filtre sur les factures"
#. 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 "Créer un domaine de filtrage de facture"
#. 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 "Créé par"
#. 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 "Créé le"
#. 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 "Afficher le nom"
#. 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 "Forcer la date de facturation"
#. 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 ""
"Si configuré, affiche le message lorsqu'un utilisateur choisit le processus "
"sur un bon de commande"
#. 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 ""
"Si cette case est cochée, lorsque la première facture est créée, les lignes "
"articles du bon de commande seront incluses et marquées comme livrées"
#. 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 "Comptabilisation de la facture à la livraison"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Modifié par"
#. 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 "Modifié le"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Nom"
#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Order Configuration"
msgstr "Configuration des bons de commande"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id
msgid "Order Filter"
msgstr "Filtre de commande"
#. 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 "Domaine du filtre de commande"
#. 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 "Ventes réalisées"
#. 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 "Filtre des ventes réalisées"
#. 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 "Domaine du filtre des ventes réalisées"
#. 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
msgid "Sale Workflow Process"
msgstr "Flux automatique de vente"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
msgid "Sales Journal"
msgstr "Journal des ventes"
#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_sale_order
#, fuzzy
msgid "Sales Order"
msgstr "Confirmer les commandes"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id
msgid "Sales Team"
msgstr "Équipe commerciale"
#. 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_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 "Définir le journal par défaut des factures"
#. 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 "Définir une sélection en fonction d'un filtre de recherche:"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice
msgid "Validate Invoice"
msgstr "Valider les factures"
#. 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 "Valider le filtre de facture"
#. 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 "Valider le domaine du filtre de facture"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order
msgid "Validate Order"
msgstr "Confirmer les commandes"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning
msgid "Warning Message"
msgstr "Message d'avertissement"
#. 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 ""
"Si activé, la date de facturation sera identique à la date de la commande."
#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Workflow Options"
msgstr "Options du flux automatique"
#. module: sale_automatic_workflow
#. odoo-python
#: code:addons/sale_automatic_workflow/models/sale_order.py:0
msgid "Workflow Warning"
msgstr "Message d'avertissement"
#~ msgid "Confirm and Transfer Picking"
#~ msgstr "Confirmez et transférez la préparation de commande"
#~ msgid "Deliver all products at once"
#~ msgstr "Livrer tous les articles en une fois"
#~ msgid "Deliver each product when available"
#~ msgstr "Livrer chaque article dès disponibilité"
#~ msgid "Last Modified on"
#~ msgstr "Dernière modification le"
#~ msgid "Picking Filter"
#~ msgstr "Filtre de préparation de commande"
#~ msgid "Picking Filter Domain"
#~ msgstr "Domaine du filtre de préparation de commande"
#~ msgid "Shipping Policy"
#~ msgstr "Politique d'expédition"
#~ msgid "Stock Move"
#~ msgstr "Mouvement de stock"
#~ msgid "Transfer"
#~ msgstr "Transférer"
#~ msgid "Automatic Workflow Create Invoice Filter"
#~ msgstr "Flux de travail automatique Créant un filtre sur les factures "
#~ msgid "Automatic Workflow Order Filter"
#~ msgstr "Flux de travail automatique Créant un filtre sur les commandes"
#~ msgid "Automatic Workflow Picking Filter"
#~ msgstr ""
#~ "Flux de travail automatique Créant un filtre de préparation de commande"
#~ msgid "Automatic Workflow Sale Done Filter"
#~ msgstr ""
#~ "Flux de travail automatique Créant un filtre sur les ventes réalisées"
#~ msgid "Automatic Workflow Validate Invoice Filter"
#~ msgstr ""
#~ "Flux de travail automatique Créant un filtre sur les factures validées"
#~ msgid "Invoice"
#~ msgstr "Facture"
#~ msgid "Quotation"
#~ msgstr "Quotation"
#~ msgid "automatic.workflow.job"
#~ msgstr "automatic.workflow.job"

View File

@@ -0,0 +1,280 @@
# 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: French (Canada) (https://www.transifex.com/oca/teams/23907/"
"fr_CA/)\n"
"Language: fr_CA\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
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__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 "Créé par"
#. 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 "Créé le"
#. 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 "Afficher le nom"
#. 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 "Identifiant"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Dernière mise à jour par"
#. 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 "Dernière mise à jour le"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Nom"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Invoice"
#~ msgstr "Facture"

View File

@@ -0,0 +1,283 @@
# 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: French (Switzerland) (https://www.transifex.com/oca/"
"teams/23907/fr_CH/)\n"
"Language: fr_CH\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
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__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 "Créé par"
#. 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 "Créé le"
#. 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 "Nom affiché"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Modifié par"
#. 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 "Modifié le"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Dernière modification le"
#~ msgid "Invoice"
#~ msgstr "Facture"

View File

@@ -0,0 +1,285 @@
# 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: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n"
"Language: gl\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
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__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,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__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 "Nome"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Modificado por última vez o"
#~ msgid "Stock Move"
#~ msgstr "Movemento de existencias"
#~ msgid "Invoice"
#~ msgstr "Factura"

View File

@@ -0,0 +1,277 @@
# 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: Galician (Spain) (https://www.transifex.com/oca/teams/23907/"
"gl_ES/)\n"
"Language: gl_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
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__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,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__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__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
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_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__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
msgid "Workflow Warning"
msgstr ""

View File

@@ -0,0 +1,279 @@
# 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: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n"
"Language: he\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
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__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,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__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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "תאריך שינוי אחרון"

View File

@@ -0,0 +1,292 @@
# 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: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n"
"Language: hr\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
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__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 "Datum kreiranja"
#. 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 "Naziv za prikaz"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Promijenio"
#. 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 "Vrijeme promjene"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Naziv"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Zadnja promjena"
#~ msgid "Shipping Policy"
#~ msgstr "Način otpreme"
#~ msgid "Stock Move"
#~ msgstr "Skladišni prenos"
#~ msgid "Invoice"
#~ msgstr "Račun"
#~ msgid "Quotation"
#~ msgstr "Quotation"

View File

@@ -0,0 +1,284 @@
# 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: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/"
"hr_HR/)\n"
"Language: hr_HR\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
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__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,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 "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__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 "Naziv"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Zadnje modificirano"
#~ msgid "Invoice"
#~ msgstr "Račun"

View File

@@ -0,0 +1,285 @@
# 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: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n"
"Language: hu\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
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__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 "Készítette"
#. 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 "Létrehozás dátuma"
#. 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 "Név megjelenítése"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Utoljára frissítve, által"
#. 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 "Utoljára frissítve "
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Név"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Utolsó frissítés dátuma"
#~ msgid "Invoice"
#~ msgstr "Számla"
#~ msgid "Quotation"
#~ msgstr "Quotation"

View File

@@ -0,0 +1,282 @@
# 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: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n"
"Language: id\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\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
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__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 "Dibuat oleh"
#. 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 "Dibuat pada"
#. 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 "Nama Tampilan"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Diperbaharui oleh"
#. 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 "Diperbaharui pada"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Nama"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Terakhir Dimodifikasi pada"
#~ msgid "Invoice"
#~ msgstr "Faktur"

View File

@@ -0,0 +1,306 @@
# 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: 2024-08-07 08:58+0000\n"
"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
"Language: it\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"
"X-Generator: Weblate 5.6.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 "Tutte le quantità consegnate"
#. 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 "Flusso di lavoro automatico"
#. module: sale_automatic_workflow
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
msgid "Automatic Workflow Job"
msgstr "Lavoro flusso di lavoro automatico"
#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form
msgid "Automation Information"
msgstr "Informazioni sull'automazione"
#. 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 ""
"Fare attenzione, se viene salvato l'ordine con queste impostazioni, potrebbe "
"essere confermato automaticamente, anche qualora sia in fase di modifica."
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice
msgid "Create Invoice"
msgstr "Crea fattura"
#. 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 "Crea filtro fattura"
#. 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 "Dominio creazione filtro fattura"
#. 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 "Creato da"
#. 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 "Creato il"
#. 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 "Nome visualizzato"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain
msgid "Domain"
msgstr "Dominio"
#. 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 "Forza data fattura"
#. 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 ""
"Se impostato, mostra il messaggio quando un utente seleziona il processo in "
"un ordine di vendita"
#. 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 ""
"Se è spuntato, alla creazione della prima fattura le righe dell'ordine di "
"vendita del servizio verranno incluse e contrassegnate come consegnate"
#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Invoice Options"
msgstr "Opzioni fattura"
#. 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 "Fattura servizio su consegna"
#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_account_move
msgid "Journal Entry"
msgstr "Registrazione contabile"
#. 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 "Ultimo aggiornamento di"
#. 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 "Ultimo aggiornamento il"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Nome"
#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Order Configuration"
msgstr "Configurazione ordine"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id
msgid "Order Filter"
msgstr "Filtro ordine"
#. 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 "Dominio filtro ordine"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment
msgid "Register Payment"
msgstr "Registra pagamento"
#. 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 "Filtro registra pagamento fattura"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done
msgid "Sale Done"
msgstr "Vendita effettuata"
#. 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 "Filtro vendita effettuata"
#. 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 "Dominio filtro vendita effettuata"
#. 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
msgid "Sale Workflow Process"
msgstr "Flusso di vendita"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
msgid "Sales Journal"
msgstr "Registro delle vendite"
#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_sale_order
msgid "Sales Order"
msgstr "Ordine di vendita"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id
msgid "Sales Team"
msgstr "Team di vendita"
#. 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 ""
"Schedulatore che riprodurrà in automatico la validazione delle fatture, "
"prelievi..."
#. 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 "Invia e-mail di conferma ordine"
#. 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 "Imposta il registro predefinito da utilizzare sulla fattura"
#. 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 "Imposta la selezione basata a un filtro di ricerca:"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice
msgid "Validate Invoice"
msgstr "Validare la fattura"
#. 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 "Filtro validazione fattura"
#. 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 "Dominio filtro validazione fattura"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order
msgid "Validate Order"
msgstr "Validazione ordine"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning
msgid "Warning Message"
msgstr "Messaggio di avviso"
#. 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 ""
"Quando spuntato, dopo la conferma dell'ordine, verrà inviata un'e-mail di "
"conferma (se non è stata già inviata)."
#. 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 ""
"Quando spuntata, la data dalla fattura sarà la stessa della data dell'ordine"
#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Workflow Options"
msgstr "Opzioni flusso"
#. module: sale_automatic_workflow
#. odoo-python
#: code:addons/sale_automatic_workflow/models/sale_order.py:0
msgid "Workflow Warning"
msgstr "Avviso flusso"
#~ msgid "Last Modified on"
#~ msgstr "Ultima modifica il"
#~ msgid "Shipping Policy"
#~ msgstr "Politica di spedizione"
#~ msgid "Stock Move"
#~ msgstr "Movimento di magazzino"
#~ msgid "Transfer"
#~ msgstr "Trasferimento"
#~ msgid "Invoice"
#~ msgstr "Fattura"
#~ msgid "Quotation"
#~ msgstr "Quotation"

View File

@@ -0,0 +1,282 @@
# 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: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\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
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__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,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__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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "最終更新日"
#~ msgid "Invoice"
#~ msgstr "請求書"

View File

@@ -0,0 +1,279 @@
# 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: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n"
"Language: ko\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\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
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__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,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__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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "최근 수정"

View File

@@ -0,0 +1,283 @@
# 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: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n"
"Language: lt\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%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
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__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 "Sukūrė"
#. 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 "Sukurta"
#. 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 "Vaizduojamas pavadinimas"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Paskutinį kartą atnaujino"
#. 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 "Paskutinį kartą atnaujinta"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Pavadinimas"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Paskutinį kartą keista"
#~ msgid "Invoice"
#~ msgstr "Sąskaita faktūra"

View File

@@ -0,0 +1,278 @@
# 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: Lithuanian (Lithuania) (https://www.transifex.com/oca/"
"teams/23907/lt_LT/)\n"
"Language: lt_LT\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%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
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__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 "Sukūrė"
#. 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 "Sukurta"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Paskutinį kartą atnaujino"
#. 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 "Paskutinį kartą atnaujinta"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""

View File

@@ -0,0 +1,277 @@
# 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: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n"
"Language: lv\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 != 0 ? 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
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__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 "Izveidoja"
#. 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 "Izveidots"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Pēdējo reizi atjaunoja"
#. 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 "Pēdējās izmaiņas"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Nosaukums"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""

View File

@@ -0,0 +1,282 @@
# 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: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n"
"Language: mk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 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
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__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,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__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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Последна промена на"
#~ msgid "Invoice"
#~ msgstr "Фактура"

View File

@@ -0,0 +1,282 @@
# 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: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n"
"Language: mn\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
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__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,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__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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Сүүлийн засвар хийсэн огноо"
#~ msgid "Invoice"
#~ msgstr "Нэхэмжлэл"

View File

@@ -0,0 +1,283 @@
# 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: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/"
"nb/)\n"
"Language: nb\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
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__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 "Opprettet av"
#. 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 "Opprettet den"
#. 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 "Visnings 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Sist oppdatert av"
#. 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 "Sist oppdatert"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Sist oppdatert "
#~ msgid "Invoice"
#~ msgstr "Faktura"

View File

@@ -0,0 +1,283 @@
# 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: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/"
"teams/23907/nb_NO/)\n"
"Language: nb_NO\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
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__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 "Laget av"
#. 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 "Laget den"
#. 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 "Vis 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Sist oppdatert av"
#. 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 "Sist oppdatert den"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Sist endret den"
#~ msgid "Invoice"
#~ msgstr "Innmelding"

View File

@@ -0,0 +1,285 @@
# 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: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n"
"Language: nl\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
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__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 "Aangemaakt door"
#. 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 "Aangemaakt op"
#. 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 "Te tonen naam"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Laatste bijgewerkt door"
#. 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 "Laatst bijgewerkt op"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Naam"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Laatst bijgewerkt op"
#~ msgid "Invoice"
#~ msgstr "Factuur"
#~ msgid "Quotation"
#~ msgstr "Quotation"

View File

@@ -0,0 +1,283 @@
# 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: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/"
"nl_BE/)\n"
"Language: nl_BE\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
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__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 "Gemaakt door"
#. 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 "Gemaakt op"
#. 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 "Schermnaam"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Laatst bijgewerkt door"
#. 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 "Laatst bijgewerkt op"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Naam:"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Laatst Aangepast op"
#~ msgid "Invoice"
#~ msgstr "Factuur"

View File

@@ -0,0 +1,290 @@
# 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: Dutch (Netherlands) (https://www.transifex.com/oca/"
"teams/23907/nl_NL/)\n"
"Language: nl_NL\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 "Alle hoeveelheden geleverd"
#. 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
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__create_invoice
msgid "Create Invoice"
msgstr "Maak factuur"
#. 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 "Aangemaakt door"
#. 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 "Aangemaakt op"
#. 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 "Weergavenaam"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Laatst aangepast door"
#. 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 "Laatst aangepast op"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Naam"
#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Order Configuration"
msgstr "Order-configuratie"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id
msgid "Order Filter"
msgstr "Order Filter"
#. 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__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
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 "Verkoopdagboek"
#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_sale_order
#, fuzzy
msgid "Sales Order"
msgstr "Verkoopteam"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id
msgid "Sales Team"
msgstr "Verkoopteam"
#. 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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Deliver all products at once"
#~ msgstr "Lever alle producten gelijktijdig"
#~ msgid "Last Modified on"
#~ msgstr "Laatst gewijzigd op"
#~ msgid "Invoice"
#~ msgstr "Factuur"
#~ msgid "automatic.workflow.job"
#~ msgstr "automatic.workflow.job"

View File

@@ -0,0 +1,283 @@
# 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: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n"
"Language: pl\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%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
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__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 "Utworzone przez"
#. 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 "Utworzono"
#. 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 "Wyświetlana nazwa "
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Ostatnio modyfikowane przez"
#. 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 "Ostatnia zmiana"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Nazwa"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Ostatnio modyfikowano"
#~ msgid "Invoice"
#~ msgstr "Faktura"

View File

@@ -0,0 +1,285 @@
# 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: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n"
"Language: pt\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
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__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 "Criado 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 "Criado em"
#. 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 "Nome a Apresentar"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Atualizado pela última vez 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 "Atualizado pela última vez em"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Nome"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Última Modificação Em"
#~ msgid "Stock Move"
#~ msgstr "Movimento Stock"
#~ msgid "Invoice"
#~ msgstr "Fatura"

View File

@@ -0,0 +1,338 @@
# 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: 2023-10-09 17:37+0000\n"
"Last-Translator: Adriano Prado <adrianojprado@gmail.com>\n"
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/"
"teams/23907/pt_BR/)\n"
"Language: pt_BR\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"
"X-Generator: Weblate 4.17\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 "Todas as quantidades entregues"
#. 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 "Fluxo de trabalho automático"
#. module: sale_automatic_workflow
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
msgid "Automatic Workflow Job"
msgstr "Job de Workflow Automático"
#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form
msgid "Automation Information"
msgstr "Informação de Automação"
#. 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 ""
"Tenha cuidado, se você salvar o pedido com essa configuração, pode ser "
"confirmado automaticamente, mesmo se você estiver editando."
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice
msgid "Create Invoice"
msgstr "Criar Fatura"
#. 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 "Criar Filtro de Fatura"
#. 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 "Criar Domínio de Filtro de Fatura"
#. 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 "Criado 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 "Criado em"
#. 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 "Nome de Exibição"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain
msgid "Domain"
msgstr "Dominio"
#. 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 "Forçar Data da Fatura"
#. 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 "Identificação"
#. 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 ""
"Se definido, exibe a mensagem quando um usuário seleciona o processo em um "
"pedido de venda"
#. 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 ""
"Se esta caixa estiver marcada, quando a primeira fatura for criada as linhas "
"de pedido de venda de serviço serão incluídas e marcadas como entregues"
#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Invoice Options"
msgstr "Opções Fatura"
#. 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 "Faturar Serviço na Entrega"
#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_account_move
msgid "Journal Entry"
msgstr "Entrada Diário"
#. 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 atualização 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 atualização em"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Nome"
#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Order Configuration"
msgstr "Configuração do Pedido"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id
msgid "Order Filter"
msgstr "Filtro do Pedido"
#. 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 "Domínio do Filtro do Pedido"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment
msgid "Register Payment"
msgstr "Registrar Pagamento"
#. 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 "Conclusão de Venda"
#. 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 "Filtro de Conclusão de Venda"
#. 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 "Domínio do Filtro de Conclusão da Venda"
#. 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
msgid "Sale Workflow Process"
msgstr "Processo de Workflow de Venda"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
msgid "Sales Journal"
msgstr "Diário de Vendas"
#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_sale_order
msgid "Sales Order"
msgstr "Pedido de Vendas"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id
msgid "Sales Team"
msgstr "Time de Vendas"
#. 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 ""
"Agendador que executará automaticamente a validação de faturas, separações..."
#. 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 "Enviar e-mail de confirmação do pedido"
#. 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 "Defina o diário padrão para ser usado na fatura"
#. 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 "Defina a seleção baseada em um filtro de pesquisa:"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice
msgid "Validate Invoice"
msgstr "Validar Fatura"
#. 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 "Filtro de Validação da Fatura"
#. 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 "Domínio de Filtro de Validação da Fatura"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order
msgid "Validate Order"
msgstr "Validar Pedido"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning
msgid "Warning Message"
msgstr "Mensagem de Aviso"
#. 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 ""
"Quando marcado, após a confirmação do pedido, será enviado um e-mail de "
"confirmação (caso ainda não tenha sido enviado)."
#. 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 "Quando marcado, a data da fatura será a mesma que a data do pedido"
#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Workflow Options"
msgstr "Opções de Workflow"
#. module: sale_automatic_workflow
#. odoo-python
#: code:addons/sale_automatic_workflow/models/sale_order.py:0
msgid "Workflow Warning"
msgstr "Aviso de Workflow"
#~ msgid "Confirm and Transfer Picking"
#~ msgstr "Confirmar e Transferir Separação"
#~ msgid "Deliver all products at once"
#~ msgstr "Entregar todos os produtos de uma vez"
#~ msgid "Deliver each product when available"
#~ msgstr "Entregar cada produto quando disponível"
#~ msgid "Last Modified on"
#~ msgstr "Última atualização em"
#~ msgid "Picking Filter"
#~ msgstr "Filtro de Separação"
#~ msgid "Picking Filter Domain"
#~ msgstr "Domínio do Filtro de Separação"
#~ msgid "Shipping Policy"
#~ msgstr "Política de Entrega"
#~ msgid "Stock Move"
#~ msgstr "Movimentação de estoque"
#~ msgid "Transfer"
#~ msgstr "Transferir"
#~ msgid "Automatic Workflow Create Invoice Filter"
#~ msgstr "Filtro de Workflow para Criar a Fatura"
#~ msgid "Automatic Workflow Order Filter"
#~ msgstr "Filtro de Workflow para Criar Pedido"
#~ msgid "Automatic Workflow Picking Filter"
#~ msgstr "Filtro de Workflow para Criar a Fatura"
#~ msgid "Automatic Workflow Sale Done Filter"
#~ msgstr "Filtro de Workflow para Conclusão do Pedido"
#~ msgid "Automatic Workflow Validate Invoice Filter"
#~ msgstr "Filtro de Workflow para Validar a Fatura"
#~ msgid "Journal Entries"
#~ msgstr "Entradas de Diário"
#~ msgid "Invoice"
#~ msgstr "Fatura"
#~ msgid "Quotation"
#~ msgstr "Quotation"

View File

@@ -0,0 +1,283 @@
# 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: Portuguese (Portugal) (https://www.transifex.com/oca/"
"teams/23907/pt_PT/)\n"
"Language: pt_PT\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
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__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 "Criado 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 "Criado em"
#. 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 "Nome a Apresentar"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Atualizado pela última vez 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 "Atualizado pela última vez em"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Nome"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Última Modificação em"
#~ msgid "Invoice"
#~ msgstr "Fatura"

View File

@@ -0,0 +1,289 @@
# 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: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n"
"Language: ro\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%100>19)||((n%100==0)&&(n!=0)))?"
"2: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
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__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 "Creat de"
#. 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 "Creat la"
#. 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 "Nume Afişat"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Ultima actualizare făcută de"
#. 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 "Ultima actualizare la"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Nume"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Ultima actualizare în"
#~ msgid "Stock Move"
#~ msgstr "Mișcare stoc"
#~ msgid "Invoice"
#~ msgstr "Factura"
#~ msgid "Quotation"
#~ msgstr "Quotation"

View File

@@ -0,0 +1,281 @@
# 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: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || "
"(n%100>=11 && n%100<=14)? 2 : 3);\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
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__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,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__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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Invoice"
#~ msgstr "Счет"

View File

@@ -0,0 +1,271 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_automatic_workflow
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \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
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__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,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__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__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
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_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__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
msgid "Workflow Warning"
msgstr ""

View File

@@ -0,0 +1,279 @@
# 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: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n"
"Language: sk\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
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__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 "Vytvoril"
#. 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 "Vytvorené"
#. 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 "Zobraziť meno"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Naposledy upravoval"
#. 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 "Naposledy upravované"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Meno"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Posledná modifikácia"

View File

@@ -0,0 +1,280 @@
# 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: Slovak (Slovakia) (https://www.transifex.com/oca/teams/23907/"
"sk_SK/)\n"
"Language: sk_SK\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
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__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,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__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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Invoice"
#~ msgstr "Faktúra"

View File

@@ -0,0 +1,299 @@
# 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: 2023-04-11 13:22+0000\n"
"Last-Translator: Matjaz Mozetic <matjaz@luxim.si>\n"
"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n"
"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
"n%100==4 ? 2 : 3;\n"
"X-Generator: Weblate 4.14.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 "Samodejni delotok"
#. module: sale_automatic_workflow
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
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 "Samodejne informacije"
#. 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 ""
"Pozor, če shranite nalog s temi nastavitvami, se lahko samodejno potrdi tudi "
"med urejanjem."
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice
msgid "Create Invoice"
msgstr "Ustvari račun"
#. 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 "Ustvaril"
#. 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 "Ustvarjeno"
#. 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 "Prikazani 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 "Vsili datum računa"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Zadnji posodobil"
#. 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 "Zadnjič posodobljeno"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Naziv"
#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Order Configuration"
msgstr "Nastavitve naloga"
#. 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__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
msgid "Sale Workflow Process"
msgstr "Proces prodajnega delotoka"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
msgid "Sales Journal"
msgstr "Prodajni dnevnik"
#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_sale_order
#, fuzzy
msgid "Sales Order"
msgstr "Potrdi nalog"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id
msgid "Sales Team"
msgstr "Prodajna ekipa"
#. 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_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 "Določi privzeti prodajni dnevnik za izdajo računov"
#. 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__validate_invoice
msgid "Validate Invoice"
msgstr "Potrdi račun"
#. 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 "Potrdi nalog"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning
msgid "Warning Message"
msgstr "Opozorilno sporočilo"
#. 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 "Če označeno, bo datum računa enak datumu naloga"
#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Workflow Options"
msgstr "Opcije delotoka"
#. module: sale_automatic_workflow
#. odoo-python
#: code:addons/sale_automatic_workflow/models/sale_order.py:0
msgid "Workflow Warning"
msgstr "Opozorilo delotoka"
#~ msgid "Deliver all products at once"
#~ msgstr "Dobavi vse proizvode hkrati"
#~ msgid "Deliver each product when available"
#~ msgstr "Dobavi vsak proizvod, ko je na voljo"
#~ msgid "Last Modified on"
#~ msgstr "Zadnjič spremenjeno"
#~ msgid "Shipping Policy"
#~ msgstr "Pravila odpošiljanja"
#~ msgid "Stock Move"
#~ msgstr "Premik zaloge"
#~ msgid "Invoice"
#~ msgstr "Račun"

View File

@@ -0,0 +1,281 @@
# 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: Slovenian (Slovenia) (https://www.transifex.com/oca/"
"teams/23907/sl_SI/)\n"
"Language: sl_SI\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
"n%100==4 ? 2 : 3);\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
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__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,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__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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Quotation"
#~ msgstr "Quotation"

View File

@@ -0,0 +1,277 @@
# 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: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n"
"Language: sr\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
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__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 "Kreiran"
#. 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__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 "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__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
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_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__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
msgid "Workflow Warning"
msgstr ""

View File

@@ -0,0 +1,281 @@
# 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: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/"
"sr@latin/)\n"
"Language: sr@latin\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
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__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 "Kreiran"
#. 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 "Ime za prikaz"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Zadnja izmjena"
#. 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 "Zadnja izmjena"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Zadnja izmjena"

View File

@@ -0,0 +1,282 @@
# 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: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n"
"Language: sv\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
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__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 "Skapad av"
#. 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 "Skapad den"
#. 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 "Visa namn"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Senast uppdaterad av"
#. 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 "Senast uppdaterad"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Namn"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Senast redigerad"
#~ msgid "Invoice"
#~ msgstr "Faktura"

View File

@@ -0,0 +1,282 @@
# 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: Thai (https://www.transifex.com/oca/teams/23907/th/)\n"
"Language: th\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\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
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__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,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__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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
#~ msgid "Invoice"
#~ msgstr "ใบแจ้งหนี้"

View File

@@ -0,0 +1,288 @@
# 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: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n"
"Language: tr\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 "Otomatik İş akışı"
#. module: sale_automatic_workflow
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
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__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 "Oluşturan"
#. 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 "Oluşturuldu"
#. 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 "Görünen İsim"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Son güncelleyen"
#. 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 "Son güncellenme"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Adı"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Son değişiklik"
#~ msgid "Stock Move"
#~ msgstr "Stok Taşı"
#~ msgid "Invoice"
#~ msgstr "Fatura"
#~ msgid "Quotation"
#~ msgstr "Quotation"

View File

@@ -0,0 +1,298 @@
# 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: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/"
"tr_TR/)\n"
"Language: tr_TR\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 "Otomatik iş akışı"
#. module: sale_automatic_workflow
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
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 "Otomasyon bilgisi"
#. 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 ""
"Dikkatli olun, eğer siparişi bu ayarla kaydederseniz, sadece düzenliyor "
"olsanız bile, otomatik olarak onaylanabilir. "
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice
msgid "Create Invoice"
msgstr "Fatura oluştur"
#. 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 "Oluşturan"
#. 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 "Oluşturulma tarihi"
#. 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 "Görünen ad"
#. 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 "Kimlik"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "En son güncelleyen "
#. 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 "En son güncelleme tarihi"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Ad"
#. module: sale_automatic_workflow
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
msgid "Order Configuration"
msgstr "Siparişin yapılandırılması"
#. 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__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
msgid "Sale Workflow Process"
msgstr "Satış iş akışı süreci"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
msgid "Sales Journal"
msgstr "Satış defteri"
#. module: sale_automatic_workflow
#: model:ir.model,name:sale_automatic_workflow.model_sale_order
#, fuzzy
msgid "Sales Order"
msgstr "Siparişi onayla"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id
msgid "Sales Team"
msgstr "Satış takımı"
#. 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_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 "Varsayılan satış defterini faturada kullanmak için ayarla"
#. 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__validate_invoice
msgid "Validate Invoice"
msgstr "Faturayı onayla"
#. 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 "Siparişi onayla"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning
msgid "Warning Message"
msgstr "Uyarı mesajı"
#. 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 "İş akışı tercihleri"
#. module: sale_automatic_workflow
#. odoo-python
#: code:addons/sale_automatic_workflow/models/sale_order.py:0
msgid "Workflow Warning"
msgstr "İş akışı uyarısı"
#~ msgid "Deliver all products at once"
#~ msgstr "Bütün ürünleri birlikte teslim et"
#~ msgid "Deliver each product when available"
#~ msgstr "Her ürünü uygun olduğunda teslim et"
#~ msgid "Last Modified on"
#~ msgstr "En son güncelleme tarihi"
#~ msgid "Shipping Policy"
#~ msgstr "Nakliye politikas"
#~ msgid "Stock Move"
#~ msgstr "Stok hareketi"
#~ msgid "Invoice"
#~ msgstr "Fatura"

View File

@@ -0,0 +1,280 @@
# 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: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n"
"Language: uk\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
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__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,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__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 "Name"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Остання модифікація"

View File

@@ -0,0 +1,279 @@
# 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: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n"
"Language: vi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\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
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__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 "Được tạo bởi"
#. 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 "Được tạo vào"
#. 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 "Tên hiển thị"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Last Updated by"
#. 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 "Cập nhật lần cuối vào"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Tên"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "Sửa lần cuối vào"

View File

@@ -0,0 +1,283 @@
# 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: Vietnamese (Viet Nam) (https://www.transifex.com/oca/"
"teams/23907/vi_VN/)\n"
"Language: vi_VN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\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
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__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 "Tạo bởi"
#. 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 "Tạo vào"
#. 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__write_uid
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
msgid "Last Updated by"
msgstr "Cập nhật lần cuối bởi"
#. 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 "Cập nhật lần cuối vào"
#. module: sale_automatic_workflow
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
msgid "Name"
msgstr "Tên"
#. 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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Stock Move"
#~ msgstr "Dịch chuyển kho"
#~ msgid "Quotation"
#~ msgstr "Quotation"

View File

@@ -0,0 +1,331 @@
# 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: 2020-07-08 09:19+0000\n"
"Last-Translator: 黎伟杰 <674416404@qq.com>\n"
"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/"
"zh_CN/)\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 3.10\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
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__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,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__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__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
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
#, fuzzy
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_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__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
msgid "Workflow Warning"
msgstr "工作流程警告"
#~ msgid "Confirm and Transfer Picking"
#~ msgstr "确认并转移拣货"
#~ msgid "Deliver all products at once"
#~ msgstr "一次交付所有产品"
#~ msgid "Deliver each product when available"
#~ msgstr "交付每个可用的产品"
#~ msgid "Last Modified on"
#~ msgstr "最后修改时间"
#~ msgid "Picking Filter"
#~ msgstr "拣货筛选器"
#~ msgid "Picking Filter Domain"
#~ msgstr "拣货筛选域"
#~ msgid "Shipping Policy"
#~ msgstr "交货策略"
#~ msgid "Stock Move"
#~ msgstr "库存移动"
#~ msgid "Transfer"
#~ msgstr "调拨"
#~ msgid "Automatic Workflow Create Invoice Filter"
#~ msgstr "自动化工作流创建发票筛选器"
#~ msgid "Automatic Workflow Order Filter"
#~ msgstr "自动化工作流订单筛选器"
#~ msgid "Automatic Workflow Picking Filter"
#~ msgstr "自动化工作流拣货筛选器"
#~ msgid "Automatic Workflow Sale Done Filter"
#~ msgstr "自动化工作流销售完成筛选器"
#~ msgid "Automatic Workflow Validate Invoice Filter"
#~ msgstr "自动化工作流验证发票筛选器"
#~ msgid "Journal Entries"
#~ msgstr "日记账"
#~ msgid "Invoice"
#~ msgstr "发票"
#~ msgid "Quotation"
#~ msgstr "Quotation"

View File

@@ -0,0 +1,283 @@
# 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: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/"
"zh_TW/)\n"
"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=1; plural=0;\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
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__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,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__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__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
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_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__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
msgid "Workflow Warning"
msgstr ""
#~ msgid "Last Modified on"
#~ msgstr "最後修改:"
#~ msgid "Invoice"
#~ msgstr "發票"

View File

@@ -0,0 +1,4 @@
from . import account_move
from . import automatic_workflow_job
from . import sale_order
from . import sale_workflow_process

View File

@@ -0,0 +1,14 @@
# Copyright 2011 Akretion Sébastien BEAU <sebastien.beau@akretion.com>
# Copyright 2013 Camptocamp SA (author: Guewen Baconnier)
# Copyright 2016 Sodexis
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import fields, models
class AccountMove(models.Model):
_inherit = "account.move"
workflow_process_id = fields.Many2one(
comodel_name="sale.workflow.process", string="Sale Workflow Process", copy=False
)

View File

@@ -0,0 +1,223 @@
# Copyright 2011 Akretion Sébastien BEAU <sebastien.beau@akretion.com>
# Copyright 2013 Camptocamp SA (author: Guewen Baconnier)
# Copyright 2016 Sodexis
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
import logging
from contextlib import contextmanager
from odoo import api, fields, models
from odoo.tools.safe_eval import safe_eval
_logger = logging.getLogger(__name__)
@contextmanager
def savepoint(cr):
"""Open a savepoint on the cursor, then yield.
Warning: using this method, the exceptions are logged then discarded.
"""
try:
with cr.savepoint():
yield
except Exception:
_logger.exception("Error during an automatic workflow action.")
class AutomaticWorkflowJob(models.Model):
"""Scheduler that will play automatically the validation of
invoices, pickings..."""
_name = "automatic.workflow.job"
_description = (
"Scheduler that will play automatically the validation of"
" invoices, pickings..."
)
def _do_validate_sale_order(self, sale, domain_filter):
"""Validate a sales order, filter ensure no duplication"""
if not self.env["sale.order"].search_count(
[("id", "=", sale.id)] + domain_filter
):
return f"{sale.display_name} {sale} job bypassed"
sale.action_confirm()
return f"{sale.display_name} {sale} confirmed successfully"
def _do_send_order_confirmation_mail(self, sale):
"""Send order confirmation mail, while filtering to make sure the order is
confirmed with _do_validate_sale_order() function"""
if not self.env["sale.order"].search_count(
[("id", "=", sale.id), ("state", "=", "sale")]
):
return f"{sale.display_name} {sale} job bypassed"
if sale.user_id:
sale = sale.with_user(sale.user_id)
sale._send_order_confirmation_mail()
return f"{sale.display_name} {sale} send order confirmation mail successfully"
@api.model
def _validate_sale_orders(self, order_filter):
sale_obj = self.env["sale.order"]
sales = sale_obj.search(order_filter)
_logger.debug("Sale Orders to validate: %s", sales.ids)
for sale in sales:
with savepoint(self.env.cr):
self._do_validate_sale_order(
sale.with_company(sale.company_id), order_filter
)
if self.env.context.get("send_order_confirmation_mail"):
self._do_send_order_confirmation_mail(sale)
def _do_create_invoice(self, sale, domain_filter):
"""Create an invoice for a sales order, filter ensure no duplication"""
if not self.env["sale.order"].search_count(
[("id", "=", sale.id)] + domain_filter
):
return f"{sale.display_name} {sale} job bypassed"
payment = self.env["sale.advance.payment.inv"].create(
{"sale_order_ids": sale.ids}
)
payment.with_context(active_model="sale.order").create_invoices()
return f"{sale.display_name} {sale} create invoice successfully"
@api.model
def _create_invoices(self, create_filter):
sale_obj = self.env["sale.order"]
sales = sale_obj.search(create_filter)
_logger.debug("Sale Orders to create Invoice: %s", sales.ids)
for sale in sales:
with savepoint(self.env.cr):
self._do_create_invoice(
sale.with_company(sale.company_id), create_filter
)
def _do_validate_invoice(self, invoice, domain_filter):
"""Validate an invoice, filter ensure no duplication"""
if not self.env["account.move"].search_count(
[("id", "=", invoice.id)] + domain_filter
):
return f"{invoice.display_name} {invoice} job bypassed"
invoice.with_company(invoice.company_id).action_post()
return f"{invoice.display_name} {invoice} validate invoice successfully"
@api.model
def _validate_invoices(self, validate_invoice_filter):
move_obj = self.env["account.move"]
invoices = move_obj.search(validate_invoice_filter)
_logger.debug("Invoices to validate: %s", invoices.ids)
for invoice in invoices:
with savepoint(self.env.cr):
self._do_validate_invoice(
invoice.with_company(invoice.company_id), validate_invoice_filter
)
def _do_sale_done(self, sale, domain_filter):
"""Lock a sales order, filter ensure no duplication"""
if not self.env["sale.order"].search_count(
[("id", "=", sale.id)] + domain_filter
):
return f"{sale.display_name} {sale} job bypassed"
sale.action_lock()
return f"{sale.display_name} {sale} locked successfully"
@api.model
def _sale_done(self, sale_done_filter):
sales = self.env["sale.order"].search(sale_done_filter)
_logger.debug("Sale Orders to done: %s", sales.ids)
for sale in sales:
with savepoint(self.env.cr):
self._do_sale_done(sale.with_company(sale.company_id), sale_done_filter)
def _prepare_dict_account_payment(self, invoice):
partner_type = (
invoice.move_type in ("out_invoice", "out_refund")
and "customer"
or "supplier"
)
return {
"reconciled_invoice_ids": [(6, 0, invoice.ids)],
"amount": invoice.amount_residual,
"partner_id": invoice.partner_id.id,
"partner_type": partner_type,
"date": fields.Date.context_today(self),
"currency_id": invoice.currency_id.id,
}
@api.model
def _register_payments(self, payment_filter):
invoice_obj = self.env["account.move"]
invoices = invoice_obj.search(payment_filter)
_logger.debug("Invoices to Register Payment: %s", invoices.ids)
for invoice in invoices:
with savepoint(self.env.cr):
self._register_payment_invoice(invoice)
return
def _register_payment_invoice(self, invoice):
payment = self.env["account.payment"].create(
self._prepare_dict_account_payment(invoice)
)
payment.action_post()
domain = [
("account_type", "in", ("asset_receivable", "liability_payable")),
("reconciled", "=", False),
]
payment_lines = payment.move_id.line_ids.filtered_domain(domain)
lines = invoice.line_ids
for account in payment_lines.account_id:
(payment_lines + lines).filtered_domain(
[("account_id", "=", account.id), ("reconciled", "=", False)]
).reconcile()
return payment
@api.model
def _handle_pickings(self, sale_workflow):
pass
def _sale_workflow_domain(self, workflow):
return [("workflow_process_id", "=", workflow.id)]
@api.model
def run_with_workflow(self, sale_workflow):
workflow_domain = self._sale_workflow_domain(sale_workflow)
if sale_workflow.validate_order:
self.with_context(
send_order_confirmation_mail=sale_workflow.send_order_confirmation_mail
)._validate_sale_orders(
safe_eval(sale_workflow.order_filter_id.domain) + workflow_domain
)
self._handle_pickings(sale_workflow)
if sale_workflow.create_invoice:
self._create_invoices(
safe_eval(sale_workflow.create_invoice_filter_id.domain)
+ workflow_domain
)
if sale_workflow.validate_invoice:
self._validate_invoices(
safe_eval(sale_workflow.validate_invoice_filter_id.domain)
+ workflow_domain
)
if sale_workflow.sale_done:
self._sale_done(
safe_eval(sale_workflow.sale_done_filter_id.domain) + workflow_domain
)
if sale_workflow.register_payment:
self._register_payments(
safe_eval(sale_workflow.payment_filter_id.domain) + workflow_domain
)
@api.model
def _workflow_process_to_run_domain(self):
return []
@api.model
def run(self):
"""Must be called from ir.cron"""
sale_workflow_process = self.env["sale.workflow.process"]
domain = self._workflow_process_to_run_domain()
for sale_workflow in sale_workflow_process.search(domain):
self.run_with_workflow(sale_workflow)
return True

View File

@@ -0,0 +1,89 @@
# Copyright 2011 Akretion Sébastien BEAU <sebastien.beau@akretion.com>
# Copyright 2013 Camptocamp SA (author: Guewen Baconnier)
# Copyright 2016 Sodexis
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import api, fields, models
from odoo.tools import float_compare
class SaleOrder(models.Model):
_inherit = "sale.order"
workflow_process_id = fields.Many2one(
comodel_name="sale.workflow.process",
string="Automatic Workflow",
ondelete="restrict",
copy=False,
)
all_qty_delivered = fields.Boolean(
compute="_compute_all_qty_delivered",
string="All quantities delivered",
store=True,
)
@api.depends("order_line.qty_delivered", "order_line.product_uom_qty")
def _compute_all_qty_delivered(self):
precision = self.env["decimal.precision"].precision_get(
"Product Unit of Measure"
)
for order in self:
order.all_qty_delivered = all(
line.product_id.type == "service"
or float_compare(
line.qty_delivered, line.product_uom_qty, precision_digits=precision
)
== 0
for line in order.order_line
)
def _prepare_invoice(self):
invoice_vals = super()._prepare_invoice()
workflow = self.workflow_process_id
if not workflow:
return invoice_vals
invoice_vals["workflow_process_id"] = workflow.id
if workflow.invoice_date_is_order_date:
invoice_vals["invoice_date"] = fields.Date.context_today(
self, self.date_order
)
if workflow.property_journal_id:
invoice_vals["journal_id"] = workflow.property_journal_id.id
return invoice_vals
@api.onchange("workflow_process_id")
def _onchange_workflow_process_id(self):
if self.workflow_process_id.warning:
warning = {
"title": self.env._("Workflow Warning"),
"message": self.workflow_process_id.warning,
}
return {"warning": warning}
@api.depends("partner_id", "user_id", "workflow_process_id")
def _compute_team_id(self): # pylint: disable=W8110
super()._compute_team_id()
if self.workflow_process_id.team_id:
self.team_id = self.workflow_process_id.team_id.id
def _create_invoices(self, grouped=False, final=False, date=None):
for order in self:
if not order.workflow_process_id.invoice_service_delivery:
continue
for line in order.order_line:
if line.qty_delivered_method == "manual" and not line.qty_delivered:
line.write({"qty_delivered": line.product_uom_qty})
return super()._create_invoices(grouped=grouped, final=final, date=date)
def write(self, vals):
if vals.get("state") == "sale" and vals.get("date_order"):
sales_keep_order_date = self.filtered(
lambda sale: sale.workflow_process_id.invoice_date_is_order_date
)
if sales_keep_order_date:
new_vals = vals.copy()
del new_vals["date_order"]
res = super(SaleOrder, sales_keep_order_date).write(new_vals)
res |= super(SaleOrder, self - sales_keep_order_date).write(vals)
return res
return super().write(vals)

View File

@@ -0,0 +1,113 @@
# Copyright 2011 Akretion Sébastien BEAU <sebastien.beau@akretion.com>
# Copyright 2013 Camptocamp SA (author: Guewen Baconnier)
# Copyright 2016 Sodexis
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import api, fields, models
class SaleWorkflowProcess(models.Model):
"""A workflow process is the setup of the automation of a sales order.
Each sales order can be linked to a workflow process.
Then, the options of the workflow will change how the sales order
behave, and how it is automatized.
A workflow process may be linked with a Sales payment method, so
each time a payment method is used, the workflow will be applied.
"""
_name = "sale.workflow.process"
_description = "Sale Workflow Process"
@api.model
def _default_filter(self, xmlid):
record = self.env.ref(xmlid, raise_if_not_found=False)
if record:
return record
return self.env["ir.filters"].browse()
name = fields.Char(required=True)
validate_order = fields.Boolean()
send_order_confirmation_mail = fields.Boolean(
help="When checked, after order confirmation, a confirmation email will be "
"sent (if not already sent).",
)
order_filter_domain = fields.Text(
string="Order Filter Domain", related="order_filter_id.domain"
)
create_invoice = fields.Boolean()
create_invoice_filter_domain = fields.Text(
string="Create Invoice Filter Domain", related="create_invoice_filter_id.domain"
)
validate_invoice = fields.Boolean()
validate_invoice_filter_domain = fields.Text(
string="Validate Invoice Filter Domain",
related="validate_invoice_filter_id.domain",
)
invoice_date_is_order_date = fields.Boolean(
string="Force Invoice Date",
help="When checked, the invoice date will be " "the same than the order's date",
)
invoice_service_delivery = fields.Boolean(
string="Invoice Service on delivery",
help="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",
)
sale_done = fields.Boolean()
sale_done_filter_domain = fields.Text(
string="Sale Done Filter Domain", related="sale_done_filter_id.domain"
)
warning = fields.Text(
"Warning Message",
translate=True,
help="If set, displays the message when an user"
"selects the process on a sale order",
)
team_id = fields.Many2one(comodel_name="crm.team", string="Sales Team")
property_journal_id = fields.Many2one(
comodel_name="account.journal",
company_dependent=True,
string="Sales Journal",
help="Set default journal to use on invoice",
)
order_filter_id = fields.Many2one(
"ir.filters",
default=lambda self: self._default_filter(
"sale_automatic_workflow.automatic_workflow_order_filter"
),
)
create_invoice_filter_id = fields.Many2one(
"ir.filters",
string="Create Invoice Filter",
default=lambda self: self._default_filter(
"sale_automatic_workflow.automatic_workflow_create_invoice_filter"
),
)
validate_invoice_filter_id = fields.Many2one(
"ir.filters",
string="Validate Invoice Filter",
default=lambda self: self._default_filter(
"sale_automatic_workflow." "automatic_workflow_validate_invoice_filter"
),
)
sale_done_filter_id = fields.Many2one(
"ir.filters",
string="Sale Done Filter",
default=lambda self: self._default_filter(
"sale_automatic_workflow.automatic_workflow_sale_done_filter"
),
)
payment_filter_id = fields.Many2one(
comodel_name="ir.filters",
string="Register Payment Invoice Filter",
default=lambda self: self._default_filter(
"sale_automatic_workflow.automatic_workflow_payment_filter"
),
)
register_payment = fields.Boolean()
payment_filter_domain = fields.Text(
related="payment_filter_id.domain",
)

View File

@@ -0,0 +1,3 @@
[build-system]
requires = ["whool"]
build-backend = "whool.buildapi"

View File

@@ -0,0 +1,14 @@
- Guewen Baconnier
- Beau Sebastien
- Leonardo Pistone
- Stéphane Bidoul
- Damien Crier
- Alexandre Fayolle
- Sodexis
- Dave Lasley \<<dave@laslabs.com>\>
- Akim Juillerat \<<akim.juillerat@camptocamp.com>\>
- Thomas Fossoul \<<thomas@niboo.com>\>
- Phuc Tran Thanh \<<phuc@trobz.com>\>
- Sander Lienaerts \<<sander.lienaerts@codeforward.nl>\>
- Tri Doan \<<tridm@trobz.com>\>
- Chau Le \<<chaulb@trobz.com>\>

View File

@@ -0,0 +1,3 @@
The development of this module has been financially supported by:
- Camptocamp

View File

@@ -0,0 +1,19 @@
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
- Confirm the picking
This module is used by Magentoerpconnect and Prestashoperpconnect. It is
well suited for other E-Commerce connectors as well.

View File

@@ -0,0 +1,4 @@
To use this module, you need to:
1. Go to *Sale \> Configuration \> Automatic Workflow \> Automatic Workflow
2. You can create/edit/delete automatic workflow

View File

@@ -0,0 +1,5 @@
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
access_sale_workflow_process_user,sale_automatic_workflow_payment_sale_workflow_process_user,model_sale_workflow_process,base.group_user,1,0,0,0
access_sale_workflow_process_manager,sale_automatic_workflow_payment_sale_workflow_process_manager,model_sale_workflow_process,sales_team.group_sale_manager,1,1,1,1
access_automatic_workflow_job_user,sale_automatic_workflow_payment_automatic_workflow_job_user,model_automatic_workflow_job,base.group_user,1,0,0,0
access_automatic_workflow_job_manager,sale_automatic_workflow_payment_automatic_workflow_job_manager,model_automatic_workflow_job,sales_team.group_sale_manager,1,1,1,1
1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
2 access_sale_workflow_process_user sale_automatic_workflow_payment_sale_workflow_process_user model_sale_workflow_process base.group_user 1 0 0 0
3 access_sale_workflow_process_manager sale_automatic_workflow_payment_sale_workflow_process_manager model_sale_workflow_process sales_team.group_sale_manager 1 1 1 1
4 access_automatic_workflow_job_user sale_automatic_workflow_payment_automatic_workflow_job_user model_automatic_workflow_job base.group_user 1 0 0 0
5 access_automatic_workflow_job_manager sale_automatic_workflow_payment_automatic_workflow_job_manager model_automatic_workflow_job sales_team.group_sale_manager 1 1 1 1

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

View File

@@ -0,0 +1,477 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
<title>Sale Automatic Workflow</title>
<style type="text/css">
/*
:Author: David Goodger (goodger@python.org)
:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $
:Copyright: This stylesheet has been placed in the public domain.
Default cascading style sheet for the HTML output of Docutils.
Despite the name, some widely supported CSS2 features are used.
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
customize this style sheet.
*/
/* used to remove borders from tables and images */
.borderless, table.borderless td, table.borderless th {
border: 0 }
table.borderless td, table.borderless th {
/* Override padding for "table.docutils td" with "! important".
The right padding separates the table cells. */
padding: 0 0.5em 0 0 ! important }
.first {
/* Override more specific margin styles with "! important". */
margin-top: 0 ! important }
.last, .with-subtitle {
margin-bottom: 0 ! important }
.hidden {
display: none }
.subscript {
vertical-align: sub;
font-size: smaller }
.superscript {
vertical-align: super;
font-size: smaller }
a.toc-backref {
text-decoration: none ;
color: black }
blockquote.epigraph {
margin: 2em 5em ; }
dl.docutils dd {
margin-bottom: 0.5em }
object[type="image/svg+xml"], object[type="application/x-shockwave-flash"] {
overflow: hidden;
}
/* Uncomment (and remove this text!) to get bold-faced definition list terms
dl.docutils dt {
font-weight: bold }
*/
div.abstract {
margin: 2em 5em }
div.abstract p.topic-title {
font-weight: bold ;
text-align: center }
div.admonition, div.attention, div.caution, div.danger, div.error,
div.hint, div.important, div.note, div.tip, div.warning {
margin: 2em ;
border: medium outset ;
padding: 1em }
div.admonition p.admonition-title, div.hint p.admonition-title,
div.important p.admonition-title, div.note p.admonition-title,
div.tip p.admonition-title {
font-weight: bold ;
font-family: sans-serif }
div.attention p.admonition-title, div.caution p.admonition-title,
div.danger p.admonition-title, div.error p.admonition-title,
div.warning p.admonition-title, .code .error {
color: red ;
font-weight: bold ;
font-family: sans-serif }
/* Uncomment (and remove this text!) to get reduced vertical space in
compound paragraphs.
div.compound .compound-first, div.compound .compound-middle {
margin-bottom: 0.5em }
div.compound .compound-last, div.compound .compound-middle {
margin-top: 0.5em }
*/
div.dedication {
margin: 2em 5em ;
text-align: center ;
font-style: italic }
div.dedication p.topic-title {
font-weight: bold ;
font-style: normal }
div.figure {
margin-left: 2em ;
margin-right: 2em }
div.footer, div.header {
clear: both;
font-size: smaller }
div.line-block {
display: block ;
margin-top: 1em ;
margin-bottom: 1em }
div.line-block div.line-block {
margin-top: 0 ;
margin-bottom: 0 ;
margin-left: 1.5em }
div.sidebar {
margin: 0 0 0.5em 1em ;
border: medium outset ;
padding: 1em ;
background-color: #ffffee ;
width: 40% ;
float: right ;
clear: right }
div.sidebar p.rubric {
font-family: sans-serif ;
font-size: medium }
div.system-messages {
margin: 5em }
div.system-messages h1 {
color: red }
div.system-message {
border: medium outset ;
padding: 1em }
div.system-message p.system-message-title {
color: red ;
font-weight: bold }
div.topic {
margin: 2em }
h1.section-subtitle, h2.section-subtitle, h3.section-subtitle,
h4.section-subtitle, h5.section-subtitle, h6.section-subtitle {
margin-top: 0.4em }
h1.title {
text-align: center }
h2.subtitle {
text-align: center }
hr.docutils {
width: 75% }
img.align-left, .figure.align-left, object.align-left, table.align-left {
clear: left ;
float: left ;
margin-right: 1em }
img.align-right, .figure.align-right, object.align-right, table.align-right {
clear: right ;
float: right ;
margin-left: 1em }
img.align-center, .figure.align-center, object.align-center {
display: block;
margin-left: auto;
margin-right: auto;
}
table.align-center {
margin-left: auto;
margin-right: auto;
}
.align-left {
text-align: left }
.align-center {
clear: both ;
text-align: center }
.align-right {
text-align: right }
/* reset inner alignment in figures */
div.align-right {
text-align: inherit }
/* div.align-center * { */
/* text-align: left } */
.align-top {
vertical-align: top }
.align-middle {
vertical-align: middle }
.align-bottom {
vertical-align: bottom }
ol.simple, ul.simple {
margin-bottom: 1em }
ol.arabic {
list-style: decimal }
ol.loweralpha {
list-style: lower-alpha }
ol.upperalpha {
list-style: upper-alpha }
ol.lowerroman {
list-style: lower-roman }
ol.upperroman {
list-style: upper-roman }
p.attribution {
text-align: right ;
margin-left: 50% }
p.caption {
font-style: italic }
p.credits {
font-style: italic ;
font-size: smaller }
p.label {
white-space: nowrap }
p.rubric {
font-weight: bold ;
font-size: larger ;
color: maroon ;
text-align: center }
p.sidebar-title {
font-family: sans-serif ;
font-weight: bold ;
font-size: larger }
p.sidebar-subtitle {
font-family: sans-serif ;
font-weight: bold }
p.topic-title {
font-weight: bold }
pre.address {
margin-bottom: 0 ;
margin-top: 0 ;
font: inherit }
pre.literal-block, pre.doctest-block, pre.math, pre.code {
margin-left: 2em ;
margin-right: 2em }
pre.code .ln { color: gray; } /* line numbers */
pre.code, code { background-color: #eeeeee }
pre.code .comment, code .comment { color: #5C6576 }
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
pre.code .literal.string, code .literal.string { color: #0C5404 }
pre.code .name.builtin, code .name.builtin { color: #352B84 }
pre.code .deleted, code .deleted { background-color: #DEB0A1}
pre.code .inserted, code .inserted { background-color: #A3D289}
span.classifier {
font-family: sans-serif ;
font-style: oblique }
span.classifier-delimiter {
font-family: sans-serif ;
font-weight: bold }
span.interpreted {
font-family: sans-serif }
span.option {
white-space: nowrap }
span.pre {
white-space: pre }
span.problematic, pre.problematic {
color: red }
span.section-subtitle {
/* font-size relative to parent (h1..h6 element) */
font-size: 80% }
table.citation {
border-left: solid 1px gray;
margin-left: 1px }
table.docinfo {
margin: 2em 4em }
table.docutils {
margin-top: 0.5em ;
margin-bottom: 0.5em }
table.footnote {
border-left: solid 1px black;
margin-left: 1px }
table.docutils td, table.docutils th,
table.docinfo td, table.docinfo th {
padding-left: 0.5em ;
padding-right: 0.5em ;
vertical-align: top }
table.docutils th.field-name, table.docinfo th.docinfo-name {
font-weight: bold ;
text-align: left ;
white-space: nowrap ;
padding-left: 0 }
/* "booktabs" style (no vertical lines) */
table.docutils.booktabs {
border: 0px;
border-top: 2px solid;
border-bottom: 2px solid;
border-collapse: collapse;
}
table.docutils.booktabs * {
border: 0px;
}
table.docutils.booktabs th {
border-bottom: thin solid;
text-align: left;
}
h1 tt.docutils, h2 tt.docutils, h3 tt.docutils,
h4 tt.docutils, h5 tt.docutils, h6 tt.docutils {
font-size: 100% }
ul.auto-toc {
list-style-type: none }
</style>
</head>
<body>
<div class="document" id="sale-automatic-workflow">
<h1 class="title">Sale Automatic Workflow</h1>
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:6e0dc4ec84063576e844140f8f2bc12dba0d7bad29f9dce2ea492d7a10720810
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/sale-workflow/tree/18.0/sale_automatic_workflow"><img alt="OCA/sale-workflow" src="https://img.shields.io/badge/github-OCA%2Fsale--workflow-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/sale-workflow-18-0/sale-workflow-18-0-sale_automatic_workflow"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/sale-workflow&amp;target_branch=18.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
<p>Create workflows with more or less automatization and apply it on sales
orders.</p>
<p>A workflow can:</p>
<ul class="simple">
<li>Apply default values:<ul>
<li>Shipping Policy (Deliver each product when available or Deliver all
products at once)</li>
<li>Set the invoices date to the sale orders date</li>
<li>Set a sales team</li>
</ul>
</li>
<li>Apply automatic actions:<ul>
<li>Validate the order (only if paid, always, never)</li>
<li>Send order confirmation mail (only when order confirmed)</li>
<li>Create an invoice</li>
<li>Validate the invoice</li>
<li>Confirm the picking</li>
</ul>
</li>
</ul>
<p>This module is used by Magentoerpconnect and Prestashoperpconnect. It is
well suited for other E-Commerce connectors as well.</p>
<p><strong>Table of contents</strong></p>
<div class="contents local topic" id="contents">
<ul class="simple">
<li><a class="reference internal" href="#usage" id="toc-entry-1">Usage</a></li>
<li><a class="reference internal" href="#bug-tracker" id="toc-entry-2">Bug Tracker</a></li>
<li><a class="reference internal" href="#credits" id="toc-entry-3">Credits</a><ul>
<li><a class="reference internal" href="#authors" id="toc-entry-4">Authors</a></li>
<li><a class="reference internal" href="#contributors" id="toc-entry-5">Contributors</a></li>
<li><a class="reference internal" href="#other-credits" id="toc-entry-6">Other credits</a></li>
<li><a class="reference internal" href="#maintainers" id="toc-entry-7">Maintainers</a></li>
</ul>
</li>
</ul>
</div>
<div class="section" id="usage">
<h1><a class="toc-backref" href="#toc-entry-1">Usage</a></h1>
<p>To use this module, you need to:</p>
<ol class="arabic simple">
<li>Go to *Sale &gt; Configuration &gt; Automatic Workflow &gt; Automatic
Workflow</li>
<li>You can create/edit/delete automatic workflow</li>
</ol>
</div>
<div class="section" id="bug-tracker">
<h1><a class="toc-backref" href="#toc-entry-2">Bug Tracker</a></h1>
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/sale-workflow/issues">GitHub Issues</a>.
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
<a class="reference external" href="https://github.com/OCA/sale-workflow/issues/new?body=module:%20sale_automatic_workflow%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
<p>Do not contact contributors directly about support or help with technical issues.</p>
</div>
<div class="section" id="credits">
<h1><a class="toc-backref" href="#toc-entry-3">Credits</a></h1>
<div class="section" id="authors">
<h2><a class="toc-backref" href="#toc-entry-4">Authors</a></h2>
<ul class="simple">
<li>Akretion</li>
<li>Camptocamp</li>
<li>Sodexis</li>
</ul>
</div>
<div class="section" id="contributors">
<h2><a class="toc-backref" href="#toc-entry-5">Contributors</a></h2>
<ul class="simple">
<li>Guewen Baconnier</li>
<li>Beau Sebastien</li>
<li>Leonardo Pistone</li>
<li>Stéphane Bidoul</li>
<li>Damien Crier</li>
<li>Alexandre Fayolle</li>
<li>Sodexis</li>
<li>Dave Lasley &lt;<a class="reference external" href="mailto:dave&#64;laslabs.com">dave&#64;laslabs.com</a>&gt;</li>
<li>Akim Juillerat &lt;<a class="reference external" href="mailto:akim.juillerat&#64;camptocamp.com">akim.juillerat&#64;camptocamp.com</a>&gt;</li>
<li>Thomas Fossoul &lt;<a class="reference external" href="mailto:thomas&#64;niboo.com">thomas&#64;niboo.com</a>&gt;</li>
<li>Phuc Tran Thanh &lt;<a class="reference external" href="mailto:phuc&#64;trobz.com">phuc&#64;trobz.com</a>&gt;</li>
<li>Sander Lienaerts &lt;<a class="reference external" href="mailto:sander.lienaerts&#64;codeforward.nl">sander.lienaerts&#64;codeforward.nl</a>&gt;</li>
<li>Tri Doan &lt;<a class="reference external" href="mailto:tridm&#64;trobz.com">tridm&#64;trobz.com</a>&gt;</li>
<li>Chau Le &lt;<a class="reference external" href="mailto:chaulb&#64;trobz.com">chaulb&#64;trobz.com</a>&gt;</li>
</ul>
</div>
<div class="section" id="other-credits">
<h2><a class="toc-backref" href="#toc-entry-6">Other credits</a></h2>
<p>The development of this module has been financially supported by:</p>
<ul class="simple">
<li>Camptocamp</li>
</ul>
</div>
<div class="section" id="maintainers">
<h2><a class="toc-backref" href="#toc-entry-7">Maintainers</a></h2>
<p>This module is maintained by the OCA.</p>
<a class="reference external image-reference" href="https://odoo-community.org">
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
</a>
<p>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.</p>
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/sale-workflow/tree/18.0/sale_automatic_workflow">OCA/sale-workflow</a> project on GitHub.</p>
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
</div>
</div>
</div>
</body>
</html>

View File

@@ -0,0 +1,2 @@
from . import test_automatic_workflow
from . import test_multicompany

View File

@@ -0,0 +1,194 @@
# Copyright 2014 Camptocamp SA (author: Guewen Baconnier)
# Copyright 2020 Camptocamp SA (author: Simone Orsi)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo.tests import tagged
from odoo.tests.common import TransactionCase
from odoo.addons.account.tests.common import AccountTestInvoicingCommon
class TestCommon(TransactionCase):
@classmethod
def setUpClass(cls):
super().setUpClass()
cls.env = cls.env(context=dict(cls.env.context, tracking_disable=True))
class TestAutomaticWorkflowMixin:
def create_sale_order(
self, workflow, override=None, product_type="consu", extra_product_values=None
):
sale_obj = self.env["sale.order"]
partner_values = {"name": "Imperator Caius Julius Caesar Divus"}
partner = self.env["res.partner"].create(partner_values)
extra_product_values = extra_product_values or {}
product_values = {
"name": "Bread",
"list_price": 5,
"type": product_type,
**extra_product_values,
}
product = self.env["product.product"].create(product_values)
self.product_uom_unit = self.env.ref("uom.product_uom_unit")
values = {
"partner_id": partner.id,
"order_line": [
(
0,
0,
{
"name": product.name,
"product_id": product.id,
"product_uom": self.product_uom_unit.id,
"price_unit": product.list_price,
"product_uom_qty": 1,
},
)
],
"workflow_process_id": workflow.id,
}
if override:
values.update(override)
return sale_obj.create(values)
def create_full_automatic(self, override=None):
workflow_obj = self.env["sale.workflow.process"]
values = workflow_obj.create(
{
"name": "Full Automatic",
"validate_order": True,
"create_invoice": True,
"validate_invoice": True,
"invoice_date_is_order_date": True,
}
)
if override:
values.update(override)
return values
def run_job(self):
self.env["automatic.workflow.job"].run()
@tagged("post_install", "-at_install")
class TestMultiCompanyCommon(AccountTestInvoicingCommon):
@classmethod
def create_product(cls, values):
values.update({"type": "consu", "invoice_policy": "order"})
product_template = cls.env["product.template"].create(values)
return product_template.product_variant_id
@classmethod
def setUpClass(cls, chart_template_ref=None):
super().setUpClass()
cls.env = cls.env(
context=dict(
cls.env.context,
tracking_disable=True,
# Compatibility with sale_automatic_workflow_job: even if
# the module is installed, ensure we don't delay a job.
# Thus, we test the usual flow.
queue_job__no_delay=True,
)
)
cls.company_fr = cls.setup_other_company(
name="French company",
currency_id=cls.env.ref("base.EUR").id,
country_id=cls.env.ref("base.fr").id,
)["company"]
cls.company_ch = cls.setup_other_company(
name="Swiss company",
currency_id=cls.env.ref("base.CHF").id,
country_id=cls.env.ref("base.ch").id,
)["company"]
cls.company_be = cls.setup_other_company(
name="Belgian company",
currency_id=cls.env.ref("base.EUR").id,
country_id=cls.env.ref("base.be").id,
)["company"]
cls.company_fr_daughter = cls.setup_other_company(
name="French company daughter",
currency_id=cls.env.ref("base.EUR").id,
country_id=cls.env.ref("base.fr").id,
)["company"]
cls.env.user.company_ids |= cls.company_fr
cls.env.user.company_ids |= cls.company_ch
cls.env.user.company_ids |= cls.company_be
cls.env.user.company_ids |= cls.company_fr_daughter
cls.env.user.company_id = cls.company_fr.id
cls.customer_fr = (
cls.env["res.partner"]
.with_context(default_company_id=cls.company_fr.id)
.create({"name": "Customer FR"})
)
cls.product_fr = cls.create_product({"name": "Evian bottle", "list_price": 2.0})
cls.env.user.company_id = cls.company_ch.id
cls.customer_ch = cls.env["res.partner"].create({"name": "Customer CH"})
cls.product_ch = cls.create_product(
{"name": "Henniez bottle", "list_price": 3.0}
)
cls.env.user.company_id = cls.company_be.id
cls.customer_be = cls.env["res.partner"].create({"name": "Customer BE"})
cls.product_be = (
cls.env["product.template"]
.create(
{
"name": "SPA bottle",
"list_price": 1.5,
"type": "consu",
"invoice_policy": "order",
}
)
.product_variant_id
)
cls.env.user.company_id = cls.company_fr_daughter.id
cls.customer_fr_daughter = cls.env["res.partner"].create(
{"name": "Customer FR Daughter"}
)
cls.product_fr_daughter = cls.create_product(
{"name": "Contrex bottle", "list_price": 1.5}
)
cls.auto_wkf = cls.env.ref("sale_automatic_workflow.automatic_validation")
cls.env.user.company_id = cls.env.ref("base.main_company")
def create_auto_wkf_order(self, company, customer, product, qty):
# We need to change to the proper company
# to pick up correct company dependent fields
SaleOrder = self.env["sale.order"].with_company(company)
self.product_uom_unit = self.env.ref("uom.product_uom_unit")
order = SaleOrder.create(
{
"partner_id": customer.id,
"company_id": company.id,
"workflow_process_id": self.auto_wkf.id,
"order_line": [
(
0,
0,
{
"name": product.name,
"product_id": product.id,
"price_unit": product.list_price,
"product_uom_qty": qty,
"product_uom": self.product_uom_unit.id,
},
)
],
}
)
return order

View File

@@ -0,0 +1,218 @@
# Copyright 2014 Camptocamp SA (author: Guewen Baconnier)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from datetime import timedelta
from unittest import mock
from freezegun import freeze_time
from odoo import fields
from odoo.tests import tagged
from .common import TestAutomaticWorkflowMixin, TestCommon
@tagged("post_install", "-at_install")
class TestAutomaticWorkflow(TestCommon, TestAutomaticWorkflowMixin):
def setUp(self):
super().setUp()
self.env = self.env(
context=dict(
self.env.context,
tracking_disable=True,
# Compatibility with sale_automatic_workflow_job: even if
# the module is installed, ensure we don't delay a job.
# Thus, we test the usual flow.
queue_job__no_delay=True,
)
)
def test_01_full_automatic(self):
workflow = self.create_full_automatic()
sale = self.create_sale_order(workflow)
self.assertEqual(sale.state, "draft")
self.assertEqual(sale.workflow_process_id, workflow)
self.run_job()
self.assertEqual(sale.state, "sale")
self.assertTrue(sale.invoice_ids)
invoice = sale.invoice_ids
self.assertEqual(invoice.state, "posted")
def test_02_onchange(self):
team_1 = self.env.ref("sales_team.crm_team_1")
team_2 = self.env.ref("sales_team.team_sales_department")
workflow = self.create_full_automatic(override={"team_id": team_1.id})
sale = self.create_sale_order(workflow)
self.assertEqual(sale.team_id, team_1)
workflow2 = self.create_full_automatic(override={"team_id": team_2.id})
sale.workflow_process_id = workflow2.id
self.assertEqual(sale.team_id, team_2)
@freeze_time("2025-1-1")
def test_03_date_invoice_from_sale_order(self):
workflow = self.create_full_automatic()
# date_order on sale.order is date + time
# invoice_date on account.move is date only
last_week_time = fields.Datetime.now() - timedelta(days=7)
override = {"date_order": last_week_time}
sale = self.create_sale_order(workflow, override=override)
self.assertEqual(sale.date_order, last_week_time)
self.run_job()
self.assertTrue(sale.invoice_ids)
invoice = sale.invoice_ids
self.assertEqual(invoice.invoice_date, last_week_time.date())
self.assertEqual(invoice.workflow_process_id, sale.workflow_process_id)
def test_04_create_invoice_from_sale_order(self):
workflow = self.create_full_automatic()
sale = self.create_sale_order(workflow)
line = sale.order_line[0]
# Make sure this addon works properly in regards to it.
mock_path = "odoo.addons.sale.models.sale_order.SaleOrder._create_invoices"
workflow.invoice_service_delivery = True
line.qty_delivered_method = "manual"
with mock.patch(mock_path) as mocked:
sale._create_invoices()
mocked.assert_called()
self.assertEqual(line.qty_delivered, 1.0)
def test_05_invoice_from_picking_with_service_product(self):
workflow = self.create_full_automatic()
product_service = self.env["product.product"].create(
{
"name": "Remodeling Service",
"categ_id": self.env.ref("product.product_category_3").id,
"standard_price": 40.0,
"list_price": 90.0,
"type": "service",
"uom_id": self.env.ref("uom.product_uom_hour").id,
"uom_po_id": self.env.ref("uom.product_uom_hour").id,
"description": "Example of product to invoice on order",
"default_code": "PRE-PAID",
"invoice_policy": "order",
}
)
product_uom_hour = self.env.ref("uom.product_uom_hour")
override = {
"order_line": [
(
0,
0,
{
"name": "Prepaid Consulting",
"product_id": product_service.id,
"product_uom_qty": 1,
"product_uom": product_uom_hour.id,
},
)
]
}
sale = self.create_sale_order(workflow, override=override)
self.run_job()
self.assertTrue(sale.invoice_ids)
invoice = sale.invoice_ids
self.assertEqual(invoice.workflow_process_id, sale.workflow_process_id)
def test_06_journal_on_invoice(self):
sale_journal = self.env["account.journal"].search(
[("type", "=", "sale")], limit=1
)
new_sale_journal = self.env["account.journal"].create(
{"name": "TTSA", "code": "TTSA", "type": "sale"}
)
workflow = self.create_full_automatic()
sale = self.create_sale_order(workflow)
self.run_job()
self.assertTrue(sale.invoice_ids)
invoice = sale.invoice_ids
self.assertEqual(invoice.journal_id.id, sale_journal.id)
workflow = self.create_full_automatic(
override={"property_journal_id": new_sale_journal.id}
)
sale = self.create_sale_order(workflow)
self.run_job()
self.assertTrue(sale.invoice_ids)
invoice = sale.invoice_ids
self.assertEqual(invoice.journal_id.id, new_sale_journal.id)
def test_no_copy(self):
workflow = self.create_full_automatic()
sale = self.create_sale_order(workflow)
self.run_job()
invoice = sale.invoice_ids
self.assertTrue(sale.workflow_process_id)
self.assertTrue(invoice.workflow_process_id)
sale2 = sale.copy()
invoice2 = invoice.copy()
self.assertFalse(sale2.workflow_process_id)
self.assertFalse(invoice2.workflow_process_id)
def test_automatic_sale_order_confirmation_mail(self):
workflow = self.create_full_automatic()
workflow.send_order_confirmation_mail = True
sale = self.create_sale_order(workflow)
previous_message_ids = sale.message_ids
self.run_job()
self.assertEqual(sale.state, "sale")
new_messages = self.env["mail.message"].search(
[
("id", "in", sale.message_ids.ids),
("id", "not in", previous_message_ids.ids),
]
)
self.assertTrue(
new_messages.filtered(
lambda x: x.subtype_id == self.env.ref("mail.mt_comment")
)
)
def test_create_payment_with_invoice_currency_id(self):
workflow = self.create_full_automatic()
pricelist_id = self.env["product.pricelist"].create(
{
"name": "default_pricelist",
"currency_id": 1,
}
)
product_service = self.env["product.product"].create(
{
"name": "Remodeling Service",
"categ_id": self.env.ref("product.product_category_3").id,
"standard_price": 40.0,
"list_price": 90.0,
"type": "service",
"uom_id": self.env.ref("uom.product_uom_hour").id,
"uom_po_id": self.env.ref("uom.product_uom_hour").id,
"description": "Example of product to invoice on order",
"default_code": "PRE-PAID",
"invoice_policy": "order",
}
)
product_uom_hour = self.env.ref("uom.product_uom_hour")
override = {
"pricelist_id": pricelist_id.id,
"order_line": [
(
0,
0,
{
"name": "Prepaid Consulting",
"product_id": product_service.id,
"product_uom_qty": 1,
"product_uom": product_uom_hour.id,
},
)
],
}
sale = self.create_sale_order(workflow, override=override)
self.run_job()
self.assertTrue(sale.invoice_ids)
invoice = sale.invoice_ids
self.assertEqual(invoice.state, "posted")
payment_id = self.env["automatic.workflow.job"]._register_payment_invoice(
invoice
)
self.assertTrue(payment_id)
self.assertEqual(invoice.currency_id.id, payment_id.currency_id.id)

View File

@@ -0,0 +1,49 @@
# Copyright 2017 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo.tests import tagged
from .common import TestMultiCompanyCommon
@tagged("post_install", "-at_install")
class TestMultiCompany(TestMultiCompanyCommon):
"""Class to test sale automated workflow with multi-company."""
def test_sale_order_multicompany(self):
self.env.user.company_id = self.env.ref("base.main_company")
order_fr = self.create_auto_wkf_order(
self.company_fr, self.customer_fr, self.product_fr, 5
)
order_ch = self.create_auto_wkf_order(
self.company_ch, self.customer_ch, self.product_ch, 10
)
order_be = self.create_auto_wkf_order(
self.company_be, self.customer_be, self.product_be, 10
)
order_fr_daughter = self.create_auto_wkf_order(
self.company_fr_daughter,
self.customer_fr_daughter,
self.product_fr_daughter,
4,
)
self.assertEqual(order_fr.state, "draft")
self.assertEqual(order_ch.state, "draft")
self.assertEqual(order_be.state, "draft")
self.assertEqual(order_fr_daughter.state, "draft")
self.env["automatic.workflow.job"].run()
invoice_fr = order_fr.invoice_ids
invoice_ch = order_ch.invoice_ids
invoice_be = order_be.invoice_ids
invoice_fr_daughter = order_fr_daughter.invoice_ids
self.assertEqual(invoice_fr.state, "posted")
self.assertEqual(invoice_fr.journal_id.company_id, order_fr.company_id)
self.assertEqual(invoice_ch.state, "posted")
self.assertEqual(invoice_ch.journal_id.company_id, order_ch.company_id)
self.assertEqual(invoice_be.state, "posted")
self.assertEqual(invoice_be.journal_id.company_id, order_be.company_id)
self.assertEqual(invoice_fr_daughter.state, "posted")
self.assertEqual(
invoice_fr_daughter.journal_id.company_id, order_fr_daughter.company_id
)

View File

@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8" ?>
<!--
Copyright (C) 2011 Akretion Sébastien BEAU <sebastien.beau@akretion.com>
Copyright (C) 2016 Sodexis <dev@sodexis.com>
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
-->
<odoo>
<record id="sale_order_view_form" model="ir.ui.view">
<field name="name">sale_automatic_workflow.sale_order.view_form</field>
<field name="model">sale.order</field>
<field name="inherit_id" ref="sale.view_order_form" />
<field name="arch" type="xml">
<xpath expr="//page[2]" position="after">
<page name="automation_information" string="Automation Information">
<group name="workflow">
<field name="workflow_process_id" />
</group>
</page>
</xpath>
</field>
</record>
</odoo>

View File

@@ -0,0 +1,322 @@
<?xml version="1.0" encoding="utf-8" ?>
<!--
Copyright (C) 2011 Akretion Sébastien BEAU <sebastien.beau@akretion.com>
Copyright (C) 2016 Sodexis <dev@sodexis.com>
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
-->
<odoo>
<record id="sale_workflow_process_view_form" model="ir.ui.view">
<field name="name">sale.order.form.automatic.inherit</field>
<field name="model">sale.workflow.process</field>
<field name="arch" type="xml">
<form string="Automatic Workflow">
<sheet>
<div class="oe_title mb24">
<h1>
<field name="name" nolabel="1" />
</h1>
</div>
<div class="container" name="sale_order_confirm">
<h3>
<bold>Order Configuration</bold>
</h3>
<div class="row">
<div class="col-sm-4">
<label for="team_id" class="o_light_label" />
</div>
<div class="col-sm-8">
<field name="team_id" />
</div>
</div>
</div>
<br />
<div class="container" name="workflow_options">
<h3>
<bold>Workflow Options</bold>
</h3>
<div class="row">
<div class="col-sm-4">
<label
for="validate_order"
class="col-lg-7 o_light_label"
/>
<field name="validate_order" nolabel="1" />
</div>
<div class="col-sm-8">
<label
for="order_filter_id"
required="validate_order"
invisible="not validate_order"
/>
<div
required="validate_order"
invisible="not validate_order"
>
<field
name="order_filter_domain"
widget="domain"
invisible="not order_filter_id"
options="{'model': 'sale.order'}"
/>
<div class="oe_edit_only oe_inline">
Set selection based on a search filter:
<field
name="order_filter_id"
domain="[('model_id', '=', 'sale.order')]"
class="oe_inline"
context="{'default_model_id': 'sale.order', 'default_active': False, 'active_test': False}"
can_create="true"
can_write="true"
/>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<label
for="send_order_confirmation_mail"
class="col-lg-7 o_light_label"
/>
<field
name="send_order_confirmation_mail"
nolabel="1"
/>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<label
for="create_invoice"
class="col-lg-7 o_light_label"
/>
<field name="create_invoice" nolabel="1" />
</div>
<div class="col-sm-8">
<label
for="create_invoice_filter_id"
required="create_invoice"
invisible="not create_invoice"
/>
<div
required="create_invoice"
invisible="not create_invoice"
>
<field
name="create_invoice_filter_domain"
widget="domain"
invisible="not create_invoice_filter_id"
options="{'model': 'sale.order'}"
/>
<div class="oe_edit_only oe_inline">
Set selection based on a search filter:
<field
name="create_invoice_filter_id"
domain="[('model_id', '=', 'sale.order')]"
class="oe_inline"
context="{'default_model_id': 'sale.order', 'default_active': False, 'active_test': False}"
can_create="true"
can_write="true"
/>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<label
for="validate_invoice"
class="col-lg-7 o_light_label"
/>
<field name="validate_invoice" nolabel="1" />
</div>
<div class="col-sm-8">
<label
for="validate_invoice_filter_id"
required="validate_invoice"
invisible="not validate_invoice"
/>
<div
required="validate_invoice"
invisible="not validate_invoice"
>
<field
name="validate_invoice_filter_domain"
widget="domain"
invisible="not validate_invoice_filter_id"
options="{'model': 'account.move'}"
/>
<div class="oe_edit_only oe_inline">
Set selection based on a search filter:
<field
name="validate_invoice_filter_id"
domain="[('model_id', '=', 'account.move')]"
class="oe_inline"
context="{'default_model_id': 'account.move', 'default_active': False, 'active_test': False}"
can_create="true"
can_write="true"
/>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<label
for="register_payment"
class="col-lg-7 o_light_label"
/>
<field name="register_payment" nolabel="1" />
</div>
<div class="col-sm-8">
<label
for="payment_filter_id"
required="register_payment"
invisible="not register_payment"
/>
<div
required="register_payment"
invisible="not register_payment"
>
<field
name="payment_filter_domain"
widget="domain"
invisible="not payment_filter_id"
options="{'model': 'account.move'}"
/>
<div class="oe_edit_only oe_inline">
Set selection based on a search filter:
<field
name="payment_filter_id"
domain="[('model_id', '=', 'account.move')]"
class="oe_inline"
context="{'default_model_id': 'account.move', 'default_active': False, 'active_test': False}"
can_create="true"
can_write="true"
/>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<label for="sale_done" class="col-lg-7 o_light_label" />
<field name="sale_done" nolabel="1" />
</div>
<div class="col-sm-8">
<label
for="sale_done_filter_id"
required="sale_done"
invisible="not sale_done"
/>
<div required="sale_done" invisible="not sale_done">
<field
name="sale_done_filter_domain"
widget="domain"
invisible="not sale_done_filter_id"
options="{'model': 'sale.order'}"
/>
<div class="oe_edit_only oe_inline">
Set selection based on a search filter:
<field
name="sale_done_filter_id"
domain="[('model_id', '=', 'sale.order')]"
class="oe_inline"
context="{'default_model_id': 'sale.order', 'default_active': False, 'active_test': False}"
can_create="true"
can_write="true"
/>
</div>
</div>
</div>
</div>
</div>
<br />
<div class="container" name="invoice_options">
<h3>
<bold>Invoice Options</bold>
</h3>
<div class="row">
<div class="col-sm-4">
<label
for="invoice_date_is_order_date"
class="col-lg-7 o_light_label"
/>
<span>
<field
name="invoice_date_is_order_date"
nolabel="1"
/>
</span>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<label
for="invoice_service_delivery"
class="col-lg-7 o_light_label"
/>
<span>
<field
name="invoice_service_delivery"
nolabel="1"
/>
</span>
</div>
</div>
<div
class="row"
groups="account.group_account_invoice"
domain="[('type', '=', 'sale')]"
>
<div class="col-sm-12">
<label
for="property_journal_id"
class="col-lg-4 o_light_label"
/>
<field name="property_journal_id" nolabel="1" />
</div>
</div>
<br />
<div class="row">
<div class="col-sm-12">
<label for="warning" />
<field name="warning" nolabel="1" />
</div>
</div>
</div>
</sheet>
</form>
</field>
</record>
<record id="sale_workflow_process_view_tree" model="ir.ui.view">
<field name="name">sale_automic_workflow.sale_workflow_process.view_list</field>
<field name="model">sale.workflow.process</field>
<field name="arch" type="xml">
<list>
<field name="name" />
<field name="team_id" />
<field name="validate_order" />
<field name="validate_invoice" />
<field name="register_payment" />
<field name="invoice_date_is_order_date" />
</list>
</field>
</record>
<record id="act_sale_workflow_process_form" model="ir.actions.act_window">
<field name="name">Automatic Workflow</field>
<field name="res_model">sale.workflow.process</field>
<field name="view_mode">list,form</field>
</record>
<menuitem
id="menu_sale_workflow_parent"
parent="sale.menu_sale_config"
sequence="20"
name="Automatic Workflow"
/>
<menuitem
action="act_sale_workflow_process_form"
id="menu_act_sale_workflow_process_form"
parent="menu_sale_workflow_parent"
/>
</odoo>