From 41e8f502dbd59b09af53dd7fc84ffdebbac15ddf Mon Sep 17 00:00:00 2001 From: Aungkokolin1997 Date: Thu, 7 Nov 2024 06:32:12 +0000 Subject: [PATCH] [ADD] sale_automatic_workflow --- sale_automatic_workflow/README.rst | 117 +++++ sale_automatic_workflow/__init__.py | 1 + sale_automatic_workflow/__manifest__.py | 24 + .../data/automatic_workflow_data.xml | 126 +++++ sale_automatic_workflow/i18n/am.po | 341 +++++++++++++ sale_automatic_workflow/i18n/ar.po | 345 +++++++++++++ sale_automatic_workflow/i18n/bg.po | 344 +++++++++++++ sale_automatic_workflow/i18n/bs.po | 345 +++++++++++++ sale_automatic_workflow/i18n/ca.po | 372 ++++++++++++++ sale_automatic_workflow/i18n/ca_ES.po | 345 +++++++++++++ sale_automatic_workflow/i18n/cs.po | 344 +++++++++++++ sale_automatic_workflow/i18n/da.po | 341 +++++++++++++ sale_automatic_workflow/i18n/de.po | 363 ++++++++++++++ sale_automatic_workflow/i18n/el_GR.po | 348 +++++++++++++ sale_automatic_workflow/i18n/en_GB.po | 342 +++++++++++++ sale_automatic_workflow/i18n/es.po | 382 ++++++++++++++ sale_automatic_workflow/i18n/es_AR.po | 342 +++++++++++++ sale_automatic_workflow/i18n/es_CL.po | 342 +++++++++++++ sale_automatic_workflow/i18n/es_CO.po | 342 +++++++++++++ sale_automatic_workflow/i18n/es_CR.po | 345 +++++++++++++ sale_automatic_workflow/i18n/es_DO.po | 342 +++++++++++++ sale_automatic_workflow/i18n/es_EC.po | 345 +++++++++++++ sale_automatic_workflow/i18n/es_ES.po | 342 +++++++++++++ sale_automatic_workflow/i18n/es_MX.po | 346 +++++++++++++ sale_automatic_workflow/i18n/es_PE.po | 342 +++++++++++++ sale_automatic_workflow/i18n/es_PY.po | 342 +++++++++++++ sale_automatic_workflow/i18n/es_VE.po | 345 +++++++++++++ sale_automatic_workflow/i18n/et.po | 344 +++++++++++++ sale_automatic_workflow/i18n/eu.po | 341 +++++++++++++ sale_automatic_workflow/i18n/fa.po | 341 +++++++++++++ sale_automatic_workflow/i18n/fi.po | 347 +++++++++++++ sale_automatic_workflow/i18n/fr.po | 381 ++++++++++++++ sale_automatic_workflow/i18n/fr_CA.po | 345 +++++++++++++ sale_automatic_workflow/i18n/fr_CH.po | 345 +++++++++++++ sale_automatic_workflow/i18n/gl.po | 344 +++++++++++++ sale_automatic_workflow/i18n/gl_ES.po | 342 +++++++++++++ sale_automatic_workflow/i18n/he.po | 341 +++++++++++++ sale_automatic_workflow/i18n/hr.po | 351 +++++++++++++ sale_automatic_workflow/i18n/hr_HR.po | 346 +++++++++++++ sale_automatic_workflow/i18n/hu.po | 347 +++++++++++++ sale_automatic_workflow/i18n/id.po | 344 +++++++++++++ sale_automatic_workflow/i18n/it.po | 359 ++++++++++++++ sale_automatic_workflow/i18n/ja.po | 344 +++++++++++++ sale_automatic_workflow/i18n/ko.po | 341 +++++++++++++ sale_automatic_workflow/i18n/lt.po | 345 +++++++++++++ sale_automatic_workflow/i18n/lt_LT.po | 343 +++++++++++++ sale_automatic_workflow/i18n/lv.po | 342 +++++++++++++ sale_automatic_workflow/i18n/mk.po | 344 +++++++++++++ sale_automatic_workflow/i18n/mn.po | 344 +++++++++++++ sale_automatic_workflow/i18n/nb.po | 345 +++++++++++++ sale_automatic_workflow/i18n/nb_NO.po | 345 +++++++++++++ sale_automatic_workflow/i18n/nl.po | 347 +++++++++++++ sale_automatic_workflow/i18n/nl_BE.po | 345 +++++++++++++ sale_automatic_workflow/i18n/nl_NL.po | 350 +++++++++++++ sale_automatic_workflow/i18n/pl.po | 345 +++++++++++++ sale_automatic_workflow/i18n/pt.po | 344 +++++++++++++ sale_automatic_workflow/i18n/pt_BR.po | 377 ++++++++++++++ sale_automatic_workflow/i18n/pt_PT.po | 345 +++++++++++++ sale_automatic_workflow/i18n/ro.po | 348 +++++++++++++ sale_automatic_workflow/i18n/ru.po | 346 +++++++++++++ .../i18n/sale_automatic_workflow.pot | 336 +++++++++++++ sale_automatic_workflow/i18n/sk.po | 341 +++++++++++++ sale_automatic_workflow/i18n/sk_SK.po | 345 +++++++++++++ sale_automatic_workflow/i18n/sl.po | 349 +++++++++++++ sale_automatic_workflow/i18n/sl_SI.po | 346 +++++++++++++ sale_automatic_workflow/i18n/sr.po | 342 +++++++++++++ sale_automatic_workflow/i18n/sr@latin.po | 343 +++++++++++++ sale_automatic_workflow/i18n/sv.po | 344 +++++++++++++ sale_automatic_workflow/i18n/th.po | 344 +++++++++++++ sale_automatic_workflow/i18n/tr.po | 347 +++++++++++++ sale_automatic_workflow/i18n/tr_TR.po | 348 +++++++++++++ sale_automatic_workflow/i18n/uk.po | 342 +++++++++++++ sale_automatic_workflow/i18n/vi.po | 341 +++++++++++++ sale_automatic_workflow/i18n/vi_VN.po | 345 +++++++++++++ sale_automatic_workflow/i18n/zh_CN.po | 369 ++++++++++++++ sale_automatic_workflow/i18n/zh_TW.po | 345 +++++++++++++ sale_automatic_workflow/models/__init__.py | 6 + .../models/account_move.py | 14 + .../models/automatic_workflow_job.py | 287 +++++++++++ sale_automatic_workflow/models/sale_order.py | 75 +++ .../models/sale_workflow_process.py | 144 ++++++ sale_automatic_workflow/models/stock_move.py | 17 + .../models/stock_picking.py | 36 ++ .../readme/CONTRIBUTORS.rst | 12 + sale_automatic_workflow/readme/CREDITS.rst | 3 + .../readme/DESCRIPTION.rst | 22 + .../security/ir.model.access.csv | 5 + .../static/description/icon.png | Bin 0 -> 9455 bytes .../static/description/index.html | 465 ++++++++++++++++++ sale_automatic_workflow/tests/__init__.py | 2 + sale_automatic_workflow/tests/common.py | 92 ++++ .../tests/test_automatic_workflow.py | 256 ++++++++++ .../tests/test_multicompany.py | 199 ++++++++ sale_automatic_workflow/views/sale_view.xml | 32 ++ .../views/sale_workflow_process_view.xml | 400 +++++++++++++++ .../odoo/addons/sale_automatic_workflow | 1 + setup/sale_automatic_workflow/setup.py | 6 + 97 files changed, 27314 insertions(+) create mode 100644 sale_automatic_workflow/README.rst create mode 100644 sale_automatic_workflow/__init__.py create mode 100644 sale_automatic_workflow/__manifest__.py create mode 100644 sale_automatic_workflow/data/automatic_workflow_data.xml create mode 100644 sale_automatic_workflow/i18n/am.po create mode 100644 sale_automatic_workflow/i18n/ar.po create mode 100644 sale_automatic_workflow/i18n/bg.po create mode 100644 sale_automatic_workflow/i18n/bs.po create mode 100644 sale_automatic_workflow/i18n/ca.po create mode 100644 sale_automatic_workflow/i18n/ca_ES.po create mode 100644 sale_automatic_workflow/i18n/cs.po create mode 100644 sale_automatic_workflow/i18n/da.po create mode 100644 sale_automatic_workflow/i18n/de.po create mode 100644 sale_automatic_workflow/i18n/el_GR.po create mode 100644 sale_automatic_workflow/i18n/en_GB.po create mode 100644 sale_automatic_workflow/i18n/es.po create mode 100644 sale_automatic_workflow/i18n/es_AR.po create mode 100644 sale_automatic_workflow/i18n/es_CL.po create mode 100644 sale_automatic_workflow/i18n/es_CO.po create mode 100644 sale_automatic_workflow/i18n/es_CR.po create mode 100644 sale_automatic_workflow/i18n/es_DO.po create mode 100644 sale_automatic_workflow/i18n/es_EC.po create mode 100644 sale_automatic_workflow/i18n/es_ES.po create mode 100644 sale_automatic_workflow/i18n/es_MX.po create mode 100644 sale_automatic_workflow/i18n/es_PE.po create mode 100644 sale_automatic_workflow/i18n/es_PY.po create mode 100644 sale_automatic_workflow/i18n/es_VE.po create mode 100644 sale_automatic_workflow/i18n/et.po create mode 100644 sale_automatic_workflow/i18n/eu.po create mode 100644 sale_automatic_workflow/i18n/fa.po create mode 100644 sale_automatic_workflow/i18n/fi.po create mode 100644 sale_automatic_workflow/i18n/fr.po create mode 100644 sale_automatic_workflow/i18n/fr_CA.po create mode 100644 sale_automatic_workflow/i18n/fr_CH.po create mode 100644 sale_automatic_workflow/i18n/gl.po create mode 100644 sale_automatic_workflow/i18n/gl_ES.po create mode 100644 sale_automatic_workflow/i18n/he.po create mode 100644 sale_automatic_workflow/i18n/hr.po create mode 100644 sale_automatic_workflow/i18n/hr_HR.po create mode 100644 sale_automatic_workflow/i18n/hu.po create mode 100644 sale_automatic_workflow/i18n/id.po create mode 100644 sale_automatic_workflow/i18n/it.po create mode 100644 sale_automatic_workflow/i18n/ja.po create mode 100644 sale_automatic_workflow/i18n/ko.po create mode 100644 sale_automatic_workflow/i18n/lt.po create mode 100644 sale_automatic_workflow/i18n/lt_LT.po create mode 100644 sale_automatic_workflow/i18n/lv.po create mode 100644 sale_automatic_workflow/i18n/mk.po create mode 100644 sale_automatic_workflow/i18n/mn.po create mode 100644 sale_automatic_workflow/i18n/nb.po create mode 100644 sale_automatic_workflow/i18n/nb_NO.po create mode 100644 sale_automatic_workflow/i18n/nl.po create mode 100644 sale_automatic_workflow/i18n/nl_BE.po create mode 100644 sale_automatic_workflow/i18n/nl_NL.po create mode 100644 sale_automatic_workflow/i18n/pl.po create mode 100644 sale_automatic_workflow/i18n/pt.po create mode 100644 sale_automatic_workflow/i18n/pt_BR.po create mode 100644 sale_automatic_workflow/i18n/pt_PT.po create mode 100644 sale_automatic_workflow/i18n/ro.po create mode 100644 sale_automatic_workflow/i18n/ru.po create mode 100644 sale_automatic_workflow/i18n/sale_automatic_workflow.pot create mode 100644 sale_automatic_workflow/i18n/sk.po create mode 100644 sale_automatic_workflow/i18n/sk_SK.po create mode 100644 sale_automatic_workflow/i18n/sl.po create mode 100644 sale_automatic_workflow/i18n/sl_SI.po create mode 100644 sale_automatic_workflow/i18n/sr.po create mode 100644 sale_automatic_workflow/i18n/sr@latin.po create mode 100644 sale_automatic_workflow/i18n/sv.po create mode 100644 sale_automatic_workflow/i18n/th.po create mode 100644 sale_automatic_workflow/i18n/tr.po create mode 100644 sale_automatic_workflow/i18n/tr_TR.po create mode 100644 sale_automatic_workflow/i18n/uk.po create mode 100644 sale_automatic_workflow/i18n/vi.po create mode 100644 sale_automatic_workflow/i18n/vi_VN.po create mode 100644 sale_automatic_workflow/i18n/zh_CN.po create mode 100644 sale_automatic_workflow/i18n/zh_TW.po create mode 100644 sale_automatic_workflow/models/__init__.py create mode 100644 sale_automatic_workflow/models/account_move.py create mode 100644 sale_automatic_workflow/models/automatic_workflow_job.py create mode 100644 sale_automatic_workflow/models/sale_order.py create mode 100644 sale_automatic_workflow/models/sale_workflow_process.py create mode 100644 sale_automatic_workflow/models/stock_move.py create mode 100644 sale_automatic_workflow/models/stock_picking.py create mode 100644 sale_automatic_workflow/readme/CONTRIBUTORS.rst create mode 100644 sale_automatic_workflow/readme/CREDITS.rst create mode 100644 sale_automatic_workflow/readme/DESCRIPTION.rst create mode 100644 sale_automatic_workflow/security/ir.model.access.csv create mode 100644 sale_automatic_workflow/static/description/icon.png create mode 100644 sale_automatic_workflow/static/description/index.html create mode 100644 sale_automatic_workflow/tests/__init__.py create mode 100644 sale_automatic_workflow/tests/common.py create mode 100644 sale_automatic_workflow/tests/test_automatic_workflow.py create mode 100644 sale_automatic_workflow/tests/test_multicompany.py create mode 100644 sale_automatic_workflow/views/sale_view.xml create mode 100644 sale_automatic_workflow/views/sale_workflow_process_view.xml create mode 120000 setup/sale_automatic_workflow/odoo/addons/sale_automatic_workflow create mode 100644 setup/sale_automatic_workflow/setup.py diff --git a/sale_automatic_workflow/README.rst b/sale_automatic_workflow/README.rst new file mode 100644 index 0000000..8e952b9 --- /dev/null +++ b/sale_automatic_workflow/README.rst @@ -0,0 +1,117 @@ +======================= +Sale Automatic Workflow +======================= + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:71fbe068284afd1d022428fafbae6726822dfb19f6eb06c8c38b0a45e28c599f + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fsale--workflow-lightgray.png?logo=github + :target: https://github.com/OCA/sale-workflow/tree/16.0/sale_automatic_workflow + :alt: OCA/sale-workflow +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/sale-workflow-16-0/sale-workflow-16-0-sale_automatic_workflow + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/sale-workflow&target_branch=16.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +Create workflows with more or less automatization and apply it on sales +orders. + +A workflow can: + +- Apply default values: + + * Shipping Policy (Deliver each product when available or Deliver all products at once) + * Set the invoice's date to the sale order's date + * Set a sales team + +- Apply automatic actions: + + * Validate the order (only if paid, always, never) + * Send order confirmation mail (only when order confirmed) + * Create an invoice + * Validate the invoice + * Send the invoice via e-mail + * Confirm the picking + +This module is used by Magentoerpconnect and Prestashoperpconnect. +It is well suited for other E-Commerce connectors as well. + +**Table of contents** + +.. contents:: + :local: + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +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 `_. + +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 +* Akim Juillerat +* Thomas Fossoul +* Phuc Tran Thanh +* John Herholz + +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 `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/sale_automatic_workflow/__init__.py b/sale_automatic_workflow/__init__.py new file mode 100644 index 0000000..0650744 --- /dev/null +++ b/sale_automatic_workflow/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/sale_automatic_workflow/__manifest__.py b/sale_automatic_workflow/__manifest__.py new file mode 100644 index 0000000..e0ed117 --- /dev/null +++ b/sale_automatic_workflow/__manifest__.py @@ -0,0 +1,24 @@ +# Copyright 2011 Akretion Sébastien BEAU +# Copyright 2013 Camptocamp SA (author: Guewen Baconnier) +# Copyright 2016 Sodexis +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + "name": "Sale Automatic Workflow", + "version": "16.0.1.1.1", + "category": "Sales Management", + "license": "AGPL-3", + "author": "Akretion, " + "Camptocamp, " + "Sodexis, " + "Odoo Community Association (OCA)", + "website": "https://github.com/OCA/sale-workflow", + "depends": ["sale_stock", "sales_team"], + "data": [ + "security/ir.model.access.csv", + "views/sale_view.xml", + "views/sale_workflow_process_view.xml", + "data/automatic_workflow_data.xml", + ], + "installable": True, +} diff --git a/sale_automatic_workflow/data/automatic_workflow_data.xml b/sale_automatic_workflow/data/automatic_workflow_data.xml new file mode 100644 index 0000000..065a706 --- /dev/null +++ b/sale_automatic_workflow/data/automatic_workflow_data.xml @@ -0,0 +1,126 @@ + + + + + Automatic Workflow Order Filter + sale.order + [('state', '=', 'draft')] + + + + Automatic Workflow Picking Filter + stock.picking + [('state', 'in', ['draft', 'confirmed', 'assigned'])] + + + + Automatic Workflow Create Invoice Filter + sale.order + [('state','in',['sale','done']),('invoice_status','=','to invoice')] + + + + Automatic Workflow Validate Invoice Filter + account.move + [('state', '=', 'draft'), ('posted_before', '=', False)] + + + + Automatic Workflow Send Invoice Filter + account.move + [('state', '=', 'posted'), ('is_move_sent', '=', False), ('move_type', '=', 'out_invoice')] + + + + Automatic Workflow Sale Done Filter + sale.order + [('state', '=', 'sale'),('invoice_status','=','invoiced')] + + + + Automatic Workflow Payment Filter + account.move + [('state', '=', 'posted'), ('move_type', '=', 'out_invoice'), ('payment_state','!=','paid')] + + + + Automatic + one + + + + + + + + + + + + + + + + + Be careful, if you save the order with this setting, it could be auto-confirmed, even if you are editing it. + + + Manual + one + + + + + + + + + + + + + + Automatic Workflow Job + + code + model.run() + + + 1 + minutes + -1 + + + diff --git a/sale_automatic_workflow/i18n/am.po b/sale_automatic_workflow/i18n/am.po new file mode 100644 index 0000000..d2d14e0 --- /dev/null +++ b/sale_automatic_workflow/i18n/am.po @@ -0,0 +1,341 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 2016\n" +"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"Language: am\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered +msgid "All quantities delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id +#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form +#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Automatic Workflow" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "ID" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name +msgid "Name" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Order Configuration" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id +msgid "Order Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain +msgid "Order Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" diff --git a/sale_automatic_workflow/i18n/ar.po b/sale_automatic_workflow/i18n/ar.po new file mode 100644 index 0000000..9846706 --- /dev/null +++ b/sale_automatic_workflow/i18n/ar.po @@ -0,0 +1,345 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 2016\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered +msgid "All quantities delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id +#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form +#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Automatic Workflow" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "أنشئ في" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "اسم العرض" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "المعرف" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name +msgid "Name" +msgstr "الاسم" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Order Configuration" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id +msgid "Order Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain +msgid "Order Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "فاتورة" diff --git a/sale_automatic_workflow/i18n/bg.po b/sale_automatic_workflow/i18n/bg.po new file mode 100644 index 0000000..fcb030b --- /dev/null +++ b/sale_automatic_workflow/i18n/bg.po @@ -0,0 +1,344 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 2017\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered +msgid "All quantities delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id +#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form +#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Automatic Workflow" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "Създадено от" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "Създадено на" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "Име за показване" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "ID" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Последно променено на" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name +msgid "Name" +msgstr "Име" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Order Configuration" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id +msgid "Order Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain +msgid "Order Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Фактура" diff --git a/sale_automatic_workflow/i18n/bs.po b/sale_automatic_workflow/i18n/bs.po new file mode 100644 index 0000000..38547ec --- /dev/null +++ b/sale_automatic_workflow/i18n/bs.po @@ -0,0 +1,345 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 2016\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered +msgid "All quantities delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id +#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form +#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Automatic Workflow" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "ID" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name +msgid "Name" +msgstr "Ime" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Order Configuration" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id +msgid "Order Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain +msgid "Order Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Faktura" diff --git a/sale_automatic_workflow/i18n/ca.po b/sale_automatic_workflow/i18n/ca.po new file mode 100644 index 0000000..4a3ddf1 --- /dev/null +++ b/sale_automatic_workflow/i18n/ca.po @@ -0,0 +1,372 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 \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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +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 l’editeu." + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "Confirmeu i transfereix la selecció" + +#. 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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "Entregueu tots els productes alhora" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "Entregueu cada producte quan estigui disponible" + +#. 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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Darrera modificació el" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "Filtre de recollida" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "Selecció del domini del filtre" + +#. 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 +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "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_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "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__picking_policy +msgid "Shipping Policy" +msgstr "Política d’enviament" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "Moviment d’estoc" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "Transferència" + +#. 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 +#, python-format +msgid "Workflow Warning" +msgstr "Advertiment de flux de treball" + +#~ 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" diff --git a/sale_automatic_workflow/i18n/ca_ES.po b/sale_automatic_workflow/i18n/ca_ES.po new file mode 100644 index 0000000..d97e6b7 --- /dev/null +++ b/sale_automatic_workflow/i18n/ca_ES.po @@ -0,0 +1,345 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 2018\n" +"Language-Team: Catalan (Spain) (https://www.transifex.com/oca/teams/23907/" +"ca_ES/)\n" +"Language: ca_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered +msgid "All quantities delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id +#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form +#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Automatic Workflow" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date +msgid "Last Updated on" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name +msgid "Name" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Order Configuration" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id +msgid "Order Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain +msgid "Order Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Quotation" +#~ msgstr "Quotation" diff --git a/sale_automatic_workflow/i18n/cs.po b/sale_automatic_workflow/i18n/cs.po new file mode 100644 index 0000000..57278f8 --- /dev/null +++ b/sale_automatic_workflow/i18n/cs.po @@ -0,0 +1,344 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 2016\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered +msgid "All quantities delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id +#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form +#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Automatic Workflow" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "Vytvořeno" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "ID" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name +msgid "Name" +msgstr "Název" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Order Configuration" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id +msgid "Order Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain +msgid "Order Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Faktura" diff --git a/sale_automatic_workflow/i18n/da.po b/sale_automatic_workflow/i18n/da.po new file mode 100644 index 0000000..88bb2ee --- /dev/null +++ b/sale_automatic_workflow/i18n/da.po @@ -0,0 +1,341 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 2016\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered +msgid "All quantities delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id +#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form +#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Automatic Workflow" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "Oprettet af" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "Oprettet den" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "Vist navn" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "Id" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name +msgid "Name" +msgstr "Navn" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Order Configuration" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id +msgid "Order Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain +msgid "Order Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" diff --git a/sale_automatic_workflow/i18n/de.po b/sale_automatic_workflow/i18n/de.po new file mode 100644 index 0000000..38887fc --- /dev/null +++ b/sale_automatic_workflow/i18n/de.po @@ -0,0 +1,363 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 2018 +# Rudolf Schnapka , 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-04-10 15:37+0000\n" +"Last-Translator: jappi00 \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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +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__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "Kommissionierung bestätigen und übertragen" + +#. 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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "Alle Produkte auf einmal liefern" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "Jedes Produkt bei Verfügbarkeit liefern" + +#. 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 diese Option aktiviert ist, wird die Meldung angezeigt, wenn ein " +"Benutzer den Prozess 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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "Kommissionsfilter" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "Filter für Pickaufträge" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "Zahlung registrieren" + +#. 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 "Zahlung registrieren filter" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "Verkaufsauftrag erledigen" + +#. 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 "Verkaufsauftrag erledigen Filter" + +#. 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 "Verkaufsauftrag erledigen Filterdomäne" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "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 +msgid "Sales Order" +msgstr "Verkaufsauftrag" + +#. 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 "" +"Scheduler, der automatisch die Validierung von Rechnungen, " +"Kommissionierungen..." + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "Auftragsbestätigungsmail senden" + +#. 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 "Standardjournal für die Rechnung festlegen" + +#. 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__picking_policy +msgid "Shipping Policy" +msgstr "Lieferbedingung" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "Lagerbuchung" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "Bewegung" + +#. 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 "Rechnung bestätigen Filter" + +#. 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 "Rechnung bestätigen Filter Domäne" + +#. 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 "" +"Wenn dieses Kästchen angekreuzt ist, wird nach der Bestellbestätigung eine " +"Bestätigungs-E-Mail verschickt (falls nicht bereits geschehen)." + +#. 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 +#, python-format +msgid "Workflow Warning" +msgstr "Workflowhinweis" + +#~ msgid "Invoice" +#~ msgstr "Rechnung" + +#~ msgid "Quotation" +#~ msgstr "Quotation" + +#~ msgid "automatic.workflow.job" +#~ msgstr "automatic.workflow.job" diff --git a/sale_automatic_workflow/i18n/el_GR.po b/sale_automatic_workflow/i18n/el_GR.po new file mode 100644 index 0000000..d2f9449 --- /dev/null +++ b/sale_automatic_workflow/i18n/el_GR.po @@ -0,0 +1,348 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "Κωδικός" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name +msgid "Name" +msgstr "Ονομασία" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Order Configuration" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id +msgid "Order Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain +msgid "Order Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Τιμολόγιο" + +#~ msgid "Quotation" +#~ msgstr "Quotation" diff --git a/sale_automatic_workflow/i18n/en_GB.po b/sale_automatic_workflow/i18n/en_GB.po new file mode 100644 index 0000000..b8c68a0 --- /dev/null +++ b/sale_automatic_workflow/i18n/en_GB.po @@ -0,0 +1,342 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" diff --git a/sale_automatic_workflow/i18n/es.po b/sale_automatic_workflow/i18n/es.po new file mode 100644 index 0000000..ec4d199 --- /dev/null +++ b/sale_automatic_workflow/i18n/es.po @@ -0,0 +1,382 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 \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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +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__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "Confirmar y transferir albarán" + +#. 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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "Enviar todos los productos a la vez" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "Enviar cada producto cuando esté disponible" + +#. 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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "Filtro de albarán" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "Dominio del filtro de albarán" + +#. 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 +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "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_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "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__picking_policy +msgid "Shipping Policy" +msgstr "Política de envío" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "Movimiento de existencia" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "Transferir" + +#. 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 +#, python-format +msgid "Workflow Warning" +msgstr "Aviso del flujo" + +#~ 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" diff --git a/sale_automatic_workflow/i18n/es_AR.po b/sale_automatic_workflow/i18n/es_AR.po new file mode 100644 index 0000000..013d71c --- /dev/null +++ b/sale_automatic_workflow/i18n/es_AR.po @@ -0,0 +1,342 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" diff --git a/sale_automatic_workflow/i18n/es_CL.po b/sale_automatic_workflow/i18n/es_CL.po new file mode 100644 index 0000000..2ba86b3 --- /dev/null +++ b/sale_automatic_workflow/i18n/es_CL.po @@ -0,0 +1,342 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" diff --git a/sale_automatic_workflow/i18n/es_CO.po b/sale_automatic_workflow/i18n/es_CO.po new file mode 100644 index 0000000..4145780 --- /dev/null +++ b/sale_automatic_workflow/i18n/es_CO.po @@ -0,0 +1,342 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "Creado" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" diff --git a/sale_automatic_workflow/i18n/es_CR.po b/sale_automatic_workflow/i18n/es_CR.po new file mode 100644 index 0000000..514624e --- /dev/null +++ b/sale_automatic_workflow/i18n/es_CR.po @@ -0,0 +1,345 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "ID" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factura" diff --git a/sale_automatic_workflow/i18n/es_DO.po b/sale_automatic_workflow/i18n/es_DO.po new file mode 100644 index 0000000..53dd2e2 --- /dev/null +++ b/sale_automatic_workflow/i18n/es_DO.po @@ -0,0 +1,342 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" diff --git a/sale_automatic_workflow/i18n/es_EC.po b/sale_automatic_workflow/i18n/es_EC.po new file mode 100644 index 0000000..2fda9fa --- /dev/null +++ b/sale_automatic_workflow/i18n/es_EC.po @@ -0,0 +1,345 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factura" diff --git a/sale_automatic_workflow/i18n/es_ES.po b/sale_automatic_workflow/i18n/es_ES.po new file mode 100644 index 0000000..922eeac --- /dev/null +++ b/sale_automatic_workflow/i18n/es_ES.po @@ -0,0 +1,342 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "ID" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name +msgid "Name" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Order Configuration" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id +msgid "Order Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain +msgid "Order Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" diff --git a/sale_automatic_workflow/i18n/es_MX.po b/sale_automatic_workflow/i18n/es_MX.po new file mode 100644 index 0000000..e29c7f8 --- /dev/null +++ b/sale_automatic_workflow/i18n/es_MX.po @@ -0,0 +1,346 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 2016 +# Juan González , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "Movimiento bursátil" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factura" diff --git a/sale_automatic_workflow/i18n/es_PE.po b/sale_automatic_workflow/i18n/es_PE.po new file mode 100644 index 0000000..b4a956e --- /dev/null +++ b/sale_automatic_workflow/i18n/es_PE.po @@ -0,0 +1,342 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" diff --git a/sale_automatic_workflow/i18n/es_PY.po b/sale_automatic_workflow/i18n/es_PY.po new file mode 100644 index 0000000..46cbebc --- /dev/null +++ b/sale_automatic_workflow/i18n/es_PY.po @@ -0,0 +1,342 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "ID" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" diff --git a/sale_automatic_workflow/i18n/es_VE.po b/sale_automatic_workflow/i18n/es_VE.po new file mode 100644 index 0000000..1f54cbb --- /dev/null +++ b/sale_automatic_workflow/i18n/es_VE.po @@ -0,0 +1,345 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Quotation" +#~ msgstr "Quotation" diff --git a/sale_automatic_workflow/i18n/et.po b/sale_automatic_workflow/i18n/et.po new file mode 100644 index 0000000..5da9ab2 --- /dev/null +++ b/sale_automatic_workflow/i18n/et.po @@ -0,0 +1,344 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Arve" diff --git a/sale_automatic_workflow/i18n/eu.po b/sale_automatic_workflow/i18n/eu.po new file mode 100644 index 0000000..65bf24c --- /dev/null +++ b/sale_automatic_workflow/i18n/eu.po @@ -0,0 +1,341 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" diff --git a/sale_automatic_workflow/i18n/fa.po b/sale_automatic_workflow/i18n/fa.po new file mode 100644 index 0000000..5866c09 --- /dev/null +++ b/sale_automatic_workflow/i18n/fa.po @@ -0,0 +1,341 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "شناسه" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name +msgid "Name" +msgstr "نام" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Order Configuration" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id +msgid "Order Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain +msgid "Order Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" diff --git a/sale_automatic_workflow/i18n/fi.po b/sale_automatic_workflow/i18n/fi.po new file mode 100644 index 0000000..5747d54 --- /dev/null +++ b/sale_automatic_workflow/i18n/fi.po @@ -0,0 +1,347 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "Varastosiirto" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Lasku" + +#~ msgid "Quotation" +#~ msgstr "Quotation" diff --git a/sale_automatic_workflow/i18n/fr.po b/sale_automatic_workflow/i18n/fr.po new file mode 100644 index 0000000..09065f0 --- /dev/null +++ b/sale_automatic_workflow/i18n/fr.po @@ -0,0 +1,381 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 2018 +# Quentin THEURET , 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-03-13 13:35+0000\n" +"Last-Translator: Pierre-François Teyssier \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" +"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 "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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +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__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "Confirmez et transférez la préparation de commande" + +#. 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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "Livrer tous les articles en une fois" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "Livrer chaque article dès disponibilité" + +#. 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 "Domaine" + +#. 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 "Options de facturation" + +#. 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 "Entrée du journal" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "Filtre de préparation de commande" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "Domaine du filtre de préparation 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 "Enregistrer un paiement" + +#. 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 "Filtre de la facturation Enregistrer un paiement" + +#. 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 +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "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 +msgid "Sales Order" +msgstr "Bons de commande" + +#. 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 "" +"Planificateur qui lancera automatiquement la validation des factures, " +"tranferts, ..." + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "Envoyer un mail de confirmation de commande" + +#. 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__picking_policy +msgid "Shipping Policy" +msgstr "Politique d'expédition" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "Mouvement de stock" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "Transférer" + +#. 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 "" +"Quand sélectionné, après une confirmation de commande, un mail de " +"confirmation sera envoyé (s'il n'a pas encore été envoyé)." + +#. 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 +#, python-format +msgid "Workflow Warning" +msgstr "Message d'avertissement" + +#~ 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" diff --git a/sale_automatic_workflow/i18n/fr_CA.po b/sale_automatic_workflow/i18n/fr_CA.po new file mode 100644 index 0000000..6b6ef40 --- /dev/null +++ b/sale_automatic_workflow/i18n/fr_CA.po @@ -0,0 +1,345 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Facture" diff --git a/sale_automatic_workflow/i18n/fr_CH.po b/sale_automatic_workflow/i18n/fr_CH.po new file mode 100644 index 0000000..c54a8ea --- /dev/null +++ b/sale_automatic_workflow/i18n/fr_CH.po @@ -0,0 +1,345 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Facture" diff --git a/sale_automatic_workflow/i18n/gl.po b/sale_automatic_workflow/i18n/gl.po new file mode 100644 index 0000000..4cc6e83 --- /dev/null +++ b/sale_automatic_workflow/i18n/gl.po @@ -0,0 +1,344 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "ID" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Modificado por última vez o" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "Movemento de existencias" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factura" diff --git a/sale_automatic_workflow/i18n/gl_ES.po b/sale_automatic_workflow/i18n/gl_ES.po new file mode 100644 index 0000000..fe9202a --- /dev/null +++ b/sale_automatic_workflow/i18n/gl_ES.po @@ -0,0 +1,342 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "ID" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date +msgid "Last Updated on" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name +msgid "Name" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Order Configuration" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id +msgid "Order Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain +msgid "Order Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" diff --git a/sale_automatic_workflow/i18n/he.po b/sale_automatic_workflow/i18n/he.po new file mode 100644 index 0000000..c2708d6 --- /dev/null +++ b/sale_automatic_workflow/i18n/he.po @@ -0,0 +1,341 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "השם המוצג" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "מזהה" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name +msgid "Name" +msgstr "שם" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Order Configuration" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id +msgid "Order Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain +msgid "Order Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" diff --git a/sale_automatic_workflow/i18n/hr.po b/sale_automatic_workflow/i18n/hr.po new file mode 100644 index 0000000..0d20d10 --- /dev/null +++ b/sale_automatic_workflow/i18n/hr.po @@ -0,0 +1,351 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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-19 10:42+0000\n" +"Last-Translator: uvid-gordana \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" +"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 "" + +#. module: sale_automatic_workflow +#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id +#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form +#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Automatic Workflow" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" +"Budite oprezni, ako spremite narudžbu s ovom postavkom, mogla bi biti " +"automatski potvrđena, čak i ako je uređujete." + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "Datum kreiranja" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Zadnja promjena" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "Način otpreme" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "Skladišni prenos" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Račun" + +#~ msgid "Quotation" +#~ msgstr "Quotation" diff --git a/sale_automatic_workflow/i18n/hr_HR.po b/sale_automatic_workflow/i18n/hr_HR.po new file mode 100644 index 0000000..e1e09f7 --- /dev/null +++ b/sale_automatic_workflow/i18n/hr_HR.po @@ -0,0 +1,346 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "ID" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Račun" diff --git a/sale_automatic_workflow/i18n/hu.po b/sale_automatic_workflow/i18n/hu.po new file mode 100644 index 0000000..0aa82a3 --- /dev/null +++ b/sale_automatic_workflow/i18n/hu.po @@ -0,0 +1,347 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Számla" + +#~ msgid "Quotation" +#~ msgstr "Quotation" diff --git a/sale_automatic_workflow/i18n/id.po b/sale_automatic_workflow/i18n/id.po new file mode 100644 index 0000000..9c6b678 --- /dev/null +++ b/sale_automatic_workflow/i18n/id.po @@ -0,0 +1,344 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Faktur" diff --git a/sale_automatic_workflow/i18n/it.po b/sale_automatic_workflow/i18n/it.po new file mode 100644 index 0000000..815ad9a --- /dev/null +++ b/sale_automatic_workflow/i18n/it.po @@ -0,0 +1,359 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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-07-09 09:58+0000\n" +"Last-Translator: mymage \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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +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__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "Conferma e trasferisci il prelievo" + +#. 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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "Consegna tutti i prodotti in una volta" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "Consegna ogni prodotto quando disponibile" + +#. 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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "Filtro prelIevo" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "Dominio filtro prelievo" + +#. 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 +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "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_invoice +msgid "Send Invoice" +msgstr "Invia fattura" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "Filtro invio fattura" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "Dominio filtro invio fattura" + +#. 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__picking_policy +msgid "Shipping Policy" +msgstr "Politica di spedizione" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "Movimento di magazzino" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "Trasferimento" + +#. 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 +#, python-format +msgid "Workflow Warning" +msgstr "Avviso flusso" + +#~ msgid "Invoice" +#~ msgstr "Fattura" + +#~ msgid "Quotation" +#~ msgstr "Quotation" diff --git a/sale_automatic_workflow/i18n/ja.po b/sale_automatic_workflow/i18n/ja.po new file mode 100644 index 0000000..b801adb --- /dev/null +++ b/sale_automatic_workflow/i18n/ja.po @@ -0,0 +1,344 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "作成者" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "作成日" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "ID" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name +msgid "Name" +msgstr "名称" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Order Configuration" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id +msgid "Order Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain +msgid "Order Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "請求書" diff --git a/sale_automatic_workflow/i18n/ko.po b/sale_automatic_workflow/i18n/ko.po new file mode 100644 index 0000000..c085c4d --- /dev/null +++ b/sale_automatic_workflow/i18n/ko.po @@ -0,0 +1,341 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "작성자" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "작성일" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "표시 이름" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "ID" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name +msgid "Name" +msgstr "이름" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Order Configuration" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id +msgid "Order Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain +msgid "Order Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" diff --git a/sale_automatic_workflow/i18n/lt.po b/sale_automatic_workflow/i18n/lt.po new file mode 100644 index 0000000..b39ed53 --- /dev/null +++ b/sale_automatic_workflow/i18n/lt.po @@ -0,0 +1,345 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Sąskaita faktūra" diff --git a/sale_automatic_workflow/i18n/lt_LT.po b/sale_automatic_workflow/i18n/lt_LT.po new file mode 100644 index 0000000..4ba220a --- /dev/null +++ b/sale_automatic_workflow/i18n/lt_LT.po @@ -0,0 +1,343 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "ID" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" diff --git a/sale_automatic_workflow/i18n/lv.po b/sale_automatic_workflow/i18n/lv.po new file mode 100644 index 0000000..e236e20 --- /dev/null +++ b/sale_automatic_workflow/i18n/lv.po @@ -0,0 +1,342 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "ID" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" diff --git a/sale_automatic_workflow/i18n/mk.po b/sale_automatic_workflow/i18n/mk.po new file mode 100644 index 0000000..8ddf6fc --- /dev/null +++ b/sale_automatic_workflow/i18n/mk.po @@ -0,0 +1,344 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "Креирано од" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "Креирано на" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "ID" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name +msgid "Name" +msgstr "Име" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Order Configuration" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id +msgid "Order Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain +msgid "Order Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Фактура" diff --git a/sale_automatic_workflow/i18n/mn.po b/sale_automatic_workflow/i18n/mn.po new file mode 100644 index 0000000..b2adc3f --- /dev/null +++ b/sale_automatic_workflow/i18n/mn.po @@ -0,0 +1,344 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "ID" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name +msgid "Name" +msgstr "Нэр" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Order Configuration" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id +msgid "Order Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain +msgid "Order Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Нэхэмжлэл" diff --git a/sale_automatic_workflow/i18n/nb.po b/sale_automatic_workflow/i18n/nb.po new file mode 100644 index 0000000..b6e0774 --- /dev/null +++ b/sale_automatic_workflow/i18n/nb.po @@ -0,0 +1,345 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Faktura" diff --git a/sale_automatic_workflow/i18n/nb_NO.po b/sale_automatic_workflow/i18n/nb_NO.po new file mode 100644 index 0000000..1dffc7e --- /dev/null +++ b/sale_automatic_workflow/i18n/nb_NO.po @@ -0,0 +1,345 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Innmelding" diff --git a/sale_automatic_workflow/i18n/nl.po b/sale_automatic_workflow/i18n/nl.po new file mode 100644 index 0000000..fb4f9f5 --- /dev/null +++ b/sale_automatic_workflow/i18n/nl.po @@ -0,0 +1,347 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factuur" + +#~ msgid "Quotation" +#~ msgstr "Quotation" diff --git a/sale_automatic_workflow/i18n/nl_BE.po b/sale_automatic_workflow/i18n/nl_BE.po new file mode 100644 index 0000000..33e2a33 --- /dev/null +++ b/sale_automatic_workflow/i18n/nl_BE.po @@ -0,0 +1,345 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factuur" diff --git a/sale_automatic_workflow/i18n/nl_NL.po b/sale_automatic_workflow/i18n/nl_NL.po new file mode 100644 index 0000000..0dd325a --- /dev/null +++ b/sale_automatic_workflow/i18n/nl_NL.po @@ -0,0 +1,350 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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-02-18 12:37+0000\n" +"Last-Translator: Bosd \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" +"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 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "Lever alle producten gelijktijdig" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "Weergavenaam" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "Domein" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "ID" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "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_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factuur" + +#~ msgid "automatic.workflow.job" +#~ msgstr "automatic.workflow.job" diff --git a/sale_automatic_workflow/i18n/pl.po b/sale_automatic_workflow/i18n/pl.po new file mode 100644 index 0000000..16a4343 --- /dev/null +++ b/sale_automatic_workflow/i18n/pl.po @@ -0,0 +1,345 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Faktura" diff --git a/sale_automatic_workflow/i18n/pt.po b/sale_automatic_workflow/i18n/pt.po new file mode 100644 index 0000000..75830fc --- /dev/null +++ b/sale_automatic_workflow/i18n/pt.po @@ -0,0 +1,344 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Última Modificação Em" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "Movimento Stock" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Fatura" diff --git a/sale_automatic_workflow/i18n/pt_BR.po b/sale_automatic_workflow/i18n/pt_BR.po new file mode 100644 index 0000000..838bab7 --- /dev/null +++ b/sale_automatic_workflow/i18n/pt_BR.po @@ -0,0 +1,377 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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-05-22 00:02+0000\n" +"Last-Translator: Rodrigo Macedo \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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +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__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "Confirmar e Transferir Separação" + +#. 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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "Entregar todos os produtos de uma vez" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "Entregar cada produto quando disponível" + +#. 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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Última atualização em" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "Filtro de Separação" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "Domínio do Filtro de Separação" + +#. 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 "Filtro de registro de pagamento de fatura" + +#. 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 +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "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_invoice +msgid "Send Invoice" +msgstr "Enviar fatura" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "Filtro de Envio de fatura" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "Domínio de filtro de envio de fatura" + +#. 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__picking_policy +msgid "Shipping Policy" +msgstr "Política de Entrega" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "Movimentação de estoque" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "Transferir" + +#. 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 +#, python-format +msgid "Workflow Warning" +msgstr "Aviso de Workflow" + +#~ 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" diff --git a/sale_automatic_workflow/i18n/pt_PT.po b/sale_automatic_workflow/i18n/pt_PT.po new file mode 100644 index 0000000..49c11a6 --- /dev/null +++ b/sale_automatic_workflow/i18n/pt_PT.po @@ -0,0 +1,345 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Última Modificação em" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Fatura" diff --git a/sale_automatic_workflow/i18n/ro.po b/sale_automatic_workflow/i18n/ro.po new file mode 100644 index 0000000..946bfbb --- /dev/null +++ b/sale_automatic_workflow/i18n/ro.po @@ -0,0 +1,348 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Ultima actualizare în" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "Mișcare stoc" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factura" + +#~ msgid "Quotation" +#~ msgstr "Quotation" diff --git a/sale_automatic_workflow/i18n/ru.po b/sale_automatic_workflow/i18n/ru.po new file mode 100644 index 0000000..167d923 --- /dev/null +++ b/sale_automatic_workflow/i18n/ru.po @@ -0,0 +1,346 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "Создано" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "Создан" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "ID" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "Последний раз обновлено" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date +msgid "Last Updated on" +msgstr "Последний раз обновлено" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name +msgid "Name" +msgstr "Название" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Order Configuration" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id +msgid "Order Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain +msgid "Order Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Счет" diff --git a/sale_automatic_workflow/i18n/sale_automatic_workflow.pot b/sale_automatic_workflow/i18n/sale_automatic_workflow.pot new file mode 100644 index 0000000..0323cdd --- /dev/null +++ b/sale_automatic_workflow/i18n/sale_automatic_workflow.pot @@ -0,0 +1,336 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 16.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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date +msgid "Last Updated on" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name +msgid "Name" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Order Configuration" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id +msgid "Order Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain +msgid "Order Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" diff --git a/sale_automatic_workflow/i18n/sk.po b/sale_automatic_workflow/i18n/sk.po new file mode 100644 index 0000000..ac78078 --- /dev/null +++ b/sale_automatic_workflow/i18n/sk.po @@ -0,0 +1,341 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" diff --git a/sale_automatic_workflow/i18n/sk_SK.po b/sale_automatic_workflow/i18n/sk_SK.po new file mode 100644 index 0000000..6cccce7 --- /dev/null +++ b/sale_automatic_workflow/i18n/sk_SK.po @@ -0,0 +1,345 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date +msgid "Last Updated on" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name +msgid "Name" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Order Configuration" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id +msgid "Order Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain +msgid "Order Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Faktúra" diff --git a/sale_automatic_workflow/i18n/sl.po b/sale_automatic_workflow/i18n/sl.po new file mode 100644 index 0000000..e098040 --- /dev/null +++ b/sale_automatic_workflow/i18n/sl.po @@ -0,0 +1,349 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 \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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "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__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "Dobavi vse proizvode hkrati" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "Dobavi vsak proizvod, ko je na voljo" + +#. 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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "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_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "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__picking_policy +msgid "Shipping Policy" +msgstr "Pravila odpošiljanja" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "Premik zaloge" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "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 +#, python-format +msgid "Workflow Warning" +msgstr "Opozorilo delotoka" + +#~ msgid "Invoice" +#~ msgstr "Račun" diff --git a/sale_automatic_workflow/i18n/sl_SI.po b/sale_automatic_workflow/i18n/sl_SI.po new file mode 100644 index 0000000..54d3b40 --- /dev/null +++ b/sale_automatic_workflow/i18n/sl_SI.po @@ -0,0 +1,346 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date +msgid "Last Updated on" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name +msgid "Name" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Order Configuration" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id +msgid "Order Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain +msgid "Order Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Quotation" +#~ msgstr "Quotation" diff --git a/sale_automatic_workflow/i18n/sr.po b/sale_automatic_workflow/i18n/sr.po new file mode 100644 index 0000000..0e95f59 --- /dev/null +++ b/sale_automatic_workflow/i18n/sr.po @@ -0,0 +1,342 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "ID" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date +msgid "Last Updated on" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name +msgid "Name" +msgstr "Ime" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Order Configuration" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id +msgid "Order Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain +msgid "Order Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" diff --git a/sale_automatic_workflow/i18n/sr@latin.po b/sale_automatic_workflow/i18n/sr@latin.po new file mode 100644 index 0000000..d1b0c89 --- /dev/null +++ b/sale_automatic_workflow/i18n/sr@latin.po @@ -0,0 +1,343 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" diff --git a/sale_automatic_workflow/i18n/sv.po b/sale_automatic_workflow/i18n/sv.po new file mode 100644 index 0000000..027d310 --- /dev/null +++ b/sale_automatic_workflow/i18n/sv.po @@ -0,0 +1,344 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Faktura" diff --git a/sale_automatic_workflow/i18n/th.po b/sale_automatic_workflow/i18n/th.po new file mode 100644 index 0000000..d626510 --- /dev/null +++ b/sale_automatic_workflow/i18n/th.po @@ -0,0 +1,344 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "สร้างโดย" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "รหัส" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name +msgid "Name" +msgstr "ชื่อ" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Order Configuration" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id +msgid "Order Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain +msgid "Order Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "ใบแจ้งหนี้" diff --git a/sale_automatic_workflow/i18n/tr.po b/sale_automatic_workflow/i18n/tr.po new file mode 100644 index 0000000..b31a58f --- /dev/null +++ b/sale_automatic_workflow/i18n/tr.po @@ -0,0 +1,347 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Son değişiklik" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "Stok Taşı" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Fatura" + +#~ msgid "Quotation" +#~ msgstr "Quotation" diff --git a/sale_automatic_workflow/i18n/tr_TR.po b/sale_automatic_workflow/i18n/tr_TR.po new file mode 100644 index 0000000..be20ed7 --- /dev/null +++ b/sale_automatic_workflow/i18n/tr_TR.po @@ -0,0 +1,348 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "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__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "Bütün ürünleri birlikte teslim et" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "Her ürünü uygun olduğunda teslim et" + +#. 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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "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_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "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__picking_policy +msgid "Shipping Policy" +msgstr "Nakliye politikas" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "Stok hareketi" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "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 +#, python-format +msgid "Workflow Warning" +msgstr "İş akışı uyarısı" + +#~ msgid "Invoice" +#~ msgstr "Fatura" diff --git a/sale_automatic_workflow/i18n/uk.po b/sale_automatic_workflow/i18n/uk.po new file mode 100644 index 0000000..5a3defc --- /dev/null +++ b/sale_automatic_workflow/i18n/uk.po @@ -0,0 +1,342 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "Створив" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "Дата створення" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "ID" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name +msgid "Name" +msgstr "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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" diff --git a/sale_automatic_workflow/i18n/vi.po b/sale_automatic_workflow/i18n/vi.po new file mode 100644 index 0000000..f0a3ce6 --- /dev/null +++ b/sale_automatic_workflow/i18n/vi.po @@ -0,0 +1,341 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "Đượ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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "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____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. 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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" diff --git a/sale_automatic_workflow/i18n/vi_VN.po b/sale_automatic_workflow/i18n/vi_VN.po new file mode 100644 index 0000000..8cc7add --- /dev/null +++ b/sale_automatic_workflow/i18n/vi_VN.po @@ -0,0 +1,345 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "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.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "ID" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "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__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "Dịch chuyển kho" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Quotation" +#~ msgstr "Quotation" diff --git a/sale_automatic_workflow/i18n/zh_CN.po b/sale_automatic_workflow/i18n/zh_CN.po new file mode 100644 index 0000000..0f3e914 --- /dev/null +++ b/sale_automatic_workflow/i18n/zh_CN.po @@ -0,0 +1,369 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "自动化工作流作业" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "自动化信息" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "请注意,如果您使用此设置保存订单,即使您正在编辑它,也可以自动确认。" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "确认并转移拣货" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "创建发票" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "创建发票筛选器" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "创建发票筛选器" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "创建者" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "创建时间" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "一次交付所有产品" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "交付每个可用的产品" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "强制发票日期" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "ID" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "如果设置,则在用户选择销售订单上的流程时显示消息" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" +"如果选中此框,则在创建第一张发票时将包含服务销售订单行,并将其标记为已交付" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "发货时发票服务" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "最后修改时间" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date +msgid "Last Updated on" +msgstr "最后更新时间" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name +msgid "Name" +msgstr "名称" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Order Configuration" +msgstr "订单配置" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id +msgid "Order Filter" +msgstr "订单筛选器" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain +msgid "Order Filter Domain" +msgstr "订单筛选域" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id +msgid "Picking Filter" +msgstr "拣货筛选器" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "拣货筛选域" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "销售完成" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "销售完成筛选器" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "销售完成筛选域" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "销售工作流程" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "销售日记账" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +#, 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_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "将默认日记帐设置为在发票上使用" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "根据搜索筛选器设置选择:" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "交货策略" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "库存移动" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "调拨" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "验证发票" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "验证发票筛选器" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "验证发票筛选域" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "验证订单" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "警告信息" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "选中后,发票日期将与订单日期相同" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "工作流程选项" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "工作流程警告" + +#~ msgid "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" diff --git a/sale_automatic_workflow/i18n/zh_TW.po b/sale_automatic_workflow/i18n/zh_TW.po new file mode 100644 index 0000000..e483221 --- /dev/null +++ b/sale_automatic_workflow/i18n/zh_TW.po @@ -0,0 +1,345 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * sale_automatic_workflow +# +# Translators: +# OCA Transbot , 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 , 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 +#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job +msgid "Automatic Workflow Job" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form +msgid "Automation Information" +msgstr "" + +#. module: sale_automatic_workflow +#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation +msgid "" +"Be careful, if you save the order with this setting, it could be auto-" +"confirmed, even if you are editing it." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking +msgid "Confirm and Transfer Picking" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice +msgid "Create Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id +msgid "Create Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain +msgid "Create Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid +msgid "Created by" +msgstr "建立者" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date +msgid "Created on" +msgstr "建立於" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one +msgid "Deliver all products at once" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct +msgid "Deliver each product when available" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain +msgid "Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "Force Invoice Date" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id +msgid "ID" +msgstr "編號" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "" +"If set, displays the message when an userselects the process on a sale order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "" +"If this box is checked, when the first invoice is created The service sale " +"order lines will be included and will be marked as delivered" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Invoice Options" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery +msgid "Invoice Service on delivery" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name +msgid "Name" +msgstr "名稱" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Order Configuration" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id +msgid "Order Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain +msgid "Order Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id +msgid "Picking Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain +msgid "Picking Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment +msgid "Register Payment" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id +msgid "Register Payment Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done +msgid "Sale Done" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id +msgid "Sale Done Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain +msgid "Sale Done Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id +msgid "Sale Workflow Process" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Sales Journal" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_sale_order +msgid "Sales Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id +msgid "Sales Team" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job +msgid "" +"Scheduler that will play automatically the validation of invoices, " +"pickings..." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice +msgid "Send Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id +msgid "Send Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain +msgid "Send Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "Send Order Confirmation Mail" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id +msgid "Set default journal to use on invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Set selection based on a search filter:" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy +msgid "Shipping Policy" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model,name:sale_automatic_workflow.model_stock_picking +msgid "Transfer" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice +msgid "Validate Invoice" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id +msgid "Validate Invoice Filter" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain +msgid "Validate Invoice Filter Domain" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order +msgid "Validate Order" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning +msgid "Warning Message" +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail +msgid "" +"When checked, after order confirmation, a confirmation email will be sent " +"(if not already sent)." +msgstr "" + +#. module: sale_automatic_workflow +#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date +msgid "When checked, the invoice date will be the same than the order's date" +msgstr "" + +#. module: sale_automatic_workflow +#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form +msgid "Workflow Options" +msgstr "" + +#. module: sale_automatic_workflow +#. odoo-python +#: code:addons/sale_automatic_workflow/models/sale_order.py:0 +#, python-format +msgid "Workflow Warning" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "發票" diff --git a/sale_automatic_workflow/models/__init__.py b/sale_automatic_workflow/models/__init__.py new file mode 100644 index 0000000..cc4d5a8 --- /dev/null +++ b/sale_automatic_workflow/models/__init__.py @@ -0,0 +1,6 @@ +from . import account_move +from . import automatic_workflow_job +from . import sale_order +from . import sale_workflow_process +from . import stock_move +from . import stock_picking diff --git a/sale_automatic_workflow/models/account_move.py b/sale_automatic_workflow/models/account_move.py new file mode 100644 index 0000000..42e40fa --- /dev/null +++ b/sale_automatic_workflow/models/account_move.py @@ -0,0 +1,14 @@ +# Copyright 2011 Akretion Sébastien BEAU +# 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" + ) diff --git a/sale_automatic_workflow/models/automatic_workflow_job.py b/sale_automatic_workflow/models/automatic_workflow_job.py new file mode 100644 index 0000000..5fabaa9 --- /dev/null +++ b/sale_automatic_workflow/models/automatic_workflow_job.py @@ -0,0 +1,287 @@ +# Copyright 2011 Akretion Sébastien BEAU +# 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 "{} {} job bypassed".format(sale.display_name, sale) + sale.action_confirm() + return "{} {} confirmed successfully".format(sale.display_name, sale) + + 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 "{} {} job bypassed".format(sale.display_name, sale) + if sale.user_id: + sale = sale.with_user(sale.user_id) + sale._send_order_confirmation_mail() + return "{} {} send order confirmation mail successfully".format( + sale.display_name, sale + ) + + @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 "{} {} job bypassed".format(sale.display_name, sale) + payment = self.env["sale.advance.payment.inv"].create( + {"sale_order_ids": sale.ids} + ) + payment.with_context(active_model="sale.order").create_invoices() + return "{} {} create invoice successfully".format(sale.display_name, sale) + + @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 "{} {} job bypassed".format(invoice.display_name, invoice) + invoice.with_company(invoice.company_id).action_post() + return "{} {} validate invoice successfully".format( + invoice.display_name, invoice + ) + + @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_send_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 "{} {} job bypassed".format(invoice.display_name, invoice) + + # take the context from the actual action_invoice_sent method + action = invoice.action_invoice_sent() + action_context = action["context"] + + # Create the email using the wizard + invoice_send_wizard = ( + self.env["account.invoice.send"] + .with_context( + action_context, + mark_invoice_as_sent=True, + active_ids=[invoice.id], + force_email=True, + ) + .create( + { + "is_print": False, + "composition_mode": "comment", + "model": "account.move", + "res_id": invoice.id, + } + ) + ) + + invoice_send_wizard.onchange_is_email() + invoice_send_wizard._send_email() + + return "{} {} sent invoice successfully".format(invoice.display_name, invoice) + + @api.model + def _send_invoices(self, send_invoice_filter): + move_obj = self.env["account.move"] + invoices = move_obj.search(send_invoice_filter) + _logger.debug("Invoices to send: %s", invoices.ids) + for invoice in invoices: + with savepoint(self.env.cr): + self._do_send_invoice( + invoice.with_company(invoice.company_id), send_invoice_filter + ) + + def _do_validate_picking(self, picking, domain_filter): + """Validate a stock.picking, filter ensure no duplication""" + if not self.env["stock.picking"].search_count( + [("id", "=", picking.id)] + domain_filter + ): + return "{} {} job bypassed".format(picking.display_name, picking) + picking.validate_picking() + return "{} {} validate picking successfully".format( + picking.display_name, picking + ) + + @api.model + def _validate_pickings(self, picking_filter): + picking_obj = self.env["stock.picking"] + pickings = picking_obj.search(picking_filter) + _logger.debug("Pickings to validate: %s", pickings.ids) + for picking in pickings: + with savepoint(self.env.cr): + self._do_validate_picking(picking, picking_filter) + + def _do_sale_done(self, sale, domain_filter): + """Set a sales order to done, filter ensure no duplication""" + if not self.env["sale.order"].search_count( + [("id", "=", sale.id)] + domain_filter + ): + return "{} {} job bypassed".format(sale.display_name, sale) + sale.action_done() + return "{} {} set done successfully".format(sale.display_name, sale) + + @api.model + def _sale_done(self, sale_done_filter): + sale_obj = self.env["sale.order"] + sales = sale_obj.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), + } + + @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.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() + + @api.model + def run_with_workflow(self, sale_workflow): + workflow_domain = [("workflow_process_id", "=", sale_workflow.id)] + 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 + ) + if sale_workflow.validate_picking: + self._validate_pickings( + safe_eval(sale_workflow.picking_filter_id.domain) + workflow_domain + ) + 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.send_invoice: + self._send_invoices( + safe_eval(sale_workflow.send_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 run(self): + """Must be called from ir.cron""" + sale_workflow_process = self.env["sale.workflow.process"] + for sale_workflow in sale_workflow_process.search([]): + self.run_with_workflow(sale_workflow) + return True diff --git a/sale_automatic_workflow/models/sale_order.py b/sale_automatic_workflow/models/sale_order.py new file mode 100644 index 0000000..3cbde06 --- /dev/null +++ b/sale_automatic_workflow/models/sale_order.py @@ -0,0 +1,75 @@ +# Copyright 2011 Akretion Sébastien BEAU +# 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 SaleOrder(models.Model): + _inherit = "sale.order" + + workflow_process_id = fields.Many2one( + comodel_name="sale.workflow.process", + string="Automatic Workflow", + ondelete="restrict", + ) + all_qty_delivered = fields.Boolean( + compute="_compute_all_qty_delivered", + string="All quantities delivered", + store=True, + ) + + @api.depends("delivery_status") + def _compute_all_qty_delivered(self): + for order in self: + order.all_qty_delivered = order.delivery_status == "full" + + 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 not self.workflow_process_id: + return + workflow = self.workflow_process_id + if workflow.picking_policy: + self.picking_policy = workflow.picking_policy + if workflow.team_id: + self.team_id = workflow.team_id.id + if workflow.warning: + warning = {"title": _("Workflow Warning"), "message": workflow.warning} + return {"warning": warning} + + 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) diff --git a/sale_automatic_workflow/models/sale_workflow_process.py b/sale_automatic_workflow/models/sale_workflow_process.py new file mode 100644 index 0000000..fb81adb --- /dev/null +++ b/sale_automatic_workflow/models/sale_workflow_process.py @@ -0,0 +1,144 @@ +# Copyright 2011 Akretion Sébastien BEAU +# 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) + picking_policy = fields.Selection( + selection=[ + ("direct", "Deliver each product when available"), + ("one", "Deliver all products at once"), + ], + string="Shipping Policy", + default="direct", + ) + 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", + ) + send_invoice = fields.Boolean() + send_invoice_filter_domain = fields.Text( + string="Send Invoice Filter Domain", + related="send_invoice_filter_id.domain", + ) + validate_picking = fields.Boolean(string="Confirm and Transfer Picking") + picking_filter_domain = fields.Text( + string="Picking Filter Domain", related="picking_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" + ), + ) + picking_filter_id = fields.Many2one( + "ir.filters", + string="Picking Filter", + default=lambda self: self._default_filter( + "sale_automatic_workflow.automatic_workflow_picking_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" + ), + ) + send_invoice_filter_id = fields.Many2one( + "ir.filters", + string="Send Invoice Filter", + default=lambda self: self._default_filter( + "sale_automatic_workflow." "automatic_workflow_send_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", + ) diff --git a/sale_automatic_workflow/models/stock_move.py b/sale_automatic_workflow/models/stock_move.py new file mode 100644 index 0000000..548a3b1 --- /dev/null +++ b/sale_automatic_workflow/models/stock_move.py @@ -0,0 +1,17 @@ +# Copyright 2011 Akretion Sébastien BEAU +# 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 models + + +class StockMove(models.Model): + _inherit = "stock.move" + + def _get_new_picking_values(self): + values = super()._get_new_picking_values() + sale = self.group_id.sale_id + if sale: + values["workflow_process_id"] = sale.workflow_process_id.id + return values diff --git a/sale_automatic_workflow/models/stock_picking.py b/sale_automatic_workflow/models/stock_picking.py new file mode 100644 index 0000000..e6a01f7 --- /dev/null +++ b/sale_automatic_workflow/models/stock_picking.py @@ -0,0 +1,36 @@ +# Copyright 2011 Akretion Sébastien BEAU +# 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 +from odoo.tools import float_compare + + +class StockPicking(models.Model): + _inherit = "stock.picking" + + workflow_process_id = fields.Many2one( + comodel_name="sale.workflow.process", string="Sale Workflow Process" + ) + + def validate_picking(self): + """Set quantities automatically and validate the pickings.""" + for picking in self: + picking.action_assign() + for move in picking.move_ids.filtered( + lambda m: m.state not in ["done", "cancel"] + ): + rounding = move.product_id.uom_id.rounding + if ( + float_compare( + move.quantity_done, + move.product_qty, + precision_rounding=rounding, + ) + == -1 + ): + for move_line in move.move_line_ids: + move_line.qty_done = move_line.reserved_uom_qty + picking.with_context(skip_immediate=True, skip_sms=True).button_validate() + return True diff --git a/sale_automatic_workflow/readme/CONTRIBUTORS.rst b/sale_automatic_workflow/readme/CONTRIBUTORS.rst new file mode 100644 index 0000000..324b53b --- /dev/null +++ b/sale_automatic_workflow/readme/CONTRIBUTORS.rst @@ -0,0 +1,12 @@ +* Guewen Baconnier +* Beau Sebastien +* Leonardo Pistone +* Stéphane Bidoul +* Damien Crier +* Alexandre Fayolle +* Sodexis +* Dave Lasley +* Akim Juillerat +* Thomas Fossoul +* Phuc Tran Thanh +* John Herholz diff --git a/sale_automatic_workflow/readme/CREDITS.rst b/sale_automatic_workflow/readme/CREDITS.rst new file mode 100644 index 0000000..f5cc070 --- /dev/null +++ b/sale_automatic_workflow/readme/CREDITS.rst @@ -0,0 +1,3 @@ +The development of this module has been financially supported by: + +* Camptocamp diff --git a/sale_automatic_workflow/readme/DESCRIPTION.rst b/sale_automatic_workflow/readme/DESCRIPTION.rst new file mode 100644 index 0000000..8a51def --- /dev/null +++ b/sale_automatic_workflow/readme/DESCRIPTION.rst @@ -0,0 +1,22 @@ +Create workflows with more or less automatization and apply it on sales +orders. + +A workflow can: + +- Apply default values: + + * Shipping Policy (Deliver each product when available or Deliver all products at once) + * Set the invoice's date to the sale order's date + * Set a sales team + +- Apply automatic actions: + + * Validate the order (only if paid, always, never) + * Send order confirmation mail (only when order confirmed) + * Create an invoice + * Validate the invoice + * Send the invoice via e-mail + * Confirm the picking + +This module is used by Magentoerpconnect and Prestashoperpconnect. +It is well suited for other E-Commerce connectors as well. diff --git a/sale_automatic_workflow/security/ir.model.access.csv b/sale_automatic_workflow/security/ir.model.access.csv new file mode 100644 index 0000000..b2f7ade --- /dev/null +++ b/sale_automatic_workflow/security/ir.model.access.csv @@ -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 diff --git a/sale_automatic_workflow/static/description/icon.png b/sale_automatic_workflow/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 zcmW++2RxMjAAjx~&dlBk9S+%}OXg)AGE&Cb*&}d0jUxM@u(PQx^-s)697TX`ehR4?GS^qbkof1cslKgkU)h65qZ9Oc=ml_0temigYLJfnz{IDzUf>bGs4N!v3=Z3jMq&A#7%rM5eQ#dc?k~! zVpnB`o+K7|Al`Q_U;eD$B zfJtP*jH`siUq~{KE)`jP2|#TUEFGRryE2`i0**z#*^6~AI|YzIWy$Cu#CSLW3q=GA z6`?GZymC;dCPk~rBS%eCb`5OLr;RUZ;D`}um=H)BfVIq%7VhiMr)_#G0N#zrNH|__ zc+blN2UAB0=617@>_u;MPHN;P;N#YoE=)R#i$k_`UAA>WWCcEVMh~L_ zj--gtp&|K1#58Yz*AHCTMziU1Jzt_jG0I@qAOHsk$2}yTmVkBp_eHuY$A9)>P6o~I z%aQ?!(GqeQ-Y+b0I(m9pwgi(IIZZzsbMv+9w{PFtd_<_(LA~0H(xz{=FhLB@(1&qHA5EJw1>>=%q2f&^X>IQ{!GJ4e9U z&KlB)z(84HmNgm2hg2C0>WM{E(DdPr+EeU_N@57;PC2&DmGFW_9kP&%?X4}+xWi)( z;)z%wI5>D4a*5XwD)P--sPkoY(a~WBw;E~AW`Yue4kFa^LM3X`8x|}ZUeMnqr}>kH zG%WWW>3ml$Yez?i%)2pbKPI7?5o?hydokgQyZsNEr{a|mLdt;X2TX(#B1j35xPnPW z*bMSSOauW>o;*=kO8ojw91VX!qoOQb)zHJ!odWB}d+*K?#sY_jqPdg{Sm2HdYzdEx zOGVPhVRTGPtv0o}RfVP;Nd(|CB)I;*t&QO8h zFfekr30S!-LHmV_Su-W+rEwYXJ^;6&3|L$mMC8*bQptyOo9;>Qb9Q9`ySe3%V$A*9 zeKEe+b0{#KWGp$F+tga)0RtI)nhMa-K@JS}2krK~n8vJ=Ngm?R!9G<~RyuU0d?nz# z-5EK$o(!F?hmX*2Yt6+coY`6jGbb7tF#6nHA zuKk=GGJ;ZwON1iAfG$E#Y7MnZVmrY|j0eVI(DN_MNFJmyZ|;w4tf@=CCDZ#5N_0K= z$;R~bbk?}TpfDjfB&aiQ$VA}s?P}xPERJG{kxk5~R`iRS(SK5d+Xs9swCozZISbnS zk!)I0>t=A<-^z(cmSFz3=jZ23u13X><0b)P)^1T_))Kr`e!-pb#q&J*Q`p+B6la%C zuVl&0duN<;uOsB3%T9Fp8t{ED108<+W(nOZd?gDnfNBC3>M8WE61$So|P zVvqH0SNtDTcsUdzaMDpT=Ty0pDHHNL@Z0w$Y`XO z2M-_r1S+GaH%pz#Uy0*w$Vdl=X=rQXEzO}d6J^R6zjM1u&c9vYLvLp?W7w(?np9x1 zE_0JSAJCPB%i7p*Wvg)pn5T`8k3-uR?*NT|J`eS#_#54p>!p(mLDvmc-3o0mX*mp_ zN*AeS<>#^-{S%W<*mz^!X$w_2dHWpcJ6^j64qFBft-o}o_Vx80o0>}Du;>kLts;$8 zC`7q$QI(dKYG`Wa8#wl@V4jVWBRGQ@1dr-hstpQL)Tl+aqVpGpbSfN>5i&QMXfiZ> zaA?T1VGe?rpQ@;+pkrVdd{klI&jVS@I5_iz!=UMpTsa~mBga?1r}aRBm1WS;TT*s0f0lY=JBl66Upy)-k4J}lh=P^8(SXk~0xW=T9v*B|gzIhN z>qsO7dFd~mgxAy4V?&)=5ieYq?zi?ZEoj)&2o)RLy=@hbCRcfT5jigwtQGE{L*8<@Yd{zg;CsL5mvzfDY}P-wos_6PfprFVaeqNE%h zKZhLtcQld;ZD+>=nqN~>GvROfueSzJD&BE*}XfU|H&(FssBqY=hPCt`d zH?@s2>I(|;fcW&YM6#V#!kUIP8$Nkdh0A(bEVj``-AAyYgwY~jB zT|I7Bf@%;7aL7Wf4dZ%VqF$eiaC38OV6oy3Z#TER2G+fOCd9Iaoy6aLYbPTN{XRPz z;U!V|vBf%H!}52L2gH_+j;`bTcQRXB+y9onc^wLm5wi3-Be}U>k_u>2Eg$=k!(l@I zcCg+flakT2Nej3i0yn+g+}%NYb?ta;R?(g5SnwsQ49U8Wng8d|{B+lyRcEDvR3+`O{zfmrmvFrL6acVP%yG98X zo&+VBg@px@i)%o?dG(`T;n*$S5*rnyiR#=wW}}GsAcfyQpE|>a{=$Hjg=-*_K;UtD z#z-)AXwSRY?OPefw^iI+ z)AXz#PfEjlwTes|_{sB?4(O@fg0AJ^g8gP}ex9Ucf*@_^J(s_5jJV}c)s$`Myn|Kd z$6>}#q^n{4vN@+Os$m7KV+`}c%4)4pv@06af4-x5#wj!KKb%caK{A&Y#Rfs z-po?Dcb1({W=6FKIUirH&(yg=*6aLCekcKwyfK^JN5{wcA3nhO(o}SK#!CINhI`-I z1)6&n7O&ZmyFMuNwvEic#IiOAwNkR=u5it{B9n2sAJV5pNhar=j5`*N!Na;c7g!l$ z3aYBqUkqqTJ=Re-;)s!EOeij=7SQZ3Hq}ZRds%IM*PtM$wV z@;rlc*NRK7i3y5BETSKuumEN`Xu_8GP1Ri=OKQ$@I^ko8>H6)4rjiG5{VBM>B|%`&&s^)jS|-_95&yc=GqjNo{zFkw%%HHhS~e=s zD#sfS+-?*t|J!+ozP6KvtOl!R)@@-z24}`9{QaVLD^9VCSR2b`b!KC#o;Ki<+wXB6 zx3&O0LOWcg4&rv4QG0)4yb}7BFSEg~=IR5#ZRj8kg}dS7_V&^%#Do==#`u zpy6{ox?jWuR(;pg+f@mT>#HGWHAJRRDDDv~@(IDw&R>9643kK#HN`!1vBJHnC+RM&yIh8{gG2q zA%e*U3|N0XSRa~oX-3EAneep)@{h2vvd3Xvy$7og(sayr@95+e6~Xvi1tUqnIxoIH zVWo*OwYElb#uyW{Imam6f2rGbjR!Y3`#gPqkv57dB6K^wRGxc9B(t|aYDGS=m$&S!NmCtrMMaUg(c zc2qC=2Z`EEFMW-me5B)24AqF*bV5Dr-M5ig(l-WPS%CgaPzs6p_gnCIvTJ=Y<6!gT zVt@AfYCzjjsMEGi=rDQHo0yc;HqoRNnNFeWZgcm?f;cp(6CNylj36DoL(?TS7eU#+ z7&mfr#y))+CJOXQKUMZ7QIdS9@#-}7y2K1{8)cCt0~-X0O!O?Qx#E4Og+;A2SjalQ zs7r?qn0H044=sDN$SRG$arw~n=+T_DNdSrarmu)V6@|?1-ZB#hRn`uilTGPJ@fqEy zGt(f0B+^JDP&f=r{#Y_wi#AVDf-y!RIXU^0jXsFpf>=Ji*TeqSY!H~AMbJdCGLhC) zn7Rx+sXw6uYj;WRYrLd^5IZq@6JI1C^YkgnedZEYy<&4(z%Q$5yv#Boo{AH8n$a zhb4Y3PWdr269&?V%uI$xMcUrMzl=;w<_nm*qr=c3Rl@i5wWB;e-`t7D&c-mcQl7x! zZWB`UGcw=Y2=}~wzrfLx=uet<;m3~=8I~ZRuzvMQUQdr+yTV|ATf1Uuomr__nDf=X zZ3WYJtHp_ri(}SQAPjv+Y+0=fH4krOP@S&=zZ-t1jW1o@}z;xk8 z(Nz1co&El^HK^NrhVHa-_;&88vTU>_J33=%{if;BEY*J#1n59=07jrGQ#IP>@u#3A z;!q+E1Rj3ZJ+!4bq9F8PXJ@yMgZL;>&gYA0%_Kbi8?S=XGM~dnQZQ!yBSgcZhY96H zrWnU;k)qy`rX&&xlDyA%(a1Hhi5CWkmg(`Gb%m(HKi-7Z!LKGRP_B8@`7&hdDy5n= z`OIxqxiVfX@OX1p(mQu>0Ai*v_cTMiw4qRt3~NBvr9oBy0)r>w3p~V0SCm=An6@3n)>@z!|o-$HvDK z|3D2ZMJkLE5loMKl6R^ez@Zz%S$&mbeoqH5`Bb){Ei21q&VP)hWS2tjShfFtGE+$z zzCR$P#uktu+#!w)cX!lWN1XU%K-r=s{|j?)Akf@q#3b#{6cZCuJ~gCxuMXRmI$nGtnH+-h z+GEi!*X=AP<|fG`1>MBdTb?28JYc=fGvAi2I<$B(rs$;eoJCyR6_bc~p!XR@O-+sD z=eH`-ye})I5ic1eL~TDmtfJ|8`0VJ*Yr=hNCd)G1p2MMz4C3^Mj?7;!w|Ly%JqmuW zlIEW^Ft%z?*|fpXda>Jr^1noFZEwFgVV%|*XhH@acv8rdGxeEX{M$(vG{Zw+x(ei@ zmfXb22}8-?Fi`vo-YVrTH*C?a8%M=Hv9MqVH7H^J$KsD?>!SFZ;ZsvnHr_gn=7acz z#W?0eCdVhVMWN12VV^$>WlQ?f;P^{(&pYTops|btm6aj>_Uz+hqpGwB)vWp0Cf5y< zft8-je~nn?W11plq}N)4A{l8I7$!ks_x$PXW-2XaRFswX_BnF{R#6YIwMhAgd5F9X zGmwdadS6(a^fjHtXg8=l?Rc0Sm%hk6E9!5cLVloEy4eh(=FwgP`)~I^5~pBEWo+F6 zSf2ncyMurJN91#cJTy_u8Y}@%!bq1RkGC~-bV@SXRd4F{R-*V`bS+6;W5vZ(&+I<9$;-V|eNfLa5n-6% z2(}&uGRF;p92eS*sE*oR$@pexaqr*meB)VhmIg@h{uzkk$9~qh#cHhw#>O%)b@+(| z^IQgqzuj~Sk(J;swEM-3TrJAPCq9k^^^`q{IItKBRXYe}e0Tdr=Huf7da3$l4PdpwWDop%^}n;dD#K4s#DYA8SHZ z&1!riV4W4R7R#C))JH1~axJ)RYnM$$lIR%6fIVA@zV{XVyx}C+a-Dt8Y9M)^KU0+H zR4IUb2CJ{Hg>CuaXtD50jB(_Tcx=Z$^WYu2u5kubqmwp%drJ6 z?Fo40g!Qd<-l=TQxqHEOuPX0;^z7iX?Ke^a%XT<13TA^5`4Xcw6D@Ur&VT&CUe0d} z1GjOVF1^L@>O)l@?bD~$wzgf(nxX1OGD8fEV?TdJcZc2KoUe|oP1#=$$7ee|xbY)A zDZq+cuTpc(fFdj^=!;{k03C69lMQ(|>uhRfRu%+!k&YOi-3|1QKB z z?n?eq1XP>p-IM$Z^C;2L3itnbJZAip*Zo0aw2bs8@(s^~*8T9go!%dHcAz2lM;`yp zD=7&xjFV$S&5uDaiScyD?B-i1ze`+CoRtz`Wn+Zl&#s4&}MO{@N!ufrzjG$B79)Y2d3tBk&)TxUTw@QS0TEL_?njX|@vq?Uz(nBFK5Pq7*xj#u*R&i|?7+6# z+|r_n#SW&LXhtheZdah{ZVoqwyT{D>MC3nkFF#N)xLi{p7J1jXlmVeb;cP5?e(=f# zuT7fvjSbjS781v?7{)-X3*?>tq?)Yd)~|1{BDS(pqC zC}~H#WXlkUW*H5CDOo<)#x7%RY)A;ShGhI5s*#cRDA8YgqG(HeKDx+#(ZQ?386dv! zlXCO)w91~Vw4AmOcATuV653fa9R$fyK8ul%rG z-wfS zihugoZyr38Im?Zuh6@RcF~t1anQu7>#lPpb#}4cOA!EM11`%f*07RqOVkmX{p~KJ9 z^zP;K#|)$`^Rb{rnHGH{~>1(fawV0*Z#)}M`m8-?ZJV<+e}s9wE# z)l&az?w^5{)`S(%MRzxdNqrs1n*-=jS^_jqE*5XDrA0+VE`5^*p3CuM<&dZEeCjoz zR;uu_H9ZPZV|fQq`Cyw4nscrVwi!fE6ciMmX$!_hN7uF;jjKG)d2@aC4ropY)8etW=xJvni)8eHi`H$%#zn^WJ5NLc-rqk|u&&4Z6fD_m&JfSI1Bvb?b<*n&sfl0^t z=HnmRl`XrFvMKB%9}>PaA`m-fK6a0(8=qPkWS5bb4=v?XcWi&hRY?O5HdulRi4?fN zlsJ*N-0Qw+Yic@s0(2uy%F@ib;GjXt01Fmx5XbRo6+n|pP(&nodMoap^z{~q ziEeaUT@Mxe3vJSfI6?uLND(CNr=#^W<1b}jzW58bIfyWTDle$mmS(|x-0|2UlX+9k zQ^EX7Nw}?EzVoBfT(-LT|=9N@^hcn-_p&sqG z&*oVs2JSU+N4ZD`FhCAWaS;>|wH2G*Id|?pa#@>tyxX`+4HyIArWDvVrX)2WAOQff z0qyHu&-S@i^MS-+j--!pr4fPBj~_8({~e1bfcl0wI1kaoN>mJL6KUPQm5N7lB(ui1 zE-o%kq)&djzWJ}ob<-GfDlkB;F31j-VHKvQUGQ3sp`CwyGJk_i!y^sD0fqC@$9|jO zOqN!r!8-p==F@ZVP=U$qSpY(gQ0)59P1&t@y?5rvg<}E+GB}26NYPp4f2YFQrQtot5mn3wu_qprZ=>Ig-$ zbW26Ws~IgY>}^5w`vTB(G`PTZaDiGBo5o(tp)qli|NeV( z@H_=R8V39rt5J5YB2Ky?4eJJ#b`_iBe2ot~6%7mLt5t8Vwi^Jy7|jWXqa3amOIoRb zOr}WVFP--DsS`1WpN%~)t3R!arKF^Q$e12KEqU36AWwnCBICpH4XCsfnyrHr>$I$4 z!DpKX$OKLWarN7nv@!uIA+~RNO)l$$w}p(;b>mx8pwYvu;dD_unryX_NhT8*Tj>BTrTTL&!?O+%Rv;b?B??gSzdp?6Uug9{ zd@V08Z$BdI?fpoCS$)t4mg4rT8Q_I}h`0d-vYZ^|dOB*Q^S|xqTV*vIg?@fVFSmMpaw0qtTRbx} z({Pg?#{2`sc9)M5N$*N|4;^t$+QP?#mov zGVC@I*lBVrOU-%2y!7%)fAKjpEFsgQc4{amtiHb95KQEwvf<(3T<9-Zm$xIew#P22 zc2Ix|App^>v6(3L_MCU0d3W##AB0M~3D00EWoKZqsJYT(#@w$Y_H7G22M~ApVFTRHMI_3be)Lkn#0F*V8Pq zc}`Cjy$bE;FJ6H7p=0y#R>`}-m4(0F>%@P|?7fx{=R^uFdISRnZ2W_xQhD{YuR3t< z{6yxu=4~JkeA;|(J6_nv#>Nvs&FuLA&PW^he@t(UwFFE8)|a!R{`E`K`i^ZnyE4$k z;(749Ix|oi$c3QbEJ3b~D_kQsPz~fIUKym($a_7dJ?o+40*OLl^{=&oq$<#Q(yyrp z{J-FAniyAw9tPbe&IhQ|a`DqFTVQGQ&Gq3!C2==4x{6EJwiPZ8zub-iXoUtkJiG{} zPaR&}_fn8_z~(=;5lD-aPWD3z8PZS@AaUiomF!G8I}Mf>e~0g#BelA-5#`cj;O5>N Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 diff --git a/sale_automatic_workflow/static/description/index.html b/sale_automatic_workflow/static/description/index.html new file mode 100644 index 0000000..0101707 --- /dev/null +++ b/sale_automatic_workflow/static/description/index.html @@ -0,0 +1,465 @@ + + + + + +Sale Automatic Workflow + + + +
+

Sale Automatic Workflow

+ + +

Beta License: AGPL-3 OCA/sale-workflow Translate me on Weblate Try me on Runboat

+

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

+

A workflow can:

+
    +
  • Apply default values:
      +
    • Shipping Policy (Deliver each product when available or Deliver all products at once)
    • +
    • Set the invoice’s date to the sale order’s date
    • +
    • Set a sales team
    • +
    +
  • +
  • Apply automatic actions:
      +
    • Validate the order (only if paid, always, never)
    • +
    • Send order confirmation mail (only when order confirmed)
    • +
    • Create an invoice
    • +
    • Validate the invoice
    • +
    • Send the invoice via e-mail
    • +
    • Confirm the picking
    • +
    +
  • +
+

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

+

Table of contents

+ +
+

Bug Tracker

+

Bugs are tracked on GitHub 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.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Akretion
  • +
  • Camptocamp
  • +
  • Sodexis
  • +
+
+
+

Contributors

+ +
+
+

Other credits

+

The development of this module has been financially supported by:

+
    +
  • Camptocamp
  • +
+
+
+

Maintainers

+

This module is maintained by the OCA.

+ +Odoo Community Association + +

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 project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/sale_automatic_workflow/tests/__init__.py b/sale_automatic_workflow/tests/__init__.py new file mode 100644 index 0000000..3b2595d --- /dev/null +++ b/sale_automatic_workflow/tests/__init__.py @@ -0,0 +1,2 @@ +from . import test_automatic_workflow +from . import test_multicompany diff --git a/sale_automatic_workflow/tests/common.py b/sale_automatic_workflow/tests/common.py new file mode 100644 index 0000000..43357bc --- /dev/null +++ b/sale_automatic_workflow/tests/common.py @@ -0,0 +1,92 @@ +# 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.common import TransactionCase + + +class TestCommon(TransactionCase): + @classmethod + def setUpClass(cls): + super().setUpClass() + cls.env = cls.env(context=dict(cls.env.context, tracking_disable=True)) + cls.user = cls.env["res.users"].create( + { + "name": "Sales Person", + "login": "salesperson", + "password": "salesperson", + "groups_id": [ + (4, cls.env.ref("sales_team.group_sale_manager").id), + (4, cls.env.ref("account.group_account_manager").id), + ], + } + ) + cls.user.partner_id.email = "salesperson@example.com" + + +class TestAutomaticWorkflowMixin(object): + def create_sale_order(self, workflow, override=None): + sale_obj = self.env["sale.order"] + + partner_values = { + "name": "Imperator Caius Julius Caesar Divus", + "email": "test@example.com", + } + partner = self.env["res.partner"].create(partner_values) + + product_values = {"name": "Bread", "list_price": 5, "type": "product"} + 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) + order = sale_obj.create(values) + # Create inventory + for line in order.order_line: + if line.product_id.type == "product": + inventory = self.env["stock.quant"].create( + { + "product_id": line.product_id.id, + "location_id": self.env.ref("stock.stock_location_stock").id, + "inventory_quantity": line.product_uom_qty, + } + ) + inventory._apply_inventory() + return order + + def create_full_automatic(self, override=None): + workflow_obj = self.env["sale.workflow.process"] + values = workflow_obj.create( + { + "name": "Full Automatic", + "picking_policy": "one", + "validate_order": True, + "validate_picking": True, + "create_invoice": True, + "validate_invoice": True, + "send_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() diff --git a/sale_automatic_workflow/tests/test_automatic_workflow.py b/sale_automatic_workflow/tests/test_automatic_workflow.py new file mode 100644 index 0000000..ff61a1c --- /dev/null +++ b/sale_automatic_workflow/tests/test_automatic_workflow.py @@ -0,0 +1,256 @@ +# Copyright 2014 Camptocamp SA (author: Guewen Baconnier) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +import logging +from datetime import timedelta +from unittest import mock + +from freezegun import freeze_time + +from odoo import fields +from odoo.tests import tagged +from odoo.tools.safe_eval import safe_eval + +from .common import TestAutomaticWorkflowMixin, TestCommon + +_logger = logging.getLogger(__name__) + + +@tagged("post_install", "-at_install", "mail_composer") +class TestAutomaticWorkflow(TestCommon, TestAutomaticWorkflowMixin): + @classmethod + def setUpClass(cls): + 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, + ) + ) + + def test_full_automatic(self): + workflow = self.create_full_automatic() + sale = self.create_sale_order(workflow) + sale._onchange_workflow_process_id() + self.assertEqual(sale.state, "draft") + self.assertEqual(sale.workflow_process_id, workflow) + self.run_job() + self.assertEqual(sale.state, "sale") + self.assertTrue(sale.picking_ids) + self.assertTrue(sale.invoice_ids) + invoice = sale.invoice_ids + self.assertEqual(invoice.state, "posted") + picking = sale.picking_ids + self.run_job() + self.assertEqual(picking.state, "done") + + def test_onchange(self): + workflow = self.create_full_automatic() + sale = self.create_sale_order(workflow) + sale._onchange_workflow_process_id() + self.assertEqual(sale.picking_policy, "one") + workflow2 = self.create_full_automatic(override={"picking_policy": "direct"}) + sale.workflow_process_id = workflow2.id + sale._onchange_workflow_process_id() + self.assertEqual(sale.picking_policy, "direct") + + @freeze_time("2024-08-11 12:00:00") + def test_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) + sale._onchange_workflow_process_id() + 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_create_invoice_from_sale_order(self): + workflow = self.create_full_automatic() + sale = self.create_sale_order(workflow) + sale._onchange_workflow_process_id() + line = sale.order_line[0] + self.assertFalse(workflow.invoice_service_delivery) + self.assertEqual(line.qty_delivered_method, "stock_move") + self.assertEqual(line.qty_delivered, 0.0) + self.assertFalse(sale.delivery_status) + self.assertFalse(sale.all_qty_delivered) + # `_create_invoices` is already tested in `sale` module. + # Make sure this addon works properly in regards to it. + mock_path = "odoo.addons.sale.models.sale_order.SaleOrder._create_invoices" + with mock.patch(mock_path) as mocked: + sale._create_invoices() + mocked.assert_called() + self.assertEqual(line.qty_delivered, 0.0) + + 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) + sale.action_confirm() + # Force the state to "full" + # note : this is not needed if you have the module sale_delivery_state + # installed but sale_automatic_workflow do not depend on it + # so we just force it so we can check the sale.all_qty_delivered + sale.delivery_status = "full" + sale._compute_all_qty_delivered() + self.assertTrue(sale.all_qty_delivered) + + def test_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) + sale._onchange_workflow_process_id() + self.run_job() + self.assertFalse(sale.picking_ids) + self.assertTrue(sale.invoice_ids) + invoice = sale.invoice_ids + self.assertEqual(invoice.workflow_process_id, sale.workflow_process_id) + + def test_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) + sale._onchange_workflow_process_id() + 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) + sale._onchange_workflow_process_id() + self.run_job() + self.assertTrue(sale.invoice_ids) + invoice = sale.invoice_ids + self.assertEqual(invoice.journal_id.id, new_sale_journal.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) + sale._onchange_workflow_process_id() + 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_automatic_invoice_send_mail(self): + workflow = self.create_full_automatic() + workflow.send_invoice = False + sale = self.create_sale_order(workflow) + sale.user_id = self.user.id + sale._onchange_workflow_process_id() + self.run_job() + invoice = sale.invoice_ids + invoice.message_subscribe(partner_ids=[invoice.partner_id.id]) + invoice.company_id.invoice_is_email = True + previous_message_ids = invoice.message_ids + workflow.send_invoice = True + sale._onchange_workflow_process_id() + self.run_job() + + new_messages = self.env["mail.message"].search( + [ + ("id", "in", invoice.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_job_bypassing(self): + workflow = self.create_full_automatic() + workflow_job = self.env["automatic.workflow.job"] + sale = self.create_sale_order(workflow) + sale._onchange_workflow_process_id() + + create_invoice_filter = [ + ("state", "in", ["sale", "done"]), + ("invoice_status", "=", "to invoice"), + ("workflow_process_id", "=", sale.workflow_process_id.id), + ] + order_filter = safe_eval(workflow.order_filter_id.domain) + validate_invoice_filter = safe_eval(workflow.validate_invoice_filter_id.domain) + send_invoice_filter = safe_eval(workflow.send_invoice_filter_id.domain) + + # Trigger everything, then check if sale and invoice jobs are bypassed + self.run_job() + + invoice = sale.invoice_ids + + res_so_validate = workflow_job._do_validate_sale_order(sale, order_filter) + # TODO send confirmation bypassing is not working yet, needs fix + workflow_job._do_send_order_confirmation_mail(sale) + res_create_invoice = workflow_job._do_create_invoice( + sale, create_invoice_filter + ) + res_validate_invoice = workflow_job._do_validate_invoice( + invoice, validate_invoice_filter + ) + res_send_invoice = workflow_job._do_send_invoice(invoice, send_invoice_filter) + + self.assertIn("job bypassed", res_so_validate) + self.assertIn("job bypassed", res_create_invoice) + self.assertIn("job bypassed", res_validate_invoice) + self.assertIn("job bypassed", res_send_invoice) diff --git a/sale_automatic_workflow/tests/test_multicompany.py b/sale_automatic_workflow/tests/test_multicompany.py new file mode 100644 index 0000000..2f4aef9 --- /dev/null +++ b/sale_automatic_workflow/tests/test_multicompany.py @@ -0,0 +1,199 @@ +# Copyright 2017 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo.tests import tagged + +from .common import TestCommon + + +@tagged("post_install", "-at_install") +class TestMultiCompany(TestCommon): + @classmethod + def create_company(cls, values): + return cls.env["res.company"].create(values) + + @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): + 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, + ) + ) + coa = cls.env.user.company_id.chart_template_id + cls.company_fr = cls.create_company( + { + "name": "French company", + "currency_id": cls.env.ref("base.EUR").id, + "country_id": cls.env.ref("base.fr").id, + } + ) + + cls.company_ch = cls.create_company( + { + "name": "Swiss company", + "currency_id": cls.env.ref("base.CHF").id, + "country_id": cls.env.ref("base.ch").id, + } + ) + + cls.company_be = cls.create_company( + { + "name": "Belgian company", + "currency_id": cls.env.ref("base.EUR").id, + "country_id": cls.env.ref("base.be").id, + } + ) + + cls.company_fr_daughter = cls.create_company( + { + "name": "French company daughter", + "currency_id": cls.env.ref("base.EUR").id, + "country_id": cls.env.ref("base.fr").id, + } + ) + + 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 + coa.try_loading(company=cls.env.user.company_id) + cls.customer_fr = ( + cls.env["res.partner"] + .with_context(default_company_id=cls.company_fr.id) + .create({"name": "Customer FR", "email": "test_fr@example.com"}) + ) + cls.product_fr = cls.create_product({"name": "Evian bottle", "list_price": 2.0}) + + cls.env.user.company_id = cls.company_ch.id + coa.try_loading(company=cls.env.user.company_id) + cls.customer_ch = cls.env["res.partner"].create( + {"name": "Customer CH", "email": "test_ch@example.com"} + ) + cls.product_ch = cls.create_product( + {"name": "Henniez bottle", "list_price": 3.0} + ) + + cls.env.user.company_id = cls.company_be.id + coa.try_loading(company=cls.env.user.company_id) + cls.customer_be = cls.env["res.partner"].create( + {"name": "Customer BE", "email": "test_be@example.com"} + ) + 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 + coa.try_loading(company=cls.env.user.company_id) + cls.customer_fr_daughter = cls.env["res.partner"].create( + {"name": "Customer FR Daughter", "email": "test_daughter_fr@example.com"} + ) + 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.auto_wkf.validate_picking = True + 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) + warehouse = self.env["stock.warehouse"].search( + [("company_id", "=", company.id)], limit=1 + ) + + self.product_uom_unit = self.env.ref("uom.product_uom_unit") + + order = SaleOrder.create( + { + "partner_id": customer.id, + "company_id": company.id, + "warehouse_id": warehouse.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, + }, + ) + ], + } + ) + order._onchange_workflow_process_id() + return order + + 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() + self.assertTrue(order_fr.picking_ids) + self.assertTrue(order_ch.picking_ids) + self.assertTrue(order_be.picking_ids) + self.assertEqual(order_fr.picking_ids.state, "done") + self.assertEqual(order_ch.picking_ids.state, "done") + self.assertEqual(order_be.picking_ids.state, "done") + 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 + ) diff --git a/sale_automatic_workflow/views/sale_view.xml b/sale_automatic_workflow/views/sale_view.xml new file mode 100644 index 0000000..70b5e08 --- /dev/null +++ b/sale_automatic_workflow/views/sale_view.xml @@ -0,0 +1,32 @@ + + + + + sale_automatic_workflow.sale_order.view_form + sale.order + + + + + + + + + + + + + sale.order.form.sale.stock + sale.order + + + + + + + + diff --git a/sale_automatic_workflow/views/sale_workflow_process_view.xml b/sale_automatic_workflow/views/sale_workflow_process_view.xml new file mode 100644 index 0000000..ff922c9 --- /dev/null +++ b/sale_automatic_workflow/views/sale_workflow_process_view.xml @@ -0,0 +1,400 @@ + + + + + sale.order.form.automatic.inherit + sale.workflow.process + +
+ +
+

+ +

+
+
+

+ Order Configuration +

+
+
+
+
+
+
+
+
+
+
+
+

+ Workflow Options +

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

+ Invoice Options +

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + sale_automic_workflow.sale_workflow_process.view_tree + sale.workflow.process + + + + + + + + + + + + + + + Automatic Workflow + sale.workflow.process + tree,form + + + +
diff --git a/setup/sale_automatic_workflow/odoo/addons/sale_automatic_workflow b/setup/sale_automatic_workflow/odoo/addons/sale_automatic_workflow new file mode 120000 index 0000000..bc1848d --- /dev/null +++ b/setup/sale_automatic_workflow/odoo/addons/sale_automatic_workflow @@ -0,0 +1 @@ +../../../../sale_automatic_workflow \ No newline at end of file diff --git a/setup/sale_automatic_workflow/setup.py b/setup/sale_automatic_workflow/setup.py new file mode 100644 index 0000000..28c57bb --- /dev/null +++ b/setup/sale_automatic_workflow/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)